* Something seems to be wrong with my RSDP
@ 2005-05-07 12:28 Heiko Gerstung
2005-05-08 22:59 ` Dean Townsley
0 siblings, 1 reply; 6+ messages in thread
From: Heiko Gerstung @ 2005-05-07 12:28 UTC (permalink / raw)
To: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
Hi!
I went through the process of cleaning up my DSDT with iasl and fixed it
for my Acer C100, it went from 47 errors/0 warnings to 0 errors/0
warnings, but even compiling this into my kernel did not enable ACPI on
my machine.
I hacked the kernel (drivers/acpi/tables.c) and removed the checksum
test for my RSDP, now it fails with the error message
"ACPI: No System Description Table (RSDT/XSDT) specified in RSDP"
Which brings me to the point where I think that the reading of my RSDP
completely fails (therefore the checksum test fails and no DSDT can be
found somehow).
Is there any ACPI guru alive who could give me a hint why getting the
RSDP cannot be read and what I could check/alter to fix this? Remember:
The Knoppix kernel works fine, and I am currently trying to get an exact
copy of the source tree for that kernel in order to find out what's the
difference...
If I get my kernel up and running with ACPI I will check whether my DSDT
runs fine and contribute it to your database, as there is currently no
fixed DSDT available for my Acer Travelmate C100 ...
Kind regards,
Heiko
-------------------------------------------------------
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Something seems to be wrong with my RSDP
2005-05-07 12:28 Something seems to be wrong with my RSDP Heiko Gerstung
@ 2005-05-08 22:59 ` Dean Townsley
[not found] ` <E1DUujy-0003sP-Om-hC4i9AumtbtiuyyxrZMbN/7wmygKZyH0@public.gmane.org>
0 siblings, 1 reply; 6+ messages in thread
From: Dean Townsley @ 2005-05-08 22:59 UTC (permalink / raw)
To: Heiko Gerstung; +Cc: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
Hi Heiko,
I'm glad you've worked on this. I've never had a chance to fix up the
dsdt table. I was able to get the kernel to ignore the RSDP checksum
error with patch below.
I did this because the 2.4.20 + some old acpi patch that has been
working for years on the c100 always had this "Invalid checksum"
error, but worked anyway. Comparing the code, the old patch didn't
disable acpi if the RSDP table failed to parse properly, it just
skipped some stuff and went on. I don't know if this is right (or a
really bad idea for that matter) but at least it gets it to load and
use the DSDT.
Could you send me the DSDT you've fixed so I could try it out too :)
Thanks,
-Dean
diff -ur linux-2.6.11-orig/arch/i386/kernel/acpi/boot.c linux-2.6.11/arch/i386/kernel/acpi/boot.c
--- linux-2.6.11-orig/arch/i386/kernel/acpi/boot.c Wed Mar 2 01:38:25 2005
+++ linux-2.6.11/arch/i386/kernel/acpi/boot.c Sun May 8 17:01:44 2005
@@ -849,7 +849,7 @@
*/
error = acpi_table_init();
if (error) {
- disable_acpi();
+ /* disable_acpi(); */
return error;
}
diff -ur linux-2.6.11-orig/arch/i386/kernel/setup.c linux-2.6.11/arch/i386/kernel/setup.c
--- linux-2.6.11-orig/arch/i386/kernel/setup.c Wed Mar 2 01:38:08 2005
+++ linux-2.6.11/arch/i386/kernel/setup.c Sun May 8 17:04:32 2005
@@ -1461,8 +1461,8 @@
/*
* Parse the ACPI tables for possible boot-time SMP configuration.
*/
- acpi_boot_table_init();
- acpi_boot_init();
+ if (acpi_boot_table_init()==0)
+ acpi_boot_init();
#ifdef CONFIG_X86_LOCAL_APIC
if (smp_found_config)
-------------------------------------------------------
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Something seems to be wrong with my RSDP
[not found] ` <E1DUujy-0003sP-Om-hC4i9AumtbtiuyyxrZMbN/7wmygKZyH0@public.gmane.org>
@ 2005-05-09 11:34 ` Heiko Gerstung
[not found] ` <427F4AC7.4090109-Zwoj8m1Se4ooLuGpnUaJU7NAH6kLmebB@public.gmane.org>
0 siblings, 1 reply; 6+ messages in thread
From: Heiko Gerstung @ 2005-05-09 11:34 UTC (permalink / raw)
To: Dean Townsley; +Cc: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
[-- Attachment #1: Type: text/plain, Size: 2648 bytes --]
Dean,
you made my day. It works, great job!
But even with using my fixed DSDT I get this checksum error ...
Please find the DSDT file attached.
Thank you very much.... I'll go on and notify all the people I involved
in this bughunt during the last weeks/days :-)
I'd propose to use a kernel boot parameter like acpi_ignore_chksum=yes
which prevents the kernel from disabling ACPI due to a checksum error...
Do you know who I need to contact in order to ask for this?
Kind regards,
Heiko
Dean Townsley wrote:
>Hi Heiko,
>
>I'm glad you've worked on this. I've never had a chance to fix up the
>dsdt table. I was able to get the kernel to ignore the RSDP checksum
>error with patch below.
>
>I did this because the 2.4.20 + some old acpi patch that has been
>working for years on the c100 always had this "Invalid checksum"
>error, but worked anyway. Comparing the code, the old patch didn't
>disable acpi if the RSDP table failed to parse properly, it just
>skipped some stuff and went on. I don't know if this is right (or a
>really bad idea for that matter) but at least it gets it to load and
>use the DSDT.
>
>Could you send me the DSDT you've fixed so I could try it out too :)
>
>Thanks,
>-Dean
>
>
>diff -ur linux-2.6.11-orig/arch/i386/kernel/acpi/boot.c linux-2.6.11/arch/i386/kernel/acpi/boot.c
>--- linux-2.6.11-orig/arch/i386/kernel/acpi/boot.c Wed Mar 2 01:38:25 2005
>+++ linux-2.6.11/arch/i386/kernel/acpi/boot.c Sun May 8 17:01:44 2005
>@@ -849,7 +849,7 @@
> */
> error = acpi_table_init();
> if (error) {
>- disable_acpi();
>+ /* disable_acpi(); */
> return error;
> }
>
>diff -ur linux-2.6.11-orig/arch/i386/kernel/setup.c linux-2.6.11/arch/i386/kernel/setup.c
>--- linux-2.6.11-orig/arch/i386/kernel/setup.c Wed Mar 2 01:38:08 2005
>+++ linux-2.6.11/arch/i386/kernel/setup.c Sun May 8 17:04:32 2005
>@@ -1461,8 +1461,8 @@
> /*
> * Parse the ACPI tables for possible boot-time SMP configuration.
> */
>- acpi_boot_table_init();
>- acpi_boot_init();
>+ if (acpi_boot_table_init()==0)
>+ acpi_boot_init();
>
> #ifdef CONFIG_X86_LOCAL_APIC
> if (smp_found_config)
>
>
>-------------------------------------------------------
>This SF.Net email is sponsored by: NEC IT Guy Games.
>Get your fingers limbered up and give it your best shot. 4 great events, 4
>opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
>win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
>_______________________________________________
>Acpi-devel mailing list
>Acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
>https://lists.sourceforge.net/lists/listinfo/acpi-devel
>
>
>
[-- Attachment #2: dsdt_acer.h --]
[-- Type: text/x-chdr, Size: 131544 bytes --]
/*
*
* Intel ACPI Component Architecture
* ASL Optimizing Compiler / AML Disassembler version 20050309 [Apr 30 2005]
* Copyright (C) 2000 - 2005 Intel Corporation
* Supports ACPI Specification Revision 3.0
*
* Compilation of "dsdt.dsl" - Fri May 6 21:33:50 2005
*
* C source code output
*
*/
unsigned char AmlCode[] =
{
0x44,0x53,0x44,0x54,0xAD,0x36,0x00,0x00, /* 00000000 "DSDT.6.." */
0x01,0x5C,0x41,0x63,0x65,0x72,0x00,0x00, /* 00000008 ".\Acer.." */
0x41,0x4E,0x31,0x30,0x30,0x20,0x00,0x00, /* 00000010 "AN100 .." */
0x00,0x10,0x00,0x00,0x49,0x4E,0x54,0x4C, /* 00000018 "....INTL" */
0x09,0x03,0x05,0x20,0x10,0x4E,0x12,0x5C, /* 00000020 "... .N.\" */
0x00,0x08,0x4C,0x49,0x44,0x53,0x01,0x08, /* 00000028 "..LIDS.." */
0x4C,0x49,0x44,0x46,0x00,0x08,0x4C,0x49, /* 00000030 "LIDF..LI" */
0x44,0x58,0x00,0x08,0x44,0x41,0x54,0x34, /* 00000038 "DX..DAT4" */
0x00,0x08,0x50,0x43,0x52,0x44,0x00,0x08, /* 00000040 "..PCRD.." */
0x55,0x53,0x42,0x44,0x00,0x08,0x56,0x47, /* 00000048 "USBD..VG" */
0x41,0x53,0x00,0x08,0x43,0x52,0x54,0x53, /* 00000050 "AS..CRTS" */
0x00,0x08,0x4C,0x43,0x44,0x53,0x00,0x08, /* 00000058 "..LCDS.." */
0x42,0x52,0x54,0x53,0x00,0x08,0x4F,0x53, /* 00000060 "BRTS..OS" */
0x49,0x54,0x00,0x5B,0x80,0x50,0x4D,0x30, /* 00000068 "IT.[.PM0" */
0x30,0x01,0x0B,0x30,0xF0,0x0A,0x04,0x5B, /* 00000070 "0..0...[" */
0x81,0x1A,0x50,0x4D,0x30,0x30,0x01,0x50, /* 00000078 "..PM00.P" */
0x4D,0x33,0x30,0x08,0x50,0x4D,0x33,0x31, /* 00000080 "M30.PM31" */
0x08,0x50,0x4D,0x33,0x32,0x08,0x50,0x4D, /* 00000088 ".PM32.PM" */
0x33,0x33,0x08,0x5B,0x80,0x50,0x4D,0x30, /* 00000090 "33.[.PM0" */
0x31,0x01,0x0B,0x0D,0xF0,0x01,0x5B,0x81, /* 00000098 "1.....[." */
0x0B,0x50,0x4D,0x30,0x31,0x01,0x50,0x4D, /* 000000A0 ".PM01.PM" */
0x30,0x44,0x08,0x5B,0x80,0x50,0x4D,0x30, /* 000000A8 "0D.[.PM0" */
0x32,0x01,0x0B,0x24,0xF0,0x01,0x5B,0x81, /* 000000B0 "2..$..[." */
0x0B,0x50,0x4D,0x30,0x32,0x01,0x50,0x4D, /* 000000B8 ".PM02.PM" */
0x32,0x34,0x08,0x5B,0x80,0x4D,0x45,0x4D, /* 000000C0 "24.[.MEM" */
0x31,0x00,0x0B,0xF0,0x04,0x01,0x5B,0x81, /* 000000C8 "1.....[." */
0x0B,0x4D,0x45,0x4D,0x31,0x01,0x44,0x41, /* 000000D0 ".MEM1.DA" */
0x54,0x30,0x08,0x5B,0x80,0x4D,0x45,0x4D, /* 000000D8 "T0.[.MEM" */
0x32,0x00,0x0B,0xF1,0x04,0x01,0x5B,0x81, /* 000000E0 "2.....[." */
0x0B,0x4D,0x45,0x4D,0x32,0x01,0x44,0x41, /* 000000E8 ".MEM2.DA" */
0x54,0x31,0x08,0x5B,0x80,0x4D,0x45,0x4D, /* 000000F0 "T1.[.MEM" */
0x33,0x00,0x0B,0xF2,0x04,0x01,0x5B,0x81, /* 000000F8 "3.....[." */
0x0B,0x4D,0x45,0x4D,0x33,0x01,0x44,0x41, /* 00000100 ".MEM3.DA" */
0x54,0x32,0x08,0x5B,0x80,0x4D,0x45,0x4D, /* 00000108 "T2.[.MEM" */
0x34,0x00,0x0B,0xF3,0x04,0x01,0x5B,0x81, /* 00000110 "4.....[." */
0x0B,0x4D,0x45,0x4D,0x34,0x01,0x44,0x41, /* 00000118 ".MEM4.DA" */
0x54,0x33,0x08,0x5B,0x80,0x4D,0x45,0x4D, /* 00000120 "T3.[.MEM" */
0x35,0x00,0x0B,0xF4,0x04,0x01,0x5B,0x81, /* 00000128 "5.....[." */
0x0B,0x4D,0x45,0x4D,0x35,0x01,0x44,0x41, /* 00000130 ".MEM5.DA" */
0x54,0x35,0x08,0x5B,0x80,0x4D,0x45,0x4D, /* 00000138 "T5.[.MEM" */
0x36,0x00,0x0B,0xF5,0x04,0x01,0x5B,0x81, /* 00000140 "6.....[." */
0x0B,0x4D,0x45,0x4D,0x36,0x01,0x44,0x41, /* 00000148 ".MEM6.DA" */
0x54,0x36,0x08,0x10,0x47,0x17,0x5F,0x50, /* 00000150 "T6..G._P" */
0x52,0x5F,0x5B,0x83,0x4F,0x16,0x43,0x50, /* 00000158 "R_[.O.CP" */
0x55,0x30,0x01,0x50,0xF0,0x00,0x00,0x06, /* 00000160 "U0.P...." */
0x14,0x4F,0x0F,0x5F,0x43,0x53,0x54,0x00, /* 00000168 ".O._CST." */
0x70,0x0A,0x03,0x49,0x4F,0x42,0x33,0x70, /* 00000170 "p..IOB3p" */
0x0A,0x33,0x49,0x4F,0x42,0x32,0xA0,0x48, /* 00000178 ".3IOB2.H" */
0x06,0x93,0x44,0x41,0x54,0x35,0x01,0xA4, /* 00000180 "..DAT5.." */
0x12,0x4E,0x05,0x04,0x0A,0x03,0x12,0x1C, /* 00000188 ".N......" */
0x04,0x11,0x14,0x0A,0x11,0x82,0x0C,0x00, /* 00000190 "........" */
0x7F,0x08,0x00,0x00,0x00,0x00,0x00,0x00, /* 00000198 "........" */
0x00,0x00,0x00,0x00,0x79,0x00,0x01,0x01, /* 000001A0 "....y..." */
0x0B,0xE8,0x03,0x12,0x1D,0x04,0x11,0x14, /* 000001A8 "........" */
0x0A,0x11,0x82,0x0C,0x00,0x01,0x08,0x00, /* 000001B0 "........" */
0x00,0x14,0xF0,0x00,0x00,0x00,0x00,0x00, /* 000001B8 "........" */
0x00,0x79,0x00,0x0A,0x02,0x01,0x0B,0xF4, /* 000001C0 ".y......" */
0x01,0x12,0x1D,0x04,0x11,0x14,0x0A,0x11, /* 000001C8 "........" */
0x82,0x0C,0x00,0x01,0x08,0x00,0x00,0x15, /* 000001D0 "........" */
0xF0,0x00,0x00,0x00,0x00,0x00,0x00,0x79, /* 000001D8 ".......y" */
0x00,0x0A,0x03,0x0A,0x50,0x0A,0xFA,0xA1, /* 000001E0 "....P..." */
0x40,0x08,0xA4,0x12,0x4C,0x07,0x05,0x0A, /* 000001E8 "@...L..." */
0x04,0x12,0x1C,0x04,0x11,0x14,0x0A,0x11, /* 000001F0 "........" */
0x82,0x0C,0x00,0x7F,0x08,0x00,0x00,0x00, /* 000001F8 "........" */
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x79, /* 00000200 ".......y" */
0x00,0x01,0x01,0x0B,0xE8,0x03,0x12,0x1D, /* 00000208 "........" */
0x04,0x11,0x14,0x0A,0x11,0x82,0x0C,0x00, /* 00000210 "........" */
0x01,0x08,0x00,0x00,0x14,0xF0,0x00,0x00, /* 00000218 "........" */
0x00,0x00,0x00,0x00,0x79,0x00,0x0A,0x02, /* 00000220 "....y..." */
0x01,0x0B,0xF4,0x01,0x12,0x1D,0x04,0x11, /* 00000228 "........" */
0x14,0x0A,0x11,0x82,0x0C,0x00,0x01,0x08, /* 00000230 "........" */
0x00,0x00,0x15,0xF0,0x00,0x00,0x00,0x00, /* 00000238 "........" */
0x00,0x00,0x79,0x00,0x0A,0x03,0x0A,0x50, /* 00000240 "..y....P" */
0x0A,0xFA,0x12,0x1D,0x04,0x11,0x14,0x0A, /* 00000248 "........" */
0x11,0x82,0x0C,0x00,0x01,0x08,0x00,0x00, /* 00000250 "........" */
0x15,0xF0,0x00,0x00,0x00,0x00,0x00,0x00, /* 00000258 "........" */
0x79,0x00,0x0A,0x03,0x0A,0xB4,0x0A,0x64, /* 00000260 "y......d" */
0x08,0x5F,0x50,0x43,0x54,0x12,0x2C,0x02, /* 00000268 "._PCT.,." */
0x11,0x14,0x0A,0x11,0x82,0x0C,0x00,0x01, /* 00000270 "........" */
0x08,0x00,0x00,0xB2,0x00,0x00,0x00,0x00, /* 00000278 "........" */
0x00,0x00,0x00,0x79,0x00,0x11,0x14,0x0A, /* 00000280 "...y...." */
0x11,0x82,0x0C,0x00,0x01,0x08,0x00,0x00, /* 00000288 "........" */
0xB3,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00000290 "........" */
0x79,0x00,0x14,0x08,0x5F,0x50,0x50,0x43, /* 00000298 "y..._PPC" */
0x00,0xA4,0x00,0x08,0x5F,0x50,0x53,0x53, /* 000002A0 "...._PSS" */
0x12,0x22,0x02,0x12,0x0F,0x06,0x0B,0x82, /* 000002A8 "."......" */
0x03,0x0B,0xF0,0x55,0x0B,0xF4,0x01,0x00, /* 000002B0 "...U...." */
0x0A,0x83,0x00,0x12,0x0F,0x06,0x0B,0x8F, /* 000002B8 "........" */
0x01,0x0B,0x10,0x27,0x0B,0xF4,0x01,0x00, /* 000002C0 "...'...." */
0x0A,0x84,0x01,0x5B,0x80,0x42,0x44,0x41, /* 000002C8 "...[.BDA" */
0x43,0x00,0x0B,0xEB,0x04,0x0A,0x02,0x5B, /* 000002D0 "C......[" */
0x81,0x10,0x42,0x44,0x41,0x43,0x01,0x43, /* 000002D8 "..BDAC.C" */
0x49,0x4E,0x44,0x08,0x43,0x44,0x41,0x54, /* 000002E0 "IND.CDAT" */
0x08,0x08,0x50,0x4D,0x4F,0x53,0x0A,0x11, /* 000002E8 "..PMOS.." */
0x08,0x45,0x58,0x4C,0x50,0x0A,0x13,0x08, /* 000002F0 ".EXLP..." */
0x43,0x53,0x31,0x43,0x0A,0x1C,0x08,0x43, /* 000002F8 "CS1C...C" */
0x4D,0x48,0x49,0x0A,0x2E,0x08,0x43,0x4D, /* 00000300 "MHI...CM" */
0x4C,0x4F,0x0A,0x2F,0x08,0x44,0x4D,0x41, /* 00000308 "LO./.DMA" */
0x43,0x0A,0x33,0x08,0x4F,0x42,0x43,0x31, /* 00000310 "C.3.OBC1" */
0x0A,0x37,0x08,0x53,0x4D,0x49,0x4F,0x0A, /* 00000318 ".7.SMIO." */
0x39,0x08,0x4F,0x42,0x43,0x32,0x0A,0x3A, /* 00000320 "9.OBC2.:" */
0x08,0x4C,0x4C,0x42,0x57,0x0A,0x43,0x08, /* 00000328 ".LLBW.C." */
0x45,0x58,0x4D,0x4C,0x0A,0x46,0x08,0x45, /* 00000330 "EXML.F.E" */
0x58,0x4D,0x48,0x0A,0x47,0x08,0x43,0x53, /* 00000338 "XMH.G.CS" */
0x34,0x41,0x0A,0x4A,0x08,0x46,0x4E,0x46, /* 00000340 "4A.J.FNF" */
0x34,0x0A,0x4C,0x08,0x43,0x53,0x35,0x38, /* 00000348 "4.L.CS58" */
0x0A,0x58,0x08,0x49,0x44,0x45,0x50,0x0A, /* 00000350 ".X.IDEP." */
0x65,0x08,0x49,0x44,0x45,0x53,0x0A,0x66, /* 00000358 "e.IDES.f" */
0x5B,0x80,0x43,0x53,0x4D,0x49,0x01,0x0A, /* 00000360 "[.CSMI.." */
0xB1,0x0A,0x03,0x5B,0x81,0x15,0x43,0x53, /* 00000368 "...[..CS" */
0x4D,0x49,0x01,0x49,0x4F,0x42,0x31,0x08, /* 00000370 "MI.IOB1." */
0x49,0x4F,0x42,0x32,0x08,0x49,0x4F,0x42, /* 00000378 "IOB2.IOB" */
0x33,0x08,0x14,0x18,0x52,0x43,0x4D,0x53, /* 00000380 "3...RCMS" */
0x01,0x70,0x68,0x49,0x4F,0x42,0x33,0x70, /* 00000388 ".phIOB3p" */
0x0A,0x7B,0x49,0x4F,0x42,0x32,0xA4,0x49, /* 00000390 ".{IOB2.I" */
0x4F,0x42,0x33,0x14,0x19,0x57,0x43,0x4D, /* 00000398 "OB3..WCM" */
0x53,0x02,0x70,0x69,0x43,0x44,0x41,0x54, /* 000003A0 "S.piCDAT" */
0x70,0x68,0x49,0x4F,0x42,0x33,0x70,0x0A, /* 000003A8 "phIOB3p." */
0x7C,0x49,0x4F,0x42,0x32,0x5B,0x80,0x44, /* 000003B0 "|IOB2[.D" */
0x42,0x47,0x31,0x01,0x0A,0x80,0x01,0x5B, /* 000003B8 "BG1....[" */
0x81,0x0B,0x44,0x42,0x47,0x31,0x01,0x50, /* 000003C0 "..DBG1.P" */
0x58,0x38,0x30,0x08,0x5B,0x80,0x44,0x45, /* 000003C8 "X80.[.DE" */
0x4C,0x30,0x01,0x0A,0xED,0x01,0x5B,0x81, /* 000003D0 "L0....[." */
0x0B,0x44,0x45,0x4C,0x30,0x01,0x50,0x58, /* 000003D8 ".DEL0.PX" */
0x45,0x44,0x08,0x5B,0x80,0x42,0x44,0x41, /* 000003E0 "ED.[.BDA" */
0x44,0x00,0x0B,0xED,0x04,0x0A,0x02,0x5B, /* 000003E8 "D......[" */
0x81,0x10,0x42,0x44,0x41,0x44,0x01,0x43, /* 000003F0 "..BDAD.C" */
0x34,0x45,0x44,0x08,0x43,0x34,0x45,0x45, /* 000003F8 "4ED.C4EE" */
0x08,0x08,0x5F,0x53,0x30,0x5F,0x12,0x06, /* 00000400 ".._S0_.." */
0x02,0x0A,0x05,0x0A,0x05,0x08,0x5F,0x53, /* 00000408 "......_S" */
0x33,0x5F,0x12,0x04,0x02,0x01,0x01,0x08, /* 00000410 "3_......" */
0x5F,0x53,0x34,0x5F,0x12,0x04,0x02,0x00, /* 00000418 "_S4_...." */
0x00,0x08,0x5F,0x53,0x35,0x5F,0x12,0x04, /* 00000420 ".._S5_.." */
0x02,0x00,0x00,0x14,0x46,0x26,0x5F,0x50, /* 00000428 "....F&_P" */
0x54,0x53,0x01,0x70,0x68,0x50,0x58,0x38, /* 00000430 "TS.phPX8" */
0x30,0x70,0x0A,0x0D,0x49,0x4F,0x42,0x33, /* 00000438 "0p..IOB3" */
0x70,0x0A,0x32,0x49,0x4F,0x42,0x32,0xA0, /* 00000440 "p.2IOB2." */
0x41,0x07,0x92,0x93,0x68,0x0A,0x03,0x70, /* 00000448 "A...h..p" */
0x01,0x4C,0x49,0x44,0x46,0xA0,0x35,0x93, /* 00000450 ".LIDF.5." */
0x87,0x5F,0x4F,0x53,0x5F,0x0A,0x11,0x70, /* 00000458 "._OS_..p" */
0x0A,0x03,0x5C,0x2F,0x04,0x5F,0x53,0x42, /* 00000460 "..\/._SB" */
0x5F,0x50,0x43,0x49,0x30,0x50,0x58,0x34, /* 00000468 "_PCI0PX4" */
0x30,0x50,0x58,0x42,0x33,0x70,0x0A,0x32, /* 00000470 "0PXB3p.2" */
0x5C,0x2F,0x04,0x5F,0x53,0x42,0x5F,0x50, /* 00000478 "\/._SB_P" */
0x43,0x49,0x30,0x50,0x58,0x34,0x30,0x50, /* 00000480 "CI0PX40P" */
0x58,0x42,0x32,0xA1,0x2D,0x70,0x0A,0x04, /* 00000488 "XB2.-p.." */
0x5C,0x2F,0x04,0x5F,0x53,0x42,0x5F,0x50, /* 00000490 "\/._SB_P" */
0x43,0x49,0x30,0x50,0x58,0x34,0x30,0x50, /* 00000498 "CI0PX40P" */
0x58,0x42,0x33,0x70,0x0A,0x32,0x5C,0x2F, /* 000004A0 "XB3p.2\/" */
0x04,0x5F,0x53,0x42,0x5F,0x50,0x43,0x49, /* 000004A8 "._SB_PCI" */
0x30,0x50,0x58,0x34,0x30,0x50,0x58,0x42, /* 000004B0 "0PX40PXB" */
0x32,0xA0,0x44,0x08,0x93,0x68,0x01,0x7D, /* 000004B8 "2.D..h.}" */
0x50,0x4D,0x32,0x34,0x01,0x50,0x4D,0x32, /* 000004C0 "PM24.PM2" */
0x34,0x7D,0x5C,0x2F,0x04,0x5F,0x53,0x42, /* 000004C8 "4}\/._SB" */
0x5F,0x50,0x43,0x49,0x30,0x4F,0x5A,0x36, /* 000004D0 "_PCI0OZ6" */
0x38,0x50,0x4D,0x45,0x53,0x01,0x5C,0x2F, /* 000004D8 "8PMES.\/" */
0x04,0x5F,0x53,0x42,0x5F,0x50,0x43,0x49, /* 000004E0 "._SB_PCI" */
0x30,0x4F,0x5A,0x36,0x38,0x50,0x4D,0x45, /* 000004E8 "0OZ68PME" */
0x53,0xA0,0x1E,0x93,0x87,0x5F,0x4F,0x53, /* 000004F0 "S...._OS" */
0x5F,0x0A,0x11,0x70,0x00,0x5C,0x2F,0x04, /* 000004F8 "_..p.\/." */
0x5F,0x53,0x42,0x5F,0x50,0x43,0x49,0x30, /* 00000500 "_SB_PCI0" */
0x50,0x58,0x34,0x30,0x50,0x58,0x42,0x33, /* 00000508 "PX40PXB3" */
0xA1,0x17,0x70,0x0A,0x06,0x5C,0x2F,0x04, /* 00000510 "..p..\/." */
0x5F,0x53,0x42,0x5F,0x50,0x43,0x49,0x30, /* 00000518 "_SB_PCI0" */
0x50,0x58,0x34,0x30,0x50,0x58,0x42,0x33, /* 00000520 "PX40PXB3" */
0x70,0x0A,0x32,0x5C,0x2F,0x04,0x5F,0x53, /* 00000528 "p.2\/._S" */
0x42,0x5F,0x50,0x43,0x49,0x30,0x50,0x58, /* 00000530 "B_PCI0PX" */
0x34,0x30,0x50,0x58,0x42,0x32,0xA0,0x45, /* 00000538 "40PXB2.E" */
0x07,0x93,0x68,0x0A,0x03,0x70,0x0A,0x0B, /* 00000540 "..h..p.." */
0x5C,0x2F,0x04,0x5F,0x53,0x42,0x5F,0x50, /* 00000548 "\/._SB_P" */
0x43,0x49,0x30,0x50,0x58,0x34,0x30,0x50, /* 00000550 "CI0PX40P" */
0x58,0x42,0x33,0x70,0x0A,0x32,0x5C,0x2F, /* 00000558 "XB3p.2\/" */
0x04,0x5F,0x53,0x42,0x5F,0x50,0x43,0x49, /* 00000560 "._SB_PCI" */
0x30,0x50,0x58,0x34,0x30,0x50,0x58,0x42, /* 00000568 "0PX40PXB" */
0x32,0x70,0x00,0x5C,0x2F,0x04,0x5F,0x53, /* 00000570 "2p.\/._S" */
0x42,0x5F,0x50,0x43,0x49,0x30,0x50,0x58, /* 00000578 "B_PCI0PX" */
0x34,0x30,0x50,0x58,0x42,0x33,0x70,0x0A, /* 00000580 "40PXB3p." */
0x37,0x5C,0x2F,0x04,0x5F,0x53,0x42,0x5F, /* 00000588 "7\/._SB_" */
0x50,0x43,0x49,0x30,0x50,0x58,0x34,0x30, /* 00000590 "PCI0PX40" */
0x50,0x58,0x42,0x32,0x70,0x52,0x43,0x4D, /* 00000598 "PXB2pRCM" */
0x53,0x43,0x53,0x34,0x41,0x60,0x7B,0x60, /* 000005A0 "SCS4A`{`" */
0x0A,0xDF,0x60,0x57,0x43,0x4D,0x53,0x43, /* 000005A8 "..`WCMSC" */
0x53,0x34,0x41,0x60,0xA0,0x4F,0x07,0x93, /* 000005B0 "S4A`.O.." */
0x68,0x0A,0x04,0xA0,0x21,0x93,0x4C,0x49, /* 000005B8 "h...!.LI" */
0x44,0x58,0x01,0x70,0x0A,0x9F,0x5C,0x2F, /* 000005C0 "DX.p..\/" */
0x05,0x5F,0x53,0x42,0x5F,0x50,0x43,0x49, /* 000005C8 "._SB_PCI" */
0x30,0x50,0x58,0x34,0x30,0x45,0x43,0x30, /* 000005D0 "0PX40EC0" */
0x5F,0x50,0x35,0x34,0x54,0x70,0x01,0x5C, /* 000005D8 "_P54Tp.\" */
0x2F,0x04,0x5F,0x53,0x42,0x5F,0x50,0x43, /* 000005E0 "/._SB_PC" */
0x49,0x30,0x50,0x58,0x34,0x30,0x50,0x58, /* 000005E8 "I0PX40PX" */
0x42,0x33,0x70,0x0A,0x32,0x5C,0x2F,0x04, /* 000005F0 "B3p.2\/." */
0x5F,0x53,0x42,0x5F,0x50,0x43,0x49,0x30, /* 000005F8 "_SB_PCI0" */
0x50,0x58,0x34,0x30,0x50,0x58,0x42,0x32, /* 00000600 "PX40PXB2" */
0x70,0x0A,0x07,0x5C,0x2F,0x04,0x5F,0x53, /* 00000608 "p..\/._S" */
0x42,0x5F,0x50,0x43,0x49,0x30,0x50,0x58, /* 00000610 "B_PCI0PX" */
0x34,0x30,0x50,0x58,0x42,0x33,0x70,0x0A, /* 00000618 "40PXB3p." */
0x32,0x5C,0x2F,0x04,0x5F,0x53,0x42,0x5F, /* 00000620 "2\/._SB_" */
0x50,0x43,0x49,0x30,0x50,0x58,0x34,0x30, /* 00000628 "PCI0PX40" */
0x50,0x58,0x42,0x32,0xA0,0x4D,0x05,0x93, /* 00000630 "PXB2.M.." */
0x68,0x0A,0x05,0x70,0x01,0x5C,0x2F,0x04, /* 00000638 "h..p.\/." */
0x5F,0x53,0x42,0x5F,0x50,0x43,0x49,0x30, /* 00000640 "_SB_PCI0" */
0x50,0x58,0x34,0x30,0x50,0x58,0x42,0x33, /* 00000648 "PX40PXB3" */
0x70,0x0A,0x32,0x5C,0x2F,0x04,0x5F,0x53, /* 00000650 "p.2\/._S" */
0x42,0x5F,0x50,0x43,0x49,0x30,0x50,0x58, /* 00000658 "B_PCI0PX" */
0x34,0x30,0x50,0x58,0x42,0x32,0x70,0x0A, /* 00000660 "40PXB2p." */
0x05,0x5C,0x2F,0x04,0x5F,0x53,0x42,0x5F, /* 00000668 ".\/._SB_" */
0x50,0x43,0x49,0x30,0x50,0x58,0x34,0x30, /* 00000670 "PCI0PX40" */
0x50,0x58,0x42,0x33,0x70,0x0A,0x32,0x5C, /* 00000678 "PXB3p.2\" */
0x2F,0x04,0x5F,0x53,0x42,0x5F,0x50,0x43, /* 00000680 "/._SB_PC" */
0x49,0x30,0x50,0x58,0x34,0x30,0x50,0x58, /* 00000688 "I0PX40PX" */
0x42,0x32,0x14,0x40,0x2C,0x5F,0x57,0x41, /* 00000690 "B2.@,_WA" */
0x4B,0x01,0x70,0x68,0x50,0x58,0x38,0x30, /* 00000698 "K.phPX80" */
0x70,0x01,0x42,0x52,0x54,0x53,0xA0,0x48, /* 000006A0 "p.BRTS.H" */
0x0C,0x93,0x68,0x01,0x70,0x00,0x4C,0x49, /* 000006A8 "..h.p.LI" */
0x44,0x46,0x7D,0x5C,0x2F,0x04,0x5F,0x53, /* 000006B0 "DF}\/._S" */
0x42,0x5F,0x50,0x43,0x49,0x30,0x4F,0x5A, /* 000006B8 "B_PCI0OZ" */
0x36,0x38,0x50,0x4D,0x45,0x53,0x0A,0x80, /* 000006C0 "68PMES.." */
0x5C,0x2F,0x04,0x5F,0x53,0x42,0x5F,0x50, /* 000006C8 "\/._SB_P" */
0x43,0x49,0x30,0x4F,0x5A,0x36,0x38,0x50, /* 000006D0 "CI0OZ68P" */
0x4D,0x45,0x53,0x5B,0x22,0x0A,0x64,0x70, /* 000006D8 "MES[".dp" */
0x0A,0x02,0x5C,0x2F,0x04,0x5F,0x53,0x42, /* 000006E0 "..\/._SB" */
0x5F,0x50,0x43,0x49,0x30,0x50,0x58,0x34, /* 000006E8 "_PCI0PX4" */
0x30,0x50,0x58,0x42,0x33,0x70,0x0A,0x32, /* 000006F0 "0PXB3p.2" */
0x5C,0x2F,0x04,0x5F,0x53,0x42,0x5F,0x50, /* 000006F8 "\/._SB_P" */
0x43,0x49,0x30,0x50,0x58,0x34,0x30,0x50, /* 00000700 "CI0PX40P" */
0x58,0x42,0x32,0x5B,0x22,0x0A,0x0A,0x70, /* 00000708 "XB2["..p" */
0x0A,0x34,0x5C,0x2F,0x04,0x5F,0x53,0x42, /* 00000710 ".4\/._SB" */
0x5F,0x50,0x43,0x49,0x30,0x50,0x58,0x34, /* 00000718 "_PCI0PX4" */
0x30,0x50,0x58,0x42,0x32,0x5B,0x22,0x0A, /* 00000720 "0PXB2["." */
0x64,0x86,0x5C,0x2E,0x5F,0x53,0x42,0x5F, /* 00000728 "d.\._SB_" */
0x41,0x43,0x5F,0x5F,0x0A,0x81,0x86,0x5C, /* 00000730 "AC__...\" */
0x2E,0x5F,0x53,0x42,0x5F,0x42,0x41,0x54, /* 00000738 "._SB_BAT" */
0x30,0x0A,0x81,0x70,0x0A,0x0D,0x5C,0x2F, /* 00000740 "0..p..\/" */
0x04,0x5F,0x53,0x42,0x5F,0x50,0x43,0x49, /* 00000748 "._SB_PCI" */
0x30,0x50,0x58,0x34,0x30,0x50,0x58,0x42, /* 00000750 "0PX40PXB" */
0x33,0x70,0x0A,0x31,0x5C,0x2F,0x04,0x5F, /* 00000758 "3p.1\/._" */
0x53,0x42,0x5F,0x50,0x43,0x49,0x30,0x50, /* 00000760 "SB_PCI0P" */
0x58,0x34,0x30,0x50,0x58,0x42,0x32,0xA0, /* 00000768 "X40PXB2." */
0x4D,0x0F,0x93,0x68,0x0A,0x04,0xA0,0x22, /* 00000770 "M..h..."" */
0x4F,0x53,0x43,0x50,0x5F,0x4F,0x53,0x5F, /* 00000778 "OSCP_OS_" */
0x0D,0x4D,0x69,0x63,0x72,0x6F,0x73,0x6F, /* 00000780 ".Microso" */
0x66,0x74,0x20,0x57,0x69,0x6E,0x64,0x6F, /* 00000788 "ft Windo" */
0x77,0x73,0x00,0x70,0x00,0x4F,0x53,0x54, /* 00000790 "ws.p.OST" */
0x50,0xA1,0x4E,0x06,0xA0,0x25,0x4F,0x53, /* 00000798 "P.N..%OS" */
0x43,0x50,0x5F,0x4F,0x53,0x5F,0x0D,0x4D, /* 000007A0 "CP_OS_.M" */
0x69,0x63,0x72,0x6F,0x73,0x6F,0x66,0x74, /* 000007A8 "icrosoft" */
0x20,0x57,0x69,0x6E,0x64,0x6F,0x77,0x73, /* 000007B0 " Windows" */
0x20,0x4E,0x54,0x00,0x70,0x01,0x4F,0x53, /* 000007B8 " NT.p.OS" */
0x54,0x50,0xA1,0x45,0x04,0xA0,0x39,0x4F, /* 000007C0 "TP.E..9O" */
0x53,0x43,0x50,0x5F,0x4F,0x53,0x5F,0x0D, /* 000007C8 "SCP_OS_." */
0x4D,0x69,0x63,0x72,0x6F,0x73,0x6F,0x66, /* 000007D0 "Microsof" */
0x74,0x20,0x57,0x69,0x6E,0x64,0x6F,0x77, /* 000007D8 "t Window" */
0x73,0x4D,0x45,0x3A,0x20,0x4D,0x69,0x6C, /* 000007E0 "sME: Mil" */
0x6C,0x65,0x6E,0x6E,0x69,0x75,0x6D,0x20, /* 000007E8 "lennium " */
0x45,0x64,0x69,0x74,0x69,0x6F,0x6E,0x00, /* 000007F0 "Edition." */
0x70,0x0A,0x02,0x4F,0x53,0x54,0x50,0xA1, /* 000007F8 "p..OSTP." */
0x08,0x70,0x0A,0x07,0x4F,0x53,0x54,0x50, /* 00000800 ".p..OSTP" */
0x86,0x5C,0x2E,0x5F,0x53,0x42,0x5F,0x42, /* 00000808 ".\._SB_B" */
0x41,0x54,0x30,0x0A,0x81,0x70,0x0A,0x08, /* 00000810 "AT0..p.." */
0x5C,0x2F,0x04,0x5F,0x53,0x42,0x5F,0x50, /* 00000818 "\/._SB_P" */
0x43,0x49,0x30,0x50,0x58,0x34,0x30,0x50, /* 00000820 "CI0PX40P" */
0x58,0x42,0x33,0x70,0x0A,0x32,0x5C,0x2F, /* 00000828 "XB3p.2\/" */
0x04,0x5F,0x53,0x42,0x5F,0x50,0x43,0x49, /* 00000830 "._SB_PCI" */
0x30,0x50,0x58,0x34,0x30,0x50,0x58,0x42, /* 00000838 "0PX40PXB" */
0x32,0x70,0x0A,0x0D,0x5C,0x2F,0x04,0x5F, /* 00000840 "2p..\/._" */
0x53,0x42,0x5F,0x50,0x43,0x49,0x30,0x50, /* 00000848 "SB_PCI0P" */
0x58,0x34,0x30,0x50,0x58,0x42,0x33,0x70, /* 00000850 "X40PXB3p" */
0x0A,0x31,0x5C,0x2F,0x04,0x5F,0x53,0x42, /* 00000858 ".1\/._SB" */
0x5F,0x50,0x43,0x49,0x30,0x50,0x58,0x34, /* 00000860 "_PCI0PX4" */
0x30,0x50,0x58,0x42,0x32,0xA0,0x46,0x08, /* 00000868 "0PXB2.F." */
0x93,0x68,0x0A,0x03,0x70,0x0A,0x0C,0x5C, /* 00000870 ".h..p..\" */
0x2F,0x04,0x5F,0x53,0x42,0x5F,0x50,0x43, /* 00000878 "/._SB_PC" */
0x49,0x30,0x50,0x58,0x34,0x30,0x50,0x58, /* 00000880 "I0PX40PX" */
0x42,0x33,0x70,0x0A,0x32,0x5C,0x2F,0x04, /* 00000888 "B3p.2\/." */
0x5F,0x53,0x42,0x5F,0x50,0x43,0x49,0x30, /* 00000890 "_SB_PCI0" */
0x50,0x58,0x34,0x30,0x50,0x58,0x42,0x32, /* 00000898 "PX40PXB2" */
0x70,0x52,0x43,0x4D,0x53,0x43,0x53,0x34, /* 000008A0 "pRCMSCS4" */
0x41,0x60,0x7B,0x60,0x0A,0x20,0x60,0xA0, /* 000008A8 "A`{`. `." */
0x2D,0x92,0x93,0x60,0x0A,0x20,0x86,0x5C, /* 000008B0 "-..`. .\" */
0x2E,0x5F,0x53,0x42,0x5F,0x53,0x4C,0x50, /* 000008B8 "._SB_SLP" */
0x42,0x0A,0x02,0x86,0x5C,0x2E,0x5F,0x53, /* 000008C0 "B...\._S" */
0x42,0x5F,0x41,0x43,0x5F,0x5F,0x0A,0x80, /* 000008C8 "B_AC__.." */
0x86,0x5C,0x2E,0x5F,0x53,0x42,0x5F,0x42, /* 000008D0 ".\._SB_B" */
0x41,0x54,0x30,0x0A,0x80,0xA1,0x16,0xA0, /* 000008D8 "AT0....." */
0x14,0x93,0x4F,0x53,0x54,0x50,0x00,0x86, /* 000008E0 "..OSTP.." */
0x5C,0x2E,0x5F,0x53,0x42,0x5F,0x53,0x4C, /* 000008E8 "\._SB_SL" */
0x50,0x42,0x0A,0x02,0xA1,0x4A,0x04,0x7B, /* 000008F0 "PB...J.{" */
0x50,0x4D,0x33,0x33,0x01,0x61,0xA0,0x0A, /* 000008F8 "PM33.a.." */
0x93,0x61,0x00,0x70,0x00,0x4C,0x49,0x44, /* 00000900 ".a.p.LID" */
0x53,0xA1,0x07,0x70,0x01,0x4C,0x49,0x44, /* 00000908 "S..p.LID" */
0x53,0xA0,0x14,0x93,0x44,0x41,0x54,0x36, /* 00000910 "S...DAT6" */
0x00,0x86,0x5C,0x2E,0x5F,0x53,0x42,0x5F, /* 00000918 "..\._SB_" */
0x53,0x4C,0x50,0x42,0x0A,0x02,0xA1,0x18, /* 00000920 "SLPB...." */
0xA0,0x16,0x93,0x87,0x5F,0x4F,0x53,0x5F, /* 00000928 "...._OS_" */
0x0A,0x11,0x86,0x5C,0x2E,0x5F,0x53,0x42, /* 00000930 "...\._SB" */
0x5F,0x53,0x4C,0x50,0x42,0x0A,0x02,0x70, /* 00000938 "_SLPB..p" */
0x0A,0x0E,0x49,0x4F,0x42,0x33,0x70,0x0A, /* 00000940 "..IOB3p." */
0x32,0x49,0x4F,0x42,0x32,0xA4,0x12,0x04, /* 00000948 "2IOB2..." */
0x02,0x00,0x00,0x10,0x47,0x0D,0x5F,0x53, /* 00000950 "....G._S" */
0x49,0x5F,0x14,0x40,0x0D,0x5F,0x53,0x53, /* 00000958 "I_.@._SS" */
0x54,0x01,0xA0,0x30,0x93,0x68,0x00,0x70, /* 00000960 "T..0.h.p" */
0x0A,0x02,0x5C,0x2F,0x04,0x5F,0x53,0x42, /* 00000968 "..\/._SB" */
0x5F,0x50,0x43,0x49,0x30,0x50,0x58,0x34, /* 00000970 "_PCI0PX4" */
0x30,0x50,0x58,0x42,0x33,0x70,0x0A,0x30, /* 00000978 "0PXB3p.0" */
0x5C,0x2F,0x04,0x5F,0x53,0x42,0x5F,0x50, /* 00000980 "\/._SB_P" */
0x43,0x49,0x30,0x50,0x58,0x34,0x30,0x50, /* 00000988 "CI0PX40P" */
0x58,0x42,0x32,0xA0,0x35,0x91,0x93,0x68, /* 00000990 "XB2.5..h" */
0x01,0x93,0x68,0x0A,0x02,0x70,0x0A,0x02, /* 00000998 "..h..p.." */
0x5C,0x2F,0x04,0x5F,0x53,0x42,0x5F,0x50, /* 000009A0 "\/._SB_P" */
0x43,0x49,0x30,0x50,0x58,0x34,0x30,0x50, /* 000009A8 "CI0PX40P" */
0x58,0x42,0x33,0x70,0x0A,0x30,0x5C,0x2F, /* 000009B0 "XB3p.0\/" */
0x04,0x5F,0x53,0x42,0x5F,0x50,0x43,0x49, /* 000009B8 "._SB_PCI" */
0x30,0x50,0x58,0x34,0x30,0x50,0x58,0x42, /* 000009C0 "0PX40PXB" */
0x32,0xA0,0x30,0x93,0x68,0x0A,0x03,0x70, /* 000009C8 "2.0.h..p" */
0x00,0x5C,0x2F,0x04,0x5F,0x53,0x42,0x5F, /* 000009D0 ".\/._SB_" */
0x50,0x43,0x49,0x30,0x50,0x58,0x34,0x30, /* 000009D8 "PCI0PX40" */
0x50,0x58,0x42,0x33,0x70,0x0A,0x30,0x5C, /* 000009E0 "PXB3p.0\" */
0x2F,0x04,0x5F,0x53,0x42,0x5F,0x50,0x43, /* 000009E8 "/._SB_PC" */
0x49,0x30,0x50,0x58,0x34,0x30,0x50,0x58, /* 000009F0 "I0PX40PX" */
0x42,0x32,0xA0,0x30,0x93,0x68,0x0A,0x04, /* 000009F8 "B2.0.h.." */
0x70,0x01,0x5C,0x2F,0x04,0x5F,0x53,0x42, /* 00000A00 "p.\/._SB" */
0x5F,0x50,0x43,0x49,0x30,0x50,0x58,0x34, /* 00000A08 "_PCI0PX4" */
0x30,0x50,0x58,0x42,0x33,0x70,0x0A,0x30, /* 00000A10 "0PXB3p.0" */
0x5C,0x2F,0x04,0x5F,0x53,0x42,0x5F,0x50, /* 00000A18 "\/._SB_P" */
0x43,0x49,0x30,0x50,0x58,0x34,0x30,0x50, /* 00000A20 "CI0PX40P" */
0x58,0x42,0x32,0x14,0x46,0x04,0x54,0x50, /* 00000A28 "XB2.F.TP" */
0x43,0x31,0x00,0x70,0x00,0x44,0x57,0x30, /* 00000A30 "C1.p.DW0" */
0x31,0x70,0x5C,0x2F,0x04,0x5F,0x53,0x42, /* 00000A38 "1p\/._SB" */
0x5F,0x50,0x43,0x49,0x30,0x50,0x58,0x34, /* 00000A40 "_PCI0PX4" */
0x30,0x54,0x50,0x43,0x50,0x44,0x42,0x30, /* 00000A48 "0TPCPDB0" */
0x30,0x76,0x44,0x42,0x30,0x30,0x77,0x44, /* 00000A50 "0vDB00wD" */
0x42,0x30,0x30,0x0A,0x0A,0x44,0x57,0x30, /* 00000A58 "B00..DW0" */
0x31,0x72,0x44,0x57,0x30,0x31,0x0B,0xAC, /* 00000A60 "1rDW01.." */
0x0A,0x44,0x57,0x30,0x31,0xA4,0x44,0x57, /* 00000A68 ".DW01.DW" */
0x30,0x31,0x14,0x46,0x04,0x54,0x50,0x53, /* 00000A70 "01.F.TPS" */
0x32,0x00,0x70,0x00,0x44,0x57,0x30,0x33, /* 00000A78 "2.p.DW03" */
0x70,0x5C,0x2F,0x04,0x5F,0x53,0x42,0x5F, /* 00000A80 "p\/._SB_" */
0x50,0x43,0x49,0x30,0x50,0x58,0x34,0x30, /* 00000A88 "PCI0PX40" */
0x54,0x50,0x53,0x50,0x44,0x42,0x30,0x31, /* 00000A90 "TPSPDB01" */
0x76,0x44,0x42,0x30,0x31,0x77,0x44,0x42, /* 00000A98 "vDB01wDB" */
0x30,0x31,0x0A,0x0A,0x44,0x57,0x30,0x33, /* 00000AA0 "01..DW03" */
0x72,0x44,0x57,0x30,0x33,0x0B,0xAC,0x0A, /* 00000AA8 "rDW03..." */
0x44,0x57,0x30,0x33,0xA4,0x44,0x57,0x30, /* 00000AB0 "DW03.DW0" */
0x33,0x08,0x46,0x41,0x4E,0x53,0x0A,0xFF, /* 00000AB8 "3.FANS.." */
0x08,0x54,0x42,0x55,0x46,0x11,0x0B,0x0A, /* 00000AC0 ".TBUF..." */
0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00000AC8 "........" */
0x00,0x8C,0x54,0x42,0x55,0x46,0x00,0x44, /* 00000AD0 "..TBUF.D" */
0x42,0x30,0x30,0x8C,0x54,0x42,0x55,0x46, /* 00000AD8 "B00.TBUF" */
0x01,0x44,0x42,0x30,0x31,0x8B,0x54,0x42, /* 00000AE0 ".DB01.TB" */
0x55,0x46,0x00,0x44,0x57,0x30,0x30,0x8B, /* 00000AE8 "UF.DW00." */
0x54,0x42,0x55,0x46,0x0A,0x02,0x44,0x57, /* 00000AF0 "TBUF..DW" */
0x30,0x31,0x8B,0x54,0x42,0x55,0x46,0x0A, /* 00000AF8 "01.TBUF." */
0x04,0x44,0x57,0x30,0x32,0x8B,0x54,0x42, /* 00000B00 ".DW02.TB" */
0x55,0x46,0x0A,0x06,0x44,0x57,0x30,0x33, /* 00000B08 "UF..DW03" */
0x8A,0x54,0x42,0x55,0x46,0x00,0x44,0x41, /* 00000B10 ".TBUF.DA" */
0x54,0x44,0x08,0x44,0x42,0x55,0x46,0x11, /* 00000B18 "TD.DBUF." */
0x09,0x0A,0x06,0xA0,0x00,0x00,0x00,0x00, /* 00000B20 "........" */
0x00,0x8C,0x44,0x42,0x55,0x46,0x00,0x52, /* 00000B28 "..DBUF.R" */
0x44,0x54,0x50,0x8C,0x44,0x42,0x55,0x46, /* 00000B30 "DTP.DBUF" */
0x01,0x44,0x41,0x42,0x31,0x8C,0x44,0x42, /* 00000B38 ".DAB1.DB" */
0x55,0x46,0x0A,0x02,0x44,0x41,0x42,0x32, /* 00000B40 "UF..DAB2" */
0x8C,0x44,0x42,0x55,0x46,0x0A,0x03,0x44, /* 00000B48 ".DBUF..D" */
0x41,0x42,0x33,0x8C,0x44,0x42,0x55,0x46, /* 00000B50 "AB3.DBUF" */
0x0A,0x04,0x44,0x41,0x42,0x34,0x8C,0x44, /* 00000B58 "..DAB4.D" */
0x42,0x55,0x46,0x0A,0x05,0x44,0x41,0x42, /* 00000B60 "BUF..DAB" */
0x35,0x8B,0x44,0x42,0x55,0x46,0x01,0x44, /* 00000B68 "5.DBUF.D" */
0x41,0x57,0x30,0x8B,0x44,0x42,0x55,0x46, /* 00000B70 "AW0.DBUF" */
0x0A,0x03,0x44,0x41,0x57,0x33,0x8A,0x44, /* 00000B78 "..DAW3.D" */
0x42,0x55,0x46,0x01,0x44,0x41,0x44,0x31, /* 00000B80 "BUF.DAD1" */
0x5B,0x80,0x53,0x4D,0x42,0x30,0x01,0x0B, /* 00000B88 "[.SMB0.." */
0x00,0xF1,0x01,0x5B,0x81,0x0B,0x53,0x4D, /* 00000B90 "...[..SM" */
0x42,0x30,0x01,0x53,0x4D,0x30,0x30,0x08, /* 00000B98 "B0.SM00." */
0x5B,0x80,0x53,0x4D,0x42,0x32,0x01,0x0B, /* 00000BA0 "[.SMB2.." */
0x02,0xF1,0x01,0x5B,0x81,0x0B,0x53,0x4D, /* 00000BA8 "...[..SM" */
0x42,0x32,0x01,0x53,0x4D,0x30,0x32,0x08, /* 00000BB0 "B2.SM02." */
0x5B,0x80,0x53,0x4D,0x42,0x33,0x01,0x0B, /* 00000BB8 "[.SMB3.." */
0x03,0xF1,0x01,0x5B,0x81,0x0B,0x53,0x4D, /* 00000BC0 "...[..SM" */
0x42,0x33,0x01,0x53,0x4D,0x30,0x33,0x08, /* 00000BC8 "B3.SM03." */
0x5B,0x80,0x53,0x4D,0x42,0x34,0x01,0x0B, /* 00000BD0 "[.SMB4.." */
0x04,0xF1,0x01,0x5B,0x81,0x0B,0x53,0x4D, /* 00000BD8 "...[..SM" */
0x42,0x34,0x01,0x53,0x4D,0x30,0x34,0x08, /* 00000BE0 "B4.SM04." */
0x5B,0x80,0x53,0x4D,0x42,0x35,0x01,0x0B, /* 00000BE8 "[.SMB5.." */
0x05,0xF1,0x01,0x5B,0x81,0x0B,0x53,0x4D, /* 00000BF0 "...[..SM" */
0x42,0x35,0x01,0x53,0x4D,0x30,0x35,0x08, /* 00000BF8 "B5.SM05." */
0x5B,0x80,0x53,0x4D,0x42,0x36,0x01,0x0B, /* 00000C00 "[.SMB6.." */
0x06,0xF1,0x01,0x5B,0x81,0x0B,0x53,0x4D, /* 00000C08 "...[..SM" */
0x42,0x36,0x01,0x53,0x4D,0x30,0x36,0x08, /* 00000C10 "B6.SM06." */
0x10,0x40,0x27,0x5F,0x54,0x5A,0x5F,0x14, /* 00000C18 ".@'_TZ_." */
0x2E,0x53,0x57,0x46,0x53,0x00,0x7B,0x53, /* 00000C20 ".SWFS.{S" */
0x4D,0x30,0x30,0x0A,0x02,0x60,0x70,0x0A, /* 00000C28 "M00..`p." */
0xC8,0x61,0xA2,0x14,0x90,0x93,0x60,0x00, /* 00000C30 ".a....`." */
0x92,0x93,0x61,0x00,0x5B,0x21,0x01,0x7B, /* 00000C38 "..a.[!.{" */
0x53,0x4D,0x30,0x30,0x0A,0x02,0x60,0x70, /* 00000C40 "SM00..`p" */
0x0A,0xFF,0x53,0x4D,0x30,0x30,0x14,0x2E, /* 00000C48 "..SM00.." */
0x57,0x42,0x59,0x54,0x03,0x70,0x0A,0xFF, /* 00000C50 "WBYT.p.." */
0x53,0x4D,0x30,0x30,0x70,0x68,0x53,0x4D, /* 00000C58 "SM00phSM" */
0x30,0x34,0x70,0x69,0x53,0x4D,0x30,0x33, /* 00000C60 "04piSM03" */
0x70,0x6A,0x53,0x4D,0x30,0x35,0x70,0x0A, /* 00000C68 "pjSM05p." */
0x48,0x53,0x4D,0x30,0x32,0x5B,0x22,0x0A, /* 00000C70 "HSM02["." */
0xC8,0x53,0x57,0x46,0x53,0x14,0x30,0x57, /* 00000C78 ".SWFS.0W" */
0x57,0x52,0x44,0x04,0x70,0x0A,0xFF,0x53, /* 00000C80 "WRD.p..S" */
0x4D,0x30,0x30,0x70,0x68,0x53,0x4D,0x30, /* 00000C88 "M00phSM0" */
0x34,0x70,0x69,0x53,0x4D,0x30,0x33,0x70, /* 00000C90 "4piSM03p" */
0x6A,0x53,0x4D,0x30,0x35,0x70,0x6B,0x53, /* 00000C98 "jSM05pkS" */
0x4D,0x30,0x36,0x70,0x0A,0x4C,0x53,0x4D, /* 00000CA0 "M06p.LSM" */
0x30,0x32,0x53,0x57,0x46,0x53,0x14,0x33, /* 00000CA8 "02SWFS.3" */
0x52,0x42,0x59,0x54,0x02,0x70,0x0A,0xFF, /* 00000CB0 "RBYT.p.." */
0x53,0x4D,0x30,0x30,0x7D,0x68,0x01,0x53, /* 00000CB8 "SM00}h.S" */
0x4D,0x30,0x34,0x70,0x69,0x53,0x4D,0x30, /* 00000CC0 "M04piSM0" */
0x33,0x70,0x0A,0x48,0x53,0x4D,0x30,0x32, /* 00000CC8 "3p.HSM02" */
0x53,0x57,0x46,0x53,0x70,0x53,0x4D,0x30, /* 00000CD0 "SWFSpSM0" */
0x35,0x44,0x42,0x30,0x30,0xA4,0x44,0x42, /* 00000CD8 "5DB00.DB" */
0x30,0x30,0x14,0x3C,0x52,0x57,0x52,0x44, /* 00000CE0 "00.<RWRD" */
0x02,0x70,0x0A,0xFF,0x53,0x4D,0x30,0x30, /* 00000CE8 ".p..SM00" */
0x7D,0x68,0x01,0x53,0x4D,0x30,0x34,0x70, /* 00000CF0 "}h.SM04p" */
0x69,0x53,0x4D,0x30,0x33,0x70,0x0A,0x4C, /* 00000CF8 "iSM03p.L" */
0x53,0x4D,0x30,0x32,0x53,0x57,0x46,0x53, /* 00000D00 "SM02SWFS" */
0x70,0x53,0x4D,0x30,0x35,0x44,0x42,0x30, /* 00000D08 "pSM05DB0" */
0x30,0x70,0x53,0x4D,0x30,0x36,0x44,0x42, /* 00000D10 "0pSM06DB" */
0x30,0x31,0xA4,0x44,0x57,0x30,0x30,0x5B, /* 00000D18 "01.DW00[" */
0x85,0x43,0x0B,0x54,0x48,0x52,0x31,0x14, /* 00000D20 ".C.THR1." */
0x4A,0x08,0x5F,0x54,0x4D,0x50,0x00,0x86, /* 00000D28 "J._TMP.." */
0x5C,0x2E,0x5F,0x53,0x42,0x5F,0x42,0x41, /* 00000D30 "\._SB_BA" */
0x54,0x30,0x0A,0x80,0x70,0x0A,0x04,0x5C, /* 00000D38 "T0..p..\" */
0x2F,0x04,0x5F,0x53,0x42,0x5F,0x50,0x43, /* 00000D40 "/._SB_PC" */
0x49,0x30,0x50,0x58,0x34,0x30,0x50,0x58, /* 00000D48 "I0PX40PX" */
0x42,0x33,0x70,0x0A,0x33,0x5C,0x2F,0x04, /* 00000D50 "B3p.3\/." */
0x5F,0x53,0x42,0x5F,0x50,0x43,0x49,0x30, /* 00000D58 "_SB_PCI0" */
0x50,0x58,0x34,0x30,0x50,0x58,0x42,0x32, /* 00000D60 "PX40PXB2" */
0x70,0x5C,0x2F,0x04,0x5F,0x53,0x42,0x5F, /* 00000D68 "p\/._SB_" */
0x50,0x43,0x49,0x30,0x50,0x58,0x34,0x30, /* 00000D70 "PCI0PX40" */
0x43,0x32,0x32,0x33,0x61,0x7B,0x61,0x0A, /* 00000D78 "C223a{a." */
0x80,0x62,0xA0,0x09,0x93,0x62,0x0A,0x80, /* 00000D80 ".b...b.." */
0x70,0x0A,0x1E,0x61,0xA1,0x0C,0xA0,0x0A, /* 00000D88 "p..a...." */
0x92,0x94,0x61,0x0A,0x10,0x70,0x0A,0x11, /* 00000D90 "..a..p.." */
0x61,0x77,0x61,0x0A,0x0A,0x44,0x57,0x30, /* 00000D98 "awa..DW0" */
0x30,0x72,0x44,0x57,0x30,0x30,0x0B,0xAC, /* 00000DA0 "0rDW00.." */
0x0A,0x44,0x57,0x30,0x30,0xA4,0x44,0x57, /* 00000DA8 ".DW00.DW" */
0x30,0x30,0x14,0x0B,0x5F,0x43,0x52,0x54, /* 00000DB0 "00.._CRT" */
0x00,0xA4,0x54,0x50,0x43,0x31,0x08,0x5F, /* 00000DB8 "..TPC1._" */
0x54,0x43,0x31,0x0A,0x02,0x08,0x5F,0x54, /* 00000DC0 "TC1..._T" */
0x43,0x32,0x0A,0x03,0x08,0x5F,0x54,0x53, /* 00000DC8 "C2..._TS" */
0x50,0x0B,0x58,0x02,0x5B,0x85,0x43,0x0B, /* 00000DD0 "P.X.[.C." */
0x54,0x48,0x52,0x32,0x14,0x4A,0x08,0x5F, /* 00000DD8 "THR2.J._" */
0x54,0x4D,0x50,0x00,0x86,0x5C,0x2E,0x5F, /* 00000DE0 "TMP..\._" */
0x53,0x42,0x5F,0x42,0x41,0x54,0x30,0x0A, /* 00000DE8 "SB_BAT0." */
0x80,0x70,0x0A,0x05,0x5C,0x2F,0x04,0x5F, /* 00000DF0 ".p..\/._" */
0x53,0x42,0x5F,0x50,0x43,0x49,0x30,0x50, /* 00000DF8 "SB_PCI0P" */
0x58,0x34,0x30,0x50,0x58,0x42,0x33,0x70, /* 00000E00 "X40PXB3p" */
0x0A,0x33,0x5C,0x2F,0x04,0x5F,0x53,0x42, /* 00000E08 ".3\/._SB" */
0x5F,0x50,0x43,0x49,0x30,0x50,0x58,0x34, /* 00000E10 "_PCI0PX4" */
0x30,0x50,0x58,0x42,0x32,0x70,0x5C,0x2F, /* 00000E18 "0PXB2p\/" */
0x04,0x5F,0x53,0x42,0x5F,0x50,0x43,0x49, /* 00000E20 "._SB_PCI" */
0x30,0x50,0x58,0x34,0x30,0x43,0x32,0x32, /* 00000E28 "0PX40C22" */
0x34,0x61,0x7B,0x61,0x0A,0x80,0x62,0xA0, /* 00000E30 "4a{a..b." */
0x09,0x93,0x62,0x0A,0x80,0x70,0x0A,0x1E, /* 00000E38 "..b..p.." */
0x61,0xA1,0x0C,0xA0,0x0A,0x92,0x94,0x61, /* 00000E40 "a......a" */
0x0A,0x10,0x70,0x0A,0x11,0x61,0x77,0x61, /* 00000E48 "..p..awa" */
0x0A,0x0A,0x44,0x57,0x30,0x32,0x72,0x44, /* 00000E50 "..DW02rD" */
0x57,0x30,0x32,0x0B,0xAC,0x0A,0x44,0x57, /* 00000E58 "W02...DW" */
0x30,0x32,0xA4,0x44,0x57,0x30,0x32,0x14, /* 00000E60 "02.DW02." */
0x0B,0x5F,0x43,0x52,0x54,0x00,0xA4,0x54, /* 00000E68 "._CRT..T" */
0x50,0x53,0x32,0x08,0x5F,0x54,0x43,0x31, /* 00000E70 "PS2._TC1" */
0x0A,0x02,0x08,0x5F,0x54,0x43,0x32,0x0A, /* 00000E78 "..._TC2." */
0x03,0x08,0x5F,0x54,0x53,0x50,0x0B,0x58, /* 00000E80 ".._TSP.X" */
0x02,0x10,0x45,0x12,0x5F,0x47,0x50,0x45, /* 00000E88 "..E._GPE" */
0x14,0x47,0x04,0x5F,0x4C,0x30,0x30,0x00, /* 00000E90 ".G._L00." */
0x5B,0x22,0x0A,0xC8,0x70,0x0A,0x34,0x5C, /* 00000E98 "["..p.4\" */
0x2F,0x04,0x5F,0x53,0x42,0x5F,0x50,0x43, /* 00000EA0 "/._SB_PC" */
0x49,0x30,0x50,0x58,0x34,0x30,0x50,0x58, /* 00000EA8 "I0PX40PX" */
0x42,0x32,0xA0,0x09,0x93,0x87,0x5F,0x4F, /* 00000EB0 "B2...._O" */
0x53,0x5F,0x0A,0x11,0xA1,0x1B,0x86,0x5C, /* 00000EB8 "S_.....\" */
0x2E,0x5F,0x54,0x5A,0x5F,0x54,0x48,0x52, /* 00000EC0 "._TZ_THR" */
0x31,0x0A,0x80,0x86,0x5C,0x2E,0x5F,0x54, /* 00000EC8 "1...\._T" */
0x5A,0x5F,0x54,0x48,0x52,0x32,0x0A,0x80, /* 00000ED0 "Z_THR2.." */
0x14,0x4F,0x06,0x5F,0x4C,0x30,0x42,0x00, /* 00000ED8 ".O._L0B." */
0x70,0x0A,0x88,0x5C,0x2F,0x05,0x5F,0x53, /* 00000EE0 "p..\/._S" */
0x42,0x5F,0x50,0x43,0x49,0x30,0x50,0x58, /* 00000EE8 "B_PCI0PX" */
0x34,0x30,0x45,0x43,0x30,0x5F,0x50,0x35, /* 00000EF0 "40EC0_P5" */
0x34,0x53,0x70,0x0A,0x80,0x5C,0x2F,0x05, /* 00000EF8 "4Sp..\/." */
0x5F,0x53,0x42,0x5F,0x50,0x43,0x49,0x30, /* 00000F00 "_SB_PCI0" */
0x50,0x58,0x34,0x30,0x45,0x43,0x30,0x5F, /* 00000F08 "PX40EC0_" */
0x50,0x35,0x34,0x54,0x70,0x0A,0x35,0x5C, /* 00000F10 "P54Tp.5\" */
0x2F,0x04,0x5F,0x53,0x42,0x5F,0x50,0x43, /* 00000F18 "/._SB_PC" */
0x49,0x30,0x50,0x58,0x34,0x30,0x50,0x58, /* 00000F20 "I0PX40PX" */
0x42,0x32,0x7D,0x50,0x4D,0x30,0x44,0x0A, /* 00000F28 "B2}PM0D." */
0x08,0x50,0x4D,0x30,0x44,0x70,0x01,0x4C, /* 00000F30 ".PM0Dp.L" */
0x49,0x44,0x53,0x86,0x5C,0x2E,0x5F,0x53, /* 00000F38 "IDS.\._S" */
0x42,0x5F,0x4C,0x49,0x44,0x5F,0x0A,0x80, /* 00000F40 "B_LID_.." */
0x14,0x46,0x06,0x5F,0x4C,0x30,0x43,0x00, /* 00000F48 ".F._L0C." */
0x7D,0x5C,0x2F,0x04,0x5F,0x53,0x42,0x5F, /* 00000F50 "}\/._SB_" */
0x50,0x43,0x49,0x30,0x4F,0x5A,0x36,0x38, /* 00000F58 "PCI0OZ68" */
0x50,0x4D,0x45,0x53,0x0A,0x80,0x5C,0x2F, /* 00000F60 "PMES..\/" */
0x04,0x5F,0x53,0x42,0x5F,0x50,0x43,0x49, /* 00000F68 "._SB_PCI" */
0x30,0x4F,0x5A,0x36,0x38,0x50,0x4D,0x45, /* 00000F70 "0OZ68PME" */
0x53,0x7B,0x5C,0x2F,0x04,0x5F,0x53,0x42, /* 00000F78 "S{\/._SB" */
0x5F,0x50,0x43,0x49,0x30,0x4F,0x5A,0x36, /* 00000F80 "_PCI0OZ6" */
0x38,0x50,0x57,0x52,0x53,0x0A,0xFC,0x5C, /* 00000F88 "8PWRS..\" */
0x2F,0x04,0x5F,0x53,0x42,0x5F,0x50,0x43, /* 00000F90 "/._SB_PC" */
0x49,0x30,0x4F,0x5A,0x36,0x38,0x50,0x57, /* 00000F98 "I0OZ68PW" */
0x52,0x53,0x86,0x5C,0x2E,0x5F,0x53,0x42, /* 00000FA0 "RS.\._SB" */
0x5F,0x53,0x4C,0x50,0x42,0x0A,0x02,0x5B, /* 00000FA8 "_SLPB..[" */
0x80,0x4F,0x53,0x42,0x54,0x00,0x0B,0xEA, /* 00000FB0 ".OSBT..." */
0x04,0x01,0x5B,0x81,0x0B,0x4F,0x53,0x42, /* 00000FB8 "..[..OSB" */
0x54,0x01,0x4F,0x53,0x54,0x50,0x03,0x14, /* 00000FC0 "T.OSTP.." */
0x4F,0x04,0x4F,0x53,0x43,0x50,0x02,0xA0, /* 00000FC8 "O.OSCP.." */
0x09,0x92,0x93,0x87,0x68,0x87,0x69,0xA4, /* 00000FD0 "....h.i." */
0x00,0x72,0x87,0x68,0x01,0x60,0x08,0x54, /* 00000FD8 ".r.h.`.T" */
0x4D,0x42,0x30,0x11,0x02,0x60,0x08,0x54, /* 00000FE0 "MB0..`.T" */
0x4D,0x42,0x31,0x11,0x02,0x60,0x70,0x68, /* 00000FE8 "MB1..`ph" */
0x54,0x4D,0x42,0x30,0x70,0x69,0x54,0x4D, /* 00000FF0 "TMB0piTM" */
0x42,0x31,0xA2,0x1A,0x60,0x76,0x60,0xA0, /* 00000FF8 "B1..`v`." */
0x15,0x92,0x93,0x83,0x88,0x54,0x4D,0x42, /* 00001000 ".....TMB" */
0x30,0x60,0x00,0x83,0x88,0x54,0x4D,0x42, /* 00001008 "0`...TMB" */
0x31,0x60,0x00,0xA4,0x00,0xA4,0x01,0x10, /* 00001010 "1`......" */
0x85,0x69,0x02,0x5F,0x53,0x42,0x5F,0x5B, /* 00001018 ".i._SB_[" */
0x82,0x43,0x12,0x50,0x49,0x4C,0x41,0x08, /* 00001020 ".C.PILA." */
0x5F,0x48,0x49,0x44,0x0C,0x41,0xD0,0x0C, /* 00001028 "_HID.A.." */
0x0F,0x08,0x5F,0x55,0x49,0x44,0x01,0x14, /* 00001030 ".._UID.." */
0x1A,0x5F,0x50,0x52,0x53,0x00,0x08,0x42, /* 00001038 "._PRS..B" */
0x55,0x46,0x30,0x11,0x09,0x0A,0x06,0x23, /* 00001040 "UF0....#" */
0x00,0x84,0x18,0x79,0x00,0xA4,0x42,0x55, /* 00001048 "...y..BU" */
0x46,0x30,0x14,0x29,0x5F,0x44,0x49,0x53, /* 00001050 "F0.)_DIS" */
0x00,0x7D,0x5E,0x5E,0x2F,0x03,0x50,0x43, /* 00001058 ".}^^/.PC" */
0x49,0x30,0x50,0x58,0x34,0x30,0x49,0x4E, /* 00001060 "I0PX40IN" */
0x54,0x41,0x0A,0x80,0x5E,0x5E,0x2F,0x03, /* 00001068 "TA..^^/." */
0x50,0x43,0x49,0x30,0x50,0x58,0x34,0x30, /* 00001070 "PCI0PX40" */
0x49,0x4E,0x54,0x41,0x14,0x41,0x06,0x5F, /* 00001078 "INTA.A._" */
0x43,0x52,0x53,0x00,0x08,0x42,0x55,0x46, /* 00001080 "CRS..BUF" */
0x30,0x11,0x09,0x0A,0x06,0x23,0x00,0x00, /* 00001088 "0....#.." */
0x18,0x79,0x00,0x8B,0x42,0x55,0x46,0x30, /* 00001090 ".y..BUF0" */
0x01,0x49,0x52,0x51,0x57,0x70,0x5E,0x5E, /* 00001098 ".IRQWp^^" */
0x2F,0x03,0x50,0x43,0x49,0x30,0x50,0x58, /* 000010A0 "/.PCI0PX" */
0x34,0x30,0x49,0x4E,0x54,0x41,0x61,0x7B, /* 000010A8 "40INTAa{" */
0x61,0x0A,0x80,0x61,0xA0,0x24,0x92,0x93, /* 000010B0 "a..a.$.." */
0x61,0x0A,0x80,0x7B,0x5E,0x5E,0x2F,0x03, /* 000010B8 "a..{^^/." */
0x50,0x43,0x49,0x30,0x50,0x58,0x34,0x30, /* 000010C0 "PCI0PX40" */
0x49,0x4E,0x54,0x41,0x0A,0x0F,0x60,0x70, /* 000010C8 "INTA..`p" */
0x01,0x62,0x79,0x62,0x60,0x49,0x52,0x51, /* 000010D0 ".byb`IRQ" */
0x57,0xA4,0x42,0x55,0x46,0x30,0x14,0x3C, /* 000010D8 "W.BUF0.<" */
0x5F,0x53,0x52,0x53,0x01,0x8B,0x68,0x01, /* 000010E0 "_SRS..h." */
0x49,0x52,0x51,0x57,0x81,0x49,0x52,0x51, /* 000010E8 "IRQW.IRQ" */
0x57,0x60,0x76,0x60,0x7B,0x5E,0x5E,0x2F, /* 000010F0 "W`v`{^^/" */
0x03,0x50,0x43,0x49,0x30,0x50,0x58,0x34, /* 000010F8 ".PCI0PX4" */
0x30,0x49,0x4E,0x54,0x41,0x0A,0x70,0x61, /* 00001100 "0INTA.pa" */
0x7D,0x61,0x60,0x5E,0x5E,0x2F,0x03,0x50, /* 00001108 "}a`^^/.P" */
0x43,0x49,0x30,0x50,0x58,0x34,0x30,0x49, /* 00001110 "CI0PX40I" */
0x4E,0x54,0x41,0x14,0x28,0x5F,0x53,0x54, /* 00001118 "NTA.(_ST" */
0x41,0x00,0x7B,0x5E,0x5E,0x2F,0x03,0x50, /* 00001120 "A.{^^/.P" */
0x43,0x49,0x30,0x50,0x58,0x34,0x30,0x49, /* 00001128 "CI0PX40I" */
0x4E,0x54,0x41,0x0A,0x80,0x60,0xA0,0x08, /* 00001130 "NTA..`.." */
0x93,0x60,0x0A,0x80,0xA4,0x0A,0x09,0xA1, /* 00001138 ".`......" */
0x04,0xA4,0x0A,0x0B,0x5B,0x82,0x44,0x12, /* 00001140 "....[.D." */
0x50,0x49,0x4C,0x42,0x08,0x5F,0x48,0x49, /* 00001148 "PILB._HI" */
0x44,0x0C,0x41,0xD0,0x0C,0x0F,0x08,0x5F, /* 00001150 "D.A...._" */
0x55,0x49,0x44,0x0A,0x02,0x14,0x1A,0x5F, /* 00001158 "UID...._" */
0x50,0x52,0x53,0x00,0x08,0x42,0x55,0x46, /* 00001160 "PRS..BUF" */
0x30,0x11,0x09,0x0A,0x06,0x23,0x00,0x88, /* 00001168 "0....#.." */
0x18,0x79,0x00,0xA4,0x42,0x55,0x46,0x30, /* 00001170 ".y..BUF0" */
0x14,0x29,0x5F,0x44,0x49,0x53,0x00,0x7D, /* 00001178 ".)_DIS.}" */
0x5E,0x5E,0x2F,0x03,0x50,0x43,0x49,0x30, /* 00001180 "^^/.PCI0" */
0x50,0x58,0x34,0x30,0x49,0x4E,0x54,0x42, /* 00001188 "PX40INTB" */
0x0A,0x80,0x5E,0x5E,0x2F,0x03,0x50,0x43, /* 00001190 "..^^/.PC" */
0x49,0x30,0x50,0x58,0x34,0x30,0x49,0x4E, /* 00001198 "I0PX40IN" */
0x54,0x42,0x14,0x41,0x06,0x5F,0x43,0x52, /* 000011A0 "TB.A._CR" */
0x53,0x00,0x08,0x42,0x55,0x46,0x30,0x11, /* 000011A8 "S..BUF0." */
0x09,0x0A,0x06,0x23,0x00,0x00,0x18,0x79, /* 000011B0 "...#...y" */
0x00,0x8B,0x42,0x55,0x46,0x30,0x01,0x49, /* 000011B8 "..BUF0.I" */
0x52,0x51,0x57,0x70,0x5E,0x5E,0x2F,0x03, /* 000011C0 "RQWp^^/." */
0x50,0x43,0x49,0x30,0x50,0x58,0x34,0x30, /* 000011C8 "PCI0PX40" */
0x49,0x4E,0x54,0x42,0x61,0x7B,0x61,0x0A, /* 000011D0 "INTBa{a." */
0x80,0x61,0xA0,0x24,0x92,0x93,0x61,0x0A, /* 000011D8 ".a.$..a." */
0x80,0x7B,0x5E,0x5E,0x2F,0x03,0x50,0x43, /* 000011E0 ".{^^/.PC" */
0x49,0x30,0x50,0x58,0x34,0x30,0x49,0x4E, /* 000011E8 "I0PX40IN" */
0x54,0x42,0x0A,0x0F,0x60,0x70,0x01,0x62, /* 000011F0 "TB..`p.b" */
0x79,0x62,0x60,0x49,0x52,0x51,0x57,0xA4, /* 000011F8 "yb`IRQW." */
0x42,0x55,0x46,0x30,0x14,0x3C,0x5F,0x53, /* 00001200 "BUF0.<_S" */
0x52,0x53,0x01,0x8B,0x68,0x01,0x49,0x52, /* 00001208 "RS..h.IR" */
0x51,0x57,0x81,0x49,0x52,0x51,0x57,0x60, /* 00001210 "QW.IRQW`" */
0x76,0x60,0x7B,0x5E,0x5E,0x2F,0x03,0x50, /* 00001218 "v`{^^/.P" */
0x43,0x49,0x30,0x50,0x58,0x34,0x30,0x49, /* 00001220 "CI0PX40I" */
0x4E,0x54,0x42,0x0A,0x70,0x61,0x7D,0x61, /* 00001228 "NTB.pa}a" */
0x60,0x5E,0x5E,0x2F,0x03,0x50,0x43,0x49, /* 00001230 "`^^/.PCI" */
0x30,0x50,0x58,0x34,0x30,0x49,0x4E,0x54, /* 00001238 "0PX40INT" */
0x42,0x14,0x28,0x5F,0x53,0x54,0x41,0x00, /* 00001240 "B.(_STA." */
0x7B,0x5E,0x5E,0x2F,0x03,0x50,0x43,0x49, /* 00001248 "{^^/.PCI" */
0x30,0x50,0x58,0x34,0x30,0x49,0x4E,0x54, /* 00001250 "0PX40INT" */
0x42,0x0A,0x80,0x60,0xA0,0x08,0x93,0x60, /* 00001258 "B..`...`" */
0x0A,0x80,0xA4,0x0A,0x09,0xA1,0x04,0xA4, /* 00001260 "........" */
0x0A,0x0B,0x5B,0x82,0x44,0x12,0x50,0x49, /* 00001268 "..[.D.PI" */
0x4C,0x44,0x08,0x5F,0x48,0x49,0x44,0x0C, /* 00001270 "LD._HID." */
0x41,0xD0,0x0C,0x0F,0x08,0x5F,0x55,0x49, /* 00001278 "A...._UI" */
0x44,0x0A,0x04,0x14,0x1A,0x5F,0x50,0x52, /* 00001280 "D...._PR" */
0x53,0x00,0x08,0x42,0x55,0x46,0x30,0x11, /* 00001288 "S..BUF0." */
0x09,0x0A,0x06,0x23,0x00,0x84,0x18,0x79, /* 00001290 "...#...y" */
0x00,0xA4,0x42,0x55,0x46,0x30,0x14,0x29, /* 00001298 "..BUF0.)" */
0x5F,0x44,0x49,0x53,0x00,0x7D,0x5E,0x5E, /* 000012A0 "_DIS.}^^" */
0x2F,0x03,0x50,0x43,0x49,0x30,0x50,0x58, /* 000012A8 "/.PCI0PX" */
0x34,0x30,0x49,0x4E,0x54,0x44,0x0A,0x80, /* 000012B0 "40INTD.." */
0x5E,0x5E,0x2F,0x03,0x50,0x43,0x49,0x30, /* 000012B8 "^^/.PCI0" */
0x50,0x58,0x34,0x30,0x49,0x4E,0x54,0x44, /* 000012C0 "PX40INTD" */
0x14,0x41,0x06,0x5F,0x43,0x52,0x53,0x00, /* 000012C8 ".A._CRS." */
0x08,0x42,0x55,0x46,0x30,0x11,0x09,0x0A, /* 000012D0 ".BUF0..." */
0x06,0x23,0x00,0x00,0x18,0x79,0x00,0x8B, /* 000012D8 ".#...y.." */
0x42,0x55,0x46,0x30,0x01,0x49,0x52,0x51, /* 000012E0 "BUF0.IRQ" */
0x57,0x70,0x5E,0x5E,0x2F,0x03,0x50,0x43, /* 000012E8 "Wp^^/.PC" */
0x49,0x30,0x50,0x58,0x34,0x30,0x49,0x4E, /* 000012F0 "I0PX40IN" */
0x54,0x44,0x61,0x7B,0x61,0x0A,0x80,0x61, /* 000012F8 "TDa{a..a" */
0xA0,0x24,0x92,0x93,0x61,0x0A,0x80,0x7B, /* 00001300 ".$..a..{" */
0x5E,0x5E,0x2F,0x03,0x50,0x43,0x49,0x30, /* 00001308 "^^/.PCI0" */
0x50,0x58,0x34,0x30,0x49,0x4E,0x54,0x44, /* 00001310 "PX40INTD" */
0x0A,0x0F,0x60,0x70,0x01,0x62,0x79,0x62, /* 00001318 "..`p.byb" */
0x60,0x49,0x52,0x51,0x57,0xA4,0x42,0x55, /* 00001320 "`IRQW.BU" */
0x46,0x30,0x14,0x3C,0x5F,0x53,0x52,0x53, /* 00001328 "F0.<_SRS" */
0x01,0x8B,0x68,0x01,0x49,0x52,0x51,0x57, /* 00001330 "..h.IRQW" */
0x81,0x49,0x52,0x51,0x57,0x60,0x76,0x60, /* 00001338 ".IRQW`v`" */
0x7B,0x5E,0x5E,0x2F,0x03,0x50,0x43,0x49, /* 00001340 "{^^/.PCI" */
0x30,0x50,0x58,0x34,0x30,0x49,0x4E,0x54, /* 00001348 "0PX40INT" */
0x44,0x0A,0x70,0x61,0x7D,0x61,0x60,0x5E, /* 00001350 "D.pa}a`^" */
0x5E,0x2F,0x03,0x50,0x43,0x49,0x30,0x50, /* 00001358 "^/.PCI0P" */
0x58,0x34,0x30,0x49,0x4E,0x54,0x44,0x14, /* 00001360 "X40INTD." */
0x28,0x5F,0x53,0x54,0x41,0x00,0x7B,0x5E, /* 00001368 "(_STA.{^" */
0x5E,0x2F,0x03,0x50,0x43,0x49,0x30,0x50, /* 00001370 "^/.PCI0P" */
0x58,0x34,0x30,0x49,0x4E,0x54,0x44,0x0A, /* 00001378 "X40INTD." */
0x80,0x60,0xA0,0x08,0x93,0x60,0x0A,0x80, /* 00001380 ".`...`.." */
0xA4,0x0A,0x09,0xA1,0x04,0xA4,0x0A,0x0B, /* 00001388 "........" */
0x5B,0x82,0x0F,0x53,0x4C,0x50,0x42,0x08, /* 00001390 "[..SLPB." */
0x5F,0x48,0x49,0x44,0x0C,0x41,0xD0,0x0C, /* 00001398 "_HID.A.." */
0x0E,0x5B,0x82,0x80,0xF4,0x01,0x50,0x43, /* 000013A0 ".[....PC" */
0x49,0x30,0x14,0x49,0x09,0x5F,0x49,0x4E, /* 000013A8 "I0.I._IN" */
0x49,0x00,0xA0,0x22,0x4F,0x53,0x43,0x50, /* 000013B0 "I.."OSCP" */
0x5F,0x4F,0x53,0x5F,0x0D,0x4D,0x69,0x63, /* 000013B8 "_OS_.Mic" */
0x72,0x6F,0x73,0x6F,0x66,0x74,0x20,0x57, /* 000013C0 "rosoft W" */
0x69,0x6E,0x64,0x6F,0x77,0x73,0x00,0x70, /* 000013C8 "indows.p" */
0x00,0x4F,0x53,0x54,0x50,0xA1,0x4E,0x06, /* 000013D0 ".OSTP.N." */
0xA0,0x25,0x4F,0x53,0x43,0x50,0x5F,0x4F, /* 000013D8 ".%OSCP_O" */
0x53,0x5F,0x0D,0x4D,0x69,0x63,0x72,0x6F, /* 000013E0 "S_.Micro" */
0x73,0x6F,0x66,0x74,0x20,0x57,0x69,0x6E, /* 000013E8 "soft Win" */
0x64,0x6F,0x77,0x73,0x20,0x4E,0x54,0x00, /* 000013F0 "dows NT." */
0x70,0x01,0x4F,0x53,0x54,0x50,0xA1,0x45, /* 000013F8 "p.OSTP.E" */
0x04,0xA0,0x39,0x4F,0x53,0x43,0x50,0x5F, /* 00001400 "..9OSCP_" */
0x4F,0x53,0x5F,0x0D,0x4D,0x69,0x63,0x72, /* 00001408 "OS_.Micr" */
0x6F,0x73,0x6F,0x66,0x74,0x20,0x57,0x69, /* 00001410 "osoft Wi" */
0x6E,0x64,0x6F,0x77,0x73,0x4D,0x45,0x3A, /* 00001418 "ndowsME:" */
0x20,0x4D,0x69,0x6C,0x6C,0x65,0x6E,0x6E, /* 00001420 " Millenn" */
0x69,0x75,0x6D,0x20,0x45,0x64,0x69,0x74, /* 00001428 "ium Edit" */
0x69,0x6F,0x6E,0x00,0x70,0x0A,0x02,0x4F, /* 00001430 "ion.p..O" */
0x53,0x54,0x50,0xA1,0x08,0x70,0x0A,0x07, /* 00001438 "STP..p.." */
0x4F,0x53,0x54,0x50,0x08,0x5F,0x48,0x49, /* 00001440 "OSTP._HI" */
0x44,0x0C,0x41,0xD0,0x0A,0x03,0x08,0x5F, /* 00001448 "D.A...._" */
0x41,0x44,0x52,0x00,0x08,0x50,0x42,0x52, /* 00001450 "ADR..PBR" */
0x53,0x11,0x48,0x0F,0x0A,0xF4,0x88,0x0D, /* 00001458 "S.H....." */
0x00,0x02,0x0C,0x00,0x00,0x00,0x00,0x00, /* 00001460 "........" */
0xFF,0x00,0x00,0x00,0x00,0x01,0x47,0x01, /* 00001468 "......G." */
0xF8,0x0C,0xF8,0x0C,0x01,0x08,0x88,0x0D, /* 00001470 "........" */
0x00,0x01,0x0C,0x03,0x00,0x00,0x00,0x00, /* 00001478 "........" */
0xF7,0x0C,0x00,0x00,0xF8,0x0C,0x88,0x0D, /* 00001480 "........" */
0x00,0x01,0x0C,0x03,0x00,0x00,0x00,0x0D, /* 00001488 "........" */
0xFF,0xFF,0x00,0x00,0x00,0xF3,0x87,0x17, /* 00001490 "........" */
0x00,0x00,0x0C,0x03,0x00,0x00,0x00,0x00, /* 00001498 "........" */
0x00,0x00,0x0A,0x00,0xFF,0xFF,0x0B,0x00, /* 000014A0 "........" */
0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00, /* 000014A8 "........" */
0x87,0x17,0x00,0x00,0x0C,0x02,0x00,0x00, /* 000014B0 "........" */
0x00,0x00,0x00,0x80,0x0C,0x00,0xFF,0xBF, /* 000014B8 "........" */
0x0C,0x00,0x00,0x00,0x00,0x00,0x00,0x40, /* 000014C0 ".......@" */
0x00,0x00,0x87,0x18,0x00,0x00,0x0C,0x03, /* 000014C8 "........" */
0x00,0x00,0x00,0x00,0x00,0x00,0x0D,0x00, /* 000014D0 "........" */
0xFF,0x3F,0x0D,0x00,0x00,0x00,0x00,0x00, /* 000014D8 ".?......" */
0x00,0x40,0x00,0x00,0x00,0x87,0x18,0x00, /* 000014E0 ".@......" */
0x00,0x0C,0x03,0x00,0x00,0x00,0x00,0x00, /* 000014E8 "........" */
0x40,0x0D,0x00,0xFF,0x7F,0x0D,0x00,0x00, /* 000014F0 "@......." */
0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00, /* 000014F8 "....@..." */
0x87,0x18,0x00,0x00,0x0C,0x03,0x00,0x00, /* 00001500 "........" */
0x00,0x00,0x00,0x80,0x0D,0x00,0xFF,0xBF, /* 00001508 "........" */
0x0D,0x00,0x00,0x00,0x00,0x00,0x00,0x40, /* 00001510 ".......@" */
0x00,0x00,0x00,0x87,0x18,0x00,0x00,0x0C, /* 00001518 "........" */
0x03,0x00,0x00,0x00,0x00,0x00,0xC0,0x0D, /* 00001520 "........" */
0x00,0xFF,0xFF,0x0D,0x00,0x00,0x00,0x00, /* 00001528 "........" */
0x00,0x00,0x40,0x00,0x00,0x00,0x87,0x17, /* 00001530 "..@....." */
0x00,0x00,0x0C,0x03,0x00,0x00,0x00,0x00, /* 00001538 "........" */
0x00,0x00,0x00,0x02,0xFF,0xFF,0xDF,0xFF, /* 00001540 "........" */
0x00,0x00,0x00,0x00,0x00,0x00,0xFC,0xFD, /* 00001548 "........" */
0x79,0x00,0x14,0x43,0x05,0x5F,0x43,0x52, /* 00001550 "y..C._CR" */
0x53,0x00,0x8A,0x50,0x42,0x52,0x53,0x0A, /* 00001558 "S..PBRS." */
0xE2,0x4D,0x45,0x4D,0x4C,0x8A,0x50,0x42, /* 00001560 ".MEML.PB" */
0x52,0x53,0x0A,0xEE,0x4C,0x45,0x4E,0x4D, /* 00001568 "RS..LENM" */
0x79,0x43,0x34,0x45,0x45,0x0A,0x08,0x61, /* 00001570 "yC4EE..a" */
0x70,0x43,0x34,0x45,0x44,0x62,0x72,0x61, /* 00001578 "pC4EDbra" */
0x62,0x61,0x7A,0x61,0x0A,0x02,0x61,0x72, /* 00001580 "baza..ar" */
0x61,0x01,0x61,0x79,0x61,0x0A,0x14,0x4D, /* 00001588 "a.aya..M" */
0x45,0x4D,0x4C,0x74,0x0C,0x00,0x00,0xE0, /* 00001590 "EMLt...." */
0xFF,0x4D,0x45,0x4D,0x4C,0x4C,0x45,0x4E, /* 00001598 ".MEMLLEN" */
0x4D,0xA4,0x50,0x42,0x52,0x53,0x14,0x09, /* 000015A0 "M.PBRS.." */
0x5F,0x53,0x54,0x41,0x00,0xA4,0x0A,0x0F, /* 000015A8 "_STA...." */
0x08,0x5F,0x50,0x52,0x54,0x12,0x40,0x08, /* 000015B0 "._PRT.@." */
0x09,0x12,0x0B,0x04,0x0B,0xFF,0xFF,0x01, /* 000015B8 "........" */
0x50,0x49,0x4C,0x42,0x00,0x12,0x0D,0x04, /* 000015C0 "PILB...." */
0x0C,0xFF,0xFF,0x02,0x00,0x00,0x50,0x49, /* 000015C8 "......PI" */
0x4C,0x41,0x00,0x12,0x0D,0x04,0x0C,0xFF, /* 000015D0 "LA......" */
0xFF,0x03,0x00,0x00,0x50,0x49,0x4C,0x41, /* 000015D8 "....PILA" */
0x00,0x12,0x0D,0x04,0x0C,0xFF,0xFF,0x03, /* 000015E0 "........" */
0x00,0x01,0x50,0x49,0x4C,0x41,0x00,0x12, /* 000015E8 "..PILA.." */
0x0D,0x04,0x0C,0xFF,0xFF,0x04,0x00,0x00, /* 000015F0 "........" */
0x50,0x49,0x4C,0x44,0x00,0x12,0x0D,0x04, /* 000015F8 "PILD...." */
0x0C,0xFF,0xFF,0x05,0x00,0x00,0x50,0x49, /* 00001600 "......PI" */
0x4C,0x44,0x00,0x12,0x0D,0x04,0x0C,0xFF, /* 00001608 "LD......" */
0xFF,0x06,0x00,0x00,0x50,0x49,0x4C,0x44, /* 00001610 "....PILD" */
0x00,0x12,0x0D,0x04,0x0C,0xFF,0xFF,0x06, /* 00001618 "........" */
0x00,0x01,0x50,0x49,0x4C,0x44,0x00,0x12, /* 00001620 "..PILD.." */
0x0E,0x04,0x0C,0xFF,0xFF,0x07,0x00,0x0A, /* 00001628 "........" */
0x03,0x50,0x49,0x4C,0x44,0x00,0x5B,0x82, /* 00001630 ".PILD.[." */
0x3A,0x4F,0x42,0x4C,0x4E,0x08,0x5F,0x41, /* 00001638 ":OBLN._A" */
0x44,0x52,0x0C,0x00,0x00,0x04,0x00,0x08, /* 00001640 "DR......" */
0x5F,0x50,0x52,0x57,0x12,0x06,0x02,0x0A, /* 00001648 "_PRW...." */
0x0C,0x0A,0x05,0x5B,0x80,0x53,0x42,0x4C, /* 00001650 "...[.SBL" */
0x4E,0x02,0x00,0x0A,0xFF,0x5B,0x81,0x13, /* 00001658 "N....[.." */
0x53,0x42,0x4C,0x4E,0x01,0x00,0x40,0x2A, /* 00001660 "SBLN..@*" */
0x50,0x57,0x52,0x53,0x08,0x50,0x4D,0x45, /* 00001668 "PWRS.PME" */
0x53,0x08,0x5B,0x82,0x3A,0x4F,0x5A,0x36, /* 00001670 "S.[.:OZ6" */
0x38,0x08,0x5F,0x41,0x44,0x52,0x0C,0x00, /* 00001678 "8._ADR.." */
0x00,0x03,0x00,0x08,0x5F,0x50,0x52,0x57, /* 00001680 "...._PRW" */
0x12,0x06,0x02,0x0A,0x0C,0x0A,0x03,0x5B, /* 00001688 ".......[" */
0x80,0x53,0x42,0x36,0x38,0x02,0x00,0x0A, /* 00001690 ".SB68..." */
0xFF,0x5B,0x81,0x13,0x53,0x42,0x36,0x38, /* 00001698 ".[..SB68" */
0x01,0x00,0x40,0x52,0x50,0x57,0x52,0x53, /* 000016A0 "..@RPWRS" */
0x08,0x50,0x4D,0x45,0x53,0x08,0x5B,0x82, /* 000016A8 ".PMES.[." */
0x18,0x4F,0x42,0x4D,0x4F,0x08,0x5F,0x41, /* 000016B0 ".OBMO._A" */
0x44,0x52,0x0A,0x02,0x08,0x5F,0x50,0x52, /* 000016B8 "DR..._PR" */
0x57,0x12,0x06,0x02,0x0A,0x0D,0x0A,0x03, /* 000016C0 "W......." */
0x5B,0x82,0x0F,0x55,0x53,0x42,0x30,0x08, /* 000016C8 "[..USB0." */
0x5F,0x41,0x44,0x52,0x0C,0x02,0x00,0x07, /* 000016D0 "_ADR...." */
0x00,0x5B,0x82,0x41,0xCC,0x50,0x58,0x34, /* 000016D8 ".[.A.PX4" */
0x30,0x08,0x5F,0x41,0x44,0x52,0x0C,0x00, /* 000016E0 "0._ADR.." */
0x00,0x07,0x00,0x5B,0x80,0x53,0x42,0x34, /* 000016E8 "...[.SB4" */
0x30,0x02,0x0A,0x60,0x0A,0x04,0x5B,0x81, /* 000016F0 "0..`..[." */
0x1A,0x53,0x42,0x34,0x30,0x01,0x49,0x4E, /* 000016F8 ".SB40.IN" */
0x54,0x41,0x08,0x49,0x4E,0x54,0x42,0x08, /* 00001700 "TA.INTB." */
0x49,0x4E,0x54,0x43,0x08,0x49,0x4E,0x54, /* 00001708 "INTC.INT" */
0x44,0x08,0x5B,0x82,0x42,0x09,0x4D,0x42, /* 00001710 "D.[.B.MB" */
0x52,0x53,0x08,0x5F,0x48,0x49,0x44,0x0C, /* 00001718 "RS._HID." */
0x41,0xD0,0x0C,0x02,0x08,0x4D,0x53,0x42, /* 00001720 "A....MSB" */
0x46,0x11,0x46,0x06,0x0A,0x62,0x47,0x01, /* 00001728 "F.F..bG." */
0x2E,0x00,0x2E,0x00,0x01,0x02,0x47,0x01, /* 00001730 "......G." */
0x00,0xF0,0x00,0xF0,0x01,0x40,0x47,0x01, /* 00001738 ".....@G." */
0x00,0xF1,0x00,0xF1,0x01,0x10,0x47,0x01, /* 00001740 "......G." */
0x50,0xF0,0x50,0xF0,0x01,0x08,0x47,0x01, /* 00001748 "P.P...G." */
0x22,0x00,0x22,0x00,0x01,0x01,0x47,0x01, /* 00001750 ""."...G." */
0xB2,0x00,0xB2,0x00,0x01,0x02,0x47,0x01, /* 00001758 "......G." */
0xBD,0x03,0xBD,0x03,0x01,0x02,0x85,0x11, /* 00001760 "........" */
0x00,0x01,0x00,0xB1,0xDF,0xF7,0x00,0xB1, /* 00001768 "........" */
0xDF,0xF7,0x01,0x00,0x00,0x00,0x00,0x0F, /* 00001770 "........" */
0x00,0x00,0x85,0x11,0x00,0x00,0x00,0x00, /* 00001778 "........" */
0xFF,0xFF,0x00,0x00,0xFF,0xFF,0x00,0x00, /* 00001780 "........" */
0x00,0x00,0x00,0x00,0x01,0x00,0x79,0x00, /* 00001788 "......y." */
0x14,0x0B,0x5F,0x43,0x52,0x53,0x00,0xA4, /* 00001790 ".._CRS.." */
0x4D,0x53,0x42,0x46,0x14,0x09,0x5F,0x53, /* 00001798 "MSBF.._S" */
0x54,0x41,0x00,0xA4,0x0A,0x0F,0x08,0x4A, /* 000017A0 "TA.....J" */
0x4B,0x42,0x31,0x0A,0x3B,0x5B,0x80,0x45, /* 000017A8 "KB1.;[.E" */
0x43,0x4D,0x53,0x01,0x0A,0x72,0x0A,0x02, /* 000017B0 "CMS..r.." */
0x5B,0x81,0x10,0x45,0x43,0x4D,0x53,0x01, /* 000017B8 "[..ECMS." */
0x45,0x49,0x4E,0x44,0x08,0x45,0x44,0x41, /* 000017C0 "EIND.EDA" */
0x54,0x08,0x5B,0x86,0x3C,0x45,0x49,0x4E, /* 000017C8 "T.[.<EIN" */
0x44,0x45,0x44,0x41,0x54,0x01,0x00,0x48, /* 000017D0 "DEDAT..H" */
0x0C,0x43,0x32,0x31,0x39,0x08,0x00,0x10, /* 000017D8 ".C219..." */
0x54,0x50,0x43,0x50,0x08,0x00,0x10,0x54, /* 000017E0 "TPCP...T" */
0x50,0x53,0x50,0x08,0x00,0x18,0x43,0x32, /* 000017E8 "PSP...C2" */
0x32,0x33,0x08,0x43,0x32,0x32,0x34,0x08, /* 000017F0 "23.C224." */
0x00,0x48,0x14,0x43,0x32,0x34,0x45,0x08, /* 000017F8 ".H.C24E." */
0x00,0x40,0x16,0x54,0x42,0x55,0x54,0x08, /* 00001800 ".@.TBUT." */
0x5B,0x80,0x44,0x42,0x47,0x31,0x01,0x0A, /* 00001808 "[.DBG1.." */
0x80,0x01,0x5B,0x81,0x0B,0x44,0x42,0x47, /* 00001810 "..[..DBG" */
0x31,0x01,0x50,0x58,0x38,0x30,0x08,0x5B, /* 00001818 "1.PX80.[" */
0x80,0x44,0x45,0x4C,0x30,0x01,0x0A,0xED, /* 00001820 ".DEL0..." */
0x01,0x5B,0x81,0x0B,0x44,0x45,0x4C,0x30, /* 00001828 ".[..DEL0" */
0x01,0x44,0x4C,0x41,0x59,0x08,0x5B,0x80, /* 00001830 ".DLAY.[." */
0x53,0x4D,0x49,0x31,0x01,0x0A,0xB2,0x0A, /* 00001838 "SMI1...." */
0x02,0x5B,0x81,0x10,0x53,0x4D,0x49,0x31, /* 00001840 ".[..SMI1" */
0x01,0x50,0x58,0x42,0x32,0x08,0x50,0x58, /* 00001848 ".PXB2.PX" */
0x42,0x33,0x08,0x5B,0x82,0x4F,0x0A,0x50, /* 00001850 "B3.[.O.P" */
0x49,0x43,0x30,0x08,0x5F,0x48,0x49,0x44, /* 00001858 "IC0._HID" */
0x0B,0x41,0xD0,0x08,0x5F,0x43,0x52,0x53, /* 00001860 ".A.._CRS" */
0x11,0x41,0x09,0x0A,0x8D,0x47,0x01,0x20, /* 00001868 ".A...G. " */
0x00,0x20,0x00,0x01,0x02,0x47,0x01,0x24, /* 00001870 ". ...G.$" */
0x00,0x24,0x00,0x01,0x02,0x47,0x01,0x28, /* 00001878 ".$...G.(" */
0x00,0x28,0x00,0x01,0x02,0x47,0x01,0x2C, /* 00001880 ".(...G.," */
0x00,0x2C,0x00,0x01,0x02,0x47,0x01,0x30, /* 00001888 ".,...G.0" */
0x00,0x30,0x00,0x01,0x02,0x47,0x01,0x34, /* 00001890 ".0...G.4" */
0x00,0x34,0x00,0x01,0x02,0x47,0x01,0x38, /* 00001898 ".4...G.8" */
0x00,0x38,0x00,0x01,0x02,0x47,0x01,0x3C, /* 000018A0 ".8...G.<" */
0x00,0x3C,0x00,0x01,0x02,0x47,0x01,0xA0, /* 000018A8 ".<...G.." */
0x00,0xA0,0x00,0x01,0x02,0x47,0x01,0xA4, /* 000018B0 ".....G.." */
0x00,0xA4,0x00,0x01,0x02,0x47,0x01,0xA8, /* 000018B8 ".....G.." */
0x00,0xA8,0x00,0x01,0x02,0x47,0x01,0xAC, /* 000018C0 ".....G.." */
0x00,0xAC,0x00,0x01,0x02,0x47,0x01,0xB0, /* 000018C8 ".....G.." */
0x00,0xB0,0x00,0x01,0x02,0x47,0x01,0xB4, /* 000018D0 ".....G.." */
0x00,0xB4,0x00,0x01,0x02,0x47,0x01,0xB8, /* 000018D8 ".....G.." */
0x00,0xB8,0x00,0x01,0x02,0x47,0x01,0xBC, /* 000018E0 ".....G.." */
0x00,0xBC,0x00,0x01,0x02,0x47,0x01,0xD0, /* 000018E8 ".....G.." */
0x04,0xD0,0x04,0x01,0x02,0x22,0x04,0x00, /* 000018F0 ".....".." */
0x79,0x00,0x14,0x09,0x5F,0x53,0x54,0x41, /* 000018F8 "y..._STA" */
0x00,0xA4,0x0A,0x0F,0x5B,0x82,0x40,0x05, /* 00001900 "....[.@." */
0x44,0x4D,0x41,0x30,0x08,0x5F,0x48,0x49, /* 00001908 "DMA0._HI" */
0x44,0x0C,0x41,0xD0,0x02,0x00,0x08,0x5F, /* 00001910 "D.A...._" */
0x43,0x52,0x53,0x11,0x30,0x0A,0x2D,0x47, /* 00001918 "CRS.0.-G" */
0x01,0x00,0x00,0x00,0x00,0x01,0x20,0x47, /* 00001920 "...... G" */
0x01,0x81,0x00,0x81,0x00,0x01,0x0F,0x47, /* 00001928 ".......G" */
0x01,0x90,0x00,0x90,0x00,0x01,0x02,0x47, /* 00001930 ".......G" */
0x01,0x93,0x00,0x93,0x00,0x01,0x0D,0x47, /* 00001938 ".......G" */
0x01,0xC0,0x00,0xC0,0x00,0x01,0x20,0x2A, /* 00001940 "...... *" */
0x10,0x00,0x79,0x00,0x14,0x09,0x5F,0x53, /* 00001948 "..y..._S" */
0x54,0x41,0x00,0xA4,0x0A,0x0F,0x5B,0x82, /* 00001950 "TA....[." */
0x37,0x54,0x4D,0x52,0x30,0x08,0x5F,0x48, /* 00001958 "7TMR0._H" */
0x49,0x44,0x0C,0x41,0xD0,0x01,0x00,0x08, /* 00001960 "ID.A...." */
0x5F,0x43,0x52,0x53,0x11,0x18,0x0A,0x15, /* 00001968 "_CRS...." */
0x47,0x01,0x40,0x00,0x40,0x00,0x01,0x04, /* 00001970 "G.@.@..." */
0x47,0x01,0x50,0x00,0x50,0x00,0x10,0x04, /* 00001978 "G.P.P..." */
0x22,0x01,0x00,0x79,0x00,0x14,0x09,0x5F, /* 00001980 ""..y..._" */
0x53,0x54,0x41,0x00,0xA4,0x0A,0x0F,0x5B, /* 00001988 "STA....[" */
0x82,0x2C,0x53,0x50,0x4B,0x30,0x08,0x5F, /* 00001990 ".,SPK0._" */
0x48,0x49,0x44,0x0C,0x41,0xD0,0x08,0x00, /* 00001998 "HID.A..." */
0x08,0x5F,0x43,0x52,0x53,0x11,0x0D,0x0A, /* 000019A0 "._CRS..." */
0x0A,0x47,0x01,0x61,0x00,0x61,0x00,0x01, /* 000019A8 ".G.a.a.." */
0x01,0x79,0x00,0x14,0x09,0x5F,0x53,0x54, /* 000019B0 ".y..._ST" */
0x41,0x00,0xA4,0x0A,0x0F,0x5B,0x82,0x2F, /* 000019B8 "A....[./" */
0x4D,0x41,0x54,0x48,0x08,0x5F,0x48,0x49, /* 000019C0 "MATH._HI" */
0x44,0x0C,0x41,0xD0,0x0C,0x04,0x08,0x5F, /* 000019C8 "D.A...._" */
0x43,0x52,0x53,0x11,0x10,0x0A,0x0D,0x47, /* 000019D0 "CRS....G" */
0x01,0xF0,0x00,0xF0,0x00,0x01,0x10,0x22, /* 000019D8 "......."" */
0x00,0x20,0x79,0x00,0x14,0x09,0x5F,0x53, /* 000019E0 ". y..._S" */
0x54,0x41,0x00,0xA4,0x0A,0x0F,0x5B,0x82, /* 000019E8 "TA....[." */
0x4E,0x04,0x4B,0x42,0x43,0x30,0x08,0x5F, /* 000019F0 "N.KBC0._" */
0x48,0x49,0x44,0x0C,0x41,0xD0,0x03,0x03, /* 000019F8 "HID.A..." */
0x08,0x5F,0x43,0x52,0x53,0x11,0x18,0x0A, /* 00001A00 "._CRS..." */
0x15,0x47,0x01,0x60,0x00,0x60,0x00,0x01, /* 00001A08 ".G.`.`.." */
0x01,0x47,0x01,0x64,0x00,0x64,0x00,0x01, /* 00001A10 ".G.d.d.." */
0x01,0x22,0x02,0x00,0x79,0x00,0x14,0x1F, /* 00001A18 "."..y..." */
0x5F,0x53,0x54,0x41,0x00,0x7B,0x52,0x43, /* 00001A20 "_STA.{RC" */
0x4D,0x53,0x4A,0x4B,0x42,0x31,0x0A,0x10, /* 00001A28 "MSJKB1.." */
0x61,0xA0,0x07,0x93,0x61,0x0A,0x10,0xA4, /* 00001A30 "a...a..." */
0x00,0xA1,0x04,0xA4,0x0A,0x0F,0x5B,0x82, /* 00001A38 "......[." */
0x4E,0x04,0x4B,0x42,0x43,0x31,0x08,0x5F, /* 00001A40 "N.KBC1._" */
0x48,0x49,0x44,0x0C,0x41,0xD0,0x03,0x20, /* 00001A48 "HID.A.. " */
0x08,0x5F,0x43,0x52,0x53,0x11,0x18,0x0A, /* 00001A50 "._CRS..." */
0x15,0x47,0x01,0x60,0x00,0x60,0x00,0x01, /* 00001A58 ".G.`.`.." */
0x01,0x47,0x01,0x64,0x00,0x64,0x00,0x01, /* 00001A60 ".G.d.d.." */
0x01,0x22,0x02,0x00,0x79,0x00,0x14,0x1F, /* 00001A68 "."..y..." */
0x5F,0x53,0x54,0x41,0x00,0x7B,0x52,0x43, /* 00001A70 "_STA.{RC" */
0x4D,0x53,0x4A,0x4B,0x42,0x31,0x0A,0x10, /* 00001A78 "MSJKB1.." */
0x61,0xA0,0x08,0x93,0x61,0x0A,0x10,0xA4, /* 00001A80 "a...a..." */
0x0A,0x0F,0xA1,0x03,0xA4,0x00,0x5B,0x82, /* 00001A88 "......[." */
0x2F,0x52,0x54,0x43,0x30,0x08,0x5F,0x48, /* 00001A90 "/RTC0._H" */
0x49,0x44,0x0C,0x41,0xD0,0x0B,0x00,0x08, /* 00001A98 "ID.A...." */
0x5F,0x43,0x52,0x53,0x11,0x10,0x0A,0x0D, /* 00001AA0 "_CRS...." */
0x47,0x01,0x70,0x00,0x70,0x00,0x01,0x08, /* 00001AA8 "G.p.p..." */
0x22,0x00,0x01,0x79,0x00,0x14,0x09,0x5F, /* 00001AB0 ""..y..._" */
0x53,0x54,0x41,0x00,0xA4,0x0A,0x0F,0x5B, /* 00001AB8 "STA....[" */
0x80,0x4E,0x53,0x49,0x4F,0x01,0x0A,0x2E, /* 00001AC0 ".NSIO..." */
0x0A,0x02,0x5B,0x81,0x10,0x4E,0x53,0x49, /* 00001AC8 "..[..NSI" */
0x4F,0x01,0x49,0x4E,0x44,0x58,0x08,0x44, /* 00001AD0 "O.INDX.D" */
0x41,0x54,0x41,0x08,0x5B,0x86,0x42,0x08, /* 00001AD8 "ATA.[.B." */
0x49,0x4E,0x44,0x58,0x44,0x41,0x54,0x41, /* 00001AE0 "INDXDATA" */
0x01,0x46,0x45,0x52,0x5F,0x08,0x46,0x41, /* 00001AE8 ".FER_.FA" */
0x52,0x5F,0x08,0x50,0x54,0x52,0x5F,0x08, /* 00001AF0 "R_.PTR_." */
0x00,0x08,0x50,0x43,0x52,0x5F,0x08,0x00, /* 00001AF8 "..PCR_.." */
0x48,0x09,0x53,0x43,0x46,0x31,0x08,0x00, /* 00001B00 "H.SCF1.." */
0x10,0x50,0x4E,0x50,0x30,0x08,0x50,0x4E, /* 00001B08 ".PNP0.PN" */
0x50,0x31,0x08,0x00,0x48,0x11,0x53,0x43, /* 00001B10 "P1..H.SC" */
0x46,0x32,0x08,0x46,0x49,0x52,0x51,0x04, /* 00001B18 "F2.FIRQ." */
0x46,0x44,0x4D,0x41,0x03,0x00,0x01,0x50, /* 00001B20 "FDMA...P" */
0x42,0x41,0x4C,0x08,0x50,0x42,0x41,0x48, /* 00001B28 "BAL.PBAH" */
0x08,0x55,0x31,0x42,0x4C,0x08,0x55,0x31, /* 00001B30 ".U1BL.U1" */
0x42,0x48,0x08,0x55,0x32,0x42,0x4C,0x08, /* 00001B38 "BH.U2BL." */
0x55,0x32,0x42,0x48,0x08,0x46,0x42,0x41, /* 00001B40 "U2BH.FBA" */
0x4C,0x08,0x46,0x42,0x41,0x48,0x08,0x53, /* 00001B48 "L.FBAH.S" */
0x42,0x41,0x4C,0x08,0x53,0x42,0x41,0x48, /* 00001B50 "BAL.SBAH" */
0x08,0x00,0x18,0x50,0x4E,0x50,0x33,0x08, /* 00001B58 "...PNP3." */
0x5B,0x82,0x4B,0x22,0x49,0x52,0x31,0x5F, /* 00001B60 "[.K"IR1_" */
0x08,0x5F,0x48,0x49,0x44,0x0C,0x3A,0x63, /* 00001B68 "._HID.:c" */
0x60,0x01,0x08,0x5F,0x43,0x49,0x44,0x0C, /* 00001B70 "`.._CID." */
0x41,0xD0,0x05,0x11,0x14,0x1C,0x5F,0x53, /* 00001B78 "A....._S" */
0x54,0x41,0x00,0x7B,0x46,0x45,0x52,0x5F, /* 00001B80 "TA.{FER_" */
0x0A,0x04,0x60,0xA0,0x08,0x93,0x60,0x0A, /* 00001B88 "..`...`." */
0x04,0xA4,0x0A,0x0F,0xA1,0x04,0xA4,0x0A, /* 00001B90 "........" */
0x0D,0x14,0x11,0x5F,0x44,0x49,0x53,0x00, /* 00001B98 "..._DIS." */
0x7B,0x46,0x45,0x52,0x5F,0x0A,0xFB,0x46, /* 00001BA0 "{FER_..F" */
0x45,0x52,0x5F,0x14,0x48,0x0B,0x5F,0x43, /* 00001BA8 "ER_.H._C" */
0x52,0x53,0x00,0x08,0x42,0x55,0x46,0x30, /* 00001BB0 "RS..BUF0" */
0x11,0x13,0x0A,0x10,0x47,0x01,0xF8,0x92, /* 00001BB8 "....G..." */
0xF8,0x92,0x00,0x08,0x22,0x08,0x00,0x2A, /* 00001BC0 "...."..*" */
0x08,0x01,0x79,0x00,0x8B,0x42,0x55,0x46, /* 00001BC8 "..y..BUF" */
0x30,0x0A,0x02,0x49,0x4F,0x57,0x31,0x8B, /* 00001BD0 "0..IOW1." */
0x42,0x55,0x46,0x30,0x0A,0x04,0x49,0x4F, /* 00001BD8 "BUF0..IO" */
0x57,0x32,0x8B,0x42,0x55,0x46,0x30,0x0A, /* 00001BE0 "W2.BUF0." */
0x09,0x49,0x52,0x51,0x57,0x8C,0x42,0x55, /* 00001BE8 ".IRQW.BU" */
0x46,0x30,0x0A,0x0C,0x44,0x4D,0x41,0x56, /* 00001BF0 "F0..DMAV" */
0x7B,0x46,0x45,0x52,0x5F,0x0A,0x04,0x60, /* 00001BF8 "{FER_..`" */
0xA0,0x4E,0x05,0x93,0x60,0x0A,0x04,0x7B, /* 00001C00 ".N..`..{" */
0x55,0x32,0x42,0x4C,0x0A,0xFE,0x60,0x79, /* 00001C08 "U2BL..`y" */
0x60,0x0A,0x02,0x60,0x70,0x55,0x32,0x42, /* 00001C10 "`..`pU2B" */
0x48,0x61,0x7B,0x61,0x0A,0xFC,0x61,0x79, /* 00001C18 "Ha{a..ay" */
0x61,0x0A,0x08,0x61,0x7D,0x61,0x60,0x61, /* 00001C20 "a..a}a`a" */
0x70,0x61,0x49,0x4F,0x57,0x31,0x70,0x61, /* 00001C28 "paIOW1pa" */
0x49,0x4F,0x57,0x32,0x7B,0x50,0x4E,0x50, /* 00001C30 "IOW2{PNP" */
0x31,0x0A,0xF0,0x60,0x7A,0x60,0x0A,0x04, /* 00001C38 "1..`z`.." */
0x60,0x70,0x01,0x61,0x79,0x61,0x60,0x49, /* 00001C40 "`p.aya`I" */
0x52,0x51,0x57,0x7B,0x50,0x4E,0x50,0x33, /* 00001C48 "RQW{PNP3" */
0x0A,0x07,0x61,0x76,0x61,0x70,0x01,0x60, /* 00001C50 "..avap.`" */
0x79,0x60,0x61,0x44,0x4D,0x41,0x56,0xA4, /* 00001C58 "y`aDMAV." */
0x42,0x55,0x46,0x30,0x08,0x5F,0x50,0x52, /* 00001C60 "BUF0._PR" */
0x53,0x11,0x43,0x04,0x0A,0x3F,0x30,0x47, /* 00001C68 "S.C..?0G" */
0x01,0xF8,0x93,0xF8,0x93,0x00,0x08,0x22, /* 00001C70 "......."" */
0x38,0x00,0x2A,0x0B,0x01,0x30,0x47,0x01, /* 00001C78 "8.*..0G." */
0xF8,0x92,0xF8,0x92,0x00,0x08,0x22,0x38, /* 00001C80 "......"8" */
0x00,0x2A,0x0B,0x01,0x30,0x47,0x01,0xE8, /* 00001C88 ".*..0G.." */
0x93,0xE8,0x93,0x00,0x08,0x22,0x38,0x00, /* 00001C90 "....."8." */
0x2A,0x0B,0x01,0x30,0x47,0x01,0xE8,0x92, /* 00001C98 "*..0G..." */
0xE8,0x92,0x00,0x08,0x22,0x38,0x00,0x2A, /* 00001CA0 "...."8.*" */
0x0B,0x01,0x38,0x79,0x00,0x14,0x4F,0x09, /* 00001CA8 "..8y..O." */
0x5F,0x53,0x52,0x53,0x01,0x8B,0x68,0x0A, /* 00001CB0 "_SRS..h." */
0x02,0x49,0x4F,0x57,0x5F,0x8B,0x68,0x0A, /* 00001CB8 ".IOW_.h." */
0x09,0x49,0x52,0x51,0x57,0x8C,0x68,0x0A, /* 00001CC0 ".IRQW.h." */
0x0C,0x44,0x4D,0x41,0x56,0x7A,0x49,0x4F, /* 00001CC8 ".DMAVzIO" */
0x57,0x5F,0x0A,0x02,0x60,0x7B,0x55,0x32, /* 00001CD0 "W_..`{U2" */
0x42,0x4C,0x01,0x61,0x7D,0x61,0x60,0x60, /* 00001CD8 "BL.a}a``" */
0x70,0x60,0x55,0x32,0x42,0x4C,0x7B,0x49, /* 00001CE0 "p`U2BL{I" */
0x4F,0x57,0x5F,0x0B,0x00,0xFC,0x60,0x7A, /* 00001CE8 "OW_...`z" */
0x60,0x0A,0x08,0x60,0x7B,0x55,0x32,0x42, /* 00001CF0 "`..`{U2B" */
0x48,0x0A,0x03,0x61,0x7D,0x61,0x60,0x61, /* 00001CF8 "H..a}a`a" */
0x70,0x61,0x55,0x32,0x42,0x48,0x82,0x49, /* 00001D00 "paU2BH.I" */
0x52,0x51,0x57,0x60,0x76,0x60,0x79,0x60, /* 00001D08 "RQW`v`y`" */
0x0A,0x04,0x60,0x7B,0x50,0x4E,0x50,0x31, /* 00001D10 "..`{PNP1" */
0x0A,0x0F,0x61,0x7D,0x61,0x60,0x50,0x4E, /* 00001D18 "..a}a`PN" */
0x50,0x31,0x82,0x44,0x4D,0x41,0x56,0x60, /* 00001D20 "P1.DMAV`" */
0x7B,0x50,0x4E,0x50,0x33,0x0A,0xF8,0x61, /* 00001D28 "{PNP3..a" */
0x7D,0x61,0x60,0x50,0x4E,0x50,0x33,0x7D, /* 00001D30 "}a`PNP3}" */
0x53,0x43,0x46,0x32,0x0A,0x80,0x53,0x43, /* 00001D38 "SCF2..SC" */
0x46,0x32,0x7D,0x46,0x45,0x52,0x5F,0x0A, /* 00001D40 "F2}FER_." */
0x04,0x46,0x45,0x52,0x5F,0x14,0x1B,0x5F, /* 00001D48 ".FER_.._" */
0x50,0x53,0x43,0x00,0x7B,0x46,0x45,0x52, /* 00001D50 "PSC.{FER" */
0x5F,0x0A,0x04,0x60,0xA0,0x07,0x93,0x60, /* 00001D58 "_..`...`" */
0x0A,0x04,0xA4,0x00,0xA1,0x04,0xA4,0x0A, /* 00001D60 "........" */
0x03,0x14,0x11,0x5F,0x50,0x53,0x30,0x00, /* 00001D68 "..._PS0." */
0x7D,0x46,0x45,0x52,0x5F,0x0A,0x04,0x46, /* 00001D70 "}FER_..F" */
0x45,0x52,0x5F,0x14,0x11,0x5F,0x50,0x53, /* 00001D78 "ER_.._PS" */
0x33,0x00,0x7B,0x46,0x45,0x52,0x5F,0x0A, /* 00001D80 "3.{FER_." */
0xFB,0x46,0x45,0x52,0x5F,0x5B,0x82,0x41, /* 00001D88 ".FER_[.A" */
0x1F,0x57,0x41,0x43,0x31,0x08,0x5F,0x48, /* 00001D90 ".WAC1._H" */
0x49,0x44,0x0D,0x57,0x41,0x43,0x46,0x30, /* 00001D98 "ID.WACF0" */
0x30,0x34,0x00,0x14,0x35,0x5F,0x53,0x54, /* 00001DA0 "04..5_ST" */
0x41,0x00,0x7B,0x46,0x45,0x52,0x5F,0x0A, /* 00001DA8 "A.{FER_." */
0x02,0x60,0xA0,0x08,0x93,0x60,0x0A,0x02, /* 00001DB0 ".`...`.." */
0xA4,0x0A,0x0F,0xA1,0x1D,0x7B,0x55,0x31, /* 00001DB8 ".....{U1" */
0x42,0x4C,0x0A,0xFE,0x60,0x7B,0x55,0x31, /* 00001DC0 "BL..`{U1" */
0x42,0x48,0x0A,0xFC,0x61,0xA0,0x07,0x91, /* 00001DC8 "BH..a..." */
0x60,0x61,0xA4,0x0A,0x0D,0xA1,0x03,0xA4, /* 00001DD0 "`a......" */
0x00,0x14,0x11,0x5F,0x44,0x49,0x53,0x00, /* 00001DD8 "..._DIS." */
0x7B,0x46,0x45,0x52,0x5F,0x0A,0xFD,0x46, /* 00001DE0 "{FER_..F" */
0x45,0x52,0x5F,0x14,0x45,0x0A,0x5F,0x43, /* 00001DE8 "ER_.E._C" */
0x52,0x53,0x00,0x08,0x42,0x55,0x46,0x30, /* 00001DF0 "RS..BUF0" */
0x11,0x10,0x0A,0x0D,0x47,0x01,0xF8,0x93, /* 00001DF8 "....G..." */
0xF8,0x93,0x00,0x08,0x22,0x10,0x00,0x79, /* 00001E00 "...."..y" */
0x00,0x8B,0x42,0x55,0x46,0x30,0x0A,0x02, /* 00001E08 "..BUF0.." */
0x49,0x4F,0x57,0x31,0x8B,0x42,0x55,0x46, /* 00001E10 "IOW1.BUF" */
0x30,0x0A,0x04,0x49,0x4F,0x57,0x32,0x8B, /* 00001E18 "0..IOW2." */
0x42,0x55,0x46,0x30,0x0A,0x09,0x49,0x52, /* 00001E20 "BUF0..IR" */
0x51,0x57,0x7B,0x46,0x45,0x52,0x5F,0x0A, /* 00001E28 "QW{FER_." */
0x02,0x60,0xA0,0x45,0x04,0x93,0x60,0x0A, /* 00001E30 ".`.E..`." */
0x02,0x7B,0x55,0x31,0x42,0x4C,0x0A,0xFE, /* 00001E38 ".{U1BL.." */
0x60,0x79,0x60,0x0A,0x02,0x60,0x70,0x55, /* 00001E40 "`y`..`pU" */
0x31,0x42,0x48,0x61,0x7B,0x61,0x0A,0xFC, /* 00001E48 "1BHa{a.." */
0x61,0x79,0x61,0x0A,0x08,0x61,0x7D,0x61, /* 00001E50 "aya..a}a" */
0x60,0x61,0x70,0x61,0x49,0x4F,0x57,0x31, /* 00001E58 "`apaIOW1" */
0x70,0x61,0x49,0x4F,0x57,0x32,0x7B,0x50, /* 00001E60 "paIOW2{P" */
0x4E,0x50,0x31,0x0A,0x0F,0x60,0x70,0x01, /* 00001E68 "NP1..`p." */
0x61,0x79,0x61,0x60,0x49,0x52,0x51,0x57, /* 00001E70 "aya`IRQW" */
0xA1,0x13,0x70,0x00,0x49,0x4F,0x57,0x31, /* 00001E78 "..p.IOW1" */
0x70,0x00,0x49,0x4F,0x57,0x32,0x70,0x00, /* 00001E80 "p.IOW2p." */
0x49,0x52,0x51,0x57,0xA4,0x42,0x55,0x46, /* 00001E88 "IRQW.BUF" */
0x30,0x08,0x5F,0x50,0x52,0x53,0x11,0x36, /* 00001E90 "0._PRS.6" */
0x0A,0x33,0x30,0x47,0x01,0xF8,0x93,0xF8, /* 00001E98 ".30G...." */
0x93,0x00,0x08,0x22,0x38,0x00,0x30,0x47, /* 00001EA0 "..."8.0G" */
0x01,0xF8,0x92,0xF8,0x92,0x00,0x08,0x22, /* 00001EA8 "......."" */
0x38,0x00,0x30,0x47,0x01,0xE8,0x93,0xE8, /* 00001EB0 "8.0G...." */
0x93,0x00,0x08,0x22,0x38,0x00,0x30,0x47, /* 00001EB8 "..."8.0G" */
0x01,0xE8,0x92,0xE8,0x92,0x00,0x08,0x22, /* 00001EC0 "......."" */
0x38,0x00,0x38,0x79,0x00,0x14,0x42,0x07, /* 00001EC8 "8.8y..B." */
0x5F,0x53,0x52,0x53,0x01,0x8B,0x68,0x0A, /* 00001ED0 "_SRS..h." */
0x02,0x49,0x4F,0x57,0x5F,0x8B,0x68,0x0A, /* 00001ED8 ".IOW_.h." */
0x09,0x49,0x52,0x51,0x57,0x7A,0x49,0x4F, /* 00001EE0 ".IRQWzIO" */
0x57,0x5F,0x0A,0x02,0x60,0x7B,0x55,0x31, /* 00001EE8 "W_..`{U1" */
0x42,0x4C,0x01,0x61,0x7D,0x61,0x60,0x60, /* 00001EF0 "BL.a}a``" */
0x70,0x60,0x55,0x31,0x42,0x4C,0x7B,0x49, /* 00001EF8 "p`U1BL{I" */
0x4F,0x57,0x5F,0x0B,0x00,0xFC,0x60,0x7A, /* 00001F00 "OW_...`z" */
0x60,0x0A,0x08,0x60,0x7B,0x55,0x31,0x42, /* 00001F08 "`..`{U1B" */
0x48,0x0A,0x03,0x61,0x7D,0x61,0x60,0x61, /* 00001F10 "H..a}a`a" */
0x70,0x61,0x55,0x31,0x42,0x48,0x82,0x49, /* 00001F18 "paU1BH.I" */
0x52,0x51,0x57,0x60,0x76,0x60,0x7B,0x50, /* 00001F20 "RQW`v`{P" */
0x4E,0x50,0x31,0x0A,0xF0,0x61,0x7D,0x61, /* 00001F28 "NP1..a}a" */
0x60,0x50,0x4E,0x50,0x31,0x7D,0x46,0x45, /* 00001F30 "`PNP1}FE" */
0x52,0x5F,0x0A,0x02,0x46,0x45,0x52,0x5F, /* 00001F38 "R_..FER_" */
0x14,0x1B,0x5F,0x50,0x53,0x43,0x00,0x7B, /* 00001F40 ".._PSC.{" */
0x46,0x45,0x52,0x5F,0x0A,0x02,0x60,0xA0, /* 00001F48 "FER_..`." */
0x07,0x93,0x60,0x0A,0x02,0xA4,0x00,0xA1, /* 00001F50 "..`....." */
0x04,0xA4,0x0A,0x03,0x14,0x11,0x5F,0x50, /* 00001F58 "......_P" */
0x53,0x30,0x00,0x7D,0x46,0x45,0x52,0x5F, /* 00001F60 "S0.}FER_" */
0x0A,0x02,0x46,0x45,0x52,0x5F,0x14,0x11, /* 00001F68 "..FER_.." */
0x5F,0x50,0x53,0x33,0x00,0x7B,0x46,0x45, /* 00001F70 "_PS3.{FE" */
0x52,0x5F,0x0A,0xFD,0x46,0x45,0x52,0x5F, /* 00001F78 "R_..FER_" */
0x5B,0x82,0x27,0x50,0x53,0x32,0x4D,0x08, /* 00001F80 "[.'PS2M." */
0x5F,0x48,0x49,0x44,0x0C,0x41,0xD0,0x0F, /* 00001F88 "_HID.A.." */
0x13,0x14,0x09,0x5F,0x53,0x54,0x41,0x00, /* 00001F90 "..._STA." */
0xA4,0x0A,0x0F,0x08,0x5F,0x43,0x52,0x53, /* 00001F98 "...._CRS" */
0x11,0x08,0x0A,0x05,0x22,0x00,0x10,0x79, /* 00001FA0 "...."..y" */
0x00,0x5B,0x82,0x41,0x3F,0x45,0x43,0x30, /* 00001FA8 ".[.A?EC0" */
0x5F,0x08,0x5F,0x48,0x49,0x44,0x0C,0x41, /* 00001FB0 "_._HID.A" */
0xD0,0x0C,0x09,0x08,0x5F,0x47,0x50,0x45, /* 00001FB8 "...._GPE" */
0x0A,0x18,0x14,0x09,0x5F,0x53,0x54,0x41, /* 00001FC0 "...._STA" */
0x00,0xA4,0x0A,0x0F,0x14,0x26,0x5F,0x43, /* 00001FC8 ".....&_C" */
0x52,0x53,0x00,0x08,0x45,0x43,0x52,0x53, /* 00001FD0 "RS..ECRS" */
0x11,0x15,0x0A,0x12,0x47,0x01,0x62,0x00, /* 00001FD8 "....G.b." */
0x62,0x00,0x00,0x01,0x47,0x01,0x66,0x00, /* 00001FE0 "b...G.f." */
0x66,0x00,0x00,0x01,0x79,0x00,0xA4,0x45, /* 00001FE8 "f...y..E" */
0x43,0x52,0x53,0x5B,0x80,0x52,0x41,0x4D, /* 00001FF0 "CRS[.RAM" */
0x5F,0x03,0x00,0x0A,0x7F,0x5B,0x81,0x47, /* 00001FF8 "_....[.G" */
0x07,0x52,0x41,0x4D,0x5F,0x11,0x00,0x08, /* 00002000 ".RAM_..." */
0x53,0x43,0x49,0x43,0x08,0x00,0x10,0x43, /* 00002008 "SCIC...C" */
0x4D,0x43,0x44,0x08,0x44,0x41,0x54,0x31, /* 00002010 "MCD.DAT1" */
0x08,0x44,0x41,0x54,0x32,0x08,0x44,0x41, /* 00002018 ".DAT2.DA" */
0x54,0x33,0x08,0x00,0x40,0x20,0x50,0x35, /* 00002020 "T3..@ P5" */
0x34,0x53,0x08,0x50,0x35,0x35,0x53,0x08, /* 00002028 "4S.P55S." */
0x50,0x35,0x34,0x54,0x08,0x50,0x35,0x35, /* 00002030 "P54T.P55" */
0x54,0x08,0x50,0x35,0x34,0x44,0x08,0x50, /* 00002038 "T.P54D.P" */
0x35,0x35,0x44,0x08,0x00,0x04,0x50,0x35, /* 00002040 "55D...P5" */
0x34,0x5F,0x01,0x50,0x35,0x35,0x5F,0x01, /* 00002048 "4_.P55_." */
0x00,0x02,0x00,0x20,0x50,0x36,0x33,0x53, /* 00002050 "... P63S" */
0x08,0x00,0x18,0x50,0x36,0x37,0x53,0x08, /* 00002058 "...P67S." */
0x00,0x40,0x10,0x00,0x03,0x50,0x36,0x33, /* 00002060 ".@...P63" */
0x5F,0x01,0x50,0x36,0x34,0x5F,0x01,0x00, /* 00002068 "_.P64_.." */
0x02,0x50,0x36,0x37,0x5F,0x01,0x5B,0x80, /* 00002070 ".P67_.[." */
0x45,0x43,0x4F,0x31,0x01,0x0A,0x62,0x01, /* 00002078 "ECO1..b." */
0x5B,0x81,0x0B,0x45,0x43,0x4F,0x31,0x11, /* 00002080 "[..ECO1." */
0x50,0x58,0x36,0x32,0x08,0x5B,0x80,0x45, /* 00002088 "PX62.[.E" */
0x43,0x4F,0x32,0x01,0x0A,0x66,0x01,0x5B, /* 00002090 "CO2..f.[" */
0x81,0x0B,0x45,0x43,0x4F,0x32,0x11,0x50, /* 00002098 "..ECO2.P" */
0x58,0x36,0x36,0x08,0x14,0x13,0x5F,0x51, /* 000020A0 "X66..._Q" */
0x30,0x31,0x00,0x70,0x01,0x50,0x58,0x42, /* 000020A8 "01.p.PXB" */
0x33,0x70,0x0A,0x31,0x50,0x58,0x42,0x32, /* 000020B0 "3p.1PXB2" */
0x14,0x14,0x5F,0x51,0x30,0x32,0x00,0x70, /* 000020B8 ".._Q02.p" */
0x0A,0x02,0x50,0x58,0x42,0x33,0x70,0x0A, /* 000020C0 "..PXB3p." */
0x31,0x50,0x58,0x42,0x32,0x14,0x14,0x5F, /* 000020C8 "1PXB2.._" */
0x51,0x30,0x46,0x00,0x70,0x0A,0x14,0x50, /* 000020D0 "Q0F.p..P" */
0x58,0x42,0x33,0x70,0x0A,0x31,0x50,0x58, /* 000020D8 "XB3p.1PX" */
0x42,0x32,0x14,0x29,0x5F,0x51,0x30,0x33, /* 000020E0 "B2.)_Q03" */
0x00,0x70,0x0A,0x04,0x50,0x58,0x42,0x33, /* 000020E8 ".p..PXB3" */
0x70,0x0A,0x31,0x50,0x58,0x42,0x32,0x86, /* 000020F0 "p.1PXB2." */
0x53,0x4C,0x50,0x42,0x0A,0x80,0x70,0x0A, /* 000020F8 "SLPB..p." */
0x0D,0x50,0x58,0x42,0x33,0x70,0x0A,0x31, /* 00002100 ".PXB3p.1" */
0x50,0x58,0x42,0x32,0x14,0x14,0x5F,0x51, /* 00002108 "PXB2.._Q" */
0x30,0x34,0x00,0x70,0x0A,0x07,0x50,0x58, /* 00002110 "04.p..PX" */
0x42,0x33,0x70,0x0A,0x31,0x50,0x58,0x42, /* 00002118 "B3p.1PXB" */
0x32,0x14,0x14,0x5F,0x51,0x31,0x30,0x00, /* 00002120 "2.._Q10." */
0x70,0x0A,0x15,0x50,0x58,0x42,0x33,0x70, /* 00002128 "p..PXB3p" */
0x0A,0x31,0x50,0x58,0x42,0x32,0x14,0x14, /* 00002130 ".1PXB2.." */
0x5F,0x51,0x31,0x31,0x00,0x70,0x0A,0x17, /* 00002138 "_Q11.p.." */
0x50,0x58,0x42,0x33,0x70,0x0A,0x31,0x50, /* 00002140 "PXB3p.1P" */
0x58,0x42,0x32,0x14,0x14,0x5F,0x51,0x31, /* 00002148 "XB2.._Q1" */
0x32,0x00,0x70,0x0A,0x18,0x50,0x58,0x42, /* 00002150 "2.p..PXB" */
0x33,0x70,0x0A,0x31,0x50,0x58,0x42,0x32, /* 00002158 "3p.1PXB2" */
0x14,0x14,0x5F,0x51,0x31,0x33,0x00,0x70, /* 00002160 ".._Q13.p" */
0x0A,0x19,0x50,0x58,0x42,0x33,0x70,0x0A, /* 00002168 "..PXB3p." */
0x31,0x50,0x58,0x42,0x32,0x14,0x14,0x5F, /* 00002170 "1PXB2.._" */
0x51,0x31,0x34,0x00,0x70,0x0A,0x1A,0x50, /* 00002178 "Q14.p..P" */
0x58,0x42,0x33,0x70,0x0A,0x31,0x50,0x58, /* 00002180 "XB3p.1PX" */
0x42,0x32,0x14,0x14,0x5F,0x51,0x30,0x41, /* 00002188 "B2.._Q0A" */
0x00,0x70,0x0A,0x1B,0x50,0x58,0x42,0x33, /* 00002190 ".p..PXB3" */
0x70,0x0A,0x31,0x50,0x58,0x42,0x32,0x14, /* 00002198 "p.1PXB2." */
0x14,0x5F,0x51,0x30,0x42,0x00,0x70,0x0A, /* 000021A0 "._Q0B.p." */
0x1C,0x50,0x58,0x42,0x33,0x70,0x0A,0x31, /* 000021A8 ".PXB3p.1" */
0x50,0x58,0x42,0x32,0x14,0x14,0x5F,0x51, /* 000021B0 "PXB2.._Q" */
0x30,0x43,0x00,0x70,0x0A,0x1D,0x50,0x58, /* 000021B8 "0C.p..PX" */
0x42,0x33,0x70,0x0A,0x31,0x50,0x58,0x42, /* 000021C0 "B3p.1PXB" */
0x32,0x14,0x14,0x5F,0x51,0x30,0x44,0x00, /* 000021C8 "2.._Q0D." */
0x70,0x0A,0x1E,0x50,0x58,0x42,0x33,0x70, /* 000021D0 "p..PXB3p" */
0x0A,0x31,0x50,0x58,0x42,0x32,0x14,0x14, /* 000021D8 ".1PXB2.." */
0x5F,0x51,0x30,0x45,0x00,0x70,0x0A,0x1F, /* 000021E0 "_Q0E.p.." */
0x50,0x58,0x42,0x33,0x70,0x0A,0x31,0x50, /* 000021E8 "PXB3p.1P" */
0x58,0x42,0x32,0x14,0x47,0x05,0x5F,0x51, /* 000021F0 "XB2.G._Q" */
0x32,0x45,0x00,0x7B,0x50,0x4D,0x33,0x33, /* 000021F8 "2E.{PM33" */
0x01,0x61,0xA0,0x2C,0x93,0x61,0x00,0x70, /* 00002200 ".a.,.a.p" */
0x01,0x4C,0x49,0x44,0x58,0x70,0x0A,0x98, /* 00002208 ".LIDXp.." */
0x50,0x35,0x34,0x53,0x70,0x0A,0xB9,0x50, /* 00002210 "P54Sp..P" */
0x35,0x34,0x54,0x70,0x00,0x4C,0x49,0x44, /* 00002218 "54Tp.LID" */
0x53,0x70,0x0A,0x15,0x50,0x58,0x42,0x33, /* 00002220 "Sp..PXB3" */
0x70,0x0A,0x31,0x50,0x58,0x42,0x32,0xA1, /* 00002228 "p.1PXB2." */
0x0D,0x70,0x00,0x4C,0x49,0x44,0x58,0x70, /* 00002230 ".p.LIDXp" */
0x01,0x4C,0x49,0x44,0x53,0x70,0x0A,0x35, /* 00002238 ".LIDSp.5" */
0x50,0x58,0x42,0x32,0x86,0x4C,0x49,0x44, /* 00002240 "PXB2.LID" */
0x5F,0x0A,0x80,0x14,0x3B,0x5F,0x51,0x32, /* 00002248 "_...;_Q2" */
0x46,0x00,0x70,0x0A,0x02,0x42,0x52,0x54, /* 00002250 "F.p..BRT" */
0x53,0x5B,0x22,0x0A,0xC8,0x70,0x0A,0x03, /* 00002258 "S["..p.." */
0x50,0x58,0x42,0x33,0x70,0x0A,0x31,0x50, /* 00002260 "PXB3p.1P" */
0x58,0x42,0x32,0x86,0x41,0x43,0x5F,0x5F, /* 00002268 "XB2.AC__" */
0x0A,0x80,0x86,0x42,0x41,0x54,0x30,0x0A, /* 00002270 "...BAT0." */
0x80,0x70,0x0A,0x0D,0x50,0x58,0x42,0x33, /* 00002278 ".p..PXB3" */
0x70,0x0A,0x31,0x50,0x58,0x42,0x32,0x14, /* 00002280 "p.1PXB2." */
0x49,0x04,0x5F,0x51,0x33,0x33,0x00,0x70, /* 00002288 "I._Q33.p" */
0x0A,0x02,0x42,0x52,0x54,0x53,0x5B,0x22, /* 00002290 "..BRTS["" */
0x0A,0xC8,0x70,0x00,0x50,0x58,0x42,0x33, /* 00002298 "..p.PXB3" */
0x70,0x0A,0x31,0x50,0x58,0x42,0x32,0xA0, /* 000022A0 "p.1PXB2." */
0x0E,0x93,0x50,0x36,0x33,0x5F,0x01,0x70, /* 000022A8 "..P63_.p" */
0x0A,0x80,0x50,0x36,0x33,0x53,0xA1,0x08, /* 000022B0 "..P63S.." */
0x70,0x0A,0x90,0x50,0x36,0x33,0x53,0x86, /* 000022B8 "p..P63S." */
0x42,0x41,0x54,0x30,0x0A,0x81,0x70,0x0A, /* 000022C0 "BAT0..p." */
0x35,0x50,0x58,0x42,0x32,0x5B,0x22,0x0A, /* 000022C8 "5PXB2["." */
0x64,0x14,0x3A,0x5F,0x51,0x33,0x34,0x00, /* 000022D0 "d.:_Q34." */
0x70,0x0A,0x34,0x50,0x58,0x38,0x30,0xA0, /* 000022D8 "p.4PX80." */
0x15,0x93,0x50,0x36,0x34,0x5F,0x01,0x70, /* 000022E0 "..P64_.p" */
0x0A,0x25,0x50,0x58,0x42,0x33,0x70,0x0A, /* 000022E8 ".%PXB3p." */
0x31,0x50,0x58,0x42,0x32,0xA1,0x0F,0x70, /* 000022F0 "1PXB2..p" */
0x0A,0x26,0x50,0x58,0x42,0x33,0x70,0x0A, /* 000022F8 ".&PXB3p." */
0x31,0x50,0x58,0x42,0x32,0x86,0x42,0x41, /* 00002300 "1PXB2.BA" */
0x54,0x30,0x0A,0x80,0x14,0x3A,0x5F,0x51, /* 00002308 "T0...:_Q" */
0x33,0x37,0x00,0xA0,0x1C,0x93,0x50,0x36, /* 00002310 "37....P6" */
0x37,0x5F,0x01,0x70,0x0A,0x80,0x50,0x36, /* 00002318 "7_.p..P6" */
0x37,0x53,0x70,0x0A,0x27,0x49,0x4F,0x42, /* 00002320 "7Sp.'IOB" */
0x33,0x70,0x0A,0x31,0x49,0x4F,0x42,0x32, /* 00002328 "3p.1IOB2" */
0xA1,0x16,0x70,0x0A,0x90,0x50,0x36,0x37, /* 00002330 "..p..P67" */
0x53,0x70,0x0A,0x28,0x49,0x4F,0x42,0x33, /* 00002338 "Sp.(IOB3" */
0x70,0x0A,0x31,0x49,0x4F,0x42,0x32,0x14, /* 00002340 "p.1IOB2." */
0x0C,0x5F,0x51,0x34,0x32,0x00,0x86,0x50, /* 00002348 "._Q42..P" */
0x43,0x49,0x30,0x01,0x14,0x13,0x45,0x43, /* 00002350 "CI0...EC" */
0x43,0x35,0x01,0x70,0x68,0x44,0x41,0x54, /* 00002358 "C5.phDAT" */
0x31,0x70,0x0A,0xC5,0x43,0x4D,0x43,0x44, /* 00002360 "1p..CMCD" */
0x14,0x13,0x45,0x43,0x43,0x39,0x01,0x70, /* 00002368 "..ECC9.p" */
0x68,0x44,0x41,0x54,0x31,0x70,0x0A,0xC9, /* 00002370 "hDAT1p.." */
0x43,0x4D,0x43,0x44,0x14,0x1F,0x45,0x43, /* 00002378 "CMCD..EC" */
0x42,0x42,0x03,0x70,0x68,0x44,0x41,0x54, /* 00002380 "BB.phDAT" */
0x31,0x70,0x69,0x44,0x41,0x54,0x32,0x70, /* 00002388 "1piDAT2p" */
0x6A,0x44,0x41,0x54,0x33,0x70,0x0A,0xBB, /* 00002390 "jDAT3p.." */
0x43,0x4D,0x43,0x44,0x5B,0x82,0x30,0x49, /* 00002398 "CMCD[.0I" */
0x53,0x41,0x5F,0x08,0x5F,0x41,0x44,0x52, /* 000023A0 "SA_._ADR" */
0x0C,0x03,0x00,0x07,0x00,0x5B,0x80,0x53, /* 000023A8 ".....[.S" */
0x42,0x34,0x33,0x02,0x00,0x0A,0xFF,0x5B, /* 000023B0 "B43....[" */
0x81,0x15,0x53,0x42,0x34,0x33,0x01,0x00, /* 000023B8 "..SB43.." */
0x40,0x32,0x50,0x4D,0x49,0x4F,0x10,0x00, /* 000023C0 "@2PMIO.." */
0x06,0x44,0x56,0x31,0x30,0x01,0x5B,0x82, /* 000023C8 ".DV10.[." */
0x42,0x18,0x42,0x54,0x4E,0x53,0x08,0x5F, /* 000023D0 "B.BTNS._" */
0x48,0x49,0x44,0x0D,0x4D,0x53,0x54,0x61, /* 000023D8 "HID.MSTa" */
0x62,0x6C,0x65,0x74,0x50,0x43,0x42,0x75, /* 000023E0 "bletPCBu" */
0x74,0x74,0x6F,0x6E,0x73,0x00,0x14,0x0D, /* 000023E8 "ttons..." */
0x5F,0x49,0x4E,0x49,0x00,0x70,0x0A,0x7D, /* 000023F0 "_INI.p.}" */
0x49,0x4F,0x42,0x32,0x08,0x5F,0x50,0x52, /* 000023F8 "IOB2._PR" */
0x53,0x11,0x20,0x0A,0x1D,0x30,0x47,0x01, /* 00002400 "S. ..0G." */
0x50,0x94,0x50,0x94,0x04,0x04,0x23,0xC0, /* 00002408 "P.P...#." */
0x00,0x08,0x30,0x47,0x01,0x54,0x94,0x54, /* 00002410 "..0G.T.T" */
0x94,0x04,0x04,0x23,0xC0,0x00,0x08,0x38, /* 00002418 "...#...8" */
0x79,0x00,0x14,0x13,0x5F,0x44,0x49,0x53, /* 00002420 "y..._DIS" */
0x00,0x70,0x00,0x5E,0x5E,0x2E,0x49,0x53, /* 00002428 ".p.^^.IS" */
0x41,0x5F,0x44,0x56,0x31,0x30,0x14,0x46, /* 00002430 "A_DV10.F" */
0x08,0x5F,0x43,0x52,0x53,0x00,0x08,0x42, /* 00002438 "._CRS..B" */
0x55,0x46,0x30,0x11,0x11,0x0A,0x0E,0x47, /* 00002440 "UF0....G" */
0x01,0x50,0x94,0x50,0x94,0x04,0x04,0x23, /* 00002448 ".P.P...#" */
0x80,0x00,0x08,0x79,0x00,0x8B,0x42,0x55, /* 00002450 "...y..BU" */
0x46,0x30,0x0A,0x02,0x49,0x4F,0x57,0x31, /* 00002458 "F0..IOW1" */
0x8B,0x42,0x55,0x46,0x30,0x0A,0x04,0x49, /* 00002460 ".BUF0..I" */
0x4F,0x57,0x32,0x8B,0x42,0x55,0x46,0x30, /* 00002468 "OW2.BUF0" */
0x0A,0x09,0x49,0x52,0x51,0x57,0x70,0x5E, /* 00002470 "..IRQWp^" */
0x5E,0x2E,0x49,0x53,0x41,0x5F,0x50,0x4D, /* 00002478 "^.ISA_PM" */
0x49,0x4F,0x49,0x4F,0x57,0x31,0x70,0x5E, /* 00002480 "IOIOW1p^" */
0x5E,0x2E,0x50,0x58,0x34,0x30,0x49,0x4E, /* 00002488 "^.PX40IN" */
0x54,0x43,0x61,0x7B,0x61,0x0A,0x80,0x61, /* 00002490 "TCa{a..a" */
0xA0,0x1F,0x92,0x93,0x61,0x0A,0x80,0x7B, /* 00002498 "....a..{" */
0x5E,0x5E,0x2E,0x50,0x58,0x34,0x30,0x49, /* 000024A0 "^^.PX40I" */
0x4E,0x54,0x43,0x0A,0x0F,0x60,0x70,0x01, /* 000024A8 "NTC..`p." */
0x62,0x79,0x62,0x60,0x49,0x52,0x51,0x57, /* 000024B0 "byb`IRQW" */
0xA4,0x42,0x55,0x46,0x30,0x14,0x48,0x07, /* 000024B8 ".BUF0.H." */
0x5F,0x53,0x52,0x53,0x01,0x8B,0x68,0x0A, /* 000024C0 "_SRS..h." */
0x02,0x49,0x4F,0x57,0x31,0x8B,0x68,0x0A, /* 000024C8 ".IOW1.h." */
0x04,0x49,0x4F,0x57,0x32,0x8B,0x68,0x0A, /* 000024D0 ".IOW2.h." */
0x09,0x49,0x52,0x51,0x57,0x70,0x49,0x4F, /* 000024D8 ".IRQWpIO" */
0x57,0x31,0x5E,0x5E,0x2E,0x49,0x53,0x41, /* 000024E0 "W1^^.ISA" */
0x5F,0x50,0x4D,0x49,0x4F,0x70,0x01,0x5E, /* 000024E8 "_PMIOp.^" */
0x5E,0x2E,0x49,0x53,0x41,0x5F,0x44,0x56, /* 000024F0 "^.ISA_DV" */
0x31,0x30,0x81,0x49,0x52,0x51,0x57,0x60, /* 000024F8 "10.IRQW`" */
0x76,0x60,0x7B,0x5E,0x5E,0x2E,0x50,0x58, /* 00002500 "v`{^^.PX" */
0x34,0x30,0x49,0x4E,0x54,0x43,0x0A,0x70, /* 00002508 "40INTC.p" */
0x61,0x7D,0x61,0x60,0x5E,0x5E,0x2E,0x50, /* 00002510 "a}a`^^.P" */
0x58,0x34,0x30,0x49,0x4E,0x54,0x43,0x70, /* 00002518 "X40INTCp" */
0x5E,0x5E,0x2E,0x50,0x58,0x34,0x30,0x49, /* 00002520 "^^.PX40I" */
0x4E,0x54,0x43,0x5E,0x5E,0x2E,0x50,0x58, /* 00002528 "NTC^^.PX" */
0x34,0x30,0x54,0x42,0x55,0x54,0x14,0x1B, /* 00002530 "40TBUT.." */
0x5F,0x53,0x54,0x41,0x00,0xA0,0x0F,0x5E, /* 00002538 "_STA...^" */
0x5E,0x2E,0x49,0x53,0x41,0x5F,0x44,0x56, /* 00002540 "^.ISA_DV" */
0x31,0x30,0xA4,0x0A,0x0F,0xA1,0x04,0xA4, /* 00002548 "10......" */
0x0A,0x0D,0x5B,0x82,0x43,0x4B,0x56,0x47, /* 00002550 "..[.CKVG" */
0x41,0x30,0x08,0x5F,0x41,0x44,0x52,0x0C, /* 00002558 "A0._ADR." */
0x00,0x00,0x02,0x00,0x14,0x4D,0x08,0x5F, /* 00002560 ".....M._" */
0x44,0x4F,0x44,0x00,0xA0,0x47,0x07,0x93, /* 00002568 "DOD..G.." */
0x56,0x47,0x41,0x53,0x00,0x70,0x0A,0x93, /* 00002570 "VGAS.p.." */
0x5E,0x5E,0x2E,0x50,0x58,0x34,0x30,0x50, /* 00002578 "^^.PX40P" */
0x58,0x42,0x32,0xA0,0x1C,0x93,0x5E,0x5E, /* 00002580 "XB2...^^" */
0x2E,0x50,0x58,0x34,0x30,0x43,0x32,0x34, /* 00002588 ".PX40C24" */
0x45,0x00,0x70,0x0A,0x02,0x43,0x52,0x54, /* 00002590 "E.p..CRT" */
0x53,0x70,0x0A,0x02,0x4C,0x43,0x44,0x53, /* 00002598 "Sp..LCDS" */
0x70,0x0A,0x43,0x5E,0x5E,0x2E,0x50,0x58, /* 000025A0 "p.C^^.PX" */
0x34,0x30,0x50,0x58,0x42,0x33,0x70,0x0A, /* 000025A8 "40PXB3p." */
0x7B,0x5E,0x5E,0x2E,0x50,0x58,0x34,0x30, /* 000025B0 "{^^.PX40" */
0x50,0x58,0x42,0x32,0x70,0x5E,0x5E,0x2E, /* 000025B8 "PXB2p^^." */
0x50,0x58,0x34,0x30,0x50,0x58,0x42,0x33, /* 000025C0 "PX40PXB3" */
0x60,0x7B,0x60,0x01,0x60,0xA0,0x10,0x93, /* 000025C8 "`{`.`..." */
0x60,0x01,0x70,0x01,0x43,0x52,0x54,0x53, /* 000025D0 "`.p.CRTS" */
0x70,0x01,0x4C,0x43,0x44,0x53,0x70,0x01, /* 000025D8 "p.LCDSp." */
0x56,0x47,0x41,0x53,0xA4,0x12,0x0C,0x02, /* 000025E0 "VGAS...." */
0x0C,0x00,0x01,0x01,0x00,0x0C,0x10,0x01, /* 000025E8 "........" */
0x01,0x00,0x5B,0x82,0x4D,0x04,0x43,0x52, /* 000025F0 "..[.M.CR" */
0x54,0x30,0x14,0x0A,0x5F,0x41,0x44,0x52, /* 000025F8 "T0.._ADR" */
0x00,0xA4,0x0B,0x00,0x01,0x14,0x09,0x5F, /* 00002600 "......._" */
0x44,0x43,0x53,0x00,0xA4,0x0A,0x1F,0x14, /* 00002608 "DCS....." */
0x31,0x5F,0x44,0x47,0x53,0x00,0x78,0x43, /* 00002610 "1_DGS.xC" */
0x52,0x54,0x53,0x0A,0x03,0x60,0x61,0x72, /* 00002618 "RTS..`ar" */
0x43,0x52,0x54,0x53,0x01,0x43,0x52,0x54, /* 00002620 "CRTS.CRT" */
0x53,0xA0,0x06,0x93,0x60,0x00,0xA4,0x01, /* 00002628 "S...`..." */
0xA0,0x06,0x93,0x60,0x01,0xA4,0x00,0xA0, /* 00002630 "...`...." */
0x07,0x93,0x60,0x0A,0x02,0xA4,0x01,0xA4, /* 00002638 "..`....." */
0x00,0x5B,0x82,0x4C,0x19,0x4C,0x43,0x44, /* 00002640 ".[.L.LCD" */
0x30,0x14,0x0A,0x5F,0x41,0x44,0x52,0x00, /* 00002648 "0.._ADR." */
0xA4,0x0B,0x10,0x01,0x08,0x5F,0x42,0x43, /* 00002650 "....._BC" */
0x4C,0x12,0x16,0x0A,0x0A,0x0A,0x0A,0x08, /* 00002658 "L......." */
0x0A,0x02,0x0A,0x04,0x0A,0x06,0x0A,0x08, /* 00002660 "........" */
0x0A,0x0A,0x0A,0x0C,0x0A,0x0E,0x0A,0x10, /* 00002668 "........" */
0x14,0x40,0x06,0x5F,0x42,0x43,0x4D,0x01, /* 00002670 ".@._BCM." */
0xA0,0x0E,0x93,0x42,0x52,0x54,0x53,0x0A, /* 00002678 "...BRTS." */
0x02,0x70,0x00,0x42,0x52,0x54,0x53,0xA1, /* 00002680 ".p.BRTS." */
0x49,0x04,0xA0,0x28,0x91,0x93,0x42,0x52, /* 00002688 "I..(..BR" */
0x54,0x53,0x01,0x93,0x4F,0x53,0x49,0x54, /* 00002690 "TS..OSIT" */
0x00,0x70,0x0A,0x08,0x49,0x4F,0x42,0x33, /* 00002698 ".p..IOB3" */
0x70,0x0A,0x33,0x49,0x4F,0x42,0x32,0x70, /* 000026A0 "p.3IOB2p" */
0x00,0x42,0x52,0x54,0x53,0x70,0x01,0x4F, /* 000026A8 ".BRTSp.O" */
0x53,0x49,0x54,0xA1,0x0F,0x70,0x68,0x5E, /* 000026B0 "SIT..ph^" */
0x5E,0x5E,0x2E,0x50,0x58,0x34,0x30,0x43, /* 000026B8 "^^.PX40C" */
0x32,0x31,0x39,0x70,0x0A,0x06,0x49,0x4F, /* 000026C0 "219p..IO" */
0x42,0x33,0x70,0x0A,0x33,0x49,0x4F,0x42, /* 000026C8 "B3p.3IOB" */
0x32,0x14,0x09,0x5F,0x44,0x43,0x53,0x00, /* 000026D0 "2.._DCS." */
0xA4,0x0A,0x1F,0x14,0x31,0x5F,0x44,0x47, /* 000026D8 "....1_DG" */
0x53,0x00,0x78,0x4C,0x43,0x44,0x53,0x0A, /* 000026E0 "S.xLCDS." */
0x03,0x60,0x61,0x72,0x4C,0x43,0x44,0x53, /* 000026E8 ".`arLCDS" */
0x01,0x4C,0x43,0x44,0x53,0xA0,0x06,0x93, /* 000026F0 ".LCDS..." */
0x60,0x00,0xA4,0x01,0xA0,0x06,0x93,0x60, /* 000026F8 "`......`" */
0x01,0xA4,0x01,0xA0,0x07,0x93,0x60,0x0A, /* 00002700 "......`." */
0x02,0xA4,0x00,0xA4,0x00,0x14,0x41,0x0D, /* 00002708 "......A." */
0x5F,0x44,0x44,0x43,0x01,0xA0,0x49,0x05, /* 00002710 "_DDC..I." */
0x93,0x68,0x01,0x70,0x0A,0x43,0x5E,0x5E, /* 00002718 ".h.p.C^^" */
0x5E,0x2E,0x50,0x58,0x34,0x30,0x50,0x58, /* 00002720 "^.PX40PX" */
0x42,0x33,0x70,0x0A,0x7B,0x5E,0x5E,0x5E, /* 00002728 "B3p.{^^^" */
0x2E,0x50,0x58,0x34,0x30,0x50,0x58,0x42, /* 00002730 ".PX40PXB" */
0x32,0x70,0x5E,0x5E,0x5E,0x2E,0x50,0x58, /* 00002738 "2p^^^.PX" */
0x34,0x30,0x50,0x58,0x42,0x33,0x60,0x7B, /* 00002740 "40PXB3`{" */
0x60,0x0A,0x3C,0x60,0xA0,0x0A,0x93,0x60, /* 00002748 "`.<`...`" */
0x0A,0x24,0xA4,0x44,0x44,0x43,0x31,0xA0, /* 00002750 ".$.DDC1." */
0x0A,0x93,0x60,0x0A,0x08,0xA4,0x44,0x44, /* 00002758 "..`...DD" */
0x43,0x32,0xA0,0x0A,0x93,0x60,0x0A,0x0C, /* 00002760 "C2...`.." */
0xA4,0x44,0x44,0x43,0x33,0xA4,0x00,0xA0, /* 00002768 ".DDC3..." */
0x4D,0x06,0x93,0x68,0x0A,0x02,0x70,0x0A, /* 00002770 "M..h..p." */
0x43,0x5E,0x5E,0x5E,0x2E,0x50,0x58,0x34, /* 00002778 "C^^^.PX4" */
0x30,0x50,0x58,0x42,0x33,0x70,0x0A,0x7B, /* 00002780 "0PXB3p.{" */
0x5E,0x5E,0x5E,0x2E,0x50,0x58,0x34,0x30, /* 00002788 "^^^.PX40" */
0x50,0x58,0x42,0x32,0x70,0x5E,0x5E,0x5E, /* 00002790 "PXB2p^^^" */
0x2E,0x50,0x58,0x34,0x30,0x50,0x58,0x42, /* 00002798 ".PX40PXB" */
0x33,0x60,0x7B,0x60,0x0A,0x3C,0x60,0xA0, /* 000027A0 "3`{`.<`." */
0x11,0x93,0x60,0x0A,0x24,0x73,0x44,0x44, /* 000027A8 "..`.$sDD" */
0x43,0x31,0x44,0x44,0x43,0x30,0x60,0xA4, /* 000027B0 "C1DDC0`." */
0x60,0xA0,0x11,0x93,0x60,0x0A,0x08,0x73, /* 000027B8 "`...`..s" */
0x44,0x44,0x43,0x32,0x44,0x44,0x43,0x30, /* 000027C0 "DDC2DDC0" */
0x60,0xA4,0x60,0xA0,0x11,0x93,0x60,0x0A, /* 000027C8 "`.`...`." */
0x0C,0x73,0x44,0x44,0x43,0x33,0x44,0x44, /* 000027D0 ".sDDC3DD" */
0x43,0x30,0x60,0xA4,0x60,0xA4,0x00,0x08, /* 000027D8 "C0`.`..." */
0x44,0x44,0x43,0x30,0x11,0x44,0x08,0x0A, /* 000027E0 "DDC0.D.." */
0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 000027E8 "........" */
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 000027F0 "........" */
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 000027F8 "........" */
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00002800 "........" */
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00002808 "........" */
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00002810 "........" */
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00002818 "........" */
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00002820 "........" */
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00002828 "........" */
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00002830 "........" */
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00002838 "........" */
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00002840 "........" */
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00002848 "........" */
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00002850 "........" */
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00002858 "........" */
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00002860 "........" */
0x00,0x08,0x44,0x44,0x43,0x31,0x11,0x44, /* 00002868 "..DDC1.D" */
0x08,0x0A,0x80,0x00,0xFF,0xFF,0xFF,0xFF, /* 00002870 "........" */
0xFF,0xFF,0x00,0x24,0x4D,0x55,0x0A,0x01, /* 00002878 "...$MU.." */
0x01,0x01,0x01,0x23,0x09,0x01,0x02,0x80, /* 00002880 "...#...." */
0x21,0x18,0x00,0xEA,0x0D,0xFB,0xA0,0x57, /* 00002888 "!......W" */
0x47,0x98,0x27,0x12,0x4D,0x51,0xA1,0x08, /* 00002890 "G.'.MQ.." */
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00002898 "........" */
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 000028A0 "........" */
0x00,0x64,0x19,0x00,0x40,0x41,0x00,0x26, /* 000028A8 ".d..@A.&" */
0x30,0x18,0x88,0x36,0x00,0x0E,0xCB,0x10, /* 000028B0 "0..6...." */
0x00,0x00,0x1A,0x00,0x00,0x00,0xFC,0x00, /* 000028B8 "........" */
0x54,0x68,0x69,0x6E,0x6B,0x50,0x61,0x64, /* 000028C0 "ThinkPad" */
0x20,0x4C,0x43,0x44,0x20,0x00,0x00,0x00, /* 000028C8 " LCD ..." */
0xFC,0x00,0x31,0x30,0x32,0x34,0x78,0x37, /* 000028D0 "..1024x7" */
0x36,0x38,0x20,0x20,0x20,0x20,0x20,0x00, /* 000028D8 "68 ." */
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 000028E0 "........" */
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 000028E8 "........" */
0x00,0x00,0x33,0x08,0x44,0x44,0x43,0x32, /* 000028F0 "..3.DDC2" */
0x11,0x44,0x08,0x0A,0x80,0x00,0xFF,0xFF, /* 000028F8 ".D......" */
0xFF,0xFF,0xFF,0xFF,0x00,0x24,0x4D,0x4B, /* 00002900 ".....$MK" */
0x0A,0x01,0x01,0x01,0x01,0x23,0x09,0x01, /* 00002908 ".....#.." */
0x02,0x80,0x21,0x18,0x00,0xEA,0x0D,0xFB, /* 00002910 "..!....." */
0xA0,0x57,0x47,0x98,0x27,0x12,0x4D,0x51, /* 00002918 ".WG.'.MQ" */
0xA1,0x08,0x00,0x00,0x00,0x00,0x00,0x00, /* 00002920 "........" */
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00002928 "........" */
0x00,0x00,0x00,0x90,0x01,0x20,0x00,0x31, /* 00002930 "..... .1" */
0x58,0x1C,0x20,0x28,0x80,0x01,0x00,0xF6, /* 00002938 "X. (...." */
0xB8,0x00,0x00,0x00,0x1A,0x00,0x00,0x00, /* 00002940 "........" */
0xFC,0x00,0x54,0x68,0x69,0x6E,0x6B,0x50, /* 00002948 "..ThinkP" */
0x61,0x64,0x20,0x4C,0x43,0x44,0x20,0x00, /* 00002950 "ad LCD ." */
0x00,0x00,0xFC,0x00,0x38,0x30,0x30,0x78, /* 00002958 "....800x" */
0x36,0x30,0x30,0x20,0x20,0x20,0x20,0x20, /* 00002960 "600 " */
0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00002968 " ......." */
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 00002970 "........" */
0x00,0x00,0x00,0x00,0xA1,0x08,0x44,0x44, /* 00002978 "......DD" */
0x43,0x33,0x11,0x44,0x08,0x0A,0x80,0x00, /* 00002980 "C3.D...." */
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x24, /* 00002988 ".......$" */
0x4D,0x50,0x0A,0x01,0x01,0x01,0x01,0x23, /* 00002990 "MP.....#" */
0x09,0x01,0x02,0x80,0x21,0x18,0x00,0xEA, /* 00002998 "....!..." */
0x0D,0xFB,0xA0,0x57,0x47,0x98,0x27,0x12, /* 000029A0 "...WG.'." */
0x4D,0x51,0xA1,0x08,0x00,0x00,0x00,0x00, /* 000029A8 "MQ......" */
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 000029B0 "........" */
0x00,0x00,0x00,0x00,0x00,0x90,0x01,0x20, /* 000029B8 "....... " */
0x00,0x31,0x58,0x1C,0x20,0x28,0x80,0x01, /* 000029C0 ".1X. (.." */
0x00,0xF6,0xB8,0x00,0x00,0x00,0x1A,0x00, /* 000029C8 "........" */
0x00,0x00,0xFC,0x00,0x54,0x68,0x69,0x6E, /* 000029D0 "....Thin" */
0x6B,0x50,0x61,0x64,0x20,0x4C,0x43,0x44, /* 000029D8 "kPad LCD" */
0x20,0x00,0x00,0x00,0xFC,0x00,0x38,0x30, /* 000029E0 " .....80" */
0x30,0x78,0x36,0x30,0x30,0x20,0x20,0x20, /* 000029E8 "0x600 " */
0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00, /* 000029F0 " ....." */
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 000029F8 "........" */
0x00,0x00,0x00,0x00,0x00,0x00,0x9C,0x5B, /* 00002A00 ".......[" */
0x82,0x4A,0x8D,0x49,0x49,0x44,0x45,0x08, /* 00002A08 ".J.IIDE." */
0x5F,0x41,0x44,0x52,0x0C,0x01,0x00,0x07, /* 00002A10 "_ADR...." */
0x00,0x5B,0x80,0x43,0x46,0x34,0x31,0x02, /* 00002A18 ".[.CF41." */
0x0A,0x40,0x0A,0x19,0x5B,0x81,0x34,0x43, /* 00002A20 ".@..[.4C" */
0x46,0x34,0x31,0x03,0x50,0x54,0x49,0x4D, /* 00002A28 "F41.PTIM" */
0x10,0x53,0x54,0x49,0x4D,0x10,0x50,0x53, /* 00002A30 ".STIM.PS" */
0x4C,0x41,0x04,0x53,0x53,0x4C,0x41,0x04, /* 00002A38 "LA.SSLA." */
0x00,0x18,0x55,0x44,0x4D,0x50,0x02,0x55, /* 00002A40 "..UDMP.U" */
0x44,0x4D,0x53,0x02,0x00,0x0C,0x44,0x4D, /* 00002A48 "DMS...DM" */
0x54,0x50,0x06,0x00,0x02,0x44,0x4D,0x54, /* 00002A50 "TP...DMT" */
0x53,0x06,0x08,0x54,0x49,0x4D,0x30,0x12, /* 00002A58 "S..TIM0." */
0x3C,0x06,0x12,0x0B,0x04,0x0B,0x84,0x03, /* 00002A60 "<......." */
0x0A,0xF0,0x0A,0xB4,0x0A,0x78,0x12,0x09, /* 00002A68 ".....x.." */
0x04,0x00,0x0A,0x10,0x0A,0x21,0x0A,0x23, /* 00002A70 ".....!.#" */
0x12,0x09,0x04,0x00,0x0A,0x04,0x0A,0x09, /* 00002A78 "........" */
0x0A,0x0B,0x12,0x08,0x03,0x0A,0x78,0x0A, /* 00002A80 "......x." */
0x5A,0x0A,0x3C,0x12,0x06,0x03,0x00,0x01, /* 00002A88 "Z.<....." */
0x0A,0x02,0x12,0x09,0x04,0x00,0x0A,0x02, /* 00002A90 "........" */
0x0A,0x03,0x0A,0x04,0x08,0x41,0x54,0x30, /* 00002A98 ".....AT0" */
0x31,0x11,0x0A,0x0A,0x07,0x03,0x08,0x00, /* 00002AA0 "1......." */
0x00,0x00,0x00,0xEF,0x08,0x41,0x54,0x30, /* 00002AA8 ".....AT0" */
0x32,0x11,0x0A,0x0A,0x07,0x03,0x40,0x00, /* 00002AB0 "2.....@." */
0x00,0x00,0x00,0xEF,0x08,0x41,0x54,0x30, /* 00002AB8 ".....AT0" */
0x33,0x11,0x0A,0x0A,0x07,0x03,0x20,0x00, /* 00002AC0 "3..... ." */
0x00,0x00,0x00,0xEF,0x08,0x41,0x54,0x30, /* 00002AC8 ".....AT0" */
0x34,0x11,0x0A,0x0A,0x07,0x00,0x00,0x00, /* 00002AD0 "4......." */
0x00,0x00,0x00,0x90,0x08,0x41,0x54,0x30, /* 00002AD8 ".....AT0" */
0x35,0x11,0x0A,0x0A,0x07,0x00,0x10,0x00, /* 00002AE0 "5......." */
0x00,0x00,0x00,0xC6,0x08,0x41,0x54,0x30, /* 00002AE8 ".....AT0" */
0x36,0x11,0x0A,0x0A,0x07,0x00,0x00,0x00, /* 00002AF0 "6......." */
0x00,0x00,0x00,0x91,0x08,0x41,0x54,0x50, /* 00002AF8 ".....ATP" */
0x30,0x11,0x03,0x0A,0x24,0x08,0x41,0x54, /* 00002B00 "0...$.AT" */
0x50,0x31,0x11,0x03,0x0A,0x24,0x08,0x41, /* 00002B08 "P1...$.A" */
0x54,0x53,0x30,0x11,0x03,0x0A,0x24,0x08, /* 00002B10 "TS0...$." */
0x41,0x54,0x53,0x31,0x11,0x03,0x0A,0x24, /* 00002B18 "ATS1...$" */
0x08,0x54,0x4D,0x44,0x30,0x11,0x03,0x0A, /* 00002B20 ".TMD0..." */
0x14,0x8A,0x54,0x4D,0x44,0x30,0x00,0x50, /* 00002B28 "..TMD0.P" */
0x49,0x4F,0x30,0x8A,0x54,0x4D,0x44,0x30, /* 00002B30 "IO0.TMD0" */
0x0A,0x04,0x44,0x4D,0x41,0x30,0x8A,0x54, /* 00002B38 "..DMA0.T" */
0x4D,0x44,0x30,0x0A,0x08,0x50,0x49,0x4F, /* 00002B40 "MD0..PIO" */
0x31,0x8A,0x54,0x4D,0x44,0x30,0x0A,0x0C, /* 00002B48 "1.TMD0.." */
0x44,0x4D,0x41,0x31,0x8A,0x54,0x4D,0x44, /* 00002B50 "DMA1.TMD" */
0x30,0x0A,0x10,0x46,0x4C,0x41,0x47,0x14, /* 00002B58 "0..FLAG." */
0x46,0x13,0x47,0x54,0x4D,0x4D,0x0C,0x70, /* 00002B60 "F.GTMM.p" */
0x68,0x60,0x70,0x69,0x61,0x70,0x6A,0x62, /* 00002B68 "h`piapjb" */
0x70,0x6B,0x63,0x70,0xFF,0x65,0x70,0x65, /* 00002B70 "pkcp.epe" */
0x50,0x49,0x4F,0x30,0x70,0x65,0x50,0x49, /* 00002B78 "PIO0pePI" */
0x4F,0x31,0x70,0x65,0x44,0x4D,0x41,0x30, /* 00002B80 "O1peDMA0" */
0x70,0x65,0x44,0x4D,0x41,0x31,0x70,0x00, /* 00002B88 "peDMA1p." */
0x46,0x4C,0x41,0x47,0xA0,0x11,0x7B,0x60, /* 00002B90 "FLAG..{`" */
0x0A,0x02,0x00,0x7D,0x46,0x4C,0x41,0x47, /* 00002B98 "...}FLAG" */
0x0A,0x02,0x46,0x4C,0x41,0x47,0x7A,0x7B, /* 00002BA0 "..FLAGz{" */
0x60,0x0B,0x00,0x33,0x00,0x0A,0x08,0x65, /* 00002BA8 "`..3...e" */
0x70,0x89,0x83,0x88,0x54,0x49,0x4D,0x30, /* 00002BB0 "p...TIM0" */
0x01,0x00,0x02,0x65,0x00,0x00,0x00,0x66, /* 00002BB8 "...e...f" */
0x70,0x83,0x88,0x83,0x88,0x54,0x49,0x4D, /* 00002BC0 "p....TIM" */
0x30,0x00,0x00,0x66,0x00,0x67,0x70,0x67, /* 00002BC8 "0..f.gpg" */
0x44,0x4D,0x41,0x30,0xA0,0x06,0x7B,0x60, /* 00002BD0 "DMA0..{`" */
0x0A,0x08,0x00,0xA1,0x07,0x70,0x67,0x50, /* 00002BD8 ".....pgP" */
0x49,0x4F,0x30,0xA0,0x11,0x7B,0x60,0x0A, /* 00002BE0 "IO0..{`." */
0x20,0x00,0x7D,0x46,0x4C,0x41,0x47,0x0A, /* 00002BE8 " .}FLAG." */
0x08,0x46,0x4C,0x41,0x47,0xA0,0x47,0x04, /* 00002BF0 ".FLAG.G." */
0x7B,0x60,0x0B,0x00,0x40,0x00,0x7D,0x46, /* 00002BF8 "{`..@.}F" */
0x4C,0x41,0x47,0x0A,0x10,0x46,0x4C,0x41, /* 00002C00 "LAG..FLA" */
0x47,0x70,0x89,0x83,0x88,0x54,0x49,0x4D, /* 00002C08 "Gp...TIM" */
0x30,0x0A,0x02,0x00,0x02,0x61,0x00,0x00, /* 00002C10 "0....a.." */
0x00,0x65,0x70,0x83,0x88,0x83,0x88,0x54, /* 00002C18 ".ep....T" */
0x49,0x4D,0x30,0x00,0x00,0x65,0x00,0x66, /* 00002C20 "IM0..e.f" */
0x70,0x66,0x44,0x4D,0x41,0x31,0xA0,0x06, /* 00002C28 "pfDMA1.." */
0x7B,0x60,0x0A,0x80,0x00,0xA1,0x07,0x70, /* 00002C30 "{`.....p" */
0x66,0x50,0x49,0x4F,0x31,0xA0,0x26,0x7B, /* 00002C38 "fPIO1.&{" */
0x62,0x01,0x00,0x7B,0x63,0x0A,0x03,0x65, /* 00002C40 "b..{c..e" */
0x70,0x83,0x88,0x83,0x88,0x54,0x49,0x4D, /* 00002C48 "p....TIM" */
0x30,0x0A,0x03,0x00,0x65,0x00,0x44,0x4D, /* 00002C50 "0...e.DM" */
0x41,0x30,0x7D,0x46,0x4C,0x41,0x47,0x01, /* 00002C58 "A0}FLAG." */
0x46,0x4C,0x41,0x47,0xA0,0x2C,0x7B,0x62, /* 00002C60 "FLAG.,{b" */
0x0A,0x02,0x00,0x7B,0x7A,0x63,0x0A,0x04, /* 00002C68 "...{zc.." */
0x00,0x0A,0x03,0x65,0x70,0x83,0x88,0x83, /* 00002C70 "...ep..." */
0x88,0x54,0x49,0x4D,0x30,0x0A,0x03,0x00, /* 00002C78 ".TIM0..." */
0x65,0x00,0x44,0x4D,0x41,0x31,0x7D,0x46, /* 00002C80 "e.DMA1}F" */
0x4C,0x41,0x47,0x0A,0x04,0x46,0x4C,0x41, /* 00002C88 "LAG..FLA" */
0x47,0xA4,0x54,0x4D,0x44,0x30,0x14,0x44, /* 00002C90 "G.TMD0.D" */
0x19,0x53,0x54,0x4D,0x50,0x0D,0x70,0x68, /* 00002C98 ".STMP.ph" */
0x54,0x4D,0x44,0x30,0x7B,0x69,0x0B,0x44, /* 00002CA0 "TMD0{i.D" */
0x80,0x69,0x7B,0x6B,0x0A,0xFC,0x6B,0x7B, /* 00002CA8 ".i{k..k{" */
0x6C,0x0A,0xCC,0x6C,0xA0,0x3A,0x7B,0x46, /* 00002CB0 "l..l.:{F" */
0x4C,0x41,0x47,0x01,0x00,0x70,0x89,0x83, /* 00002CB8 "LAG..p.." */
0x88,0x54,0x49,0x4D,0x30,0x0A,0x03,0x00, /* 00002CC0 ".TIM0..." */
0x02,0x44,0x4D,0x41,0x30,0x00,0x00,0x00, /* 00002CC8 ".DMA0..." */
0x60,0xA0,0x09,0x94,0x60,0x0A,0x02,0x70, /* 00002CD0 "`...`..p" */
0x0A,0x02,0x60,0x7D,0x6C,0x83,0x88,0x83, /* 00002CD8 "..`}l..." */
0x88,0x54,0x49,0x4D,0x30,0x0A,0x04,0x00, /* 00002CE0 ".TIM0..." */
0x60,0x00,0x6C,0x7D,0x6B,0x01,0x6B,0xA1, /* 00002CE8 "`.l}k.k." */
0x2F,0xA0,0x2D,0x7D,0x93,0x50,0x49,0x4F, /* 00002CF0 "/.-}.PIO" */
0x30,0xFF,0x93,0x50,0x49,0x4F,0x30,0x00, /* 00002CF8 "0..PIO0." */
0x00,0xA0,0x1D,0x7B,0x95,0x44,0x4D,0x41, /* 00002D00 "...{.DMA" */
0x30,0xFF,0x94,0x44,0x4D,0x41,0x30,0x00, /* 00002D08 "0..DMA0." */
0x00,0x70,0x44,0x4D,0x41,0x30,0x50,0x49, /* 00002D10 ".pDMA0PI" */
0x4F,0x30,0x7D,0x69,0x0A,0x08,0x69,0xA0, /* 00002D18 "O0}i..i." */
0x41,0x04,0x7B,0x46,0x4C,0x41,0x47,0x0A, /* 00002D20 "A.{FLAG." */
0x04,0x00,0x70,0x89,0x83,0x88,0x54,0x49, /* 00002D28 "..p...TI" */
0x4D,0x30,0x0A,0x03,0x00,0x02,0x44,0x4D, /* 00002D30 "M0....DM" */
0x41,0x30,0x00,0x00,0x00,0x60,0xA0,0x09, /* 00002D38 "A0...`.." */
0x94,0x60,0x0A,0x02,0x70,0x0A,0x02,0x60, /* 00002D40 ".`..p..`" */
0x7D,0x6C,0x79,0x83,0x88,0x83,0x88,0x54, /* 00002D48 "}ly....T" */
0x49,0x4D,0x30,0x0A,0x04,0x00,0x60,0x00, /* 00002D50 "IM0...`." */
0x0A,0x04,0x00,0x6C,0x7D,0x6B,0x0A,0x02, /* 00002D58 "...l}k.." */
0x6B,0xA1,0x2F,0xA0,0x2D,0x7D,0x93,0x50, /* 00002D60 "k./.-}.P" */
0x49,0x4F,0x31,0xFF,0x93,0x50,0x49,0x4F, /* 00002D68 "IO1..PIO" */
0x31,0x00,0x00,0xA0,0x1D,0x7B,0x95,0x44, /* 00002D70 "1....{.D" */
0x4D,0x41,0x31,0xFF,0x94,0x44,0x4D,0x41, /* 00002D78 "MA1..DMA" */
0x31,0x00,0x00,0x70,0x44,0x4D,0x41,0x31, /* 00002D80 "1..pDMA1" */
0x50,0x49,0x4F,0x31,0x7D,0x69,0x0A,0x80, /* 00002D88 "PIO1}i.." */
0x69,0xA0,0x0E,0x7B,0x46,0x4C,0x41,0x47, /* 00002D90 "i..{FLAG" */
0x0A,0x02,0x00,0x7D,0x69,0x0A,0x03,0x69, /* 00002D98 "...}i..i" */
0xA0,0x0E,0x7B,0x46,0x4C,0x41,0x47,0x0A, /* 00002DA0 "..{FLAG." */
0x08,0x00,0x7D,0x69,0x0A,0x30,0x69,0x7B, /* 00002DA8 "..}i.0i{" */
0x89,0x83,0x88,0x54,0x49,0x4D,0x30,0x00, /* 00002DB0 "...TIM0." */
0x00,0x04,0x50,0x49,0x4F,0x30,0x00,0x00, /* 00002DB8 "..PIO0.." */
0x00,0x0A,0x03,0x60,0x70,0x83,0x88,0x83, /* 00002DC0 "...`p..." */
0x88,0x54,0x49,0x4D,0x30,0x01,0x00,0x60, /* 00002DC8 ".TIM0..`" */
0x00,0x61,0x79,0x61,0x0A,0x08,0x62,0x7D, /* 00002DD0 ".aya..b}" */
0x69,0x62,0x69,0xA0,0x37,0x7B,0x46,0x4C, /* 00002DD8 "ibi.7{FL" */
0x41,0x47,0x0A,0x10,0x00,0x7D,0x69,0x0B, /* 00002DE0 "AG...}i." */
0x00,0x40,0x69,0x7B,0x89,0x83,0x88,0x54, /* 00002DE8 ".@i{...T" */
0x49,0x4D,0x30,0x00,0x00,0x04,0x50,0x49, /* 00002DF0 "IM0...PI" */
0x4F,0x31,0x00,0x00,0x00,0x0A,0x03,0x60, /* 00002DF8 "O1.....`" */
0x70,0x83,0x88,0x83,0x88,0x54,0x49,0x4D, /* 00002E00 "p....TIM" */
0x30,0x0A,0x02,0x00,0x60,0x00,0x61,0x7D, /* 00002E08 "0...`.a}" */
0x6A,0x61,0x6A,0x70,0x69,0x50,0x54,0x49, /* 00002E10 "jajpiPTI" */
0x4D,0x70,0x6A,0x50,0x53,0x4C,0x41,0x70, /* 00002E18 "MpjPSLAp" */
0x6B,0x55,0x44,0x4D,0x50,0x70,0x6C,0x44, /* 00002E20 "kUDMPplD" */
0x4D,0x54,0x50,0x14,0x44,0x19,0x53,0x54, /* 00002E28 "MTP.D.ST" */
0x4D,0x53,0x0D,0x70,0x68,0x54,0x4D,0x44, /* 00002E30 "MS.phTMD" */
0x30,0x7B,0x69,0x0B,0x44,0x80,0x69,0x7B, /* 00002E38 "0{i.D.i{" */
0x6B,0x0A,0xFC,0x6B,0x7B,0x6C,0x0A,0xCC, /* 00002E40 "k..k{l.." */
0x6C,0xA0,0x3A,0x7B,0x46,0x4C,0x41,0x47, /* 00002E48 "l.:{FLAG" */
0x01,0x00,0x70,0x89,0x83,0x88,0x54,0x49, /* 00002E50 "..p...TI" */
0x4D,0x30,0x0A,0x03,0x00,0x02,0x44,0x4D, /* 00002E58 "M0....DM" */
0x41,0x30,0x00,0x00,0x00,0x60,0xA0,0x09, /* 00002E60 "A0...`.." */
0x94,0x60,0x0A,0x02,0x70,0x0A,0x02,0x60, /* 00002E68 ".`..p..`" */
0x7D,0x6C,0x83,0x88,0x83,0x88,0x54,0x49, /* 00002E70 "}l....TI" */
0x4D,0x30,0x0A,0x04,0x00,0x60,0x00,0x6C, /* 00002E78 "M0...`.l" */
0x7D,0x6B,0x01,0x6B,0xA1,0x2F,0xA0,0x2D, /* 00002E80 "}k.k./.-" */
0x7D,0x93,0x50,0x49,0x4F,0x30,0xFF,0x93, /* 00002E88 "}.PIO0.." */
0x50,0x49,0x4F,0x30,0x00,0x00,0xA0,0x1D, /* 00002E90 "PIO0...." */
0x7B,0x95,0x44,0x4D,0x41,0x30,0xFF,0x94, /* 00002E98 "{.DMA0.." */
0x44,0x4D,0x41,0x30,0x00,0x00,0x70,0x44, /* 00002EA0 "DMA0..pD" */
0x4D,0x41,0x30,0x50,0x49,0x4F,0x30,0x7D, /* 00002EA8 "MA0PIO0}" */
0x69,0x0A,0x08,0x69,0xA0,0x41,0x04,0x7B, /* 00002EB0 "i..i.A.{" */
0x46,0x4C,0x41,0x47,0x0A,0x04,0x00,0x70, /* 00002EB8 "FLAG...p" */
0x89,0x83,0x88,0x54,0x49,0x4D,0x30,0x0A, /* 00002EC0 "...TIM0." */
0x03,0x00,0x02,0x44,0x4D,0x41,0x30,0x00, /* 00002EC8 "...DMA0." */
0x00,0x00,0x60,0xA0,0x09,0x94,0x60,0x0A, /* 00002ED0 "..`...`." */
0x02,0x70,0x0A,0x02,0x60,0x7D,0x6C,0x79, /* 00002ED8 ".p..`}ly" */
0x83,0x88,0x83,0x88,0x54,0x49,0x4D,0x30, /* 00002EE0 "....TIM0" */
0x0A,0x04,0x00,0x60,0x00,0x0A,0x04,0x00, /* 00002EE8 "...`...." */
0x6C,0x7D,0x6B,0x0A,0x02,0x6B,0xA1,0x2F, /* 00002EF0 "l}k..k./" */
0xA0,0x2D,0x7D,0x93,0x50,0x49,0x4F,0x31, /* 00002EF8 ".-}.PIO1" */
0xFF,0x93,0x50,0x49,0x4F,0x31,0x00,0x00, /* 00002F00 "..PIO1.." */
0xA0,0x1D,0x7B,0x95,0x44,0x4D,0x41,0x31, /* 00002F08 "..{.DMA1" */
0xFF,0x94,0x44,0x4D,0x41,0x31,0x00,0x00, /* 00002F10 "..DMA1.." */
0x70,0x44,0x4D,0x41,0x31,0x50,0x49,0x4F, /* 00002F18 "pDMA1PIO" */
0x31,0x7D,0x69,0x0A,0x80,0x69,0xA0,0x0E, /* 00002F20 "1}i..i.." */
0x7B,0x46,0x4C,0x41,0x47,0x0A,0x02,0x00, /* 00002F28 "{FLAG..." */
0x7D,0x69,0x0A,0x03,0x69,0xA0,0x0E,0x7B, /* 00002F30 "}i..i..{" */
0x46,0x4C,0x41,0x47,0x0A,0x08,0x00,0x7D, /* 00002F38 "FLAG...}" */
0x69,0x0A,0x30,0x69,0x7B,0x89,0x83,0x88, /* 00002F40 "i.0i{..." */
0x54,0x49,0x4D,0x30,0x00,0x00,0x04,0x50, /* 00002F48 "TIM0...P" */
0x49,0x4F,0x30,0x00,0x00,0x00,0x0A,0x03, /* 00002F50 "IO0....." */
0x60,0x70,0x83,0x88,0x83,0x88,0x54,0x49, /* 00002F58 "`p....TI" */
0x4D,0x30,0x01,0x00,0x60,0x00,0x61,0x79, /* 00002F60 "M0..`.ay" */
0x61,0x0A,0x08,0x62,0x7D,0x69,0x62,0x69, /* 00002F68 "a..b}ibi" */
0xA0,0x37,0x7B,0x46,0x4C,0x41,0x47,0x0A, /* 00002F70 ".7{FLAG." */
0x10,0x00,0x7D,0x69,0x0B,0x00,0x40,0x69, /* 00002F78 "..}i..@i" */
0x7B,0x89,0x83,0x88,0x54,0x49,0x4D,0x30, /* 00002F80 "{...TIM0" */
0x00,0x00,0x04,0x50,0x49,0x4F,0x31,0x00, /* 00002F88 "...PIO1." */
0x00,0x00,0x0A,0x03,0x60,0x70,0x83,0x88, /* 00002F90 "....`p.." */
0x83,0x88,0x54,0x49,0x4D,0x30,0x0A,0x02, /* 00002F98 "..TIM0.." */
0x00,0x60,0x00,0x61,0x7D,0x6A,0x61,0x6A, /* 00002FA0 ".`.a}jaj" */
0x70,0x69,0x53,0x54,0x49,0x4D,0x70,0x6A, /* 00002FA8 "piSTIMpj" */
0x53,0x53,0x4C,0x41,0x70,0x6B,0x55,0x44, /* 00002FB0 "SSLApkUD" */
0x4D,0x53,0x70,0x6C,0x44,0x4D,0x54,0x53, /* 00002FB8 "MSplDMTS" */
0x14,0x42,0x20,0x47,0x54,0x46,0x4D,0x0C, /* 00002FC0 ".B GTFM." */
0x08,0x54,0x4D,0x42,0x46,0x11,0x04,0x0A, /* 00002FC8 ".TMBF..." */
0x07,0x00,0x08,0x41,0x54,0x42,0x46,0x11, /* 00002FD0 "...ATBF." */
0x04,0x0A,0x24,0x01,0xA0,0x0C,0x69,0xA0, /* 00002FD8 "..$...i." */
0x09,0x93,0x6B,0x00,0xA4,0x41,0x54,0x42, /* 00002FE0 "..k..ATB" */
0x46,0xA1,0x06,0xA4,0x41,0x54,0x42,0x46, /* 00002FE8 "F...ATBF" */
0x70,0x6A,0x54,0x4D,0x44,0x30,0x8C,0x54, /* 00002FF0 "pjTMD0.T" */
0x4D,0x42,0x46,0x01,0x41,0x30,0x30,0x31, /* 00002FF8 "MBF.A001" */
0x8C,0x54,0x4D,0x42,0x46,0x0A,0x05,0x41, /* 00003000 ".TMBF..A" */
0x30,0x30,0x35,0x8C,0x41,0x54,0x42,0x46, /* 00003008 "005.ATBF" */
0x00,0x43,0x4D,0x4E,0x4F,0x5B,0x13,0x41, /* 00003010 ".CMNO[.A" */
0x54,0x42,0x46,0x0A,0x08,0x0A,0x40,0x43, /* 00003018 "TBF...@C" */
0x4D,0x44,0x31,0x70,0x0A,0xA0,0x67,0xA0, /* 00003020 "MD1p..g." */
0x06,0x68,0x70,0x0A,0xB0,0x67,0xA0,0x2C, /* 00003028 ".hp..g.," */
0x6B,0x70,0x41,0x54,0x30,0x36,0x54,0x4D, /* 00003030 "kpAT06TM" */
0x42,0x46,0x70,0x0A,0x3F,0x41,0x30,0x30, /* 00003038 "BFp.?A00" */
0x31,0x70,0x67,0x41,0x30,0x30,0x35,0x7D, /* 00003040 "1pgA005}" */
0x41,0x30,0x30,0x35,0x0A,0x0F,0x41,0x30, /* 00003048 "A005..A0" */
0x30,0x35,0x70,0x54,0x4D,0x42,0x46,0x43, /* 00003050 "05pTMBFC" */
0x4D,0x44,0x31,0xA1,0x0A,0x70,0x41,0x54, /* 00003058 "MD1..pAT" */
0x30,0x34,0x43,0x4D,0x44,0x31,0x70,0x01, /* 00003060 "04CMD1p." */
0x43,0x4D,0x4E,0x4F,0x70,0x00,0x60,0x70, /* 00003068 "CMNOp.`p" */
0x00,0x61,0xA0,0x12,0x68,0xA0,0x0F,0x7B, /* 00003070 ".a..h..{" */
0x46,0x4C,0x41,0x47,0x0A,0x10,0x00,0x70, /* 00003078 "FLAG...p" */
0x44,0x4D,0x41,0x31,0x60,0xA1,0x10,0xA0, /* 00003080 "DMA1`..." */
0x0E,0x7B,0x46,0x4C,0x41,0x47,0x01,0x00, /* 00003088 ".{FLAG.." */
0x70,0x44,0x4D,0x41,0x30,0x60,0xA0,0x42, /* 00003090 "pDMA0`.B" */
0x06,0x60,0x70,0x89,0x83,0x88,0x54,0x49, /* 00003098 ".`p...TI" */
0x4D,0x30,0x0A,0x03,0x00,0x02,0x60,0x00, /* 000030A0 "M0....`." */
0x00,0x00,0x60,0xA0,0x09,0x94,0x60,0x0A, /* 000030A8 "..`...`." */
0x02,0x70,0x0A,0x02,0x60,0x77,0x43,0x4D, /* 000030B0 ".p..`wCM" */
0x4E,0x4F,0x0A,0x38,0x65,0x72,0x65,0x0A, /* 000030B8 "NO.8ere." */
0x08,0x66,0x5B,0x13,0x41,0x54,0x42,0x46, /* 000030C0 ".f[.ATBF" */
0x66,0x0A,0x38,0x43,0x4D,0x44,0x32,0x70, /* 000030C8 "f.8CMD2p" */
0x41,0x54,0x30,0x32,0x54,0x4D,0x42,0x46, /* 000030D0 "AT02TMBF" */
0x7D,0x41,0x30,0x30,0x31,0x60,0x41,0x30, /* 000030D8 "}A001`A0" */
0x30,0x31,0x70,0x67,0x41,0x30,0x30,0x35, /* 000030E0 "01pgA005" */
0x70,0x54,0x4D,0x42,0x46,0x43,0x4D,0x44, /* 000030E8 "pTMBFCMD" */
0x32,0x70,0x01,0x61,0x75,0x43,0x4D,0x4E, /* 000030F0 "2p.auCMN" */
0x4F,0x70,0x00,0x60,0xA0,0x12,0x68,0xA0, /* 000030F8 "Op.`..h." */
0x0F,0x7B,0x46,0x4C,0x41,0x47,0x0A,0x08, /* 00003100 ".{FLAG.." */
0x00,0x70,0x50,0x49,0x4F,0x31,0x60,0xA1, /* 00003108 ".pPIO1`." */
0x11,0xA0,0x0F,0x7B,0x46,0x4C,0x41,0x47, /* 00003110 "...{FLAG" */
0x0A,0x02,0x00,0x70,0x50,0x49,0x4F,0x30, /* 00003118 "...pPIO0" */
0x60,0xA0,0x42,0x06,0x60,0x77,0x43,0x4D, /* 00003120 "`.B.`wCM" */
0x4E,0x4F,0x0A,0x38,0x65,0x72,0x65,0x0A, /* 00003128 "NO.8ere." */
0x08,0x66,0x5B,0x13,0x41,0x54,0x42,0x46, /* 00003130 ".f[.ATBF" */
0x66,0x0A,0x38,0x43,0x4D,0x44,0x33,0x70, /* 00003138 "f.8CMD3p" */
0x41,0x54,0x30,0x31,0x54,0x4D,0x42,0x46, /* 00003140 "AT01TMBF" */
0x7B,0x89,0x83,0x88,0x54,0x49,0x4D,0x30, /* 00003148 "{...TIM0" */
0x00,0x00,0x04,0x60,0x00,0x00,0x00,0x0A, /* 00003150 "...`...." */
0x03,0x60,0x7D,0x41,0x30,0x30,0x31,0x83, /* 00003158 ".`}A001." */
0x88,0x83,0x88,0x54,0x49,0x4D,0x30,0x0A, /* 00003160 "...TIM0." */
0x05,0x00,0x60,0x00,0x41,0x30,0x30,0x31, /* 00003168 "..`.A001" */
0x70,0x67,0x41,0x30,0x30,0x35,0x70,0x54, /* 00003170 "pgA005pT" */
0x4D,0x42,0x46,0x43,0x4D,0x44,0x33,0x75, /* 00003178 "MBFCMD3u" */
0x43,0x4D,0x4E,0x4F,0xA0,0x39,0x61,0x77, /* 00003180 "CMNO.9aw" */
0x43,0x4D,0x4E,0x4F,0x0A,0x38,0x65,0x72, /* 00003188 "CMNO.8er" */
0x65,0x0A,0x08,0x66,0x5B,0x13,0x41,0x54, /* 00003190 "e..f[.AT" */
0x42,0x46,0x66,0x0A,0x38,0x43,0x4D,0x44, /* 00003198 "BFf.8CMD" */
0x34,0x70,0x41,0x54,0x30,0x35,0x54,0x4D, /* 000031A0 "4pAT05TM" */
0x42,0x46,0x70,0x67,0x41,0x30,0x30,0x35, /* 000031A8 "BFpgA005" */
0x70,0x54,0x4D,0x42,0x46,0x43,0x4D,0x44, /* 000031B0 "pTMBFCMD" */
0x34,0x75,0x43,0x4D,0x4E,0x4F,0xA4,0x41, /* 000031B8 "4uCMNO.A" */
0x54,0x42,0x46,0x14,0x47,0x04,0x47,0x54, /* 000031C0 "TBF.G.GT" */
0x46,0x42,0x01,0x8C,0x68,0x00,0x43,0x4D, /* 000031C8 "FB..h.CM" */
0x4E,0x4F,0x77,0x43,0x4D,0x4E,0x4F,0x0A, /* 000031D0 "NOwCMNO." */
0x07,0x60,0x77,0x60,0x0A,0x08,0x61,0x08, /* 000031D8 ".`w`..a." */
0x42,0x55,0x46,0x46,0x11,0x02,0x60,0x5B, /* 000031E0 "BUFF..`[" */
0x13,0x42,0x55,0x46,0x46,0x00,0x61,0x44, /* 000031E8 ".BUFF.aD" */
0x53,0x54,0x30,0x5B,0x13,0x68,0x0A,0x08, /* 000031F0 "ST0[.h.." */
0x61,0x53,0x52,0x43,0x30,0x70,0x53,0x52, /* 000031F8 "aSRC0pSR" */
0x43,0x30,0x44,0x53,0x54,0x30,0xA4,0x42, /* 00003200 "C0DST0.B" */
0x55,0x46,0x46,0x5B,0x82,0x46,0x0D,0x49, /* 00003208 "UFF[.F.I" */
0x44,0x45,0x30,0x08,0x5F,0x41,0x44,0x52, /* 00003210 "DE0._ADR" */
0x00,0x14,0x1B,0x5F,0x47,0x54,0x4D,0x00, /* 00003218 "..._GTM." */
0xA4,0x47,0x54,0x4D,0x4D,0x50,0x54,0x49, /* 00003220 ".GTMMPTI" */
0x4D,0x50,0x53,0x4C,0x41,0x55,0x44,0x4D, /* 00003228 "MPSLAUDM" */
0x50,0x44,0x4D,0x54,0x50,0x14,0x43,0x07, /* 00003230 "PDMTP.C." */
0x5F,0x53,0x54,0x4D,0x03,0x53,0x54,0x4D, /* 00003238 "_STM.STM" */
0x50,0x68,0x50,0x54,0x49,0x4D,0x50,0x53, /* 00003240 "PhPTIMPS" */
0x4C,0x41,0x55,0x44,0x4D,0x50,0x44,0x4D, /* 00003248 "LAUDMPDM" */
0x54,0x50,0x7B,0x52,0x43,0x4D,0x53,0x49, /* 00003250 "TP{RCMSI" */
0x44,0x45,0x50,0x0A,0x0F,0x65,0x7A,0x49, /* 00003258 "DEP..ezI" */
0x4F,0x42,0x33,0x0A,0x04,0x66,0x70,0x00, /* 00003260 "OB3..fp." */
0x61,0x70,0x00,0x60,0x70,0x65,0x61,0xA0, /* 00003268 "ap.`pea." */
0x07,0x93,0x65,0x01,0x70,0x01,0x62,0xA1, /* 00003270 "..e.p.b." */
0x04,0x70,0x00,0x62,0x70,0x47,0x54,0x46, /* 00003278 ".p.bpGTF" */
0x4D,0x60,0x61,0x68,0x62,0x41,0x54,0x50, /* 00003280 "M`ahbATP" */
0x30,0x70,0x01,0x60,0x70,0x66,0x61,0xA0, /* 00003288 "0p.`pfa." */
0x07,0x93,0x66,0x01,0x70,0x01,0x62,0xA1, /* 00003290 "..f.p.b." */
0x04,0x70,0x00,0x62,0x70,0x47,0x54,0x46, /* 00003298 ".p.bpGTF" */
0x4D,0x60,0x61,0x68,0x62,0x41,0x54,0x50, /* 000032A0 "M`ahbATP" */
0x31,0x5B,0x82,0x1B,0x44,0x52,0x56,0x4D, /* 000032A8 "1[..DRVM" */
0x08,0x5F,0x41,0x44,0x52,0x00,0x14,0x0F, /* 000032B0 "._ADR..." */
0x5F,0x47,0x54,0x46,0x00,0xA4,0x47,0x54, /* 000032B8 "_GTF..GT" */
0x46,0x42,0x41,0x54,0x50,0x30,0x5B,0x82, /* 000032C0 "FBATP0[." */
0x1B,0x44,0x52,0x56,0x53,0x08,0x5F,0x41, /* 000032C8 ".DRVS._A" */
0x44,0x52,0x01,0x14,0x0F,0x5F,0x47,0x54, /* 000032D0 "DR..._GT" */
0x46,0x00,0xA4,0x47,0x54,0x46,0x42,0x41, /* 000032D8 "F..GTFBA" */
0x54,0x50,0x31,0x5B,0x82,0x49,0x04,0x4C, /* 000032E0 "TP1[.I.L" */
0x49,0x44,0x5F,0x08,0x5F,0x48,0x49,0x44, /* 000032E8 "ID_._HID" */
0x0C,0x41,0xD0,0x0C,0x0D,0x14,0x2C,0x5F, /* 000032F0 ".A....,_" */
0x4C,0x49,0x44,0x00,0xA0,0x0F,0x93,0x4C, /* 000032F8 "LID....L" */
0x49,0x44,0x53,0x00,0x70,0x00,0x4C,0x49, /* 00003300 "IDS.p.LI" */
0x44,0x46,0xA4,0x00,0xA1,0x15,0xA0,0x0F, /* 00003308 "DF......" */
0x93,0x4C,0x49,0x44,0x46,0x01,0x70,0x00, /* 00003310 ".LIDF.p." */
0x4C,0x49,0x44,0x46,0xA4,0x00,0xA1,0x03, /* 00003318 "LIDF...." */
0xA4,0x01,0x08,0x5F,0x50,0x52,0x57,0x12, /* 00003320 "..._PRW." */
0x06,0x02,0x0A,0x0B,0x0A,0x03,0x5B,0x82, /* 00003328 "......[." */
0x46,0x06,0x41,0x43,0x5F,0x5F,0x08,0x5F, /* 00003330 "F.AC__._" */
0x48,0x49,0x44,0x0D,0x41,0x43,0x50,0x49, /* 00003338 "HID.ACPI" */
0x30,0x30,0x30,0x33,0x00,0x08,0x5F,0x50, /* 00003340 "0003.._P" */
0x43,0x4C,0x12,0x06,0x01,0x5F,0x53,0x42, /* 00003348 "CL..._SB" */
0x5F,0x14,0x3A,0x5F,0x50,0x53,0x52,0x00, /* 00003350 "_.:_PSR." */
0x70,0x0A,0x03,0x5E,0x5E,0x2F,0x03,0x50, /* 00003358 "p..^^/.P" */
0x43,0x49,0x30,0x50,0x58,0x34,0x30,0x50, /* 00003360 "CI0PX40P" */
0x58,0x42,0x33,0x70,0x0A,0x33,0x5E,0x5E, /* 00003368 "XB3p.3^^" */
0x2F,0x03,0x50,0x43,0x49,0x30,0x50,0x58, /* 00003370 "/.PCI0PX" */
0x34,0x30,0x50,0x58,0x42,0x32,0xA0,0x09, /* 00003378 "40PXB2.." */
0x93,0x44,0x41,0x54,0x35,0x01,0xA4,0x01, /* 00003380 ".DAT5..." */
0xA1,0x03,0xA4,0x00,0x14,0x09,0x5F,0x53, /* 00003388 "......_S" */
0x54,0x41,0x00,0xA4,0x0A,0x0F,0x5B,0x82, /* 00003390 "TA....[." */
0x45,0x31,0x42,0x41,0x54,0x30,0x08,0x5F, /* 00003398 "E1BAT0._" */
0x48,0x49,0x44,0x0C,0x41,0xD0,0x0C,0x0A, /* 000033A0 "HID.A..." */
0x08,0x5F,0x50,0x43,0x4C,0x12,0x06,0x01, /* 000033A8 "._PCL..." */
0x5F,0x53,0x42,0x5F,0x14,0x3B,0x5F,0x53, /* 000033B0 "_SB_.;_S" */
0x54,0x41,0x00,0x70,0x00,0x5E,0x5E,0x2F, /* 000033B8 "TA.p.^^/" */
0x03,0x50,0x43,0x49,0x30,0x50,0x58,0x34, /* 000033C0 ".PCI0PX4" */
0x30,0x50,0x58,0x42,0x33,0x70,0x0A,0x33, /* 000033C8 "0PXB3p.3" */
0x5E,0x5E,0x2F,0x03,0x50,0x43,0x49,0x30, /* 000033D0 "^^/.PCI0" */
0x50,0x58,0x34,0x30,0x50,0x58,0x42,0x32, /* 000033D8 "PX40PXB2" */
0xA0,0x0A,0x93,0x44,0x41,0x54,0x31,0x01, /* 000033E0 "...DAT1." */
0xA4,0x0A,0x1F,0xA1,0x04,0xA4,0x0A,0x0F, /* 000033E8 "........" */
0x14,0x45,0x0E,0x5F,0x42,0x49,0x46,0x00, /* 000033F0 ".E._BIF." */
0x70,0x0B,0x08,0x07,0x60,0x70,0x0B,0x08, /* 000033F8 "p...`p.." */
0x07,0x61,0x08,0x42,0x55,0x46,0x30,0x12, /* 00003400 ".a.BUF0." */
0x02,0x0D,0x70,0x01,0x88,0x42,0x55,0x46, /* 00003408 "..p..BUF" */
0x30,0x00,0x00,0x70,0x60,0x88,0x42,0x55, /* 00003410 "0..p`.BU" */
0x46,0x30,0x01,0x00,0x70,0x60,0x88,0x42, /* 00003418 "F0..p`.B" */
0x55,0x46,0x30,0x0A,0x02,0x00,0x70,0x01, /* 00003420 "UF0...p." */
0x88,0x42,0x55,0x46,0x30,0x0A,0x03,0x00, /* 00003428 ".BUF0..." */
0x70,0x0B,0xD0,0x39,0x88,0x42,0x55,0x46, /* 00003430 "p..9.BUF" */
0x30,0x0A,0x04,0x00,0x78,0x60,0x0A,0x0A, /* 00003438 "0...x`.." */
0x61,0x62,0x70,0x62,0x88,0x42,0x55,0x46, /* 00003440 "abpb.BUF" */
0x30,0x0A,0x05,0x00,0x78,0x60,0x0A,0x64, /* 00003448 "0...x`.d" */
0x61,0x63,0x70,0x63,0x88,0x42,0x55,0x46, /* 00003450 "acpc.BUF" */
0x30,0x0A,0x06,0x00,0x74,0x62,0x63,0x64, /* 00003458 "0...tbcd" */
0x70,0x64,0x88,0x42,0x55,0x46,0x30,0x0A, /* 00003460 "pd.BUF0." */
0x07,0x00,0x74,0x60,0x62,0x64,0x70,0x64, /* 00003468 "..t`bdpd" */
0x88,0x42,0x55,0x46,0x30,0x0A,0x08,0x00, /* 00003470 ".BUF0..." */
0x08,0x4D,0x44,0x4C,0x5F,0x11,0x07,0x0A, /* 00003478 ".MDL_..." */
0x04,0x41,0x4E,0x41,0x00,0x70,0x4D,0x44, /* 00003480 ".ANA.pMD" */
0x4C,0x5F,0x88,0x42,0x55,0x46,0x30,0x0A, /* 00003488 "L_.BUF0." */
0x09,0x00,0x08,0x53,0x52,0x4C,0x4E,0x11, /* 00003490 "...SRLN." */
0x07,0x0A,0x04,0x31,0x31,0x30,0x00,0x70, /* 00003498 "...110.p" */
0x53,0x52,0x4C,0x4E,0x88,0x42,0x55,0x46, /* 000034A0 "SRLN.BUF" */
0x30,0x0A,0x0A,0x00,0x08,0x42,0x54,0x59, /* 000034A8 "0....BTY" */
0x50,0x11,0x08,0x0A,0x05,0x4C,0x49,0x4F, /* 000034B0 "P....LIO" */
0x4E,0x00,0x70,0x42,0x54,0x59,0x50,0x88, /* 000034B8 "N.pBTYP." */
0x42,0x55,0x46,0x30,0x0A,0x0B,0x00,0x70, /* 000034C0 "BUF0...p" */
0x00,0x88,0x42,0x55,0x46,0x30,0x0A,0x0C, /* 000034C8 "..BUF0.." */
0x00,0xA4,0x42,0x55,0x46,0x30,0x14,0x46, /* 000034D0 "..BUF0.F" */
0x1D,0x5F,0x42,0x53,0x54,0x00,0x08,0x42, /* 000034D8 "._BST..B" */
0x55,0x46,0x30,0x12,0x02,0x04,0x70,0x01, /* 000034E0 "UF0...p." */
0x5E,0x5E,0x2F,0x03,0x50,0x43,0x49,0x30, /* 000034E8 "^^/.PCI0" */
0x50,0x58,0x34,0x30,0x50,0x58,0x42,0x33, /* 000034F0 "PX40PXB3" */
0x70,0x0A,0x33,0x5E,0x5E,0x2F,0x03,0x50, /* 000034F8 "p.3^^/.P" */
0x43,0x49,0x30,0x50,0x58,0x34,0x30,0x50, /* 00003500 "CI0PX40P" */
0x58,0x42,0x32,0x70,0x0A,0x07,0x5E,0x5E, /* 00003508 "XB2p..^^" */
0x2F,0x03,0x50,0x43,0x49,0x30,0x50,0x58, /* 00003510 "/.PCI0PX" */
0x34,0x30,0x50,0x58,0x42,0x33,0x70,0x0A, /* 00003518 "40PXB3p." */
0x33,0x5E,0x5E,0x2F,0x03,0x50,0x43,0x49, /* 00003520 "3^^/.PCI" */
0x30,0x50,0x58,0x34,0x30,0x50,0x58,0x42, /* 00003528 "0PX40PXB" */
0x32,0x70,0x0A,0x03,0x5E,0x5E,0x2F,0x03, /* 00003530 "2p..^^/." */
0x50,0x43,0x49,0x30,0x50,0x58,0x34,0x30, /* 00003538 "PCI0PX40" */
0x50,0x58,0x42,0x33,0x70,0x0A,0x33,0x5E, /* 00003540 "PXB3p.3^" */
0x5E,0x2F,0x03,0x50,0x43,0x49,0x30,0x50, /* 00003548 "^/.PCI0P" */
0x58,0x34,0x30,0x50,0x58,0x42,0x32,0xA0, /* 00003550 "X40PXB2." */
0x42,0x0D,0x93,0x44,0x41,0x54,0x35,0x01, /* 00003558 "B..DAT5." */
0x70,0x0A,0x0E,0x5E,0x5E,0x2F,0x03,0x50, /* 00003560 "p..^^/.P" */
0x43,0x49,0x30,0x50,0x58,0x34,0x30,0x50, /* 00003568 "CI0PX40P" */
0x58,0x42,0x33,0x70,0x0A,0x32,0x5E,0x5E, /* 00003570 "XB3p.2^^" */
0x2F,0x03,0x50,0x43,0x49,0x30,0x50,0x58, /* 00003578 "/.PCI0PX" */
0x34,0x30,0x50,0x58,0x42,0x32,0x70,0x00, /* 00003580 "40PXB2p." */
0x5E,0x5E,0x2F,0x03,0x50,0x43,0x49,0x30, /* 00003588 "^^/.PCI0" */
0x50,0x58,0x34,0x30,0x50,0x58,0x42,0x33, /* 00003590 "PX40PXB3" */
0x70,0x0A,0x33,0x5E,0x5E,0x2F,0x03,0x50, /* 00003598 "p.3^^/.P" */
0x43,0x49,0x30,0x50,0x58,0x34,0x30,0x50, /* 000035A0 "CI0PX40P" */
0x58,0x42,0x32,0xA0,0x41,0x05,0x93,0x44, /* 000035A8 "XB2.A..D" */
0x41,0x54,0x31,0x01,0x70,0x0A,0x02,0x5E, /* 000035B0 "AT1.p..^" */
0x5E,0x2F,0x03,0x50,0x43,0x49,0x30,0x50, /* 000035B8 "^/.PCI0P" */
0x58,0x34,0x30,0x50,0x58,0x42,0x33,0x70, /* 000035C0 "X40PXB3p" */
0x0A,0x33,0x5E,0x5E,0x2F,0x03,0x50,0x43, /* 000035C8 ".3^^/.PC" */
0x49,0x30,0x50,0x58,0x34,0x30,0x50,0x58, /* 000035D0 "I0PX40PX" */
0x42,0x32,0x7B,0x44,0x41,0x54,0x33,0x0A, /* 000035D8 "B2{DAT3." */
0x20,0x61,0xA0,0x0E,0x93,0x61,0x0A,0x20, /* 000035E0 " a...a. " */
0x70,0x01,0x88,0x42,0x55,0x46,0x30,0x00, /* 000035E8 "p..BUF0." */
0x00,0xA1,0x0B,0x70,0x0A,0x02,0x88,0x42, /* 000035F0 "...p...B" */
0x55,0x46,0x30,0x00,0x00,0xA1,0x2C,0x70, /* 000035F8 "UF0...,p" */
0x00,0x88,0x42,0x55,0x46,0x30,0x00,0x00, /* 00003600 "..BUF0.." */
0x70,0xFF,0x88,0x42,0x55,0x46,0x30,0x01, /* 00003608 "p..BUF0." */
0x00,0x70,0xFF,0x88,0x42,0x55,0x46,0x30, /* 00003610 ".p..BUF0" */
0x0A,0x02,0x00,0x70,0xFF,0x88,0x42,0x55, /* 00003618 "...p..BU" */
0x46,0x30,0x0A,0x03,0x00,0xA4,0x42,0x55, /* 00003620 "F0....BU" */
0x46,0x30,0xA1,0x44,0x05,0xA0,0x13,0x92, /* 00003628 "F0.D...." */
0x94,0x44,0x41,0x54,0x32,0x0A,0x05,0x70, /* 00003630 ".DAT2..p" */
0x0A,0x05,0x88,0x42,0x55,0x46,0x30,0x00, /* 00003638 "...BUF0." */
0x00,0xA1,0x0A,0x70,0x01,0x88,0x42,0x55, /* 00003640 "...p..BU" */
0x46,0x30,0x00,0x00,0x7B,0x50,0x4D,0x33, /* 00003648 "F0..{PM3" */
0x32,0x0A,0x04,0x61,0xA0,0x2A,0x93,0x61, /* 00003650 "2..a.*.a" */
0x00,0x70,0x0A,0x04,0x5E,0x5E,0x2F,0x03, /* 00003658 ".p..^^/." */
0x50,0x43,0x49,0x30,0x50,0x58,0x34,0x30, /* 00003660 "PCI0PX40" */
0x50,0x58,0x42,0x33,0x70,0x0A,0x30,0x5E, /* 00003668 "PXB3p.0^" */
0x5E,0x2F,0x03,0x50,0x43,0x49,0x30,0x50, /* 00003670 "^/.PCI0P" */
0x58,0x34,0x30,0x50,0x58,0x42,0x32,0x77, /* 00003678 "X40PXB2w" */
0x44,0x41,0x54,0x32,0x0A,0x12,0x62,0x70, /* 00003680 "DAT2..bp" */
0x0B,0x02,0x02,0x88,0x42,0x55,0x46,0x30, /* 00003688 "....BUF0" */
0x01,0x00,0x70,0x62,0x88,0x42,0x55,0x46, /* 00003690 "..pb.BUF" */
0x30,0x0A,0x02,0x00,0x70,0x0B,0x02,0x02, /* 00003698 "0...p..." */
0x88,0x42,0x55,0x46,0x30,0x0A,0x03,0x00, /* 000036A0 ".BUF0..." */
0xA4,0x42,0x55,0x46,0x30,
};
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Something seems to be wrong with my RSDP
[not found] ` <427F4AC7.4090109-Zwoj8m1Se4ooLuGpnUaJU7NAH6kLmebB@public.gmane.org>
@ 2005-05-09 17:16 ` Dean Townsley
[not found] ` <E1DVBrz-0004I1-8U-hC4i9AumtbtiuyyxrZMbN/7wmygKZyH0@public.gmane.org>
0 siblings, 1 reply; 6+ messages in thread
From: Dean Townsley @ 2005-05-09 17:16 UTC (permalink / raw)
To: Heiko Gerstung; +Cc: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
Hi Heiko,
On Mon, 09 May 2005 13:34:31 +0200 Heiko Gerstung wrote:
> you made my day. It works, great job!
I'm glad it worked for you too. (You're not the first person who's
asked about ACPI in 2.6 on the Acer, but this is the first time I've
gotten it to work.)
> But even with using my fixed DSDT I get this checksum error ...
Yes, my patch just ignores the error so it's not a "real" fix, just a
hack. The checksum is for the RSDP (Root system description POINTER)
which is supposed to point to a table that then points to the DSDT.
More below...
> Please find the DSDT file attached.
Thanks :) -- I'll try it when I get a chance.
> I'd propose to use a kernel boot parameter like acpi_ignore_chksum=yes
> which prevents the kernel from disabling ACPI due to a checksum error...
> Do you know who I need to contact in order to ask for this?
It seems like a boot parameter would be the right thing. But I'm sure
any true ACPI person reading this (I hope someone is) is wondering why
on earth this thing works at all...
Doing some digging I found that there are two entirely separate
functions for finding the RSDP, which appear to be intended to do
exactly the same thing. These are
acpi_find_rsdp() in arch/i386/kernel/acpi/boot.c
and
acpi_tb_find_rsdp(&return,flags) in drivers/acpi/tables/tbxfroot.c
It appears that the first one is run when the kernel wants to know if
ACPI is needed to set up APICs and things, and the second one is
actually used by the ACPI code (tbxface). As evidenced by the demg
portion I've included below, the first one finds an invalid RSDP (I
put in some debug code to print out the contents of the RSDP at this
point) but the second one must find a valid one because no error is
generated and it follows it right through to the DSDT (note the below
is without your DSDT, so it is finding it in memory.)
So my current guess is that there is an invalid RSDP floating around
in addition to the real one, and the first code (which appears less
sophisticated) is finding it instead of the real thing. The main
differences between the functions appear to have to do with memory
addressing but I don't know enough about the kernel to interpret them
properly. It could also be some sort of delay in bios filling in the
RSDP, though that doesn't make sense to me. Seems like this should be
static data by the time the kernel is booting.
My basic question is why are there two functions that do exactly the
same thing? My first inclination would be to just replace the call to
acpi_find_rsdp() with acpi_tb_find_rsdp(...) but without understanding
the differences in memory addressing, I'm not sure if this is a good
idea.
In any case, I'm glad it's working for you now.
Cheers,
-Dean
Linux version 2.6.11 (dean@odysseus) (gcc version 2.95.4 20011002 (Debian prerelease)) #4 Sun May 8 23:54:49 CDT 2005
BIOS-provided physical RAM map:
BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
BIOS-e820: 0000000000100000 - 000000000ffc0000 (usable)
BIOS-e820: 000000000ffc0000 - 000000000ffe0000 (reserved)
BIOS-e820: 000000000ffe0000 - 000000000ffe8000 (ACPI data)
BIOS-e820: 000000000ffe8000 - 0000000010000000 (ACPI NVS)
BIOS-e820: 00000000ffff0000 - 0000000100000000 (reserved)
255MB LOWMEM available.
On node 0 totalpages: 65472
DMA zone: 4096 pages, LIFO batch:1
Normal zone: 61376 pages, LIFO batch:14
HighMem zone: 0 pages, LIFO batch:1
DMI 2.3 present.
ACPI: RSDP (v000 Acer ) @ 0x000ec2d0
ACPI: RSDP contents signature="RSD PTR " checksum=0x00 oem_id="Acer " revision=0x00 rsdt_addr=0x00000000
ACPI: RSDP checksum=0xda
>>> ERROR: Invalid checksum
Allocating PCI resources starting at 10000000 (gap: 10000000:efff0000)
Built 1 zonelists
Kernel command line: BOOT_IMAGE=test26 ro root=306 acpi=force
Local APIC disabled by BIOS -- you can enable it with "lapic"
mapped APIC to ffffd000 (01201000)
Initializing CPU#0
CPU 0 irqstacks, hard=c04f0000 soft=c04ef000
PID hash table entries: 1024 (order: 10, 16384 bytes)
Detected 798.592 MHz processor.
Using tsc for high-res timesource
Console: colour VGA+ 80x25
Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
Memory: 254696k/261888k available (2566k kernel code, 6684k reserved, 1267k data, 168k init, 0k highmem)
Checking if this processor honours the WP bit even in supervisor mode... Ok.
Calibrating delay loop... 1576.96 BogoMIPS (lpj=788480)
Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
CPU: After generic identify, caps: 0383f9ff 00000000 00000000 00000000 00000000 00000000 00000000
CPU: After vendor identify, caps: 0383f9ff 00000000 00000000 00000000 00000000 00000000 00000000
CPU: L1 I cache: 16K, L1 D cache: 16K
CPU: L2 cache: 512K
CPU: After all inits, caps: 0383f9ff 00000000 00000000 00000040 00000000 00000000 00000000
Intel machine check architecture supported.
Intel machine check reporting enabled on CPU#0.
CPU: Intel Mobile Intel(R) Pentium(R) III CPU - M 800MHz stepping 04
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Checking 'hlt' instruction... OK.
tbxface-0120 [02] acpi_load_tables : ACPI Tables successfully acquired
Parsing all Control Methods:........................................................................................................................
Table [DSDT](id F004) - 436 Objects with 35 Devices 120 Methods 34 Regions
ACPI Namespace successfully loaded at root c0505b40
ACPI: setting ELCR to 0200 (from 0c00)
evxfevnt-0096 [03] acpi_enable : Transition to ACPI mode successful
NET: Registered protocol family 16
PCI: PCI BIOS revision 2.10 entry at 0xf0200, last bus=0
PCI: Using configuration type 1
mtrr: v2.0 (20020519)
ACPI: Subsystem revision 20050408
evgpeblk-1016 [06] ev_create_gpe_block : GPE 00 to 0F [_GPE] 2 regs on int 0x9
evgpeblk-1024 [06] ev_create_gpe_block : Found 3 Wake, Enabled 1 Runtime GPEs in this block
evgpeblk-1016 [06] ev_create_gpe_block : GPE 10 to 1F [_GPE] 2 regs on int 0x9
evgpeblk-1024 [06] ev_create_gpe_block : Found 0 Wake, Enabled 0 Runtime GPEs in this block
Completing Region/Field/Buffer/Package initialization:.................................................................................................
Initialized 34/34 Regions 21/21 Fields 31/31 Buffers 11/15 Packages (445 nodes)
Executing all Device _STA and_INI methods:........................................
40 Devices found containing: 40 _STA, 2 _INI methods
ACPI: Interpreter enabled
ACPI: Using PIC for interrupt routing
ACPI: PCI Interrupt Link [PILA] (IRQs *10 15)
ACPI: PCI Interrupt Link [PILB] (IRQs *11 15)
ACPI: PCI Interrupt Link [PILD] (IRQs *10 15)
ACPI: PCI Root Bridge [PCI0] (0000:00)
PCI: Probing PCI hardware (bus 00)
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: Embedded Controller [EC0] (gpe 24)
Linux Plug and Play Support v0.97 (c) Adam Belay
pnp: PnP ACPI init
pnp: PnP ACPI: found 9 devices
SCSI subsystem initialized
usbcore: registered new driver usbfs
usbcore: registered new driver hub
PCI: Using ACPI for IRQ routing
** PCI interrupts are no longer routed automatically. If this
** causes a device to stop working, it is probably because the
** driver failed to call pci_enable_device(). As a temporary
** workaround, the "pci=routeirq" argument restores the old
** behavior. If this argument makes the device work again,
** please email the output of "lspci" to bjorn.helgaas-VXdhtT5mjnY@public.gmane.org
** so I can fix the driver.
pnp: 00:00: ioport range 0xf000-0xf03f could not be reserved
pnp: 00:00: ioport range 0xf100-0xf10f has been reserved
pnp: 00:00: ioport range 0xf050-0xf057 has been reserved
pnp: 00:00: ioport range 0x3bd-0x3be has been reserved
Machine check exception polling timer started.
audit: initializing netlink socket (disabled)
audit(1115614675.059:0): initialized
Installing knfsd (copyright (C) 1996 okir-pn4DOG8n3UYbFoVRYvo4fw@public.gmane.org).
ACPI: AC Adapter [AC] (on-line)
ACPI: Battery Slot [BAT0] (battery present)
ACPI: Power Button (FF) [PWRF]
ACPI: Sleep Button (CM) [SLPB]
ACPI: Lid Switch [LID]
ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
ACPI: Thermal Zone [THR1] (56 C)
ACPI: Thermal Zone [THR2] (51 C)
ibm_acpi: ec object not found
lp: driver loaded but no devices found
Linux agpgart interface v0.100 (c) Dave Jones
[drm] Initialized drm 1.0.0 20040925
ACPI: PS/2 Keyboard Controller [KBC0] at I/O 0x60, 0x64, irq 1
ACPI: PS/2 Mouse Controller [PS2M] at irq 12
serio: i8042 AUX port at 0x60,0x64 irq 12
serio: i8042 KBD port at 0x60,0x64 irq 1
Serial: 8250/16550 driver $Revision: 1.90 $ 8 ports, IRQ sharing disabled
.......
-------------------------------------------------------
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Something seems to be wrong with my RSDP
[not found] ` <E1DVBrz-0004I1-8U-hC4i9AumtbtiuyyxrZMbN/7wmygKZyH0@public.gmane.org>
@ 2005-05-09 19:00 ` Dean Townsley
0 siblings, 0 replies; 6+ messages in thread
From: Dean Townsley @ 2005-05-09 19:00 UTC (permalink / raw)
To: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f; +Cc: Heiko Gerstung
On Mon, 09 May 2005 12:16:39 -0500 Dean Townsley wrote:
>
> So my current guess is that there is an invalid RSDP floating around
> in addition to the real one, and the first code (which appears less
> sophisticated) is finding it instead of the real thing.
So far this appears to be what's happening. I just replaced
acpi_find_rsdp()
with
acpi_tb_find_rsdp(ACPI_PHYSICAL_ADDRESSING,&addr)
(see patch below, with my extra debuging lines)
and it finds a valid RSDP at a DIFFERENT address than before.
(Compare the dmesg below to that in my last message) It then goes on
to find the RSDT etc etc and works fine. It seems that
acpi_tb_find_rsdp is a little more carful about where it scans (it
appears to do some checks that the other doesn't).
So the question is the same: why does acpi_table_init() use
acpi_find_rsdp() instead of acpi_tb_find_rsdp(..) ?
And additionally: is the substitution I've performed acceptable on a
permanent basis?
Later,
-Dean
***********dmesg snippet
Linux version 2.6.11 (dean@odysseus) (gcc version 2.95.4 20011002 (Debian prerelease)) #8 Mon May 9 13:03:20 CDT 2005
BIOS-provided physical RAM map:
BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
BIOS-e820: 0000000000100000 - 000000000ffc0000 (usable)
BIOS-e820: 000000000ffc0000 - 000000000ffe0000 (reserved)
BIOS-e820: 000000000ffe0000 - 000000000ffe8000 (ACPI data)
BIOS-e820: 000000000ffe8000 - 0000000010000000 (ACPI NVS)
BIOS-e820: 00000000ffff0000 - 0000000100000000 (reserved)
255MB LOWMEM available.
On node 0 totalpages: 65472
DMA zone: 4096 pages, LIFO batch:1
Normal zone: 61376 pages, LIFO batch:14
HighMem zone: 0 pages, LIFO batch:1
DMI 2.3 present.
ACPI: RSDP (v000 Acer ) @ 0x000fe030
ACPI: RSDP contents signature="RSD PTR " checksum=0x19 oem_id="Acer " revision=0x00 rsdt_addr=0x0ffe0000
ACPI: RSDP checksum=0x0
ACPI: RSDT (v001 Acer TM100 0x00000001 MSFT 0x00000001) @ 0x0ffe0000
ACPI: FADT (v001 Acer TM100 0x00000001 MSFT 0x00000001) @ 0x0ffe0054
ACPI: BOOT (v001 Acer TM100 0x00000001 MSFT 0x00000001) @ 0x0ffe002c
ACPI: DSDT (v001 Acer AN100 0x00001000 MSFT 0x0100000e) @ 0x00000000
ACPI: PM-Timer IO Port: 0xf008
Allocating PCI resources starting at 10000000 (gap: 10000000:efff0000)
Built 1 zonelists
Kernel command line: BOOT_IMAGE=test26 ro root=306 acpi=force
Local APIC disabled by BIOS -- you can enable it with "lapic"
mapped APIC to ffffd000 (01201000)
Initializing CPU#0
CPU 0 irqstacks, hard=c04f0000 soft=c04ef000
PID hash table entries: 1024 (order: 10, 16384 bytes)
Detected 798.462 MHz processor.
Using pmtmr for high-res timesource
Console: colour VGA+ 80x25
Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
Memory: 254696k/261888k available (2566k kernel code, 6684k reserved, 1267k data, 168k init, 0k highmem)
Checking if this processor honours the WP bit even in supervisor mode... Ok.
Calibrating delay loop... 1585.15 BogoMIPS (lpj=792576)
Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
CPU: After generic identify, caps: 0383f9ff 00000000 00000000 00000000 00000000 00000000 00000000
CPU: After vendor identify, caps: 0383f9ff 00000000 00000000 00000000 00000000 00000000 00000000
CPU: L1 I cache: 16K, L1 D cache: 16K
CPU: L2 cache: 512K
CPU: After all inits, caps: 0383f9ff 00000000 00000000 00000040 00000000 00000000 00000000
Intel machine check architecture supported.
Intel machine check reporting enabled on CPU#0.
CPU: Intel Mobile Intel(R) Pentium(R) III CPU - M 800MHz stepping 04
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Checking 'hlt' instruction... OK.
tbxface-0120 [02] acpi_load_tables : ACPI Tables successfully acquired
Parsing all Control Methods:........................................................................................................................
Table [DSDT](id F004) - 436 Objects with 35 Devices 120 Methods 34 Regions
ACPI Namespace successfully loaded at root c0505b40
ACPI: setting ELCR to 0200 (from 0c00)
evxfevnt-0096 [03] acpi_enable : Transition to ACPI mode successful
************patch tested
diff -ur linux-2.6.11-orig/drivers/acpi/tables.c linux-2.6.11/drivers/acpi/tables.c
--- linux-2.6.11-orig/drivers/acpi/tables.c Wed Mar 2 01:38:07 2005
+++ linux-2.6.11/drivers/acpi/tables.c Mon May 9 13:02:34 2005
@@ -572,14 +572,24 @@
struct acpi_table_rsdp *rsdp = NULL;
unsigned long rsdp_phys = 0;
int result = 0;
+ struct acpi_pointer addr;
/* Locate and map the Root System Description Table (RSDP) */
+ if (ACPI_FAILURE(acpi_find_root_pointer(ACPI_PHYSICAL_ADDRESSING,&addr)))
+ {
+ printk(KERN_ERR PREFIX "Unable to locate RSDP\n");
+ return -ENODEV;
+ }
+
+ rsdp_phys=addr.pointer.physical;
+ /* old code
rsdp_phys = acpi_find_rsdp();
if (!rsdp_phys) {
printk(KERN_ERR PREFIX "Unable to locate RSDP\n");
return -ENODEV;
}
+ */
rsdp = (struct acpi_table_rsdp *) __va(rsdp_phys);
if (!rsdp) {
@@ -590,11 +600,14 @@
printk(KERN_DEBUG PREFIX "RSDP (v%3.3d %6.6s ) @ 0x%p\n",
rsdp->revision, rsdp->oem_id, (void *) rsdp_phys);
+ printk(KERN_DEBUG PREFIX "RSDP contents signature=\"%8.8s\" checksum=0x%2.2x oem_id=\"%6.6s\" revision=0x%2.2x rsdt_addr=0x%8.8x\n",
+ rsdp->signature,rsdp->checksum,rsdp->oem_id,rsdp->revision,rsdp->rsdt_address);
if (rsdp->revision < 2)
result = acpi_table_compute_checksum(rsdp, sizeof(struct acpi_table_rsdp));
else
result = acpi_table_compute_checksum(rsdp, ((struct acpi20_table_rsdp *)rsdp)->length);
+ printk(KERN_DEBUG PREFIX "RSDP checksum=0x%x\n", result);
if (result) {
printk(KERN_WARNING " >>> ERROR: Invalid checksum\n");
return -ENODEV;
-------------------------------------------------------
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: Something seems to be wrong with my RSDP
@ 2005-05-09 20:18 Moore, Robert
0 siblings, 0 replies; 6+ messages in thread
From: Moore, Robert @ 2005-05-09 20:18 UTC (permalink / raw)
To: Dean Townsley, acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f; +Cc: Heiko Gerstung
acpi_tb_find_rsdp is the up-to-date version. acpi_find_rsdp should be
removed.
Acpi_tb_find_rsdp correctly searches the EBDA (Extended BIOS Data Area),
and I think that acpi_find_rsdp does not.
Bob
> -----Original Message-----
> From: acpi-devel-admin-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org [mailto:acpi-devel-
> admin-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org] On Behalf Of Dean Townsley
> Sent: Monday, May 09, 2005 12:01 PM
> To: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
> Cc: Heiko Gerstung
> Subject: Re: [ACPI] Something seems to be wrong with my RSDP
>
> On Mon, 09 May 2005 12:16:39 -0500 Dean Townsley wrote:
> >
> > So my current guess is that there is an invalid RSDP floating around
> > in addition to the real one, and the first code (which appears less
> > sophisticated) is finding it instead of the real thing.
>
> So far this appears to be what's happening. I just replaced
> acpi_find_rsdp()
> with
> acpi_tb_find_rsdp(ACPI_PHYSICAL_ADDRESSING,&addr)
> (see patch below, with my extra debuging lines)
> and it finds a valid RSDP at a DIFFERENT address than before.
> (Compare the dmesg below to that in my last message) It then goes on
> to find the RSDT etc etc and works fine. It seems that
> acpi_tb_find_rsdp is a little more carful about where it scans (it
> appears to do some checks that the other doesn't).
>
>
> So the question is the same: why does acpi_table_init() use
> acpi_find_rsdp() instead of acpi_tb_find_rsdp(..) ?
> And additionally: is the substitution I've performed acceptable on a
> permanent basis?
>
> Later,
> -Dean
>
>
>
>
> ***********dmesg snippet
>
> Linux version 2.6.11 (dean@odysseus) (gcc version 2.95.4 20011002
(Debian
> prerelease)) #8 Mon May 9 13:03:20 CDT 2005
> BIOS-provided physical RAM map:
> BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
> BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
> BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
> BIOS-e820: 0000000000100000 - 000000000ffc0000 (usable)
> BIOS-e820: 000000000ffc0000 - 000000000ffe0000 (reserved)
> BIOS-e820: 000000000ffe0000 - 000000000ffe8000 (ACPI data)
> BIOS-e820: 000000000ffe8000 - 0000000010000000 (ACPI NVS)
> BIOS-e820: 00000000ffff0000 - 0000000100000000 (reserved)
> 255MB LOWMEM available.
> On node 0 totalpages: 65472
> DMA zone: 4096 pages, LIFO batch:1
> Normal zone: 61376 pages, LIFO batch:14
> HighMem zone: 0 pages, LIFO batch:1
> DMI 2.3 present.
> ACPI: RSDP (v000 Acer ) @ 0x000fe030
> ACPI: RSDP contents signature="RSD PTR " checksum=0x19 oem_id="Acer "
> revision=0x00 rsdt_addr=0x0ffe0000
> ACPI: RSDP checksum=0x0
> ACPI: RSDT (v001 Acer TM100 0x00000001 MSFT 0x00000001) @
0x0ffe0000
> ACPI: FADT (v001 Acer TM100 0x00000001 MSFT 0x00000001) @
0x0ffe0054
> ACPI: BOOT (v001 Acer TM100 0x00000001 MSFT 0x00000001) @
0x0ffe002c
> ACPI: DSDT (v001 Acer AN100 0x00001000 MSFT 0x0100000e) @
0x00000000
> ACPI: PM-Timer IO Port: 0xf008
> Allocating PCI resources starting at 10000000 (gap: 10000000:efff0000)
> Built 1 zonelists
> Kernel command line: BOOT_IMAGE=test26 ro root=306 acpi=force
> Local APIC disabled by BIOS -- you can enable it with "lapic"
> mapped APIC to ffffd000 (01201000)
> Initializing CPU#0
> CPU 0 irqstacks, hard=c04f0000 soft=c04ef000
> PID hash table entries: 1024 (order: 10, 16384 bytes)
> Detected 798.462 MHz processor.
> Using pmtmr for high-res timesource
> Console: colour VGA+ 80x25
> Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
> Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
> Memory: 254696k/261888k available (2566k kernel code, 6684k reserved,
> 1267k data, 168k init, 0k highmem)
> Checking if this processor honours the WP bit even in supervisor
mode...
> Ok.
> Calibrating delay loop... 1585.15 BogoMIPS (lpj=792576)
> Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
> CPU: After generic identify, caps: 0383f9ff 00000000 00000000 00000000
> 00000000 00000000 00000000
> CPU: After vendor identify, caps: 0383f9ff 00000000 00000000 00000000
> 00000000 00000000 00000000
> CPU: L1 I cache: 16K, L1 D cache: 16K
> CPU: L2 cache: 512K
> CPU: After all inits, caps: 0383f9ff 00000000 00000000 00000040
00000000
> 00000000 00000000
> Intel machine check architecture supported.
> Intel machine check reporting enabled on CPU#0.
> CPU: Intel Mobile Intel(R) Pentium(R) III CPU - M 800MHz stepping 04
> Enabling fast FPU save and restore... done.
> Enabling unmasked SIMD FPU exception support... done.
> Checking 'hlt' instruction... OK.
> tbxface-0120 [02] acpi_load_tables : ACPI Tables successfully
> acquired
> Parsing all Control
>
Methods:................................................................
..
> ......................................................
> Table [DSDT](id F004) - 436 Objects with 35 Devices 120 Methods 34
Regions
> ACPI Namespace successfully loaded at root c0505b40
> ACPI: setting ELCR to 0200 (from 0c00)
> evxfevnt-0096 [03] acpi_enable : Transition to ACPI mode
> successful
>
>
> ************patch tested
>
> diff -ur linux-2.6.11-orig/drivers/acpi/tables.c linux-
> 2.6.11/drivers/acpi/tables.c
> --- linux-2.6.11-orig/drivers/acpi/tables.c Wed Mar 2 01:38:07 2005
> +++ linux-2.6.11/drivers/acpi/tables.c Mon May 9 13:02:34 2005
> @@ -572,14 +572,24 @@
> struct acpi_table_rsdp *rsdp = NULL;
> unsigned long rsdp_phys = 0;
> int result = 0;
> + struct acpi_pointer addr;
>
> /* Locate and map the Root System Description Table (RSDP) */
>
> + if
> (ACPI_FAILURE(acpi_find_root_pointer(ACPI_PHYSICAL_ADDRESSING,&addr)))
> + {
> + printk(KERN_ERR PREFIX "Unable to locate RSDP\n");
> + return -ENODEV;
> + }
> +
> + rsdp_phys=addr.pointer.physical;
> + /* old code
> rsdp_phys = acpi_find_rsdp();
> if (!rsdp_phys) {
> printk(KERN_ERR PREFIX "Unable to locate RSDP\n");
> return -ENODEV;
> }
> + */
>
> rsdp = (struct acpi_table_rsdp *) __va(rsdp_phys);
> if (!rsdp) {
> @@ -590,11 +600,14 @@
> printk(KERN_DEBUG PREFIX "RSDP (v%3.3d %6.6s
> ) @ 0x%p\n",
> rsdp->revision, rsdp->oem_id, (void *) rsdp_phys);
>
> + printk(KERN_DEBUG PREFIX "RSDP contents signature=\"%8.8s\"
> checksum=0x%2.2x oem_id=\"%6.6s\" revision=0x%2.2x
rsdt_addr=0x%8.8x\n",
> +
rsdp->signature,rsdp->checksum,rsdp->oem_id,rsdp-
> >revision,rsdp->rsdt_address);
> if (rsdp->revision < 2)
> result = acpi_table_compute_checksum(rsdp, sizeof(struct
> acpi_table_rsdp));
> else
> result = acpi_table_compute_checksum(rsdp, ((struct
> acpi20_table_rsdp *)rsdp)->length);
>
> + printk(KERN_DEBUG PREFIX "RSDP checksum=0x%x\n", result);
> if (result) {
> printk(KERN_WARNING " >>> ERROR: Invalid checksum\n");
> return -ENODEV;
>
>
> -------------------------------------------------------
> This SF.Net email is sponsored by: NEC IT Guy Games.
> Get your fingers limbered up and give it your best shot. 4 great
events, 4
> opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
> win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
> _______________________________________________
> Acpi-devel mailing list
> Acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
> https://lists.sourceforge.net/lists/listinfo/acpi-devel
-------------------------------------------------------
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2005-05-09 20:18 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-05-07 12:28 Something seems to be wrong with my RSDP Heiko Gerstung
2005-05-08 22:59 ` Dean Townsley
[not found] ` <E1DUujy-0003sP-Om-hC4i9AumtbtiuyyxrZMbN/7wmygKZyH0@public.gmane.org>
2005-05-09 11:34 ` Heiko Gerstung
[not found] ` <427F4AC7.4090109-Zwoj8m1Se4ooLuGpnUaJU7NAH6kLmebB@public.gmane.org>
2005-05-09 17:16 ` Dean Townsley
[not found] ` <E1DVBrz-0004I1-8U-hC4i9AumtbtiuyyxrZMbN/7wmygKZyH0@public.gmane.org>
2005-05-09 19:00 ` Dean Townsley
-- strict thread matches above, loose matches on Subject: below --
2005-05-09 20:18 Moore, Robert
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox