Atheros AR9565 detected, not working
Anthony Jenkins
Scoobi_doo at yahoo.com
Mon Dec 22 19:49:38 UTC 2014
Logs attached.
Thanks,
Anthony
On 12/22/2014 11:21, Adrian Chadd wrote:
> Yeah, there's no GPIO check like there is in the reference code.
>
> The fact it says AR9382 is pretty telling. That's like it's asking for
> a very specific NIC with very specific GPIO mappings. :(
>
>
>
> -adrian
>
>
> On 22 December 2014 at 06:03, Anthony Jenkins <scoobi_doo at yahoo.com> wrote:
>> Will do. I'm actually thinking about reverting my changes just to see if stock ath(4) works (it's been a looong while since I played with bringing it up). I still occasionally see the same behavior I saw before my changes.
>>
>> I'm using a recent Linux kernel (which works out of the box) to get it working in FreeBSD - the keyboard wi-fi LED and hotkey work perfectly there.
>>
>> Thanks,
>> Anthony
>>
>> ________________________________
>> From: Adrian Chadd <adrian at freebsd.org>
>> To: Anthony Jenkins <scoobi_doo at yahoo.com>
>> Cc: "wireless at freebsd.org" <wireless at freebsd.org>
>> Sent: Sunday, December 21, 2014 9:39 PM
>> Subject: Re: Atheros AR9565 detected, not working
>>
>>
>> Hi!
>>
>> ok, how'd you build things? a module, or in the kernel?
>>
>> You need to (a) build it using 'make buildkernel / make installkernel'
>> and (b) ensure ATH_ENABLE_11N is in your kernel configuration.
>>
>> The GPIO bits are a bit odd - let me check the other chipset drivers.
>>
>> Can you compile the tools in src/tools/tools/ath/ - then run this:
>>
>> ath_prom_dump -i ath0 -d /tmp/ath.dump
>> ath_ee_9300_print /tmp/ath.dump > /tmp/ath.txt
>>
>> then email the contents of ath.txt . It'll include the GPIO pin id.
>>
>> Thanks!
>>
>>
>>
>> -adrian
>>
>>
>>
>> On 18 December 2014 at 11:53, Anthony Jenkins <scoobi_doo at yahoo.com> wrote:
>>> The attached patch seems to get my rfkill GPIO working. It seems ar9300_enable_rf_kill() is never called. I added a call to it after ath_hal_enable_rfkill(), but this is probably not the right place (I see it called several times while the interface is up).
>>>
>>> I also found several spots in the GPIO handling code which give up if the GPIO pin is 8, 9, 11 or greater than 13; my rfkill GPIO pin is 11 (0x0B). I commented these out:
>>>
>>>
>>> if ((gpio == AR9382_GPIO_PIN_8_RESERVED) ||
>>> (gpio == AR9382_GPIO_PIN_11_RESERVED) ||
>>> (gpio == AR9382_GPIO_9_INPUT_ONLY))
>>> {
>>> return AH_FALSE;
>>> }
>>>
>>>
>>>
>>> if ((gpio == AR9382_GPIO_PIN_8_RESERVED) ||
>>> (gpio == AR9382_GPIO_PIN_11_RESERVED) ||
>>> (gpio > AR9382_MAX_GPIO_INPUT_PIN_NUM))
>>> {
>>> return;
>>> }
>>>
>>>
>>> Haven't narrowed down which is responsible for me being able to send this email using my AR9565. Also I'm getting flooded with these messages since moving ath & wlan out of the kernel...my patch broke something, no?
>>>
>>> ath0: ath_edma_rxfifo_alloc: Q1: alloc failed: i=0, nbufs=128?
>>> ath0: ath_edma_rxbuf_alloc: nothing on rxbuf?!
>>> ath0: ath_edma_rxfifo_alloc: Q1: alloc failed: i=1, nbufs=128?
>>> ath0: ath_edma_rxbuf_alloc: nothing on rxbuf?!
>>> ath0: ath_edma_rxfifo_alloc: Q1: alloc failed: i=0, nbufs=128?
>>> ath0: ath_edma_rxbuf_alloc: nothing on rxbuf?!
>>> ath0: ath_edma_rxfifo_alloc: Q1: alloc failed: i=1, nbufs=128?
>>> ath0: ath_edma_rxbuf_alloc: nothing on rxbuf?!
>>> ath0: ath_edma_rxfifo_alloc: Q1: alloc failed: i=0, nbufs=128?
>>>
>>>
>>> Anthony
>>> ________________________________
>>> From: Adrian Chadd <adrian at freebsd.org>
>>> To: Anthony Jenkins <Scoobi_doo at yahoo.com>
>>> Cc: "freebsd-wireless at freebsd.org" <freebsd-wireless at freebsd.org>
>>> Sent: Monday, July 29, 2013 10:44 AM
>>> Subject: Re: Atheros AR9565 detected, not working
>>>
>>>
>>> Cool, thanks.
>>>
>>> Please make sure you post patches for all the things you fix. I'd love
>>> to see this kind of thing work out of the box. :)
>>>
>>>
>>> -adrian
>>>
>>> On 29 July 2013 07:36, Anthony Jenkins <Scoobi_doo at yahoo.com> wrote:
>>>> Thanks Adrian,
>>>>
>>>> I've managed to fix a few things on this laptop, the remaining stuff is
>>>> BIOS/ACPI related. acpi_hp(4) isn't working, has something to do with WMI.
>>>> Hoping if I fix the ACPI stuff I can
>>> have me AR9565 working. I'll poke
>>>> around and report back; the RFKill suggestion is a good place to start
>>>> looking.
>>>>
>>>> Thanks,
>>>> Anthony
>>>>
>>>>
>>>> On 07/29/13 10:30, Adrian Chadd wrote:
>>>>> Hm, maybe rfkill is set?
>>>>>
>>>>> The AR9565 is supported. I have the reference NICs from Atheros; they
>>>>> work just fine.
>>>>>
>>>>> It may be some kind of ACPI setting to enable/disable RFKill so the
>>>>> radio side is actually enabled.
>>>>>
>>>>> I'm sorry, I don't have much more than that to offer without having
>>>>> the laptop here.
>>>>>
>>>>> If someone's willing to send me one, I'll get 10 + wireless working on
>>>>> it and then hand it over to ixsystems to join the 'stuff we really
>>>>> should get pcbsd running smoothly on' pile. They're about $500 off of
>>>>>
>>> amazon.com.
>>>>> Thanks,
>>>>>
>>>>>
>>>>>
>>>>> -adrian
>>>>>
>>>>> On 29 July 2013 07:21, Anthony Jenkins <Scoobi_doo at yahoo.com> wrote:
>>>>>> I just got an HP ENVY Sleekbook 6z-1100 laptop hoping it came with a
>>>>>> FreeBSD-supported wireless NIC. It has an Atheros AR9565 and looking at
>>>>>> the
>>>>>> logs it _seems_ like it should be working, but I get no network traffic.
>>>>>> I
>>>>>> haven't started the Atheros debugging procedure yet, save to compile in
>>>>>> option AH_DEBUG and move ath(4) out of the kernel & to a module to
>>>>>> facilitate changes. Works (of course) in Win8 which came with laptop.
>>>>>> Wireless enabled LED is amber (disabled) in FreeBSD, goes from amber
>>> to
>>>>>> white (enabled) when I boot the Win8 HDD.
>>>>>>
>>>>>> Here's various logs and misc. system info. What should I try next?
>>>>>> Thanks
>>>>>> in advance!
>>>>>>
>>>>>> [root at laptop /usr/src]# uname -a n
>>>>>> FreeBSD laptop.qtchat.org 10.0-CURRENT FreeBSD 10.0-CURRENT #0: Sat Jul
>>>>>> 27
>>>>>> 23:45:30 EDT 2013 root at laptop.qtchat.org:/usr/obj/usr/src/sys/MYKERNEL
>>>>>> amd64
>>>>>>
>>>>>> [root at laptop /usr/src]# dmesg
>>>>>> Copyright (c) 1992-2013 The FreeBSD Project.
>>>>>> Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
>>>>>> The Regents
>>> of the University of California. All rights reserved.
>>>>>> FreeBSD is a registered trademark of The FreeBSD Foundation.
>>>>>> FreeBSD 10.0-CURRENT #0: Sat Jul 27 23:45:30 EDT 2013
>>>>>> root at laptop.qtchat.org:/usr/obj/usr/src/sys/MYKERNEL amd64
>>>>>> FreeBSD clang version 3.3 (tags/RELEASE_33/final 183502) 20130610
>>>>>> module_register: module pci/xhci already exists!
>>>>>> Module pci/xhci failed to register: 17
>>>>>> CPU: AMD A10-4655M APU with Radeon(tm) HD Graphics (1996.31-MHz
>>>>>> K8-class
>>>>>> CPU)
>>>>>> Origin = "AuthenticAMD" Id = 0x610f01 Family = 0x15 Model = 0x10
>>>>>> Stepping = 1
>>>>>>
>>>>>>
>>> Features=0x178bfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,MMX,FXSR,SSE,SSE2,HTT>
>>>>>> Features2=0x3e98320b<SSE3,PCLMULQDQ,MON,SSSE3,FMA,CX16,SSE4.1,SSE4.2,POPCNT,AESNI,XSAVE,OSXSAVE,AVX,F16C>
>>>>>> AMD Features=0x2e500800<SYSCALL,NX,MMX+,FFXSR,Page1GB,RDTSCP,LM>
>>>>>> AMD
>>>>>>
>>>>>> Features2=0x1abbfff<LAHF,CMP,SVM,ExtAPIC,CR8,ABM,SSE4A,MAS,Prefetch,OSVW,IBS,XOP,SKINIT,WDT,LWP,FMA4,<b17>,NodeId,TBM,<b23>,<b24>>
>>>>>> Standard Extended Features=0x8<BMI1>
>>>>>> TSC: P-state invariant, performance statistics
>>>>>> real memory = 17179869184 (16384 MB)
>>>>>> avail memory = 15463530496 (14747 MB)
>>>>>> Event timer "LAPIC" quality 400
>>>>>> ACPI APIC Table: <HPQOEM 18DE
>>>>>> FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs
>>>>>> FreeBSD/SMP: 1 package(s) x 4 core(s)
>>>>>> cpu0 (BSP): APIC ID: 16
>>>>>> cpu1 (AP): APIC ID: 17
>>>>>> cpu2 (AP): APIC ID: 18
>>>>>> cpu3 (AP): APIC ID: 19
>>>>>> ioapic0: Changing APIC ID to 4
>>>>>> ioapic0 <Version 2.1> irqs 0-23 on motherboard
>>>>>> kbd1 at kbdmux0
>>>>>> acpi0: <HPQOEM SLIC-MPC> on motherboard
>>>>>> acpi0: Power Button (fixed)
>>>>>> cpu0: <ACPI CPU> on acpi0
>>>>>> cpu1: <ACPI CPU> on acpi0
>>>>>> cpu2: <ACPI CPU> on acpi0
>>>>>> cpu3: <ACPI CPU> on acpi0
>>>>>> hpet0: <High Precision Event Timer> iomem 0xfed00000-0xfed003ff irq 0,8
>>>>>> on
>>>>>> acpi0
>>>>>> Timecounter "HPET" frequency 14318180 Hz quality
>>> 950
>>>>>> atrtc0: <AT realtime clock> port 0x70-0x71 on acpi0
>>>>>> Event timer "RTC" frequency 32768 Hz quality 0
>>>>>> attimer0: <AT timer> port 0x40-0x43 on acpi0
>>>>>> Timecounter "i8254" frequency 1193182 Hz quality 0
>>>>>> Event timer "i8254" frequency 1193182 Hz quality 100
>>>>>> Timecounter "ACPI-fast" frequency 3579545 Hz quality 900
>>>>>> acpi_timer0: <32-bit timer at 3.579545MHz> port 0x408-0x40b on acpi0
>>>>>> acpi_ec0: <Embedded Controller: GPE 0x3> port 0x62,0x66 iomem
>>>>>> 0xff000000-0xff000fff on acpi0
>>>>>> acpi_button0: <Power Button> on acpi0
>>>>>> pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff on acpi0
>>>>>> pci0: <ACPI PCI bus> on pcib0
>>>>>> vgapci0: <VGA-compatible display> port 0x3000-0x30ff mem
>>>>>> 0xe0000000-0xefffffff,0xf0300000-0xf033ffff
>>> irq 17 at device 1.0 on pci0
>>>>>> acpi_video0: <ACPI video extension> on vgapci0
>>>>>> hdac0: <ATI (0x9902) HDA Controller> mem 0xf0344000-0xf0347fff irq 18 at
>>>>>> device 1.1 on pci0
>>>>>> hdac0: hdac_get_capabilities: Invalid corb size (0); assuming 256.
>>>>>> hdac0: hdac_get_capabilities: Invalid rirb size (0); assuming 256.
>>>>>> pcib1: <ACPI PCI-PCI bridge> at device 4.0 on pci0
>>>>>> pci1: <ACPI PCI bus> on pcib1
>>>>>> pci1: <unknown> at device 0.0 (no driver attached)
>>>>>> re0: <RealTek 8168/8111 B/C/CP/D/DP/E/F PCIe Gigabit Ethernet> port
>>>>>> 0x2000-0x20ff mem 0xf0004000-0xf0004fff,0xf0000000-0xf0003fff irq 16 at
>>>>>> device 0.2 on pci1
>>>>>> re0: Using 1 MSI-X message
>>>>>> re0: turning off MSI enable bit.
>>>>>> re0: ASPM disabled
>>>>>> re0: Chip rev.
>>> 0x48800000
>>>>>> re0: MAC rev. 0x00000000
>>>>>> miibus0: <MII bus> on re0
>>>>>> rgephy0: <RTL8169S/8110S/8211 1000BASE-T media interface> PHY 1 on
>>>>>> miibus0
>>>>>> rgephy0: none, 10baseT, 10baseT-FDX, 10baseT-FDX-flow, 100baseTX,
>>>>>> 100baseTX-FDX, 100baseTX-FDX-flow, 1000baseT-FDX, 1000baseT-FDX-master,
>>>>>> 1000baseT-FDX-flow, 1000baseT-FDX-flow-master, auto, auto-flow
>>>>>> re0: Ethernet address: 6c:3b:e5:81:21:f0
>>>>>> pcib2: <ACPI PCI-PCI bridge> at device 5.0 on pci0
>>>>>> pci2: <ACPI PCI bus> on pcib2
>>>>>> ath0: <Qualcomm Atheros AR9565> mem 0xf0100000-0xf017ffff irq 17 at
>>>>>> device
>>>>>> 0.0 on pci2
>>>>>> ar9300_set_stub_functions: setting stub functions
>>>>>> ar9300_set_stub_functions: setting stub functions
>>>>>> ar9300_attach: calling
>>> ar9300_hw_attach
>>>>>> ar9300_hw_attach: calling ar9300_eeprom_attach
>>>>>> ar9300_flash_map: unimplemented for now
>>>>>> Restoring Cal data from DRAM
>>>>>> Restoring Cal data from EEPROM
>>>>>> Restoring Cal data from Flash
>>>>>> Restoring Cal data from Flash
>>>>>> Restoring Cal data from OTP
>>>>>> ar9300_hw_attach: ar9300_eeprom_attach returned 0
>>>>>> ar9300_fill_capability_info: (MCI) MCI support = 1
>>>>>> ath0: RX status length: 48
>>>>>> ath0: RX buffer size: 4096
>>>>>> ath0: TX descriptor length: 128
>>>>>> ath0: TX status length: 36
>>>>>> ath0: TX buffers per descriptor: 4
>>>>>> ar9300_freebsd_setup_x_tx_desc: called, 0x0/0, 0x0/0, 0x0/0
>>>>>> ath0: ath_edma_setup_rxfifo: type=0, FIFO depth = 16 entries
>>>>>> ath0: ath_edma_setup_rxfifo: type=1, FIFO depth = 128
>>> entries
>>>>>> ath0: [HT] enabling HT modes
>>>>>> ath0: [HT] enabling short-GI in 20MHz mode
>>>>>> ath0: [HT] 1 stream STBC receive enabled
>>>>>> ath0: [HT] 1 RX streams; 1 TX streams
>>>>>> ath0: AR9565 mac 704.0 RF5110 phy 526.12
>>>>>> ath0: 2GHz radio: 0x0000; 5GHz radio: 0x0000
>>>>>> xhci0: <XHCI (generic) USB 3.0 controller> mem 0xf0348000-0xf0349fff irq
>>>>>> 18
>>>>>> at device 16.0 on pci0
>>>>>> usbus0: waiting for BIOS to give up control
>>>>>> xhci0: 32 byte context size.
>>>>>> usbus0 on xhci0
>>>>>> ahci0: <AMD Hudson-2 AHCI SATA controller> port
>>>>>> 0x3118-0x311f,0x3124-0x3127,0x3110-0x3117,0x3120-0x3123,0x3100-0x310f mem
>>>>>> 0xf034e000-0xf034e7ff irq 19 at device 17.0 on pci0
>>>>>> ahci0: AHCI v1.30 with 1 6Gbps ports, Port Multiplier supported
>>>>>> ahcich0:
>>> <AHCI channel> at channel 0 on ahci0
>>>>>> ohci0: <OHCI (generic) USB controller> mem 0xf034d000-0xf034dfff irq 18
>>>>>> at
>>>>>> device 18.0 on pci0
>>>>>> usbus1 on ohci0
>>>>>> ehci0: <EHCI (generic) USB 2.0 controller> mem 0xf034c000-0xf034c0ff irq
>>>>>> 17
>>>>>> at device 18.2 on pci0
>>>>>> usbus2: EHCI version 1.0
>>>>>> usbus2 on ehci0
>>>>>> ohci1: <OHCI (generic) USB controller> mem 0xf034b000-0xf034bfff irq 18
>>>>>> at
>>>>>> device 19.0 on pci0
>>>>>> usbus3 on ohci1
>>>>>> ehci1: <EHCI (generic) USB 2.0 controller> mem 0xf034a000-0xf034a0ff irq
>>>>>> 17
>>>>>> at device 19.2 on pci0
>>>>>> usbus4: EHCI version 1.0
>>>>>> usbus4 on ehci1
>>>>>> pci0: <serial bus, SMBus> at device 20.0 (no driver attached)
>>>>>> hdac1:
>>> <Generic (0x780d1022) HDA Controller> mem 0xf0340000-0xf0343fff
>>>>>> irq
>>>>>> 16 at device 20.2 on pci0
>>>>>> isab0: <PCI-ISA bridge> at device 20.3 on pci0
>>>>>> isa0: <ISA bus> on isab0
>>>>>> pcib3: <ACPI PCI-PCI bridge> at device 20.4 on pci0
>>>>>> pci3: <ACPI PCI bus> on pcib3
>>>>>> acpi_lid0: <Control Method Lid Switch> on acpi0
>>>>>> acpi_tz0: <Thermal Zone> on acpi0
>>>>>> acpi_tz0: _CRT value is absurd, ignored (226.8C)
>>>>>> atkbdc0: <Keyboard controller (i8042)> port 0x60,0x64 irq 1 on acpi0
>>>>>> atkbd0: <AT Keyboard> irq 1 on atkbdc0
>>>>>> kbd0 at atkbd0
>>>>>> atkbd0: [GIANT-LOCKED]
>>>>>> psm0: <PS/2 Mouse> irq 12 on atkbdc0
>>>>>> psm0: [GIANT-LOCKED]
>>>>>> psm0: model Synaptics Touchpad, device ID 0
>>>>>>
>>> battery0: <ACPI Control Method Battery> on acpi0
>>>>>> acpi_acad0: <AC Adapter> on acpi0
>>>>>> sc0: <System console> at flags 0x100 on isa0
>>>>>> sc0: VGA <16 virtual consoles, flags=0x300>
>>>>>> vga0: <Generic ISA VGA> at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0
>>>>>> ctl: CAM Target Layer loaded
>>>>>> acpi_throttle0: <ACPI CPU Throttling> on cpu0
>>>>>> acpi_throttle1: <ACPI CPU Throttling> on cpu1
>>>>>> acpi_throttle1: failed to attach P_CNT
>>>>>> device_attach: acpi_throttle1 attach returned 6
>>>>>> acpi_throttle2: <ACPI CPU Throttling> on cpu2
>>>>>> acpi_throttle2: failed to attach P_CNT
>>>>>> device_attach: acpi_throttle2 attach returned 6
>>>>>> acpi_throttle3: <ACPI CPU Throttling> on cpu3
>>>>>> acpi_throttle3: failed to attach P_CNT
>>>>>>
>>> device_attach: acpi_throttle3 attach returned 6
>>>>>> ZFS filesystem version: 5
>>>>>> ZFS storage pool version: features support (5000)
>>>>>> Timecounters tick every 1.000 msec
>>>>>> hdacc0: <ATI R6xx HDA CODEC> at cad 0 on hdac0
>>>>>> hdaa0: <ATI R6xx Audio Function Group> at nid 1 on hdacc0
>>>>>> pcm0: <ATI R6xx (HDMI)> at nid 3 on hdaa0
>>>>>> hdacc1: <IDT 92HD91BXX HDA CODEC> at cad 0 on hdac1
>>>>>> hdaa1: <IDT 92HD91BXX Audio Function Group> at nid 1 on hdacc1
>>>>>> pcm1: <IDT 92HD91BXX (Analog 2.0+HP/2.0)> at nid 13,11 and 12 on hdaa1
>>>>>> pcm2: <IDT 92HD91BXX (Analog Mic)> at nid 17 on hdaa1
>>>>>> usbus0: 5.0Gbps Super Speed USB v3.0
>>>>>> usbus1: 12Mbps Full Speed USB v1.0
>>>>>> usbus2: 480Mbps High Speed USB v2.0
>>>>>> usbus3: 12Mbps Full Speed USB
>>> v1.0
>>>>>> usbus4: 480Mbps High Speed USB v2.0
>>>>>> ugen3.1: <AMD> at usbus3
>>>>>> uhub0: <AMD OHCI root HUB, class 9/0, rev 1.00/1.00, addr 1> on usbus3
>>>>>> ugen2.1: <AMD> at usbus2
>>>>>> uhub1: <AMD EHCI root HUB, class 9/0, rev 2.00/1.00, addr 1> on usbus2
>>>>>> ugen1.1: <AMD> at usbus1
>>>>>> uhub2: <AMD OHCI root HUB, class 9/0, rev 1.00/1.00, addr 1> on usbus1
>>>>>> ugen0.1: <0x1022> at usbus0
>>>>>> uhub3: <0x1022 XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1> on usbus0
>>>>>> ugen4.1: <AMD> at usbus4
>>>>>> uhub4: <AMD EHCI root HUB, class 9/0, rev 2.00/1.00, addr 1> on usbus4
>>>>>> ada0 at ahcich0 bus 0 scbus0 target 0 lun 0
>>>>>> ada0: <Samsung SSD 840 Series DXT06B0Q> ATA-9 SATA 3.x device
>>>>>> ada0: 600.000MB/s transfers (SATA 3.x,
>>> UDMA6, PIO 8192bytes)
>>>>>> ada0: Command Queueing enabled
>>>>>> ada0: 238475MB (488397168 512 byte sectors: 16H 63S/T 16383C)
>>>>>> ada0: Previously was known as ad4
>>>>>> SMP: AP CPU #3 Launched!
>>>>>> SMP: AP CPU #1 Launched!
>>>>>> SMP: AP CPU #2 Launched!
>>>>>> Timecounter "TSC" frequency 1996309068 Hz quality 1000
>>>>>> Root mount waiting for: usbus4 usbus3 usbus2 usbus1 usbus0
>>>>>> uhub0: 5 ports with 5 removable, self powered
>>>>>> uhub2: 5 ports with 5 removable, self powered
>>>>>> ACPI Error: No handler for Region [RCM0] (0xfffffe0026ac6b00)
>>>>>> [SystemCMOS]
>>>>>> (20130626/evregion-178)
>>>>>> ACPI Error: Region SystemCMOS (ID=5) has no handler
>>>>>> (20130626/exfldio-320)
>>>>>> ACPI Error: Method parse/execution failed [\134_SB_.WMID.ESDT] (Node
>>>>>> 0xfffffe0026adac40),
>>> AE_NOT_EXIST (20130626/psparse-553)
>>>>>> ACPI Error: Method parse/execution failed [\134_SB_.PCI0.LPC0.EC0_._Q42]
>>>>>> (Node 0xfffffe0026ae8340), AE_NOT_EXIST (20130626/psparse-553)
>>>>>> acpi_ec0: evaluation of query method _Q42 failed: AE_NOT_EXIST
>>>>>> uhub3: 4 ports with 4 removable, self powered
>>>>>> Root mount waiting for: usbus4 usbus2
>>>>>> uhub1: 5 ports with 5 removable, self powered
>>>>>> uhub4: 5 ports with 5 removable, self powered
>>>>>> Root mount waiting for: usbus4 usbus2
>>>>>> ugen2.2: <Ralink> at usbus2
>>>>>> ugen4.2: <SuYin> at usbus4
>>>>>> Trying to mount root from zfs:sys []...
>>>>>> can't evaluate \134_SB_.PCI0.VGA_.LCD_._DCS - AE_NOT_FOUND
>>>>>> can't evaluate \134_SB_.PCI0.VGA_.LCD_._DCS - AE_NOT_FOUND
>>>>>> ugen3.2: <vendor 0x0cf3> at usbus3
>>>>>>
>>> ar9300_Stub_GetCTSTimeout: called
>>>>>> ar9300_Stub_GetCTSTimeout: called
>>>>>> ar9300_Stub_GetAntennaSwitch: called
>>>>>> ar9300_Stub_GetAntennaSwitch: called
>>>>>> wlan1: Ethernet address: 20:68:9d:c5:76:8d
>>>>>> run0: <Ralink 11n Adapter, class 0/0, rev 2.00/1.01, addr 2> on usbus2
>>>>>> run0: MAC/BBP RT3071 (rev 0x0213), RF RT3022 (MIMO 2T2R), address
>>>>>> 1c:bd:b9:8c:9d:71
>>>>>> ubt0: <vendor 0x0cf3 product 0x311f, class 224/1, rev 1.10/0.01, addr 2>
>>>>>> on
>>>>>> usbus3
>>>>>> wlan0: Ethernet address: 1c:bd:b9:8c:9d:71
>>>>>> run0: firmware RT3071 ver. 0.236 loaded
>>>>>> WARNING: attempt to domain_add(bluetooth) after domainfinalize()
>>>>>> WARNING: attempt to domain_add(netgraph) after domainfinalize()
>>>>>> can't evaluate \134_SB_.PCI0.VGA_.LCD_._DCS - AE_NOT_FOUND
>>>>>> can't
>>> evaluate \134_SB_.PCI0.VGA_.LCD_._DCS - AE_NOT_FOUND
>>>>>> WARNING pid 2654 (python2.7): ioctl sign-extension ioctl ffffffff80087467
>>>>>> WARNING pid 2655 (python2.7): ioctl sign-extension ioctl ffffffff80087467
>>>>>> WARNING pid 2656 (python2.7): ioctl sign-extension ioctl ffffffff80087467
>>>>>> wlan0: Ethernet address: 1c:bd:b9:8c:9d:71
>>>>>> run0: firmware RT3071 ver. 0.236 loaded
>>>>>> wlan0: link state changed to UP
>>>>>> can't evaluate \134_SB_.PCI0.VGA_.LCD_._DCS - AE_NOT_FOUND
>>>>>> uhub3: at usbus0, port 1, addr 1 (disconnected)
>>>>>> uhub2: at usbus1, port 1, addr 1 (disconnected)
>>>>>> xhci_interrupt: host controller halted
>>>>>> xhci_interrupt: host controller halted
>>>>>> xhci_interrupt: host controller halted
>>>>>> xhci_interrupt: host controller halted
>>>>>> xhci_interrupt: host controller
>>> halted
>>>>>> xhci_interrupt: host controller halted
>>>>>> xhci_interrupt: host controller halted
>>>>>> uhub1: at usbus2, port 1, addr 1 (disconnected)
>>>>>> ugen2.2: <Ralink> at usbus2 (disconnected)
>>>>>> run0: at uhub1, port 1, addr 2 (disconnected)
>>>>>> xhci_interrupt: host controller halted
>>>>>> xhci_interrupt: host controller halted
>>>>>> xhci_interrupt: host controller halted
>>>>>> xhci_interrupt: host controller halted
>>>>>> xhci_interrupt: host controller halted
>>>>>> xhci_interrupt: host controller halted
>>>>>> xhci_interrupt: host controller halted
>>>>>> xhci_interrupt: host controller halted
>>>>>> xhci_interrupt: host controller halted
>>>>>> xhci_interrupt: host controller halted
>>>>>> xhci_interrupt: host controller halted
>>>>>> xhci_interrupt: host controller
>>> halted
>>>>>> xhci_interrupt: host controller halted
>>>>>> xhci_interrupt: host controller halted
>>>>>> xhci_interrupt: host controller halted
>>>>>> xhci_interrupt: host controller halted
>>>>>> xhci_interrupt: host controller halted
>>>>>> wlan0: link state changed to DOWN
>>>>>> uhub0: at usbus3, port 1, addr 1 (disconnected)
>>>>>> ugen3.2: <vendor 0x0cf3> at usbus3 (disconnected)
>>>>>> ubt0: at uhub0, port 4, addr 2 (disconnected)
>>>>>> xhci_interrupt: host controller halted
>>>>>> xhci_interrupt: host controller halted
>>>>>> uhub4: at usbus4, port 1, addr 1 (disconnected)
>>>>>> ugen4.2: <SuYin> at usbus4 (disconnected)
>>>>>> ACPI Error: No handler for Region [RCM0] (0xfffffe0026ac6b00)
>>>>>> [SystemCMOS]
>>>>>> (20130626/evregion-178)
>>>>>> ACPI Error: Region SystemCMOS (ID=5)
>>> has no handler
>>>>>> (20130626/exfldio-320)
>>>>>> ACPI Error: Method parse/execution failed [\134_SB_.WMID.ESDT] (Node
>>>>>> 0xfffffe0026adac40), AE_NOT_EXIST (20130626/psparse-553)
>>>>>> ACPI Error: Method parse/execution failed [\134_PTS] (Node
>>>>>> 0xfffffe0026ab4c80), AE_NOT_EXIST (20130626/psparse-553)
>>>>>> acpi0: AcpiEnterSleepStatePrep failed - AE_NOT_EXIST
>>>>>> can't evaluate \134_SB_.PCI0.VGA_.LCD_._DCS - AE_NOT_FOUND
>>>>>> xhci0: 32 byte context size.
>>>>>> uhub0: <0x1022 XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1> on usbus0
>>>>>> uhub1: <AMD EHCI root HUB, class 9/0, rev 2.00/1.00, addr 1> on usbus2
>>>>>> uhub2: <AMD EHCI root HUB, class 9/0, rev 2.00/1.00, addr 1> on usbus4
>>>>>> uhub3: <AMD OHCI root HUB, class 9/0, rev 1.00/1.00, addr 1> on usbus3
>>>>>> uhub4: <AMD OHCI root
>>> HUB, class 9/0, rev 1.00/1.00, addr 1> on usbus1
>>>>>> uhub0: 4 ports with 4 removable, self powered
>>>>>> uhub4: 5 ports with 5 removable, self powered
>>>>>> uhub3: 5 ports with 5 removable, self powered
>>>>>> uhub1: 5 ports with 5 removable, self powered
>>>>>> uhub2: 5 ports with 5 removable, self powered
>>>>>> ugen2.2: <Ralink> at usbus2
>>>>>> run0: <Ralink 11n Adapter, class 0/0, rev 2.00/1.01, addr 2> on usbus2
>>>>>> ugen4.2: <SuYin> at usbus4
>>>>>> run0: MAC/BBP RT3071 (rev 0x0213), RF RT3022 (MIMO 2T2R), address
>>>>>> 1c:bd:b9:8c:9d:71
>>>>>> wlan0: Ethernet address: 1c:bd:b9:8c:9d:71
>>>>>> run0: firmware RT3071 ver. 0.236 loaded
>>>>>> ugen3.2: <vendor 0x0cf3> at usbus3
>>>>>> ubt0: <vendor 0x0cf3 product 0x311f, class 224/1, rev 1.10/0.01, addr 2>
>>>>>>
>>> on
>>>>>> usbus3
>>>>>> wlan0: link state changed to UP
>>>>>> can't evaluate \134_SB_.PCI0.VGA_.LCD_._DCS - AE_NOT_FOUND
>>>>>>
>>>>>> [root at laptop /usr/src]# cat /etc/rc.conf
>>>>>> wlans_run0="wlan0"
>>>>>> wlans_ath0="wlan1"
>>>>>> ifconfig_wlan0="DHCP WPA"
>>>>>> ...
>>>>>>
>>>>>> [root at laptop /usr/src]# ifconfig -a
>>>>>> ath0: flags=8802<BROADCAST,SIMPLEX,MULTICAST> metric 0 mtu 2290
>>>>>> ether 20:68:9d:c5:76:8d
>>>>>> nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
>>>>>> media: IEEE 802.11 Wireless Ethernet autoselect (autoselect)
>>>>>> status: no carrier
>>>>>> wlan1:
>>> flags=8802<BROADCAST,SIMPLEX,MULTICAST> metric 0 mtu 1500
>>>>>> ether 20:68:9d:c5:76:8d
>>>>>> nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
>>>>>> media: IEEE 802.11 Wireless Ethernet autoselect (autoselect)
>>>>>> status: no carrier
>>>>>> ssid "" channel 1 (2412 MHz 11b)
>>>>>> regdomain 106 indoor ecm authmode OPEN privacy OFF txpower 20 bmiss
>>>>>> 7
>>>>>> scanvalid 60 wme burst bintval 0
>>>>>> ...
>>>>>>
>>>>>> [root at laptop /usr/src]# /etc/rc.d/netif start ath0
>>>>>> Starting Network: ath0.
>>>>>> ath0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu
>>>>>>
>>> 2290
>>>>>> ether 20:68:9d:c5:76:8d
>>>>>> nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
>>>>>> media: IEEE 802.11 Wireless Ethernet autoselect mode 11g
>>>>>> status: associated
>>>>>> Additional inet routing options: ignore ICMP redirect=YES log ICMP
>>>>>> redirect=YES.
>>>>>>
>>>>>> [root at laptop /usr/src]# for iface in ath0 wlan1; do ifconfig ${iface};
>>>>>> done
>>>>>> ath0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu
>>>>>> 2290
>>>>>> ether 20:68:9d:c5:76:8d
>>>>>> nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
>>>>>> media: IEEE 802.11 Wireless Ethernet autoselect mode
>>> 11g
>>>>>> status: associated
>>>>>> wlan1: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu
>>>>>> 1500
>>>>>> ether 20:68:9d:c5:76:8d
>>>>>> inet 67.215.65.145 netmask 0xff000000 broadcast 67.215.65.145
>>>>>> nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
>>>>>> media: IEEE 802.11 Wireless Ethernet autoselect (autoselect)
>>>>>> status: no carrier
>>>>>> ssid "" channel 2 (2417 MHz 11g)
>>>>>> regdomain 106 indoor ecm authmode OPEN privacy OFF txpower 20 bmiss
>>>>>> 7
>>>>>> scanvalid 60 protmode CTS wme burst
>>>>>>
>>>>>> [root at laptop /usr/src]# dmesg
>>>>>> ...
>>>>>> ath0: ath_edma_recv_tasklet: sc_inreset_cnt > 0; skipping
>>>>>> ath0: ath_edma_recv_tasklet: sc_inreset_cnt > 0; skipping
>>>>>> ath0: ath_edma_recv_tasklet: sc_inreset_cnt > 0; skipping
>>>>>> ath0: ath_edma_recv_tasklet: sc_inreset_cnt > 0; skipping
>>>>>> ath0: ath_edma_recv_tasklet: sc_inreset_cnt > 0; skipping
>>>>>> ath0: ath_edma_recv_tasklet: sc_inreset_cnt > 0; skipping
>>>>>>
>>>>>>
>>>>>> --
>>>>>> Anthony Jenkins
>>>>>> _______________________________________________
>>>>>> freebsd-wireless at freebsd.org mailing list
>>>>>> http://lists.freebsd.org/mailman/listinfo/freebsd-wireless
>>>>>> To unsubscribe, send any mail to
>>>>>> "freebsd-wireless-unsubscribe at freebsd.org"
>>>>
>>>>
>>>> --
>>>> Anthony Jenkins
-------------- next part --------------
0000: 0402 6820 c59d 8d76 4257 3333 2d35 3130
0008: 2d30 3044 3030 0031 0044 0000 006a 001f
0010: 0211 2d00 0000 0005 0058 225d 0010 ff08
0018: 7611 1e42 5012 4005 2200 0222 5000 5001
0020: 1001 0000 0000 0000 1900 6400 8ca4 00b4
0028: 00ff 0000 0000 0000 0000 0000 0000 0000
0030: 0e0e 0003 e22c 0200 1c0e ffff 0800 ffff
0038: 0800 0353 0000 0000 0000 0000 0000 0000
0040: 2d2d 3232 373c 3c3c 0000 8970 e7a2 8700
0048: 0000 e700 8800 0000 e900 8800 0000 0000
0050: 0000 0000 0000 0000 0000 0000 0000 0000
0058: 0000 0000 0000 0000 0000 0000 0000 0000
0060: 0000 7000 70ac ac89 8970 70ac 9889 2424
0068: 2424 2424 2424 2224 1c20 2224 1c20 2224
0070: 1c20 2222 2022 1a1e 0000 0000 0000 0000
0078: 2222 2022 1a1e 0000 0000 0000 0000 2222
0080: 2022 1a1e 0000 0000 0000 0000 2020 2020
0088: 1a1e 0000 0000 0000 0000 2020 2020 1a1e
0090: 0000 0000 0000 0000 2020 2020 1a1e 0000
0098: 0000 0000 0000 1211 1715 4241 4745 3231
00a0: 3735 7570 b8ac 7570 b8ac 7570 b8ac 7570
00a8: b8ac 7570 b8ac 7570 b8ac 7570 b8ac 7570
00b0: b8ac 7570 b8ac 7570 b8ac 7570 b8ac 7570
00b8: b8ac 7c3c 7c3c 7c3c 7c3c 7c3c 7c3c 7c3c
00c0: 7c3c 7c3c 7c3c 7c3c 7c3c 7c3c 7c3c 7c3c
00c8: 7c3c 7c3c 7c3c 7c3c 7c3c 7c3c 7c3c 7c3c
00d0: 7c3c 0550 0040 2222 0002 0150 0150 0010
00d8: 0000 0000 0000 0037 9050 b0a0 ffc8 0000
00e0: 0000 0000 0000 0000 0000 0000 0e00 030e
00e8: 2d00 00e2 0e02 e01c f0e0 e00c f0e0 936c
00f0: 0003 0000 0000 0000 2d00 003c 0000 0000
00f8: 0000 0000 0000 4800 6854 8c78 b4a0 00c5
0100: 0000 0000 0000 0000 0000 0000 0000 0000
0108: 0000 0000 0000 0000 0000 0000 0000 0000
0110: 0000 0000 0000 0000 0000 0000 0000 0000
0118: 0000 0000 0000 0000 0000 0000 0000 0000
0120: 0000 0000 0000 0000 0000 0000 0000 0000
0128: 0000 0000 0000 0000 0000 0000 0000 0000
0130: 0000 0000 0000 0000 0000 0000 0000 0000
0138: 0000 0000 0000 0000 0000 0000 0000 0000
0140: 0000 0000 0000 0000 0000 0000 0000 4c00
0148: 6858 8c78 b4a0 4ccd 6858 8c78 bdb4 4ccd
0150: 6858 8c78 bdb4 1ec5 1a1c 1e14 1a1c 1e14
0158: 1a1c 1e14 1a1c 1c14 181a 1c12 181a 1c12
0160: 181a 1c10 181a 1c10 181a 1416 0012 0000
0168: 0000 0000 1c00 181a 1416 0012 0000 0000
0170: 0000 1c00 181a 1416 0012 0000 0000 0000
0178: 1c00 181a 1416 0012 0000 0000 0000 1c00
0180: 181a 1416 0012 0000 0000 0000 1c00 181a
0188: 1416 0012 0000 0000 0000 1c00 181a 1416
0190: 0012 0000 0000 0000 1c00 181a 1416 0012
0198: 0000 0000 0000 1c00 181a 1416 0012 0000
01a0: 0000 0000 1c00 181a 1416 0012 0000 0000
01a8: 0000 1c00 181a 1416 0012 0000 0000 0000
01b0: 1c00 181a 1416 0012 0000 0000 0000 1c00
01b8: 181a 1416 0012 0000 0000 0000 1c00 181a
01c0: 1416 0012 0000 0000 0000 1c00 181a 1416
01c8: 0012 0000 0000 0000 1c00 181a 1416 0012
01d0: 0000 0000 0000 1000 1816 4640 3048 3836
01d8: 544c 7868 a08c cdb9 544c 7868 a08c cdb9
01e0: 544c 7868 a08c cdb9 544c 7868 a08c cdb9
01e8: 544c 7868 a08c cdb9 544c 7868 a08c cdb9
01f0: 544c 7868 a08c cdb9 544c 7868 a08c cdb9
01f8: 544c 7868 a08c cdb9 7c3c 7c3c 7c3c 7c3c
0200: 7c3c 7c3c 7c3c 7c3c 7c3c 7c3c 7c3c 7c3c
0208: 7c3c 7c3c 7c3c 7c3c 7c3c 7c3c 7c3c 7c3c
0210: 7c3c 7c3c 7c3c 7c3c 7c3c 7c3c 7c3c 7c3c
0218: 7c3c 7c3c 7c3c 7c3c 7c3c 7c3c 7c3c 7c3c
0220: 0000 0000 0000 0000 0000 0000 0000 0000
0228: 0000 0000 0000 0000 0000 0000 0000 0000
0230: 0000 0000 0000 0000 0000 0000 0000 0000
0238: 0000 0000 0000 0000 0000 0000 0000 0000
0240: 0000 0000 0000 0000 0000 0000 0000 0000
0248: 0000 0000 0000 0000 0000 0000 0000 0000
0250: 0000 0000 0000 0000 0000 0000 0000 0000
0258: 0000 0000 0000 0000 0000 0000 0000 0000
0260: 0000 0000 0000 0000 0000 0000 0000 0000
0268: 0000 0000 0000 0000 0000 0000 0000 0000
0270: 0000 0000 0000 0000 0000 0000 0000 0000
0278: 0000 0000 0000 0000 0000 0000 0000 0000
0280: 0000 0000 0000 0000 0000 0000 0000 0000
0288: 0000 0000 0000 0000 0000 0000 0000 0000
0290: 0000 0000 0000 0000 0000 0000 0000 0000
0298: 0000 0000 0000 0000 0000 0000 0000 0000
02a0: 0000 0000 0000 0000 0000 0000 0000 0000
02a8: 0000 0000 0000 0000 0000 0000 0000 0000
02b0: 0000 0000 0000 0000 0000 0000 0000 0000
02b8: 0000 0000 0000 0000 0000 0000 0000 0000
02c0: 0000 0000 0000 0000 0000 0000 0000 0000
02c8: 0000 0000 0000 0000 0000 0000 0000 0000
02d0: 0000 0000 0000 0000 0000 0000 0000 0000
02d8: 0000 0000 0000 0000 0000 0000 0000 0000
02e0: 0000 0000 0000 0000 0000 0000 0000 0000
02e8: 0000 0000 0000 0000 0000 0000 0000 0000
02f0: 0000 0000 0000 0000 0000 0000 0000 0000
02f8: 0000 0000 0000 0000 0000 0000 0000 0000
0300: 0000 0000 0000 0000 0000 0000 0000 0000
0308: 0000 0000 0000 0000 0000 0000 0000 0000
0310: 0000 0000 0000 0000 0000 0000 0000 0000
0318: 0000 0000 0000 0000 0000 0000 0000 0000
0320: 0000 0000 0000 0000 0000 0000 0000 0000
0328: 0000 0000 0000 0000 0000 0000 0000 0000
0330: 0000 0000 0000 0000 0000 0000 0000 0000
0338: 0000 0000 0000 0000 0000 0000 0000 0000
0340: 0000 0000 0000 0000 0000 0000 0000 0000
0348: 0000 0000 0000 0000 0000 0000 0000 0000
0350: 0000 0000 0000 0000 0000 0000 0000 0000
0358: 0000 0000 0000 0000 0000 0000 0000 0000
0360: 0000 0000 0000 0000 0000 0000 0000 0000
0368: 0000 0000 0000 0000 0000 0000 0000 0000
0370: 0000 0000 0000 0000 0000 0000 0000 0000
0378: 0000 0000 0000 0000 0000 0000 0000 0000
0380: 0000 0000 0000 0000 0000 0000 0000 0000
0388: 0000 0000 0000 0000 0000 0000 0000 0000
0390: 0000 0000 0000 0000 0000 0000 0000 0000
0398: 0000 0000 0000 0000 0000 0000 0000 0000
03a0: 0000 0000 0000 0000 0000 0000 0000 0000
03a8: 0000 0000 0000 0000 0000 0000 0000 0000
03b0: 0000 0000 0000 0000 0000 0000 0000 0000
03b8: 0000 0000 0000 0000 0000 0000 0000 0000
03c0: 0000 0000 0000 0000 0000 0000 0000 0000
03c8: 0000 0000 0000 0000 0000 0000 0000 0000
03d0: 0000 0000 0000 0000 0000 0000 0000 0000
03d8: 0000 0000 0000 0000 0000 0000 0000 0000
03e0: 0000 0000 0000 0000 0000 0000 0000 0000
03e8: 0000 0000 0000 0000 0000 0000 0000 0000
03f0: 0000 0000 0000 0000 0000 0000 0000 0000
03f8: 0000 0000 0000 0000 0000 0000 0000 0000
0400: 0000 0000 0000 0000 0000 0000 0000 0000
0408: 0000 0000 0000 0000 0000 0000 0000 0000
0410: 0000 0000 0000 0000 0000 0000 0000 0000
0418: 0000 0000 0000 0000 0000 0000 0000 0000
0420: 0000 0000 0000 0000 0000 0000 0000 0000
0428: 0000 0000 0000 0000 0000 0000 0000 0000
0430: 0000 0000 0000 0000 0000 0000 0000 0000
0438: 0000 0000 0000 0000 0000 0000 0000 0000
0440: 0000 0000 0000 0000 0000 0000 0000 0000
0448: 0000 0000 0000 0000 0000 0000 0000 0000
0450: 0000 0000 0000 0000 0000 0000 0000 0000
0458: 0000 0000 0000 0000 0000 0000 0000 0000
0460: 0000 0000 0000 0000 0000 0000 0000 0000
0468: 0000 0000 0000 0000 0000 0000 0000 0000
0470: 0000 0000 0000 0000 0000 0000 0000 0000
0478: 0000 0000 0000 0000 0000 0000 0000 0000
0480: 0000 0000 0000 0000 0000 0000 0000 0000
0488: 0000 0000 0000 0000 0000 0000 0000 0000
0490: 0000 0000 0000 0000 0000 0000 0000 0000
0498: 0000 0000 0000 0000 0000 0000 0000 0000
04a0: 0000 0000 0000 0000 0000 0000 0000 0000
04a8: 0000 0000 0000 0000 0000 0000 0000 0000
04b0: 0000 0000 0000 0000 0000 0000 0000 0000
04b8: 0000 0000 0000 0000 0000 0000 0000 0000
04c0: 0000 0000 0000 0000 0000 0000 0000 0000
04c8: 0000 0000 0000 0000 0000 0000 0000 0000
04d0: 0000 0000 0000 0000 0000 0000 0000 0000
04d8: 0000 0000 0000 0000 0000 0000 0000 0000
04e0: 0000 0000 0000 0000 0000 0000 0000 0000
04e8: 0000 0000 0000 0000 0000 0000 0000 0000
04f0: 0000 0000 0000 0000 0000 0000 0000 0000
04f8: 0000 0000 0000 0000 0000 0000 0000 0000
0500: 0000 0000 0000 0000 0000 0000 0000 0000
0508: 0000 0000 0000 0000 0000 0000 0000 0000
0510: 0000 0000 0000 0000 0000 0000 0000 0000
0518: 0000 0000 0000 0000 0000 0000 0000 0000
0520: 0000 0000 0000 0000 0000 0000 0000 0000
0528: 0000 0000 0000 0000 0000 0000 0000 0000
0530: 0000 0000 0000 0000 0000 0000 0000 0000
0538: 0000 0000 0000 0000 0000 0000 0000 0000
0540: 0000 0000 0000 0000 0000 0000 0000 0000
0548: 0000 0000 0000 0000 0000 0000 0000 0000
0550: 0000 0000 0000 0000 0000 0000 0000 0000
0558: 0000 0000 0000 0000 0000 0000 0000 0000
0560: 0000 0000 0000 0000 0000 0000 0000 0000
0568: 0000 0000 0000 0000 0000 0000 0000 0000
0570: 0000 0000 0000 0000 0000 0000 0000 0000
0578: 0000 0000 0000 0000 0000 0000 0000 0000
0580: 0000 0000 0000 0000 0000 0000 0000 0000
0588: 0000 0000 0000 0000 0000 0000 0000 0000
0590: 0000 0000 0000 0000 0000 0000 0000 0000
0598: 0000 0000 0000 0000 0000 0000 0000 0000
05a0: 0000 0000 0000 0000 0000 0000 0000 0000
05a8: 0000 0000 0000 0000 0000 0000 0000 0000
05b0: 0000 0000 0000 0000 0000 0000 0000 0000
05b8: 0000 0000 0000 0000 0000 0000 0000 0000
05c0: 0000 0000 0000 0000 0000 0000 0000 0000
05c8: 0000 0000 0000 0000 0000 0000 0000 0000
05d0: 0000 0000 0000 0000 0000 0000 0000 0000
05d8: 0000 0000 0000 0000 0000 0000 0000 0000
05e0: 0000 0000 0000 0000 0000 0000 0000 0000
05e8: 0000 0000 0000 0000 0000 0000 0000 0000
05f0: 0000 0000 0000 0000 0000 0000 0000 0000
05f8: 0000 0000 0000 0000 0000 0000 0000 0000
0600: 0000 0000 0000 0000 0000 0000 0000 0000
0608: 0000 0000 0000 0000 0000 0000 0000 0000
0610: 0000 0000 0000 0000 0000 0000 0000 0000
0618: 0000 0000 0000 0000 0000 0000 0000 0000
0620: 0000 0000 0000 0000 0000 0000 0000 0000
0628: 0000 0000 0000 0000 0000 0000 0000 0000
0630: 0000 0000 0000 0000 0000 0000 0000 0000
0638: 0000 0000 0000 0000 0000 0000 0000 0000
0640: 0000 0000 0000 0000 0000 0000 0000 0000
0648: 0000 0000 0000 0000 0000 0000 0000 0000
0650: 0000 0000 0000 0000 0000 0000 0000 0000
0658: 0000 0000 0000 0000 0000 0000 0000 0000
0660: 0000 0000 0000 0000 0000 0000 0000 0000
0668: 0000 0000 0000 0000 0000 0000 0000 0000
0670: 0000 0000 0000 0000 0000 0000 0000 0000
0678: 0000 0000 0000 0000 0000 0000 0000 0000
0680: 0000 0000 0000 0000 0000 0000 0000 0000
0688: 0000 0000 0000 0000 0000 0000 0000 0000
0690: 0000 0000 0000 0000 0000 0000 0000 0000
0698: 0000 0000 0000 0000 0000 0000 0000 0000
06a0: 0000 0000 0000 0000 0000 0000 0000 0000
06a8: 0000 0000 0000 0000 0000 0000 0000 0000
06b0: 0000 0000 0000 0000 0000 0000 0000 0000
06b8: 0000 0000 0000 0000 0000 0000 0000 0000
06c0: 0000 0000 0000 0000 0000 0000 0000 0000
06c8: 0000 0000 0000 0000 0000 0000 0000 0000
06d0: 0000 0000 0000 0000 0000 0000 0000 0000
06d8: 0000 0000 0000 0000 0000 0000 0000 0000
06e0: 0000 0000 0000 0000 0000 0000 0000 0000
06e8: 0000 0000 0000 0000 0000 0000 0000 0000
06f0: 0000 0000 0000 0000 0000 0000 0000 0000
06f8: 0000 0000 0000 0000 0000 0000 0000 0000
0700: 0000 0000 0000 0000 0000 0000 0000 0000
0708: 0000 0000 0000 0000 0000 0000 0000 0000
0710: 0000 0000 0000 0000 0000 0000 0000 0000
0718: 0000 0000 0000 0000 0000 0000 0000 0000
0720: 0000 0000 0000 0000 0000 0000 0000 0000
0728: 0000 0000 0000 0000 0000 0000 0000 0000
0730: 0000 0000 0000 0000 0000 0000 0000 0000
0738: 0000 0000 0000 0000 0000 0000 0000 0000
0740: 0000 0000 0000 0000 0000 0000 0000 0000
0748: 0000 0000 0000 0000 0000 0000 0000 0000
0750: 0000 0000 0000 0000 0000 0000 0000 0000
0758: 0000 0000 0000 0000 0000 0000 0000 0000
0760: 0000 0000 0000 0000 0000 0000 0000 0000
0768: 0000 0000 0000 0000 0000 0000 0000 0000
0770: 0000 0000 0000 0000 0000 0000 0000 0000
0778: 0000 0000 0000 0000 0000 0000 0000 0000
0780: 0000 0000 0000 0000 0000 0000 0000 0000
0788: 0000 0000 0000 0000 0000 0000 0000 0000
0790: 0000 0000 0000 0000 0000 0000 0000 0000
0798: 0000 0000 0000 0000 0000 0000 0000 0000
07a0: 0000 0000 0000 0000 0000 0000 0000 0000
07a8: 0000 0000 0000 0000 0000 0000 0000 0000
07b0: 0000 0000 0000 0000 0000 0000 0000 0000
07b8: 0000 0000 0000 0000 0000 0000 0000 0000
07c0: 0000 0000 0000 0000 0000 0000 0000 0000
07c8: 0000 0000 0000 0000 0000 0000 0000 0000
07d0: 0000 0000 0000 0000 0000 0000 0000 0000
07d8: 0000 0000 0000 0000 0000 0000 0000 0000
07e0: 0000 0000 0000 0000 0000 0000 0000 0000
07e8: 0000 0000 0000 0000 0000 0000 0000 0000
07f0: 0000 0000 0000 0000 0000 0000 0000 0000
07f8: 0000 0000 0000 0000 0000 0000 0000 0000
0800: 0000 0000 0000 0000 0000 0000 0000 0000
0808: 0000 0000 0000 0000 0000 0000 0000 0000
0810: 0000 0000 0000 0000 0000 0000 0000 0000
0818: 0000 0000 0000 0000 0000 0000 0000 0000
0820: 0000 0000 0000 0000 0000 0000 0000 0000
0828: 0000 0000 0000 0000 0000 0000 0000 0000
0830: 0000 0000 0000 0000 0000 0000 0000 0000
0838: 0000 0000 0000 0000 0000 0000 0000 0000
0840: 0000 0000 0000 0000 0000 0000 0000 0000
0848: 0000 0000 0000 0000 0000 0000 0000 0000
0850: 0000 0000 0000 0000 0000 0000 0000 0000
0858: 0000 0000 0000 0000 0000 0000 0000 0000
0860: 0000 0000 0000 0000 0000 0000 0000 0000
0868: 0000 0000 0000 0000 0000 0000 0000 0000
0870: 0000 0000 0000 0000 0000 0000 0000 0000
0878: 0000 0000 0000 0000 0000 0000 0000 0000
0880: 0000 0000 0000 0000 0000 0000 0000 0000
0888: 0000 0000 0000 0000 0000 0000 0000 0000
0890: 0000 0000 0000 0000 0000 0000 0000 0000
0898: 0000 0000 0000 0000 0000 0000 0000 0000
08a0: 0000 0000 0000 0000 0000 0000 0000 0000
08a8: 0000 0000 0000 0000 0000 0000 0000 0000
08b0: 0000 0000 0000 0000 0000 0000 0000 0000
08b8: 0000 0000 0000 0000 0000 0000 0000 0000
08c0: 0000 0000 0000 0000 0000 0000 0000 0000
08c8: 0000 0000 0000 0000 0000 0000 0000 0000
08d0: 0000 0000 0000 0000 0000 0000 0000 0000
08d8: 0000 0000 0000 0000 0000 0000 0000 0000
08e0: 0000 0000 0000 0000 0000 0000 0000 0000
08e8: 0000 0000 0000 0000 0000 0000 0000 0000
08f0: 0000 0000 0000 0000 0000 0000 0000 0000
08f8: 0000 0000 0000 0000 0000 0000 0000 0000
0900: 0000 0000 0000 0000 0000 0000 0000 0000
0908: 0000 0000 0000 0000 0000 0000 0000 0000
0910: 0000 0000 0000 0000 0000 0000 0000 0000
0918: 0000 0000 0000 0000 0000 0000 0000 0000
0920: 0000 0000 0000 0000 0000 0000 0000 0000
0928: 0000 0000 0000 0000 0000 0000 0000 0000
0930: 0000 0000 0000 0000 0000 0000 0000 0000
0938: 0000 0000 0000 0000 0000 0000 0000 0000
0940: 0000 0000 0000 0000 0000 0000 0000 0000
0948: 0000 0000 0000 0000 0000 0000 0000 0000
0950: 0000 0000 0000 0000 0000 0000 0000 0000
0958: 0000 0000 0000 0000 0000 0000 0000 0000
0960: 0000 0000 0000 0000 0000 0000 0000 0000
0968: 0000 0000 0000 0000 0000 0000 0000 0000
0970: 0000 0000 0000 0000 0000 0000 0000 0000
0978: 0000 0000 0000 0000 0000 0000 0000 0000
0980: 0000 0000 0000 0000 0000 0000 0000 0000
0988: 0000 0000 0000 0000 0000 0000 0000 0000
0990: 0000 0000 0000 0000 0000 0000 0000 0000
0998: 0000 0000 0000 0000 0000 0000 0000 0000
09a0: 0000 0000 0000 0000 0000 0000 0000 0000
09a8: 0000 0000 0000 0000 0000 0000 0000 0000
09b0: 0000 0000 0000 0000 0000 0000 0000 0000
09b8: 0000 0000 0000 0000 0000 0000 0000 0000
09c0: 0000 0000 0000 0000 0000 0000 0000 0000
09c8: 0000 0000 0000 0000 0000 0000 0000 0000
09d0: 0000 0000 0000 0000 0000 0000 0000 0000
09d8: 0000 0000 0000 0000 0000 0000 0000 0000
09e0: 0000 0000 0000 0000 0000 0000 0000 0000
09e8: 0000 0000 0000 0000 0000 0000 0000 0000
09f0: 0000 0000 0000 0000 0000 0000 0000 0000
09f8: 0000 0000 0000 0000 0000 0000 0000 0000
0a00: 0000 0000 0000 0000 0000 0000 0000 0000
0a08: 0000 0000 0000 0000 0000 0000 0000 0000
0a10: 0000 0000 0000 0000 0000 0000 0000 0000
0a18: 0000 0000 0000 0000 0000 0000 0000 0000
0a20: 0000 0000 0000 0000 0000 0000 0000 0000
0a28: 0000 0000 0000 0000 0000 0000 0000 0000
0a30: 0000 0000 0000 0000 0000 0000 0000 0000
0a38: 0000 0000 0000 0000 0000 0000 0000 0000
0a40: 0000 0000 0000 0000 0000 0000 0000 0000
0a48: 0000 0000 0000 0000 0000 0000 0000 0000
0a50: 0000 0000 0000 0000 0000 0000 0000 0000
0a58: 0000 0000 0000 0000 0000 0000 0000 0000
0a60: 0000 0000 0000 0000 0000 0000 0000 0000
0a68: 0000 0000 0000 0000 0000 0000 0000 0000
0a70: 0000 0000 0000 0000 0000 0000 0000 0000
0a78: 0000 0000 0000 0000 0000 0000 0000 0000
0a80: 0000 0000 0000 0000 0000 0000 0000 0000
0a88: 0000 0000 0000 0000 0000 0000 0000 0000
0a90: 0000 0000 0000 0000 0000 0000 0000 0000
0a98: 0000 0000 0000 0000 0000 0000 0000 0000
0aa0: 0000 0000 0000 0000 0000 0000 0000 0000
0aa8: 0000 0000 0000 0000 0000 0000 0000 0000
0ab0: 0000 0000 0000 0000 0000 0000 0000 0000
0ab8: 0000 0000 0000 0000 0000 0000 0000 0000
0ac0: 0000 0000 0000 0000 0000 0000 0000 0000
0ac8: 0000 0000 0000 0000 0000 0000 0000 0000
0ad0: 0000 0000 0000 0000 0000 0000 0000 0000
0ad8: 0000 0000 0000 0000 0000 0000 0000 0000
0ae0: 0000 0000 0000 0000 0000 0000 0000 0000
0ae8: 0000 0000 0000 0000 0000 0000 0000 0000
0af0: 0000 0000 0000 0000 0000 0000 0000 0000
0af8: 0000 0000 0000 0000 0000 0000 0000 0000
0b00: 0000 0000 0000 0000 0000 0000 0000 0000
0b08: 0000 0000 0000 0000 0000 0000 0000 0000
0b10: 0000 0000 0000 0000 0000 0000 0000 0000
0b18: 0000 0000 0000 0000 0000 0000 0000 0000
0b20: 0000 0000 0000 0000 0000 0000 0000 0000
0b28: 0000 0000 0000 0000 0000 0000 0000 0000
0b30: 0000 0000 0000 0000 0000 0000 0000 0000
0b38: 0000 0000 0000 0000 0000 0000 0000 0000
0b40: 0000 0000 0000 0000 0000 0000 0000 0000
0b48: 0000 0000 0000 0000 0000 0000 0000 0000
0b50: 0000 0000 0000 0000 0000 0000 0000 0000
0b58: 0000 0000 0000 0000 0000 0000 0000 0000
0b60: 0000 0000 0000 0000 0000 0000 0000 0000
0b68: 0000 0000 0000 0000 0000 0000 0000 0000
0b70: 0000 0000 0000 0000 0000 0000 0000 0000
0b78: 0000 0000 0000 0000 0000 0000 0000 0000
0b80: 0000 0000 0000 0000 0000 0000 0000 0000
0b88: 0000 0000 0000 0000 0000 0000 0000 0000
0b90: 0000 0000 0000 0000 0000 0000 0000 0000
0b98: 0000 0000 0000 0000 0000 0000 0000 0000
0ba0: 0000 0000 0000 0000 0000 0000 0000 0000
0ba8: 0000 0000 0000 0000 0000 0000 0000 0000
0bb0: 0000 0000 0000 0000 0000 0000 0000 0000
0bb8: 0000 0000 0000 0000 0000 0000 0000 0000
0bc0: 0000 0000 0000 0000 0000 0000 0000 0000
0bc8: 0000 0000 0000 0000 0000 0000 0000 0000
0bd0: 0000 0000 0000 0000 0000 0000 0000 0000
0bd8: 0000 0000 0000 0000 0000 0000 0000 0000
0be0: 0000 0000 0000 0000 0000 0000 0000 0000
0be8: 0000 0000 0000 0000 0000 0000 0000 0000
0bf0: 0000 0000 0000 0000 0000 0000 0000 0000
0bf8: 0000 0000 0000 0000 0000 0000 0000 0000
0c00: 0000 0000 0000 0000 0000 0000 0000 0000
0c08: 0000 0000 0000 0000 0000 0000 0000 0000
0c10: 0000 0000 0000 0000 0000 0000 0000 0000
0c18: 0000 0000 0000 0000 0000 0000 0000 0000
0c20: 0000 0000 0000 0000 0000 0000 0000 0000
0c28: 0000 0000 0000 0000 0000 0000 0000 0000
0c30: 0000 0000 0000 0000 0000 0000 0000 0000
0c38: 0000 0000 0000 0000 0000 0000 0000 0000
0c40: 0000 0000 0000 0000 0000 0000 0000 0000
0c48: 0000 0000 0000 0000 0000 0000 0000 0000
0c50: 0000 0000 0000 0000 0000 0000 0000 0000
0c58: 0000 0000 0000 0000 0000 0000 0000 0000
0c60: 0000 0000 0000 0000 0000 0000 0000 0000
0c68: 0000 0000 0000 0000 0000 0000 0000 0000
0c70: 0000 0000 0000 0000 0000 0000 0000 0000
0c78: 0000 0000 0000 0000 0000 0000 0000 0000
0c80: 0000 0000 0000 0000 0000 0000 0000 0000
0c88: 0000 0000 0000 0000 0000 0000 0000 0000
0c90: 0000 0000 0000 0000 0000 0000 0000 0000
0c98: 0000 0000 0000 0000 0000 0000 0000 0000
0ca0: 0000 0000 0000 0000 0000 0000 0000 0000
0ca8: 0000 0000 0000 0000 0000 0000 0000 0000
0cb0: 0000 0000 0000 0000 0000 0000 0000 0000
0cb8: 0000 0000 0000 0000 0000 0000 0000 0000
0cc0: 0000 0000 0000 0000 0000 0000 0000 0000
0cc8: 0000 0000 0000 0000 0000 0000 0000 0000
0cd0: 0000 0000 0000 0000 0000 0000 0000 0000
0cd8: 0000 0000 0000 0000 0000 0000 0000 0000
0ce0: 0000 0000 0000 0000 0000 0000 0000 0000
0ce8: 0000 0000 0000 0000 0000 0000 0000 0000
0cf0: 0000 0000 0000 0000 0000 0000 0000 0000
0cf8: 0000 0000 0000 0000 0000 0000 0000 0000
0d00: 0000 0000 0000 0000 0000 0000 0000 0000
0d08: 0000 0000 0000 0000 0000 0000 0000 0000
0d10: 0000 0000 0000 0000 0000 0000 0000 0000
0d18: 0000 0000 0000 0000 0000 0000 0000 0000
0d20: 0000 0000 0000 0000 0000 0000 0000 0000
0d28: 0000 0000 0000 0000 0000 0000 0000 0000
0d30: 0000 0000 0000 0000 0000 0000 0000 0000
0d38: 0000 0000 0000 0000 0000 0000 0000 0000
0d40: 0000 0000 0000 0000 0000 0000 0000 0000
0d48: 0000 0000 0000 0000 0000 0000 0000 0000
0d50: 0000 0000 0000 0000 0000 0000 0000 0000
0d58: 0000 0000 0000 0000 0000 0000 0000 0000
0d60: 0000 0000 0000 0000 0000 0000 0000 0000
0d68: 0000 0000 0000 0000 0000 0000 0000 0000
0d70: 0000 0000 0000 0000 0000 0000 0000 0000
0d78: 0000 0000 0000 0000 0000 0000 0000 0000
0d80: 0000 0000 0000 0000 0000 0000 0000 0000
0d88: 0000 0000 0000 0000 0000 0000 0000 0000
0d90: 0000 0000 0000 0000 0000 0000 0000 0000
0d98: 0000 0000 0000 0000 0000 0000 0000 0000
0da0: 0000 0000 0000 0000 0000 0000 0000 0000
0da8: 0000 0000 0000 0000 0000 0000 0000 0000
0db0: 0000 0000 0000 0000 0000 0000 0000 0000
0db8: 0000 0000 0000 0000 0000 0000 0000 0000
0dc0: 0000 0000 0000 0000 0000 0000 0000 0000
0dc8: 0000 0000 0000 0000 0000 0000 0000 0000
0dd0: 0000 0000 0000 0000 0000 0000 0000 0000
0dd8: 0000 0000 0000 0000 0000 0000 0000 0000
0de0: 0000 0000 0000 0000 0000 0000 0000 0000
0de8: 0000 0000 0000 0000 0000 0000 0000 0000
0df0: 0000 0000 0000 0000 0000 0000 0000 0000
0df8: 0000 0000 0000 0000 0000 0000 0000 0000
0e00: 0000 0000 0000 0000 0000 0000 0000 0000
0e08: 0000 0000 0000 0000 0000 0000 0000 0000
0e10: 0000 0000 0000 0000 0000 0000 0000 0000
0e18: 0000 0000 0000 0000 0000 0000 0000 0000
0e20: 0000 0000 0000 0000 0000 0000 0000 0000
0e28: 0000 0000 0000 0000 0000 0000 0000 0000
0e30: 0000 0000 0000 0000 0000 0000 0000 0000
0e38: 0000 0000 0000 0000 0000 0000 0000 0000
0e40: 0000 0000 0000 0000 0000 0000 0000 0000
0e48: 0000 0000 0000 0000 0000 0000 0000 0000
0e50: 0000 0000 0000 0000 0000 0000 0000 0000
0e58: 0000 0000 0000 0000 0000 0000 0000 0000
0e60: 0000 0000 0000 0000 0000 0000 0000 0000
0e68: 0000 0000 0000 0000 0000 0000 0000 0000
0e70: 0000 0000 0000 0000 0000 0000 0000 0000
0e78: 0000 0000 0000 0000 0000 0000 0000 0000
0e80: 0000 0000 0000 0000 0000 0000 0000 0000
0e88: 0000 0000 0000 0000 0000 0000 0000 0000
0e90: 0000 0000 0000 0000 0000 0000 0000 0000
0e98: 0000 0000 0000 0000 0000 0000 0000 0000
0ea0: 0000 0000 0000 0000 0000 0000 0000 0000
0ea8: 0000 0000 0000 0000 0000 0000 0000 0000
0eb0: 0000 0000 0000 0000 0000 0000 0000 0000
0eb8: 0000 0000 0000 0000 0000 0000 0000 0000
0ec0: 0000 0000 0000 0000 0000 0000 0000 0000
0ec8: 0000 0000 0000 0000 0000 0000 0000 0000
0ed0: 0000 0000 0000 0000 0000 0000 0000 0000
0ed8: 0000 0000 0000 0000 0000 0000 0000 0000
0ee0: 0000 0000 0000 0000 0000 0000 0000 0000
0ee8: 0000 0000 0000 0000 0000 0000 0000 0000
0ef0: 0000 0000 0000 0000 0000 0000 0000 0000
0ef8: 0000 0000 0000 0000 0000 0000 0000 0000
0f00: 0000 0000 0000 0000 0000 0000 0000 0000
0f08: 0000 0000 0000 0000 0000 0000 0000 0000
0f10: 0000 0000 0000 0000 0000 0000 0000 0000
0f18: 0000 0000 0000 0000 0000 0000 0000 0000
0f20: 0000 0000 0000 0000 0000 0000 0000 0000
0f28: 0000 0000 0000 0000 0000 0000 0000 0000
0f30: 0000 0000 0000 0000 0000 0000 0000 0000
0f38: 0000 0000 0000 0000 0000 0000 0000 0000
0f40: 0000 0000 0000 0000 0000 0000 0000 0000
0f48: 0000 0000 0000 0000 0000 0000 0000 0000
0f50: 0000 0000 0000 0000 0000 0000 0000 0000
0f58: 0000 0000 0000 0000 0000 0000 0000 0000
0f60: 0000 0000 0000 0000 0000 0000 0000 0000
0f68: 0000 0000 0000 0000 0000 0000 0000 0000
0f70: 0000 0000 0000 0000 0000 0000 0000 0000
0f78: 0000 0000 0000 0000 0000 0000 0000 0000
0f80: 0000 0000 0000 0000 0000 0000 0000 0000
0f88: 0000 0000 0000 0000 0000 0000 0000 0000
0f90: 0000 0000 0000 0000 0000 0000 0000 0000
0f98: 0000 0000 0000 0000 0000 0000 0000 0000
0fa0: 0000 0000 0000 0000 0000 0000 0000 0000
0fa8: 0000 0000 0000 0000 0000 0000 0000 0000
0fb0: 0000 0000 0000 0000 0000 0000 0000 0000
0fb8: 0000 0000 0000 0000 0000 0000 0000 0000
0fc0: 0000 0000 0000 0000 0000 0000 0000 0000
0fc8: 0000 0000 0000 0000 0000 0000 0000 0000
0fd0: 0000 0000 0000 0000 0000 0000 0000 0000
0fd8: 0000 0000 0000 0000 0000 0000 0000 0000
0fe0: 0000 0000 0000 0000 0000 0000 0000 0000
0fe8: 0000 0000 0000 0000 0000 0000 0000 0000
0ff0: 0000 0000 0000 0000 0000 0000 0000 0000
0ff8: 0000 0000 0000 0000 0000 0000 0000 0000
1000: 0000 0000 0000 0000 0000 0000 0000 0000
1008: 0000 0000 0000 0000 0000 0000 0000 0000
1010: 0000 0000 0000 0000 0000 0000 0000 0000
1018: 0000 0000 0000 0000 0000 0000 0000 0000
1020: 0000 0000 0000 0000 0000 0000 0000 0000
1028: 0000 0000 0000 0000 0000 0000 0000 0000
1030: 0000 0000 0000 0000 0000 0000 0000 0000
1038: 0000 0000 0000 0000 0000 0000 0000 0000
1040: 0000 0000 0000 0000 0000 0000 0000 0000
1048: 0000 0000 0000 0000 0000 0000 0000 0000
1050: 0000 0000 0000 0000 0000 0000 0000 0000
1058: 0000 0000 0000 0000 0000 0000 0000 0000
1060: 0000 0000 0000 0000 0000 0000 0000 0000
1068: 0000 0000 0000 0000 0000 0000 0000 0000
1070: 0000 0000 0000 0000 0000 0000 0000 0000
1078: 0000 0000 0000 0000 0000 0000 0000 0000
1080: 0000 0000 0000 0000 0000 0000 0000 0000
1088: 0000 0000 0000 0000 0000 0000 0000 0000
1090: 0000 0000 0000 0000 0000 0000 0000 0000
1098: 0000 0000 0000 0000 0000 0000 0000 0000
10a0: 0000 0000 0000 0000 0000 0000 0000 0000
10a8: 0000 0000 0000 0000 0000 0000 0000 0000
10b0: 0000 0000 0000 0000 0000 0000 0000 0000
10b8: 0000 0000 0000 0000 0000 0000 0000 0000
10c0: 0000 0000 0000 0000 0000 0000 0000 0000
10c8: 0000 0000 0000 0000 0000 0000 0000 0000
10d0: 0000 0000 0000 0000 0000 0000 0000 0000
10d8: 0000 0000 0000 0000 0000 0000 0000 0000
10e0: 0000 0000 0000 0000 0000 0000 0000 0000
10e8: 0000 0000 0000 0000 0000 0000 0000 0000
10f0: 0000 0000 0000 0000 0000 0000 0000 0000
10f8: 0000 0000 0000 0000 0000 0000 0000 0000
1100: 0000 0000 0000 0000 0000 0000 0000 0000
1108: 0000 0000 0000 0000 0000 0000 0000 0000
1110: 0000 0000 0000 0000 0000 0000 0000 0000
1118: 0000 0000 0000 0000 0000 0000 0000 0000
1120: 0000 0000 0000 0000 0000 0000 0000 0000
1128: 0000 0000 0000 0000 0000 0000 0000 0000
1130: 0000 0000 0000 0000 0000 0000 0000 0000
1138: 0000 0000 0000 0000 0000 0000 0000 0000
1140: 0000 0000 0000 0000 0000 0000 0000 0000
1148: 0000 0000 0000 0000 0000 0000 0000 0000
1150: 0000 0000 0000 0000 0000 0000 0000 0000
1158: 0000 0000 0000 0000 0000 0000 0000 0000
1160: 0000 0000 0000 0000 0000 0000 0000 0000
1168: 0000 0000 0000 0000 0000 0000 0000 0000
1170: 0000 0000 0000 0000 0000 0000 0000 0000
1178: 0000 0000 0000 0000 0000 0000 0000 0000
1180: 0000 0000 0000 0000 0000 0000 0000 0000
1188: 0000 0000 0000 0000 0000 0000 0000 0000
1190: 0000 0000 0000 0000 0000 0000 0000 0000
1198: 0000 0000 0000 0000 0000 0000 0000 0000
11a0: 0000 0000 0000 0000 0000 0000 0000 0000
11a8: 0000 0000 0000 0000 0000 0000 0000 0000
11b0: 0000 0000 0000 0000 0000 0000 0000 0000
11b8: 0000 0000 0000 0000 0000 0000 0000 0000
11c0: 0000 0000 0000 0000 0000 0000 0000 0000
11c8: 0000 0000 0000 0000 0000 0000 0000 0000
11d0: 0000 0000 0000 0000 0000 0000 0000 0000
11d8: 0000 0000 0000 0000 0000 0000 0000 0000
11e0: 0000 0000 0000 0000 0000 0000 0000 0000
11e8: 0000 0000 0000 0000 0000 0000 0000 0000
11f0: 0000 0000 0000 0000 0000 0000 0000 0000
11f8: 0000 0000 0000 0000 0000 0000 0000 0000
1200: 0000 0000 0000 0000 0000 0000 0000 0000
1208: 0000 0000 0000 0000 0000 0000 0000 0000
1210: 0000 0000 0000 0000 0000 0000 0000 0000
1218: 0000 0000 0000 0000 0000 0000 0000 0000
1220: 0000 0000 0000 0000 0000 0000 0000 0000
1228: 0000 0000 0000 0000 0000 0000 0000 0000
1230: 0000 0000 0000 0000 0000 0000 0000 0000
1238: 0000 0000 0000 0000 0000 0000 0000 0000
1240: 0000 0000 0000 0000 0000 0000 0000 0000
1248: 0000 0000 0000 0000 0000 0000 0000 0000
1250: 0000 0000 0000 0000 0000 0000 0000 0000
1258: 0000 0000 0000 0000 0000 0000 0000 0000
1260: 0000 0000 0000 0000 0000 0000 0000 0000
1268: 0000 0000 0000 0000 0000 0000 0000 0000
1270: 0000 0000 0000 0000 0000 0000 0000 0000
1278: 0000 0000 0000 0000 0000 0000 0000 0000
1280: 0000 0000 0000 0000 0000 0000 0000 0000
1288: 0000 0000 0000 0000 0000 0000 0000 0000
1290: 0000 0000 0000 0000 0000 0000 0000 0000
1298: 0000 0000 0000 0000 0000 0000 0000 0000
12a0: 0000 0000 0000 0000 0000 0000 0000 0000
12a8: 0000 0000 0000 0000 0000 0000 0000 0000
12b0: 0000 0000 0000 0000 0000 0000 0000 0000
12b8: 0000 0000 0000 0000 0000 0000 0000 0000
12c0: 0000 0000 0000 0000 0000 0000 0000 0000
12c8: 0000 0000 0000 0000 0000 0000 0000 0000
12d0: 0000 0000 0000 0000 0000 0000 0000 0000
12d8: 0000 0000 0000 0000 0000 0000 0000 0000
12e0: 0000 0000 0000 0000 0000 0000 0000 0000
12e8: 0000 0000 0000 0000 0000 0000 0000 0000
12f0: 0000 0000 0000 0000 0000 0000 0000 0000
12f8: 0000 0000 0000 0000 0000 0000 0000 0000
1300: 0000 0000 0000 0000 0000 0000 0000 0000
1308: 0000 0000 0000 0000 0000 0000 0000 0000
1310: 0000 0000 0000 0000 0000 0000 0000 0000
1318: 0000 0000 0000 0000 0000 0000 0000 0000
1320: 0000 0000 0000 0000 0000 0000 0000 0000
1328: 0000 0000 0000 0000 0000 0000 0000 0000
1330: 0000 0000 0000 0000 0000 0000 0000 0000
1338: 0000 0000 0000 0000 0000 0000 0000 0000
1340: 0000 0000 0000 0000 0000 0000 0000 0000
1348: 0000 0000 0000 0000 0000 0000 0000 0000
1350: 0000 0000 0000 0000 0000 0000 0000 0000
1358: 0000 0000 0000 0000 0000 0000 0000 0000
1360: 0000 0000 0000 0000 0000 0000 0000 0000
1368: 0000 0000 0000 0000 0000 0000 0000 0000
1370: 0000 0000 0000 0000 0000 0000 0000 0000
1378: 0000 0000 0000 0000 0000 0000 0000 0000
1380: 0000 0000 0000 0000 0000 0000 0000 0000
1388: 0000 0000 0000 0000 0000 0000 0000 0000
1390: 0000 0000 0000 0000 0000 0000 0000 0000
1398: 0000 0000 0000 0000 0000 0000 0000 0000
13a0: 0000 0000 0000 0000 0000 0000 0000 0000
13a8: 0000 0000 0000 0000 0000 0000 0000 0000
13b0: 0000 0000 0000 0000 0000 0000 0000 0000
13b8: 0000 0000 0000 0000 0000 0000 0000 0000
13c0: 0000 0000 0000 0000 0000 0000 0000 0000
13c8: 0000 0000 0000 0000 0000 0000 0000 0000
13d0: 0000 0000 0000 0000 0000 0000 0000 0000
13d8: 0000 0000 0000 0000 0000 0000 0000 0000
13e0: 0000 0000 0000 0000 0000 0000 0000 0000
13e8: 0000 0000 0000 0000 0000 0000 0000 0000
13f0: 0000 0000 0000 0000 0000 0000 0000 0000
13f8: 0000 0000 0000 0000 0000 0000 0000 0000
1400: 0000 0000 0000 0000 0000 0000 0000 0000
1408: 0000 0000 0000 0000 0000 0000 0000 0000
1410: 0000 0000 0000 0000 0000 0000 0000 0000
1418: 0000 0000 0000 0000 0000 0000 0000 0000
1420: 0000 0000 0000 0000 0000 0000 0000 0000
1428: 0000 0000 0000 0000 0000 0000 0000 0000
1430: 0000 0000 0000 0000 0000 0000 0000 0000
1438: 0000 0000 0000 0000 0000 0000 0000 0000
1440: 0000 0000 0000 0000 0000 0000 0000 0000
1448: 0000 0000 0000 0000 0000 0000 0000 0000
1450: 0000 0000 0000 0000 0000 0000 0000 0000
1458: 0000 0000 0000 0000 0000 0000 0000 0000
1460: 0000 0000 0000 0000 0000 0000 0000 0000
1468: 0000 0000 0000 0000 0000 0000 0000 0000
1470: 0000 0000 0000 0000 0000 0000 0000 0000
1478: 0000 0000 0000 0000 0000 0000 0000 0000
1480: 0000 0000 0000 0000 0000 0000 0000 0000
1488: 0000 0000 0000 0000 0000 0000 0000 0000
1490: 0000 0000 0000 0000 0000 0000 0000 0000
1498: 0000 0000 0000 0000 0000 0000 0000 0000
14a0: 0000 0000 0000 0000 0000 0000 0000 0000
14a8: 0000 0000 0000 0000 0000 0000 0000 0000
14b0: 0000 0000 0000 0000 0000 0000 0000 0000
14b8: 0000 0000 0000 0000 0000 0000 0000 0000
14c0: 0000 0000 0000 0000 0000 0000 0000 0000
14c8: 0000 0000 0000 0000 0000 0000 0000 0000
14d0: 0000 0000 0000 0000 0000 0000 0000 0000
14d8: 0000 0000 0000 0000 0000 0000 0000 0000
14e0: 0000 0000 0000 0000 0000 0000 0000 0000
14e8: 0000 0000 0000 0000 0000 0000 0000 0000
14f0: 0000 0000 0000 0000 0000 0000 0000 0000
14f8: 0000 0000 0000 0000 0000 0000 0000 0000
1500: 0000 0000 0000 0000 0000 0000 0000 0000
1508: 0000 0000 0000 0000 0000 0000 0000 0000
1510: 0000 0000 0000 0000 0000 0000 0000 0000
1518: 0000 0000 0000 0000 0000 0000 0000 0000
1520: 0000 0000 0000 0000 0000 0000 0000 0000
1528: 0000 0000 0000 0000 0000 0000 0000 0000
1530: 0000 0000 0000 0000 0000 0000 0000 0000
1538: 0000 0000 0000 0000 0000 0000 0000 0000
1540: 0000 0000 0000 0000 0000 0000 0000 0000
1548: 0000 0000 0000 0000 0000 0000 0000 0000
1550: 0000 0000 0000 0000 0000 0000 0000 0000
1558: 0000 0000 0000 0000 0000 0000 0000 0000
1560: 0000 0000 0000 0000 0000 0000 0000 0000
1568: 0000 0000 0000 0000 0000 0000 0000 0000
1570: 0000 0000 0000 0000 0000 0000 0000 0000
1578: 0000 0000 0000 0000 0000 0000 0000 0000
1580: 0000 0000 0000 0000 0000 0000 0000 0000
1588: 0000 0000 0000 0000 0000 0000 0000 0000
1590: 0000 0000 0000 0000 0000 0000 0000 0000
1598: 0000 0000 0000 0000 0000 0000 0000 0000
15a0: 0000 0000 0000 0000 0000 0000 0000 0000
15a8: 0000 0000 0000 0000 0000 0000 0000 0000
15b0: 0000 0000 0000 0000 0000 0000 0000 0000
15b8: 0000 0000 0000 0000 0000 0000 0000 0000
15c0: 0000 0000 0000 0000 0000 0000 0000 0000
15c8: 0000 0000 0000 0000 0000 0000 0000 0000
15d0: 0000 0000 0000 0000 0000 0000 0000 0000
15d8: 0000 0000 0000 0000 0000 0000 0000 0000
15e0: 0000 0000 0000 0000 0000 0000 0000 0000
15e8: 0000 0000 0000 0000 0000 0000 0000 0000
15f0: 0000 0000 0000 0000 0000 0000 0000 0000
15f8: 0000 0000 0000 0000 0000 0000 0000 0000
1600: 0000 0000 0000 0000 0000 0000 0000 0000
1608: 0000 0000 0000 0000 0000 0000 0000 0000
1610: 0000 0000 0000 0000 0000 0000 0000 0000
1618: 0000 0000 0000 0000 0000 0000 0000 0000
1620: 0000 0000 0000 0000 0000 0000 0000 0000
1628: 0000 0000 0000 0000 0000 0000 0000 0000
1630: 0000 0000 0000 0000 0000 0000 0000 0000
1638: 0000 0000 0000 0000 0000 0000 0000 0000
1640: 0000 0000 0000 0000 0000 0000 0000 0000
1648: 0000 0000 0000 0000 0000 0000 0000 0000
1650: 0000 0000 0000 0000 0000 0000 0000 0000
1658: 0000 0000 0000 0000 0000 0000 0000 0000
1660: 0000 0000 0000 0000 0000 0000 0000 0000
1668: 0000 0000 0000 0000 0000 0000 0000 0000
1670: 0000 0000 0000 0000 0000 0000 0000 0000
1678: 0000 0000 0000 0000 0000 0000 0000 0000
1680: 0000 0000 0000 0000 0000 0000 0000 0000
1688: 0000 0000 0000 0000 0000 0000 0000 0000
1690: 0000 0000 0000 0000 0000 0000 0000 0000
1698: 0000 0000 0000 0000 0000 0000 0000 0000
16a0: 0000 0000 0000 0000 0000 0000 0000 0000
16a8: 0000 0000 0000 0000 0000 0000 0000 0000
16b0: 0000 0000 0000 0000 0000 0000 0000 0000
16b8: 0000 0000 0000 0000 0000 0000 0000 0000
16c0: 0000 0000 0000 0000 0000 0000 0000 0000
16c8: 0000 0000 0000 0000 0000 0000 0000 0000
16d0: 0000 0000 0000 0000 0000 0000 0000 0000
16d8: 0000 0000 0000 0000 0000 0000 0000 0000
16e0: 0000 0000 0000 0000 0000 0000 0000 0000
16e8: 0000 0000 0000 0000 0000 0000 0000 0000
16f0: 0000 0000 0000 0000 0000 0000 0000 0000
16f8: 0000 0000 0000 0000 0000 0000 0000 0000
1700: 0000 0000 0000 0000 0000 0000 0000 0000
1708: 0000 0000 0000 0000 0000 0000 0000 0000
1710: 0000 0000 0000 0000 0000 0000 0000 0000
1718: 0000 0000 0000 0000 0000 0000 0000 0000
1720: 0000 0000 0000 0000 0000 0000 0000 0000
1728: 0000 0000 0000 0000 0000 0000 0000 0000
1730: 0000 0000 0000 0000 0000 0000 0000 0000
1738: 0000 0000 0000 0000 0000 0000 0000 0000
1740: 0000 0000 0000 0000 0000 0000 0000 0000
1748: 0000 0000 0000 0000 0000 0000 0000 0000
1750: 0000 0000 0000 0000 0000 0000 0000 0000
1758: 0000 0000 0000 0000 0000 0000 0000 0000
1760: 0000 0000 0000 0000 0000 0000 0000 0000
1768: 0000 0000 0000 0000 0000 0000 0000 0000
1770: 0000 0000 0000 0000 0000 0000 0000 0000
1778: 0000 0000 0000 0000 0000 0000 0000 0000
1780: 0000 0000 0000 0000 0000 0000 0000 0000
1788: 0000 0000 0000 0000 0000 0000 0000 0000
1790: 0000 0000 0000 0000 0000 0000 0000 0000
1798: 0000 0000 0000 0000 0000 0000 0000 0000
17a0: 0000 0000 0000 0000 0000 0000 0000 0000
17a8: 0000 0000 0000 0000 0000 0000 0000 0000
17b0: 0000 0000 0000 0000 0000 0000 0000 0000
17b8: 0000 0000 0000 0000 0000 0000 0000 0000
17c0: 0000 0000 0000 0000 0000 0000 0000 0000
17c8: 0000 0000 0000 0000 0000 0000 0000 0000
17d0: 0000 0000 0000 0000 0000 0000 0000 0000
17d8: 0000 0000 0000 0000 0000 0000 0000 0000
17e0: 0000 0000 0000 0000 0000 0000 0000 0000
17e8: 0000 0000 0000 0000 0000 0000 0000 0000
17f0: 0000 0000 0000 0000 0000 0000 0000 0000
17f8: 0000 0000 0000 0000 0000 0000 0000 0000
1800: 0000 0000 0000 0000 0000 0000 0000 0000
1808: 0000 0000 0000 0000 0000 0000 0000 0000
1810: 0000 0000 0000 0000 0000 0000 0000 0000
1818: 0000 0000 0000 0000 0000 0000 0000 0000
1820: 0000 0000 0000 0000 0000 0000 0000 0000
1828: 0000 0000 0000 0000 0000 0000 0000 0000
1830: 0000 0000 0000 0000 0000 0000 0000 0000
1838: 0000 0000 0000 0000 0000 0000 0000 0000
1840: 0000 0000 0000 0000 0000 0000 0000 0000
1848: 0000 0000 0000 0000 0000 0000 0000 0000
1850: 0000 0000 0000 0000 0000 0000 0000 0000
1858: 0000 0000 0000 0000 0000 0000 0000 0000
1860: 0000 0000 0000 0000 0000 0000 0000 0000
1868: 0000 0000 0000 0000 0000 0000 0000 0000
1870: 0000 0000 0000 0000 0000 0000 0000 0000
1878: 0000 0000 0000 0000 0000 0000 0000 0000
1880: 0000 0000 0000 0000 0000 0000 0000 0000
1888: 0000 0000 0000 0000 0000 0000 0000 0000
1890: 0000 0000 0000 0000 0000 0000 0000 0000
1898: 0000 0000 0000 0000 0000 0000 0000 0000
18a0: 0000 0000 0000 0000 0000 0000 0000 0000
18a8: 0000 0000 0000 0000 0000 0000 0000 0000
18b0: 0000 0000 0000 0000 0000 0000 0000 0000
18b8: 0000 0000 0000 0000 0000 0000 0000 0000
18c0: 0000 0000 0000 0000 0000 0000 0000 0000
18c8: 0000 0000 0000 0000 0000 0000 0000 0000
18d0: 0000 0000 0000 0000 0000 0000 0000 0000
18d8: 0000 0000 0000 0000 0000 0000 0000 0000
18e0: 0000 0000 0000 0000 0000 0000 0000 0000
18e8: 0000 0000 0000 0000 0000 0000 0000 0000
18f0: 0000 0000 0000 0000 0000 0000 0000 0000
18f8: 0000 0000 0000 0000 0000 0000 0000 0000
1900: 0000 0000 0000 0000 0000 0000 0000 0000
1908: 0000 0000 0000 0000 0000 0000 0000 0000
1910: 0000 0000 0000 0000 0000 0000 0000 0000
1918: 0000 0000 0000 0000 0000 0000 0000 0000
1920: 0000 0000 0000 0000 0000 0000 0000 0000
1928: 0000 0000 0000 0000 0000 0000 0000 0000
1930: 0000 0000 0000 0000 0000 0000 0000 0000
1938: 0000 0000 0000 0000 0000 0000 0000 0000
1940: 0000 0000 0000 0000 0000 0000 0000 0000
1948: 0000 0000 0000 0000 0000 0000 0000 0000
1950: 0000 0000 0000 0000 0000 0000 0000 0000
1958: 0000 0000 0000 0000 0000 0000 0000 0000
1960: 0000 0000 0000 0000 0000 0000 0000 0000
1968: 0000 0000 0000 0000 0000 0000 0000 0000
1970: 0000 0000 0000 0000 0000 0000 0000 0000
1978: 0000 0000 0000 0000 0000 0000 0000 0000
1980: 0000 0000 0000 0000 0000 0000 0000 0000
1988: 0000 0000 0000 0000 0000 0000 0000 0000
1990: 0000 0000 0000 0000 0000 0000 0000 0000
1998: 0000 0000 0000 0000 0000 0000 0000 0000
19a0: 0000 0000 0000 0000 0000 0000 0000 0000
19a8: 0000 0000 0000 0000 0000 0000 0000 0000
19b0: 0000 0000 0000 0000 0000 0000 0000 0000
19b8: 0000 0000 0000 0000 0000 0000 0000 0000
19c0: 0000 0000 0000 0000 0000 0000 0000 0000
19c8: 0000 0000 0000 0000 0000 0000 0000 0000
19d0: 0000 0000 0000 0000 0000 0000 0000 0000
19d8: 0000 0000 0000 0000 0000 0000 0000 0000
19e0: 0000 0000 0000 0000 0000 0000 0000 0000
19e8: 0000 0000 0000 0000 0000 0000 0000 0000
19f0: 0000 0000 0000 0000 0000 0000 0000 0000
19f8: 0000 0000 0000 0000 0000 0000 0000 0000
1a00: 0000 0000 0000 0000 0000 0000 0000 0000
1a08: 0000 0000 0000 0000 0000 0000 0000 0000
1a10: 0000 0000 0000 0000 0000 0000 0000 0000
1a18: 0000 0000 0000 0000 0000 0000 0000 0000
1a20: 0000 0000 0000 0000 0000 0000 0000 0000
1a28: 0000 0000 0000 0000 0000 0000 0000 0000
1a30: 0000 0000 0000 0000 0000 0000 0000 0000
1a38: 0000 0000 0000 0000 0000 0000 0000 0000
1a40: 0000 0000 0000 0000 0000 0000 0000 0000
1a48: 0000 0000 0000 0000 0000 0000 0000 0000
1a50: 0000 0000 0000 0000 0000 0000 0000 0000
1a58: 0000 0000 0000 0000 0000 0000 0000 0000
1a60: 0000 0000 0000 0000 0000 0000 0000 0000
1a68: 0000 0000 0000 0000 0000 0000 0000 0000
1a70: 0000 0000 0000 0000 0000 0000 0000 0000
1a78: 0000 0000 0000 0000 0000 0000 0000 0000
1a80: 0000 0000 0000 0000 0000 0000 0000 0000
1a88: 0000 0000 0000 0000 0000 0000 0000 0000
1a90: 0000 0000 0000 0000 0000 0000 0000 0000
1a98: 0000 0000 0000 0000 0000 0000 0000 0000
1aa0: 0000 0000 0000 0000 0000 0000 0000 0000
1aa8: 0000 0000 0000 0000 0000 0000 0000 0000
1ab0: 0000 0000 0000 0000 0000 0000 0000 0000
1ab8: 0000 0000 0000 0000 0000 0000 0000 0000
1ac0: 0000 0000 0000 0000 0000 0000 0000 0000
1ac8: 0000 0000 0000 0000 0000 0000 0000 0000
1ad0: 0000 0000 0000 0000 0000 0000 0000 0000
1ad8: 0000 0000 0000 0000 0000 0000 0000 0000
1ae0: 0000 0000 0000 0000 0000 0000 0000 0000
1ae8: 0000 0000 0000 0000 0000 0000 0000 0000
1af0: 0000 0000 0000 0000 0000 0000 0000 0000
1af8: 0000 0000 0000 0000 0000 0000 0000 0000
1b00: 0000 0000 0000 0000 0000 0000 0000 0000
1b08: 0000 0000 0000 0000 0000 0000 0000 0000
1b10: 0000 0000 0000 0000 0000 0000 0000 0000
1b18: 0000 0000 0000 0000 0000 0000 0000 0000
1b20: 0000 0000 0000 0000 0000 0000 0000 0000
1b28: 0000 0000 0000 0000 0000 0000 0000 0000
1b30: 0000 0000 0000 0000 0000 0000 0000 0000
1b38: 0000 0000 0000 0000 0000 0000 0000 0000
1b40: 0000 0000 0000 0000 0000 0000 0000 0000
1b48: 0000 0000 0000 0000 0000 0000 0000 0000
1b50: 0000 0000 0000 0000 0000 0000 0000 0000
1b58: 0000 0000 0000 0000 0000 0000 0000 0000
1b60: 0000 0000 0000 0000 0000 0000 0000 0000
1b68: 0000 0000 0000 0000 0000 0000 0000 0000
1b70: 0000 0000 0000 0000 0000 0000 0000 0000
1b78: 0000 0000 0000 0000 0000 0000 0000 0000
1b80: 0000 0000 0000 0000 0000 0000 0000 0000
1b88: 0000 0000 0000 0000 0000 0000 0000 0000
1b90: 0000 0000 0000 0000 0000 0000 0000 0000
1b98: 0000 0000 0000 0000 0000 0000 0000 0000
1ba0: 0000 0000 0000 0000 0000 0000 0000 0000
1ba8: 0000 0000 0000 0000 0000 0000 0000 0000
1bb0: 0000 0000 0000 0000 0000 0000 0000 0000
1bb8: 0000 0000 0000 0000 0000 0000 0000 0000
1bc0: 0000 0000 0000 0000 0000 0000 0000 0000
1bc8: 0000 0000 0000 0000 0000 0000 0000 0000
1bd0: 0000 0000 0000 0000 0000 0000 0000 0000
1bd8: 0000 0000 0000 0000 0000 0000 0000 0000
1be0: 0000 0000 0000 0000 0000 0000 0000 0000
1be8: 0000 0000 0000 0000 0000 0000 0000 0000
1bf0: 0000 0000 0000 0000 0000 0000 0000 0000
1bf8: 0000 0000 0000 0000 0000 0000 0000 0000
1c00: 0000 0000 0000 0000 0000 0000 0000 0000
1c08: 0000 0000 0000 0000 0000 0000 0000 0000
1c10: 0000 0000 0000 0000 0000 0000 0000 0000
1c18: 0000 0000 0000 0000 0000 0000 0000 0000
1c20: 0000 0000 0000 0000 0000 0000 0000 0000
1c28: 0000 0000 0000 0000 0000 0000 0000 0000
1c30: 0000 0000 0000 0000 0000 0000 0000 0000
1c38: 0000 0000 0000 0000 0000 0000 0000 0000
1c40: 0000 0000 0000 0000 0000 0000 0000 0000
1c48: 0000 0000 0000 0000 0000 0000 0000 0000
1c50: 0000 0000 0000 0000 0000 0000 0000 0000
1c58: 0000 0000 0000 0000 0000 0000 0000 0000
1c60: 0000 0000 0000 0000 0000 0000 0000 0000
1c68: 0000 0000 0000 0000 0000 0000 0000 0000
1c70: 0000 0000 0000 0000 0000 0000 0000 0000
1c78: 0000 0000 0000 0000 0000 0000 0000 0000
1c80: 0000 0000 0000 0000 0000 0000 0000 0000
1c88: 0000 0000 0000 0000 0000 0000 0000 0000
1c90: 0000 0000 0000 0000 0000 0000 0000 0000
1c98: 0000 0000 0000 0000 0000 0000 0000 0000
1ca0: 0000 0000 0000 0000 0000 0000 0000 0000
1ca8: 0000 0000 0000 0000 0000 0000 0000 0000
1cb0: 0000 0000 0000 0000 0000 0000 0000 0000
1cb8: 0000 0000 0000 0000 0000 0000 0000 0000
1cc0: 0000 0000 0000 0000 0000 0000 0000 0000
1cc8: 0000 0000 0000 0000 0000 0000 0000 0000
1cd0: 0000 0000 0000 0000 0000 0000 0000 0000
1cd8: 0000 0000 0000 0000 0000 0000 0000 0000
1ce0: 0000 0000 0000 0000 0000 0000 0000 0000
1ce8: 0000 0000 0000 0000 0000 0000 0000 0000
1cf0: 0000 0000 0000 0000 0000 0000 0000 0000
1cf8: 0000 0000 0000 0000 0000 0000 0000 0000
1d00: 0000 0000 0000 0000 0000 0000 0000 0000
1d08: 0000 0000 0000 0000 0000 0000 0000 0000
1d10: 0000 0000 0000 0000 0000 0000 0000 0000
1d18: 0000 0000 0000 0000 0000 0000 0000 0000
1d20: 0000 0000 0000 0000 0000 0000 0000 0000
1d28: 0000 0000 0000 0000 0000 0000 0000 0000
1d30: 0000 0000 0000 0000 0000 0000 0000 0000
1d38: 0000 0000 0000 0000 0000 0000 0000 0000
1d40: 0000 0000 0000 0000 0000 0000 0000 0000
1d48: 0000 0000 0000 0000 0000 0000 0000 0000
1d50: 0000 0000 0000 0000 0000 0000 0000 0000
1d58: 0000 0000 0000 0000 0000 0000 0000 0000
1d60: 0000 0000 0000 0000 0000 0000 0000 0000
1d68: 0000 0000 0000 0000 0000 0000 0000 0000
1d70: 0000 0000 0000 0000 0000 0000 0000 0000
1d78: 0000 0000 0000 0000 0000 0000 0000 0000
1d80: 0000 0000 0000 0000 0000 0000 0000 0000
1d88: 0000 0000 0000 0000 0000 0000 0000 0000
1d90: 0000 0000 0000 0000 0000 0000 0000 0000
1d98: 0000 0000 0000 0000 0000 0000 0000 0000
1da0: 0000 0000 0000 0000 0000 0000 0000 0000
1da8: 0000 0000 0000 0000 0000 0000 0000 0000
1db0: 0000 0000 0000 0000 0000 0000 0000 0000
1db8: 0000 0000 0000 0000 0000 0000 0000 0000
1dc0: 0000 0000 0000 0000 0000 0000 0000 0000
1dc8: 0000 0000 0000 0000 0000 0000 0000 0000
1dd0: 0000 0000 0000 0000 0000 0000 0000 0000
1dd8: 0000 0000 0000 0000 0000 0000 0000 0000
1de0: 0000 0000 0000 0000 0000 0000 0000 0000
1de8: 0000 0000 0000 0000 0000 0000 0000 0000
1df0: 0000 0000 0000 0000 0000 0000 0000 0000
1df8: 0000 0000 0000 0000 0000 0000 0000 0000
1e00: 0000 0000 0000 0000 0000 0000 0000 0000
1e08: 0000 0000 0000 0000 0000 0000 0000 0000
1e10: 0000 0000 0000 0000 0000 0000 0000 0000
1e18: 0000 0000 0000 0000 0000 0000 0000 0000
1e20: 0000 0000 0000 0000 0000 0000 0000 0000
1e28: 0000 0000 0000 0000 0000 0000 0000 0000
1e30: 0000 0000 0000 0000 0000 0000 0000 0000
1e38: 0000 0000 0000 0000 0000 0000 0000 0000
1e40: 0000 0000 0000 0000 0000 0000 0000 0000
1e48: 0000 0000 0000 0000 0000 0000 0000 0000
1e50: 0000 0000 0000 0000 0000 0000 0000 0000
1e58: 0000 0000 0000 0000 0000 0000 0000 0000
1e60: 0000 0000 0000 0000 0000 0000 0000 0000
1e68: 0000 0000 0000 0000 0000 0000 0000 0000
1e70: 0000 0000 0000 0000 0000 0000 0000 0000
1e78: 0000 0000 0000 0000 0000 0000 0000 0000
1e80: 0000 0000 0000 0000 0000 0000 0000 0000
1e88: 0000 0000 0000 0000 0000 0000 0000 0000
1e90: 0000 0000 0000 0000 0000 0000 0000 0000
1e98: 0000 0000 0000 0000 0000 0000 0000 0000
1ea0: 0000 0000 0000 0000 0000 0000 0000 0000
1ea8: 0000 0000 0000 0000 0000 0000 0000 0000
1eb0: 0000 0000 0000 0000 0000 0000 0000 0000
1eb8: 0000 0000 0000 0000 0000 0000 0000 0000
1ec0: 0000 0000 0000 0000 0000 0000 0000 0000
1ec8: 0000 0000 0000 0000 0000 0000 0000 0000
1ed0: 0000 0000 0000 0000 0000 0000 0000 0000
1ed8: 0000 0000 0000 0000 0000 0000 0000 0000
1ee0: 0000 0000 0000 0000 0000 0000 0000 0000
1ee8: 0000 0000 0000 0000 0000 0000 0000 0000
1ef0: 0000 0000 0000 0000 0000 0000 0000 0000
1ef8: 0000 0000 0000 0000 0000 0000 0000 0000
1f00: 0000 0000 0000 0000 0000 0000 0000 0000
1f08: 0000 0000 0000 0000 0000 0000 0000 0000
1f10: 0000 0000 0000 0000 0000 0000 0000 0000
1f18: 0000 0000 0000 0000 0000 0000 0000 0000
1f20: 0000 0000 0000 0000 0000 0000 0000 0000
1f28: 0000 0000 0000 0000 0000 0000 0000 0000
1f30: 0000 0000 0000 0000 0000 0000 0000 0000
1f38: 0000 0000 0000 0000 0000 0000 0000 0000
1f40: 0000 0000 0000 0000 0000 0000 0000 0000
1f48: 0000 0000 0000 0000 0000 0000 0000 0000
1f50: 0000 0000 0000 0000 0000 0000 0000 0000
1f58: 0000 0000 0000 0000 0000 0000 0000 0000
1f60: 0000 0000 0000 0000 0000 0000 0000 0000
1f68: 0000 0000 0000 0000 0000 0000 0000 0000
1f70: 0000 0000 0000 0000 0000 0000 0000 0000
1f78: 0000 0000 0000 0000 0000 0000 0000 0000
1f80: 0000 0000 0000 0000 0000 0000 0000 0000
1f88: 0000 0000 0000 0000 0000 0000 0000 0000
1f90: 0000 0000 0000 0000 0000 0000 0000 0000
1f98: 0000 0000 0000 0000 0000 0000 0000 0000
1fa0: 0000 0000 0000 0000 0000 0000 0000 0000
1fa8: 0000 0000 0000 0000 0000 0000 0000 0000
1fb0: 0000 0000 0000 0000 0000 0000 0000 0000
1fb8: 0000 0000 0000 0000 0000 0000 0000 0000
1fc0: 0000 0000 0000 0000 0000 0000 0000 0000
1fc8: 0000 0000 0000 0000 0000 0000 0000 0000
1fd0: 0000 0000 0000 0000 0000 0000 0000 0000
1fd8: 0000 0000 0000 0000 0000 0000 0000 0000
1fe0: 0000 0000 0000 0000 0000 0000 0000 0000
1fe8: 0000 0000 0000 0000 0000 0000 0000 0000
1ff0: 0000 0000 0000 0000 0000 0000 0000 0000
1ff8: 0000 0000 0000 0000 0000 0000 0000 0000
2000: 0000 0000 0000 0000 0000 0000 0000 0000
2008: 0000 0000 0000 0000 0000 0000 0000 0000
2010: 0000 0000 0000 0000 0000 0000 0000 0000
2018: 0000 0000 0000 0000 0000 0000 0000 0000
2020: 0000 0000 0000 0000 0000 0000 0000 0000
2028: 0000 0000 0000 0000 0000 0000 0000 0000
2030: 0000 0000 0000 0000 0000 0000 0000 0000
2038: 0000 0000 0000 0000 0000 0000 0000 0000
2040: 0000 0000 0000 0000 0000 0000 0000 0000
2048: 0000 0000 0000 0000 0000 0000 0000 0000
2050: 0000 0000 0000 0000 0000 0000 0000 0000
2058: 0000 0000 0000 0000 0000 0000 0000 0000
2060: 0000 0000 0000 0000 0000 0000 0000 0000
2068: 0000 0000 0000 0000 0000 0000 0000 0000
2070: 0000 0000 0000 0000 0000 0000 0000 0000
2078: 0000 0000 0000 0000 0000 0000 0000 0000
2080: 0000 0000 0000 0000 0000 0000 0000 0000
2088: 0000 0000 0000 0000 0000 0000 0000 0000
2090: 0000 0000 0000 0000 0000 0000 0000 0000
2098: 0000 0000 0000 0000 0000 0000 0000 0000
20a0: 0000 0000 0000 0000 0000 0000 0000 0000
20a8: 0000 0000 0000 0000 0000 0000 0000 0000
20b0: 0000 0000 0000 0000 0000 0000 0000 0000
20b8: 0000 0000 0000 0000 0000 0000 0000 0000
20c0: 0000 0000 0000 0000 0000 0000 0000 0000
20c8: 0000 0000 0000 0000 0000 0000 0000 0000
20d0: 0000 0000 0000 0000 0000 0000 0000 0000
20d8: 0000 0000 0000 0000 0000 0000 0000 0000
20e0: 0000 0000 0000 0000 0000 0000 0000 0000
20e8: 0000 0000 0000 0000 0000 0000 0000 0000
20f0: 0000 0000 0000 0000 0000 0000 0000 0000
20f8: 0000 0000 0000 0000 0000 0000 0000 0000
2100: 0000 0000 0000 0000 0000 0000 0000 0000
2108: 0000 0000 0000 0000 0000 0000 0000 0000
2110: 0000 0000 0000 0000 0000 0000 0000 0000
2118: 0000 0000 0000 0000 0000 0000 0000 0000
2120: 0000 0000 0000 0000 0000 0000 0000 0000
2128: 0000 0000 0000 0000 0000 0000 0000 0000
2130: 0000 0000 0000 0000 0000 0000 0000 0000
2138: 0000 0000 0000 0000 0000 0000 0000 0000
2140: 0000 0000 0000 0000 0000 0000 0000 0000
2148: 0000 0000 0000 0000 0000 0000 0000 0000
2150: 0000 0000 0000 0000 0000 0000 0000 0000
2158: 0000 0000 0000 0000 0000 0000 0000 0000
2160: 0000 0000 0000 0000 0000 0000 0000 0000
2168: 0000 0000 0000 0000 0000 0000 0000 0000
2170: 0000 0000 0000 0000 0000 0000 0000 0000
2178: 0000 0000 0000 0000 0000 0000 0000 0000
2180: 0000 0000 0000 0000 0000 0000 0000 0000
2188: 0000 0000 0000 0000 0000 0000 0000 0000
2190: 0000 0000 0000 0000 0000 0000 0000 0000
2198: 0000 0000 0000 0000 0000 0000 0000 0000
21a0: 0000 0000 0000 0000 0000 0000 0000 0000
21a8: 0000 0000 0000 0000 0000 0000 0000 0000
21b0: 0000 0000 0000 0000 0000 0000 0000 0000
21b8: 0000 0000 0000 0000 0000 0000 0000 0000
21c0: 0000 0000 0000 0000 0000 0000 0000 0000
21c8: 0000 0000 0000 0000 0000 0000 0000 0000
21d0: 0000 0000 0000 0000 0000 0000 0000 0000
21d8: 0000 0000 0000 0000 0000 0000 0000 0000
21e0: 0000 0000 0000 0000 0000 0000 0000 0000
21e8: 0000 0000 0000 0000 0000 0000 0000 0000
21f0: 0000 0000 0000 0000 0000 0000 0000 0000
21f8: 0000 0000 0000 0000 0000 0000 0000 0000
2200: 0000 0000 0000 0000 0000 0000 0000 0000
2208: 0000 0000 0000 0000 0000 0000 0000 0000
2210: 0000 0000 0000 0000 0000 0000 0000 0000
2218: 0000 0000 0000 0000 0000 0000 0000 0000
2220: 0000 0000 0000 0000 0000 0000 0000 0000
2228: 0000 0000 0000 0000 0000 0000 0000 0000
2230: 0000 0000 0000 0000 0000 0000 0000 0000
2238: 0000 0000 0000 0000 0000 0000 0000 0000
2240: 0000 0000 0000 0000 0000 0000 0000 0000
2248: 0000 0000 0000 0000 0000 0000 0000 0000
2250: 0000 0000 0000 0000 0000 0000 0000 0000
2258: 0000 0000 0000 0000 0000 0000 0000 0000
2260: 0000 0000 0000 0000 0000 0000 0000 0000
2268: 0000 0000 0000 0000 0000 0000 0000 0000
2270: 0000 0000 0000 0000 0000 0000 0000 0000
2278: 0000 0000 0000 0000 0000 0000 0000 0000
2280: 0000 0000 0000 0000 0000 0000 0000 0000
2288: 0000 0000 0000 0000 0000 0000 0000 0000
2290: 0000 0000 0000 0000 0000 0000 0000 0000
2298: 0000 0000 0000 0000 0000 0000 0000 0000
22a0: 0000 0000 0000 0000 0000 0000 0000 0000
22a8: 0000 0000 0000 0000 0000 0000 0000 0000
22b0: 0000 0000 0000 0000 0000 0000 0000 0000
22b8: 0000 0000 0000 0000 0000 0000 0000 0000
22c0: 0000 0000 0000 0000 0000 0000 0000 0000
22c8: 0000 0000 0000 0000 0000 0000 0000 0000
22d0: 0000 0000 0000 0000 0000 0000 0000 0000
22d8: 0000 0000 0000 0000 0000 0000 0000 0000
22e0: 0000 0000 0000 0000 0000 0000 0000 0000
22e8: 0000 0000 0000 0000 0000 0000 0000 0000
22f0: 0000 0000 0000 0000 0000 0000 0000 0000
22f8: 0000 0000 0000 0000 0000 0000 0000 0000
2300: 0000 0000 0000 0000 0000 0000 0000 0000
2308: 0000 0000 0000 0000 0000 0000 0000 0000
2310: 0000 0000 0000 0000 0000 0000 0000 0000
2318: 0000 0000 0000 0000 0000 0000 0000 0000
2320: 0000 0000 0000 0000 0000 0000 0000 0000
2328: 0000 0000 0000 0000 0000 0000 0000 0000
2330: 0000 0000 0000 0000 0000 0000 0000 0000
2338: 0000 0000 0000 0000 0000 0000 0000 0000
2340: 0000 0000 0000 0000 0000 0000 0000 0000
2348: 0000 0000 0000 0000 0000 0000 0000 0000
2350: 0000 0000 0000 0000 0000 0000 0000 0000
2358: 0000 0000 0000 0000 0000 0000 0000 0000
2360: 0000 0000 0000 0000 0000 0000 0000 0000
2368: 0000 0000 0000 0000 0000 0000 0000 0000
2370: 0000 0000 0000 0000 0000 0000 0000 0000
2378: 0000 0000 0000 0000 0000 0000 0000 0000
2380: 0000 0000 0000 0000 0000 0000 0000 0000
2388: 0000 0000 0000 0000 0000 0000 0000 0000
2390: 0000 0000 0000 0000 0000 0000 0000 0000
2398: 0000 0000 0000 0000 0000 0000 0000 0000
23a0: 0000 0000 0000 0000 0000 0000 0000 0000
23a8: 0000 0000 0000 0000 0000 0000 0000 0000
23b0: 0000 0000 0000 0000 0000 0000 0000 0000
23b8: 0000 0000 0000 0000 0000 0000 0000 0000
23c0: 0000 0000 0000 0000 0000 0000 0000 0000
23c8: 0000 0000 0000 0000 0000 0000 0000 0000
23d0: 0000 0000 0000 0000 0000 0000 0000 0000
23d8: 0000 0000 0000 0000 0000 0000 0000 0000
23e0: 0000 0000 0000 0000 0000 0000 0000 0000
23e8: 0000 0000 0000 0000 0000 0000 0000 0000
23f0: 0000 0000 0000 0000 0000 0000 0000 0000
23f8: 0000 0000 0000 0000 0000 0000 0000 0000
2400: 0000 0000 0000 0000 0000 0000 0000 0000
2408: 0000 0000 0000 0000 0000 0000 0000 0000
2410: 0000 0000 0000 0000 0000 0000 0000 0000
2418: 0000 0000 0000 0000 0000 0000 0000 0000
2420: 0000 0000 0000 0000 0000 0000 0000 0000
2428: 0000 0000 0000 0000 0000 0000 0000 0000
2430: 0000 0000 0000 0000 0000 0000 0000 0000
2438: 0000 0000 0000 0000 0000 0000 0000 0000
2440: 0000 0000 0000 0000 0000 0000 0000 0000
2448: 0000 0000 0000 0000 0000 0000 0000 0000
2450: 0000 0000 0000 0000 0000 0000 0000 0000
2458: 0000 0000 0000 0000 0000 0000 0000 0000
2460: 0000 0000 0000 0000 0000 0000 0000 0000
2468: 0000 0000 0000 0000 0000 0000 0000 0000
2470: 0000 0000 0000 0000 0000 0000 0000 0000
2478: 0000 0000 0000 0000 0000 0000 0000 0000
2480: 0000 0000 0000 0000 0000 0000 0000 0000
2488: 0000 0000 0000 0000 0000 0000 0000 0000
2490: 0000 0000 0000 0000 0000 0000 0000 0000
2498: 0000 0000 0000 0000 0000 0000 0000 0000
24a0: 0000 0000 0000 0000 0000 0000 0000 0000
24a8: 0000 0000 0000 0000 0000 0000 0000 0000
24b0: 0000 0000 0000 0000 0000 0000 0000 0000
24b8: 0000 0000 0000 0000 0000 0000 0000 0000
24c0: 0000 0000 0000 0000 0000 0000 0000 0000
24c8: 0000 0000 0000 0000 0000 0000 0000 0000
24d0: 0000 0000 0000 0000 0000 0000 0000 0000
24d8: 0000 0000 0000 0000 0000 0000 0000 0000
24e0: 0000 0000 0000 0000 0000 0000 0000 0000
24e8: 0000 0000 0000 0000 0000 0000 0000 0000
24f0: 0000 0000 0000 0000 0000 0000 0000 0000
24f8: 0000 0000 0000 0000 0000 0000 0000 0000
2500: 0000 0000 0000 0000 0000 0000 0000 0000
2508: 0000 0000 0000 0000 0000 0000 0000 0000
2510: 0000 0000 0000 0000 0000 0000 0000 0000
2518: 0000 0000 0000 0000 0000 0000 0000 0000
2520: 0000 0000 0000 0000 0000 0000 0000 0000
2528: 0000 0000 0000 0000 0000 0000 0000 0000
2530: 0000 0000 0000 0000 0000 0000 0000 0000
2538: 0000 0000 0000 0000 0000 0000 0000 0000
2540: 0000 0000 0000 0000 0000 0000 0000 0000
2548: 0000 0000 0000 0000 0000 0000 0000 0000
2550: 0000 0000 0000 0000 0000 0000 0000 0000
2558: 0000 0000 0000 0000 0000 0000 0000 0000
2560: 0000 0000 0000 0000 0000 0000 0000 0000
2568: 0000 0000 0000 0000 0000 0000 0000 0000
2570: 0000 0000 0000 0000 0000 0000 0000 0000
2578: 0000 0000 0000 0000 0000 0000 0000 0000
2580: 0000 0000 0000 0000 0000 0000 0000 0000
2588: 0000 0000 0000 0000 0000 0000 0000 0000
2590: 0000 0000 0000 0000 0000 0000 0000 0000
2598: 0000 0000 0000 0000 0000 0000 0000 0000
25a0: 0000 0000 0000 0000 0000 0000 0000 0000
25a8: 0000 0000 0000 0000 0000 0000 0000 0000
25b0: 0000 0000 0000 0000 0000 0000 0000 0000
25b8: 0000 0000 0000 0000 0000 0000 0000 0000
25c0: 0000 0000 0000 0000 0000 0000 0000 0000
25c8: 0000 0000 0000 0000 0000 0000 0000 0000
25d0: 0000 0000 0000 0000 0000 0000 0000 0000
25d8: 0000 0000 0000 0000 0000 0000 0000 0000
25e0: 0000 0000 0000 0000 0000 0000 0000 0000
25e8: 0000 0000 0000 0000 0000 0000 0000 0000
25f0: 0000 0000 0000 0000 0000 0000 0000 0000
25f8: 0000 0000 0000 0000 0000 0000 0000 0000
2600: 0000 0000 0000 0000 0000 0000 0000 0000
2608: 0000 0000 0000 0000 0000 0000 0000 0000
2610: 0000 0000 0000 0000 0000 0000 0000 0000
2618: 0000 0000 0000 0000 0000 0000 0000 0000
2620: 0000 0000 0000 0000 0000 0000 0000 0000
2628: 0000 0000 0000 0000 0000 0000 0000 0000
2630: 0000 0000 0000 0000 0000 0000 0000 0000
2638: 0000 0000 0000 0000 0000 0000 0000 0000
2640: 0000 0000 0000 0000 0000 0000 0000 0000
2648: 0000 0000 0000 0000 0000 0000 0000 0000
2650: 0000 0000 0000 0000 0000 0000 0000 0000
2658: 0000 0000 0000 0000 0000 0000 0000 0000
2660: 0000 0000 0000 0000 0000 0000 0000 0000
2668: 0000 0000 0000 0000 0000 0000 0000 0000
2670: 0000 0000 0000 0000 0000 0000 0000 0000
2678: 0000 0000 0000 0000 0000 0000 0000 0000
2680: 0000 0000 0000 0000 0000 0000 0000 0000
2688: 0000 0000 0000 0000 0000 0000 0000 0000
2690: 0000 0000 0000 0000 0000 0000 0000 0000
2698: 0000 0000 0000 0000 0000 0000 0000 0000
26a0: 0000 0000 0000 0000 0000 0000 0000 0000
26a8: 0000 0000 0000 0000 0000 0000 0000 0000
26b0: 0000 0000 0000 0000 0000 0000 0000 0000
26b8: 0000 0000 0000 0000 0000 0000 0000 0000
26c0: 0000 0000 0000 0000 0000 0000 0000 0000
26c8: 0000 0000 0000 0000 0000 0000 0000 0000
26d0: 0000 0000 0000 0000 0000 0000 0000 0000
26d8: 0000 0000 0000 0000 0000 0000 0000 0000
26e0: 0000 0000 0000 0000 0000 0000 0000 0000
26e8: 0000 0000 0000 0000 0000 0000 0000 0000
26f0: 0000 0000 0000 0000 0000 0000 0000 0000
26f8: 0000 0000 0000 0000 0000 0000 0000 0000
2700: 0000 0000 0000 0000 0000 0000 0000 0000
2708: 0000 0000 0000 0000 0000 0000 0000 0000
2710: 0000 0000 0000 0000 0000 0000 0000 0000
2718: 0000 0000 0000 0000 0000 0000 0000 0000
2720: 0000 0000 0000 0000 0000 0000 0000 0000
2728: 0000 0000 0000 0000 0000 0000 0000 0000
2730: 0000 0000 0000 0000 0000 0000 0000 0000
2738: 0000 0000 0000 0000 0000 0000 0000 0000
2740: 0000 0000 0000 0000 0000 0000 0000 0000
2748: 0000 0000 0000 0000 0000 0000 0000 0000
2750: 0000 0000 0000 0000 0000 0000 0000 0000
2758: 0000 0000 0000 0000 0000 0000 0000 0000
2760: 0000 0000 0000 0000 0000 0000 0000 0000
2768: 0000 0000 0000 0000 0000 0000 0000 0000
2770: 0000 0000 0000 0000 0000 0000 0000 0000
2778: 0000 0000 0000 0000 0000 0000 0000 0000
2780: 0000 0000 0000 0000 0000 0000 0000 0000
2788: 0000 0000 0000 0000 0000 0000 0000 0000
2790: 0000 0000 0000 0000 0000 0000 0000 0000
2798: 0000 0000 0000 0000 0000 0000 0000 0000
27a0: 0000 0000 0000 0000 0000 0000 0000 0000
27a8: 0000 0000 0000 0000 0000 0000 0000 0000
27b0: 0000 0000 0000 0000 0000 0000 0000 0000
27b8: 0000 0000 0000 0000 0000 0000 0000 0000
27c0: 0000 0000 0000 0000 0000 0000 0000 0000
27c8: 0000 0000 0000 0000 0000 0000 0000 0000
27d0: 0000 0000 0000 0000 0000 0000 0000 0000
27d8: 0000 0000 0000 0000 0000 0000 0000 0000
27e0: 0000 0000 0000 0000 0000 0000 0000 0000
27e8: 0000 0000 0000 0000 0000 0000 0000 0000
27f0: 0000 0000 0000 0000 0000 0000 0000 0000
27f8: 0000 0000 0000 0000 0000 0000 0000 0000
2800: 0000 0000 0000 0000 0000 0000 0000 0000
2808: 0000 0000 0000 0000 0000 0000 0000 0000
2810: 0000 0000 0000 0000 0000 0000 0000 0000
2818: 0000 0000 0000 0000 0000 0000 0000 0000
2820: 0000 0000 0000 0000 0000 0000 0000 0000
2828: 0000 0000 0000 0000 0000 0000 0000 0000
2830: 0000 0000 0000 0000 0000 0000 0000 0000
2838: 0000 0000 0000 0000 0000 0000 0000 0000
2840: 0000 0000 0000 0000 0000 0000 0000 0000
2848: 0000 0000 0000 0000 0000 0000 0000 0000
2850: 0000 0000 0000 0000 0000 0000 0000 0000
2858: 0000 0000 0000 0000 0000 0000 0000 0000
2860: 0000 0000 0000 0000 0000 0000 0000 0000
2868: 0000 0000 0000 0000 0000 0000 0000 0000
2870: 0000 0000 0000 0000 0000 0000 0000 0000
2878: 0000 0000 0000 0000 0000 0000 0000 0000
2880: 0000 0000 0000 0000 0000 0000 0000 0000
2888: 0000 0000 0000 0000 0000 0000 0000 0000
2890: 0000 0000 0000 0000 0000 0000 0000 0000
2898: 0000 0000 0000 0000 0000 0000 0000 0000
28a0: 0000 0000 0000 0000 0000 0000 0000 0000
28a8: 0000 0000 0000 0000 0000 0000 0000 0000
28b0: 0000 0000 0000 0000 0000 0000 0000 0000
28b8: 0000 0000 0000 0000 0000 0000 0000 0000
28c0: 0000 0000 0000 0000 0000 0000 0000 0000
28c8: 0000 0000 0000 0000 0000 0000 0000 0000
28d0: 0000 0000 0000 0000 0000 0000 0000 0000
28d8: 0000 0000 0000 0000 0000 0000 0000 0000
28e0: 0000 0000 0000 0000 0000 0000 0000 0000
28e8: 0000 0000 0000 0000 0000 0000 0000 0000
28f0: 0000 0000 0000 0000 0000 0000 0000 0000
28f8: 0000 0000 0000 0000 0000 0000 0000 0000
2900: 0000 0000 0000 0000 0000 0000 0000 0000
2908: 0000 0000 0000 0000 0000 0000 0000 0000
2910: 0000 0000 0000 0000 0000 0000 0000 0000
2918: 0000 0000 0000 0000 0000 0000 0000 0000
2920: 0000 0000 0000 0000 0000 0000 0000 0000
2928: 0000 0000 0000 0000 0000 0000 0000 0000
2930: 0000 0000 0000 0000 0000 0000 0000 0000
2938: 0000 0000 0000 0000 0000 0000 0000 0000
2940: 0000 0000 0000 0000 0000 0000 0000 0000
2948: 0000 0000 0000 0000 0000 0000 0000 0000
2950: 0000 0000 0000 0000 0000 0000 0000 0000
2958: 0000 0000 0000 0000 0000 0000 0000 0000
2960: 0000 0000 0000 0000 0000 0000 0000 0000
2968: 0000 0000 0000 0000 0000 0000 0000 0000
2970: 0000 0000 0000 0000 0000 0000 0000 0000
2978: 0000 0000 0000 0000 0000 0000 0000 0000
2980: 0000 0000 0000 0000 0000 0000 0000 0000
2988: 0000 0000 0000 0000 0000 0000 0000 0000
2990: 0000 0000 0000 0000 0000 0000 0000 0000
2998: 0000 0000 0000 0000 0000 0000 0000 0000
29a0: 0000 0000 0000 0000 0000 0000 0000 0000
29a8: 0000 0000 0000 0000 0000 0000 0000 0000
29b0: 0000 0000 0000 0000 0000 0000 0000 0000
29b8: 0000 0000 0000 0000 0000 0000 0000 0000
29c0: 0000 0000 0000 0000 0000 0000 0000 0000
29c8: 0000 0000 0000 0000 0000 0000 0000 0000
29d0: 0000 0000 0000 0000 0000 0000 0000 0000
29d8: 0000 0000 0000 0000 0000 0000 0000 0000
29e0: 0000 0000 0000 0000 0000 0000 0000 0000
29e8: 0000 0000 0000 0000 0000 0000 0000 0000
29f0: 0000 0000 0000 0000 0000 0000 0000 0000
29f8: 0000 0000 0000 0000 0000 0000 0000 0000
2a00: 0000 0000 0000 0000 0000 0000 0000 0000
2a08: 0000 0000 0000 0000 0000 0000 0000 0000
2a10: 0000 0000 0000 0000 0000 0000 0000 0000
2a18: 0000 0000 0000 0000 0000 0000 0000 0000
2a20: 0000 0000 0000 0000 0000 0000 0000 0000
2a28: 0000 0000 0000 0000 0000 0000 0000 0000
2a30: 0000 0000 0000 0000 0000 0000 0000 0000
2a38: 0000 0000 0000 0000 0000 0000 0000 0000
2a40: 0000 0000 0000 0000 0000 0000 0000 0000
2a48: 0000 0000 0000 0000 0000 0000 0000 0000
2a50: 0000 0000 0000 0000 0000 0000 0000 0000
2a58: 0000 0000 0000 0000 0000 0000 0000 0000
2a60: 0000 0000 0000 0000 0000 0000 0000 0000
2a68: 0000 0000 0000 0000 0000 0000 0000 0000
2a70: 0000 0000 0000 0000 0000 0000 0000 0000
2a78: 0000 0000 0000 0000 0000 0000 0000 0000
2a80: 0000 0000 0000 0000 0000 0000 0000 0000
2a88: 0000 0000 0000 0000 0000 0000 0000 0000
2a90: 0000 0000 0000 0000 0000 0000 0000 0000
2a98: 0000 0000 0000 0000 0000 0000 0000 0000
2aa0: 0000 0000 0000 0000 0000 0000 0000 0000
2aa8: 0000 0000 0000 0000 0000 0000 0000 0000
2ab0: 0000 0000 0000 0000 0000 0000 0000 0000
2ab8: 0000 0000 0000 0000 0000 0000 0000 0000
2ac0: 0000 0000 0000 0000 0000 0000 0000 0000
2ac8: 0000 0000 0000 0000 0000 0000 0000 0000
2ad0: 0000 0000 0000 0000 0000 0000 0000 0000
2ad8: 0000 0000 0000 0000 0000 0000 0000 0000
2ae0: 0000 0000 0000 0000 0000 0000 0000 0000
2ae8: 0000 0000 0000 0000 0000 0000 0000 0000
2af0: 0000 0000 0000 0000 0000 0000 0000 0000
2af8: 0000 0000 0000 0000 0000 0000 0000 0000
2b00: 0000 0000 0000 0000 0000 0000 0000 0000
2b08: 0000 0000 0000 0000 0000 0000 0000 0000
2b10: 0000 0000 0000 0000 0000 0000 0000 0000
2b18: 0000 0000 0000 0000 0000 0000 0000 0000
2b20: 0000 0000 0000 0000 0000 0000 0000 0000
2b28: 0000 0000 0000 0000 0000 0000 0000 0000
2b30: 0000 0000 0000 0000 0000 0000 0000 0000
2b38: 0000 0000 0000 0000 0000 0000 0000 0000
2b40: 0000 0000 0000 0000 0000 0000 0000 0000
2b48: 0000 0000 0000 0000 0000 0000 0000 0000
2b50: 0000 0000 0000 0000 0000 0000 0000 0000
2b58: 0000 0000 0000 0000 0000 0000 0000 0000
2b60: 0000 0000 0000 0000 0000 0000 0000 0000
2b68: 0000 0000 0000 0000 0000 0000 0000 0000
2b70: 0000 0000 0000 0000 0000 0000 0000 0000
2b78: 0000 0000 0000 0000 0000 0000 0000 0000
2b80: 0000 0000 0000 0000 0000 0000 0000 0000
2b88: 0000 0000 0000 0000 0000 0000 0000 0000
2b90: 0000 0000 0000 0000 0000 0000 0000 0000
2b98: 0000 0000 0000 0000 0000 0000 0000 0000
2ba0: 0000 0000 0000 0000 0000 0000 0000 0000
2ba8: 0000 0000 0000 0000 0000 0000 0000 0000
2bb0: 0000 0000 0000 0000 0000 0000 0000 0000
2bb8: 0000 0000 0000 0000 0000 0000 0000 0000
2bc0: 0000 0000 0000 0000 0000 0000 0000 0000
2bc8: 0000 0000 0000 0000 0000 0000 0000 0000
2bd0: 0000 0000 0000 0000 0000 0000 0000 0000
2bd8: 0000 0000 0000 0000 0000 0000 0000 0000
2be0: 0000 0000 0000 0000 0000 0000 0000 0000
2be8: 0000 0000 0000 0000 0000 0000 0000 0000
2bf0: 0000 0000 0000 0000 0000 0000 0000 0000
2bf8: 0000 0000 0000 0000 0000 0000 0000 0000
2c00: 0000 0000 0000 0000 0000 0000 0000 0000
2c08: 0000 0000 0000 0000 0000 0000 0000 0000
2c10: 0000 0000 0000 0000 0000 0000 0000 0000
2c18: 0000 0000 0000 0000 0000 0000 0000 0000
2c20: 0000 0000 0000 0000 0000 0000 0000 0000
2c28: 0000 0000 0000 0000 0000 0000 0000 0000
2c30: 0000 0000 0000 0000 0000 0000 0000 0000
2c38: 0000 0000 0000 0000 0000 0000 0000 0000
2c40: 0000 0000 0000 0000 0000 0000 0000 0000
2c48: 0000 0000 0000 0000 0000 0000 0000 0000
2c50: 0000 0000 0000 0000 0000 0000 0000 0000
2c58: 0000 0000 0000 0000 0000 0000 0000 0000
2c60: 0000 0000 0000 0000 0000 0000 0000 0000
2c68: 0000 0000 0000 0000 0000 0000 0000 0000
2c70: 0000 0000 0000 0000 0000 0000 0000 0000
2c78: 0000 0000 0000 0000 0000 0000 0000 0000
2c80: 0000 0000 0000 0000 0000 0000 0000 0000
2c88: 0000 0000 0000 0000 0000 0000 0000 0000
2c90: 0000 0000 0000 0000 0000 0000 0000 0000
2c98: 0000 0000 0000 0000 0000 0000 0000 0000
2ca0: 0000 0000 0000 0000 0000 0000 0000 0000
2ca8: 0000 0000 0000 0000 0000 0000 0000 0000
2cb0: 0000 0000 0000 0000 0000 0000 0000 0000
2cb8: 0000 0000 0000 0000 0000 0000 0000 0000
2cc0: 0000 0000 0000 0000 0000 0000 0000 0000
2cc8: 0000 0000 0000 0000 0000 0000 0000 0000
2cd0: 0000 0000 0000 0000 0000 0000 0000 0000
2cd8: 0000 0000 0000 0000 0000 0000 0000 0000
2ce0: 0000 0000 0000 0000 0000 0000 0000 0000
2ce8: 0000 0000 0000 0000 0000 0000 0000 0000
2cf0: 0000 0000 0000 0000 0000 0000 0000 0000
2cf8: 0000 0000 0000 0000 0000 0000 0000 0000
2d00: 0000 0000 0000 0000 0000 0000 0000 0000
2d08: 0000 0000 0000 0000 0000 0000 0000 0000
2d10: 0000 0000 0000 0000 0000 0000 0000 0000
2d18: 0000 0000 0000 0000 0000 0000 0000 0000
2d20: 0000 0000 0000 0000 0000 0000 0000 0000
2d28: 0000 0000 0000 0000 0000 0000 0000 0000
2d30: 0000 0000 0000 0000 0000 0000 0000 0000
2d38: 0000 0000 0000 0000 0000 0000 0000 0000
2d40: 0000 0000 0000 0000 0000 0000 0000 0000
2d48: 0000 0000 0000 0000 0000 0000 0000 0000
2d50: 0000 0000 0000 0000 0000 0000 0000 0000
2d58: 0000 0000 0000 0000 0000 0000 0000 0000
2d60: 0000 0000 0000 0000 0000 0000 0000 0000
2d68: 0000 0000 0000 0000 0000 0000 0000 0000
2d70: 0000 0000 0000 0000 0000 0000 0000 0000
2d78: 0000 0000 0000 0000 0000 0000 0000 0000
2d80: 0000 0000 0000 0000 0000 0000 0000 0000
2d88: 0000 0000 0000 0000 0000 0000 0000 0000
2d90: 0000 0000 0000 0000 0000 0000 0000 0000
2d98: 0000 0000 0000 0000 0000 0000 0000 0000
2da0: 0000 0000 0000 0000 0000 0000 0000 0000
2da8: 0000 0000 0000 0000 0000 0000 0000 0000
2db0: 0000 0000 0000 0000 0000 0000 0000 0000
2db8: 0000 0000 0000 0000 0000 0000 0000 0000
2dc0: 0000 0000 0000 0000 0000 0000 0000 0000
2dc8: 0000 0000 0000 0000 0000 0000 0000 0000
2dd0: 0000 0000 0000 0000 0000 0000 0000 0000
2dd8: 0000 0000 0000 0000 0000 0000 0000 0000
2de0: 0000 0000 0000 0000 0000 0000 0000 0000
2de8: 0000 0000 0000 0000 0000 0000 0000 0000
2df0: 0000 0000 0000 0000 0000 0000 0000 0000
2df8: 0000 0000 0000 0000 0000 0000 0000 0000
2e00: 0000 0000 0000 0000 0000 0000 0000 0000
2e08: 0000 0000 0000 0000 0000 0000 0000 0000
2e10: 0000 0000 0000 0000 0000 0000 0000 0000
2e18: 0000 0000 0000 0000 0000 0000 0000 0000
2e20: 0000 0000 0000 0000 0000 0000 0000 0000
2e28: 0000 0000 0000 0000 0000 0000 0000 0000
2e30: 0000 0000 0000 0000 0000 0000 0000 0000
2e38: 0000 0000 0000 0000 0000 0000 0000 0000
2e40: 0000 0000 0000 0000 0000 0000 0000 0000
2e48: 0000 0000 0000 0000 0000 0000 0000 0000
2e50: 0000 0000 0000 0000 0000 0000 0000 0000
2e58: 0000 0000 0000 0000 0000 0000 0000 0000
2e60: 0000 0000 0000 0000 0000 0000 0000 0000
2e68: 0000 0000 0000 0000 0000 0000 0000 0000
2e70: 0000 0000 0000 0000 0000 0000 0000 0000
2e78: 0000 0000 0000 0000 0000 0000 0000 0000
2e80: 0000 0000 0000 0000 0000 0000 0000 0000
2e88: 0000 0000 0000 0000 0000 0000 0000 0000
2e90: 0000 0000 0000 0000 0000 0000 0000 0000
2e98: 0000 0000 0000 0000 0000 0000 0000 0000
2ea0: 0000 0000 0000 0000 0000 0000 0000 0000
2ea8: 0000 0000 0000 0000 0000 0000 0000 0000
2eb0: 0000 0000 0000 0000 0000 0000 0000 0000
2eb8: 0000 0000 0000 0000 0000 0000 0000 0000
2ec0: 0000 0000 0000 0000 0000 0000 0000 0000
2ec8: 0000 0000 0000 0000 0000 0000 0000 0000
2ed0: 0000 0000 0000 0000 0000 0000 0000 0000
2ed8: 0000 0000 0000 0000 0000 0000 0000 0000
2ee0: 0000 0000 0000 0000 0000 0000 0000 0000
2ee8: 0000 0000 0000 0000 0000 0000 0000 0000
2ef0: 0000 0000 0000 0000 0000 0000 0000 0000
2ef8: 0000 0000 0000 0000 0000 0000 0000 0000
2f00: 0000 0000 0000 0000 0000 0000 0000 0000
2f08: 0000 0000 0000 0000 0000 0000 0000 0000
2f10: 0000 0000 0000 0000 0000 0000 0000 0000
2f18: 0000 0000 0000 0000 0000 0000 0000 0000
2f20: 0000 0000 0000 0000 0000 0000 0000 0000
2f28: 0000 0000 0000 0000 0000 0000 0000 0000
2f30: 0000 0000 0000 0000 0000 0000 0000 0000
2f38: 0000 0000 0000 0000 0000 0000 0000 0000
2f40: 0000 0000 0000 0000 0000 0000 0000 0000
2f48: 0000 0000 0000 0000 0000 0000 0000 0000
2f50: 0000 0000 0000 0000 0000 0000 0000 0000
2f58: 0000 0000 0000 0000 0000 0000 0000 0000
2f60: 0000 0000 0000 0000 0000 0000 0000 0000
2f68: 0000 0000 0000 0000 0000 0000 0000 0000
2f70: 0000 0000 0000 0000 0000 0000 0000 0000
2f78: 0000 0000 0000 0000 0000 0000 0000 0000
2f80: 0000 0000 0000 0000 0000 0000 0000 0000
2f88: 0000 0000 0000 0000 0000 0000 0000 0000
2f90: 0000 0000 0000 0000 0000 0000 0000 0000
2f98: 0000 0000 0000 0000 0000 0000 0000 0000
2fa0: 0000 0000 0000 0000 0000 0000 0000 0000
2fa8: 0000 0000 0000 0000 0000 0000 0000 0000
2fb0: 0000 0000 0000 0000 0000 0000 0000 0000
2fb8: 0000 0000 0000 0000 0000 0000 0000 0000
2fc0: 0000 0000 0000 0000 0000 0000 0000 0000
2fc8: 0000 0000 0000 0000 0000 0000 0000 0000
2fd0: 0000 0000 0000 0000 0000 0000 0000 0000
2fd8: 0000 0000 0000 0000 0000 0000 0000 0000
2fe0: 0000 0000 0000 0000 0000 0000 0000 0000
2fe8: 0000 0000 0000 0000 0000 0000 0000 0000
2ff0: 0000 0000 0000 0000 0000 0000 0000 0000
2ff8: 0000 0000 0000 0000 0000 0000 0000 0000
3000: 0000 0000 0000 0000 0000 0000 0000 0000
3008: 0000 0000 0000 0000 0000 0000 0000 0000
3010: 0000 0000 0000 0000 0000 0000 0000 0000
3018: 0000 0000 0000 0000 0000 0000 0000 0000
3020: 0000 0000 0000 0000 0000 0000 0000 0000
3028: 0000 0000 0000 0000 0000 0000 0000 0000
3030: 0000 0000 0000 0000 0000 0000 0000 0000
3038: 0000 0000 0000 0000 0000 0000 0000 0000
3040: 0000 0000 0000 0000 0000 0000 0000 0000
3048: 0000 0000 0000 0000 0000 0000 0000 0000
3050: 0000 0000 0000 0000 0000 0000 0000 0000
3058: 0000 0000 0000 0000 0000 0000 0000 0000
3060: 0000 0000 0000 0000 0000 0000 0000 0000
3068: 0000 0000 0000 0000 0000 0000 0000 0000
3070: 0000 0000 0000 0000 0000 0000 0000 0000
3078: 0000 0000 0000 0000 0000 0000 0000 0000
3080: 0000 0000 0000 0000 0000 0000 0000 0000
3088: 0000 0000 0000 0000 0000 0000 0000 0000
3090: 0000 0000 0000 0000 0000 0000 0000 0000
3098: 0000 0000 0000 0000 0000 0000 0000 0000
30a0: 0000 0000 0000 0000 0000 0000 0000 0000
30a8: 0000 0000 0000 0000 0000 0000 0000 0000
30b0: 0000 0000 0000 0000 0000 0000 0000 0000
30b8: 0000 0000 0000 0000 0000 0000 0000 0000
30c0: 0000 0000 0000 0000 0000 0000 0000 0000
30c8: 0000 0000 0000 0000 0000 0000 0000 0000
30d0: 0000 0000 0000 0000 0000 0000 0000 0000
30d8: 0000 0000 0000 0000 0000 0000 0000 0000
30e0: 0000 0000 0000 0000 0000 0000 0000 0000
30e8: 0000 0000 0000 0000 0000 0000 0000 0000
30f0: 0000 0000 0000 0000 0000 0000 0000 0000
30f8: 0000 0000 0000 0000 0000 0000 0000 0000
3100: 0000 0000 0000 0000 0000 0000 0000 0000
3108: 0000 0000 0000 0000 0000 0000 0000 0000
3110: 0000 0000 0000 0000 0000 0000 0000 0000
3118: 0000 0000 0000 0000 0000 0000 0000 0000
3120: 0000 0000 0000 0000 0000 0000 0000 0000
3128: 0000 0000 0000 0000 0000 0000 0000 0000
3130: 0000 0000 0000 0000 0000 0000 0000 0000
3138: 0000 0000 0000 0000 0000 0000 0000 0000
3140: 0000 0000 0000 0000 0000 0000 0000 0000
3148: 0000 0000 0000 0000 0000 0000 0000 0000
3150: 0000 0000 0000 0000 0000 0000 0000 0000
3158: 0000 0000 0000 0000 0000 0000 0000 0000
3160: 0000 0000 0000 0000 0000 0000 0000 0000
3168: 0000 0000 0000 0000 0000 0000 0000 0000
3170: 0000 0000 0000 0000 0000 0000 0000 0000
3178: 0000 0000 0000 0000 0000 0000 0000 0000
3180: 0000 0000 0000 0000 0000 0000 0000 0000
3188: 0000 0000 0000 0000 0000 0000 0000 0000
3190: 0000 0000 0000 0000 0000 0000 0000 0000
3198: 0000 0000 0000 0000 0000 0000 0000 0000
31a0: 0000 0000 0000 0000 0000 0000 0000 0000
31a8: 0000 0000 0000 0000 0000 0000 0000 0000
31b0: 0000 0000 0000 0000 0000 0000 0000 0000
31b8: 0000 0000 0000 0000 0000 0000 0000 0000
31c0: 0000 0000 0000 0000 0000 0000 0000 0000
31c8: 0000 0000 0000 0000 0000 0000 0000 0000
31d0: 0000 0000 0000 0000 0000 0000 0000 0000
31d8: 0000 0000 0000 0000 0000 0000 0000 0000
31e0: 0000 0000 0000 0000 0000 0000 0000 0000
31e8: 0000 0000 0000 0000 0000 0000 0000 0000
31f0: 0000 0000 0000 0000 0000 0000 0000 0000
31f8: 0000 0000 0000 0000 0000 0000 0000 0000
3200: 0000 0000 0000 0000 0000 0000 0000 0000
3208: 0000 0000 0000 0000 0000 0000 0000 0000
3210: 0000 0000 0000 0000 0000 0000 0000 0000
3218: 0000 0000 0000 0000 0000 0000 0000 0000
3220: 0000 0000 0000 0000 0000 0000 0000 0000
3228: 0000 0000 0000 0000 0000 0000 0000 0000
3230: 0000 0000 0000 0000 0000 0000 0000 0000
3238: 0000 0000 0000 0000 0000 0000 0000 0000
3240: 0000 0000 0000 0000 0000 0000 0000 0000
3248: 0000 0000 0000 0000 0000 0000 0000 0000
3250: 0000 0000 0000 0000 0000 0000 0000 0000
3258: 0000 0000 0000 0000 0000 0000 0000 0000
3260: 0000 0000 0000 0000 0000 0000 0000 0000
3268: 0000 0000 0000 0000 0000 0000 0000 0000
3270: 0000 0000 0000 0000 0000 0000 0000 0000
3278: 0000 0000 0000 0000 0000 0000 0000 0000
3280: 0000 0000 0000 0000 0000 0000 0000 0000
3288: 0000 0000 0000 0000 0000 0000 0000 0000
3290: 0000 0000 0000 0000 0000 0000 0000 0000
3298: 0000 0000 0000 0000 0000 0000 0000 0000
32a0: 0000 0000 0000 0000 0000 0000 0000 0000
32a8: 0000 0000 0000 0000 0000 0000 0000 0000
32b0: 0000 0000 0000 0000 0000 0000 0000 0000
32b8: 0000 0000 0000 0000 0000 0000 0000 0000
32c0: 0000 0000 0000 0000 0000 0000 0000 0000
32c8: 0000 0000 0000 0000 0000 0000 0000 0000
32d0: 0000 0000 0000 0000 0000 0000 0000 0000
32d8: 0000 0000 0000 0000 0000 0000 0000 0000
32e0: 0000 0000 0000 0000 0000 0000 0000 0000
32e8: 0000 0000 0000 0000 0000 0000 0000 0000
32f0: 0000 0000 0000 0000 0000 0000 0000 0000
32f8: 0000 0000 0000 0000 0000 0000 0000 0000
3300: 0000 0000 0000 0000 0000 0000 0000 0000
3308: 0000 0000 0000 0000 0000 0000 0000 0000
3310: 0000 0000 0000 0000 0000 0000 0000 0000
3318: 0000 0000 0000 0000 0000 0000 0000 0000
3320: 0000 0000 0000 0000 0000 0000 0000 0000
3328: 0000 0000 0000 0000 0000 0000 0000 0000
3330: 0000 0000 0000 0000 0000 0000 0000 0000
3338: 0000 0000 0000 0000 0000 0000 0000 0000
3340: 0000 0000 0000 0000 0000 0000 0000 0000
3348: 0000 0000 0000 0000 0000 0000 0000 0000
3350: 0000 0000 0000 0000 0000 0000 0000 0000
3358: 0000 0000 0000 0000 0000 0000 0000 0000
3360: 0000 0000 0000 0000 0000 0000 0000 0000
3368: 0000 0000 0000 0000 0000 0000 0000 0000
3370: 0000 0000 0000 0000 0000 0000 0000 0000
3378: 0000 0000 0000 0000 0000 0000 0000 0000
3380: 0000 0000 0000 0000 0000 0000 0000 0000
3388: 0000 0000 0000 0000 0000 0000 0000 0000
3390: 0000 0000 0000 0000 0000 0000 0000 0000
3398: 0000 0000 0000 0000 0000 0000 0000 0000
33a0: 0000 0000 0000 0000 0000 0000 0000 0000
33a8: 0000 0000 0000 0000 0000 0000 0000 0000
33b0: 0000 0000 0000 0000 0000 0000 0000 0000
33b8: 0000 0000 0000 0000 0000 0000 0000 0000
33c0: 0000 0000 0000 0000 0000 0000 0000 0000
33c8: 0000 0000 0000 0000 0000 0000 0000 0000
33d0: 0000 0000 0000 0000 0000 0000 0000 0000
33d8: 0000 0000 0000 0000 0000 0000 0000 0000
33e0: 0000 0000 0000 0000 0000 0000 0000 0000
33e8: 0000 0000 0000 0000 0000 0000 0000 0000
33f0: 0000 0000 0000 0000 0000 0000 0000 0000
33f8: 0000 0000 0000 0000 0000 0000 0000 0000
3400: 0000 0000 0000 0000 0000 0000 0000 0000
3408: 0000 0000 0000 0000 0000 0000 0000 0000
3410: 0000 0000 0000 0000 0000 0000 0000 0000
3418: 0000 0000 0000 0000 0000 0000 0000 0000
3420: 0000 0000 0000 0000 0000 0000 0000 0000
3428: 0000 0000 0000 0000 0000 0000 0000 0000
3430: 0000 0000 0000 0000 0000 0000 0000 0000
3438: 0000 0000 0000 0000 0000 0000 0000 0000
3440: 0000 0000 0000 0000 0000 0000 0000 0000
3448: 0000 0000 0000 0000 0000 0000 0000 0000
3450: 0000 0000 0000 0000 0000 0000 0000 0000
3458: 0000 0000 0000 0000 0000 0000 0000 0000
3460: 0000 0000 0000 0000 0000 0000 0000 0000
3468: 0000 0000 0000 0000 0000 0000 0000 0000
3470: 0000 0000 0000 0000 0000 0000 0000 0000
3478: 0000 0000 0000 0000 0000 0000 0000 0000
3480: 0000 0000 0000 0000 0000 0000 0000 0000
3488: 0000 0000 0000 0000 0000 0000 0000 0000
3490: 0000 0000 0000 0000 0000 0000 0000 0000
3498: 0000 0000 0000 0000 0000 0000 0000 0000
34a0: 0000 0000 0000 0000 0000 0000 0000 0000
34a8: 0000 0000 0000 0000 0000 0000 0000 0000
34b0: 0000 0000 0000 0000 0000 0000 0000 0000
34b8: 0000 0000 0000 0000 0000 0000 0000 0000
34c0: 0000 0000 0000 0000 0000 0000 0000 0000
34c8: 0000 0000 0000 0000 0000 0000 0000 0000
34d0: 0000 0000 0000 0000 0000 0000 0000 0000
34d8: 0000 0000 0000 0000 0000 0000 0000 0000
34e0: 0000 0000 0000 0000 0000 0000 0000 0000
34e8: 0000 0000 0000 0000 0000 0000 0000 0000
34f0: 0000 0000 0000 0000 0000 0000 0000 0000
34f8: 0000 0000 0000 0000 0000 0000 0000 0000
3500: 0000 0000 0000 0000 0000 0000 0000 0000
3508: 0000 0000 0000 0000 0000 0000 0000 0000
3510: 0000 0000 0000 0000 0000 0000 0000 0000
3518: 0000 0000 0000 0000 0000 0000 0000 0000
3520: 0000 0000 0000 0000 0000 0000 0000 0000
3528: 0000 0000 0000 0000 0000 0000 0000 0000
3530: 0000 0000 0000 0000 0000 0000 0000 0000
3538: 0000 0000 0000 0000 0000 0000 0000 0000
3540: 0000 0000 0000 0000 0000 0000 0000 0000
3548: 0000 0000 0000 0000 0000 0000 0000 0000
3550: 0000 0000 0000 0000 0000 0000 0000 0000
3558: 0000 0000 0000 0000 0000 0000 0000 0000
3560: 0000 0000 0000 0000 0000 0000 0000 0000
3568: 0000 0000 0000 0000 0000 0000 0000 0000
3570: 0000 0000 0000 0000 0000 0000 0000 0000
3578: 0000 0000 0000 0000 0000 0000 0000 0000
3580: 0000 0000 0000 0000 0000 0000 0000 0000
3588: 0000 0000 0000 0000 0000 0000 0000 0000
3590: 0000 0000 0000 0000 0000 0000 0000 0000
3598: 0000 0000 0000 0000 0000 0000 0000 0000
35a0: 0000 0000 0000 0000 0000 0000 0000 0000
35a8: 0000 0000 0000 0000 0000 0000 0000 0000
35b0: 0000 0000 0000 0000 0000 0000 0000 0000
35b8: 0000 0000 0000 0000 0000 0000 0000 0000
35c0: 0000 0000 0000 0000 0000 0000 0000 0000
35c8: 0000 0000 0000 0000 0000 0000 0000 0000
35d0: 0000 0000 0000 0000 0000 0000 0000 0000
35d8: 0000 0000 0000 0000 0000 0000 0000 0000
35e0: 0000 0000 0000 0000 0000 0000 0000 0000
35e8: 0000 0000 0000 0000 0000 0000 0000 0000
35f0: 0000 0000 0000 0000 0000 0000 0000 0000
35f8: 0000 0000 0000 0000 0000 0000 0000 0000
3600: 0000 0000 0000 0000 0000 0000 0000 0000
3608: 0000 0000 0000 0000 0000 0000 0000 0000
3610: 0000 0000 0000 0000 0000 0000 0000 0000
3618: 0000 0000 0000 0000 0000 0000 0000 0000
3620: 0000 0000 0000 0000 0000 0000 0000 0000
3628: 0000 0000 0000 0000 0000 0000 0000 0000
3630: 0000 0000 0000 0000 0000 0000 0000 0000
3638: 0000 0000 0000 0000 0000 0000 0000 0000
3640: 0000 0000 0000 0000 0000 0000 0000 0000
3648: 0000 0000 0000 0000 0000 0000 0000 0000
3650: 0000 0000 0000 0000 0000 0000 0000 0000
3658: 0000 0000 0000 0000 0000 0000 0000 0000
3660: 0000 0000 0000 0000 0000 0000 0000 0000
3668: 0000 0000 0000 0000 0000 0000 0000 0000
3670: 0000 0000 0000 0000 0000 0000 0000 0000
3678: 0000 0000 0000 0000 0000 0000 0000 0000
3680: 0000 0000 0000 0000 0000 0000 0000 0000
3688: 0000 0000 0000 0000 0000 0000 0000 0000
3690: 0000 0000 0000 0000 0000 0000 0000 0000
3698: 0000 0000 0000 0000 0000 0000 0000 0000
36a0: 0000 0000 0000 0000 0000 0000 0000 0000
36a8: 0000 0000 0000 0000 0000 0000 0000 0000
36b0: 0000 0000 0000 0000 0000 0000 0000 0000
36b8: 0000 0000 0000 0000 0000 0000 0000 0000
36c0: 0000 0000 0000 0000 0000 0000 0000 0000
36c8: 0000 0000 0000 0000 0000 0000 0000 0000
36d0: 0000 0000 0000 0000 0000 0000 0000 0000
36d8: 0000 0000 0000 0000 0000 0000 0000 0000
36e0: 0000 0000 0000 0000 0000 0000 0000 0000
36e8: 0000 0000 0000 0000 0000 0000 0000 0000
36f0: 0000 0000 0000 0000 0000 0000 0000 0000
36f8: 0000 0000 0000 0000 0000 0000 0000 0000
3700: 0000 0000 0000 0000 0000 0000 0000 0000
3708: 0000 0000 0000 0000 0000 0000 0000 0000
3710: 0000 0000 0000 0000 0000 0000 0000 0000
3718: 0000 0000 0000 0000 0000 0000 0000 0000
3720: 0000 0000 0000 0000 0000 0000 0000 0000
3728: 0000 0000 0000 0000 0000 0000 0000 0000
3730: 0000 0000 0000 0000 0000 0000 0000 0000
3738: 0000 0000 0000 0000 0000 0000 0000 0000
3740: 0000 0000 0000 0000 0000 0000 0000 0000
3748: 0000 0000 0000 0000 0000 0000 0000 0000
3750: 0000 0000 0000 0000 0000 0000 0000 0000
3758: 0000 0000 0000 0000 0000 0000 0000 0000
3760: 0000 0000 0000 0000 0000 0000 0000 0000
3768: 0000 0000 0000 0000 0000 0000 0000 0000
3770: 0000 0000 0000 0000 0000 0000 0000 0000
3778: 0000 0000 0000 0000 0000 0000 0000 0000
3780: 0000 0000 0000 0000 0000 0000 0000 0000
3788: 0000 0000 0000 0000 0000 0000 0000 0000
3790: 0000 0000 0000 0000 0000 0000 0000 0000
3798: 0000 0000 0000 0000 0000 0000 0000 0000
37a0: 0000 0000 0000 0000 0000 0000 0000 0000
37a8: 0000 0000 0000 0000 0000 0000 0000 0000
37b0: 0000 0000 0000 0000 0000 0000 0000 0000
37b8: 0000 0000 0000 0000 0000 0000 0000 0000
37c0: 0000 0000 0000 0000 0000 0000 0000 0000
37c8: 0000 0000 0000 0000 0000 0000 0000 0000
37d0: 0000 0000 0000 0000 0000 0000 0000 0000
37d8: 0000 0000 0000 0000 0000 0000 0000 0000
37e0: 0000 0000 0000 0000 0000 0000 0000 0000
37e8: 0000 0000 0000 0000 0000 0000 0000 0000
37f0: 0000 0000 0000 0000 0000 0000 0000 0000
37f8: 0000 0000 0000 0000 0000 0000 0000 0000
3800: 0000 0000 0000 0000 0000 0000 0000 0000
3808: 0000 0000 0000 0000 0000 0000 0000 0000
3810: 0000 0000 0000 0000 0000 0000 0000 0000
3818: 0000 0000 0000 0000 0000 0000 0000 0000
3820: 0000 0000 0000 0000 0000 0000 0000 0000
3828: 0000 0000 0000 0000 0000 0000 0000 0000
3830: 0000 0000 0000 0000 0000 0000 0000 0000
3838: 0000 0000 0000 0000 0000 0000 0000 0000
3840: 0000 0000 0000 0000 0000 0000 0000 0000
3848: 0000 0000 0000 0000 0000 0000 0000 0000
3850: 0000 0000 0000 0000 0000 0000 0000 0000
3858: 0000 0000 0000 0000 0000 0000 0000 0000
3860: 0000 0000 0000 0000 0000 0000 0000 0000
3868: 0000 0000 0000 0000 0000 0000 0000 0000
3870: 0000 0000 0000 0000 0000 0000 0000 0000
3878: 0000 0000 0000 0000 0000 0000 0000 0000
3880: 0000 0000 0000 0000 0000 0000 0000 0000
3888: 0000 0000 0000 0000 0000 0000 0000 0000
3890: 0000 0000 0000 0000 0000 0000 0000 0000
3898: 0000 0000 0000 0000 0000 0000 0000 0000
38a0: 0000 0000 0000 0000 0000 0000 0000 0000
38a8: 0000 0000 0000 0000 0000 0000 0000 0000
38b0: 0000 0000 0000 0000 0000 0000 0000 0000
38b8: 0000 0000 0000 0000 0000 0000 0000 0000
38c0: 0000 0000 0000 0000 0000 0000 0000 0000
38c8: 0000 0000 0000 0000 0000 0000 0000 0000
38d0: 0000 0000 0000 0000 0000 0000 0000 0000
38d8: 0000 0000 0000 0000 0000 0000 0000 0000
38e0: 0000 0000 0000 0000 0000 0000 0000 0000
38e8: 0000 0000 0000 0000 0000 0000 0000 0000
38f0: 0000 0000 0000 0000 0000 0000 0000 0000
38f8: 0000 0000 0000 0000 0000 0000 0000 0000
3900: 0000 0000 0000 0000 0000 0000 0000 0000
3908: 0000 0000 0000 0000 0000 0000 0000 0000
3910: 0000 0000 0000 0000 0000 0000 0000 0000
3918: 0000 0000 0000 0000 0000 0000 0000 0000
3920: 0000 0000 0000 0000 0000 0000 0000 0000
3928: 0000 0000 0000 0000 0000 0000 0000 0000
3930: 0000 0000 0000 0000 0000 0000 0000 0000
3938: 0000 0000 0000 0000 0000 0000 0000 0000
3940: 0000 0000 0000 0000 0000 0000 0000 0000
3948: 0000 0000 0000 0000 0000 0000 0000 0000
3950: 0000 0000 0000 0000 0000 0000 0000 0000
3958: 0000 0000 0000 0000 0000 0000 0000 0000
3960: 0000 0000 0000 0000 0000 0000 0000 0000
3968: 0000 0000 0000 0000 0000 0000 0000 0000
3970: 0000 0000 0000 0000 0000 0000 0000 0000
3978: 0000 0000 0000 0000 0000 0000 0000 0000
3980: 0000 0000 0000 0000 0000 0000 0000 0000
3988: 0000 0000 0000 0000 0000 0000 0000 0000
3990: 0000 0000 0000 0000 0000 0000 0000 0000
3998: 0000 0000 0000 0000 0000 0000 0000 0000
39a0: 0000 0000 0000 0000 0000 0000 0000 0000
39a8: 0000 0000 0000 0000 0000 0000 0000 0000
39b0: 0000 0000 0000 0000 0000 0000 0000 0000
39b8: 0000 0000 0000 0000 0000 0000 0000 0000
39c0: 0000 0000 0000 0000 0000 0000 0000 0000
39c8: 0000 0000 0000 0000 0000 0000 0000 0000
39d0: 0000 0000 0000 0000 0000 0000 0000 0000
39d8: 0000 0000 0000 0000 0000 0000 0000 0000
39e0: 0000 0000 0000 0000 0000 0000 0000 0000
39e8: 0000 0000 0000 0000 0000 0000 0000 0000
39f0: 0000 0000 0000 0000 0000 0000 0000 0000
39f8: 0000 0000 0000 0000 0000 0000 0000 0000
3a00: 0000 0000 0000 0000 0000 0000 0000 0000
3a08: 0000 0000 0000 0000 0000 0000 0000 0000
3a10: 0000 0000 0000 0000 0000 0000 0000 0000
3a18: 0000 0000 0000 0000 0000 0000 0000 0000
3a20: 0000 0000 0000 0000 0000 0000 0000 0000
3a28: 0000 0000 0000 0000 0000 0000 0000 0000
3a30: 0000 0000 0000 0000 0000 0000 0000 0000
3a38: 0000 0000 0000 0000 0000 0000 0000 0000
3a40: 0000 0000 0000 0000 0000 0000 0000 0000
3a48: 0000 0000 0000 0000 0000 0000 0000 0000
3a50: 0000 0000 0000 0000 0000 0000 0000 0000
3a58: 0000 0000 0000 0000 0000 0000 0000 0000
3a60: 0000 0000 0000 0000 0000 0000 0000 0000
3a68: 0000 0000 0000 0000 0000 0000 0000 0000
3a70: 0000 0000 0000 0000 0000 0000 0000 0000
3a78: 0000 0000 0000 0000 0000 0000 0000 0000
3a80: 0000 0000 0000 0000 0000 0000 0000 0000
3a88: 0000 0000 0000 0000 0000 0000 0000 0000
3a90: 0000 0000 0000 0000 0000 0000 0000 0000
3a98: 0000 0000 0000 0000 0000 0000 0000 0000
3aa0: 0000 0000 0000 0000 0000 0000 0000 0000
3aa8: 0000 0000 0000 0000 0000 0000 0000 0000
3ab0: 0000 0000 0000 0000 0000 0000 0000 0000
3ab8: 0000 0000 0000 0000 0000 0000 0000 0000
3ac0: 0000 0000 0000 0000 0000 0000 0000 0000
3ac8: 0000 0000 0000 0000 0000 0000 0000 0000
3ad0: 0000 0000 0000 0000 0000 0000 0000 0000
3ad8: 0000 0000 0000 0000 0000 0000 0000 0000
3ae0: 0000 0000 0000 0000 0000 0000 0000 0000
3ae8: 0000 0000 0000 0000 0000 0000 0000 0000
3af0: 0000 0000 0000 0000 0000 0000 0000 0000
3af8: 0000 0000 0000 0000 0000 0000 0000 0000
3b00: 0000 0000 0000 0000 0000 0000 0000 0000
3b08: 0000 0000 0000 0000 0000 0000 0000 0000
3b10: 0000 0000 0000 0000 0000 0000 0000 0000
3b18: 0000 0000 0000 0000 0000 0000 0000 0000
3b20: 0000 0000 0000 0000 0000 0000 0000 0000
3b28: 0000 0000 0000 0000 0000 0000 0000 0000
3b30: 0000 0000 0000 0000 0000 0000 0000 0000
3b38: 0000 0000 0000 0000 0000 0000 0000 0000
3b40: 0000 0000 0000 0000 0000 0000 0000 0000
3b48: 0000 0000 0000 0000 0000 0000 0000 0000
3b50: 0000 0000 0000 0000 0000 0000 0000 0000
3b58: 0000 0000 0000 0000 0000 0000 0000 0000
3b60: 0000 0000 0000 0000 0000 0000 0000 0000
3b68: 0000 0000 0000 0000 0000 0000 0000 0000
3b70: 0000 0000 0000 0000 0000 0000 0000 0000
3b78: 0000 0000 0000 0000 0000 0000 0000 0000
3b80: 0000 0000 0000 0000 0000 0000 0000 0000
3b88: 0000 0000 0000 0000 0000 0000 0000 0000
3b90: 0000 0000 0000 0000 0000 0000 0000 0000
3b98: 0000 0000 0000 0000 0000 0000 0000 0000
3ba0: 0000 0000 0000 0000 0000 0000 0000 0000
3ba8: 0000 0000 0000 0000 0000 0000 0000 0000
3bb0: 0000 0000 0000 0000 0000 0000 0000 0000
3bb8: 0000 0000 0000 0000 0000 0000 0000 0000
3bc0: 0000 0000 0000 0000 0000 0000 0000 0000
3bc8: 0000 0000 0000 0000 0000 0000 0000 0000
3bd0: 0000 0000 0000 0000 0000 0000 0000 0000
3bd8: 0000 0000 0000 0000 0000 0000 0000 0000
3be0: 0000 0000 0000 0000 0000 0000 0000 0000
3be8: 0000 0000 0000 0000 0000 0000 0000 0000
3bf0: 0000 0000 0000 0000 0000 0000 0000 0000
3bf8: 0000 0000 0000 0000 0000 0000 0000 0000
3c00: 0000 0000 0000 0000 0000 0000 0000 0000
3c08: 0000 0000 0000 0000 0000 0000 0000 0000
3c10: 0000 0000 0000 0000 0000 0000 0000 0000
3c18: 0000 0000 0000 0000 0000 0000 0000 0000
3c20: 0000 0000 0000 0000 0000 0000 0000 0000
3c28: 0000 0000 0000 0000 0000 0000 0000 0000
3c30: 0000 0000 0000 0000 0000 0000 0000 0000
3c38: 0000 0000 0000 0000 0000 0000 0000 0000
3c40: 0000 0000 0000 0000 0000 0000 0000 0000
3c48: 0000 0000 0000 0000 0000 0000 0000 0000
3c50: 0000 0000 0000 0000 0000 0000 0000 0000
3c58: 0000 0000 0000 0000 0000 0000 0000 0000
3c60: 0000 0000 0000 0000 0000 0000 0000 0000
3c68: 0000 0000 0000 0000 0000 0000 0000 0000
3c70: 0000 0000 0000 0000 0000 0000 0000 0000
3c78: 0000 0000 0000 0000 0000 0000 0000 0000
3c80: 0000 0000 0000 0000 0000 0000 0000 0000
3c88: 0000 0000 0000 0000 0000 0000 0000 0000
3c90: 0000 0000 0000 0000 0000 0000 0000 0000
3c98: 0000 0000 0000 0000 0000 0000 0000 0000
3ca0: 0000 0000 0000 0000 0000 0000 0000 0000
3ca8: 0000 0000 0000 0000 0000 0000 0000 0000
3cb0: 0000 0000 0000 0000 0000 0000 0000 0000
3cb8: 0000 0000 0000 0000 0000 0000 0000 0000
3cc0: 0000 0000 0000 0000 0000 0000 0000 0000
3cc8: 0000 0000 0000 0000 0000 0000 0000 0000
3cd0: 0000 0000 0000 0000 0000 0000 0000 0000
3cd8: 0000 0000 0000 0000 0000 0000 0000 0000
3ce0: 0000 0000 0000 0000 0000 0000 0000 0000
3ce8: 0000 0000 0000 0000 0000 0000 0000 0000
3cf0: 0000 0000 0000 0000 0000 0000 0000 0000
3cf8: 0000 0000 0000 0000 0000 0000 0000 0000
3d00: 0000 0000 0000 0000 0000 0000 0000 0000
3d08: 0000 0000 0000 0000 0000 0000 0000 0000
3d10: 0000 0000 0000 0000 0000 0000 0000 0000
3d18: 0000 0000 0000 0000 0000 0000 0000 0000
3d20: 0000 0000 0000 0000 0000 0000 0000 0000
3d28: 0000 0000 0000 0000 0000 0000 0000 0000
3d30: 0000 0000 0000 0000 0000 0000 0000 0000
3d38: 0000 0000 0000 0000 0000 0000 0000 0000
3d40: 0000 0000 0000 0000 0000 0000 0000 0000
3d48: 0000 0000 0000 0000 0000 0000 0000 0000
3d50: 0000 0000 0000 0000 0000 0000 0000 0000
3d58: 0000 0000 0000 0000 0000 0000 0000 0000
3d60: 0000 0000 0000 0000 0000 0000 0000 0000
3d68: 0000 0000 0000 0000 0000 0000 0000 0000
3d70: 0000 0000 0000 0000 0000 0000 0000 0000
3d78: 0000 0000 0000 0000 0000 0000 0000 0000
3d80: 0000 0000 0000 0000 0000 0000 0000 0000
3d88: 0000 0000 0000 0000 0000 0000 0000 0000
3d90: 0000 0000 0000 0000 0000 0000 0000 0000
3d98: 0000 0000 0000 0000 0000 0000 0000 0000
3da0: 0000 0000 0000 0000 0000 0000 0000 0000
3da8: 0000 0000 0000 0000 0000 0000 0000 0000
3db0: 0000 0000 0000 0000 0000 0000 0000 0000
3db8: 0000 0000 0000 0000 0000 0000 0000 0000
3dc0: 0000 0000 0000 0000 0000 0000 0000 0000
3dc8: 0000 0000 0000 0000 0000 0000 0000 0000
3dd0: 0000 0000 0000 0000 0000 0000 0000 0000
3dd8: 0000 0000 0000 0000 0000 0000 0000 0000
3de0: 0000 0000 0000 0000 0000 0000 0000 0000
3de8: 0000 0000 0000 0000 0000 0000 0000 0000
3df0: 0000 0000 0000 0000 0000 0000 0000 0000
3df8: 0000 0000 0000 0000 0000 0000 0000 0000
3e00: 0000 0000 0000 0000 0000 0000 0000 0000
3e08: 0000 0000 0000 0000 0000 0000 0000 0000
3e10: 0000 0000 0000 0000 0000 0000 0000 0000
3e18: 0000 0000 0000 0000 0000 0000 0000 0000
3e20: 0000 0000 0000 0000 0000 0000 0000 0000
3e28: 0000 0000 0000 0000 0000 0000 0000 0000
3e30: 0000 0000 0000 0000 0000 0000 0000 0000
3e38: 0000 0000 0000 0000 0000 0000 0000 0000
3e40: 0000 0000 0000 0000 0000 0000 0000 0000
3e48: 0000 0000 0000 0000 0000 0000 0000 0000
3e50: 0000 0000 0000 0000 0000 0000 0000 0000
3e58: 0000 0000 0000 0000 0000 0000 0000 0000
3e60: 0000 0000 0000 0000 0000 0000 0000 0000
3e68: 0000 0000 0000 0000 0000 0000 0000 0000
3e70: 0000 0000 0000 0000 0000 0000 0000 0000
3e78: 0000 0000 0000 0000 0000 0000 0000 0000
3e80: 0000 0000 0000 0000 0000 0000 0000 0000
3e88: 0000 0000 0000 0000 0000 0000 0000 0000
3e90: 0000 0000 0000 0000 0000 0000 0000 0000
3e98: 0000 0000 0000 0000 0000 0000 0000 0000
3ea0: 0000 0000 0000 0000 0000 0000 0000 0000
3ea8: 0000 0000 0000 0000 0000 0000 0000 0000
3eb0: 0000 0000 0000 0000 0000 0000 0000 0000
3eb8: 0000 0000 0000 0000 0000 0000 0000 0000
3ec0: 0000 0000 0000 0000 0000 0000 0000 0000
3ec8: 0000 0000 0000 0000 0000 0000 0000 0000
3ed0: 0000 0000 0000 0000 0000 0000 0000 0000
3ed8: 0000 0000 0000 0000 0000 0000 0000 0000
3ee0: 0000 0000 0000 0000 0000 0000 0000 0000
3ee8: 0000 0000 0000 0000 0000 0000 0000 0000
3ef0: 0000 0000 0000 0000 0000 0000 0000 0000
3ef8: 0000 0000 0000 0000 0000 0000 0000 0000
3f00: 0000 0000 0000 0000 0000 0000 0000 0000
3f08: 0000 0000 0000 0000 0000 0000 0000 0000
3f10: 0000 0000 0000 0000 0000 0000 0000 0000
3f18: 0000 0000 0000 0000 0000 0000 0000 0000
3f20: 0000 0000 0000 0000 0000 0000 0000 0000
3f28: 0000 0000 0000 0000 0000 0000 0000 0000
3f30: 0000 0000 0000 0000 0000 0000 0000 0000
3f38: 0000 0000 0000 0000 0000 0000 0000 0000
3f40: 0000 0000 0000 0000 0000 0000 0000 0000
3f48: 0000 0000 0000 0000 0000 0000 0000 0000
3f50: 0000 0000 0000 0000 0000 0000 0000 0000
3f58: 0000 0000 0000 0000 0000 0000 0000 0000
3f60: 0000 0000 0000 0000 0000 0000 0000 0000
3f68: 0000 0000 0000 0000 0000 0000 0000 0000
3f70: 0000 0000 0000 0000 0000 0000 0000 0000
3f78: 0000 0000 0000 0000 0000 0000 0000 0000
3f80: 0000 0000 0000 0000 0000 0000 0000 0000
3f88: 0000 0000 0000 0000 0000 0000 0000 0000
3f90: 0000 0000 0000 0000 0000 0000 0000 0000
3f98: 0000 0000 0000 0000 0000 0000 0000 0000
3fa0: 0000 0000 0000 0000 0000 0000 0000 0000
3fa8: 0000 0000 0000 0000 0000 0000 0000 0000
3fb0: 0000 0000 0000 0000 0000 0000 0000 0000
3fb8: 0000 0000 0000 0000 0000 0000 0000 0000
3fc0: 0000 0000 0000 0000 0000 0000 0000 0000
3fc8: 0000 0000 0000 0000 0000 0000 0000 0000
3fd0: 0000 0000 0000 0000 0000 0000 0000 0000
3fd8: 0000 0000 0000 0000 0000 0000 0000 0000
3fe0: 0000 0000 0000 0000 0000 0000 0000 0000
3fe8: 0000 0000 0000 0000 0000 0000 0000 0000
3ff0: 0000 0000 0000 0000 0000 0000 0000 0000
3ff8: 0000 0000 0000 0000 0000 0000 0000 0000
-------------- next part --------------
| Version: 2, Template: 4, MAC: 20:68:9d:c5:76:8d |
| RegDomain: 0x6a 0x1f TxRxMask: 0x11 OpFlags: 0x02 OpMisc: 0x00 |
| RfSilent: 0x2d BtOptions: 0x00 DeviceCap: 0x00 DeviceType: 0x05 |
| pwrTableOffset: 0 dB, feature_enable: 0x5d MiscConfig: 0x22 |
| EepromWriteGpio: 16, WlanDisableGpio: 0, WlanLedGpio: 8 RxBandSelectGpio: 255 |
| TxRxGain: 17, SwReg: 303972982 |
2GHz modal:
| AntCtrl: 0x00400550 AntCtrl2: 0x00022222 |
| Ch 0: AntCtrl: 0x00000150 Atten1: 0, atten1_margin: 0, NfThresh: -1 |
| Ch 1: AntCtrl: 0x00000150 Atten1: 0, atten1_margin: 0, NfThresh: 0 |
| Ch 2: AntCtrl: 0x00000010 Atten1: 0, atten1_margin: 0, NfThresh: 0 |
| Spur: (0: 100) (1: 164) (2: 140) (3: 180) (4: 0) |
| TempSlope: 25, VoltSlope: 0, QuickDrop: 0, XpaBiasLvl 0 |
| txFrameToDataStart: 14, TxFrameToPaOn: 14, TxEndToXpaOff: 0, TxEndToRxOn: 2, TxFrameToXpaOn: 14 |
| txClip: 3, AntGain: 0, SwitchSettling: 44, adcDesiredSize: -30 |
| Thresh62: 28, PaprdMaskHt20: 0x0800ffff, PaPrdMaskHt40: 0x0800ffff |
| SwitchComSpdt: 353, XlnaBiasStrength: 0, RfGainCap: 0, TxGainCap: 0
5GHz modal:
| AntCtrl: 0x00400550 AntCtrl2: 0x00022222 |
| Ch 0: AntCtrl: 0x00000150 Atten1: 0, atten1_margin: 0, NfThresh: -1 |
| Ch 1: AntCtrl: 0x00000150 Atten1: 0, atten1_margin: 0, NfThresh: 0 |
| Ch 2: AntCtrl: 0x00000010 Atten1: 0, atten1_margin: 0, NfThresh: 0 |
| Spur: (0: 80) (1: 144) (2: 160) (3: 176) (4: 200) |
| TempSlope: 55, VoltSlope: 0, QuickDrop: 0, XpaBiasLvl 0 |
| txFrameToDataStart: 14, TxFrameToPaOn: 14, TxEndToXpaOff: 0, TxEndToRxOn: 2, TxFrameToXpaOn: 14 |
| txClip: 3, AntGain: 0, SwitchSettling: 45, adcDesiredSize: -30 |
| Thresh62: 28, PaprdMaskHt20: 0x0cf0e0e0, PaPrdMaskHt40: 0x6cf0e0e0 |
| SwitchComSpdt: 393, XlnaBiasStrength: 0, RfGainCap: 0, TxGainCap: 0
More information about the freebsd-wireless
mailing list