diff --git a/README.md b/README.md index 181a1bc..f500ef4 100644 --- a/README.md +++ b/README.md @@ -51,6 +51,7 @@ Then initialize the player and use as in following example: ``` player.begin(); +player.loadDefaultVs1053Patches(); player.setVolume(VOLUME); player.switchToMp3Mode(); player.playChunk(sampleMp3, sizeof(sampleMp3)); diff --git a/examples/Mp3PlayerDemo/Mp3PlayerDemo.ino b/examples/Mp3PlayerDemo/Mp3PlayerDemo.ino index 02a80c6..3800afb 100644 --- a/examples/Mp3PlayerDemo/Mp3PlayerDemo.ino +++ b/examples/Mp3PlayerDemo/Mp3PlayerDemo.ino @@ -77,6 +77,7 @@ void setup() { Serial.println("Hello VS1053!\n"); // initialize a player player.begin(); + player.loadDefaultVs1053Patches(); player.switchToMp3Mode(); // optional, some boards require this player.setVolume(VOLUME); } diff --git a/examples/WebRadioDemo/WebRadioDemo.ino b/examples/WebRadioDemo/WebRadioDemo.ino index c0d3adb..7744a65 100644 --- a/examples/WebRadioDemo/WebRadioDemo.ino +++ b/examples/WebRadioDemo/WebRadioDemo.ino @@ -3,7 +3,7 @@ Copyright (C) 2018 Vince Gellár (github.com/vincegellar) Licensed under GNU GPL v3 - + Wiring: -------------------------------- | VS1053 | ESP8266 | ESP32 | @@ -101,6 +101,7 @@ void setup() { SPI.begin(); player.begin(); + player.loadDefaultVs1053Patches(); player.switchToMp3Mode(); player.setVolume(VOLUME); diff --git a/src/VS1053.cpp b/src/VS1053.cpp index a5a67a6..51bfc55 100644 --- a/src/VS1053.cpp +++ b/src/VS1053.cpp @@ -50,7 +50,7 @@ uint16_t VS1053::read_register(uint8_t _reg) const { return result; } -void VS1053::write_register(uint8_t _reg, uint16_t _value) const { +void VS1053::writeRegister(uint8_t _reg, uint16_t _value) const { control_mode_on(); SPI.write(2); // Write operation SPI.write(_reg); // Register to write (0..0xF) @@ -97,12 +97,12 @@ void VS1053::sdi_send_fillers(size_t len) { } void VS1053::wram_write(uint16_t address, uint16_t data) { - write_register(SCI_WRAMADDR, address); - write_register(SCI_WRAM, data); + writeRegister(SCI_WRAMADDR, address); + writeRegister(SCI_WRAM, data); } uint16_t VS1053::wram_read(uint16_t address) { - write_register(SCI_WRAMADDR, address); // Start reading from WRAM + writeRegister(SCI_WRAMADDR, address); // Start reading from WRAM return read_register(SCI_WRAM); // Read back result } @@ -132,7 +132,7 @@ bool VS1053::testComm(const char *header) { LOG("%s", header); // Show a header for (i = 0; (i < 0xFFFF) && (cnt < 20); i += delta) { - write_register(SCI_VOL, i); // Write data to SCI_VOL + writeRegister(SCI_VOL, i); // Write data to SCI_VOL r1 = read_register(SCI_VOL); // Read back for the first time r2 = read_register(SCI_VOL); // Read back a second time if (r1 != r2 || i != r1 || i != r2) // Check for 2 equal reads @@ -170,12 +170,12 @@ void VS1053::begin() { if (testComm("Slow SPI,Testing VS1053 read/write registers...\n")) { //softReset(); // Switch on the analog parts - write_register(SCI_AUDATA, 44101); // 44.1kHz stereo + writeRegister(SCI_AUDATA, 44101); // 44.1kHz stereo // The next clocksetting allows SPI clocking at 5 MHz, 4 MHz is safe then. - write_register(SCI_CLOCKF, 6 << 12); // Normal clock settings multiplyer 3.0 = 12.2 MHz + writeRegister(SCI_CLOCKF, 6 << 12); // Normal clock settings multiplyer 3.0 = 12.2 MHz // SPI Clock to 4 MHz. Now you can set high speed SPI clock. VS1053_SPI = SPISettings(4000000, MSBFIRST, SPI_MODE0); - write_register(SCI_MODE, _BV(SM_SDINEW) | _BV(SM_LINE1)); + writeRegister(SCI_MODE, _BV(SM_SDINEW) | _BV(SM_LINE1)); testComm("Fast SPI, Testing VS1053 read/write registers again...\n"); delay(10); await_data_request(); @@ -204,7 +204,7 @@ void VS1053::setVolume(uint8_t vol) { valueL = map(valueL, 0, 100, 0xFE, 0x00); // 0..100% to left channel valueR = map(valueR, 0, 100, 0xFE, 0x00); // 0..100% to right channel - write_register(SCI_VOL, (valueL << 8) | valueR); // Volume left and right + writeRegister(SCI_VOL, (valueL << 8) | valueR); // Volume left and right } void VS1053::setBalance(int8_t balance) { @@ -225,7 +225,7 @@ void VS1053::setTone(uint8_t *rtone) { // Set bass/treble (4 nibbles) for (i = 0; i < 4; i++) { value = (value << 4) | rtone[i]; // Shift next nibble in } - write_register(SCI_BASS, value); // Volume left and right + writeRegister(SCI_BASS, value); // Volume left and right } uint8_t VS1053::getVolume() { // Get the currenet volume setting. @@ -250,7 +250,7 @@ void VS1053::stopSong() { sdi_send_fillers(2052); delay(10); - write_register(SCI_MODE, _BV(SM_SDINEW) | _BV(SM_CANCEL)); + writeRegister(SCI_MODE, _BV(SM_SDINEW) | _BV(SM_CANCEL)); for (i = 0; i < 200; i++) { sdi_send_fillers(32); modereg = read_register(SCI_MODE); // Read status @@ -266,7 +266,7 @@ void VS1053::stopSong() { void VS1053::softReset() { LOG("Performing soft-reset\n"); - write_register(SCI_MODE, _BV(SM_SDINEW) | _BV(SM_RESET)); + writeRegister(SCI_MODE, _BV(SM_SDINEW) | _BV(SM_RESET)); delay(10); await_data_request(); } @@ -347,20 +347,51 @@ uint16_t VS1053::getDecodedTime() { * byteRate calculation. */ void VS1053::clearDecodedTime() { - write_register(SCI_DECODE_TIME, 0x00); - write_register(SCI_DECODE_TIME, 0x00); + writeRegister(SCI_DECODE_TIME, 0x00); + writeRegister(SCI_DECODE_TIME, 0x00); } /** * Fine tune the data rate */ void VS1053::adjustRate(long ppm2) { - write_register(SCI_WRAMADDR, 0x1e07); - write_register(SCI_WRAM, ppm2); - write_register(SCI_WRAM, ppm2 >> 16); + writeRegister(SCI_WRAMADDR, 0x1e07); + writeRegister(SCI_WRAM, ppm2); + writeRegister(SCI_WRAM, ppm2 >> 16); // oldClock4KHz = 0 forces adjustment calculation when rate checked. - write_register(SCI_WRAMADDR, 0x5b1c); - write_register(SCI_WRAM, 0); + writeRegister(SCI_WRAMADDR, 0x5b1c); + writeRegister(SCI_WRAM, 0); // Write to AUDATA or CLOCKF checks rate and recalculates adjustment. - write_register(SCI_AUDATA, read_register(SCI_AUDATA)); -} \ No newline at end of file + writeRegister(SCI_AUDATA, read_register(SCI_AUDATA)); +} + +/** + * Load a patch or plugin + */ +void VS1053::loadUserCode(const unsigned short* plugin) { + int i = 0; + while (i #include "ConsoleLogger.h" +#include "patches/vs1053b-patches.plg" + class VS1053 { private: uint8_t cs_pin; // Pin where CS line is connected @@ -168,8 +170,15 @@ class VS1053 { void clearDecodedTime(); // Writes to VS10xx's SCI (serial command interface) SPI bus. - // A low level method which helps in loading firmware patches in user code. - void write_register(uint8_t _reg, uint16_t _value) const; + // A low level method which lets users access the internals of the VS1053. + void writeRegister(uint8_t _reg, uint16_t _value) const; + + // Load a patch or plugin to fix bugs and/or extend functionality. + // For more info about patches see http://www.vlsi.fi/en/support/software/vs10xxpatches.html + void loadUserCode(const unsigned short* plugin); + + // Loads the latest generic firmware patch. + void loadDefaultVs1053Patches(); }; #endif diff --git a/src/patches/vs1053b-patches-flac-latm.plg b/src/patches/vs1053b-patches-flac-latm.plg new file mode 100644 index 0000000..512cf72 --- /dev/null +++ b/src/patches/vs1053b-patches-flac-latm.plg @@ -0,0 +1,1117 @@ +#ifndef SKIP_PLUGIN_VARNAME +const unsigned short PATCHES_FLAC_LATM[] = { /* Compressed plugin */ +#endif + 0x0007,0x0001, /*copy 1*/ + 0x8050, + 0x0006,0x0558, /*copy 1368*/ + 0x2a00,0xc000,0x3e12,0x3800,0x3e00,0xb804,0x0030,0x0015, + 0x0007,0x8257,0x3700,0x984c,0xf224,0x1444,0xf224,0x0024, + 0x0008,0x0002,0x2910,0x0181,0x0000,0x14c8,0xb428,0x1402, + 0x0000,0x8004,0x2910,0x0195,0x0000,0x14c8,0xb428,0x0024, + 0x0006,0x0095,0x2800,0x2245,0x3e13,0x780e,0x3e11,0x7803, + 0x3e13,0xf806,0x3e11,0xf801,0x3510,0xb808,0x003f,0xe004, + 0xfec4,0x3800,0x48be,0x17c3,0xfec6,0x41c2,0x48be,0x4497, + 0x4090,0x1c46,0xf06c,0x0024,0x2400,0x1e80,0x6090,0x41c3, + 0x6628,0x1c47,0x0000,0x0024,0x2800,0x1d49,0xf07e,0x0024, + 0xf400,0x4182,0x673a,0x1c46,0x0000,0x0024,0x2800,0x1e89, + 0xf06c,0x0024,0xf400,0x41c3,0x0000,0x0024,0x4224,0x3442, + 0x2903,0xf500,0x4336,0x37c3,0x0000,0x1805,0x2903,0xf500, + 0x4508,0x40c2,0x450a,0x9808,0x0000,0x0207,0xa478,0x1bc0, + 0xc45a,0x1807,0x0030,0x03d5,0x3d01,0x5bc1,0x36f3,0xd806, + 0x3601,0x5803,0x36f3,0x0024,0x36f3,0x580e,0x0007,0x8257, + 0x0000,0x6004,0x3730,0x8024,0xb244,0x1c04,0xd428,0x3c02, + 0x0006,0xc717,0x2800,0x2605,0x4284,0x0024,0x3613,0x3c02, + 0x0006,0xc357,0x2901,0x6280,0x3e11,0x5c05,0x4284,0x1bc5, + 0x0000,0x0024,0x2800,0x2945,0x0000,0x0024,0x0030,0x0117, + 0x3f00,0x0024,0x3613,0x0024,0x3e10,0x3813,0x3e14,0x8024, + 0x3e04,0x8024,0x2900,0x48c0,0x0006,0x02d3,0x36e3,0x0024, + 0x3009,0x1bd3,0x0007,0x8257,0x3700,0x8024,0xf224,0x0024, + 0x0000,0x0024,0x2800,0x2b51,0x3600,0x9844,0x2900,0x3100, + 0x0000,0x2bc8,0x2911,0xf140,0x0000,0x0024,0x0030,0x0057, + 0x3700,0x0024,0xf200,0x4595,0x0fff,0xfe02,0xa024,0x164c, + 0x8000,0x17cc,0x3f00,0x0024,0x3500,0x0024,0x0021,0x6d82, + 0xd024,0x44c0,0x0006,0xa402,0x2800,0x3015,0xd024,0x0024, + 0x0000,0x0000,0x2800,0x3015,0x000b,0x6d57,0x3009,0x3c00, + 0x36f0,0x8024,0x36f2,0x1800,0x2000,0x0000,0x0000,0x0024, + 0x3e14,0x7810,0x3e13,0xb80d,0x3e13,0xf80a,0x3e10,0xb803, + 0x3e11,0x3805,0x3e11,0xb807,0x3e14,0xf801,0x3e15,0x3815, + 0x0001,0x000a,0x0006,0xc4d7,0xbf8e,0x9c42,0x3e01,0x9c03, + 0x0006,0xa017,0x0023,0xffd1,0x0007,0x8250,0x0fff,0xfd85, + 0x3001,0x0024,0xa45a,0x4494,0x0000,0x0093,0x2800,0x3751, + 0xf25a,0x104c,0x34f3,0x0024,0x2800,0x3751,0x0000,0x0024, + 0x3413,0x084c,0x0000,0x0095,0x3281,0xf806,0x4091,0x4d64, + 0x2400,0x3980,0x4efa,0x9c10,0xf1eb,0x6061,0xfe55,0x2f66, + 0x5653,0x4d64,0x48b2,0xa201,0x4efa,0xa201,0x36f3,0x3c10, + 0x36f5,0x1815,0x36f4,0xd801,0x36f1,0x9807,0x36f1,0x1805, + 0x36f0,0x9803,0x36f3,0xd80a,0x36f3,0x980d,0x2000,0x0000, + 0x36f4,0x5810,0x3e12,0xb817,0x3e14,0xf812,0x3e01,0xb811, + 0x0007,0x9717,0x0020,0xffd2,0x0030,0x11d1,0x3111,0x8024, + 0x3704,0xc024,0x3b81,0x8024,0x3101,0x8024,0x3b81,0x8024, + 0x3f04,0xc024,0x2808,0x4800,0x36f1,0x9811,0x36f3,0x0024, + 0x3009,0x3848,0x3e14,0x3811,0x3e00,0x0024,0x0000,0x4000, + 0x0001,0x0010,0x2915,0x94c0,0x0001,0xcc11,0x36f0,0x0024, + 0x2927,0x9e40,0x3604,0x1811,0x3613,0x0024,0x3e14,0x3811, + 0x3e00,0x0024,0x0000,0x4000,0x0001,0x0010,0x2915,0x94c0, + 0x0001,0xcc11,0x36f0,0x0024,0x36f4,0x1811,0x3009,0x1808, + 0x2000,0x0000,0x0000,0x190d,0x3600,0x3840,0x3e13,0x780e, + 0x3e13,0xf808,0x3e00,0x0024,0x0000,0x3fce,0x0027,0x9e0f, + 0x2922,0xb680,0x0000,0x190d,0x36f3,0x0024,0x36f3,0xd808, + 0x36f3,0x580e,0x2000,0x0000,0x3009,0x1800,0x3613,0x0024, + 0x3e22,0xb815,0x3e05,0xb814,0x3615,0x0024,0x0000,0x800a, + 0x3e13,0x7801,0x3e10,0xb803,0x3e11,0x3805,0x3e11,0xb807, + 0x3e14,0x3811,0x3e14,0xb813,0x3e03,0xf80e,0xb488,0x44d5, + 0x3543,0x134c,0x34e5,0xc024,0x3524,0x8024,0x35a4,0xc024, + 0x3710,0x8a0c,0x3540,0x4a0c,0x3d44,0x8024,0x3a10,0x8024, + 0x3590,0x0024,0x4010,0x15c1,0x6010,0x3400,0x3710,0x8024, + 0x2800,0x5484,0x3af0,0x8024,0x3df0,0x0024,0x3591,0x4024, + 0x3530,0x4024,0x4192,0x4050,0x6100,0x1482,0x4020,0x1753, + 0xbf8e,0x1582,0x4294,0x4011,0xbd86,0x408e,0x2400,0x528e, + 0xfe6d,0x2819,0x520e,0x0a00,0x5207,0x2819,0x4fbe,0x0024, + 0xad56,0x904c,0xaf5e,0x1010,0xf7d4,0x0024,0xf7fc,0x2042, + 0x6498,0x2046,0x3cf4,0x0024,0x3400,0x170c,0x4090,0x1492, + 0x35a4,0xc024,0x2800,0x4d15,0x3c00,0x0024,0x4480,0x914c, + 0x36f3,0xd80e,0x36f4,0x9813,0x36f4,0x1811,0x36f1,0x9807, + 0x36f1,0x1805,0x36f0,0x9803,0x36f3,0x5801,0x3405,0x9014, + 0x36e3,0x0024,0x2000,0x0000,0x36f2,0x9815,0x2814,0x9c91, + 0x0000,0x004d,0x2814,0x9940,0x003f,0x0013,0x3e12,0xb817, + 0x3e12,0x3815,0x3e05,0xb814,0x3625,0x0024,0x0000,0x800a, + 0x3e10,0x3801,0x3e10,0xb803,0x3e11,0x3805,0x3e11,0xb807, + 0x3e14,0x3811,0x0006,0xa090,0x2912,0x0d00,0x3e14,0xc024, + 0x4088,0x8000,0x4080,0x0024,0x0007,0x90d1,0x2800,0x5f85, + 0x0000,0x0024,0x0007,0x9051,0x3100,0x4024,0x4100,0x0024, + 0x3900,0x0024,0x0007,0x90d1,0x0004,0x0000,0x31f0,0x4024, + 0x6014,0x0400,0x0000,0x0024,0x2800,0x63d1,0x4080,0x0024, + 0x0000,0x0000,0x2800,0x6345,0x0000,0x0024,0x0007,0x9053, + 0x3300,0x0024,0x4080,0x0024,0x0000,0x0000,0x2800,0x63d8, + 0x0000,0x0024,0x0007,0x9051,0x3900,0x0024,0x3200,0x504c, + 0x6410,0x0024,0x3cf0,0x0000,0x4080,0x0024,0x0006,0xc691, + 0x2800,0x7c85,0x3009,0x0400,0x0000,0x1001,0x0007,0x9051, + 0x3100,0x0024,0x6012,0x0024,0x0006,0xc6d0,0x2800,0x70c9, + 0x003f,0xe000,0x0006,0xc693,0x3900,0x0c00,0x3009,0x0001, + 0x6014,0x0024,0x0007,0x1ad0,0x2800,0x70d5,0x3009,0x0000, + 0x4080,0x0024,0x0000,0x0301,0x2800,0x6ac5,0x4090,0x0024, + 0x0000,0x0024,0x2800,0x6bd5,0x0000,0x0024,0x3009,0x0000, + 0xc012,0x0024,0x2800,0x70c0,0x3009,0x2001,0x3009,0x0000, + 0x6012,0x0024,0x0000,0x0341,0x2800,0x6dd5,0x0000,0x0024, + 0x6190,0x0024,0x2800,0x70c0,0x3009,0x2000,0x6012,0x0024, + 0x0000,0x0381,0x2800,0x6f95,0x0000,0x0024,0x6190,0x0024, + 0x2800,0x70c0,0x3009,0x2000,0x6012,0x0024,0x0000,0x00c0, + 0x2800,0x70d5,0x0000,0x0024,0x3009,0x2000,0x0006,0xa090, + 0x3009,0x0000,0x4080,0x0024,0x0000,0x0081,0x2800,0x7595, + 0x0007,0x8c13,0x3300,0x104c,0xb010,0x0024,0x0002,0x8001, + 0x2800,0x7805,0x34f0,0x0024,0x2800,0x7580,0x0000,0x0024, + 0x0006,0xc351,0x3009,0x0000,0x6090,0x0024,0x3009,0x2000, + 0x2900,0x0b80,0x3009,0x0405,0x0006,0xc6d1,0x0006,0xc690, + 0x3009,0x0000,0x3009,0x0401,0x6014,0x0024,0x0006,0xa093, + 0x2800,0x7411,0xb880,0x0024,0x2800,0x8540,0x3009,0x2c00, + 0x4040,0x0024,0x6012,0x0024,0x0006,0xc6d0,0x2800,0x8558, + 0x0000,0x0024,0x0006,0xc693,0x3009,0x0c00,0x3009,0x0001, + 0x6014,0x0024,0x0006,0xc350,0x2800,0x8541,0x0000,0x0024, + 0x6090,0x0024,0x3009,0x2c00,0x3009,0x0005,0x2900,0x0b80, + 0x0000,0x8548,0x3009,0x0400,0x4080,0x0024,0x0003,0x8000, + 0x2800,0x8545,0x0000,0x0024,0x6400,0x0024,0x0000,0x0081, + 0x2800,0x8549,0x0000,0x0024,0x0007,0x8c13,0x3300,0x0024, + 0xb010,0x0024,0x0006,0xc650,0x2800,0x8555,0x0000,0x0024, + 0x0001,0x0002,0x3413,0x0000,0x3009,0x0401,0x4010,0x8406, + 0x0000,0x0281,0xa010,0x13c1,0x4122,0x0024,0x0000,0x03c2, + 0x6122,0x8002,0x462c,0x0024,0x469c,0x0024,0xfee2,0x0024, + 0x48be,0x0024,0x6066,0x8400,0x0006,0xc350,0x2800,0x8541, + 0x0000,0x0024,0x4090,0x0024,0x3009,0x2400,0x2900,0x0b80, + 0x3009,0x0005,0x0007,0x1b50,0x2912,0x0d00,0x3613,0x0024, + 0x3a00,0x0380,0x4080,0x0024,0x0000,0x00c1,0x2800,0x8e05, + 0x3009,0x0000,0xb010,0x008c,0x4192,0x0024,0x6012,0x0024, + 0x0006,0xf051,0x2800,0x8c18,0x3009,0x0400,0x0007,0x1fd1, + 0x30e3,0x0400,0x4080,0x0024,0x0000,0x0301,0x2800,0x8e05, + 0x3009,0x0000,0xb010,0x0024,0x0000,0x0101,0x6012,0x0024, + 0x0006,0xf051,0x2800,0x8e15,0x0000,0x0024,0x3023,0x0400, + 0xf200,0x184c,0xb880,0xa400,0x3009,0x2000,0x3009,0x0441, + 0x3e10,0x4402,0x2909,0xa9c0,0x3e10,0x8024,0x36e3,0x0024, + 0x36f4,0xc024,0x36f4,0x1811,0x36f1,0x9807,0x36f1,0x1805, + 0x36f0,0x9803,0x36f0,0x1801,0x3405,0x9014,0x36f3,0x0024, + 0x36f2,0x1815,0x2000,0x0000,0x36f2,0x9817,0x3613,0x0024, + 0x3e12,0xb817,0x3e12,0x3815,0x3e05,0xb814,0x3635,0x0024, + 0x0000,0x800a,0x3e10,0x3801,0x0000,0x0081,0x3e10,0xb803, + 0x3e11,0x3805,0x3e11,0xb807,0x3e14,0x3811,0x0006,0xf250, + 0x3e04,0xb813,0x3009,0x0000,0x6012,0x0024,0x003f,0xff01, + 0x2800,0x9905,0x0006,0x0611,0x6194,0x0400,0x0000,0x0041, + 0xa020,0x984c,0x0000,0x01c2,0xfe02,0x0024,0x48b2,0x0024, + 0x3e10,0x0024,0x2921,0xca80,0x3e00,0x4024,0x3100,0x5bcc, + 0x2921,0xdd40,0xb122,0x0024,0x291a,0x8a40,0x0000,0xab08, + 0x0007,0x2052,0x0006,0x8a93,0x3100,0x184c,0xa010,0x0024, + 0x0000,0x0041,0x6090,0x0024,0x2922,0x1880,0x6090,0x0024, + 0xb880,0x010c,0x3100,0x2800,0xfe02,0x8c44,0x3613,0x0fc5, + 0x4eb2,0x0024,0x3009,0x2040,0x0000,0x00c0,0x2921,0xbb80, + 0x3e00,0x23c1,0x0000,0x01c1,0x6012,0x0024,0x0003,0xf680, + 0x2800,0x9f55,0x0000,0x0024,0x36f3,0x0024,0x291a,0x8a40, + 0x0000,0xab08,0x2900,0x4580,0x3e00,0x0024,0x3413,0x0040, + 0x36f3,0x03c1,0x3009,0x0c44,0x3009,0x0fc5,0x6ce2,0x0024, + 0x3c10,0x0024,0xbc82,0x33c1,0x3410,0x2040,0x34e0,0x63c1, + 0x4c82,0x0024,0x0000,0x0024,0x2800,0xa809,0x4c82,0x0024, + 0x0000,0x01c4,0x4c86,0x184c,0x003f,0xff40,0xad06,0x0024, + 0x3e10,0x8024,0x2921,0xca80,0x3e00,0xc024,0x36f3,0x0024, + 0x2921,0x9440,0x0000,0x0080,0xb88a,0x104c,0x3410,0x0c46, + 0x34e0,0x4fc7,0xbce2,0x984c,0x4cf2,0x0024,0x3e10,0x0024, + 0x2921,0x9780,0x3e00,0x4024,0x2800,0xaa00,0x36e3,0x0024, + 0x0000,0x0024,0x2800,0xaa18,0x0000,0x0024,0x4ce6,0x184c, + 0x3e10,0x8024,0x2921,0x9780,0x3e00,0xc024,0x36e3,0x0024, + 0x291a,0x8a40,0x0000,0x0100,0x2922,0x1880,0x3613,0x0024, + 0x36f4,0x9813,0x36f4,0x1811,0x36f1,0x9807,0x36f1,0x1805, + 0x36f0,0x9803,0x36f0,0x1801,0x3405,0x9014,0x36f3,0x0024, + 0x36f2,0x1815,0x2000,0x0000,0x36f2,0x9817,0x3613,0x0024, + 0x3e12,0xb817,0x3e12,0x3815,0x3e05,0xb814,0x3635,0x0024, + 0x0000,0x800a,0x3e10,0x7802,0x3e14,0x0024,0x2903,0x9bc0, + 0x0000,0x0201,0x0000,0x0601,0x3413,0x184c,0x2903,0xa300, + 0x3cf0,0x0024,0x3413,0x184c,0x3400,0x3040,0x3009,0x33c1, + 0x0000,0x1fc1,0xb010,0x0024,0x6014,0x9040,0x0006,0x8010, + 0x2800,0xb495,0x0000,0x0024,0x34e3,0x1bcc,0x6890,0x0024, + 0x2800,0xb640,0xb880,0x2000,0x3e10,0x1381,0x2903,0xd400, + 0x3e00,0x4024,0x003f,0xfe41,0x36e3,0x104c,0x34f0,0x0024, + 0xa010,0x0024,0x36f4,0x0024,0x36f0,0x5802,0x3405,0x9014, + 0x36f3,0x0024,0x36f2,0x1815,0x2000,0x0000,0x36f2,0x9817, + 0x0006,0x9f97,0x3e00,0x5c15,0x3009,0x3840,0x3009,0x3814, + 0x0025,0xffd4,0x0006,0xd317,0x3710,0x160c,0x0006,0x9f94, + 0x37f0,0x73d5,0x6c92,0x0024,0x3f10,0x1040,0x3ff0,0x53c1, + 0x6010,0x0024,0x0000,0x0024,0x2800,0xbc54,0x0006,0x0001, + 0x4010,0x0024,0x0005,0xf601,0x6010,0x9bd4,0x0000,0x0040, + 0x2800,0xbdd4,0x0030,0x0497,0x3f00,0x0024,0x2000,0x0000, + 0x36f0,0x5800,0x2a08,0x1b8e,0x2803,0xae80,0x0000,0xbe57, + 0x0007,0x0001, /*copy 1*/ + 0x8300, + 0x0006,0x19f8, /*copy 6648*/ + 0x0030,0x0055,0xb080,0x1402,0x0fdf,0xffc1,0x0007,0x9257, + 0xb212,0x3c00,0x3d00,0x4024,0x0006,0x0097,0x3f10,0x0024, + 0x3f00,0x0024,0x0030,0x0297,0x3f00,0x0024,0x0007,0x9017, + 0x3f00,0x0024,0x0007,0x81d7,0x3f10,0x0024,0xc090,0x3c00, + 0x0006,0x0297,0xb080,0x3c00,0x0000,0x0401,0x000a,0x1055, + 0x0006,0x0017,0x3f10,0x3401,0x000a,0x2795,0x3f00,0x3401, + 0x0001,0x6257,0xf400,0x55c0,0x0000,0x0817,0xb080,0x57c0, + 0x0014,0x958f,0x0000,0x58ce,0x0030,0x0017,0x3700,0x0024, + 0x0004,0x0001,0xb012,0x0024,0x0000,0x004d,0x280f,0xe115, + 0x0006,0x2016,0x0006,0x01d7,0x3f00,0x0024,0x0000,0x190d, + 0x000f,0xf94f,0x0000,0xcd0e,0x280f,0xe100,0x0006,0x2016, + 0x0000,0x0080,0x0005,0x4f92,0x2909,0xf840,0x3613,0x2800, + 0x0006,0x0197,0x0006,0xa115,0xb080,0x0024,0x3f00,0x3400, + 0x0007,0x8a57,0x3700,0x0024,0x4080,0x0024,0x0000,0x0040, + 0x2800,0xced5,0x0006,0xa2d7,0x3009,0x3c00,0x0006,0xa157, + 0x3009,0x1c00,0x0006,0x01d7,0x0000,0x190d,0x000a,0x708f, + 0x0000,0xd7ce,0x290b,0x1a80,0x3f00,0x184c,0x0030,0x0017, + 0x4080,0x1c01,0x0000,0x0200,0x2800,0xcb15,0xb102,0x0024, + 0x0000,0xcd08,0x2800,0xcb15,0x0000,0xd3ce,0x0011,0x210f, + 0x0000,0x190d,0x280f,0xcb00,0x3613,0x0024,0x0006,0xa115, + 0x0006,0x01d7,0x37f0,0x1401,0x6100,0x1c01,0x4012,0x0024, + 0x0000,0x8000,0x6010,0x0024,0x34f3,0x0400,0x2800,0xd698, + 0x0000,0x0024,0x0000,0x8001,0x6010,0x3c01,0x0000,0x000d, + 0x2811,0x8259,0x0000,0x0024,0x2a11,0x2100,0x0030,0x0257, + 0x3700,0x0024,0x4080,0x0024,0x0000,0x0024,0x2800,0xd9d5, + 0x0006,0x0197,0x0006,0xa115,0x3f00,0x3400,0x4d86,0x0024, + 0x0000,0x190d,0x2800,0xdd55,0x0014,0x1b01,0x0020,0x480f, + 0x0000,0xdc0e,0x0000,0x190d,0x2820,0x41c0,0x0001,0x0948, + 0x0039,0x324f,0x0001,0x364e,0x2820,0x4a18,0xb882,0x0024, + 0x2a20,0x48c0,0x003f,0xfd00,0xb700,0x0024,0x003f,0xf901, + 0x6010,0x0024,0x0000,0x0024,0x280a,0xc505,0x0000,0x190d, + 0x0019,0x9301,0x2800,0xdfc0,0x0018,0x50c0,0x6fc2,0x0024, + 0x0000,0x0024,0x2800,0xe155,0x0000,0x0024,0x2803,0x5840, + 0x000a,0xcac8,0x000a,0x8c8f,0x0000,0xe28e,0x000c,0x0981, + 0x280a,0x71c0,0x002c,0x9d40,0x000a,0x708f,0x0000,0xd7ce, + 0x280a,0xc0d5,0x0012,0x5182,0x6fd6,0x0024,0x003f,0xfd81, + 0x280a,0x8e45,0xb710,0x0024,0x003f,0xf800,0xb600,0x0024, + 0x0015,0xb801,0x6012,0x0024,0x003f,0xfd81,0x2801,0xbac5, + 0x0001,0x0a48,0xb710,0x0024,0x003f,0xfc01,0x6012,0x0024, + 0x0000,0x0101,0x2801,0x0015,0xffd2,0x0024,0x48b2,0x0024, + 0x4190,0x0024,0x0000,0x190d,0x2801,0x0015,0x0030,0x0250, + 0xb880,0x104c,0x3cf0,0x0024,0x0010,0x5500,0xb880,0x23c0, + 0xb882,0x2000,0x0007,0x8590,0x2914,0xbec0,0x0000,0x0440, + 0x0007,0x8b50,0xb880,0x0024,0x2920,0x0100,0x3800,0x0024, + 0x2920,0x0000,0x0006,0x8a91,0x0000,0x0800,0xb880,0xa440, + 0x003f,0xfd81,0xb710,0xa7c0,0x003f,0xfc01,0x6012,0x0024, + 0x0000,0x0101,0x2801,0x0955,0x0000,0x0024,0xffe2,0x0024, + 0x48b2,0x0024,0x4190,0x0024,0x0000,0x0024,0x2801,0x0955, + 0x0000,0x0024,0x2912,0x2d80,0x0000,0x0780,0x4080,0x0024, + 0x0006,0x8a90,0x2801,0x0955,0x0000,0x01c2,0xb886,0x8040, + 0x3613,0x03c1,0xbcd2,0x0024,0x0030,0x0011,0x2800,0xf5d5, + 0x003f,0xff42,0xb886,0x8040,0x3009,0x03c1,0x0000,0x0020, + 0xac22,0x0024,0x0000,0x0102,0x6cd2,0x0024,0x3e10,0x0024, + 0x2909,0x8c80,0x3e00,0x4024,0x36f3,0x0024,0x3e11,0x8024, + 0x3e01,0xc024,0x2901,0x2d00,0x0000,0x0201,0xf400,0x4512, + 0x2900,0x0c80,0x3213,0x1b8c,0x3100,0x0024,0xb010,0x0024, + 0x0000,0x0024,0x2801,0x0955,0x0000,0x0024,0x291a,0x8a40, + 0x0000,0x0100,0x2920,0x0200,0x3633,0x0024,0x2920,0x0280, + 0x0000,0x0401,0x408e,0x0024,0x2920,0x0280,0x0000,0x0401, + 0x003f,0xfd81,0xb710,0x4006,0x003f,0xfc01,0x6012,0x0024, + 0x0000,0x0101,0x2801,0x0955,0x0000,0x0024,0xffe2,0x0024, + 0x48b2,0x0024,0x4190,0x0024,0x0000,0x0024,0x2801,0x0955, + 0x0000,0x0024,0x2912,0x2d80,0x0000,0x0780,0x4080,0x0024, + 0x0000,0x01c2,0x2800,0xf1c5,0x0006,0x8a90,0x2a01,0x0940, + 0x2920,0x0100,0x0000,0x0401,0x0000,0x0180,0x2920,0x0200, + 0x3613,0x0024,0x2920,0x0280,0x3613,0x0024,0x0000,0x0401, + 0x2920,0x0280,0x4084,0x984c,0x0019,0x9d01,0x6212,0x0024, + 0x001e,0x5c01,0x2801,0x0495,0x6012,0x0024,0x0000,0x0024, + 0x2801,0x0685,0x0000,0x0024,0x001b,0x5bc1,0x6212,0x0024, + 0x001b,0xdd81,0x2801,0x0a55,0x6012,0x0024,0x0000,0x0024, + 0x2801,0x0a55,0x0000,0x0024,0x0000,0x004d,0x000a,0xbf4f, + 0x280a,0xb880,0x0001,0x078e,0x0020,0xfb4f,0x0000,0x190d, + 0x0001,0x0e8e,0x2920,0xf440,0x3009,0x2bc1,0x291a,0x8a40, + 0x36e3,0x0024,0x0000,0x190d,0x000a,0x708f,0x280a,0xcac0, + 0x0000,0xd7ce,0x0030,0x0017,0x3700,0x4024,0x0000,0x0200, + 0xb102,0x0024,0x0000,0x00c0,0x2801,0x0d85,0x0005,0x4f92, + 0x2909,0xf840,0x3613,0x2800,0x0006,0x0197,0x0006,0xa115, + 0xb080,0x0024,0x3f00,0x3400,0x0000,0x190d,0x000a,0x708f, + 0x280a,0xc0c0,0x0000,0xd7ce,0x0000,0x004d,0x0020,0xfe0f, + 0x2820,0xfb40,0x0001,0x0f8e,0x2801,0x1155,0x3009,0x1000, + 0x6012,0x93cc,0x0000,0x0024,0x2801,0x2c05,0x0000,0x0024, + 0x3413,0x0024,0x34b0,0x0024,0x4080,0x0024,0x0000,0x0200, + 0x2801,0x1455,0xb882,0x0024,0x3453,0x0024,0x3009,0x13c0, + 0x4080,0x0024,0x0000,0x0200,0x2801,0x2c05,0x0000,0x0024, + 0xb882,0x130c,0x0000,0x004d,0x0021,0x058f,0x2821,0x0340, + 0x0001,0x154e,0x2801,0x2595,0x6012,0x0024,0x0000,0x0024, + 0x2801,0x2595,0x0000,0x0024,0x34c3,0x184c,0x3e13,0xb80f, + 0xf400,0x4500,0x0026,0x9dcf,0x0001,0x194e,0x0000,0xfa0d, + 0x2926,0x8e80,0x3e10,0x110c,0x36f3,0x0024,0x2801,0x2580, + 0x36f3,0x980f,0x001c,0xdd00,0x001c,0xd901,0x6ec2,0x0024, + 0x001c,0xdd00,0x2801,0x1c55,0x0018,0xdbc1,0x3413,0x184c, + 0xf400,0x4500,0x2926,0xc640,0x3e00,0x13cc,0x2801,0x2340, + 0x36f3,0x0024,0x6ec2,0x0024,0x003f,0xc000,0x2801,0x1ed5, + 0x002a,0x4001,0x3413,0x184c,0xf400,0x4500,0x2926,0xafc0, + 0x3e00,0x13cc,0x2801,0x2340,0x36f3,0x0024,0xb400,0x0024, + 0xd100,0x0024,0x0000,0x0024,0x2801,0x2345,0x0000,0x0024, + 0x3613,0x0024,0x3e11,0x4024,0x2926,0x8540,0x3e01,0x0024, + 0x4080,0x1b8c,0x0000,0x0024,0x2801,0x2345,0x0000,0x0024, + 0x3413,0x184c,0xf400,0x4500,0x2926,0x8e80,0x3e10,0x13cc, + 0x36f3,0x0024,0x3110,0x8024,0x31f0,0xc024,0x0000,0x4000, + 0x0000,0x0021,0x6d06,0x0024,0x3110,0x8024,0x2826,0xa8c4, + 0x31f0,0xc024,0x2a26,0xad00,0x34c3,0x184c,0x3410,0x8024, + 0x3430,0xc024,0x0000,0x4000,0x0000,0x0021,0x6d06,0x0024, + 0x0000,0x0024,0x2801,0x2c14,0x4d06,0x0024,0x0000,0x0200, + 0x2922,0x1885,0x0001,0x2a88,0x0000,0x0200,0x3e10,0x8024, + 0x2921,0xca80,0x3e00,0xc024,0x291a,0x8a40,0x0000,0x0024, + 0x2922,0x1880,0x36f3,0x0024,0x0000,0x004d,0x0021,0x0ecf, + 0x2821,0x0bc0,0x0001,0x2b8e,0x2801,0x0e80,0x3c30,0x4024, + 0x0000,0x190d,0x0000,0x3fce,0x2821,0x0f80,0x0027,0x9e0f, + 0x0020,0xcd4f,0x2820,0xc780,0x0001,0x2dce,0x0006,0xf017, + 0x0000,0x0015,0xb070,0xbc15,0x0000,0x3fce,0x0027,0x9e0f, + 0x2820,0xcd80,0x0000,0x190d,0x3613,0x0024,0x3e10,0xb803, + 0x3e14,0x3811,0x3e11,0x3805,0x3e00,0x3801,0x0007,0xc390, + 0x0006,0xa011,0x3010,0x0444,0x3050,0x4405,0x6458,0x0302, + 0xff94,0x4081,0x0003,0xffc5,0x48b6,0x0024,0xff82,0x0024, + 0x42b2,0x0042,0xb458,0x0003,0x4cd6,0x9801,0xf248,0x1bc0, + 0xb58a,0x0024,0x6de6,0x1804,0x0006,0x0010,0x3810,0x9bc5, + 0x3800,0xc024,0x36f4,0x1811,0x36f0,0x9803,0x283e,0x2d80, + 0x0fff,0xffc3,0x2801,0x4400,0x0000,0x0024,0x3413,0x0024, + 0x2801,0x3805,0xf400,0x4517,0x2801,0x3c00,0x6894,0x13cc, + 0x37b0,0x184c,0x6090,0x1d51,0x0000,0x0910,0x3f00,0x060c, + 0x3100,0x4024,0x6016,0xb812,0x000c,0x8012,0x2801,0x3a91, + 0xb884,0x0024,0x6894,0x3002,0x0000,0x028d,0x003a,0x5e0f, + 0x0001,0x4c0e,0x2939,0xb0c0,0x3e10,0x93cc,0x4084,0x9bd2, + 0x4282,0x0024,0x0000,0x0040,0x2801,0x3e05,0x4292,0x130c, + 0x3443,0x0024,0x2801,0x3f45,0x000c,0x8390,0x2a01,0x42c0, + 0x3444,0x0024,0x3073,0x0024,0xc090,0x014c,0x2801,0x42c0, + 0x3800,0x0024,0x000c,0x4113,0xb880,0x2380,0x3304,0x4024, + 0x3800,0x05cc,0xcc92,0x05cc,0x3910,0x0024,0x3910,0x4024, + 0x000c,0x8110,0x3910,0x0024,0x39f0,0x4024,0x3810,0x0024, + 0x38d0,0x4024,0x3810,0x0024,0x38f0,0x4024,0x34c3,0x0024, + 0x3444,0x0024,0x3073,0x0024,0x3063,0x0024,0x3000,0x0024, + 0x4080,0x0024,0x0000,0x0024,0x2839,0x53d5,0x4284,0x0024, + 0x3613,0x0024,0x2801,0x4605,0x6898,0xb804,0x0000,0x0084, + 0x293b,0x1cc0,0x3613,0x0024,0x000c,0x8117,0x3711,0x0024, + 0x37d1,0x4024,0x4e8a,0x0024,0x0000,0x0015,0x2801,0x48c5, + 0xce9a,0x0024,0x3f11,0x0024,0x3f01,0x4024,0x000c,0x8197, + 0x408a,0x9bc4,0x3f15,0x4024,0x2801,0x4b05,0x4284,0x3c15, + 0x6590,0x0024,0x0000,0x0024,0x2839,0x53d5,0x4284,0x0024, + 0x0000,0x0024,0x2801,0x36d8,0x458a,0x0024,0x2a39,0x53c0, + 0x003e,0x2d4f,0x283a,0x5ed5,0x0001,0x2f8e,0x000c,0x4653, + 0x0000,0x0246,0xffac,0x0c01,0x48be,0x0024,0x4162,0x4546, + 0x6642,0x4055,0x3501,0x8024,0x0000,0x0087,0x667c,0x4057, + 0x000c,0x41d5,0x283a,0x62d5,0x3501,0x8024,0x667c,0x1c47, + 0x3701,0x8024,0x283a,0x62d5,0xc67c,0x0024,0x0000,0x0024, + 0x283a,0x62c5,0x0000,0x0024,0x2a3a,0x5ec0,0x3009,0x3851, + 0x3e14,0xf812,0x3e12,0xb817,0x3e11,0x8024,0x0006,0x0293, + 0x3301,0x8024,0x468c,0x3804,0x0006,0xa057,0x2801,0x5804, + 0x0006,0x0011,0x469c,0x0024,0x3be1,0x8024,0x2801,0x5815, + 0x0006,0xc392,0x3311,0x0024,0x33f1,0x2844,0x3009,0x2bc4, + 0x0030,0x04d2,0x3311,0x0024,0x3a11,0x0024,0x3201,0x8024, + 0x003f,0xfc04,0xb64c,0x0fc4,0xc648,0x0024,0x3a01,0x0024, + 0x3111,0x1fd3,0x6498,0x07c6,0x868c,0x2444,0x0023,0xffd2, + 0x3901,0x8e06,0x0030,0x0551,0x3911,0x8e06,0x3961,0x9c44, + 0xf400,0x44c6,0xd46c,0x1bc4,0x36f1,0xbc13,0x2801,0x6195, + 0x36f2,0x9817,0x002b,0xffd2,0x3383,0x188c,0x3e01,0x8c06, + 0x0006,0xa097,0x3009,0x1c12,0x3213,0x0024,0x468c,0xbc12, + 0x002b,0xffd2,0xf400,0x4197,0x2801,0x5e84,0x3713,0x0024, + 0x2801,0x5ec5,0x37e3,0x0024,0x3009,0x2c17,0x3383,0x0024, + 0x3009,0x0c06,0x468c,0x4197,0x0006,0xa052,0x2801,0x60c4, + 0x3713,0x2813,0x2801,0x6105,0x37e3,0x0024,0x3009,0x2c17, + 0x36f1,0x8024,0x36f2,0x9817,0x36f4,0xd812,0x2100,0x0000, + 0x3904,0x5bd1,0x2a01,0x51ce,0x3e11,0x7804,0x0030,0x0257, + 0x3701,0x0024,0x0013,0x4d05,0xd45b,0xe0e1,0x0007,0xc795, + 0x2801,0x6915,0x0fff,0xff45,0x3511,0x184c,0x4488,0xb808, + 0x0006,0x8a97,0x2801,0x68c5,0x3009,0x1c40,0x3511,0x1fc1, + 0x0000,0x0020,0xac52,0x1405,0x6ce2,0x0024,0x0000,0x0024, + 0x2801,0x68c1,0x68c2,0x0024,0x291a,0x8a40,0x3e10,0x0024, + 0x2921,0xca80,0x3e00,0x4024,0x36f3,0x0024,0x3009,0x1bc8, + 0x36f0,0x1801,0x3601,0x5804,0x3e13,0x780f,0x3e13,0xb808, + 0x0008,0x9b0f,0x0001,0x6bce,0x2908,0x9300,0x0000,0x004d, + 0x36f3,0x9808,0x2000,0x0000,0x36f3,0x580f,0x0007,0x81d7, + 0x3711,0x8024,0x3711,0xc024,0x3700,0x0024,0x0000,0x2001, + 0xb012,0x0024,0x0034,0x0000,0x2801,0x6f05,0x0000,0x01c1, + 0x0030,0x0117,0x3f00,0x0024,0x0014,0xc000,0x0000,0x01c1, + 0x4fce,0x0024,0xffea,0x0024,0x48b6,0x0024,0x4384,0x4097, + 0xb886,0x45c6,0xfede,0x0024,0x4db6,0x0024,0x466c,0x0024, + 0x0006,0xc610,0x8dd6,0x8007,0x0000,0x00c6,0xff6e,0x0024, + 0x48b2,0x0024,0x0034,0x2406,0xffee,0x0024,0x2914,0xaa80, + 0x40b2,0x0024,0xf1c6,0x0024,0xf1d6,0x0024,0x0000,0x0201, + 0x8d86,0x0024,0x61de,0x0024,0x0006,0xc612,0x2801,0x7581, + 0x0006,0xc713,0x4c86,0x0024,0x2912,0x1180,0x0006,0xc351, + 0x0006,0x0210,0x2912,0x0d00,0x3810,0x984c,0xf200,0x2043, + 0x2808,0xa000,0x3800,0x0024,0x3613,0x0024,0x3e12,0xb817, + 0x3e12,0x3815,0x3e05,0xb814,0x3615,0x0024,0x0000,0x800a, + 0x3e10,0x7802,0x3e10,0xf804,0x3e11,0x7810,0x3e14,0x7812, + 0x3e14,0xc024,0x2922,0x1880,0x0000,0x0180,0x2921,0xdd40, + 0x6892,0x184c,0x4080,0x0024,0x0000,0x0024,0x2801,0x7cc5, + 0x0000,0x0024,0x2801,0xb840,0xb880,0x0024,0x2921,0xdd40, + 0x6892,0x184c,0x4080,0x0024,0x0000,0x0181,0x2801,0x7ed5, + 0x0000,0x0024,0x2801,0xb840,0xb880,0x0024,0x2921,0xdd40, + 0x3613,0x0024,0x4080,0x0024,0x0000,0x0101,0x2801,0x80c5, + 0x0000,0x0024,0x2801,0xb840,0xb880,0x0024,0x2921,0xdd40, + 0x3613,0x0024,0x4080,0x0024,0x0000,0x00c1,0x2801,0x82c5, + 0x0000,0x0024,0x2801,0xb840,0xb880,0x0024,0x2921,0xdd40, + 0x3613,0x0024,0x4080,0x0024,0x0000,0x0141,0x2801,0x84c5, + 0x0006,0xf250,0x2801,0xb840,0xb880,0x0024,0x2921,0xdd40, + 0x3613,0x0024,0x0000,0x0101,0x2921,0xdd40,0x3613,0x2000, + 0x0000,0x03c1,0x6012,0x03cc,0x3613,0x2000,0x2801,0x8a15, + 0x0006,0xf051,0x3009,0x3841,0x2921,0xdd40,0x0000,0x0201, + 0xb080,0x024c,0x3009,0x2000,0x2921,0xdd40,0x0000,0x0401, + 0x3009,0x0401,0xc100,0x0024,0x2801,0x8b40,0x3009,0x2400, + 0x3009,0x0002,0x2920,0x5d00,0x3e00,0x8024,0x36f3,0x024c, + 0x3009,0x2000,0x0000,0x0101,0x2921,0xdd40,0x3613,0x0024, + 0x0000,0x0141,0x3013,0x0024,0x3009,0x21c0,0x3009,0x0000, + 0x6012,0x0024,0x0007,0x1b51,0x2801,0x9c95,0x0000,0x0101, + 0x0007,0xc251,0x2921,0xdd40,0x3613,0x0024,0x0000,0x03c1, + 0x6012,0x2400,0x3100,0x984c,0x2801,0x93d5,0x0007,0xc292, + 0x3009,0x3841,0x2921,0xdd40,0x0000,0x0201,0x4082,0x044c, + 0xb080,0x0024,0x3910,0x0024,0x39f0,0x7841,0x2921,0xdd40, + 0x0000,0x0401,0x3211,0x1bcc,0xb182,0x0bc5,0xcec2,0x0024, + 0x3a10,0x0024,0x2801,0x9500,0x3af0,0x4024,0x2920,0x5d00, + 0x3e00,0x8024,0x36f3,0x044c,0x3910,0x0024,0x39f0,0x4024, + 0x0007,0x1b52,0x0000,0x0141,0x2921,0xdd40,0x3613,0x0024, + 0x3111,0x2240,0xb880,0x03cc,0x31f1,0x6800,0xb182,0x8000, + 0x6ce6,0x0024,0x002e,0xe002,0x2801,0xa385,0xb886,0x0024, + 0x6de2,0x0b8c,0x0000,0x00c1,0x2801,0x9b51,0x3009,0x0800, + 0xb010,0x0024,0x4192,0x0024,0x6012,0x0024,0x0007,0x1b52, + 0x2801,0x9b58,0x0000,0x0024,0x6890,0xa004,0x2801,0xa380, + 0x3009,0x2800,0x4e82,0x0024,0x0000,0x0020,0xf2c2,0x0024, + 0x2801,0xa380,0x3009,0x2000,0x3009,0x07c0,0x4080,0x0024, + 0x0000,0x0024,0x2801,0xa385,0x0000,0x0024,0x3093,0x0400, + 0x4080,0x03cc,0x0017,0x7001,0x2801,0xa295,0x3009,0x0000, + 0x6012,0x0024,0x0007,0x1b50,0x2801,0xa201,0xb880,0x0024, + 0x0000,0x00c1,0x31f3,0x0024,0x3009,0x0400,0xb010,0x0024, + 0x4080,0x0024,0x0000,0x0000,0x2801,0xa289,0x0000,0x0024, + 0x2801,0xa380,0x3009,0x2000,0x0006,0xf050,0x3009,0x0000, + 0x4000,0x0024,0x3009,0x2000,0x0000,0x0081,0x0006,0xf250, + 0x3009,0x0000,0x6012,0x0024,0x0007,0xc151,0x2801,0xa5c5, + 0x0000,0x0024,0x2801,0xb840,0xb880,0x0024,0x2921,0xdd40, + 0x6892,0x184c,0x6892,0x2400,0x2921,0xdd40,0x3009,0x184c, + 0x4080,0x0024,0x0000,0x0381,0x2801,0xa885,0x0000,0x0024, + 0x2921,0xdd40,0x3613,0x0024,0x2921,0xdd40,0x6892,0x184c, + 0x4080,0x0024,0x0000,0x0240,0x2801,0xab05,0x0000,0x00c1, + 0x2921,0xdd40,0x6892,0x184c,0x0000,0x00c1,0x0000,0x0240, + 0x0006,0x0592,0x2922,0x1880,0x3613,0x0024,0x2921,0xdd40, + 0x3613,0x0024,0x4080,0x2800,0x0000,0x0201,0x2801,0xae15, + 0x3613,0x0024,0x2921,0xdd40,0x0001,0xb088,0x3613,0x0024, + 0x4090,0x1bcc,0x0000,0x0241,0x2801,0xb015,0x0006,0x0613, + 0x2921,0xdd40,0x3613,0x0024,0x2801,0xb080,0x3b00,0x0024, + 0x2801,0xb840,0xb880,0x0024,0x0006,0x0653,0xb880,0x184c, + 0x2921,0xdd40,0x6892,0x2c00,0x4080,0x0024,0x0006,0x0650, + 0x2801,0xb605,0x0000,0x4003,0x3000,0x184c,0xff86,0x0024, + 0x48b6,0x0024,0x2921,0xdd40,0x6892,0x2002,0x0000,0x0201, + 0x2921,0xdd40,0x4088,0x184c,0x3000,0x4024,0x4100,0x0024, + 0x4488,0x2000,0x0000,0x4003,0x2801,0xb295,0x0006,0x0650, + 0x2921,0xdd40,0x6892,0x184c,0x4080,0x0024,0x0000,0x0201, + 0x2801,0xb805,0x0000,0x0024,0x2921,0xdd40,0x3613,0x0024, + 0x6890,0x0024,0x36f4,0xc024,0x36f4,0x5812,0x36f1,0x5810, + 0x36f0,0xd804,0x36f0,0x5802,0x3405,0x9014,0x36f3,0x0024, + 0x36f2,0x1815,0x2000,0x0000,0x36f2,0x9817,0x3613,0x0024, + 0x3e12,0xb817,0x3e12,0x3815,0x3e05,0xb814,0x3635,0x0024, + 0x0000,0x800a,0x3e10,0x7802,0x3e10,0xf804,0x3e14,0x3811, + 0x0006,0x8a91,0x0006,0x05d0,0x3e14,0xb813,0x0007,0x8b52, + 0x3e13,0xf80e,0x3e03,0x504c,0xb880,0x0024,0x3c00,0x33c0, + 0x2921,0xb380,0x3800,0x0024,0x2920,0x6a00,0x0030,0x0253, + 0x0000,0x0400,0xb882,0xa440,0xb880,0xa7c1,0x3a00,0x0024, + 0x0013,0x1040,0x3b00,0x0024,0x0000,0x0180,0x2922,0x1880, + 0x3613,0x0024,0x4f82,0x0024,0x003f,0xf801,0xb010,0x0024, + 0x0015,0xb801,0x6012,0x0024,0x0007,0x8a50,0x2801,0xdfd5, + 0x0000,0x0201,0x0006,0x8a90,0x2921,0xdd40,0x3613,0x0024, + 0x003f,0xfe00,0x3613,0x0042,0xb882,0x83c3,0xbdc2,0x0024, + 0x3009,0x2040,0x2921,0xdd40,0x6892,0xa3c1,0x4080,0x0024, + 0x0000,0x0024,0x2801,0xca95,0x0000,0x0024,0x2901,0x7780, + 0x0006,0x05d1,0x4080,0x2400,0x0006,0xf052,0x2801,0xca85, + 0x0000,0x0024,0x3613,0x0841,0x3e10,0x4802,0x2909,0xa9c0, + 0x3e10,0x8024,0x36e3,0x0024,0x0006,0x05d1,0x3100,0x0024, + 0x4080,0x0024,0x0000,0x0024,0x2921,0xc305,0x0001,0xdb48, + 0x0006,0x0592,0xb880,0x104c,0x3613,0x33c0,0x2922,0x1880, + 0x0000,0x0100,0x3200,0x0024,0x4080,0x0024,0x0000,0x0024, + 0x2900,0x90d5,0x0001,0xd3c8,0x0006,0x0613,0xb880,0x0024, + 0x0006,0x0610,0x3b00,0x0024,0x0000,0x0201,0x2921,0xdd40, + 0x3613,0x0024,0x0000,0x00c1,0x3423,0x0024,0x3c00,0x0024, + 0xa010,0x0001,0x4100,0x0024,0x0000,0x3fc1,0x3800,0x0024, + 0x34e0,0x0024,0x6012,0x0024,0x0006,0x0610,0x2801,0xcf85, + 0x0000,0x0024,0x2900,0x90c0,0x0000,0x0024,0x0006,0x0650, + 0x3000,0x0024,0x4080,0x0024,0x0000,0x0024,0x2801,0xdac5, + 0x0000,0x0024,0xf200,0x184c,0xf200,0x0024,0xf200,0x0024, + 0xb182,0x3840,0x2921,0xca80,0x3e00,0x4024,0x0000,0x01c1, + 0x291a,0x8a40,0x36e3,0x0024,0xb888,0x4411,0x3000,0x0024, + 0xb012,0x0024,0x6410,0x2001,0x0000,0x0024,0x2801,0xdac1, + 0x0000,0x0024,0x4192,0x0024,0x2401,0xda81,0x0000,0x0024, + 0x2921,0xdd40,0x6892,0x184c,0x6498,0x0024,0x2921,0xc300, + 0x0000,0x0024,0x291a,0x8a40,0x3413,0x0024,0xf400,0x4512, + 0x0030,0x0010,0x0000,0x0201,0x2900,0x0c80,0x34f3,0x0024, + 0x3000,0x0024,0xb010,0x0024,0x0000,0x0100,0x2801,0xec95, + 0x0000,0x0401,0x2922,0x1880,0x3613,0x0024,0x2921,0xdd40, + 0x3613,0x0024,0x2801,0xeac0,0xb78e,0x4006,0x3000,0x0024, + 0x4080,0x0024,0x0000,0x0024,0x2801,0xec89,0xf292,0x0024, + 0x6012,0x904c,0x0006,0x05d1,0x2801,0xe318,0x3100,0x0024, + 0x3000,0x0024,0x4090,0x0024,0x3800,0x0024,0x3100,0x0024, + 0x4080,0x4512,0x34f3,0x184c,0x2801,0xe5d5,0x0007,0x0553, + 0x36f3,0x0800,0x6090,0x0024,0x4080,0xa800,0x0000,0x0024, + 0x2801,0xec88,0x0000,0x0024,0x3009,0x184c,0x0006,0xf312, + 0x4ffe,0xb841,0x2921,0xdd40,0x6892,0x41c7,0xb182,0x9bcc, + 0x291a,0x8a40,0xcfce,0x0024,0x0004,0x0001,0xb880,0x010c, + 0x6890,0x2000,0x0007,0x80d0,0xb880,0xa800,0x3000,0x2c00, + 0x0007,0x1ad0,0xff82,0x0024,0x48b2,0x0024,0xf400,0x4040, + 0x0000,0x03c1,0xb010,0x0024,0x3009,0x2000,0x0000,0x0201, + 0x0030,0x0010,0x3000,0x0024,0xb010,0x0024,0x0000,0x0180, + 0x2801,0xc1c5,0x0000,0x0024,0x6890,0x1bcd,0x36f3,0xd80e, + 0x36f4,0x9813,0x36f4,0x1811,0x36f0,0xd804,0x36f0,0x5802, + 0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815,0x2000,0x0000, + 0x36f2,0x9817,0x3613,0x0024,0x3e12,0xb817,0x3e12,0x3815, + 0x3e05,0xb814,0x3615,0x0024,0x0000,0x800a,0x3e10,0xb804, + 0x3e01,0x534c,0xbe8a,0x10c0,0x4080,0x0024,0x0000,0x0024, + 0x2801,0xf6c5,0x0000,0x0024,0x2903,0xa300,0x4082,0x184c, + 0x4c8a,0x134c,0x0000,0x0001,0x6890,0x10c2,0x4294,0x0024, + 0xac22,0x0024,0xbec2,0x0024,0x0000,0x0024,0x2801,0xf6c5, + 0x0000,0x0024,0x6890,0x134c,0xb882,0x10c2,0xac22,0x0024, + 0x4c92,0x0024,0xdc92,0x0024,0xceca,0x0024,0x4e82,0x1bc5, + 0x36f0,0x9804,0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815, + 0x2000,0x0000,0x36f2,0x9817,0x3613,0x0024,0x3e12,0xb817, + 0x3e12,0x3815,0x3e05,0xb814,0x3645,0x0024,0x0000,0x800a, + 0x3e10,0x3801,0x3e10,0xb803,0x3e11,0x3805,0x3e11,0xb807, + 0x3e14,0x104c,0x2903,0x9bc0,0x0000,0x0081,0x4080,0x3040, + 0x0000,0x0101,0x2801,0xfdc5,0x0000,0x0024,0x4090,0x0024, + 0x0006,0x8050,0x2802,0x11d5,0x0000,0x0024,0x2903,0x9bc0, + 0x3613,0x0024,0xb880,0x3000,0x2802,0x0f80,0x3009,0x3380, + 0x2903,0x9bc0,0x4122,0x10cc,0x3cf0,0x0024,0x3001,0x0024, + 0x3400,0x0024,0x6800,0x0024,0xa408,0x9040,0x4080,0x0024, + 0x0000,0x07c1,0x2802,0x0355,0x6894,0x1380,0x6894,0x130c, + 0x3460,0x0024,0x6408,0x4481,0x4102,0x1380,0xf400,0x4052, + 0x0000,0x07c1,0x34f0,0xc024,0x6234,0x0024,0x6824,0x0024, + 0xa122,0x0024,0x6014,0x0024,0x0000,0x0141,0x2802,0x0a55, + 0x0000,0x0024,0x2903,0x9bc0,0x3613,0x0024,0x2802,0x08c0, + 0xb88a,0x4002,0x2901,0xef40,0x3e00,0x8024,0x4c8e,0xa801, + 0x0000,0x0201,0x3a10,0x1bcc,0x3000,0x0024,0xb010,0x0024, + 0x0000,0x0024,0x2802,0x0e55,0x659a,0x0024,0x6540,0x184c, + 0x0030,0x0010,0x2802,0x0648,0x0000,0x0024,0x2802,0x0e40, + 0x36f3,0x0024,0x2802,0x0d00,0xb88a,0x0024,0x2903,0x74c0, + 0x34d0,0x4024,0x4c8f,0xa0a1,0x0000,0x0201,0x3000,0x084c, + 0xb010,0x0024,0x0000,0x0024,0x2802,0x0e55,0x659a,0x0024, + 0x6540,0x10cc,0x0030,0x0010,0x2802,0x0ac8,0x0000,0x0024, + 0x34d3,0x0024,0x3423,0x0024,0xf400,0x4510,0x3009,0x1380, + 0x6090,0x0024,0x3009,0x2000,0x6892,0x108c,0x34f0,0x9000, + 0xa122,0x984c,0x6016,0x13c1,0x0000,0x0102,0x2801,0xff08, + 0x0006,0x8150,0x2802,0x1240,0x3009,0x1bcc,0x6890,0x938c, + 0x3800,0x0024,0x36f4,0x0024,0x36f1,0x9807,0x36f1,0x1805, + 0x36f0,0x9803,0x36f0,0x1801,0x3405,0x9014,0x36f3,0x0024, + 0x36f2,0x1815,0x2000,0x0000,0x36f2,0x9817,0x3613,0x0024, + 0x3e12,0xb817,0x3e12,0x3815,0x3e05,0xb814,0x3615,0x0024, + 0x0000,0x800a,0x3e10,0x3801,0x3e10,0xb804,0x3e11,0xb807, + 0x3e14,0x3811,0x3e04,0x934c,0x3430,0x0024,0x4080,0x0024, + 0x0000,0x0206,0x2802,0x1b45,0x0006,0x8151,0x3101,0x130c, + 0xff0c,0x1102,0x6408,0x0024,0x4204,0x0024,0xb882,0x4092, + 0x1005,0xfe02,0x48be,0x0024,0x4264,0x0024,0x2903,0xe080, + 0xf400,0x4090,0x36f4,0x8024,0x36f4,0x1811,0x36f1,0x9807, + 0x36f0,0x9804,0x36f0,0x1801,0x3405,0x9014,0x36f3,0x0024, + 0x36f2,0x1815,0x2000,0x0000,0x36f2,0x9817,0x3613,0x0024, + 0x3e12,0xb817,0x3e12,0x3815,0x3e05,0xb814,0x3675,0x0024, + 0x3643,0x0024,0x0000,0x800a,0x3e10,0x3801,0x0000,0x0181, + 0x3e10,0xb803,0x3e11,0x3806,0x3e11,0xf810,0x3e14,0x7812, + 0x3e13,0xf80e,0x2903,0x7dc0,0x3e03,0x4024,0x2903,0x9bc0, + 0x4088,0x184c,0x3413,0x184c,0x2903,0x9bc0,0x6892,0x3040, + 0x4080,0x3040,0x0000,0x0000,0x2802,0x28c5,0x0000,0x0024, + 0x6890,0x0024,0x2903,0x7dc0,0x3cd0,0x0024,0x4080,0x0024, + 0x0000,0x0024,0x2802,0x2915,0x0000,0x0024,0x3433,0x0024, + 0xf400,0x4510,0x34d0,0x0024,0x6090,0x0024,0x2903,0x7dc0, + 0x3800,0x0024,0x4080,0x10cc,0xf400,0x4510,0x2802,0x2685, + 0x34d0,0x0024,0x2802,0x2900,0x0000,0x0024,0x3cd0,0x0024, + 0x3433,0x0024,0x34a0,0x0024,0xf400,0x4510,0x3430,0x4024, + 0x6100,0x0024,0x0000,0x0341,0x3840,0x0024,0x3000,0x0024, + 0x6012,0x0024,0x0006,0x0681,0x2802,0x4681,0x4012,0x0024, + 0xf400,0x4057,0x3702,0x0024,0x2000,0x0000,0x0000,0x0024, + 0x34d3,0x184c,0x3430,0x8024,0x2901,0xef40,0x3e00,0x8024, + 0x36f3,0x11cc,0xb888,0x104c,0x3c10,0x0024,0x3c90,0x4024, + 0x2802,0x3240,0x34e3,0x0024,0x3411,0x8024,0x3491,0xc024, + 0x4f82,0x128c,0x3400,0x4024,0x4142,0x0024,0xf400,0x4050, + 0x3800,0x0024,0x3440,0x4024,0x4142,0x0024,0x6498,0x4050, + 0x3009,0x2007,0x0006,0x8150,0x3000,0x11cc,0x6402,0x104c, + 0x0000,0x0024,0x2802,0x2f88,0x0000,0x0024,0x3493,0x0024, + 0x2802,0x6240,0x34f3,0x0024,0x2802,0x39c0,0xb888,0x0024, + 0x3430,0x8024,0x2901,0xef40,0x3e00,0x8024,0x4c8e,0x130c, + 0x3400,0x5bcc,0x4142,0x0024,0xf400,0x4050,0x3800,0x0024, + 0x3440,0x4024,0x4142,0x0024,0xf400,0x4050,0x0000,0x0201, + 0x3009,0x2007,0x0030,0x0010,0x3000,0x0024,0xb010,0x0024, + 0x0000,0x0024,0x2802,0x6255,0x6498,0x0024,0x0006,0x8150, + 0x3000,0x134c,0x6402,0x984c,0x0000,0x0024,0x2802,0x3508, + 0x0000,0x0024,0x2802,0x6240,0x3433,0x1bcc,0x0000,0x0201, + 0xb888,0x104c,0x3430,0x184c,0x6010,0x0024,0x6402,0x3000, + 0x0000,0x0201,0x2802,0x4258,0x0030,0x0010,0x4090,0x124c, + 0x2402,0x4140,0x0000,0x0024,0x3430,0x8024,0x2901,0xef40, + 0x3e00,0x8024,0x4c8e,0x130c,0x3400,0x4024,0x4142,0x0024, + 0xf400,0x4050,0x3800,0x0024,0x3410,0x4024,0x4142,0x0024, + 0x6498,0x4050,0x3009,0x2007,0x0030,0x0010,0x0000,0x0201, + 0x3473,0x0024,0x3490,0x0024,0x3e00,0x13cc,0x2901,0xf880, + 0x3444,0x8024,0x3000,0x1bcc,0xb010,0x0024,0x0000,0x0024, + 0x2802,0x6255,0x0000,0x0024,0x34c3,0x184c,0x3470,0x0024, + 0x3e10,0x104c,0x34c0,0x4024,0x2902,0x14c0,0x3e00,0x4024, + 0x2802,0x6240,0x36e3,0x0024,0x0000,0x0801,0x3413,0x0024, + 0x34f0,0x0024,0x6012,0x0024,0x0000,0x07c1,0x2802,0x6188, + 0x0000,0x0024,0x6010,0x114c,0xb888,0x32c0,0x6402,0x0024, + 0x0000,0x0101,0x2802,0x4e18,0x0000,0x0024,0x4090,0x134c, + 0x2402,0x4d40,0x3009,0x184c,0x3430,0x8024,0x2901,0xef40, + 0x3e00,0x8024,0x4c8e,0x130c,0x3400,0x4024,0x4142,0x0024, + 0xf400,0x4050,0x3800,0x0024,0x3410,0x4024,0x4142,0x0024, + 0x6498,0x4050,0x3009,0x2007,0x0000,0x0101,0x3433,0x1bcc, + 0x2903,0x9bc0,0x3613,0x0024,0x0000,0x0141,0x6090,0x118c, + 0x2903,0x9bc0,0x3ca0,0x184c,0x3473,0x184c,0xb888,0x3380, + 0x3400,0x0024,0x6402,0x0024,0x0000,0x0201,0x2802,0x54d8, + 0x0000,0x0024,0x4090,0x104c,0x2402,0x5400,0x0000,0x0024, + 0x34a0,0x8024,0x2901,0xef40,0x3e00,0x8024,0x0006,0x8002, + 0x4244,0x118c,0x4244,0x0024,0x6498,0x4095,0x3009,0x3440, + 0x3009,0x37c1,0x0000,0x0201,0x34f3,0x0024,0x0030,0x0010, + 0x3490,0x0024,0x3e00,0x138c,0x2901,0xf880,0x3444,0x8024, + 0x3000,0x1bcc,0xb010,0x0024,0x0000,0x0024,0x2802,0x6255, + 0x4112,0x0024,0x3463,0x0024,0x34a0,0x0024,0x6012,0x0024, + 0x0006,0x8111,0x2802,0x5e19,0x0000,0x0024,0x3100,0x11cc, + 0x3490,0x4024,0x4010,0x0024,0x0000,0x0a01,0x6012,0x0024, + 0x0006,0x8151,0x2802,0x5e18,0x0000,0x0024,0x3613,0x114c, + 0x3101,0x3804,0x3490,0x8024,0x6428,0x138c,0x3470,0x8024, + 0x3423,0x0024,0x3420,0xc024,0x4234,0x1241,0x4380,0x4092, + 0x2903,0xe080,0x0006,0x8010,0x2802,0x6240,0x3009,0x1bcc, + 0x0006,0x8151,0x3613,0x114c,0x3101,0x3804,0x3490,0x8024, + 0x6428,0x138c,0x3470,0x8024,0x3423,0x0024,0x3420,0xc024, + 0x4234,0x1241,0x4380,0x4092,0x2903,0xea40,0x0006,0x8010, + 0x2802,0x6240,0x3009,0x1bcc,0x0006,0x8050,0x6890,0x0024, + 0x3800,0x0024,0x3433,0x0024,0x34d0,0x0024,0x4080,0x0024, + 0x0006,0x8150,0x2802,0x67c5,0x0000,0x0024,0x3000,0x11cc, + 0xb888,0x10cc,0x6402,0x3240,0x3493,0x0024,0x3444,0x8024, + 0x2802,0x67d8,0x4090,0x0024,0x2402,0x6780,0x0000,0x0024, + 0x6499,0x2620,0xb78e,0x4001,0x0000,0x0000,0x3433,0x0024, + 0xcfce,0x1340,0xaf0e,0x0024,0x3a11,0xa807,0x36f3,0x4024, + 0x36f3,0xd80e,0x36f4,0x5812,0x36f1,0xd810,0x36f1,0x1806, + 0x36f0,0x9803,0x36f0,0x1801,0x3405,0x9014,0x36f3,0x0024, + 0x36f2,0x1815,0x2000,0x0000,0x36f2,0x9817,0x3613,0x0024, + 0x3e12,0xb817,0x3e12,0x3815,0x3e05,0xb814,0x3615,0x0024, + 0x0000,0x800a,0x3e10,0x7802,0x3e10,0xf804,0x0000,0x3fc3, + 0x3e11,0x7806,0x3e11,0xf810,0xbc82,0x12cc,0x3404,0x0024, + 0x3023,0x0024,0x3810,0x0024,0x38f0,0x4024,0x3454,0x0024, + 0x3810,0x0024,0x38f0,0x4024,0x2903,0x9bc0,0x0000,0x0201, + 0x0006,0x9301,0x4088,0x134c,0x3400,0x8024,0xd204,0x0024, + 0xb234,0x0024,0x4122,0x0024,0xf400,0x4055,0x3500,0x0024, + 0x3c30,0x0024,0x0000,0x2000,0xb400,0x0024,0x0000,0x3001, + 0x2802,0x7555,0x0000,0x3800,0x0000,0x0041,0xfe42,0x12cc, + 0x48b2,0x1090,0x3810,0x0024,0x38f0,0x4024,0x2802,0x9640, + 0x3430,0x0024,0xb400,0x0024,0x6012,0x0024,0x0000,0x3801, + 0x2802,0x7895,0x0000,0x3c00,0x0000,0x07c0,0x0000,0x0041, + 0xb400,0x12cc,0xfe02,0x1150,0x48b2,0x0024,0x689a,0x2040, + 0x2802,0x9500,0x38f0,0x4024,0xb400,0x0024,0x6012,0x0024, + 0x0000,0x3c01,0x2802,0x7c15,0x0000,0x3e00,0x0000,0x03c0, + 0x0000,0x0085,0x4592,0x12cc,0xb400,0x1150,0xfe02,0x0024, + 0x48b2,0x0024,0x3810,0x0024,0x2802,0x9500,0x38f0,0x4024, + 0xb400,0x0024,0x6012,0x0024,0x0000,0x3e01,0x2802,0x7f95, + 0x0000,0x3f00,0x0000,0x01c0,0xf20a,0x12cc,0xb400,0x1150, + 0xf252,0x0024,0xfe02,0x0024,0x48b2,0x0024,0x3810,0x0024, + 0x2802,0x9500,0x38f0,0x4024,0xb400,0x130c,0x6012,0x0024, + 0x0000,0x3f01,0x2802,0x8315,0x4390,0x0024,0x0000,0x0041, + 0x0000,0x0105,0x4590,0x13cc,0xb400,0x1150,0xfe02,0x0024, + 0x48b2,0x0024,0x3810,0x0024,0x2802,0x9500,0x38f0,0x4024, + 0xb400,0x0024,0x6012,0x1100,0x0000,0x01c1,0x2802,0x8695, + 0x0000,0x0024,0x0000,0x0041,0x0000,0x0145,0x6890,0x12cc, + 0xb400,0x1150,0xfe02,0x0024,0x48b2,0x0024,0x3810,0x0024, + 0x2802,0x9500,0x38f0,0x4024,0x6012,0x0024,0x0000,0x3f81, + 0x2802,0x8915,0xb430,0x0024,0x6012,0x0024,0x0000,0x0024, + 0x2802,0x8915,0x0000,0x0024,0x2802,0x9500,0x0000,0x0185, + 0x2802,0x9640,0xc890,0x0024,0x0000,0x3fc3,0x0000,0x0201, + 0x34d3,0x0024,0x2903,0x9bc0,0x3433,0x184c,0x0006,0x9301, + 0x4088,0x134c,0x3400,0x8024,0xd204,0x0024,0xb234,0x0024, + 0x4122,0x0024,0xf400,0x4055,0x0000,0x2001,0x3500,0x0024, + 0x3c30,0x0024,0x0000,0x3000,0xb400,0x0024,0x6012,0x0024, + 0x0000,0x0182,0x2802,0x8f45,0x0000,0x0024,0x2802,0x9640, + 0xc890,0x0024,0x459a,0x12cc,0x3404,0x0024,0x3023,0x0024, + 0x3010,0x0024,0x30d0,0x4024,0xac22,0x0046,0x003f,0xf982, + 0x3011,0xc024,0x0000,0x0023,0xaf2e,0x0024,0x0000,0x0182, + 0xccf2,0x0024,0x0000,0x0fc6,0x0000,0x0047,0xb46c,0x2040, + 0xfe6e,0x23c1,0x3454,0x0024,0x3010,0x0024,0x30f0,0x4024, + 0xac22,0x0024,0xccb2,0x0024,0x3810,0x0024,0x38f0,0x4024, + 0x458a,0x134c,0x0000,0x0201,0x2802,0x8a55,0x0000,0x3fc3, + 0x3430,0x0024,0x36f1,0xd810,0x36f1,0x5806,0x36f0,0xd804, + 0x36f0,0x5802,0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815, + 0x2000,0x0000,0x36f2,0x9817,0x3613,0x0024,0x3e12,0xb817, + 0x3e12,0x3815,0x3e05,0xb814,0x3675,0x0024,0x3633,0x0024, + 0x0000,0x800a,0x3e10,0x3801,0x3e10,0xb803,0x3e11,0x3805, + 0x3e11,0xb807,0x3e14,0x3811,0x3e14,0xb813,0x3e13,0xf80e, + 0x3e03,0x4024,0x2903,0xc780,0x0000,0x0381,0x000f,0xff81, + 0x6012,0x0024,0x0000,0x0401,0x2802,0x9f05,0x0000,0x0024, + 0x0000,0x0201,0x3613,0x0024,0x2903,0x9bc0,0x0003,0x5508, + 0x003f,0xfe04,0x0006,0x8090,0xb880,0x11cc,0x3413,0x184c, + 0x3c90,0x0024,0x2903,0x9bc0,0x34f3,0x0024,0x0006,0x9301, + 0x3473,0x184c,0x3c10,0x0024,0x34f0,0x8024,0x3400,0xc024, + 0xa346,0x0024,0xd234,0x0024,0x0000,0x3fc3,0xb234,0x0024, + 0x4122,0x1042,0xf400,0x4055,0x0006,0x9301,0x3500,0x0024, + 0xd024,0x3000,0xb234,0x0024,0x4122,0x0024,0x6892,0x4055, + 0x3500,0x0024,0x3cf0,0x0024,0x34a0,0x0024,0xf100,0x0024, + 0xb010,0x0024,0x3c60,0x0024,0x34b0,0x0024,0xb010,0x0024, + 0x0000,0x0201,0x2903,0x9bc0,0x3ce0,0x0024,0x0006,0x9301, + 0x3473,0x184c,0x3c10,0x0024,0x34f0,0x8024,0x3410,0xc024, + 0xd234,0x0024,0x0000,0x3fc3,0xb234,0x0024,0x4122,0x0024, + 0xf400,0x4055,0x003f,0xff01,0x3500,0x0024,0x3cf0,0x0024, + 0x34c0,0x0024,0xa010,0x0024,0x0000,0x03c1,0x3c40,0x0024, + 0x34d0,0x0024,0xb010,0x0024,0x0000,0x0201,0x2903,0x9bc0, + 0x3cc0,0x0024,0x0006,0x9301,0x3473,0x0024,0x3c10,0x0024, + 0x34f0,0x8024,0x3410,0xc024,0xd234,0x0024,0x0000,0x3fc3, + 0xb234,0x0024,0x4122,0x0024,0xf400,0x4055,0x003f,0xff01, + 0x3500,0x0024,0x3cf0,0x0024,0x3400,0x0024,0xa010,0x0024, + 0x0000,0x01c1,0x3800,0x0024,0x34e0,0x0024,0xf100,0x0024, + 0xb010,0x0024,0x6892,0x3080,0x34f0,0x0024,0xb010,0x0024, + 0x3cb0,0x0024,0x3450,0x0024,0x34a0,0x4024,0xc010,0x0024, + 0x0000,0x0181,0x2802,0xb585,0x3000,0x0024,0x6890,0x03cc, + 0x2803,0x5500,0x3800,0x0024,0x6012,0x0024,0x0000,0x0201, + 0x2802,0xb718,0x0000,0x0024,0x2802,0xba00,0x6090,0x004c, + 0x6012,0x0024,0x0000,0x0281,0x2802,0xb948,0x6012,0x0024, + 0x0000,0x0080,0x2802,0xb959,0x0000,0x0024,0x2802,0xba00, + 0x3013,0x0024,0x6890,0x03cc,0x2803,0x5500,0x3800,0x0024, + 0x0000,0x0201,0x3800,0x114c,0x34b0,0x0024,0x6012,0x0024, + 0x0006,0x09c1,0x2802,0xc441,0x4012,0x0024,0xf400,0x4057, + 0x3702,0x0024,0x2000,0x0000,0x0000,0x0024,0x2802,0xc440, + 0x0000,0x0024,0x0000,0x0200,0x0006,0x8110,0x2802,0xc440, + 0x3800,0x0024,0x0000,0x0300,0x0006,0x8110,0x2802,0xc440, + 0x3800,0x0024,0x0006,0x8050,0x6890,0x0024,0x2803,0x5500, + 0x3800,0x0024,0x0000,0x0400,0x0006,0x8110,0x2802,0xc440, + 0x3800,0x0024,0x0000,0x0500,0x0006,0x8110,0x2802,0xc440, + 0x3800,0x0024,0x0000,0x0600,0x0006,0x8110,0x2802,0xc440, + 0x3800,0x0024,0x0006,0x8050,0x6890,0x0024,0x2803,0x5500, + 0x3800,0x0024,0x3423,0x184c,0x3460,0x0024,0x4080,0x0024, + 0x0006,0x8200,0x2802,0xc985,0x3e10,0x0024,0x0000,0x01c0, + 0x3e10,0x0024,0x3490,0x0024,0x2902,0x6ac0,0x3e00,0x13cc, + 0x36d3,0x11cc,0x3413,0x0024,0x4080,0x3240,0x34f3,0x0024, + 0x2802,0xcd58,0x0000,0x0024,0x0006,0x8010,0x6890,0x0024, + 0x2803,0x5500,0x3800,0x0024,0x0000,0x0180,0x3e10,0x0024, + 0x3490,0x0024,0x2902,0x6ac0,0x3e00,0x13cc,0x36d3,0x11cc, + 0x3413,0x0024,0x4080,0x3240,0x34f3,0x0024,0x2802,0xcd58, + 0x0000,0x0024,0x0006,0x8010,0x6890,0x0024,0x2803,0x5500, + 0x3800,0x0024,0x0000,0x0201,0x3433,0x0024,0x34d0,0x0024, + 0x6012,0x0024,0x0006,0x0bc1,0x2802,0xdf41,0x4012,0x0024, + 0xf400,0x4057,0x3702,0x0024,0x2000,0x0000,0x0000,0x0024, + 0x0006,0x8050,0x6890,0x0024,0x2803,0x5500,0x3800,0x0024, + 0x0000,0x3000,0x2802,0xe100,0x0006,0x8150,0x0000,0x9000, + 0x0006,0x8150,0x3433,0x0024,0x34d0,0x4024,0x4192,0x0024, + 0x4192,0x0024,0x2802,0xe100,0xa010,0x0024,0x0000,0x0201, + 0x0006,0x8150,0x2903,0x9bc0,0x3613,0x0024,0x0006,0x9301, + 0x3473,0x0024,0x3c10,0x0024,0x34f0,0x8024,0x3410,0xc024, + 0xd234,0x0024,0x0000,0x3fc3,0xb234,0x0024,0x4122,0x0024, + 0xf400,0x4055,0x3500,0x0024,0x3cf0,0x0024,0x3490,0x0024, + 0x2802,0xe100,0x6090,0x0024,0x003f,0xfe04,0x0000,0x0401, + 0x0006,0x8150,0x2903,0x9bc0,0x3613,0x0024,0x0006,0x9301, + 0x3473,0x0024,0x3c10,0x0024,0x34f0,0x8024,0x3400,0xc024, + 0xa346,0x0024,0xd234,0x0024,0x0000,0x3fc3,0xb234,0x0024, + 0x4122,0x1042,0xf400,0x4055,0x0006,0x9301,0x3500,0x0024, + 0xd024,0x3000,0xb234,0x0024,0x4122,0x0024,0xf400,0x4055, + 0x3500,0x0024,0x3cf0,0x0024,0x3490,0x0024,0x2802,0xe100, + 0x6090,0x0024,0x0000,0x4000,0x0000,0x0202,0x0006,0x8150, + 0x3433,0x0024,0x34d0,0x4024,0x6122,0x0024,0xa010,0x0024, + 0x0004,0x8001,0x3800,0x110c,0x0006,0x8150,0x3000,0x0024, + 0x6012,0x1300,0x0000,0x0401,0x2802,0xe3c9,0x0000,0x0024, + 0x6890,0x82cc,0x2803,0x5500,0x3800,0x0024,0x6012,0x0024, + 0x0006,0x0dc1,0x2803,0x0b41,0x4012,0x0024,0xf400,0x4057, + 0x3702,0x0024,0x2000,0x0000,0x0000,0x0024,0x2803,0x0b40, + 0x0000,0x0024,0x0016,0x2200,0x0006,0x8190,0x6892,0x2040, + 0x2803,0x0b40,0x38f0,0x4024,0x002c,0x4400,0x0000,0x0081, + 0x0006,0x8190,0x3810,0x0024,0x2803,0x0b40,0x38f0,0x4024, + 0x003b,0x8000,0x0000,0x0081,0x0006,0x8190,0x3810,0x0024, + 0x2803,0x0b40,0x38f0,0x4024,0x0007,0xd000,0x0006,0x8190, + 0xb882,0x2040,0x2803,0x0b40,0x38f0,0x4024,0x000f,0xa000, + 0x0006,0x8190,0xb882,0x2040,0x2803,0x0b40,0x38f0,0x4024, + 0x0015,0x8880,0x0006,0x8190,0xb882,0x2040,0x2803,0x0b40, + 0x38f0,0x4024,0x0017,0x7000,0x0006,0x8190,0xb882,0x2040, + 0x2803,0x0b40,0x38f0,0x4024,0x001f,0x4000,0x0006,0x8190, + 0xb882,0x2040,0x2803,0x0b40,0x38f0,0x4024,0x002b,0x1100, + 0x0006,0x8190,0xb882,0x2040,0x2803,0x0b40,0x38f0,0x4024, + 0x002e,0xe000,0x0006,0x8190,0xb882,0x2040,0x2803,0x0b40, + 0x38f0,0x4024,0x001d,0xc000,0x0006,0x8190,0x6892,0x2040, + 0x2803,0x0b40,0x38f0,0x4024,0x0006,0x8190,0x0000,0x0201, + 0x0000,0xfa04,0x2903,0x9bc0,0x3613,0x0024,0x0006,0x9301, + 0xb88a,0x11cc,0x3c10,0x0024,0x34f0,0x8024,0x3410,0xc024, + 0xd234,0x0024,0x0000,0x3fc3,0xb234,0x0024,0x4122,0x0024, + 0xf400,0x4055,0x3500,0x0024,0x3cf0,0x0024,0x3490,0x0024, + 0xfe50,0x4005,0x48b2,0x0024,0xfeca,0x0024,0x40b2,0x0024, + 0x3810,0x0024,0x2803,0x0b40,0x38f0,0x4024,0x003f,0xfe04, + 0x0000,0x0401,0x0006,0x8190,0x2903,0x9bc0,0x3613,0x0024, + 0x0006,0x9301,0x3473,0x0024,0x3c10,0x0024,0x34f0,0x8024, + 0x3400,0xc024,0xa346,0x0024,0xd234,0x0024,0x0000,0x3fc3, + 0xb234,0x0024,0x4122,0x1042,0xf400,0x4055,0x0006,0x9301, + 0x3500,0x0024,0xd024,0x3000,0xb234,0x0024,0x4122,0x0024, + 0xf400,0x4055,0x0000,0x0041,0x3500,0x0024,0x3cf0,0x0024, + 0x3490,0x0024,0xfe02,0x0024,0x48b2,0x0024,0x3810,0x0024, + 0x2803,0x0b40,0x38f0,0x4024,0x003f,0xfe04,0x0000,0x0401, + 0x0006,0x8190,0x2903,0x9bc0,0x3613,0x0024,0x0006,0x9301, + 0x3473,0x0024,0x3c10,0x0024,0x34f0,0x8024,0x3400,0xc024, + 0xa346,0x0024,0xd234,0x0024,0x0000,0x3fc3,0xb234,0x0024, + 0x4122,0x1042,0xf400,0x4055,0x0006,0x9301,0x3500,0x0024, + 0xd024,0x3000,0xb234,0x0024,0x4122,0x0024,0xf400,0x4055, + 0x3500,0x0024,0x3cf0,0x0024,0x0000,0x0280,0x3490,0x4024, + 0xfe02,0x0024,0x48b2,0x0024,0x3810,0x0024,0x2803,0x0b40, + 0x38f0,0x4024,0x0006,0x8010,0x6890,0x0024,0x2803,0x5500, + 0x3800,0x0024,0x0000,0x0201,0x2903,0x9bc0,0x3613,0x11cc, + 0x3c10,0x0024,0x3490,0x4024,0x6014,0x13cc,0x0000,0x0081, + 0x2803,0x0e85,0x0006,0x80d0,0x0006,0x8010,0x6890,0x0024, + 0x2803,0x5500,0x3800,0x0024,0x3000,0x0024,0x6012,0x0024, + 0x0000,0x0241,0x2803,0x1309,0x0000,0x0024,0x6890,0x034c, + 0xb882,0x2000,0x0006,0x8310,0x2914,0xbec0,0x0000,0x1000, + 0x0000,0x0800,0x3613,0x0024,0x3e10,0x0024,0x0006,0x8300, + 0x290c,0x7300,0x3e10,0x0024,0x2803,0x5500,0x36e3,0x0024, + 0x0006,0x8110,0x30e1,0x184c,0x3000,0x0024,0x6012,0x0024, + 0x0008,0x0001,0x2803,0x1515,0x0000,0x0024,0x6498,0x0024, + 0x3e10,0x4024,0x0000,0x0081,0x2902,0x1dc0,0x3e01,0x0024, + 0x36e3,0x004c,0x3000,0x0024,0x6012,0x0024,0x000b,0x8011, + 0x2803,0x20d5,0x0006,0x8112,0x0000,0x0201,0x0004,0x0010, + 0x2915,0x8300,0x0001,0x0000,0x000b,0x8011,0x0005,0x0010, + 0x291f,0xc6c0,0x0001,0x0000,0x0006,0x8110,0x30e1,0x0024, + 0x3000,0x0024,0x6012,0x0024,0x0000,0x0281,0x2803,0x1c45, + 0x6012,0x0024,0x000b,0x8001,0x2803,0x1cd5,0x3613,0x0024, + 0x36f3,0x0024,0x000b,0x8001,0x6498,0x184c,0x0006,0x8112, + 0x0003,0x8000,0x3e10,0x4024,0x2902,0x1dc0,0x3e01,0x0024, + 0x36f3,0x0024,0x3009,0x3844,0x3e10,0x0024,0x0000,0x0400, + 0x3000,0x8024,0x0008,0x0010,0x3e00,0x8024,0x3201,0x0024, + 0x6408,0x4051,0x2903,0x8740,0x0003,0x2388,0x0000,0x0400, + 0x0000,0x0011,0x3613,0x008c,0x30d0,0x7844,0x3e10,0x4024, + 0x3000,0x8024,0x0008,0x0010,0x3e00,0x8024,0x3201,0x0024, + 0x2903,0x8740,0x6408,0x0024,0x0006,0x8a10,0x0000,0x01c1, + 0x36e3,0x0000,0xb010,0x9bc4,0x0000,0x0024,0x2803,0x2785, + 0x0000,0x0024,0x6192,0x184c,0x2903,0x9bc0,0x6102,0x0024, + 0x4088,0x0024,0x0000,0x0024,0x2803,0x2785,0x0000,0x0024, + 0x6890,0x0b4c,0x3a00,0x0024,0x0000,0x0401,0x2903,0x9bc0, + 0x3613,0x11cc,0x3413,0x0024,0x3c90,0x0024,0x290b,0x1400, + 0x34f3,0x0024,0x4080,0x0024,0x0000,0x0024,0x2803,0x5195, + 0x0000,0x0024,0x3423,0x0024,0x34e0,0x0024,0x4080,0x0024, + 0x0006,0x8151,0x2803,0x2f05,0x0000,0x3200,0x0000,0x0142, + 0x0006,0x8211,0x3613,0x0024,0x3e00,0x7800,0x3111,0x8024, + 0x31d1,0xc024,0xfef4,0x4087,0x48b6,0x0440,0xfeee,0x07c1, + 0x2914,0xa580,0x42b6,0x0024,0x2803,0x3300,0x0007,0x89d0, + 0x0000,0x0142,0x3613,0x0024,0x3e00,0x7800,0x3131,0x8024, + 0x3110,0x0024,0x31d0,0x4024,0xfe9c,0x4181,0x48be,0x0024, + 0xfe82,0x0440,0x46be,0x07c1,0xfef4,0x4087,0x48b6,0x0024, + 0xfeee,0x0024,0x2914,0xa580,0x42b6,0x0024,0x0007,0x89d0, + 0x0006,0x8191,0x4c8a,0x9800,0xfed0,0x4005,0x48b2,0x0024, + 0xfeca,0x0024,0x40b2,0x0024,0x3810,0x0024,0x38f0,0x4024, + 0x3111,0x8024,0x468a,0x0707,0x2908,0xbe80,0x3101,0x0024, + 0x3123,0x11cc,0x3100,0x108c,0x3009,0x3000,0x0004,0x8000, + 0x3009,0x1241,0x6014,0x138c,0x000b,0x8011,0x2803,0x3941, + 0x0000,0x0024,0x3473,0x0024,0x3423,0x0024,0x3009,0x3240, + 0x34e3,0x0024,0x2803,0x4fc0,0x0008,0x0012,0x0006,0x80d0, + 0x2803,0x3ac9,0x0000,0x0024,0xf400,0x4004,0x3000,0x0024, + 0x4090,0x0024,0xf400,0x4480,0x2803,0x4095,0x000b,0x8001, + 0x0000,0x0005,0x6540,0x0024,0x0000,0x0024,0x2803,0x4bd8, + 0x4490,0x0024,0x2403,0x3fc0,0x0000,0x0024,0x0006,0x8301, + 0x4554,0x0800,0x4122,0x0024,0x659a,0x4055,0x0006,0x8341, + 0x4122,0x3400,0xf400,0x4055,0x3210,0x0024,0x3d00,0x0024, + 0x2803,0x4bc0,0x0000,0x0024,0x6014,0x0024,0x0001,0x0000, + 0x2803,0x4815,0x0000,0x0005,0x0008,0x0012,0x0008,0x0010, + 0x0003,0x8001,0x0006,0x8153,0x3613,0x0024,0x3009,0x3811, + 0x2903,0xfc00,0x0004,0x0011,0x0008,0x0010,0x0001,0x0000, + 0x291f,0xc6c0,0x0005,0x0011,0x000f,0x0011,0x0008,0x0010, + 0x33d0,0x184c,0x6010,0xb844,0x3e10,0x0024,0x0000,0x0400, + 0x3320,0x4024,0x3e00,0x4024,0x3301,0x0024,0x2903,0x8740, + 0x6408,0x0024,0x36e3,0x0024,0x3009,0x1bc4,0x3009,0x1bd1, + 0x6540,0x0024,0x0000,0x0024,0x2803,0x4bd8,0x4490,0x0024, + 0x2403,0x4b80,0x0000,0x0024,0x0006,0x8301,0x4554,0x0840, + 0x4122,0x0024,0x659a,0x4055,0x0006,0x8341,0x4122,0x3400, + 0xf400,0x4055,0x3110,0x0024,0x3d00,0x0024,0xf400,0x4510, + 0x0030,0x0013,0x3073,0x184c,0x3e11,0x008c,0x3009,0x0001, + 0x6140,0x0024,0x0000,0x0201,0x3009,0x2000,0x0006,0x8300, + 0x290c,0x7300,0x3e10,0x0024,0x3300,0x1b8c,0xb010,0x0024, + 0x0000,0x0024,0x2803,0x5195,0x0000,0x0024,0x3473,0x0024, + 0x3423,0x0024,0x3009,0x1240,0x4080,0x138c,0x0000,0x0804, + 0x2803,0x39d5,0x6402,0x0024,0x0006,0xd312,0x0006,0xd310, + 0x0006,0x8191,0x3010,0x984c,0x30f0,0xc024,0x0000,0x0021, + 0xf2d6,0x07c6,0x290a,0xf5c0,0x4682,0x0400,0x6894,0x0840, + 0xb886,0x0bc1,0xbcd6,0x0024,0x3a10,0x8024,0x3af0,0xc024, + 0x36f3,0x4024,0x36f3,0xd80e,0x36f4,0x9813,0x36f4,0x1811, + 0x36f1,0x9807,0x36f1,0x1805,0x36f0,0x9803,0x36f0,0x1801, + 0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815,0x2000,0x0000, + 0x36f2,0x9817,0x3613,0x0024,0x3e12,0xb817,0x3e12,0x3815, + 0x3e05,0xb814,0x3615,0x0024,0x0000,0x800a,0x3e10,0x3801, + 0x0020,0x0001,0x3e14,0x3811,0x0030,0x0050,0x0030,0x0251, + 0x3e04,0xb813,0x3000,0x0024,0xc012,0x0024,0x0019,0x9300, + 0x3800,0x4024,0x2903,0xae40,0x3900,0x0024,0x2903,0xbb80, + 0x0000,0x0300,0xb882,0x0024,0x2914,0xbec0,0x0006,0x8010, + 0x0000,0x1540,0x0007,0x8190,0x2900,0xadc0,0x3800,0x0024, + 0x4080,0x0024,0x0000,0x0024,0x2803,0x6555,0x0000,0x0024, + 0x0006,0x8012,0x3200,0x0024,0x4080,0x0024,0x0030,0x0010, + 0x2803,0x6555,0x0000,0x0201,0x3000,0x0024,0xb010,0x0024, + 0x0000,0x0024,0x2803,0x6555,0x0000,0x0024,0x2900,0xadc0, + 0x0000,0x0024,0x4080,0x0024,0x0006,0x8010,0x2803,0x6555, + 0x3000,0x0024,0x4080,0x0024,0x0000,0x0201,0x2803,0x6185, + 0x0030,0x0010,0x0030,0x0050,0xf292,0x0000,0xb012,0x0024, + 0x3800,0x4024,0x0030,0x0010,0x0000,0x0201,0x3000,0x0024, + 0xb010,0x0024,0x0000,0x0024,0x2900,0xbe95,0x0003,0x6f08, + 0x0006,0x8011,0x3100,0x0024,0x4080,0x0024,0x0000,0x0024, + 0x2803,0x6d45,0x0000,0x0024,0x0007,0x8a52,0x3200,0x0024, + 0x4080,0x0024,0x0000,0x0024,0x2803,0x6d49,0x0000,0x0024, + 0xf292,0x0800,0x6012,0x0024,0x0000,0x0000,0x2803,0x6d05, + 0x0000,0x0024,0x3200,0x0024,0x4090,0x0024,0xb880,0x2800, + 0x3900,0x0024,0x3100,0x0024,0x4080,0x0024,0x0000,0x0024, + 0x2902,0x9885,0x0003,0x6648,0x2900,0xbe80,0x0000,0x0024, + 0x0000,0x0010,0x0006,0x9f51,0x0006,0x9f92,0x0030,0x0493, + 0x0000,0x0201,0x6890,0xa410,0x3b00,0x2810,0x0006,0x8a10, + 0x3009,0x0000,0x6012,0x0024,0x0006,0x9fd0,0x2803,0x7288, + 0xb880,0x0024,0x6890,0x0024,0x3009,0x2000,0x36f4,0x9813, + 0x36f4,0x1811,0x36f0,0x1801,0x3405,0x9014,0x36f3,0x0024, + 0x36f2,0x1815,0x2000,0x0000,0x36f2,0x9817,0x3613,0x0024, + 0x3e10,0xb810,0x3e11,0x3805,0x3e02,0x0024,0x0030,0x0010, + 0xce9a,0x0002,0x0000,0x0200,0x2903,0x7dc0,0xb024,0x0024, + 0xc020,0x0024,0x0000,0x0200,0x2803,0x7685,0x6e9a,0x0002, + 0x4182,0x0024,0x0000,0x0400,0x2803,0x7c45,0xae1a,0x0024, + 0x6104,0x984c,0x0000,0x0024,0x2903,0x9bc9,0x0003,0x7c08, + 0x6103,0xe4e5,0x2903,0x9bc0,0x408a,0x188c,0x2903,0x9bc0, + 0x408a,0x4141,0x4583,0x6465,0x2803,0x7c40,0xceca,0x1bcc, + 0xc408,0x0024,0xf2e2,0x1bc8,0x36f1,0x1805,0x2000,0x0011, + 0x36f0,0x9810,0x2000,0x0000,0xdc92,0x0024,0x0006,0x8a17, + 0x3613,0x1c00,0x6093,0xe1e3,0x0000,0x03c3,0x0006,0x9f95, + 0xb132,0x9415,0x3500,0xfc01,0x2803,0x8695,0xa306,0x0024, + 0x3009,0x184c,0x3009,0x3814,0x0025,0xffd4,0x0006,0xd317, + 0x3710,0x160c,0x0006,0x9f94,0x37f0,0x73d5,0x6c92,0x3808, + 0x3f10,0x0024,0x3ff0,0x4024,0x3009,0x1040,0x3009,0x13c1, + 0x6010,0x0024,0x0000,0x0024,0x2903,0xc445,0x0003,0x8288, + 0x2803,0x84d4,0x0006,0x0001,0x4010,0x0024,0x0005,0xf601, + 0x6010,0x0024,0x0000,0x0040,0x2803,0x8654,0x0030,0x0497, + 0x3f00,0x0024,0x36f2,0x1814,0x4330,0x9803,0x2000,0x0000, + 0x8880,0x1bc1,0x3613,0x0024,0x3e22,0xb806,0x3e05,0xb814, + 0x3615,0x0024,0x0000,0x800a,0x3e10,0x3801,0x3e10,0xb803, + 0x3e11,0x7807,0x6848,0x930c,0x3411,0x780d,0x459a,0x10c0, + 0x0000,0x0201,0x6012,0x384e,0x0000,0x0241,0x2803,0x8dd5, + 0x6012,0x380f,0x2403,0x8d05,0x0000,0x0024,0x3000,0x0001, + 0x3101,0x8407,0x6cfe,0x0024,0xac42,0x0024,0xaf4e,0x2040, + 0x3911,0x8024,0x2803,0x9980,0x0000,0x0024,0x0000,0x0281, + 0x2803,0x9115,0x6012,0x4455,0x2403,0x9045,0x0000,0x0024, + 0x3000,0x0001,0x3101,0x8407,0x4cf2,0x0024,0xac42,0x0024, + 0xaf4e,0x2040,0x3911,0x8024,0x2803,0x9980,0x0000,0x0024, + 0x0000,0x0024,0x2803,0x9555,0x4080,0x0024,0x3110,0x0401, + 0xf20f,0x0203,0x2403,0x9485,0x8dd6,0x0024,0x4dce,0x0024, + 0xf1fe,0x0024,0xaf4e,0x0024,0x6dc6,0x2046,0xf1df,0x0203, + 0xaf4f,0x1011,0xf20e,0x07cc,0x8dd6,0x2486,0x2803,0x9980, + 0x0000,0x0024,0x0000,0x0024,0x2803,0x97d5,0x0000,0x0024, + 0x0fff,0xffd1,0x2403,0x9705,0x3010,0x0001,0xac4f,0x0801, + 0x3821,0x8024,0x2803,0x9980,0x0000,0x0024,0x0fff,0xffd1, + 0x2403,0x9945,0x3010,0x0001,0x3501,0x9407,0xac47,0x0801, + 0xaf4e,0x2082,0x3d11,0x8024,0x36f3,0xc024,0x36f3,0x980d, + 0x36f1,0x5807,0x36f0,0x9803,0x36f0,0x1801,0x3405,0x9014, + 0x36e3,0x0024,0x2000,0x0000,0x36f2,0x9806,0x3e10,0xb812, + 0x3e11,0xb810,0x3e12,0x0024,0x0006,0x9f92,0x0025,0xffd0, + 0x3e04,0x4bd1,0x3181,0xf847,0xb68c,0x4440,0x3009,0x0802, + 0x6024,0x3806,0x0006,0x8a10,0x2903,0xc445,0x0003,0x9dc8, + 0x0000,0x0800,0x6101,0x1602,0xaf2e,0x0024,0x4214,0x1be3, + 0xaf0e,0x1811,0x0fff,0xfc00,0xb200,0x9bc7,0x0000,0x03c0, + 0x2803,0xa205,0xb204,0xa002,0x2900,0xb800,0x3613,0x2002, + 0x4680,0x1bc8,0x36f1,0x9810,0x2000,0x0000,0x36f0,0x9812, + 0x0000,0x0400,0x6102,0x0024,0x3e11,0x3805,0x2803,0xa609, + 0x3e02,0x0024,0x2903,0x9bc0,0x408a,0x188c,0x2903,0x9bc0, + 0x408a,0x4141,0x4582,0x1bc8,0x2000,0x0000,0x36f1,0x1805, + 0x2903,0x9bc0,0x4102,0x184c,0xb182,0x1bc8,0x2000,0x0000, + 0x36f1,0x1805,0x2a03,0xa78e,0x3e12,0xb817,0x3e10,0x3802, + 0x0000,0x800a,0x0006,0x9f97,0x3009,0x1fc2,0x3e04,0x5c00, + 0x6020,0xb810,0x0030,0x0451,0x2803,0xaa54,0x0006,0x0002, + 0x4020,0x0024,0x0005,0xfb02,0x6024,0x0024,0x0025,0xffd0, + 0x2803,0xac91,0x3100,0x1c11,0xb284,0x0024,0x0030,0x0490, + 0x3800,0x8024,0x0025,0xffd0,0x3980,0x1810,0x36f4,0x7c11, + 0x36f0,0x1802,0x0030,0x0717,0x3602,0x8024,0x2100,0x0000, + 0x3f05,0xdbd7,0x0003,0xa757,0x3613,0x0024,0x3e00,0x3801, + 0xf400,0x55c0,0x0000,0x0897,0xf400,0x57c0,0x0000,0x0024, + 0x2000,0x0000,0x36f0,0x1801,0x3613,0x0024,0x3e22,0xb815, + 0x3e05,0xb814,0x3615,0x0024,0x0000,0x800a,0x3e10,0x3801, + 0x3e10,0xb803,0xb884,0xb805,0xb88a,0x3844,0x3e11,0xb80d, + 0x3e03,0xf80e,0x0000,0x03ce,0x2403,0xb68e,0xf400,0x4083, + 0x0000,0x0206,0xa562,0x0024,0x455a,0x0024,0x0020,0x0006, + 0xd312,0x0024,0xb16c,0x0024,0x0000,0x01c6,0x2803,0xb685, + 0x0000,0x0024,0xd56a,0x0024,0x4336,0x0024,0x0000,0x4000, + 0x0006,0x9306,0x4092,0x0024,0xb512,0x0024,0x462c,0x0024, + 0x6294,0x4195,0x6200,0x3401,0x0000,0x03ce,0x2803,0xb391, + 0xb88a,0x0024,0x36f3,0xd80e,0x36f1,0x980d,0x36f1,0x1805, + 0x36f0,0x9803,0x36f0,0x1801,0x3405,0x9014,0x36e3,0x0024, + 0x2000,0x0000,0x36f2,0x9815,0x3613,0x0024,0x3e12,0xb817, + 0x3e12,0x3815,0x3e05,0xb814,0x3615,0x0024,0x0000,0x800a, + 0x3e10,0x3801,0xb880,0xb810,0x0006,0x9fd0,0x3e10,0x8001, + 0x4182,0x3811,0x0006,0xd311,0x2803,0xbf45,0x0006,0x8a10, + 0x0000,0x0200,0xbc82,0xa000,0x3910,0x0024,0x2903,0xb080, + 0x39f0,0x4024,0x0006,0x9f90,0x0006,0x9f51,0x3009,0x0000, + 0x3009,0x0401,0x6014,0x0024,0x0000,0x0024,0x2903,0xc445, + 0x0003,0xc048,0x36f4,0x4024,0x36f0,0x9810,0x36f0,0x1801, + 0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815,0x2000,0x0000, + 0x36f2,0x9817,0x3613,0x0024,0x3e12,0xb817,0x3e12,0x3815, + 0x3e05,0xb814,0x290a,0xd900,0x3605,0x0024,0x2910,0x0180, + 0x3613,0x0024,0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815, + 0x2000,0x0000,0x36f2,0x9817,0x3613,0x0024,0x3e12,0xb817, + 0x3e12,0x3815,0x3e05,0xb814,0x3615,0x0024,0x0000,0x800a, + 0x3e10,0xb803,0x0006,0x0002,0x3e11,0x3805,0x3e11,0xb807, + 0x3e14,0x3811,0x0006,0x9f90,0x3e04,0xb813,0x3009,0x0012, + 0x3213,0x0024,0xf400,0x4480,0x6026,0x0024,0x0000,0x0024, + 0x2803,0xccd5,0x0000,0x0024,0x0000,0x0012,0xf400,0x4480, + 0x0006,0x9f50,0x3009,0x0002,0x6026,0x0024,0x0000,0x0024, + 0x2903,0xc445,0x0003,0xccc8,0x0006,0x9f93,0x3201,0x0c11, + 0xb58a,0x0406,0x0006,0x8a11,0x468e,0x8400,0xb68c,0x9813, + 0xcfee,0x1bd2,0x0000,0x0804,0xaf0e,0x9811,0x4f86,0x1bd0, + 0x0000,0x0021,0x6418,0x9807,0x6848,0x1bc6,0xad46,0x9805, + 0xf400,0x4080,0x36f1,0x0024,0x36f0,0x9803,0x3405,0x9014, + 0x36f3,0x0024,0x36f2,0x1815,0x2000,0x0000,0x36f2,0x9817, + 0x3613,0x0024,0x3e12,0xb817,0x3e12,0x3815,0x3e05,0xb814, + 0x3615,0x0024,0x0000,0x800a,0x3e10,0x3801,0x3e10,0xb803, + 0x3e11,0x3805,0x2803,0xdb00,0x3e04,0x3811,0x0000,0x0401, + 0x2903,0x9bc0,0x3613,0x0024,0x0000,0x0080,0xb882,0x130c, + 0xf400,0x4510,0x3010,0x910c,0x30f0,0xc024,0x6dc2,0x0024, + 0x3810,0x0024,0x38f0,0x4024,0x0000,0x0201,0x3100,0x0024, + 0xb010,0x0024,0x0000,0x0024,0x2803,0xde55,0x0000,0x0024, + 0x6894,0x130c,0xb886,0x1040,0x3430,0x4024,0x6dca,0x0024, + 0x0030,0x0011,0x2803,0xd6d1,0x0000,0x0024,0xbcd2,0x0024, + 0x0000,0x0201,0x2803,0xde45,0x0000,0x0024,0x2903,0x9bc0, + 0x3613,0x0024,0x36f4,0x1811,0x36f1,0x1805,0x36f0,0x9803, + 0x36f0,0x1801,0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815, + 0x2000,0x0000,0x36f2,0x9817,0x3613,0x0024,0x3e12,0xb815, + 0x0000,0x800a,0x3e14,0x7813,0x3e10,0xb803,0x3e11,0x3805, + 0x3e11,0xb807,0x3e13,0xf80e,0x6812,0x0024,0x3e03,0x7810, + 0x0fff,0xffd3,0x0000,0x0091,0xbd86,0x9850,0x3e10,0x3804, + 0x3e00,0x7812,0xbe8a,0x8bcc,0x409e,0x8086,0x2403,0xe587, + 0xfe49,0x2821,0x526a,0x8801,0x5c87,0x280e,0x4eba,0x9812, + 0x4286,0x40e1,0xb284,0x1bc1,0x4de6,0x0024,0xad17,0x2627, + 0x4fde,0x9804,0x4498,0x1bc0,0x0000,0x0024,0x2803,0xe395, + 0x3a11,0xa807,0x36f3,0x4024,0x36f3,0xd80e,0x36f1,0x9807, + 0x36f1,0x1805,0x36f0,0x9803,0x36f4,0x5813,0x2000,0x0000, + 0x36f2,0x9815,0x3613,0x0024,0x3e12,0xb815,0x0000,0x800a, + 0x3e10,0xb803,0x3e11,0x3805,0x3e11,0xb807,0x3e13,0xf80e, + 0x6812,0x0024,0x3e03,0x7810,0x3009,0x1850,0x3e10,0x3804, + 0x3e10,0x7812,0x32f3,0x0024,0xbd86,0x0024,0x4091,0xe2e3, + 0x3009,0x0046,0x2403,0xf100,0x3009,0x0047,0x32f0,0x0801, + 0xfe1f,0x6465,0x5e8a,0x0024,0x44ba,0x0024,0xfee2,0x0024, + 0x5d8a,0x1800,0x4482,0x4160,0x48ba,0x8046,0x4dc6,0x1822, + 0x4de6,0x8047,0x36f3,0x0024,0x36f0,0x5812,0xad17,0x2627, + 0x4fde,0x9804,0x4498,0x1bc0,0x0000,0x0024,0x2803,0xec95, + 0x3a11,0xa807,0x36f3,0x4024,0x36f3,0xd80e,0x36f1,0x9807, + 0x36f1,0x1805,0x36f0,0x9803,0x2000,0x0000,0x36f2,0x9815, + 0xb386,0x40d7,0x4284,0x184c,0x0000,0x05c0,0x2803,0xf695, + 0xf5d8,0x3804,0x0000,0x0984,0x6400,0xb84a,0x3e13,0xf80d, + 0xa204,0x380e,0x0000,0x800a,0x0000,0x00ce,0x2403,0xf9ce, + 0xffa4,0x0024,0x48b6,0x0024,0x0000,0x0024,0x2803,0xf9c4, + 0x4000,0x40c2,0x4224,0x0024,0x6090,0x0024,0xffa4,0x0024, + 0x0fff,0xfe83,0xfe86,0x1bce,0x36f3,0xd80d,0x48b6,0x0024, + 0x0fff,0xff03,0xa230,0x45c3,0x2000,0x0000,0x36f1,0x180a, + 0x4080,0x184c,0x3e13,0x780f,0x2803,0xfe05,0x4090,0xb80e, + 0x2403,0xfd80,0x3e04,0x0440,0x3810,0x0440,0x3604,0x0024, + 0x3009,0x1bce,0x3603,0x5bcf,0x2000,0x0000,0x0000,0x0024, + 0x0007,0x0001, /*copy 1*/ + 0x802e, + 0x0006,0x0002, /*copy 2*/ + 0x2801,0x6280, + 0x0007,0x0001, /*copy 1*/ + 0x8030, + 0x0006,0x0002, /*copy 2*/ + 0x2800,0x1440, + 0x0007,0x0001, /*copy 1*/ + 0x8028, + 0x0006,0x0002, /*copy 2*/ + 0x2a00,0x3c4e, + 0x0007,0x0001, /*copy 1*/ + 0x8032, + 0x0006,0x0002, /*copy 2*/ + 0x2800,0x59c0, + 0x0007,0x0001, /*copy 1*/ + 0x3580, + 0x0006, 0x8038, 0x0000, /*Rle(56)*/ + 0x0007,0x0001, /*copy 1*/ + 0xfab3, + 0x0006,0x01a4, /*copy 420*/ + 0x0001,0x0001,0x0001,0x0001,0x0000,0xffff,0xfffe,0xfffb, + 0xfff9,0xfff5,0xfff2,0xffed,0xffe8,0xffe3,0xffde,0xffd8, + 0xffd3,0xffce,0xffca,0xffc7,0xffc4,0xffc4,0xffc5,0xffc7, + 0xffcc,0xffd3,0xffdc,0xffe6,0xfff3,0x0001,0x0010,0x001f, + 0x002f,0x003f,0x004e,0x005b,0x0066,0x006f,0x0074,0x0075, + 0x0072,0x006b,0x005f,0x004f,0x003c,0x0024,0x0009,0xffed, + 0xffcf,0xffb0,0xff93,0xff77,0xff5f,0xff4c,0xff3d,0xff35, + 0xff34,0xff3b,0xff4a,0xff60,0xff7e,0xffa2,0xffcd,0xfffc, + 0x002e,0x0061,0x0094,0x00c4,0x00f0,0x0114,0x0131,0x0144, + 0x014b,0x0146,0x0134,0x0116,0x00eb,0x00b5,0x0075,0x002c, + 0xffde,0xff8e,0xff3d,0xfeef,0xfea8,0xfe6a,0xfe39,0xfe16, + 0xfe05,0xfe06,0xfe1b,0xfe43,0xfe7f,0xfecd,0xff2a,0xff95, + 0x0009,0x0082,0x00fd,0x0173,0x01e1,0x0242,0x0292,0x02cc, + 0x02ec,0x02f2,0x02da,0x02a5,0x0253,0x01e7,0x0162,0x00c9, + 0x0021,0xff70,0xfebc,0xfe0c,0xfd68,0xfcd5,0xfc5b,0xfc00, + 0xfbc9,0xfbb8,0xfbd2,0xfc16,0xfc85,0xfd1b,0xfdd6,0xfeae, + 0xff9e,0x009c,0x01a0,0x02a1,0x0392,0x046c,0x0523,0x05b0, + 0x060a,0x062c,0x0613,0x05bb,0x0526,0x0456,0x0351,0x021f, + 0x00c9,0xff5a,0xfde1,0xfc6a,0xfb05,0xf9c0,0xf8aa,0xf7d0, + 0xf73d,0xf6fa,0xf70f,0xf77e,0xf848,0xf96b,0xfadf,0xfc9a, + 0xfe8f,0x00ad,0x02e3,0x051a,0x073f,0x0939,0x0af4,0x0c5a, + 0x0d59,0x0de1,0x0de5,0x0d5c,0x0c44,0x0a9e,0x0870,0x05c7, + 0x02b4,0xff4e,0xfbaf,0xf7f8,0xf449,0xf0c7,0xed98,0xeae0, + 0xe8c4,0xe765,0xe6e3,0xe756,0xe8d2,0xeb67,0xef19,0xf3e9, + 0xf9cd,0x00b5,0x088a,0x112b,0x1a72,0x2435,0x2e42,0x3866, + 0x426b,0x4c1b,0x553e,0x5da2,0x6516,0x6b6f,0x7087,0x7441, + 0x7686,0x774a,0x7686,0x7441,0x7087,0x6b6f,0x6516,0x5da2, + 0x553e,0x4c1b,0x426b,0x3866,0x2e42,0x2435,0x1a72,0x112b, + 0x088a,0x00b5,0xf9cd,0xf3e9,0xef19,0xeb67,0xe8d2,0xe756, + 0xe6e3,0xe765,0xe8c4,0xeae0,0xed98,0xf0c7,0xf449,0xf7f8, + 0xfbaf,0xff4e,0x02b4,0x05c7,0x0870,0x0a9e,0x0c44,0x0d5c, + 0x0de5,0x0de1,0x0d59,0x0c5a,0x0af4,0x0939,0x073f,0x051a, + 0x02e3,0x00ad,0xfe8f,0xfc9a,0xfadf,0xf96b,0xf848,0xf77e, + 0xf70f,0xf6fa,0xf73d,0xf7d0,0xf8aa,0xf9c0,0xfb05,0xfc6a, + 0xfde1,0xff5a,0x00c9,0x021f,0x0351,0x0456,0x0526,0x05bb, + 0x0613,0x062c,0x060a,0x05b0,0x0523,0x046c,0x0392,0x02a1, + 0x01a0,0x009c,0xff9e,0xfeae,0xfdd6,0xfd1b,0xfc85,0xfc16, + 0xfbd2,0xfbb8,0xfbc9,0xfc00,0xfc5b,0xfcd5,0xfd68,0xfe0c, + 0xfebc,0xff70,0x0021,0x00c9,0x0162,0x01e7,0x0253,0x02a5, + 0x02da,0x02f2,0x02ec,0x02cc,0x0292,0x0242,0x01e1,0x0173, + 0x00fd,0x0082,0x0009,0xff95,0xff2a,0xfecd,0xfe7f,0xfe43, + 0xfe1b,0xfe06,0xfe05,0xfe16,0xfe39,0xfe6a,0xfea8,0xfeef, + 0xff3d,0xff8e,0xffde,0x002c,0x0075,0x00b5,0x00eb,0x0116, + 0x0134,0x0146,0x014b,0x0144,0x0131,0x0114,0x00f0,0x00c4, + 0x0094,0x0061,0x002e,0xfffc,0xffcd,0xffa2,0xff7e,0xff60, + 0xff4a,0xff3b,0xff34,0xff35,0xff3d,0xff4c,0xff5f,0xff77, + 0xff93,0xffb0,0xffcf,0xffed,0x0009,0x0024,0x003c,0x004f, + 0x005f,0x006b,0x0072,0x0075,0x0074,0x006f,0x0066,0x005b, + 0x004e,0x003f,0x002f,0x001f,0x0010,0x0001,0xfff3,0xffe6, + 0xffdc,0xffd3,0xffcc,0xffc7,0xffc5,0xffc4,0xffc4,0xffc7, + 0xffca,0xffce,0xffd3,0xffd8,0xffde,0xffe3,0xffe8,0xffed, + 0xfff2,0xfff5,0xfff9,0xfffb,0xfffe,0xffff,0x0000,0x0001, + 0x0001,0x0001,0x0001,0x0000, + 0x0007,0x0001, /*copy 1*/ + 0x180b, + 0x0006,0x000b, /*copy 11*/ + 0x000f,0x0010,0x001c,0xfab3,0x3580,0x8037,0xa037,0x0001, + 0x0000,0x3580,0x01a4, + 0x0007,0x0001, /*copy 1*/ + 0x181a, + 0x0006,0x0002, /*copy 2*/ + 0x08b4,0x08d2, + 0x0006, 0x8006, 0x091a, /*Rle(6)*/ + 0x0006,0x0025, /*copy 37*/ + 0x08ef,0x08ef,0x08ef,0x08ef,0x08ef,0x0b11,0x0af5,0x0af9, + 0x0afd,0x0b01,0x0b05,0x0b09,0x0b0d,0x0b40,0x0b44,0x0b47, + 0x0b47,0x0b47,0x0b47,0x0b4f,0x0b62,0x0c2d,0x0b99,0x0b9e, + 0x0ba4,0x0baa,0x0baf,0x0bb4,0x0bb9,0x0bbe,0x0bc3,0x0bc8, + 0x0bcd,0x0bd2,0x0beb,0x0c0a,0x0c29, + 0x0007,0x0001, /*copy 1*/ + 0x5800, + 0x0006,0x0001, /*copy 1*/ + 0x0001, + 0x0006, 0x8007, 0x0000, /*Rle(7)*/ + 0x0006,0x0018, /*copy 24*/ + 0x0002,0x0000,0xffff,0xffff,0x0000,0x0000,0x0000,0x0000, + 0x0003,0x0000,0xfffd,0xffff,0x0001,0x0000,0x0000,0x0000, + 0x0004,0x0000,0xfffa,0xffff,0x0004,0x0000,0xffff,0xffff, + 0x000a,0x0001, /*copy 1*/ + 0x0050, +#define PLUGIN_SIZE 8588 +#ifndef SKIP_PLUGIN_VARNAME +}; +#endif diff --git a/src/patches/vs1053b-patches-flac.plg b/src/patches/vs1053b-patches-flac.plg new file mode 100644 index 0000000..cbaebc9 --- /dev/null +++ b/src/patches/vs1053b-patches-flac.plg @@ -0,0 +1,1099 @@ +#ifndef SKIP_PLUGIN_VARNAME +const unsigned short PATCHES_FLAC[] = { /* Compressed plugin */ +#endif + 0x0007,0x0001, /*copy 1*/ + 0x8050, + 0x0006,0x001e, /*copy 30*/ + 0x2a00,0xc000,0x3e12,0xb817,0x3e14,0xf812,0x3e01,0xb811, + 0x0007,0x9717,0x0020,0xffd2,0x0030,0x11d1,0x3111,0x8024, + 0x3704,0xc024,0x3b81,0x8024,0x3101,0x8024,0x3b81,0x8024, + 0x3f04,0xc024,0x2808,0x4800,0x36f1,0x9811, + 0x0007,0x0001, /*copy 1*/ + 0x8060, + 0x0006,0x0540, /*copy 1344*/ + 0xf400,0x4095,0x0000,0x02c2,0x6124,0x0024,0x0000,0x0024, + 0x2800,0x1ac5,0x4192,0x4542,0x0000,0x0041,0x2000,0x0015, + 0x0030,0x0317,0x2000,0x0000,0x3f00,0x4024,0x2000,0x0000, + 0x0000,0x0000,0x3e12,0x3800,0x3e00,0xb804,0x0030,0x0015, + 0x0007,0x8257,0x3700,0x984c,0xf224,0x1444,0xf224,0x0024, + 0x0008,0x0002,0x2910,0x0181,0x0000,0x1bc8,0xb428,0x1402, + 0x0000,0x8004,0x2910,0x0195,0x0000,0x1bc8,0xb428,0x0024, + 0x0006,0x0095,0x2800,0x2945,0x3e13,0x780e,0x3e11,0x7803, + 0x3e13,0xf806,0x3e11,0xf801,0x3510,0xb808,0x003f,0xe004, + 0xfec4,0x3800,0x48be,0x17c3,0xfec6,0x41c2,0x48be,0x4497, + 0x4090,0x1c46,0xf06c,0x0024,0x2400,0x2580,0x6090,0x41c3, + 0x6628,0x1c47,0x0000,0x0024,0x2800,0x2449,0xf07e,0x0024, + 0xf400,0x4182,0x673a,0x1c46,0x0000,0x0024,0x2800,0x2589, + 0xf06c,0x0024,0xf400,0x41c3,0x0000,0x0024,0x4224,0x3442, + 0x2903,0xd9c0,0x4336,0x37c3,0x0000,0x1805,0x2903,0xd9c0, + 0x4508,0x40c2,0x450a,0x9808,0x0000,0x0207,0xa478,0x1bc0, + 0xc45a,0x1807,0x0030,0x03d5,0x3d01,0x5bc1,0x36f3,0xd806, + 0x3601,0x5803,0x36f3,0x0024,0x36f3,0x580e,0x0007,0x8257, + 0x0000,0x6004,0x3730,0x8024,0xb244,0x1c04,0xd428,0x3c02, + 0x0006,0xc717,0x2800,0x2d05,0x4284,0x0024,0x3613,0x3c02, + 0x0006,0xc357,0x2901,0x6ac0,0x3e11,0x5c05,0x4284,0x1bc5, + 0x0007,0x8257,0x2800,0x3285,0x0002,0x0001,0x3701,0x0024, + 0x0006,0xc357,0xb412,0x9c02,0x002e,0xe001,0x2800,0x3005, + 0x6212,0x0024,0x0000,0x0024,0x2800,0x3295,0x0000,0x0024, + 0x0030,0x0117,0x3f00,0x0024,0x3613,0x0024,0x3e10,0x3813, + 0x3e14,0x8024,0x3e04,0x8024,0x2900,0x4b40,0x0006,0x02d3, + 0x36e3,0x0024,0x3009,0x1bd3,0x0007,0x8257,0x3700,0x8024, + 0xf224,0x0024,0x0000,0x0024,0x2800,0x3491,0x3600,0x9844, + 0x2900,0x3a40,0x0000,0x3508,0x2911,0xf140,0x0000,0x0024, + 0x0030,0x0057,0x3700,0x0024,0xf200,0x4595,0x0fff,0xfe02, + 0xa024,0x164c,0x8000,0x17cc,0x3f00,0x0024,0x3500,0x0024, + 0x0021,0x6d82,0xd024,0x44c0,0x0006,0xa402,0x2800,0x3955, + 0xd024,0x0024,0x0000,0x0000,0x2800,0x3955,0x000b,0x6d57, + 0x3009,0x3c00,0x36f0,0x8024,0x36f2,0x1800,0x2000,0x0000, + 0x0000,0x0024,0x3e14,0x7810,0x3e13,0xb80d,0x3e13,0xf80a, + 0x3e10,0xb803,0x3e11,0x3805,0x3e11,0xb807,0x3e14,0xf801, + 0x3e15,0x3815,0x0001,0x000a,0x0006,0xc4d7,0xbf8e,0x9c42, + 0x3e01,0x9c03,0x0006,0xa017,0x0023,0xffd1,0x0007,0x8250, + 0x0fff,0xfd85,0x3001,0x0024,0xa45a,0x4494,0x0000,0x0093, + 0x2800,0x4091,0xf25a,0x104c,0x34f3,0x0024,0x2800,0x4091, + 0x0000,0x0024,0x3413,0x084c,0x0000,0x0095,0x3281,0xf806, + 0x4091,0x4d64,0x2400,0x42c0,0x4efa,0x9c10,0xf1eb,0x6061, + 0xfe55,0x2f66,0x5653,0x4d64,0x48b2,0xa201,0x4efa,0xa201, + 0x36f3,0x3c10,0x36f5,0x1815,0x36f4,0xd801,0x36f1,0x9807, + 0x36f1,0x1805,0x36f0,0x9803,0x36f3,0xd80a,0x36f3,0x980d, + 0x2000,0x0000,0x36f4,0x5810,0x36f3,0x0024,0x3009,0x3848, + 0x3e14,0x3811,0x3e00,0x0024,0x0000,0x4000,0x0001,0x0010, + 0x2915,0x94c0,0x0001,0xcc11,0x36f0,0x0024,0x2927,0x9e40, + 0x3604,0x1811,0x3613,0x0024,0x3e14,0x3811,0x3e00,0x0024, + 0x0000,0x4000,0x0001,0x0010,0x2915,0x94c0,0x0001,0xcc11, + 0x36f0,0x0024,0x36f4,0x1811,0x3009,0x1808,0x2000,0x0000, + 0x0000,0x190d,0x3613,0x0024,0x3e22,0xb815,0x3e05,0xb814, + 0x3615,0x0024,0x0000,0x800a,0x3e13,0x7801,0x3e10,0xb803, + 0x3e11,0x3805,0x3e11,0xb807,0x3e14,0x3811,0x3e14,0xb813, + 0x3e03,0xf80e,0xb488,0x44d5,0x3543,0x134c,0x34e5,0xc024, + 0x3524,0x8024,0x35a4,0xc024,0x3710,0x8a0c,0x3540,0x4a0c, + 0x3d44,0x8024,0x3a10,0x8024,0x3590,0x0024,0x4010,0x15c1, + 0x6010,0x3400,0x3710,0x8024,0x2800,0x5704,0x3af0,0x8024, + 0x3df0,0x0024,0x3591,0x4024,0x3530,0x4024,0x4192,0x4050, + 0x6100,0x1482,0x4020,0x1753,0xbf8e,0x1582,0x4294,0x4011, + 0xbd86,0x408e,0x2400,0x550e,0xfe6d,0x2819,0x520e,0x0a00, + 0x5207,0x2819,0x4fbe,0x0024,0xad56,0x904c,0xaf5e,0x1010, + 0xf7d4,0x0024,0xf7fc,0x2042,0x6498,0x2046,0x3cf4,0x0024, + 0x3400,0x170c,0x4090,0x1492,0x35a4,0xc024,0x2800,0x4f95, + 0x3c00,0x0024,0x4480,0x914c,0x36f3,0xd80e,0x36f4,0x9813, + 0x36f4,0x1811,0x36f1,0x9807,0x36f1,0x1805,0x36f0,0x9803, + 0x36f3,0x5801,0x3405,0x9014,0x36e3,0x0024,0x2000,0x0000, + 0x36f2,0x9815,0x2814,0x9c91,0x0000,0x004d,0x2814,0x9940, + 0x003f,0x0013,0x3e12,0xb817,0x3e12,0x7808,0x3e11,0xb811, + 0x3e15,0x7810,0x3e18,0xb823,0x3e18,0x3821,0x3e10,0x3801, + 0x48b2,0x0024,0x3e10,0x3801,0x3e11,0x3802,0x3009,0x3814, + 0x0030,0x0717,0x3f05,0xc024,0x0030,0x0351,0x3100,0x0024, + 0x4080,0x0024,0x0030,0x10d1,0x2800,0x6745,0x0001,0x800a, + 0x0006,0x6514,0x3111,0x8024,0x6894,0x13c1,0x6618,0x0024, + 0xfe44,0x1000,0x4cb2,0x0406,0x3c10,0x0024,0x3c50,0x4024, + 0x34f0,0x4024,0x661c,0x1040,0xfe64,0x0024,0x4cb2,0x0024, + 0x3cf0,0x4024,0xbc82,0x3080,0x0030,0x0351,0x3100,0x8024, + 0xfea8,0x0024,0x5ca2,0x0024,0x0000,0x0182,0xac22,0x0024, + 0xf7c8,0x0024,0x48b2,0x0024,0xac22,0x0024,0x2800,0x6ac0, + 0xf7cc,0x1002,0x0030,0x0394,0x3400,0x4024,0x3100,0x184c, + 0x0006,0xc051,0x291e,0x8080,0x0006,0x6410,0x4088,0x1001, + 0x0030,0x1111,0x3100,0x184c,0x0006,0xc051,0x291e,0x8080, + 0x0006,0x6550,0x0006,0x6694,0x408c,0x1002,0xf224,0x0024, + 0x0006,0xa017,0x2800,0x6ed5,0x0000,0x0024,0x2808,0x3f41, + 0x0006,0x6410,0x3050,0x0024,0x3000,0x4024,0x6014,0x0024, + 0x0000,0x0024,0x2800,0x6e19,0x0000,0x0024,0xf400,0x4040, + 0x38b0,0x0024,0x2808,0x3f40,0x3800,0x0024,0x2800,0x70c1, + 0xf224,0x0024,0x0000,0x0024,0x2808,0x3f45,0x4684,0x4106, + 0xf12c,0x0024,0xf148,0x0024,0x846c,0x0024,0x2808,0x3f40, + 0xf400,0x4184,0x3e12,0xb817,0x3e12,0x3815,0x3e05,0xb814, + 0x3625,0x0024,0x0000,0x800a,0x3e10,0x3801,0x3e10,0xb803, + 0x3e11,0x3805,0x3e11,0xb807,0x3e14,0x3811,0x0006,0xa090, + 0x2912,0x0d00,0x3e14,0xc024,0x4088,0x8000,0x4080,0x0024, + 0x0007,0x90d1,0x2800,0x7705,0x0000,0x0024,0x0007,0x9051, + 0x3100,0x4024,0x4100,0x0024,0x3900,0x0024,0x0007,0x90d1, + 0x0004,0x0000,0x31f0,0x4024,0x6014,0x0400,0x0000,0x0024, + 0x2800,0x7b51,0x4080,0x0024,0x0000,0x0000,0x2800,0x7ac5, + 0x0000,0x0024,0x0007,0x9053,0x3300,0x0024,0x4080,0x0024, + 0x0000,0x0000,0x2800,0x7b58,0x0000,0x0024,0x0007,0x9051, + 0x3900,0x0024,0x3200,0x504c,0x6410,0x0024,0x3cf0,0x0000, + 0x4080,0x0024,0x0006,0xc691,0x2800,0x9405,0x3009,0x0400, + 0x0007,0x9051,0x0000,0x1001,0x3100,0x0024,0x6012,0x0024, + 0x0006,0xc6d0,0x2800,0x8849,0x003f,0xe000,0x0006,0xc693, + 0x3900,0x0c00,0x3009,0x0001,0x6014,0x0024,0x0007,0x1ad0, + 0x2800,0x8855,0x3009,0x0000,0x4080,0x0024,0x0000,0x0301, + 0x2800,0x8245,0x4090,0x0024,0x0000,0x0024,0x2800,0x8355, + 0x0000,0x0024,0x3009,0x0000,0xc012,0x0024,0x2800,0x8840, + 0x3009,0x2001,0x3009,0x0000,0x6012,0x0024,0x0000,0x0341, + 0x2800,0x8555,0x0000,0x0024,0x6190,0x0024,0x2800,0x8840, + 0x3009,0x2000,0x6012,0x0024,0x0000,0x0381,0x2800,0x8715, + 0x0000,0x0024,0x6190,0x0024,0x2800,0x8840,0x3009,0x2000, + 0x6012,0x0024,0x0000,0x00c0,0x2800,0x8855,0x0000,0x0024, + 0x3009,0x2000,0x0006,0xa090,0x3009,0x0000,0x4080,0x0024, + 0x0000,0x0081,0x2800,0x8d15,0x0007,0x8c13,0x3300,0x104c, + 0xb010,0x0024,0x0002,0x8001,0x2800,0x8f85,0x34f0,0x0024, + 0x2800,0x8d00,0x0000,0x0024,0x0006,0xc351,0x3009,0x0000, + 0x6090,0x0024,0x3009,0x2000,0x2900,0x0b80,0x3009,0x0405, + 0x0006,0xc690,0x0006,0xc6d1,0x3009,0x0000,0x3009,0x0401, + 0x6014,0x0024,0x0006,0xa093,0x2800,0x8b91,0xb880,0x0024, + 0x2800,0x9cc0,0x3009,0x2c00,0x4040,0x0024,0x6012,0x0024, + 0x0006,0xc6d0,0x2800,0x9cd8,0x0000,0x0024,0x0006,0xc693, + 0x3009,0x0c00,0x3009,0x0001,0x6014,0x0024,0x0006,0xc350, + 0x2800,0x9cc1,0x0000,0x0024,0x6090,0x0024,0x3009,0x2c00, + 0x3009,0x0005,0x2900,0x0b80,0x0000,0x9cc8,0x3009,0x0400, + 0x4080,0x0024,0x0003,0x8000,0x2800,0x9cc5,0x0000,0x0024, + 0x6400,0x0024,0x0000,0x0081,0x2800,0x9cc9,0x0000,0x0024, + 0x0007,0x8c13,0x3300,0x0024,0xb010,0x0024,0x0006,0xc650, + 0x2800,0x9cd5,0x0000,0x0024,0x0001,0x0002,0x3413,0x0000, + 0x3009,0x0401,0x4010,0x8406,0x0000,0x0281,0xa010,0x13c1, + 0x4122,0x0024,0x0000,0x03c2,0x6122,0x8002,0x462c,0x0024, + 0x469c,0x0024,0xfee2,0x0024,0x48be,0x0024,0x6066,0x8400, + 0x0006,0xc350,0x2800,0x9cc1,0x0000,0x0024,0x4090,0x0024, + 0x3009,0x2400,0x2900,0x0b80,0x3009,0x0005,0x0007,0x1b50, + 0x2912,0x0d00,0x3613,0x0024,0x3a00,0x0380,0x4080,0x0024, + 0x0000,0x00c1,0x2800,0xa585,0x3009,0x0000,0xb010,0x008c, + 0x4192,0x0024,0x6012,0x0024,0x0006,0xf051,0x2800,0xa398, + 0x3009,0x0400,0x0007,0x1fd1,0x30e3,0x0400,0x4080,0x0024, + 0x0000,0x0301,0x2800,0xa585,0x3009,0x0000,0xb010,0x0024, + 0x0000,0x0101,0x6012,0x0024,0x0006,0xf051,0x2800,0xa595, + 0x0000,0x0024,0x3023,0x0400,0xf200,0x184c,0xb880,0xa400, + 0x3009,0x2000,0x3009,0x0441,0x3e10,0x4402,0x2909,0xa9c0, + 0x3e10,0x8024,0x36e3,0x0024,0x36f4,0xc024,0x36f4,0x1811, + 0x36f1,0x9807,0x36f1,0x1805,0x36f0,0x9803,0x36f0,0x1801, + 0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815,0x2000,0x0000, + 0x36f2,0x9817,0x3613,0x0024,0x3e12,0xb817,0x3e12,0x3815, + 0x3e05,0xb814,0x3615,0x0024,0x0000,0x800a,0x3e10,0xb803, + 0x0012,0x5103,0x3e11,0x3805,0x3e11,0xb807,0x3e14,0x380d, + 0x0030,0x0250,0x3e13,0xf80e,0xbe8b,0x83e0,0x290c,0x4840, + 0x3613,0x0024,0x290c,0x4840,0x4086,0x984c,0x0000,0x00ce, + 0x2400,0xaf8e,0x3009,0x1bc0,0x0000,0x01c3,0xae3a,0x184c, + 0x0000,0x0043,0x3009,0x3842,0x290c,0x4840,0x3009,0x3840, + 0x4084,0x9bc0,0xfe26,0x9bc2,0xceba,0x0024,0x4e8e,0x0024, + 0x4e9a,0x0024,0x4f8e,0x0024,0x0000,0x0102,0x2800,0xb4c5, + 0x0030,0x0010,0x0000,0x0206,0x3613,0x0024,0x290c,0x4840, + 0x3009,0x3840,0x3000,0xdbc0,0xb366,0x0024,0x0000,0x0024, + 0x2800,0xb4d5,0x4e8e,0x0024,0x4e9a,0x0024,0x4f8e,0x0024, + 0x0030,0x0010,0x2800,0xb195,0x0000,0x0206,0x36f3,0xd80e, + 0x36f4,0x180d,0x36f1,0x9807,0x36f1,0x1805,0x36f0,0x9803, + 0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815,0x2000,0x0000, + 0x36f2,0x9817,0x3e10,0xb812,0x3e11,0xb810,0x3e12,0x0024, + 0x0006,0x9f92,0x0025,0xffd0,0x3e04,0x4bd1,0x3181,0xf847, + 0xb68c,0x4440,0x3009,0x0802,0x6024,0x3806,0x0006,0x8a10, + 0x2903,0xa905,0x0000,0xb948,0x0000,0x0800,0x6101,0x1602, + 0xaf2e,0x0024,0x4214,0x1be3,0xaf0e,0x1811,0x0fff,0xfc00, + 0xb200,0x9bc7,0x0000,0x03c0,0x2800,0xbd85,0xb204,0xa002, + 0x2903,0x6b00,0x3613,0x2002,0x4680,0x1bc8,0x36f1,0x9810, + 0x2000,0x0000,0x36f0,0x9812,0x2a08,0x1b8e,0x2803,0x8c80, + 0x0000,0xbe97,0x0006,0xd397,0x2000,0x0000,0x3f00,0x0024, + 0x0007,0x0001, /*copy 1*/ + 0x8300, + 0x0006,0x191e, /*copy 6430*/ + 0x0030,0x0055,0xb080,0x1402,0x0fdf,0xffc1,0x0007,0x9257, + 0xb212,0x3c00,0x3d00,0x4024,0x0006,0x0097,0x3f10,0x0024, + 0x3f00,0x0024,0x0030,0x0297,0x3f00,0x0024,0x0007,0x9017, + 0x3f00,0x0024,0x0007,0x81d7,0x3f10,0x0024,0xc090,0x3c00, + 0x0006,0x0297,0xb080,0x3c00,0x0000,0x0401,0x000a,0x1055, + 0x0006,0x0017,0x3f10,0x3401,0x000a,0x2795,0x3f00,0x3401, + 0x0001,0x6a97,0xf400,0x55c0,0x0000,0x0817,0xb080,0x57c0, + 0x0014,0x958f,0x0000,0x5b4e,0x0030,0x0017,0x3700,0x0024, + 0x0004,0x0001,0xb012,0x0024,0x0000,0x004d,0x280f,0xe115, + 0x0006,0x2016,0x0006,0x01d7,0x3f00,0x0024,0x0000,0x190d, + 0x000f,0xf94f,0x0000,0xcd0e,0x280f,0xe100,0x0006,0x2016, + 0x0000,0x0080,0x0005,0x4f92,0x2909,0xf840,0x3613,0x2800, + 0x0006,0x0197,0x0006,0xa115,0xb080,0x0024,0x3f00,0x3400, + 0x0007,0x8a57,0x3700,0x0024,0x4080,0x0024,0x0000,0x0040, + 0x2800,0xced5,0x0006,0xa2d7,0x3009,0x3c00,0x0006,0xa157, + 0x3009,0x1c00,0x0006,0x01d7,0x0000,0x190d,0x000a,0x708f, + 0x0000,0xd7ce,0x290b,0x1a80,0x3f00,0x184c,0x0030,0x0017, + 0x4080,0x1c01,0x0000,0x0200,0x2800,0xcb15,0xb102,0x0024, + 0x0000,0xcd08,0x2800,0xcb15,0x0000,0xd3ce,0x0011,0x210f, + 0x0000,0x190d,0x280f,0xcb00,0x3613,0x0024,0x0006,0xa115, + 0x0006,0x01d7,0x37f0,0x1401,0x6100,0x1c01,0x4012,0x0024, + 0x0000,0x8000,0x6010,0x0024,0x34f3,0x0400,0x2800,0xd698, + 0x0000,0x0024,0x0000,0x8001,0x6010,0x3c01,0x0000,0x000d, + 0x2811,0x8259,0x0000,0x0024,0x2a11,0x2100,0x0030,0x0257, + 0x3700,0x0024,0x4080,0x0024,0x0000,0x0024,0x2800,0xd9d5, + 0x0006,0x0197,0x0006,0xa115,0x3f00,0x3400,0x003f,0xc000, + 0xb600,0x41c1,0x0012,0x5103,0x000c,0xc002,0xdcd6,0x0024, + 0x0019,0xd4c2,0x2800,0xa845,0x0001,0x1188,0x0013,0xd9c3, + 0x6fd6,0x0024,0x0000,0x190d,0x2800,0xdf95,0x0014,0x1b01, + 0x0020,0x480f,0x0000,0xde4e,0x0000,0x190d,0x2820,0x41c0, + 0x0001,0x1188,0x0039,0x324f,0x0001,0x3e8e,0x2820,0x4a18, + 0xb882,0x0024,0x2a20,0x48c0,0x003f,0xfd00,0xb700,0x0024, + 0x003f,0xf901,0x6010,0x0024,0x0000,0x0024,0x280a,0xc505, + 0x0000,0x190d,0x0014,0x1b01,0x0015,0x59c0,0x6fc2,0x0024, + 0x0019,0x9301,0x2800,0xe9d5,0x0018,0x50c0,0x290c,0x4840, + 0x3613,0x0024,0x290c,0x4840,0x4086,0x184c,0x0000,0x18c2, + 0x6234,0x0024,0x0000,0x1d02,0x2800,0xe5d5,0x6234,0x0024, + 0x0030,0x0317,0x2800,0xeb40,0x3f00,0x0024,0x0000,0x1d82, + 0x2800,0xe855,0x6234,0x0024,0x2912,0x0d00,0x4084,0x184c, + 0xf200,0x0024,0x6200,0x0024,0x0006,0x0017,0x2800,0xe540, + 0xb080,0x3c40,0x0000,0x0202,0x2800,0xeb55,0xa024,0x0024, + 0xc020,0x0024,0x2800,0xe540,0x0030,0x02d7,0x6fc2,0x0024, + 0x0000,0x0024,0x2800,0xeb55,0x0000,0x0024,0x2803,0x2240, + 0x000a,0xcac8,0x000a,0x8c8f,0x0000,0xec8e,0x000c,0x0981, + 0x280a,0x71c0,0x002c,0x9d40,0x000a,0x708f,0x0000,0xd7ce, + 0x280a,0xc0d5,0x0012,0x5182,0x6fd6,0x0024,0x003f,0xfd81, + 0x280a,0x8e45,0xb710,0x0024,0xb710,0x0024,0x003f,0xfc01, + 0x6012,0x0024,0x0000,0x0101,0x2801,0x0855,0xffd2,0x0024, + 0x48b2,0x0024,0x4190,0x0024,0x0000,0x190d,0x2801,0x0855, + 0x0030,0x0250,0xb880,0x104c,0x3cf0,0x0024,0x0010,0x5500, + 0xb880,0x23c0,0xb882,0x2000,0x0007,0x8590,0x2914,0xbec0, + 0x0000,0x0440,0x0007,0x8b50,0xb880,0x0024,0x2920,0x0100, + 0x3800,0x0024,0x2920,0x0000,0x0006,0x8a91,0x0000,0x0800, + 0xb880,0xa440,0x003f,0xfd81,0xb710,0xa7c0,0x003f,0xfc01, + 0x6012,0x0024,0x0000,0x0101,0x2801,0x1195,0x0000,0x0024, + 0xffe2,0x0024,0x48b2,0x0024,0x4190,0x0024,0x0000,0x0024, + 0x2801,0x1195,0x0000,0x0024,0x2912,0x2d80,0x0000,0x0780, + 0x4080,0x0024,0x0006,0x8a90,0x2801,0x1195,0x0000,0x01c2, + 0xb886,0x8040,0x3613,0x03c1,0xbcd2,0x0024,0x0030,0x0011, + 0x2800,0xfe15,0x003f,0xff42,0xb886,0x8040,0x3009,0x03c1, + 0x0000,0x0020,0xac22,0x0024,0x0000,0x0102,0x6cd2,0x0024, + 0x3e10,0x0024,0x2909,0x8c80,0x3e00,0x4024,0x36f3,0x0024, + 0x3e11,0x8024,0x3e01,0xc024,0x2901,0x3540,0x0000,0x0201, + 0xf400,0x4512,0x2900,0x0c80,0x3213,0x1b8c,0x3100,0x0024, + 0xb010,0x0024,0x0000,0x0024,0x2801,0x1195,0x0000,0x0024, + 0x291a,0x8a40,0x0000,0x0100,0x2920,0x0200,0x3633,0x0024, + 0x2920,0x0280,0x0000,0x0401,0x408e,0x0024,0x2920,0x0280, + 0x0000,0x0401,0x003f,0xfd81,0xb710,0x4006,0x003f,0xfc01, + 0x6012,0x0024,0x0000,0x0101,0x2801,0x1195,0x0000,0x0024, + 0xffe2,0x0024,0x48b2,0x0024,0x4190,0x0024,0x0000,0x0024, + 0x2801,0x1195,0x0000,0x0024,0x2912,0x2d80,0x0000,0x0780, + 0x4080,0x0024,0x0000,0x01c2,0x2800,0xfa05,0x0006,0x8a90, + 0x2a01,0x1180,0x2920,0x0100,0x0000,0x0401,0x0000,0x0180, + 0x2920,0x0200,0x3613,0x0024,0x2920,0x0280,0x3613,0x0024, + 0x0000,0x0401,0x2920,0x0280,0x4084,0x984c,0x0019,0x9d01, + 0x6212,0x0024,0x001e,0x5c01,0x2801,0x0cd5,0x6012,0x0024, + 0x0000,0x0024,0x2801,0x0ec5,0x0000,0x0024,0x001b,0x5bc1, + 0x6212,0x0024,0x001b,0xdd81,0x2801,0x1295,0x6012,0x0024, + 0x0000,0x0024,0x2801,0x1295,0x0000,0x0024,0x0000,0x004d, + 0x000a,0xbf4f,0x280a,0xb880,0x0001,0x0fce,0x0020,0xfb4f, + 0x0000,0x190d,0x0001,0x16ce,0x2920,0xf440,0x3009,0x2bc1, + 0x291a,0x8a40,0x36e3,0x0024,0x0000,0x190d,0x000a,0x708f, + 0x280a,0xcac0,0x0000,0xd7ce,0x0030,0x0017,0x3700,0x4024, + 0x0000,0x0200,0xb102,0x0024,0x0000,0x00c0,0x2801,0x15c5, + 0x0005,0x4f92,0x2909,0xf840,0x3613,0x2800,0x0006,0x0197, + 0x0006,0xa115,0xb080,0x0024,0x3f00,0x3400,0x0000,0x190d, + 0x000a,0x708f,0x280a,0xc0c0,0x0000,0xd7ce,0x0000,0x004d, + 0x0020,0xfe0f,0x2820,0xfb40,0x0001,0x17ce,0x2801,0x1995, + 0x3009,0x1000,0x6012,0x93cc,0x0000,0x0024,0x2801,0x3445, + 0x0000,0x0024,0x3413,0x0024,0x34b0,0x0024,0x4080,0x0024, + 0x0000,0x0200,0x2801,0x1c95,0xb882,0x0024,0x3453,0x0024, + 0x3009,0x13c0,0x4080,0x0024,0x0000,0x0200,0x2801,0x3445, + 0x0000,0x0024,0xb882,0x130c,0x0000,0x004d,0x0021,0x058f, + 0x2821,0x0340,0x0001,0x1d8e,0x2801,0x2dd5,0x6012,0x0024, + 0x0000,0x0024,0x2801,0x2dd5,0x0000,0x0024,0x34c3,0x184c, + 0x3e13,0xb80f,0xf400,0x4500,0x0026,0x9dcf,0x0001,0x218e, + 0x0000,0xfa0d,0x2926,0x8e80,0x3e10,0x110c,0x36f3,0x0024, + 0x2801,0x2dc0,0x36f3,0x980f,0x001c,0xdd00,0x001c,0xd901, + 0x6ec2,0x0024,0x001c,0xdd00,0x2801,0x2495,0x0018,0xdbc1, + 0x3413,0x184c,0xf400,0x4500,0x2926,0xc640,0x3e00,0x13cc, + 0x2801,0x2b80,0x36f3,0x0024,0x6ec2,0x0024,0x003f,0xc000, + 0x2801,0x2715,0x002a,0x4001,0x3413,0x184c,0xf400,0x4500, + 0x2926,0xafc0,0x3e00,0x13cc,0x2801,0x2b80,0x36f3,0x0024, + 0xb400,0x0024,0xd100,0x0024,0x0000,0x0024,0x2801,0x2b85, + 0x0000,0x0024,0x3613,0x0024,0x3e11,0x4024,0x2926,0x8540, + 0x3e01,0x0024,0x4080,0x1b8c,0x0000,0x0024,0x2801,0x2b85, + 0x0000,0x0024,0x3413,0x184c,0xf400,0x4500,0x2926,0x8e80, + 0x3e10,0x13cc,0x36f3,0x0024,0x3110,0x8024,0x31f0,0xc024, + 0x0000,0x4000,0x0000,0x0021,0x6d06,0x0024,0x3110,0x8024, + 0x2826,0xa8c4,0x31f0,0xc024,0x2a26,0xad00,0x34c3,0x184c, + 0x3410,0x8024,0x3430,0xc024,0x0000,0x4000,0x0000,0x0021, + 0x6d06,0x0024,0x0000,0x0024,0x2801,0x3454,0x4d06,0x0024, + 0x0000,0x0200,0x2922,0x1885,0x0001,0x32c8,0x0000,0x0200, + 0x3e10,0x8024,0x2921,0xca80,0x3e00,0xc024,0x291a,0x8a40, + 0x0000,0x0024,0x2922,0x1880,0x36f3,0x0024,0x0000,0x004d, + 0x0021,0x0ecf,0x2821,0x0bc0,0x0001,0x33ce,0x2801,0x16c0, + 0x3c30,0x4024,0x0000,0x190d,0x0000,0x458e,0x2821,0x0f80, + 0x0027,0x9e0f,0x0020,0xcd4f,0x2820,0xc780,0x0001,0x360e, + 0x0006,0xf017,0x0000,0x0015,0xb070,0xbc15,0x0000,0x458e, + 0x0027,0x9e0f,0x2820,0xcd80,0x0000,0x190d,0x3613,0x0024, + 0x3e10,0xb803,0x3e14,0x3811,0x3e11,0x3805,0x3e00,0x3801, + 0x0007,0xc390,0x0006,0xa011,0x3010,0x0444,0x3050,0x4405, + 0x6458,0x0302,0xff94,0x4081,0x0003,0xffc5,0x48b6,0x0024, + 0xff82,0x0024,0x42b2,0x0042,0xb458,0x0003,0x4cd6,0x9801, + 0xf248,0x1bc0,0xb58a,0x0024,0x6de6,0x1804,0x0006,0x0010, + 0x3810,0x9bc5,0x3800,0xc024,0x36f4,0x1811,0x36f0,0x9803, + 0x283e,0x2d80,0x0fff,0xffc3,0x2801,0x4c40,0x0000,0x0024, + 0x3413,0x0024,0x2801,0x4045,0xf400,0x4517,0x2801,0x4440, + 0x6894,0x13cc,0x37b0,0x184c,0x6090,0x1d51,0x0000,0x0910, + 0x3f00,0x060c,0x3100,0x4024,0x6016,0xb812,0x000c,0x8012, + 0x2801,0x42d1,0xb884,0x0024,0x6894,0x3002,0x0000,0x028d, + 0x003a,0x5e0f,0x0001,0x544e,0x2939,0xb0c0,0x3e10,0x93cc, + 0x4084,0x9bd2,0x4282,0x0024,0x0000,0x0040,0x2801,0x4645, + 0x4292,0x130c,0x3443,0x0024,0x2801,0x4785,0x000c,0x8390, + 0x2a01,0x4b00,0x3444,0x0024,0x3073,0x0024,0xc090,0x014c, + 0x2801,0x4b00,0x3800,0x0024,0x000c,0x4113,0xb880,0x2380, + 0x3304,0x4024,0x3800,0x05cc,0xcc92,0x05cc,0x3910,0x0024, + 0x3910,0x4024,0x000c,0x8110,0x3910,0x0024,0x39f0,0x4024, + 0x3810,0x0024,0x38d0,0x4024,0x3810,0x0024,0x38f0,0x4024, + 0x34c3,0x0024,0x3444,0x0024,0x3073,0x0024,0x3063,0x0024, + 0x3000,0x0024,0x4080,0x0024,0x0000,0x0024,0x2839,0x53d5, + 0x4284,0x0024,0x3613,0x0024,0x2801,0x4e45,0x6898,0xb804, + 0x0000,0x0084,0x293b,0x1cc0,0x3613,0x0024,0x000c,0x8117, + 0x3711,0x0024,0x37d1,0x4024,0x4e8a,0x0024,0x0000,0x0015, + 0x2801,0x5105,0xce9a,0x0024,0x3f11,0x0024,0x3f01,0x4024, + 0x000c,0x8197,0x408a,0x9bc4,0x3f15,0x4024,0x2801,0x5345, + 0x4284,0x3c15,0x6590,0x0024,0x0000,0x0024,0x2839,0x53d5, + 0x4284,0x0024,0x0000,0x0024,0x2801,0x3f18,0x458a,0x0024, + 0x2a39,0x53c0,0x003e,0x2d4f,0x283a,0x5ed5,0x0001,0x37ce, + 0x000c,0x4653,0x0000,0x0246,0xffac,0x0c01,0x48be,0x0024, + 0x4162,0x4546,0x6642,0x4055,0x3501,0x8024,0x0000,0x0087, + 0x667c,0x4057,0x000c,0x41d5,0x283a,0x62d5,0x3501,0x8024, + 0x667c,0x1c47,0x3701,0x8024,0x283a,0x62d5,0xc67c,0x0024, + 0x0000,0x0024,0x283a,0x62c5,0x0000,0x0024,0x2a3a,0x5ec0, + 0x3009,0x3851,0x3e14,0xf812,0x3e12,0xb817,0x3e11,0x8024, + 0x0006,0x0293,0x3301,0x8024,0x468c,0x3804,0x0006,0xa057, + 0x2801,0x6044,0x0006,0x0011,0x469c,0x0024,0x3be1,0x8024, + 0x2801,0x6055,0x0006,0xc392,0x3311,0x0024,0x33f1,0x2844, + 0x3009,0x2bc4,0x0030,0x04d2,0x3311,0x0024,0x3a11,0x0024, + 0x3201,0x8024,0x003f,0xfc04,0xb64c,0x0fc4,0xc648,0x0024, + 0x3a01,0x0024,0x3111,0x1fd3,0x6498,0x07c6,0x868c,0x2444, + 0x0023,0xffd2,0x3901,0x8e06,0x0030,0x0551,0x3911,0x8e06, + 0x3961,0x9c44,0xf400,0x44c6,0xd46c,0x1bc4,0x36f1,0xbc13, + 0x2801,0x69d5,0x36f2,0x9817,0x002b,0xffd2,0x3383,0x188c, + 0x3e01,0x8c06,0x0006,0xa097,0x3009,0x1c12,0x3213,0x0024, + 0x468c,0xbc12,0x002b,0xffd2,0xf400,0x4197,0x2801,0x66c4, + 0x3713,0x0024,0x2801,0x6705,0x37e3,0x0024,0x3009,0x2c17, + 0x3383,0x0024,0x3009,0x0c06,0x468c,0x4197,0x0006,0xa052, + 0x2801,0x6904,0x3713,0x2813,0x2801,0x6945,0x37e3,0x0024, + 0x3009,0x2c17,0x36f1,0x8024,0x36f2,0x9817,0x36f4,0xd812, + 0x2100,0x0000,0x3904,0x5bd1,0x2a01,0x5a0e,0x3e11,0x7804, + 0x0030,0x0257,0x3701,0x0024,0x0013,0x4d05,0xd45b,0xe0e1, + 0x0007,0xc795,0x2801,0x7155,0x0fff,0xff45,0x3511,0x184c, + 0x4488,0xb808,0x0006,0x8a97,0x2801,0x7105,0x3009,0x1c40, + 0x3511,0x1fc1,0x0000,0x0020,0xac52,0x1405,0x6ce2,0x0024, + 0x0000,0x0024,0x2801,0x7101,0x68c2,0x0024,0x291a,0x8a40, + 0x3e10,0x0024,0x2921,0xca80,0x3e00,0x4024,0x36f3,0x0024, + 0x3009,0x1bc8,0x36f0,0x1801,0x3601,0x5804,0x3e13,0x780f, + 0x3e13,0xb808,0x0008,0x9b0f,0x0001,0x740e,0x2908,0x9300, + 0x0000,0x004d,0x36f3,0x9808,0x2000,0x0000,0x36f3,0x580f, + 0x0007,0x81d7,0x3711,0x8024,0x3711,0xc024,0x3700,0x0024, + 0x0000,0x2001,0xb012,0x0024,0x0034,0x0000,0x2801,0x7985, + 0x0000,0x01c1,0x3700,0x0024,0x0002,0x0001,0xb012,0x0024, + 0x002e,0xe001,0x2801,0x7885,0x6512,0x0024,0x0034,0x0000, + 0x2801,0x7995,0x0000,0x01c1,0x0030,0x0117,0x3f00,0x0024, + 0x0014,0xc000,0x0000,0x01c1,0x4fce,0x0024,0xffea,0x0024, + 0x48b6,0x0024,0x4384,0x4097,0xb886,0x45c6,0xfede,0x0024, + 0x4db6,0x0024,0x466c,0x0024,0x0006,0xc610,0x8dd6,0x8007, + 0x0000,0x00c6,0xff6e,0x0024,0x48b2,0x0024,0x0034,0x2406, + 0xffee,0x0024,0x2914,0xaa80,0x40b2,0x0024,0xf1c6,0x0024, + 0xf1d6,0x0024,0x0000,0x0201,0x8d86,0x0024,0x61de,0x0024, + 0x0006,0xc612,0x2801,0x8001,0x0006,0xc713,0x4c86,0x0024, + 0x2912,0x1180,0x0006,0xc351,0x0006,0x0210,0x2912,0x0d00, + 0x3810,0x984c,0xf200,0x2043,0x2808,0xa000,0x3800,0x0024, + 0x3613,0x0024,0x3e12,0xb817,0x3e12,0x3815,0x3e05,0xb814, + 0x3635,0x0024,0x0000,0x800a,0x3e10,0x7802,0x3e14,0x0024, + 0x2900,0xb740,0x0000,0x0201,0x0000,0x0601,0x3413,0x184c, + 0x2903,0x7680,0x3cf0,0x0024,0x3413,0x184c,0x3400,0x3040, + 0x3009,0x33c1,0x0000,0x1fc1,0xb010,0x0024,0x6014,0x9040, + 0x0006,0x8010,0x2801,0x88d5,0x0000,0x0024,0x34e3,0x1bcc, + 0x6890,0x0024,0x2801,0x8a80,0xb880,0x2000,0x3e10,0x1381, + 0x2903,0xb8c0,0x3e00,0x4024,0x003f,0xfe41,0x36e3,0x104c, + 0x34f0,0x0024,0xa010,0x0024,0x36f4,0x0024,0x36f0,0x5802, + 0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815,0x2000,0x0000, + 0x36f2,0x9817,0x3613,0x0024,0x3e12,0xb817,0x3e12,0x3815, + 0x3e05,0xb814,0x3615,0x0024,0x0000,0x800a,0x3e10,0xb804, + 0x3e01,0x534c,0xbe8a,0x10c0,0x4080,0x0024,0x0000,0x0024, + 0x2801,0x93c5,0x0000,0x0024,0x2903,0x7680,0x4082,0x184c, + 0x4c8a,0x134c,0x0000,0x0001,0x6890,0x10c2,0x4294,0x0024, + 0xac22,0x0024,0xbec2,0x0024,0x0000,0x0024,0x2801,0x93c5, + 0x0000,0x0024,0x6890,0x134c,0xb882,0x10c2,0xac22,0x0024, + 0x4c92,0x0024,0xdc92,0x0024,0xceca,0x0024,0x4e82,0x1bc5, + 0x36f0,0x9804,0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815, + 0x2000,0x0000,0x36f2,0x9817,0x3613,0x0024,0x3e12,0xb817, + 0x3e12,0x3815,0x3e05,0xb814,0x3645,0x0024,0x0000,0x800a, + 0x3e10,0x3801,0x3e10,0xb803,0x3e11,0x3805,0x3e11,0xb807, + 0x3e14,0x104c,0x2900,0xb740,0x0000,0x0081,0x4080,0x3040, + 0x0000,0x0101,0x2801,0x9ac5,0x0000,0x0024,0x4090,0x0024, + 0x0006,0x8050,0x2801,0xaed5,0x0000,0x0024,0x2900,0xb740, + 0x3613,0x0024,0xb880,0x3000,0x2801,0xac80,0x3009,0x3380, + 0x2900,0xb740,0x4122,0x10cc,0x3cf0,0x0024,0x3001,0x0024, + 0x3400,0x0024,0x6800,0x0024,0xa408,0x9040,0x4080,0x0024, + 0x0000,0x07c1,0x2801,0xa055,0x6894,0x1380,0x6894,0x130c, + 0x3460,0x0024,0x6408,0x4481,0x4102,0x1380,0xf400,0x4052, + 0x0000,0x07c1,0x34f0,0xc024,0x6234,0x0024,0x6824,0x0024, + 0xa122,0x0024,0x6014,0x0024,0x0000,0x0141,0x2801,0xa755, + 0x0000,0x0024,0x2900,0xb740,0x3613,0x0024,0x2801,0xa5c0, + 0xb88a,0x4002,0x2901,0x8c40,0x3e00,0x8024,0x4c8e,0xa801, + 0x0000,0x0201,0x3a10,0x1bcc,0x3000,0x0024,0xb010,0x0024, + 0x0000,0x0024,0x2801,0xab55,0x659a,0x0024,0x6540,0x184c, + 0x0030,0x0010,0x2801,0xa348,0x0000,0x0024,0x2801,0xab40, + 0x36f3,0x0024,0x2801,0xaa00,0xb88a,0x0024,0x2903,0x3ec0, + 0x34d0,0x4024,0x4c8f,0xa0a1,0x0000,0x0201,0x3000,0x084c, + 0xb010,0x0024,0x0000,0x0024,0x2801,0xab55,0x659a,0x0024, + 0x6540,0x10cc,0x0030,0x0010,0x2801,0xa7c8,0x0000,0x0024, + 0x34d3,0x0024,0x3423,0x0024,0xf400,0x4510,0x3009,0x1380, + 0x6090,0x0024,0x3009,0x2000,0x6892,0x108c,0x34f0,0x9000, + 0xa122,0x984c,0x6016,0x13c1,0x0000,0x0102,0x2801,0x9c08, + 0x0006,0x8150,0x2801,0xaf40,0x3009,0x1bcc,0x6890,0x938c, + 0x3800,0x0024,0x36f4,0x0024,0x36f1,0x9807,0x36f1,0x1805, + 0x36f0,0x9803,0x36f0,0x1801,0x3405,0x9014,0x36f3,0x0024, + 0x36f2,0x1815,0x2000,0x0000,0x36f2,0x9817,0x3613,0x0024, + 0x3e12,0xb817,0x3e12,0x3815,0x3e05,0xb814,0x3615,0x0024, + 0x0000,0x800a,0x3e10,0x3801,0x3e10,0xb804,0x3e11,0xb807, + 0x3e14,0x3811,0x3e04,0x934c,0x3430,0x0024,0x4080,0x0024, + 0x0000,0x0206,0x2801,0xb845,0x0006,0x8151,0x3101,0x130c, + 0xff0c,0x1102,0x6408,0x0024,0x4204,0x0024,0xb882,0x4092, + 0x1005,0xfe02,0x48be,0x0024,0x4264,0x0024,0x2903,0xc540, + 0xf400,0x4090,0x36f4,0x8024,0x36f4,0x1811,0x36f1,0x9807, + 0x36f0,0x9804,0x36f0,0x1801,0x3405,0x9014,0x36f3,0x0024, + 0x36f2,0x1815,0x2000,0x0000,0x36f2,0x9817,0x3613,0x0024, + 0x3e12,0xb817,0x3e12,0x3815,0x3e05,0xb814,0x3675,0x0024, + 0x3643,0x0024,0x0000,0x800a,0x3e10,0x3801,0x0000,0x0181, + 0x3e10,0xb803,0x3e11,0x3806,0x3e11,0xf810,0x3e14,0x7812, + 0x3e13,0xf80e,0x2903,0x47c0,0x3e03,0x4024,0x2900,0xb740, + 0x4088,0x184c,0x3413,0x184c,0x2900,0xb740,0x6892,0x3040, + 0x4080,0x3040,0x0000,0x0000,0x2801,0xc5c5,0x0000,0x0024, + 0x6890,0x0024,0x2903,0x47c0,0x3cd0,0x0024,0x4080,0x0024, + 0x0000,0x0024,0x2801,0xc615,0x0000,0x0024,0x3433,0x0024, + 0xf400,0x4510,0x34d0,0x0024,0x6090,0x0024,0x2903,0x47c0, + 0x3800,0x0024,0x4080,0x10cc,0xf400,0x4510,0x2801,0xc385, + 0x34d0,0x0024,0x2801,0xc600,0x0000,0x0024,0x3cd0,0x0024, + 0x3433,0x0024,0x34a0,0x0024,0xf400,0x4510,0x3430,0x4024, + 0x6100,0x0024,0x0000,0x0341,0x3840,0x0024,0x3000,0x0024, + 0x6012,0x0024,0x0006,0x0581,0x2801,0xe381,0x4012,0x0024, + 0xf400,0x4057,0x3702,0x0024,0x2000,0x0000,0x0000,0x0024, + 0x34d3,0x184c,0x3430,0x8024,0x2901,0x8c40,0x3e00,0x8024, + 0x36f3,0x11cc,0xb888,0x104c,0x3c10,0x0024,0x3c90,0x4024, + 0x2801,0xcf40,0x34e3,0x0024,0x3411,0x8024,0x3491,0xc024, + 0x4f82,0x128c,0x3400,0x4024,0x4142,0x0024,0xf400,0x4050, + 0x3800,0x0024,0x3440,0x4024,0x4142,0x0024,0x6498,0x4050, + 0x3009,0x2007,0x0006,0x8150,0x3000,0x11cc,0x6402,0x104c, + 0x0000,0x0024,0x2801,0xcc88,0x0000,0x0024,0x3493,0x0024, + 0x2801,0xff40,0x34f3,0x0024,0x2801,0xd6c0,0xb888,0x0024, + 0x3430,0x8024,0x2901,0x8c40,0x3e00,0x8024,0x4c8e,0x130c, + 0x3400,0x5bcc,0x4142,0x0024,0xf400,0x4050,0x3800,0x0024, + 0x3440,0x4024,0x4142,0x0024,0xf400,0x4050,0x0000,0x0201, + 0x3009,0x2007,0x0030,0x0010,0x3000,0x0024,0xb010,0x0024, + 0x0000,0x0024,0x2801,0xff55,0x6498,0x0024,0x0006,0x8150, + 0x3000,0x134c,0x6402,0x984c,0x0000,0x0024,0x2801,0xd208, + 0x0000,0x0024,0x2801,0xff40,0x3433,0x1bcc,0x0000,0x0201, + 0xb888,0x104c,0x3430,0x184c,0x6010,0x0024,0x6402,0x3000, + 0x0000,0x0201,0x2801,0xdf58,0x0030,0x0010,0x4090,0x124c, + 0x2401,0xde40,0x0000,0x0024,0x3430,0x8024,0x2901,0x8c40, + 0x3e00,0x8024,0x4c8e,0x130c,0x3400,0x4024,0x4142,0x0024, + 0xf400,0x4050,0x3800,0x0024,0x3410,0x4024,0x4142,0x0024, + 0x6498,0x4050,0x3009,0x2007,0x0030,0x0010,0x0000,0x0201, + 0x3473,0x0024,0x3490,0x0024,0x3e00,0x13cc,0x2901,0x9580, + 0x3444,0x8024,0x3000,0x1bcc,0xb010,0x0024,0x0000,0x0024, + 0x2801,0xff55,0x0000,0x0024,0x34c3,0x184c,0x3470,0x0024, + 0x3e10,0x104c,0x34c0,0x4024,0x2901,0xb1c0,0x3e00,0x4024, + 0x2801,0xff40,0x36e3,0x0024,0x0000,0x0801,0x3413,0x0024, + 0x34f0,0x0024,0x6012,0x0024,0x0000,0x07c1,0x2801,0xfe88, + 0x0000,0x0024,0x6010,0x114c,0xb888,0x32c0,0x6402,0x0024, + 0x0000,0x0101,0x2801,0xeb18,0x0000,0x0024,0x4090,0x134c, + 0x2401,0xea40,0x3009,0x184c,0x3430,0x8024,0x2901,0x8c40, + 0x3e00,0x8024,0x4c8e,0x130c,0x3400,0x4024,0x4142,0x0024, + 0xf400,0x4050,0x3800,0x0024,0x3410,0x4024,0x4142,0x0024, + 0x6498,0x4050,0x3009,0x2007,0x0000,0x0101,0x3433,0x1bcc, + 0x2900,0xb740,0x3613,0x0024,0x0000,0x0141,0x6090,0x118c, + 0x2900,0xb740,0x3ca0,0x184c,0x3473,0x184c,0xb888,0x3380, + 0x3400,0x0024,0x6402,0x0024,0x0000,0x0201,0x2801,0xf1d8, + 0x0000,0x0024,0x4090,0x104c,0x2401,0xf100,0x0000,0x0024, + 0x34a0,0x8024,0x2901,0x8c40,0x3e00,0x8024,0x0006,0x8002, + 0x4244,0x118c,0x4244,0x0024,0x6498,0x4095,0x3009,0x3440, + 0x3009,0x37c1,0x0000,0x0201,0x34f3,0x0024,0x0030,0x0010, + 0x3490,0x0024,0x3e00,0x138c,0x2901,0x9580,0x3444,0x8024, + 0x3000,0x1bcc,0xb010,0x0024,0x0000,0x0024,0x2801,0xff55, + 0x4112,0x0024,0x3463,0x0024,0x34a0,0x0024,0x6012,0x0024, + 0x0006,0x8111,0x2801,0xfb19,0x0000,0x0024,0x3100,0x11cc, + 0x3490,0x4024,0x4010,0x0024,0x0000,0x0a01,0x6012,0x0024, + 0x0006,0x8151,0x2801,0xfb18,0x0000,0x0024,0x3613,0x114c, + 0x3101,0x3804,0x3490,0x8024,0x6428,0x138c,0x3470,0x8024, + 0x3423,0x0024,0x3420,0xc024,0x4234,0x1241,0x4380,0x4092, + 0x2903,0xc540,0x0006,0x8010,0x2801,0xff40,0x3009,0x1bcc, + 0x0006,0x8151,0x3613,0x114c,0x3101,0x3804,0x3490,0x8024, + 0x6428,0x138c,0x3470,0x8024,0x3423,0x0024,0x3420,0xc024, + 0x4234,0x1241,0x4380,0x4092,0x2903,0xcf00,0x0006,0x8010, + 0x2801,0xff40,0x3009,0x1bcc,0x0006,0x8050,0x6890,0x0024, + 0x3800,0x0024,0x3433,0x0024,0x34d0,0x0024,0x4080,0x0024, + 0x0006,0x8150,0x2802,0x04c5,0x0000,0x0024,0x3000,0x11cc, + 0xb888,0x10cc,0x6402,0x3240,0x3493,0x0024,0x3444,0x8024, + 0x2802,0x04d8,0x4090,0x0024,0x2402,0x0480,0x0000,0x0024, + 0x6499,0x2620,0xb78e,0x4001,0x0000,0x0000,0x3433,0x0024, + 0xcfce,0x1340,0xaf0e,0x0024,0x3a11,0xa807,0x36f3,0x4024, + 0x36f3,0xd80e,0x36f4,0x5812,0x36f1,0xd810,0x36f1,0x1806, + 0x36f0,0x9803,0x36f0,0x1801,0x3405,0x9014,0x36f3,0x0024, + 0x36f2,0x1815,0x2000,0x0000,0x36f2,0x9817,0x3613,0x0024, + 0x3e12,0xb817,0x3e12,0x3815,0x3e05,0xb814,0x3615,0x0024, + 0x0000,0x800a,0x3e10,0x7802,0x3e10,0xf804,0x0000,0x3fc3, + 0x3e11,0x7806,0x3e11,0xf810,0xbc82,0x12cc,0x3404,0x0024, + 0x3023,0x0024,0x3810,0x0024,0x38f0,0x4024,0x3454,0x0024, + 0x3810,0x0024,0x38f0,0x4024,0x2900,0xb740,0x0000,0x0201, + 0x0006,0x9301,0x4088,0x134c,0x3400,0x8024,0xd204,0x0024, + 0xb234,0x0024,0x4122,0x0024,0xf400,0x4055,0x3500,0x0024, + 0x3c30,0x0024,0x0000,0x2000,0xb400,0x0024,0x0000,0x3001, + 0x2802,0x1255,0x0000,0x3800,0x0000,0x0041,0xfe42,0x12cc, + 0x48b2,0x1090,0x3810,0x0024,0x38f0,0x4024,0x2802,0x3340, + 0x3430,0x0024,0xb400,0x0024,0x6012,0x0024,0x0000,0x3801, + 0x2802,0x1595,0x0000,0x3c00,0x0000,0x07c0,0x0000,0x0041, + 0xb400,0x12cc,0xfe02,0x1150,0x48b2,0x0024,0x689a,0x2040, + 0x2802,0x3200,0x38f0,0x4024,0xb400,0x0024,0x6012,0x0024, + 0x0000,0x3c01,0x2802,0x1915,0x0000,0x3e00,0x0000,0x03c0, + 0x0000,0x0085,0x4592,0x12cc,0xb400,0x1150,0xfe02,0x0024, + 0x48b2,0x0024,0x3810,0x0024,0x2802,0x3200,0x38f0,0x4024, + 0xb400,0x0024,0x6012,0x0024,0x0000,0x3e01,0x2802,0x1c95, + 0x0000,0x3f00,0x0000,0x01c0,0xf20a,0x12cc,0xb400,0x1150, + 0xf252,0x0024,0xfe02,0x0024,0x48b2,0x0024,0x3810,0x0024, + 0x2802,0x3200,0x38f0,0x4024,0xb400,0x130c,0x6012,0x0024, + 0x0000,0x3f01,0x2802,0x2015,0x4390,0x0024,0x0000,0x0041, + 0x0000,0x0105,0x4590,0x13cc,0xb400,0x1150,0xfe02,0x0024, + 0x48b2,0x0024,0x3810,0x0024,0x2802,0x3200,0x38f0,0x4024, + 0xb400,0x0024,0x6012,0x1100,0x0000,0x01c1,0x2802,0x2395, + 0x0000,0x0024,0x0000,0x0041,0x0000,0x0145,0x6890,0x12cc, + 0xb400,0x1150,0xfe02,0x0024,0x48b2,0x0024,0x3810,0x0024, + 0x2802,0x3200,0x38f0,0x4024,0x6012,0x0024,0x0000,0x3f81, + 0x2802,0x2615,0xb430,0x0024,0x6012,0x0024,0x0000,0x0024, + 0x2802,0x2615,0x0000,0x0024,0x2802,0x3200,0x0000,0x0185, + 0x2802,0x3340,0xc890,0x0024,0x0000,0x3fc3,0x0000,0x0201, + 0x34d3,0x0024,0x2900,0xb740,0x3433,0x184c,0x0006,0x9301, + 0x4088,0x134c,0x3400,0x8024,0xd204,0x0024,0xb234,0x0024, + 0x4122,0x0024,0xf400,0x4055,0x0000,0x2001,0x3500,0x0024, + 0x3c30,0x0024,0x0000,0x3000,0xb400,0x0024,0x6012,0x0024, + 0x0000,0x0182,0x2802,0x2c45,0x0000,0x0024,0x2802,0x3340, + 0xc890,0x0024,0x459a,0x12cc,0x3404,0x0024,0x3023,0x0024, + 0x3010,0x0024,0x30d0,0x4024,0xac22,0x0046,0x003f,0xf982, + 0x3011,0xc024,0x0000,0x0023,0xaf2e,0x0024,0x0000,0x0182, + 0xccf2,0x0024,0x0000,0x0fc6,0x0000,0x0047,0xb46c,0x2040, + 0xfe6e,0x23c1,0x3454,0x0024,0x3010,0x0024,0x30f0,0x4024, + 0xac22,0x0024,0xccb2,0x0024,0x3810,0x0024,0x38f0,0x4024, + 0x458a,0x134c,0x0000,0x0201,0x2802,0x2755,0x0000,0x3fc3, + 0x3430,0x0024,0x36f1,0xd810,0x36f1,0x5806,0x36f0,0xd804, + 0x36f0,0x5802,0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815, + 0x2000,0x0000,0x36f2,0x9817,0x3613,0x0024,0x3e12,0xb817, + 0x3e12,0x3815,0x3e05,0xb814,0x3675,0x0024,0x3633,0x0024, + 0x0000,0x800a,0x3e10,0x3801,0x3e10,0xb803,0x3e11,0x3805, + 0x3e11,0xb807,0x3e14,0x3811,0x3e14,0xb813,0x3e13,0xf80e, + 0x3e03,0x4024,0x2903,0xac40,0x0000,0x0381,0x000f,0xff81, + 0x6012,0x184c,0x0000,0x0201,0x2802,0x3bc5,0x0000,0x0024, + 0x2900,0xb740,0x0003,0x1f08,0x3613,0x0024,0x0000,0x0401, + 0x0006,0x8a10,0x2900,0xbf40,0xb880,0x1bcc,0xb880,0x11cc, + 0x3413,0x184c,0x3c90,0x0024,0x2900,0xb740,0x34f3,0x0024, + 0x3473,0x184c,0x3c00,0x0000,0x4080,0x0024,0x0006,0x9301, + 0x2802,0x4145,0x003f,0xfe04,0x3490,0x8024,0xa244,0x0024, + 0x2903,0x8f40,0xb880,0x0024,0x2900,0xbf40,0x003f,0xfe04, + 0x3473,0x184c,0x0006,0x8091,0x3413,0x0024,0x34f0,0x8024, + 0x3400,0xc024,0xa346,0x0024,0xd234,0x0024,0x0000,0x3fc3, + 0xb234,0x0024,0x4122,0x1042,0xf400,0x4055,0x0006,0x9301, + 0x3500,0x0024,0xd024,0x3000,0xb234,0x0024,0x4122,0x0024, + 0x6892,0x4055,0x3500,0x0024,0x3cf0,0x0024,0x34a0,0x0024, + 0xf100,0x0024,0xb010,0x0024,0x3c60,0x0024,0x34b0,0x0024, + 0xb010,0x0024,0x0000,0x0201,0x2900,0xb740,0x3ce0,0x0024, + 0x0006,0x9301,0x3473,0x184c,0x3c10,0x0024,0x34f0,0x8024, + 0x3410,0xc024,0xd234,0x0024,0x0000,0x3fc3,0xb234,0x0024, + 0x4122,0x0024,0xf400,0x4055,0x003f,0xff01,0x3500,0x0024, + 0x3cf0,0x0024,0x34c0,0x0024,0xa010,0x0024,0x0000,0x03c1, + 0x3c40,0x0024,0x34d0,0x0024,0xb010,0x0024,0x0000,0x0201, + 0x2900,0xb740,0x3cc0,0x0024,0x0006,0x9301,0x3473,0x0024, + 0x3c10,0x0024,0x34f0,0x8024,0x3410,0xc024,0xd234,0x0024, + 0x0000,0x3fc3,0xb234,0x0024,0x4122,0x0024,0xf400,0x4055, + 0x003f,0xff01,0x3500,0x0024,0x3cf0,0x0024,0x3400,0x0024, + 0xa010,0x0024,0x0000,0x01c1,0x3900,0x0024,0x34e0,0x0024, + 0xf100,0x0024,0xb010,0x0024,0x6892,0x3080,0x34f0,0x0024, + 0xb010,0x0024,0x3cb0,0x0024,0x3450,0x0024,0x34a0,0x4024, + 0xc010,0x0024,0x0000,0x0181,0x2802,0x55c5,0x3100,0x0024, + 0x6890,0x07cc,0x2803,0x1f00,0x3900,0x0024,0x6012,0x0024, + 0x0000,0x0201,0x2802,0x5758,0x0000,0x0024,0x2802,0x5a40, + 0x6090,0x044c,0x6012,0x0024,0x0000,0x0281,0x2802,0x5988, + 0x6012,0x0024,0x0000,0x0080,0x2802,0x5999,0x0000,0x0024, + 0x2802,0x5a40,0x3113,0x0024,0x6890,0x07cc,0x2803,0x1f00, + 0x3900,0x0024,0x0000,0x0201,0x3900,0x114c,0x34b0,0x0024, + 0x6012,0x0024,0x0006,0x08c1,0x2802,0x6481,0x4012,0x0024, + 0xf400,0x4057,0x3702,0x0024,0x2000,0x0000,0x0000,0x0024, + 0x2802,0x6480,0x0000,0x0024,0x0000,0x0200,0x0006,0x8110, + 0x2802,0x6480,0x3800,0x0024,0x0000,0x0300,0x0006,0x8110, + 0x2802,0x6480,0x3800,0x0024,0x0006,0x8050,0x6890,0x0024, + 0x2803,0x1f00,0x3800,0x0024,0x0000,0x0400,0x0006,0x8110, + 0x2802,0x6480,0x3800,0x0024,0x0000,0x0500,0x0006,0x8110, + 0x2802,0x6480,0x3800,0x0024,0x0000,0x0600,0x0006,0x8110, + 0x2802,0x6480,0x3800,0x0024,0x0006,0x8050,0x6890,0x0024, + 0x2803,0x1f00,0x3800,0x0024,0x3423,0x184c,0x3460,0x0024, + 0x4080,0x0024,0x0006,0x8200,0x2802,0x69c5,0x3e10,0x0024, + 0x0000,0x01c0,0x3e10,0x0024,0x3490,0x0024,0x2902,0x07c0, + 0x3e00,0x13cc,0x36d3,0x11cc,0x3413,0x0024,0x4080,0x3240, + 0x34f3,0x0024,0x2802,0x6d98,0x0000,0x0024,0x0006,0x8010, + 0x6890,0x0024,0x2803,0x1f00,0x3800,0x0024,0x0000,0x0180, + 0x3e10,0x0024,0x3490,0x0024,0x2902,0x07c0,0x3e00,0x13cc, + 0x36d3,0x11cc,0x3413,0x0024,0x4080,0x3240,0x34f3,0x0024, + 0x2802,0x6d98,0x0000,0x0024,0x0006,0x8010,0x6890,0x0024, + 0x2803,0x1f00,0x3800,0x0024,0x0000,0x0201,0x3433,0x0024, + 0x34d0,0x0024,0x6012,0x0024,0x0006,0x0ac1,0x2802,0x7f81, + 0x4012,0x0024,0xf400,0x4057,0x3702,0x0024,0x2000,0x0000, + 0x0000,0x0024,0x0006,0x8050,0x6890,0x0024,0x2803,0x1f00, + 0x3800,0x0024,0x0000,0x3000,0x2802,0x8140,0x0006,0x8150, + 0x0000,0x9000,0x0006,0x8150,0x3433,0x0024,0x34d0,0x4024, + 0x4192,0x0024,0x4192,0x0024,0x2802,0x8140,0xa010,0x0024, + 0x0000,0x0201,0x0006,0x8150,0x2900,0xb740,0x3613,0x0024, + 0x0006,0x9301,0x3473,0x0024,0x3c10,0x0024,0x34f0,0x8024, + 0x3410,0xc024,0xd234,0x0024,0x0000,0x3fc3,0xb234,0x0024, + 0x4122,0x0024,0xf400,0x4055,0x3500,0x0024,0x3cf0,0x0024, + 0x3490,0x0024,0x2802,0x8140,0x6090,0x0024,0x003f,0xfe04, + 0x0000,0x0401,0x0006,0x8150,0x2900,0xb740,0x3613,0x0024, + 0x0006,0x9301,0x3473,0x0024,0x3c10,0x0024,0x34f0,0x8024, + 0x3400,0xc024,0xa346,0x0024,0xd234,0x0024,0x0000,0x3fc3, + 0xb234,0x0024,0x4122,0x1042,0xf400,0x4055,0x0006,0x9301, + 0x3500,0x0024,0xd024,0x3000,0xb234,0x0024,0x4122,0x0024, + 0xf400,0x4055,0x3500,0x0024,0x3cf0,0x0024,0x3490,0x0024, + 0x2802,0x8140,0x6090,0x0024,0x0000,0x4000,0x0000,0x0202, + 0x0006,0x8150,0x3433,0x0024,0x34d0,0x4024,0x6122,0x0024, + 0xa010,0x0024,0x0004,0x8001,0x3800,0x110c,0x0006,0x8150, + 0x3000,0x0024,0x6012,0x1300,0x0000,0x0401,0x2802,0x8409, + 0x0000,0x0024,0x6890,0x82cc,0x2803,0x1f00,0x3800,0x0024, + 0x6012,0x0024,0x0006,0x0cc1,0x2802,0xab81,0x4012,0x0024, + 0xf400,0x4057,0x3702,0x0024,0x2000,0x0000,0x0000,0x0024, + 0x2802,0xab80,0x0000,0x0024,0x0016,0x2200,0x0006,0x8190, + 0x6892,0x2040,0x2802,0xab80,0x38f0,0x4024,0x002c,0x4400, + 0x0000,0x0081,0x0006,0x8190,0x3810,0x0024,0x2802,0xab80, + 0x38f0,0x4024,0x003b,0x8000,0x0000,0x0081,0x0006,0x8190, + 0x3810,0x0024,0x2802,0xab80,0x38f0,0x4024,0x0007,0xd000, + 0x0006,0x8190,0xb882,0x2040,0x2802,0xab80,0x38f0,0x4024, + 0x000f,0xa000,0x0006,0x8190,0xb882,0x2040,0x2802,0xab80, + 0x38f0,0x4024,0x0015,0x8880,0x0006,0x8190,0xb882,0x2040, + 0x2802,0xab80,0x38f0,0x4024,0x0017,0x7000,0x0006,0x8190, + 0xb882,0x2040,0x2802,0xab80,0x38f0,0x4024,0x001f,0x4000, + 0x0006,0x8190,0xb882,0x2040,0x2802,0xab80,0x38f0,0x4024, + 0x002b,0x1100,0x0006,0x8190,0xb882,0x2040,0x2802,0xab80, + 0x38f0,0x4024,0x002e,0xe000,0x0006,0x8190,0xb882,0x2040, + 0x2802,0xab80,0x38f0,0x4024,0x001d,0xc000,0x0006,0x8190, + 0x6892,0x2040,0x2802,0xab80,0x38f0,0x4024,0x0006,0x8190, + 0x0000,0x0201,0x0000,0xfa04,0x2900,0xb740,0x3613,0x0024, + 0x0006,0x9301,0xb88a,0x11cc,0x3c10,0x0024,0x34f0,0x8024, + 0x3410,0xc024,0xd234,0x0024,0x0000,0x3fc3,0xb234,0x0024, + 0x4122,0x0024,0xf400,0x4055,0x3500,0x0024,0x3cf0,0x0024, + 0x3490,0x0024,0xfe50,0x4005,0x48b2,0x0024,0xfeca,0x0024, + 0x40b2,0x0024,0x3810,0x0024,0x2802,0xab80,0x38f0,0x4024, + 0x003f,0xfe04,0x0000,0x0401,0x0006,0x8190,0x2900,0xb740, + 0x3613,0x0024,0x0006,0x9301,0x3473,0x0024,0x3c10,0x0024, + 0x34f0,0x8024,0x3400,0xc024,0xa346,0x0024,0xd234,0x0024, + 0x0000,0x3fc3,0xb234,0x0024,0x4122,0x1042,0xf400,0x4055, + 0x0006,0x9301,0x3500,0x0024,0xd024,0x3000,0xb234,0x0024, + 0x4122,0x0024,0xf400,0x4055,0x0000,0x0041,0x3500,0x0024, + 0x3cf0,0x0024,0x3490,0x0024,0xfe02,0x0024,0x48b2,0x0024, + 0x3810,0x0024,0x2802,0xab80,0x38f0,0x4024,0x003f,0xfe04, + 0x0000,0x0401,0x0006,0x8190,0x2900,0xb740,0x3613,0x0024, + 0x0006,0x9301,0x3473,0x0024,0x3c10,0x0024,0x34f0,0x8024, + 0x3400,0xc024,0xa346,0x0024,0xd234,0x0024,0x0000,0x3fc3, + 0xb234,0x0024,0x4122,0x1042,0xf400,0x4055,0x0006,0x9301, + 0x3500,0x0024,0xd024,0x3000,0xb234,0x0024,0x4122,0x0024, + 0xf400,0x4055,0x3500,0x0024,0x3cf0,0x0024,0x0000,0x0280, + 0x3490,0x4024,0xfe02,0x0024,0x48b2,0x0024,0x3810,0x0024, + 0x2802,0xab80,0x38f0,0x4024,0x0006,0x8010,0x6890,0x0024, + 0x2803,0x1f00,0x3800,0x0024,0x0000,0x0201,0x2900,0xb740, + 0x3613,0x11cc,0x3c10,0x0024,0x3490,0x4024,0x6014,0x13cc, + 0x0000,0x0081,0x2802,0xaec5,0x0006,0x80d0,0x0006,0x8010, + 0x6890,0x0024,0x2803,0x1f00,0x3800,0x0024,0x3010,0x0024, + 0x6012,0x0024,0x0000,0x0241,0x2802,0xce49,0x0006,0x8112, + 0x0008,0x0001,0x3009,0x184c,0x3e10,0x4024,0x3000,0x8024, + 0x2901,0xbac0,0x3e00,0x8024,0x36f3,0x004c,0x3000,0x3844, + 0x0008,0x0010,0xb884,0x3840,0x0000,0x0400,0x3e00,0x8024, + 0x3201,0x0024,0x2903,0x5680,0x6408,0x4091,0x0001,0x0000, + 0x000b,0x8011,0x0004,0x0010,0x36e3,0x0024,0x2915,0x8300, + 0x3009,0x1bc4,0x000b,0x8000,0x3613,0x0024,0x3e10,0x0024, + 0x3200,0xc024,0x2901,0xbac0,0x3e00,0xc024,0x36f3,0x084c, + 0x32f0,0xf844,0x3e10,0xc024,0x3e00,0x8024,0x2b01,0x0091, + 0x0000,0x0400,0xf204,0x0804,0x2903,0x5680,0x6408,0x0024, + 0x000b,0x8011,0x0008,0x0010,0x0000,0x0084,0x36d3,0x0024, + 0x2915,0x8300,0x0003,0x8000,0x0005,0x0010,0x0001,0x0000, + 0x2915,0x8300,0x000f,0x0011,0x1006,0x0ac0,0x32f3,0x11cc, + 0x3200,0xd08c,0xff34,0x0024,0x48b6,0x0024,0x4020,0x0024, + 0x3c90,0x0024,0x2802,0xca80,0x34e3,0x0024,0x0006,0x8112, + 0x3613,0x0024,0x3e10,0x0024,0x3000,0x4024,0x2901,0xbac0, + 0x3e00,0x4024,0x36f3,0x004c,0x3000,0x7844,0xb884,0x3841, + 0x2b01,0x0091,0x0000,0x0400,0x3e00,0x8024,0x3201,0x0024, + 0x2903,0x5680,0x6408,0x0024,0x0003,0x8000,0x000b,0x8011, + 0x0008,0x0010,0x36e3,0x11cc,0x3423,0x0024,0x3494,0xc024, + 0x2903,0x7ac0,0x3301,0x138c,0x0001,0x0000,0x000f,0x0011, + 0x0004,0x0010,0x2903,0x8000,0x3301,0x0024,0xf400,0x4510, + 0x000b,0x8011,0x3073,0x0024,0x3023,0x0024,0x3000,0x0024, + 0x6090,0x0024,0x3800,0x0024,0x0003,0x8000,0x3004,0xc024, + 0x0008,0x0010,0x2903,0x8000,0x3301,0x0024,0x0001,0x0000, + 0x000f,0x0011,0x0005,0x0010,0x2903,0x8000,0x3301,0x0024, + 0xf400,0x4510,0x3073,0x1bc4,0x6498,0x008c,0x3000,0x0024, + 0x6090,0x0024,0x3800,0x0024,0x0006,0x80d0,0x3000,0x0024, + 0x6402,0x0024,0x0006,0x8110,0x2802,0xbdc8,0x000b,0x8000, + 0x000b,0x8010,0x0001,0x0000,0x2903,0xe0c0,0x0004,0x0011, + 0x0005,0x0011,0x000b,0x8010,0x0001,0x0000,0x291f,0xc6c0, + 0x0002,0xdf88,0x30e1,0x184c,0x3000,0x0024,0x6012,0x0024, + 0x0008,0x0001,0x2802,0xd015,0x0000,0x0024,0x6498,0x0024, + 0x3e10,0x4024,0x0000,0x0081,0x2901,0xbac0,0x3e01,0x0024, + 0x36e3,0x004c,0x3000,0x0024,0x6012,0x0024,0x000b,0x8011, + 0x2802,0xdc55,0x0006,0x8112,0x0000,0x0201,0x0004,0x0010, + 0x2915,0x8300,0x0001,0x0000,0x000b,0x8011,0x0005,0x0010, + 0x291f,0xc6c0,0x0001,0x0000,0x0006,0x8110,0x30e1,0x0024, + 0x3000,0x0024,0x6012,0x0024,0x0000,0x0281,0x2802,0xd745, + 0x6012,0x0024,0x000b,0x8001,0x2802,0xd7d5,0x3613,0x0024, + 0x36f3,0x0024,0x000b,0x8001,0x6498,0x184c,0x0006,0x8112, + 0x0003,0x8000,0x3e10,0x4024,0x2901,0xbac0,0x3e01,0x0024, + 0x36f3,0x0024,0x3009,0x3844,0x3e10,0x0024,0x0000,0x0400, + 0x3000,0x8024,0x0008,0x0010,0x3e00,0x8024,0x3201,0x0024, + 0x2903,0x5680,0x6408,0x4051,0x36e3,0x0024,0x2802,0xdf80, + 0x3009,0x1bc4,0x0000,0x0400,0x0000,0x0011,0x3613,0x008c, + 0x30d0,0x7844,0x3e10,0x4024,0x3000,0x8024,0x0008,0x0010, + 0x3e00,0x8024,0x3201,0x0024,0x2903,0x5680,0x6408,0x0024, + 0x36e3,0x0024,0x3009,0x1bc4,0x0006,0x8a10,0x0000,0x01c1, + 0x3009,0x0000,0xb010,0x0024,0x0000,0x0024,0x2802,0xe385, + 0x6192,0x0024,0x2900,0xb740,0x6102,0x184c,0x4088,0x0024, + 0x0000,0x0024,0x2802,0xe385,0x0000,0x0024,0x0006,0x8051, + 0x6890,0x0024,0x3900,0x0024,0x3009,0x0000,0x4080,0x0024, + 0x0000,0x0024,0x2903,0x8e85,0x0002,0xe848,0x0006,0x9f92, + 0x0000,0x4003,0x3009,0x0811,0x3100,0x8024,0xffa6,0x0024, + 0x48b6,0x0024,0x2903,0x8e80,0x4384,0x0024,0x2903,0x8f40, + 0x3613,0x0024,0x2900,0xbf40,0x0000,0x0024,0x2903,0x8e80, + 0x0000,0x0024,0x0000,0x0401,0x3473,0x184c,0x2900,0xb740, + 0x3c10,0x0024,0x3c90,0x0024,0x290b,0x1400,0x34f3,0x0024, + 0x4080,0x0024,0x0000,0x0024,0x2803,0x1b95,0x0000,0x0024, + 0x3473,0x0024,0x3410,0x0024,0x34a0,0x4024,0x6014,0x1380, + 0x0000,0x0024,0x2802,0xf045,0x4080,0x0024,0x0006,0x8011, + 0x6890,0x0024,0xb882,0x2400,0x0004,0x8000,0x2914,0xbec0, + 0x0008,0x0010,0x0000,0x0400,0x3143,0x108c,0x6890,0x27c0, + 0x3920,0x0024,0x0004,0x8000,0x3900,0x0024,0x34e0,0x0024, + 0x4080,0x0024,0x0006,0x8150,0x2802,0xf445,0x0000,0x3200, + 0x0000,0x0142,0x0006,0x8210,0x3613,0x0024,0x3e00,0x7800, + 0x3011,0x8024,0x30d1,0xc024,0xfef4,0x4087,0x48b6,0x0040, + 0xfeee,0x03c1,0x2914,0xa580,0x42b6,0x0024,0x2802,0xf840, + 0x0007,0x89d0,0x0000,0x0142,0x3613,0x0024,0x3e00,0x7800, + 0x3031,0x8024,0x3010,0x0024,0x30d0,0x4024,0xfe9c,0x4181, + 0x48be,0x0024,0xfe82,0x0040,0x46be,0x03c1,0xfef4,0x4087, + 0x48b6,0x0024,0xfeee,0x0024,0x2914,0xa580,0x42b6,0x0024, + 0x0007,0x89d0,0x0006,0x8191,0x4c8a,0x9800,0xfed0,0x4005, + 0x48b2,0x0024,0xfeca,0x0024,0x40b2,0x0024,0x3810,0x0024, + 0x38f0,0x4024,0x3111,0x8024,0x468a,0x0707,0x2908,0xbe80, + 0x3101,0x0024,0x3123,0x11cc,0x3100,0x108c,0x3009,0x3000, + 0x0004,0x8000,0x3009,0x1241,0x6014,0x138c,0x000b,0x8011, + 0x2802,0xfe81,0x0000,0x0024,0x3473,0x0024,0x3423,0x0024, + 0x3009,0x3240,0x34e3,0x0024,0x2803,0x19c0,0x0008,0x0012, + 0x0000,0x0081,0x2803,0x0009,0x0006,0x80d0,0xf400,0x4004, + 0x3000,0x0024,0x6012,0x0024,0x0000,0x0005,0x2803,0x0589, + 0x0000,0x0024,0x6540,0x0024,0x0000,0x0024,0x2803,0x15d8, + 0x4490,0x0024,0x2403,0x04c0,0x0000,0x0024,0x0006,0x8301, + 0x4554,0x0800,0x4122,0x0024,0x659a,0x4055,0x0006,0x8341, + 0x3d00,0x0840,0x4122,0x0024,0xf400,0x4055,0x3d00,0x0024, + 0x2803,0x15c0,0x0000,0x0024,0x4090,0x0024,0xf400,0x4480, + 0x2803,0x0ad5,0x000b,0x8001,0x6540,0x0024,0x0000,0x0024, + 0x2803,0x15d8,0x4490,0x0024,0x2403,0x0a00,0x0000,0x0024, + 0x0006,0x8301,0x4554,0x0800,0x4122,0x0024,0x659a,0x4055, + 0x0006,0x8341,0x4122,0x3400,0xf400,0x4055,0x3210,0x0024, + 0x3d00,0x0024,0x2803,0x15c0,0x0000,0x0024,0x6014,0x0024, + 0x0001,0x0000,0x2803,0x1215,0x0003,0x8001,0x0008,0x0012, + 0x0008,0x0010,0x0006,0x8153,0x3613,0x0024,0x3009,0x3811, + 0x2903,0xe0c0,0x0004,0x0011,0x0008,0x0010,0x0001,0x0000, + 0x291f,0xc6c0,0x0005,0x0011,0x000f,0x0011,0x0008,0x0010, + 0x33d0,0x184c,0x6010,0xb844,0x3e10,0x0024,0x0000,0x0400, + 0x3320,0x4024,0x3e00,0x4024,0x3301,0x0024,0x2903,0x5680, + 0x6408,0x0024,0x36e3,0x0024,0x3009,0x1bc4,0x3009,0x1bd1, + 0x6540,0x0024,0x0000,0x0024,0x2803,0x15d8,0x4490,0x0024, + 0x2403,0x1580,0x0000,0x0024,0x0006,0x8301,0x4554,0x0840, + 0x4122,0x0024,0x659a,0x4055,0x0006,0x8341,0x4122,0x3400, + 0xf400,0x4055,0x3110,0x0024,0x3d00,0x0024,0xf400,0x4510, + 0x0030,0x0013,0x3073,0x184c,0x3e11,0x008c,0x3009,0x0001, + 0x6140,0x0024,0x0000,0x0201,0x3009,0x2000,0x0006,0x8300, + 0x290c,0x7300,0x3e10,0x0024,0x3300,0x1b8c,0xb010,0x0024, + 0x0000,0x0024,0x2803,0x1b95,0x0000,0x0024,0x3473,0x0024, + 0x3423,0x0024,0x3009,0x1240,0x4080,0x138c,0x0000,0x0804, + 0x2802,0xff15,0x6402,0x0024,0x0006,0xd312,0x0006,0xd310, + 0x0006,0x8191,0x3010,0x984c,0x30f0,0xc024,0x0000,0x0021, + 0xf2d6,0x07c6,0x290a,0xf5c0,0x4682,0x0400,0x6894,0x0840, + 0xb886,0x0bc1,0xbcd6,0x0024,0x3a10,0x8024,0x3af0,0xc024, + 0x36f3,0x4024,0x36f3,0xd80e,0x36f4,0x9813,0x36f4,0x1811, + 0x36f1,0x9807,0x36f1,0x1805,0x36f0,0x9803,0x36f0,0x1801, + 0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815,0x2000,0x0000, + 0x36f2,0x9817,0x3613,0x0024,0x3e12,0xb817,0x3e12,0x3815, + 0x3e05,0xb814,0x3615,0x0024,0x0000,0x800a,0x3e10,0x3801, + 0x0020,0x0001,0x3e14,0x3811,0x0030,0x0050,0x0030,0x0251, + 0x3e04,0xb813,0x3000,0x0024,0xc012,0x0024,0x0019,0x9300, + 0x3800,0x4024,0x2903,0x8c40,0x3900,0x0024,0x2903,0xa040, + 0x0000,0x0300,0xb882,0x0024,0x2914,0xbec0,0x0006,0x8010, + 0x0000,0x1540,0x0007,0x8190,0x2901,0x8200,0x3800,0x0024, + 0x4080,0x0024,0x0000,0x0024,0x2803,0x2f55,0x0000,0x0024, + 0x0006,0x8012,0x3200,0x0024,0x4080,0x0024,0x0030,0x0010, + 0x2803,0x2f55,0x0000,0x0201,0x3000,0x0024,0xb010,0x0024, + 0x0000,0x0024,0x2803,0x2f55,0x0000,0x0024,0x2901,0x8200, + 0x0000,0x0024,0x4080,0x0024,0x0006,0x8010,0x2803,0x2f55, + 0x3000,0x0024,0x4080,0x0024,0x0000,0x0201,0x2803,0x2b85, + 0x0030,0x0010,0x0030,0x0050,0xf292,0x0000,0xb012,0x0024, + 0x3800,0x4024,0x0030,0x0010,0x0000,0x0201,0x3000,0x0024, + 0xb010,0x0024,0x0000,0x0024,0x2900,0xbed5,0x0003,0x3908, + 0x0006,0x8011,0x3100,0x0024,0x4080,0x0024,0x0000,0x0024, + 0x2803,0x3745,0x0000,0x0024,0x0007,0x8a52,0x3200,0x0024, + 0x4080,0x0024,0x0000,0x0024,0x2803,0x3749,0x0000,0x0024, + 0xf292,0x0800,0x6012,0x0024,0x0000,0x0000,0x2803,0x3705, + 0x0000,0x0024,0x3200,0x0024,0x4090,0x0024,0xb880,0x2800, + 0x3900,0x0024,0x3100,0x0024,0x4080,0x0024,0x0000,0x0024, + 0x2902,0x3585,0x0003,0x3048,0x2900,0xbec0,0x0000,0x0024, + 0x0000,0x0010,0x0006,0x9f51,0x0006,0x9f92,0x0030,0x0493, + 0x0000,0x0201,0x6890,0xa410,0x3b00,0x2810,0x0006,0x8a10, + 0x3009,0x0000,0x6012,0x0024,0x0006,0x9fd0,0x2803,0x3c88, + 0xb880,0x0024,0x6890,0x0024,0x3009,0x2000,0x36f4,0x9813, + 0x36f4,0x1811,0x36f0,0x1801,0x3405,0x9014,0x36f3,0x0024, + 0x36f2,0x1815,0x2000,0x0000,0x36f2,0x9817,0x3613,0x0024, + 0x3e10,0xb810,0x3e11,0x3805,0x3e02,0x0024,0x0030,0x0010, + 0xce9a,0x0002,0x0000,0x0200,0x2903,0x47c0,0xb024,0x0024, + 0xc020,0x0024,0x0000,0x0200,0x2803,0x4085,0x6e9a,0x0002, + 0x4182,0x0024,0x0000,0x0400,0x2803,0x4645,0xae1a,0x0024, + 0x6104,0x984c,0x0000,0x0024,0x2900,0xb749,0x0003,0x4608, + 0x6103,0xe4e5,0x2900,0xb740,0x408a,0x188c,0x2900,0xb740, + 0x408a,0x4141,0x4583,0x6465,0x2803,0x4640,0xceca,0x1bcc, + 0xc408,0x0024,0xf2e2,0x1bc8,0x36f1,0x1805,0x2000,0x0011, + 0x36f0,0x9810,0x2000,0x0000,0xdc92,0x0024,0x0006,0x8a17, + 0x3613,0x1c00,0x6093,0xe1e3,0x0000,0x03c3,0x0006,0x9f95, + 0xb132,0x9415,0x3500,0xfc01,0x2803,0x55d5,0xa306,0x0024, + 0x0006,0xd397,0x003f,0xc001,0x3500,0x184c,0xb011,0xe4e5, + 0xb182,0x1c04,0xd400,0x184c,0x0000,0x0205,0xac52,0x3802, + 0x0006,0xd3c2,0x4212,0x0024,0xf400,0x4057,0xb182,0x1c04, + 0xd400,0x0024,0xac52,0x1404,0xd142,0x0024,0x0000,0x3fc4, + 0xb142,0x0024,0x4122,0x1bc2,0xf400,0x4057,0x3700,0x4024, + 0xd101,0x6465,0x0006,0xd397,0x3f00,0x3814,0x0025,0xffd4, + 0x0006,0xd317,0x3710,0x160c,0x0006,0x9f94,0x37f0,0x73d5, + 0x6c92,0x3808,0x3f10,0x0024,0x3ff0,0x4024,0x3009,0x1040, + 0x3009,0x13c1,0x6010,0x0024,0x0000,0x0024,0x2903,0xa905, + 0x0003,0x51c8,0x2803,0x5414,0x0006,0x0001,0x4010,0x0024, + 0x0005,0xf601,0x6010,0x0024,0x0000,0x0040,0x2803,0x5594, + 0x0030,0x0497,0x3f00,0x0024,0x36f2,0x1814,0x4330,0x9803, + 0x2000,0x0000,0x8880,0x1bc1,0x3613,0x0024,0x3e22,0xb806, + 0x3e05,0xb814,0x3615,0x0024,0x0000,0x800a,0x3e10,0x3801, + 0x3e10,0xb803,0x3e11,0x7807,0x6848,0x930c,0x3411,0x780d, + 0x459a,0x10c0,0x0000,0x0201,0x6012,0x384e,0x0000,0x0241, + 0x2803,0x5d15,0x6012,0x380f,0x2403,0x5c45,0x0000,0x0024, + 0x3000,0x0001,0x3101,0x8407,0x6cfe,0x0024,0xac42,0x0024, + 0xaf4e,0x2040,0x3911,0x8024,0x2803,0x68c0,0x0000,0x0024, + 0x0000,0x0281,0x2803,0x6055,0x6012,0x4455,0x2403,0x5f85, + 0x0000,0x0024,0x3000,0x0001,0x3101,0x8407,0x4cf2,0x0024, + 0xac42,0x0024,0xaf4e,0x2040,0x3911,0x8024,0x2803,0x68c0, + 0x0000,0x0024,0x0000,0x0024,0x2803,0x6495,0x4080,0x0024, + 0x3110,0x0401,0xf20f,0x0203,0x2403,0x63c5,0x8dd6,0x0024, + 0x4dce,0x0024,0xf1fe,0x0024,0xaf4e,0x0024,0x6dc6,0x2046, + 0xf1df,0x0203,0xaf4f,0x1011,0xf20e,0x07cc,0x8dd6,0x2486, + 0x2803,0x68c0,0x0000,0x0024,0x0000,0x0024,0x2803,0x6715, + 0x0000,0x0024,0x0fff,0xffd1,0x2403,0x6645,0x3010,0x0001, + 0xac4f,0x0801,0x3821,0x8024,0x2803,0x68c0,0x0000,0x0024, + 0x0fff,0xffd1,0x2403,0x6885,0x3010,0x0001,0x3501,0x9407, + 0xac47,0x0801,0xaf4e,0x2082,0x3d11,0x8024,0x36f3,0xc024, + 0x36f3,0x980d,0x36f1,0x5807,0x36f0,0x9803,0x36f0,0x1801, + 0x3405,0x9014,0x36e3,0x0024,0x2000,0x0000,0x36f2,0x9806, + 0x0006,0x9f97,0x3e00,0x5c15,0x0006,0xd397,0x003f,0xc001, + 0x3500,0x3840,0xb011,0xe4e5,0xb182,0x1c04,0xd400,0x184c, + 0x0000,0x0205,0xac52,0x3802,0x0006,0xd3c2,0x4212,0x0024, + 0xb182,0x4057,0x3701,0x0024,0xd400,0x0024,0xac52,0x1404, + 0xd142,0x0024,0x0000,0x3fc4,0xb142,0x0024,0x4122,0x1bc2, + 0xf400,0x4057,0x3700,0x4024,0xd101,0x6465,0x0006,0xd397, + 0x3f00,0x3814,0x0025,0xffd4,0x0006,0xd317,0x3710,0x160c, + 0x0006,0x9f94,0x37f0,0x73d5,0x6c92,0x0024,0x3f10,0x1040, + 0x3ff0,0x53c1,0x6010,0x0024,0x0000,0x0024,0x2803,0x7494, + 0x0006,0x0001,0x4010,0x0024,0x0005,0xf601,0x6010,0x9bd4, + 0x0000,0x0040,0x2803,0x7614,0x0030,0x0497,0x3f00,0x0024, + 0x2000,0x0000,0x36f0,0x5800,0x0000,0x0400,0x6102,0x0024, + 0x3e11,0x3805,0x2803,0x7989,0x3e02,0x0024,0x2900,0xb740, + 0x408a,0x188c,0x2900,0xb740,0x408a,0x4141,0x4582,0x1bc8, + 0x2000,0x0000,0x36f1,0x1805,0x2900,0xb740,0x4102,0x184c, + 0xb182,0x1bc8,0x2000,0x0000,0x36f1,0x1805,0x3613,0x0024, + 0x3e12,0xb815,0x3e11,0xb807,0x3e13,0xf80e,0x3e03,0x4024, + 0x680c,0x0024,0x0000,0x0024,0x2803,0x7ed8,0x409c,0x0024, + 0x2403,0x7e86,0x0000,0x000a,0x3111,0xc024,0xfe4e,0x0007, + 0x47be,0x0024,0xf6fe,0x0024,0x3811,0xc024,0x36f3,0x4024, + 0x36f3,0xd80e,0x36f1,0x9807,0x2000,0x0000,0x36f2,0x9815, + 0x3613,0x0024,0x3e12,0xb815,0x3e11,0xb807,0x3e13,0xf80e, + 0x3e03,0x4024,0x680c,0x0024,0x0000,0x0024,0x2803,0x8418, + 0x409c,0x0024,0x2403,0x83c6,0x0000,0x000a,0x3111,0xc024, + 0xfe4e,0x8007,0x47be,0x0024,0xf6fe,0x0024,0x3009,0x2047, + 0x36f3,0x4024,0x36f3,0xd80e,0x36f1,0x9807,0x2000,0x0000, + 0x36f2,0x9815,0x2a03,0x858e,0x3e12,0xb817,0x3e10,0x3802, + 0x0000,0x800a,0x0006,0x9f97,0x3009,0x1fc2,0x3e04,0x5c00, + 0x6020,0xb810,0x0030,0x0451,0x2803,0x8854,0x0006,0x0002, + 0x4020,0x0024,0x0005,0xfb02,0x6024,0x0024,0x0025,0xffd0, + 0x2803,0x8a91,0x3100,0x1c11,0xb284,0x0024,0x0030,0x0490, + 0x3800,0x8024,0x0025,0xffd0,0x3980,0x1810,0x36f4,0x7c11, + 0x36f0,0x1802,0x0030,0x0717,0x3602,0x8024,0x2100,0x0000, + 0x3f05,0xdbd7,0x0003,0x8557,0x3613,0x0024,0x3e00,0x3801, + 0xf400,0x55c0,0x0000,0x0897,0xf400,0x57c0,0x0000,0x0024, + 0x2000,0x0000,0x36f0,0x1801,0x0006,0xd397,0x2000,0x0000, + 0x3700,0x0024,0xb183,0xe1e3,0x0000,0x0203,0xac32,0x40d5, + 0xd122,0x0024,0x0000,0x3fc3,0xb132,0x0024,0x0006,0xd3c3, + 0x4316,0x0024,0xf400,0x40d5,0x3500,0x5803,0x2000,0x0000, + 0xd010,0x1bc1,0x3613,0x0024,0x3e22,0xb815,0x3e05,0xb814, + 0x3615,0x0024,0x0000,0x800a,0x3e10,0x3801,0x3e10,0xb803, + 0xb884,0xb805,0xb888,0x3844,0x3e11,0xb80d,0x3e03,0xf80e, + 0x0000,0x03ce,0xf400,0x4083,0x2403,0x9ace,0xf400,0x4105, + 0x0000,0x0206,0xa562,0x0024,0x455a,0x0024,0x0020,0x0006, + 0xd312,0x0024,0xb16c,0x0024,0x0020,0x0006,0x2803,0x9945, + 0xd342,0x0024,0x0000,0x01c6,0xd342,0x0024,0xd56a,0x0024, + 0x0020,0x0006,0x4448,0x0024,0xb16c,0x0024,0x0020,0x0146, + 0x2803,0x9ac5,0x0000,0x0024,0xd468,0x0024,0x4336,0x0024, + 0x0000,0x4000,0x0006,0xd3c1,0x0006,0x9306,0x4122,0x0024, + 0x462c,0x4055,0x4092,0x3404,0xb512,0x4195,0x6294,0x3401, + 0x6200,0x0024,0x0000,0x03ce,0x2803,0x9551,0xb888,0x0024, + 0x36f3,0xd80e,0x36f1,0x980d,0x36f1,0x1805,0x36f0,0x9803, + 0x36f0,0x1801,0x3405,0x9014,0x36e3,0x0024,0x2000,0x0000, + 0x36f2,0x9815,0x3613,0x0024,0x3e12,0xb817,0x3e12,0x3815, + 0x3e05,0xb814,0x3615,0x0024,0x0000,0x800a,0x3e10,0x3801, + 0xb880,0xb810,0x0006,0x9fd0,0x3e10,0x8001,0x4182,0x3811, + 0x0006,0xd311,0x2803,0xa405,0x0006,0x8a10,0x0000,0x0200, + 0xbc82,0xa000,0x3910,0x0024,0x2903,0x9240,0x39f0,0x4024, + 0x0006,0x9f90,0x0006,0x9f51,0x3009,0x0000,0x3009,0x0401, + 0x6014,0x0024,0x0000,0x0024,0x2903,0xa905,0x0003,0xa508, + 0x36f4,0x4024,0x36f0,0x9810,0x36f0,0x1801,0x3405,0x9014, + 0x36f3,0x0024,0x36f2,0x1815,0x2000,0x0000,0x36f2,0x9817, + 0x3613,0x0024,0x3e12,0xb817,0x3e12,0x3815,0x3e05,0xb814, + 0x290a,0xd900,0x3605,0x0024,0x2910,0x0180,0x3613,0x0024, + 0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815,0x2000,0x0000, + 0x36f2,0x9817,0x3613,0x0024,0x3e12,0xb817,0x3e12,0x3815, + 0x3e05,0xb814,0x3615,0x0024,0x0000,0x800a,0x3e10,0xb803, + 0x0006,0x0002,0x3e11,0x3805,0x3e11,0xb807,0x3e14,0x3811, + 0x0006,0x9f90,0x3e04,0xb813,0x3009,0x0012,0x3213,0x0024, + 0xf400,0x4480,0x6026,0x0024,0x0000,0x0024,0x2803,0xb195, + 0x0000,0x0024,0x0000,0x0012,0xf400,0x4480,0x0006,0x9f50, + 0x3009,0x0002,0x6026,0x0024,0x0000,0x0024,0x2903,0xa905, + 0x0003,0xb188,0x0006,0x9f93,0x3201,0x0c11,0xb58a,0x0406, + 0x0006,0x8a11,0x468e,0x8400,0xb68c,0x9813,0xcfee,0x1bd2, + 0x0000,0x0804,0xaf0e,0x9811,0x4f86,0x1bd0,0x0000,0x0021, + 0x6418,0x9807,0x6848,0x1bc6,0xad46,0x9805,0xf400,0x4080, + 0x36f1,0x0024,0x36f0,0x9803,0x3405,0x9014,0x36f3,0x0024, + 0x36f2,0x1815,0x2000,0x0000,0x36f2,0x9817,0x3613,0x0024, + 0x3e12,0xb817,0x3e12,0x3815,0x3e05,0xb814,0x3615,0x0024, + 0x0000,0x800a,0x3e10,0x3801,0x3e10,0xb803,0x3e11,0x3805, + 0x2803,0xbfc0,0x3e04,0x3811,0x0000,0x0401,0x2900,0xb740, + 0x3613,0x0024,0x0000,0x0080,0xb882,0x130c,0xf400,0x4510, + 0x3010,0x910c,0x30f0,0xc024,0x6dc2,0x0024,0x3810,0x0024, + 0x38f0,0x4024,0x0000,0x0201,0x3100,0x0024,0xb010,0x0024, + 0x0000,0x0024,0x2803,0xc315,0x0000,0x0024,0x6894,0x130c, + 0xb886,0x1040,0x3430,0x4024,0x6dca,0x0024,0x0030,0x0011, + 0x2803,0xbb91,0x0000,0x0024,0xbcd2,0x0024,0x0000,0x0201, + 0x2803,0xc305,0x0000,0x0024,0x2900,0xb740,0x3613,0x0024, + 0x36f4,0x1811,0x36f1,0x1805,0x36f0,0x9803,0x36f0,0x1801, + 0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815,0x2000,0x0000, + 0x36f2,0x9817,0x3613,0x0024,0x3e12,0xb815,0x0000,0x800a, + 0x3e14,0x7813,0x3e10,0xb803,0x3e11,0x3805,0x3e11,0xb807, + 0x3e13,0xf80e,0x6812,0x0024,0x3e03,0x7810,0x0fff,0xffd3, + 0x0000,0x0091,0xbd86,0x9850,0x3e10,0x3804,0x3e00,0x7812, + 0xbe8a,0x8bcc,0x409e,0x8086,0x2403,0xca47,0xfe49,0x2821, + 0x526a,0x8801,0x5c87,0x280e,0x4eba,0x9812,0x4286,0x40e1, + 0xb284,0x1bc1,0x4de6,0x0024,0xad17,0x2627,0x4fde,0x9804, + 0x4498,0x1bc0,0x0000,0x0024,0x2803,0xc855,0x3a11,0xa807, + 0x36f3,0x4024,0x36f3,0xd80e,0x36f1,0x9807,0x36f1,0x1805, + 0x36f0,0x9803,0x36f4,0x5813,0x2000,0x0000,0x36f2,0x9815, + 0x3613,0x0024,0x3e12,0xb815,0x0000,0x800a,0x3e10,0xb803, + 0x3e11,0x3805,0x3e11,0xb807,0x3e13,0xf80e,0x6812,0x0024, + 0x3e03,0x7810,0x3009,0x1850,0x3e10,0x3804,0x3e10,0x7812, + 0x32f3,0x0024,0xbd86,0x0024,0x4091,0xe2e3,0x3009,0x0046, + 0x2403,0xd5c0,0x3009,0x0047,0x32f0,0x0801,0xfe1f,0x6465, + 0x5e8a,0x0024,0x44ba,0x0024,0xfee2,0x0024,0x5d8a,0x1800, + 0x4482,0x4160,0x48ba,0x8046,0x4dc6,0x1822,0x4de6,0x8047, + 0x36f3,0x0024,0x36f0,0x5812,0xad17,0x2627,0x4fde,0x9804, + 0x4498,0x1bc0,0x0000,0x0024,0x2803,0xd155,0x3a11,0xa807, + 0x36f3,0x4024,0x36f3,0xd80e,0x36f1,0x9807,0x36f1,0x1805, + 0x36f0,0x9803,0x2000,0x0000,0x36f2,0x9815,0xb386,0x40d7, + 0x4284,0x184c,0x0000,0x05c0,0x2803,0xdb55,0xf5d8,0x3804, + 0x0000,0x0984,0x6400,0xb84a,0x3e13,0xf80d,0xa204,0x380e, + 0x0000,0x800a,0x0000,0x00ce,0x2403,0xde8e,0xffa4,0x0024, + 0x48b6,0x0024,0x0000,0x0024,0x2803,0xde84,0x4000,0x40c2, + 0x4224,0x0024,0x6090,0x0024,0xffa4,0x0024,0x0fff,0xfe83, + 0xfe86,0x1bce,0x36f3,0xd80d,0x48b6,0x0024,0x0fff,0xff03, + 0xa230,0x45c3,0x2000,0x0000,0x36f1,0x180a,0x4080,0x184c, + 0x3e13,0x780f,0x2803,0xe2c5,0x4090,0xb80e,0x2403,0xe240, + 0x3e04,0x0440,0x3810,0x0440,0x3604,0x0024,0x3009,0x1bce, + 0x3603,0x5bcf,0x2000,0x0000,0x0000,0x0024, + 0x0007,0x0001, /*copy 1*/ + 0x802e, + 0x0006,0x0002, /*copy 2*/ + 0x2801,0x6ac0, + 0x0007,0x0001, /*copy 1*/ + 0x8030, + 0x0006,0x0002, /*copy 2*/ + 0x2800,0x1b40, + 0x0007,0x0001, /*copy 1*/ + 0x8028, + 0x0006,0x0002, /*copy 2*/ + 0x2a00,0x144e, + 0x0007,0x0001, /*copy 1*/ + 0x8032, + 0x0006,0x0002, /*copy 2*/ + 0x2800,0x7140, + 0x0007,0x0001, /*copy 1*/ + 0x3580, + 0x0006, 0x8038, 0x0000, /*Rle(56)*/ + 0x0007,0x0001, /*copy 1*/ + 0xfab3, + 0x0006,0x01a4, /*copy 420*/ + 0x0001,0x0001,0x0001,0x0001,0x0000,0xffff,0xfffe,0xfffb, + 0xfff9,0xfff5,0xfff2,0xffed,0xffe8,0xffe3,0xffde,0xffd8, + 0xffd3,0xffce,0xffca,0xffc7,0xffc4,0xffc4,0xffc5,0xffc7, + 0xffcc,0xffd3,0xffdc,0xffe6,0xfff3,0x0001,0x0010,0x001f, + 0x002f,0x003f,0x004e,0x005b,0x0066,0x006f,0x0074,0x0075, + 0x0072,0x006b,0x005f,0x004f,0x003c,0x0024,0x0009,0xffed, + 0xffcf,0xffb0,0xff93,0xff77,0xff5f,0xff4c,0xff3d,0xff35, + 0xff34,0xff3b,0xff4a,0xff60,0xff7e,0xffa2,0xffcd,0xfffc, + 0x002e,0x0061,0x0094,0x00c4,0x00f0,0x0114,0x0131,0x0144, + 0x014b,0x0146,0x0134,0x0116,0x00eb,0x00b5,0x0075,0x002c, + 0xffde,0xff8e,0xff3d,0xfeef,0xfea8,0xfe6a,0xfe39,0xfe16, + 0xfe05,0xfe06,0xfe1b,0xfe43,0xfe7f,0xfecd,0xff2a,0xff95, + 0x0009,0x0082,0x00fd,0x0173,0x01e1,0x0242,0x0292,0x02cc, + 0x02ec,0x02f2,0x02da,0x02a5,0x0253,0x01e7,0x0162,0x00c9, + 0x0021,0xff70,0xfebc,0xfe0c,0xfd68,0xfcd5,0xfc5b,0xfc00, + 0xfbc9,0xfbb8,0xfbd2,0xfc16,0xfc85,0xfd1b,0xfdd6,0xfeae, + 0xff9e,0x009c,0x01a0,0x02a1,0x0392,0x046c,0x0523,0x05b0, + 0x060a,0x062c,0x0613,0x05bb,0x0526,0x0456,0x0351,0x021f, + 0x00c9,0xff5a,0xfde1,0xfc6a,0xfb05,0xf9c0,0xf8aa,0xf7d0, + 0xf73d,0xf6fa,0xf70f,0xf77e,0xf848,0xf96b,0xfadf,0xfc9a, + 0xfe8f,0x00ad,0x02e3,0x051a,0x073f,0x0939,0x0af4,0x0c5a, + 0x0d59,0x0de1,0x0de5,0x0d5c,0x0c44,0x0a9e,0x0870,0x05c7, + 0x02b4,0xff4e,0xfbaf,0xf7f8,0xf449,0xf0c7,0xed98,0xeae0, + 0xe8c4,0xe765,0xe6e3,0xe756,0xe8d2,0xeb67,0xef19,0xf3e9, + 0xf9cd,0x00b5,0x088a,0x112b,0x1a72,0x2435,0x2e42,0x3866, + 0x426b,0x4c1b,0x553e,0x5da2,0x6516,0x6b6f,0x7087,0x7441, + 0x7686,0x774a,0x7686,0x7441,0x7087,0x6b6f,0x6516,0x5da2, + 0x553e,0x4c1b,0x426b,0x3866,0x2e42,0x2435,0x1a72,0x112b, + 0x088a,0x00b5,0xf9cd,0xf3e9,0xef19,0xeb67,0xe8d2,0xe756, + 0xe6e3,0xe765,0xe8c4,0xeae0,0xed98,0xf0c7,0xf449,0xf7f8, + 0xfbaf,0xff4e,0x02b4,0x05c7,0x0870,0x0a9e,0x0c44,0x0d5c, + 0x0de5,0x0de1,0x0d59,0x0c5a,0x0af4,0x0939,0x073f,0x051a, + 0x02e3,0x00ad,0xfe8f,0xfc9a,0xfadf,0xf96b,0xf848,0xf77e, + 0xf70f,0xf6fa,0xf73d,0xf7d0,0xf8aa,0xf9c0,0xfb05,0xfc6a, + 0xfde1,0xff5a,0x00c9,0x021f,0x0351,0x0456,0x0526,0x05bb, + 0x0613,0x062c,0x060a,0x05b0,0x0523,0x046c,0x0392,0x02a1, + 0x01a0,0x009c,0xff9e,0xfeae,0xfdd6,0xfd1b,0xfc85,0xfc16, + 0xfbd2,0xfbb8,0xfbc9,0xfc00,0xfc5b,0xfcd5,0xfd68,0xfe0c, + 0xfebc,0xff70,0x0021,0x00c9,0x0162,0x01e7,0x0253,0x02a5, + 0x02da,0x02f2,0x02ec,0x02cc,0x0292,0x0242,0x01e1,0x0173, + 0x00fd,0x0082,0x0009,0xff95,0xff2a,0xfecd,0xfe7f,0xfe43, + 0xfe1b,0xfe06,0xfe05,0xfe16,0xfe39,0xfe6a,0xfea8,0xfeef, + 0xff3d,0xff8e,0xffde,0x002c,0x0075,0x00b5,0x00eb,0x0116, + 0x0134,0x0146,0x014b,0x0144,0x0131,0x0114,0x00f0,0x00c4, + 0x0094,0x0061,0x002e,0xfffc,0xffcd,0xffa2,0xff7e,0xff60, + 0xff4a,0xff3b,0xff34,0xff35,0xff3d,0xff4c,0xff5f,0xff77, + 0xff93,0xffb0,0xffcf,0xffed,0x0009,0x0024,0x003c,0x004f, + 0x005f,0x006b,0x0072,0x0075,0x0074,0x006f,0x0066,0x005b, + 0x004e,0x003f,0x002f,0x001f,0x0010,0x0001,0xfff3,0xffe6, + 0xffdc,0xffd3,0xffcc,0xffc7,0xffc5,0xffc4,0xffc4,0xffc7, + 0xffca,0xffce,0xffd3,0xffd8,0xffde,0xffe3,0xffe8,0xffed, + 0xfff2,0xfff5,0xfff9,0xfffb,0xfffe,0xffff,0x0000,0x0001, + 0x0001,0x0001,0x0001,0x0000, + 0x0007,0x0001, /*copy 1*/ + 0x180b, + 0x0006,0x000d, /*copy 13*/ + 0x000f,0x0010,0x001c,0xfab3,0x3580,0x8037,0xa037,0x0001, + 0x0000,0x3580,0x01a4,0x0728,0x0746, + 0x0006, 0x8006, 0x078e, /*Rle(6)*/ + 0x0006,0x0027, /*copy 39*/ + 0x0763,0x0763,0x0763,0x0763,0x0763,0x0992,0x0976,0x097a, + 0x097e,0x0982,0x0986,0x098a,0x098e,0x09c1,0x09c5,0x09c8, + 0x09c8,0x09c8,0x09c8,0x09d0,0x09e3,0x0aae,0x0a1a,0x0a1f, + 0x0a25,0x0a2b,0x0a30,0x0a35,0x0a3a,0x0a3f,0x0a44,0x0a49, + 0x0a4e,0x0a53,0x0a6c,0x0a8b,0x0aaa,0x5a82,0x5a82, + 0x0006, 0x8006, 0x0000, /*Rle(6)*/ + 0x0006,0x0018, /*copy 24*/ + 0x6fb8,0xc180,0xc180,0x6fb8,0x0000,0x0000,0x0000,0x0000, + 0x5a82,0x5a82,0x6fb8,0xc180,0xc180,0x6fb8,0x0000,0x0000, + 0x5a82,0x5a82,0x5a82,0x5a82,0x6fb8,0xc180,0xc180,0x6fb8, + 0x0007,0x0001, /*copy 1*/ + 0x8025, + 0x0006,0x0002, /*copy 2*/ + 0x2a00,0x5c4e, + 0x0007,0x0001, /*copy 1*/ + 0x5800, + 0x0006,0x0001, /*copy 1*/ + 0x0001, + 0x0006, 0x8007, 0x0000, /*Rle(7)*/ + 0x0006,0x0018, /*copy 24*/ + 0x0002,0x0000,0xffff,0xffff,0x0000,0x0000,0x0000,0x0000, + 0x0003,0x0000,0xfffd,0xffff,0x0001,0x0000,0x0000,0x0000, + 0x0004,0x0000,0xfffa,0xffff,0x0004,0x0000,0xffff,0xffff, + 0x000a,0x0001, /*copy 1*/ + 0x0050, +#define PLUGIN_SIZE 8414 +#ifndef SKIP_PLUGIN_VARNAME +}; +#endif diff --git a/src/patches/vs1053b-patches-latm.plg b/src/patches/vs1053b-patches-latm.plg new file mode 100644 index 0000000..8b0aefc --- /dev/null +++ b/src/patches/vs1053b-patches-latm.plg @@ -0,0 +1,737 @@ +#ifndef SKIP_PLUGIN_VARNAME +const unsigned short PATCHES_LATM[] = { /* Compressed plugin */ +#endif + 0x0007,0x0001, /*copy 1*/ + 0x8050, + 0x0006,0x001e, /*copy 30*/ + 0x2a00,0xc000,0x3e12,0xb817,0x3e14,0xf812,0x3e01,0xb811, + 0x0007,0x9717,0x0020,0xffd2,0x0030,0x11d1,0x3111,0x8024, + 0x3704,0xc024,0x3b81,0x8024,0x3101,0x8024,0x3b81,0x8024, + 0x3f04,0xc024,0x2808,0x4800,0x36f1,0x9811, + 0x0007,0x0001, /*copy 1*/ + 0x8060, + 0x0006,0x0536, /*copy 1334*/ + 0xf400,0x4095,0x0000,0x02c2,0x6124,0x0024,0x0000,0x0024, + 0x2800,0x1ac5,0x4192,0x4542,0x0000,0x0041,0x2000,0x0015, + 0x0030,0x0317,0x2000,0x0000,0x3f00,0x4024,0x2000,0x0000, + 0x0000,0x0000,0x3e12,0x3800,0x3e00,0xb804,0x0030,0x0015, + 0x0007,0x8257,0x3700,0x984c,0xf224,0x1444,0xf224,0x0024, + 0x0008,0x0002,0x2910,0x0181,0x0000,0x1bc8,0xb428,0x1402, + 0x0000,0x8004,0x2910,0x0195,0x0000,0x1bc8,0xb428,0x0024, + 0x0006,0x0095,0x2800,0x2945,0x3e13,0x780e,0x3e11,0x7803, + 0x3e13,0xf806,0x3e11,0xf801,0x3510,0xb808,0x003f,0xe004, + 0xfec4,0x3800,0x48be,0x17c3,0xfec6,0x41c2,0x48be,0x4497, + 0x4090,0x1c46,0xf06c,0x0024,0x2400,0x2580,0x6090,0x41c3, + 0x6628,0x1c47,0x0000,0x0024,0x2800,0x2449,0xf07e,0x0024, + 0xf400,0x4182,0x673a,0x1c46,0x0000,0x0024,0x2800,0x2589, + 0xf06c,0x0024,0xf400,0x41c3,0x0000,0x0024,0x4224,0x3442, + 0x2900,0xb7c0,0x4336,0x37c3,0x0000,0x1805,0x2900,0xb7c0, + 0x4508,0x40c2,0x450a,0x9808,0x0000,0x0207,0xa478,0x1bc0, + 0xc45a,0x1807,0x0030,0x03d5,0x3d01,0x5bc1,0x36f3,0xd806, + 0x3601,0x5803,0x36f3,0x0024,0x36f3,0x580e,0x0007,0x8257, + 0x0000,0x6004,0x3730,0x8024,0xb244,0x1c04,0xd428,0x3c02, + 0x0006,0xc717,0x2800,0x2d05,0x4284,0x0024,0x3613,0x3c02, + 0x0006,0xc357,0x2901,0x6480,0x3e11,0x5c05,0x4284,0x1bc5, + 0x0000,0x0024,0x2800,0x3045,0x0000,0x0024,0x0030,0x0117, + 0x3f00,0x0024,0x3613,0x0024,0x3e10,0x3813,0x3e14,0x8024, + 0x3e04,0x8024,0x2900,0x4900,0x0006,0x02d3,0x36e3,0x0024, + 0x3009,0x1bd3,0x0007,0x8257,0x3700,0x8024,0xf224,0x0024, + 0x0000,0x0024,0x2800,0x3251,0x3600,0x9844,0x2900,0x3800, + 0x0000,0x32c8,0x2911,0xf140,0x0000,0x0024,0x0030,0x0057, + 0x3700,0x0024,0xf200,0x4595,0x0fff,0xfe02,0xa024,0x164c, + 0x8000,0x17cc,0x3f00,0x0024,0x3500,0x0024,0x0021,0x6d82, + 0xd024,0x44c0,0x0006,0xa402,0x2800,0x3715,0xd024,0x0024, + 0x0000,0x0000,0x2800,0x3715,0x000b,0x6d57,0x3009,0x3c00, + 0x36f0,0x8024,0x36f2,0x1800,0x2000,0x0000,0x0000,0x0024, + 0x3e14,0x7810,0x3e13,0xb80d,0x3e13,0xf80a,0x3e10,0xb803, + 0x3e11,0x3805,0x3e11,0xb807,0x3e14,0xf801,0x3e15,0x3815, + 0x0001,0x000a,0x0006,0xc4d7,0xbf8e,0x9c42,0x3e01,0x9c03, + 0x0006,0xa017,0x0023,0xffd1,0x0007,0x8250,0x0fff,0xfd85, + 0x3001,0x0024,0xa45a,0x4494,0x0000,0x0093,0x2800,0x3e51, + 0xf25a,0x104c,0x34f3,0x0024,0x2800,0x3e51,0x0000,0x0024, + 0x3413,0x084c,0x0000,0x0095,0x3281,0xf806,0x4091,0x4d64, + 0x2400,0x4080,0x4efa,0x9c10,0xf1eb,0x6061,0xfe55,0x2f66, + 0x5653,0x4d64,0x48b2,0xa201,0x4efa,0xa201,0x36f3,0x3c10, + 0x36f5,0x1815,0x36f4,0xd801,0x36f1,0x9807,0x36f1,0x1805, + 0x36f0,0x9803,0x36f3,0xd80a,0x36f3,0x980d,0x2000,0x0000, + 0x36f4,0x5810,0x36f3,0x0024,0x3009,0x3848,0x3e14,0x3811, + 0x3e00,0x0024,0x0000,0x4000,0x0001,0x0010,0x2915,0x94c0, + 0x0001,0xcc11,0x36f0,0x0024,0x2927,0x9e40,0x3604,0x1811, + 0x3613,0x0024,0x3e14,0x3811,0x3e00,0x0024,0x0000,0x4000, + 0x0001,0x0010,0x2915,0x94c0,0x0001,0xcc11,0x36f0,0x0024, + 0x36f4,0x1811,0x3009,0x1808,0x2000,0x0000,0x0000,0x190d, + 0x3613,0x0024,0x3e22,0xb815,0x3e05,0xb814,0x3615,0x0024, + 0x0000,0x800a,0x3e13,0x7801,0x3e10,0xb803,0x3e11,0x3805, + 0x3e11,0xb807,0x3e14,0x3811,0x3e14,0xb813,0x3e03,0xf80e, + 0xb488,0x44d5,0x3543,0x134c,0x34e5,0xc024,0x3524,0x8024, + 0x35a4,0xc024,0x3710,0x8a0c,0x3540,0x4a0c,0x3d44,0x8024, + 0x3a10,0x8024,0x3590,0x0024,0x4010,0x15c1,0x6010,0x3400, + 0x3710,0x8024,0x2800,0x54c4,0x3af0,0x8024,0x3df0,0x0024, + 0x3591,0x4024,0x3530,0x4024,0x4192,0x4050,0x6100,0x1482, + 0x4020,0x1753,0xbf8e,0x1582,0x4294,0x4011,0xbd86,0x408e, + 0x2400,0x52ce,0xfe6d,0x2819,0x520e,0x0a00,0x5207,0x2819, + 0x4fbe,0x0024,0xad56,0x904c,0xaf5e,0x1010,0xf7d4,0x0024, + 0xf7fc,0x2042,0x6498,0x2046,0x3cf4,0x0024,0x3400,0x170c, + 0x4090,0x1492,0x35a4,0xc024,0x2800,0x4d55,0x3c00,0x0024, + 0x4480,0x914c,0x36f3,0xd80e,0x36f4,0x9813,0x36f4,0x1811, + 0x36f1,0x9807,0x36f1,0x1805,0x36f0,0x9803,0x36f3,0x5801, + 0x3405,0x9014,0x36e3,0x0024,0x2000,0x0000,0x36f2,0x9815, + 0x2814,0x9c91,0x0000,0x004d,0x2814,0x9940,0x003f,0x0013, + 0x3613,0x0024,0x3e12,0xb817,0x3e12,0x3815,0x3e05,0xb814, + 0x3655,0x0024,0x0000,0x800a,0x3e10,0x3801,0x3e10,0xb803, + 0x3e11,0x3805,0x3e11,0xb810,0x3e13,0xf80e,0x3e03,0x534c, + 0x3450,0x4024,0x6814,0x0024,0x0000,0x0024,0x2800,0x73d8, + 0x4192,0x0024,0x2400,0x7381,0x0000,0x0024,0xf400,0x4450, + 0x2938,0x1880,0x3613,0x0024,0x3c10,0x050c,0x3c10,0x4024, + 0x3c90,0x8024,0x34f3,0x0024,0x3464,0x0024,0x3011,0x0c40, + 0x3011,0x4c41,0x2915,0x9900,0x3011,0x8f82,0x3411,0x2c40, + 0x3411,0x6c41,0x2915,0xa580,0x34e1,0xaf82,0x3009,0x3040, + 0x4c8a,0x0040,0x3010,0x7041,0x2800,0x6614,0x3010,0xb382, + 0x3411,0x0024,0x3411,0x6c44,0x34e1,0xac45,0xbe8a,0xaf86, + 0x0fe0,0x0006,0x3009,0x3044,0x3009,0x3045,0x3009,0x3386, + 0x3411,0x0024,0x3411,0x4ccc,0x2915,0x9900,0x34e1,0x984c, + 0x3e10,0x7800,0x3009,0x3802,0x3011,0x0c40,0x3011,0x4c41, + 0x2915,0x9900,0x30e1,0x8f82,0x3009,0x1bc6,0x2915,0xa940, + 0x36f1,0x5804,0x3011,0x2c40,0x3011,0x6c41,0x30b1,0xac42, + 0x3009,0x0c40,0x3009,0x0c41,0x2915,0x9900,0x3613,0x0f82, + 0x3e10,0x7800,0x3009,0x3802,0x3010,0x1044,0x3010,0x5045, + 0x2915,0x9900,0x3010,0x9386,0x3009,0x1bc6,0x2915,0xa940, + 0x36f1,0x5804,0xf1ca,0xac40,0x4ce2,0xac41,0x3009,0x2ec2, + 0x2800,0x6ed2,0x629c,0x0024,0xf1c2,0x4182,0x3c10,0x0c44, + 0x3c10,0x4c45,0x2915,0x4780,0x3ce0,0x8f86,0x4080,0x0024, + 0x0000,0x0024,0x2800,0x7395,0x0020,0x0000,0x3411,0x0c40, + 0x3411,0x4c41,0x2915,0xb780,0x34e1,0x8f82,0x0000,0x03c3, + 0x4234,0x0024,0x4c82,0x0024,0x0000,0x0024,0x2915,0x4355, + 0x0000,0x7388,0x0000,0x0000,0x3a10,0x0d8c,0x36f3,0x538c, + 0x36f3,0xd80e,0x36f1,0x9810,0x36f1,0x1805,0x36f0,0x9803, + 0x36f0,0x1801,0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815, + 0x2000,0x0000,0x36f2,0x9817,0x3613,0x0024,0x3e12,0xb817, + 0x3e12,0x3815,0x3e05,0xb814,0x3645,0x0024,0x0000,0x800a, + 0x3e10,0x3801,0x3e10,0xb803,0x3e11,0x3805,0x3e11,0xb810, + 0x3e13,0xf80e,0x3e03,0x534c,0x3440,0x4024,0x4192,0x0024, + 0x2400,0x8f81,0x0000,0x0024,0xb68c,0x4450,0x2938,0x1880, + 0x3613,0x050c,0x3c10,0x0c40,0x3c10,0x4c41,0x3ce0,0x8f82, + 0x003c,0x2584,0x2915,0x9900,0x0018,0x8245,0x3411,0x2c40, + 0x3411,0x6c41,0x2915,0xa580,0x34e1,0xac42,0x4c8a,0xb040, + 0x3009,0x3041,0x2800,0x8094,0x3009,0x3382,0x3411,0x0f4c, + 0x3411,0x6c44,0x34e1,0xac45,0xbe8a,0xac46,0x499c,0xb044, + 0xf38c,0xb045,0x3009,0x3386,0x3009,0x0c40,0x3009,0x0c41, + 0xf1ca,0x8f82,0x4ce2,0x1044,0x3411,0x4024,0x2800,0x82d2, + 0x4294,0x1386,0x6294,0x0024,0xf1c2,0x0024,0x4e8a,0x4195, + 0x35e3,0x0024,0x2915,0xa955,0xf400,0x4546,0x3009,0x2c40, + 0x3009,0x2c41,0x3009,0x2c42,0x3009,0x0c40,0x3009,0x0c41, + 0xf1ca,0x8f82,0x4ce2,0x9044,0x3009,0x1045,0x2800,0x8745, + 0x3009,0x1386,0x2800,0x8752,0x4294,0x0024,0x6294,0x0024, + 0xf1c2,0x0024,0x4e8a,0x4195,0x35e3,0x0024,0x2915,0xa955, + 0xf400,0x4546,0xf1ca,0xac40,0x4ce2,0xac41,0x3009,0x2ec2, + 0x2800,0x89d2,0x629c,0x0024,0xf1c2,0x4182,0x3c20,0x0c84, + 0x3cf0,0x8fc6,0x6264,0x4017,0x3cf0,0x4fc5,0x2800,0x8f88, + 0x0020,0x0000,0x2800,0x8cd9,0xf400,0x45c0,0x6cea,0x0024, + 0x0000,0x0024,0x2800,0x8f89,0x0020,0x0000,0x3411,0x0c40, + 0x3411,0x4c41,0x2915,0xb780,0x34e1,0x8f82,0x0000,0x03c3, + 0x4234,0x0024,0x4c82,0x0024,0x0000,0x0024,0x2915,0x4355, + 0x0000,0x8f88,0x0000,0x0000,0x3a10,0x0d8c,0x36f3,0x53cc, + 0x36f3,0xd80e,0x36f1,0x9810,0x36f1,0x1805,0x36f0,0x9803, + 0x36f0,0x1801,0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815, + 0x2000,0x0000,0x36f2,0x9817,0xf400,0x4595,0x35e3,0x3840, + 0x3e13,0xf80e,0x3e13,0x7808,0x3510,0x0024,0x3e10,0x0024, + 0x3510,0x0024,0x3e10,0x0024,0x3510,0x0024,0x3e00,0x0024, + 0x0001,0xb0ce,0x002b,0xb30f,0x292d,0xa940,0x0000,0x004d, + 0x36d3,0x0024,0x36f3,0x5808,0x36f3,0xd80e,0x2000,0x0000, + 0x3009,0x1800,0xf400,0x4595,0x35f3,0x3840,0x3e13,0xf80e, + 0x3e13,0x7808,0x3510,0x0024,0x3e10,0x0024,0x3510,0x0024, + 0x3e00,0x0024,0x0000,0x9b8e,0x0028,0x088f,0x2927,0xff80, + 0x0000,0x008d,0x36e3,0x0024,0x36f3,0x5808,0x36f3,0xd80e, + 0x2000,0x0000,0x3009,0x1800,0x0028,0x2b0f,0x0000,0xa10e, + 0x2828,0x0b15,0x0007,0x2605,0x3613,0x0001,0x3e14,0x3811, + 0x0001,0x0011,0x0001,0xcc10,0x2915,0x94c0,0x0000,0x4000, + 0x3e10,0x534c,0x3430,0xc024,0x3e10,0xc024,0x2927,0xc4c0, + 0x3e01,0x0024,0x36d3,0x0024,0x0001,0x0011,0x0001,0xcc10, + 0x2915,0x94c0,0x0000,0x4000,0x2828,0x0b00,0x36f4,0x1811, + 0x3e00,0x0024,0x2800,0xa500,0x0028,0x2bc8,0x3605,0x7840, + 0x3e13,0x780e,0x3e13,0xf808,0x3e05,0x4024,0x0000,0x434e, + 0x0027,0x9e0f,0x2922,0xa6c0,0x0000,0x190d,0x36f3,0x0024, + 0x36f3,0xd808,0x36f3,0x580e,0x2000,0x0000,0x3009,0x1800, + 0xf400,0x4595,0x35d3,0x3840,0x3e13,0xf80e,0x3e13,0x7808, + 0x3510,0x0024,0x3e10,0x0024,0x3510,0x0024,0x3e10,0x0024, + 0x3510,0x0024,0x3e10,0x0024,0x3510,0x0024,0x3e00,0x0024, + 0x0000,0xaa4e,0x0025,0xf54f,0x2925,0xe580,0x0000,0x004d, + 0x36c3,0x0024,0x36f3,0x5808,0x36f3,0xd80e,0x2000,0x0000, + 0x3009,0x1800,0x3433,0x0000,0x6890,0x3040,0x3cc0,0xa000, + 0x0008,0x6201,0x000d,0x3500,0x3613,0x110c,0x3e10,0x0024, + 0x3e10,0x4024,0x34c0,0x8024,0x2900,0x9280,0x3e00,0x8024, + 0x0026,0x0a4f,0x0000,0xae0e,0x2825,0xf880,0x0000,0x07cd, + 0x0000,0x0801,0x6012,0x0024,0x0000,0x0024,0x2826,0x0a85, + 0x0000,0x0024,0x2800,0xab00,0x0000,0x0024,0x3605,0x7840, + 0x3e13,0x780e,0x3e13,0xf808,0x3e05,0x4024,0x0000,0xb30e, + 0x0022,0xf54f,0x2922,0xda80,0x0000,0x190d,0x36f3,0x0024, + 0x36f3,0xd808,0x36f3,0x580e,0x2000,0x0000,0x3009,0x1800, + 0x3e00,0x0024,0x2800,0x9740,0x0022,0xf608,0x3605,0x7840, + 0x3e13,0x780e,0x3e13,0xf808,0x3e05,0x4024,0x0000,0xb70e, + 0x0022,0xa1cf,0x2922,0x9980,0x0000,0x190d,0x36f3,0x0024, + 0x36f3,0xd808,0x36f3,0x580e,0x2000,0x0000,0x3009,0x1800, + 0x3009,0x3400,0x2800,0xafc0,0x0022,0xa288,0xb386,0x40d7, + 0x4284,0x184c,0x0000,0x05c0,0x2800,0xb955,0xf5d8,0x3804, + 0x0000,0x0984,0x6400,0xb84a,0x3e13,0xf80d,0xa204,0x380e, + 0x0000,0x800a,0x0000,0x00ce,0x2400,0xbc8e,0xffa4,0x0024, + 0x48b6,0x0024,0x0000,0x0024,0x2800,0xbc84,0x4000,0x40c2, + 0x4224,0x0024,0x6090,0x0024,0xffa4,0x0024,0x0fff,0xfe83, + 0xfe86,0x1bce,0x36f3,0xd80d,0x48b6,0x0024,0x0fff,0xff03, + 0xa230,0x45c3,0x2000,0x0000,0x36f1,0x180a, + 0x0007,0x0001, /*copy 1*/ + 0x8300, + 0x0006,0x0e92, /*copy 3730*/ + 0x0030,0x0055,0xb080,0x1402,0x0fdf,0xffc1,0x0007,0x9257, + 0xb212,0x3c00,0x3d00,0x4024,0x0006,0x0097,0x3f10,0x0024, + 0x3f00,0x0024,0x0030,0x0297,0x3f00,0x0024,0x0007,0x9017, + 0x3f00,0x0024,0x0007,0x81d7,0x3f10,0x0024,0xc090,0x3c00, + 0x0006,0x0297,0xb080,0x3c00,0x0000,0x0401,0x000a,0x1055, + 0x0006,0x0017,0x3f10,0x3401,0x000a,0x2795,0x3f00,0x3401, + 0x0001,0x6457,0xf400,0x55c0,0x0000,0x0817,0xb080,0x57c0, + 0x0014,0x958f,0x0000,0x590e,0x0030,0x0017,0x3700,0x0024, + 0x0004,0x0001,0xb012,0x0024,0x0000,0x004d,0x280f,0xe115, + 0x0006,0x2016,0x0006,0x01d7,0x3f00,0x0024,0x0000,0x190d, + 0x000f,0xf94f,0x0000,0xcd0e,0x280f,0xe100,0x0006,0x2016, + 0x0000,0x0080,0x0005,0x4f92,0x2909,0xf840,0x3613,0x2800, + 0x0006,0x0197,0x0006,0xa115,0xb080,0x0024,0x3f00,0x3400, + 0x0007,0x8a57,0x3700,0x0024,0x4080,0x0024,0x0000,0x0040, + 0x2800,0xced5,0x0006,0xa2d7,0x3009,0x3c00,0x0006,0xa157, + 0x3009,0x1c00,0x0006,0x01d7,0x0000,0x190d,0x000a,0x708f, + 0x0000,0xd7ce,0x290b,0x1a80,0x3f00,0x184c,0x0030,0x0017, + 0x4080,0x1c01,0x0000,0x0200,0x2800,0xcb15,0xb102,0x0024, + 0x0000,0xcd08,0x2800,0xcb15,0x0000,0xd3ce,0x0011,0x210f, + 0x0000,0x190d,0x280f,0xcb00,0x3613,0x0024,0x0006,0xa115, + 0x0006,0x01d7,0x37f0,0x1401,0x6100,0x1c01,0x4012,0x0024, + 0x0000,0x8000,0x6010,0x0024,0x34f3,0x0400,0x2800,0xd698, + 0x0000,0x0024,0x0000,0x8001,0x6010,0x3c01,0x0000,0x000d, + 0x2811,0x8259,0x0000,0x0024,0x2a11,0x2100,0x0030,0x0257, + 0x3700,0x0024,0x4080,0x0024,0x0000,0x0024,0x2800,0xd9d5, + 0x0006,0x0197,0x0006,0xa115,0x3f00,0x3400,0x003f,0xc000, + 0xb600,0x41c1,0x0012,0x5103,0x000c,0xc002,0xdcd6,0x0024, + 0x0019,0xd4c2,0x2802,0x8345,0x0001,0x0988,0x0013,0xd9c3, + 0x6fd6,0x0024,0x0000,0x190d,0x2800,0xdf95,0x0014,0x1b01, + 0x0020,0x480f,0x0000,0xde4e,0x0000,0x190d,0x2820,0x41c0, + 0x0001,0x0988,0x0039,0x324f,0x0001,0x384e,0x2820,0x4a18, + 0xb882,0x0024,0x2a20,0x48c0,0x003f,0xfd00,0xb700,0x0024, + 0x003f,0xf901,0x6010,0x0024,0x0000,0x0024,0x280a,0xc505, + 0x0000,0x190d,0x2a00,0xe180,0x000a,0x8c8f,0x0000,0xe2ce, + 0x000c,0x0981,0x280a,0x71c0,0x002c,0x9d40,0x000a,0x708f, + 0x0000,0xd7ce,0x280a,0xc0d5,0x0012,0x5182,0x6fd6,0x0024, + 0x003f,0xfd81,0x280a,0x8e45,0xb710,0x0024,0x003f,0xf800, + 0xb600,0x0024,0x0015,0xb801,0x6012,0x0024,0x003f,0xfd81, + 0x2802,0x4ec5,0x0001,0x0a88,0xb710,0x0024,0x003f,0xfc01, + 0x6012,0x0024,0x0000,0x0101,0x2801,0x0055,0xffd2,0x0024, + 0x48b2,0x0024,0x4190,0x0024,0x0000,0x190d,0x2801,0x0055, + 0x0030,0x0250,0xb880,0x104c,0x3cf0,0x0024,0x0010,0x5500, + 0xb880,0x23c0,0xb882,0x2000,0x0007,0x8590,0x2914,0xbec0, + 0x0000,0x0440,0x0007,0x8b50,0xb880,0x0024,0x2920,0x0100, + 0x3800,0x0024,0x2920,0x0000,0x0006,0x8a91,0x0000,0x0800, + 0xb880,0xa440,0x003f,0xfd81,0xb710,0xa7c0,0x003f,0xfc01, + 0x6012,0x0024,0x0000,0x0101,0x2801,0x0995,0x0000,0x0024, + 0xffe2,0x0024,0x48b2,0x0024,0x4190,0x0024,0x0000,0x0024, + 0x2801,0x0995,0x0000,0x0024,0x2912,0x2d80,0x0000,0x0780, + 0x4080,0x0024,0x0006,0x8a90,0x2801,0x0995,0x0000,0x01c2, + 0xb886,0x8040,0x3613,0x03c1,0xbcd2,0x0024,0x0030,0x0011, + 0x2800,0xf615,0x003f,0xff42,0xb886,0x8040,0x3009,0x03c1, + 0x0000,0x0020,0xac22,0x0024,0x0000,0x0102,0x6cd2,0x0024, + 0x3e10,0x0024,0x2909,0x8c80,0x3e00,0x4024,0x36f3,0x0024, + 0x3e11,0x8024,0x3e01,0xc024,0x2901,0x2e40,0x0000,0x0201, + 0xf400,0x4512,0x2900,0x0c80,0x3213,0x1b8c,0x3100,0x0024, + 0xb010,0x0024,0x0000,0x0024,0x2801,0x0995,0x0000,0x0024, + 0x291a,0x8a40,0x0000,0x0100,0x2920,0x0200,0x3633,0x0024, + 0x2920,0x0280,0x0000,0x0401,0x408e,0x0024,0x2920,0x0280, + 0x0000,0x0401,0x003f,0xfd81,0xb710,0x4006,0x003f,0xfc01, + 0x6012,0x0024,0x0000,0x0101,0x2801,0x0995,0x0000,0x0024, + 0xffe2,0x0024,0x48b2,0x0024,0x4190,0x0024,0x0000,0x0024, + 0x2801,0x0995,0x0000,0x0024,0x2912,0x2d80,0x0000,0x0780, + 0x4080,0x0024,0x0000,0x01c2,0x2800,0xf205,0x0006,0x8a90, + 0x2a01,0x0980,0x2920,0x0100,0x0000,0x0401,0x0000,0x0180, + 0x2920,0x0200,0x3613,0x0024,0x2920,0x0280,0x3613,0x0024, + 0x0000,0x0401,0x2920,0x0280,0x4084,0x984c,0x0019,0x9d01, + 0x6212,0x0024,0x001e,0x5c01,0x2801,0x04d5,0x6012,0x0024, + 0x0000,0x0024,0x2801,0x06c5,0x0000,0x0024,0x001b,0x5bc1, + 0x6212,0x0024,0x001b,0xdd81,0x2801,0x0a95,0x6012,0x0024, + 0x0000,0x0024,0x2801,0x0a95,0x0000,0x0024,0x0000,0x004d, + 0x000a,0xbf4f,0x280a,0xb880,0x0001,0x07ce,0x0020,0xfb4f, + 0x0000,0x190d,0x0001,0x0ece,0x2920,0xf440,0x3009,0x2bc1, + 0x291a,0x8a40,0x36e3,0x0024,0x0000,0x190d,0x000a,0x708f, + 0x280a,0xcac0,0x0000,0xd7ce,0x0030,0x0017,0x3700,0x4024, + 0x0000,0x0200,0xb102,0x0024,0x0000,0x00c0,0x2801,0x0dc5, + 0x0005,0x4f92,0x2909,0xf840,0x3613,0x2800,0x0006,0x0197, + 0x0006,0xa115,0xb080,0x0024,0x3f00,0x3400,0x0000,0x190d, + 0x000a,0x708f,0x280a,0xc0c0,0x0000,0xd7ce,0x0000,0x004d, + 0x0020,0xfe0f,0x2820,0xfb40,0x0001,0x0fce,0x2801,0x1195, + 0x3009,0x1000,0x6012,0x93cc,0x0000,0x0024,0x2801,0x2c45, + 0x0000,0x0024,0x3413,0x0024,0x34b0,0x0024,0x4080,0x0024, + 0x0000,0x0200,0x2801,0x1495,0xb882,0x0024,0x3453,0x0024, + 0x3009,0x13c0,0x4080,0x0024,0x0000,0x0200,0x2801,0x2c45, + 0x0000,0x0024,0xb882,0x130c,0x0000,0x004d,0x0021,0x058f, + 0x2821,0x0340,0x0001,0x158e,0x2801,0x25d5,0x6012,0x0024, + 0x0000,0x0024,0x2801,0x25d5,0x0000,0x0024,0x34c3,0x184c, + 0x3e13,0xb80f,0xf400,0x4500,0x0026,0x9dcf,0x0001,0x198e, + 0x0000,0xfa0d,0x2926,0x8e80,0x3e10,0x110c,0x36f3,0x0024, + 0x2801,0x25c0,0x36f3,0x980f,0x001c,0xdd00,0x001c,0xd901, + 0x6ec2,0x0024,0x001c,0xdd00,0x2801,0x1c95,0x0018,0xdbc1, + 0x3413,0x184c,0xf400,0x4500,0x2926,0xc640,0x3e00,0x13cc, + 0x2801,0x2380,0x36f3,0x0024,0x6ec2,0x0024,0x003f,0xc000, + 0x2801,0x1f15,0x002a,0x4001,0x3413,0x184c,0xf400,0x4500, + 0x2926,0xafc0,0x3e00,0x13cc,0x2801,0x2380,0x36f3,0x0024, + 0xb400,0x0024,0xd100,0x0024,0x0000,0x0024,0x2801,0x2385, + 0x0000,0x0024,0x3613,0x0024,0x3e11,0x4024,0x2926,0x8540, + 0x3e01,0x0024,0x4080,0x1b8c,0x0000,0x0024,0x2801,0x2385, + 0x0000,0x0024,0x3413,0x184c,0xf400,0x4500,0x2926,0x8e80, + 0x3e10,0x13cc,0x36f3,0x0024,0x3110,0x8024,0x31f0,0xc024, + 0x0000,0x4000,0x0000,0x0021,0x6d06,0x0024,0x3110,0x8024, + 0x2826,0xa8c4,0x31f0,0xc024,0x2a26,0xad00,0x34c3,0x184c, + 0x3410,0x8024,0x3430,0xc024,0x0000,0x4000,0x0000,0x0021, + 0x6d06,0x0024,0x0000,0x0024,0x2801,0x2c54,0x4d06,0x0024, + 0x0000,0x0200,0x2922,0x1885,0x0001,0x2ac8,0x0000,0x0200, + 0x3e10,0x8024,0x2921,0xca80,0x3e00,0xc024,0x291a,0x8a40, + 0x0000,0x0024,0x2922,0x1880,0x36f3,0x0024,0x0000,0x004d, + 0x0021,0x0ecf,0x2821,0x0bc0,0x0001,0x2bce,0x2801,0x0ec0, + 0x3c30,0x4024,0x0000,0x190d,0x0001,0x2d4e,0x2821,0x0f80, + 0x0021,0x420f,0x0000,0x190d,0x3e00,0x0024,0x2801,0xca80, + 0x0021,0x42c8,0x0020,0xcd4f,0x2820,0xc780,0x0001,0x2f0e, + 0x0006,0xf017,0x0000,0x0015,0xb070,0xbc15,0x0001,0x30ce, + 0x0020,0xdf0f,0x2820,0xcd80,0x0000,0x190d,0x3e00,0x23c1, + 0x2801,0xca80,0x0020,0xdfc8,0x3613,0x0024,0x3e10,0xb803, + 0x3e14,0x3811,0x3e11,0x3805,0x3e00,0x3801,0x0007,0xc390, + 0x0006,0xa011,0x3010,0x0444,0x3050,0x4405,0x6458,0x0302, + 0xff94,0x4081,0x0003,0xffc5,0x48b6,0x0024,0xff82,0x0024, + 0x42b2,0x0042,0xb458,0x0003,0x4cd6,0x9801,0xf248,0x1bc0, + 0xb58a,0x0024,0x6de6,0x1804,0x0006,0x0010,0x3810,0x9bc5, + 0x3800,0xc024,0x36f4,0x1811,0x36f0,0x9803,0x283e,0x2d80, + 0x0fff,0xffc3,0x2801,0x4600,0x0000,0x0024,0x3413,0x0024, + 0x2801,0x3a05,0xf400,0x4517,0x2801,0x3e00,0x6894,0x13cc, + 0x37b0,0x184c,0x6090,0x1d51,0x0000,0x0910,0x3f00,0x060c, + 0x3100,0x4024,0x6016,0xb812,0x000c,0x8012,0x2801,0x3c91, + 0xb884,0x0024,0x6894,0x3002,0x0000,0x028d,0x003a,0x5e0f, + 0x0001,0x4e0e,0x2939,0xb0c0,0x3e10,0x93cc,0x4084,0x9bd2, + 0x4282,0x0024,0x0000,0x0040,0x2801,0x4005,0x4292,0x130c, + 0x3443,0x0024,0x2801,0x4145,0x000c,0x8390,0x2a01,0x44c0, + 0x3444,0x0024,0x3073,0x0024,0xc090,0x014c,0x2801,0x44c0, + 0x3800,0x0024,0x000c,0x4113,0xb880,0x2380,0x3304,0x4024, + 0x3800,0x05cc,0xcc92,0x05cc,0x3910,0x0024,0x3910,0x4024, + 0x000c,0x8110,0x3910,0x0024,0x39f0,0x4024,0x3810,0x0024, + 0x38d0,0x4024,0x3810,0x0024,0x38f0,0x4024,0x34c3,0x0024, + 0x3444,0x0024,0x3073,0x0024,0x3063,0x0024,0x3000,0x0024, + 0x4080,0x0024,0x0000,0x0024,0x2839,0x53d5,0x4284,0x0024, + 0x3613,0x0024,0x2801,0x4805,0x6898,0xb804,0x0000,0x0084, + 0x293b,0x1cc0,0x3613,0x0024,0x000c,0x8117,0x3711,0x0024, + 0x37d1,0x4024,0x4e8a,0x0024,0x0000,0x0015,0x2801,0x4ac5, + 0xce9a,0x0024,0x3f11,0x0024,0x3f01,0x4024,0x000c,0x8197, + 0x408a,0x9bc4,0x3f15,0x4024,0x2801,0x4d05,0x4284,0x3c15, + 0x6590,0x0024,0x0000,0x0024,0x2839,0x53d5,0x4284,0x0024, + 0x0000,0x0024,0x2801,0x38d8,0x458a,0x0024,0x2a39,0x53c0, + 0x003e,0x2d4f,0x283a,0x5ed5,0x0001,0x318e,0x000c,0x4653, + 0x0000,0x0246,0xffac,0x0c01,0x48be,0x0024,0x4162,0x4546, + 0x6642,0x4055,0x3501,0x8024,0x0000,0x0087,0x667c,0x4057, + 0x000c,0x41d5,0x283a,0x62d5,0x3501,0x8024,0x667c,0x1c47, + 0x3701,0x8024,0x283a,0x62d5,0xc67c,0x0024,0x0000,0x0024, + 0x283a,0x62c5,0x0000,0x0024,0x2a3a,0x5ec0,0x3009,0x3851, + 0x3e14,0xf812,0x3e12,0xb817,0x3e11,0x8024,0x0006,0x0293, + 0x3301,0x8024,0x468c,0x3804,0x0006,0xa057,0x2801,0x5a04, + 0x0006,0x0011,0x469c,0x0024,0x3be1,0x8024,0x2801,0x5a15, + 0x0006,0xc392,0x3311,0x0024,0x33f1,0x2844,0x3009,0x2bc4, + 0x0030,0x04d2,0x3311,0x0024,0x3a11,0x0024,0x3201,0x8024, + 0x003f,0xfc04,0xb64c,0x0fc4,0xc648,0x0024,0x3a01,0x0024, + 0x3111,0x1fd3,0x6498,0x07c6,0x868c,0x2444,0x0023,0xffd2, + 0x3901,0x8e06,0x0030,0x0551,0x3911,0x8e06,0x3961,0x9c44, + 0xf400,0x44c6,0xd46c,0x1bc4,0x36f1,0xbc13,0x2801,0x6395, + 0x36f2,0x9817,0x002b,0xffd2,0x3383,0x188c,0x3e01,0x8c06, + 0x0006,0xa097,0x3009,0x1c12,0x3213,0x0024,0x468c,0xbc12, + 0x002b,0xffd2,0xf400,0x4197,0x2801,0x6084,0x3713,0x0024, + 0x2801,0x60c5,0x37e3,0x0024,0x3009,0x2c17,0x3383,0x0024, + 0x3009,0x0c06,0x468c,0x4197,0x0006,0xa052,0x2801,0x62c4, + 0x3713,0x2813,0x2801,0x6305,0x37e3,0x0024,0x3009,0x2c17, + 0x36f1,0x8024,0x36f2,0x9817,0x36f4,0xd812,0x2100,0x0000, + 0x3904,0x5bd1,0x2a01,0x53ce,0x3e11,0x7804,0x0030,0x0257, + 0x3701,0x0024,0x0013,0x4d05,0xd45b,0xe0e1,0x0007,0xc795, + 0x2801,0x6b15,0x0fff,0xff45,0x3511,0x184c,0x4488,0xb808, + 0x0006,0x8a97,0x2801,0x6ac5,0x3009,0x1c40,0x3511,0x1fc1, + 0x0000,0x0020,0xac52,0x1405,0x6ce2,0x0024,0x0000,0x0024, + 0x2801,0x6ac1,0x68c2,0x0024,0x291a,0x8a40,0x3e10,0x0024, + 0x2921,0xca80,0x3e00,0x4024,0x36f3,0x0024,0x3009,0x1bc8, + 0x36f0,0x1801,0x3601,0x5804,0x3e13,0x780f,0x3e13,0xb808, + 0x0008,0x9b0f,0x0001,0x6dce,0x2908,0x9300,0x0000,0x004d, + 0x36f3,0x9808,0x2000,0x0000,0x36f3,0x580f,0x0007,0x81d7, + 0x3711,0x8024,0x3711,0xc024,0x3700,0x0024,0x0000,0x2001, + 0xb012,0x0024,0x0034,0x0000,0x2801,0x7105,0x0000,0x01c1, + 0x0030,0x0117,0x3f00,0x0024,0x0014,0xc000,0x0000,0x01c1, + 0x4fce,0x0024,0xffea,0x0024,0x48b6,0x0024,0x4384,0x4097, + 0xb886,0x45c6,0xfede,0x0024,0x4db6,0x0024,0x466c,0x0024, + 0x0006,0xc610,0x8dd6,0x8007,0x0000,0x00c6,0xff6e,0x0024, + 0x48b2,0x0024,0x0034,0x2406,0xffee,0x0024,0x2914,0xaa80, + 0x40b2,0x0024,0xf1c6,0x0024,0xf1d6,0x0024,0x0000,0x0201, + 0x8d86,0x0024,0x61de,0x0024,0x0006,0xc612,0x2801,0x7781, + 0x0006,0xc713,0x4c86,0x0024,0x2912,0x1180,0x0006,0xc351, + 0x0006,0x0210,0x2912,0x0d00,0x3810,0x984c,0xf200,0x2043, + 0x2808,0xa000,0x3800,0x0024,0x3e12,0xb817,0x3e12,0x3815, + 0x3e05,0xb814,0x3625,0x0024,0x0000,0x800a,0x3e10,0x3801, + 0x3e10,0xb803,0x3e11,0x3805,0x3e11,0xb807,0x3e14,0x3811, + 0x0006,0xa090,0x2912,0x0d00,0x3e14,0xc024,0x4088,0x8000, + 0x4080,0x0024,0x0007,0x90d1,0x2801,0x7f45,0x0000,0x0024, + 0x0007,0x9051,0x3100,0x4024,0x4100,0x0024,0x3900,0x0024, + 0x0007,0x90d1,0x0004,0x0000,0x31f0,0x4024,0x6014,0x0400, + 0x0000,0x0024,0x2801,0x8391,0x4080,0x0024,0x0000,0x0000, + 0x2801,0x8305,0x0000,0x0024,0x0007,0x9053,0x3300,0x0024, + 0x4080,0x0024,0x0000,0x0000,0x2801,0x8398,0x0000,0x0024, + 0x0007,0x9051,0x3900,0x0024,0x3200,0x504c,0x6410,0x0024, + 0x3cf0,0x0000,0x4080,0x0024,0x0006,0xc691,0x2801,0x9c45, + 0x3009,0x0400,0x0000,0x1001,0x0007,0x9051,0x3100,0x0024, + 0x6012,0x0024,0x0006,0xc6d0,0x2801,0x9089,0x003f,0xe000, + 0x0006,0xc693,0x3900,0x0c00,0x3009,0x0001,0x6014,0x0024, + 0x0007,0x1ad0,0x2801,0x9095,0x3009,0x0000,0x4080,0x0024, + 0x0000,0x0301,0x2801,0x8a85,0x4090,0x0024,0x0000,0x0024, + 0x2801,0x8b95,0x0000,0x0024,0x3009,0x0000,0xc012,0x0024, + 0x2801,0x9080,0x3009,0x2001,0x3009,0x0000,0x6012,0x0024, + 0x0000,0x0341,0x2801,0x8d95,0x0000,0x0024,0x6190,0x0024, + 0x2801,0x9080,0x3009,0x2000,0x6012,0x0024,0x0000,0x0381, + 0x2801,0x8f55,0x0000,0x0024,0x6190,0x0024,0x2801,0x9080, + 0x3009,0x2000,0x6012,0x0024,0x0000,0x00c0,0x2801,0x9095, + 0x0000,0x0024,0x3009,0x2000,0x0006,0xa090,0x3009,0x0000, + 0x4080,0x0024,0x0000,0x0081,0x2801,0x9555,0x0007,0x8c13, + 0x3300,0x104c,0xb010,0x0024,0x0002,0x8001,0x2801,0x97c5, + 0x34f0,0x0024,0x2801,0x9540,0x0000,0x0024,0x0006,0xc351, + 0x3009,0x0000,0x6090,0x0024,0x3009,0x2000,0x2900,0x0b80, + 0x3009,0x0405,0x0006,0xc6d1,0x0006,0xc690,0x3009,0x0000, + 0x3009,0x0401,0x6014,0x0024,0x0006,0xa093,0x2801,0x93d1, + 0xb880,0x0024,0x2801,0xa500,0x3009,0x2c00,0x4040,0x0024, + 0x6012,0x0024,0x0006,0xc6d0,0x2801,0xa518,0x0000,0x0024, + 0x0006,0xc693,0x3009,0x0c00,0x3009,0x0001,0x6014,0x0024, + 0x0006,0xc350,0x2801,0xa501,0x0000,0x0024,0x6090,0x0024, + 0x3009,0x2c00,0x3009,0x0005,0x2900,0x0b80,0x0001,0xa508, + 0x3009,0x0400,0x4080,0x0024,0x0003,0x8000,0x2801,0xa505, + 0x0000,0x0024,0x6400,0x0024,0x0000,0x0081,0x2801,0xa509, + 0x0000,0x0024,0x0007,0x8c13,0x3300,0x0024,0xb010,0x0024, + 0x0006,0xc650,0x2801,0xa515,0x0000,0x0024,0x0001,0x0002, + 0x3413,0x0000,0x3009,0x0401,0x4010,0x8406,0x0000,0x0281, + 0xa010,0x13c1,0x4122,0x0024,0x0000,0x03c2,0x6122,0x8002, + 0x462c,0x0024,0x469c,0x0024,0xfee2,0x0024,0x48be,0x0024, + 0x6066,0x8400,0x0006,0xc350,0x2801,0xa501,0x0000,0x0024, + 0x4090,0x0024,0x3009,0x2400,0x2900,0x0b80,0x3009,0x0005, + 0x0007,0x1b50,0x2912,0x0d00,0x3613,0x0024,0x3a00,0x0380, + 0x4080,0x0024,0x0000,0x00c1,0x2801,0xadc5,0x3009,0x0000, + 0xb010,0x008c,0x4192,0x0024,0x6012,0x0024,0x0006,0xf051, + 0x2801,0xabd8,0x3009,0x0400,0x0007,0x1fd1,0x30e3,0x0400, + 0x4080,0x0024,0x0000,0x0301,0x2801,0xadc5,0x3009,0x0000, + 0xb010,0x0024,0x0000,0x0101,0x6012,0x0024,0x0006,0xf051, + 0x2801,0xadd5,0x0000,0x0024,0x3023,0x0400,0xf200,0x184c, + 0xb880,0xa400,0x3009,0x2000,0x3009,0x0441,0x3e10,0x4402, + 0x2909,0xa9c0,0x3e10,0x8024,0x36e3,0x0024,0x36f4,0xc024, + 0x36f4,0x1811,0x36f1,0x9807,0x36f1,0x1805,0x36f0,0x9803, + 0x36f0,0x1801,0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815, + 0x2000,0x0000,0x36f2,0x9817,0x3613,0x0024,0x3e12,0xb817, + 0x3e12,0x3815,0x3e05,0xb814,0x3615,0x0024,0x0000,0x800a, + 0x3e10,0x3801,0x3e10,0xb803,0x3e11,0x3805,0x3e11,0xf810, + 0x0001,0x0010,0x3e14,0x7812,0xb882,0x3813,0x2914,0xbec0, + 0x0000,0x2200,0xb886,0x12cc,0x2801,0xba40,0x3454,0x8024, + 0x0001,0x0000,0x3000,0x984c,0x4234,0xb843,0xf400,0x4095, + 0x003b,0xffc2,0x3500,0x4024,0xb122,0x0842,0x4010,0x0bc3, + 0x4010,0x0024,0x4010,0x0024,0x4010,0x0024,0x4d82,0x4011, + 0x2938,0x0600,0xf400,0x4450,0x3223,0x184c,0x3210,0x8024, + 0x32d0,0xc024,0x2938,0x0600,0x4d82,0x4450,0x3243,0x1bc3, + 0x6396,0x0024,0x0005,0xdf90,0x3000,0x0024,0x6302,0x0024, + 0x0005,0xe110,0x2801,0xb511,0x0000,0x0024,0x2801,0xc0c0, + 0x4086,0x0024,0x3200,0x930c,0x6398,0x1111,0x4244,0x0844, + 0xf400,0x4095,0x3500,0x584c,0x4438,0x0805,0x453a,0x4115, + 0x3500,0x8024,0x6122,0x4155,0x4280,0x1404,0x0001,0x0002, + 0x4244,0x0024,0x4244,0x0024,0x4244,0x0024,0x4244,0x0024, + 0x2938,0x2f80,0xf400,0x4090,0x6396,0x0024,0x0005,0xdf50, + 0x3000,0x0024,0x6302,0x0024,0x0005,0xe0d2,0x2801,0xbc51, + 0x0000,0x0381,0x3073,0x0024,0x3023,0x0024,0x3000,0x0024, + 0x6012,0x0024,0x0001,0x2212,0x2801,0xc5d5,0x0005,0x1453, + 0x0001,0x0011,0x3093,0x184c,0x3000,0x4024,0x2900,0x7680, + 0x3e00,0x4024,0x2801,0xc7c0,0x36f3,0x0024,0x0001,0x0011, + 0x0005,0xe3c1,0x3613,0x024c,0x3e10,0x4024,0x3000,0x8024, + 0x2900,0x5a00,0x3e00,0x8024,0x36e3,0x0024,0x36f4,0xc024, + 0x36f4,0x5812,0x36f1,0xd810,0x36f1,0x1805,0x36f0,0x9803, + 0x36f0,0x1801,0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815, + 0x2000,0x0000,0x36f2,0x9817,0x3613,0x0024,0x3e12,0xb817, + 0x3e12,0x3815,0x3e05,0xb814,0x3625,0x0024,0x0000,0x800a, + 0x3e10,0x3801,0x0000,0x00c1,0xb880,0xb803,0x3e10,0x904c, + 0x3e11,0x3806,0x3e11,0xf810,0x0006,0xf450,0x3e14,0x7812, + 0x3e14,0xc024,0x3cf0,0x2080,0x3009,0x23c0,0x3009,0x2380, + 0x0000,0x0640,0x3009,0x2000,0x2921,0x9440,0x0000,0x00c0, + 0x2921,0xdd40,0x3613,0x0024,0xf400,0x4004,0x0000,0x01c0, + 0x6400,0x0024,0x0000,0x00c0,0x2801,0xeac5,0x0000,0x01c1, + 0x6412,0x4100,0x0006,0x0581,0x2801,0xe041,0x4412,0x0024, + 0xf400,0x4057,0x3702,0x0024,0x2000,0x0000,0x0000,0x0024, + 0x0000,0x0641,0x0006,0xf410,0x3613,0x0000,0x6012,0x0024, + 0x0000,0x0024,0x2801,0xd615,0x0000,0x0024,0x3009,0x2004, + 0x2900,0xb3c0,0x3e01,0x0024,0x2801,0xe040,0x36f3,0x0024, + 0x0000,0x0641,0x0006,0xf410,0x3613,0x0000,0x6012,0x0024, + 0x0000,0x0024,0x2801,0xd915,0x0000,0x0024,0x3009,0x2004, + 0x2900,0xa1c0,0x3e01,0x0024,0x2801,0xe040,0x36f3,0x0024, + 0x0006,0xf450,0x3613,0x0000,0x6090,0x3804,0x2900,0xb3c0, + 0x3009,0x2000,0x2801,0xe040,0x36f3,0x0024,0x2923,0x4f00, + 0x0007,0x2050,0x2801,0xe040,0x3009,0x2000,0x2923,0x7580, + 0x0001,0xe048,0x34d3,0x184c,0x3430,0x0024,0x2922,0x4fc0, + 0x3e00,0x0024,0x2801,0xe040,0x36f3,0x0024,0x0007,0x2050, + 0x0000,0x3fc0,0x3613,0x0024,0x2923,0x8480,0x3e00,0x0024, + 0x36f3,0x2000,0x0000,0x1800,0x3413,0x0024,0xf400,0x4510, + 0x34f0,0x4024,0x6192,0x0024,0x6014,0x2001,0x0007,0x2051, + 0x2801,0xe2c1,0x0000,0x0280,0x3009,0x2400,0x3009,0x0400, + 0x4080,0x0024,0x0006,0xf352,0x2801,0xebd5,0x3009,0x0842, + 0x3009,0x0bc3,0x4d86,0x0024,0x0000,0x0201,0x2801,0xe705, + 0x0030,0x0013,0x0006,0x8a93,0x3009,0x0c40,0x3009,0x0fc1, + 0x6cde,0x0024,0x0000,0x0201,0x2801,0xebc1,0x0030,0x0013, + 0x3300,0x0024,0xb010,0x0024,0x0000,0x0100,0x2801,0xebd5, + 0x0000,0x00c1,0x2921,0x9440,0x3613,0x0024,0x2921,0xdd40, + 0x3613,0x0024,0xf400,0x4004,0x0000,0x01c0,0x6400,0x0024, + 0x0000,0x01c1,0x2801,0xd215,0x0000,0x00c0,0x2921,0x9440, + 0x3613,0x0024,0x2921,0xc300,0x0000,0x0024,0x36f4,0xc024, + 0x36f4,0x5812,0x36f1,0xd810,0x36f1,0x1806,0x36f0,0x9803, + 0x36f0,0x1801,0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815, + 0x2000,0x0000,0x36f2,0x9817,0x3613,0x0024,0x3e12,0xb817, + 0x3e12,0x3815,0x3e05,0xb814,0x3615,0x0024,0x0000,0x800a, + 0x3e10,0x7802,0x3e10,0xf804,0x3e11,0x7810,0x3e14,0x7812, + 0x3e14,0xc024,0x2922,0x1880,0x0000,0x0180,0x2921,0xdd40, + 0x6892,0x184c,0x4080,0x0024,0x0000,0x0024,0x2801,0xf3c5, + 0x0000,0x0024,0x2802,0x2f40,0xb880,0x0024,0x2921,0xdd40, + 0x6892,0x184c,0x4080,0x0024,0x0000,0x0181,0x2801,0xf5d5, + 0x0000,0x0024,0x2802,0x2f40,0xb880,0x0024,0x2921,0xdd40, + 0x3613,0x0024,0x4080,0x0024,0x0000,0x0101,0x2801,0xf7c5, + 0x0000,0x0024,0x2802,0x2f40,0xb880,0x0024,0x2921,0xdd40, + 0x3613,0x0024,0x4080,0x0024,0x0000,0x00c1,0x2801,0xf9c5, + 0x0000,0x0024,0x2802,0x2f40,0xb880,0x0024,0x2921,0xdd40, + 0x3613,0x0024,0x4080,0x0024,0x0000,0x0141,0x2801,0xfbc5, + 0x0006,0xf250,0x2802,0x2f40,0xb880,0x0024,0x2921,0xdd40, + 0x3613,0x0024,0x0000,0x0101,0x2921,0xdd40,0x3613,0x2000, + 0x0000,0x03c1,0x6012,0x03cc,0x3613,0x2000,0x2802,0x0115, + 0x0006,0xf051,0x3009,0x3841,0x2921,0xdd40,0x0000,0x0201, + 0xb080,0x024c,0x3009,0x2000,0x2921,0xdd40,0x0000,0x0401, + 0x3009,0x0401,0xc100,0x0024,0x2802,0x0240,0x3009,0x2400, + 0x3009,0x0002,0x2920,0x5d00,0x3e00,0x8024,0x36f3,0x024c, + 0x3009,0x2000,0x0000,0x0101,0x2921,0xdd40,0x3613,0x0024, + 0x0000,0x0141,0x3013,0x0024,0x3009,0x21c0,0x3009,0x0000, + 0x6012,0x0024,0x0007,0x1b51,0x2802,0x1395,0x0000,0x0101, + 0x0007,0xc251,0x2921,0xdd40,0x3613,0x0024,0x0000,0x03c1, + 0x6012,0x2400,0x3100,0x984c,0x2802,0x0ad5,0x0007,0xc292, + 0x3009,0x3841,0x2921,0xdd40,0x0000,0x0201,0x4082,0x044c, + 0xb080,0x0024,0x3910,0x0024,0x39f0,0x7841,0x2921,0xdd40, + 0x0000,0x0401,0x3211,0x1bcc,0xb182,0x0bc5,0xcec2,0x0024, + 0x3a10,0x0024,0x2802,0x0c00,0x3af0,0x4024,0x2920,0x5d00, + 0x3e00,0x8024,0x36f3,0x044c,0x3910,0x0024,0x39f0,0x4024, + 0x0007,0x1b52,0x0000,0x0141,0x2921,0xdd40,0x3613,0x0024, + 0x3111,0x2240,0xb880,0x03cc,0x31f1,0x6800,0xb182,0x8000, + 0x6ce6,0x0024,0x002e,0xe002,0x2802,0x1a85,0xb886,0x0024, + 0x6de2,0x0b8c,0x0000,0x00c1,0x2802,0x1251,0x3009,0x0800, + 0xb010,0x0024,0x4192,0x0024,0x6012,0x0024,0x0007,0x1b52, + 0x2802,0x1258,0x0000,0x0024,0x6890,0xa004,0x2802,0x1a80, + 0x3009,0x2800,0x4e82,0x0024,0x0000,0x0020,0xf2c2,0x0024, + 0x2802,0x1a80,0x3009,0x2000,0x3009,0x07c0,0x4080,0x0024, + 0x0000,0x0024,0x2802,0x1a85,0x0000,0x0024,0x3093,0x0400, + 0x4080,0x03cc,0x0017,0x7001,0x2802,0x1995,0x3009,0x0000, + 0x6012,0x0024,0x0007,0x1b50,0x2802,0x1901,0xb880,0x0024, + 0x0000,0x00c1,0x31f3,0x0024,0x3009,0x0400,0xb010,0x0024, + 0x4080,0x0024,0x0000,0x0000,0x2802,0x1989,0x0000,0x0024, + 0x2802,0x1a80,0x3009,0x2000,0x0006,0xf050,0x3009,0x0000, + 0x4000,0x0024,0x3009,0x2000,0x0000,0x0081,0x0006,0xf250, + 0x3009,0x0000,0x6012,0x0024,0x0007,0xc151,0x2802,0x1cc5, + 0x0000,0x0024,0x2802,0x2f40,0xb880,0x0024,0x2921,0xdd40, + 0x6892,0x184c,0x6892,0x2400,0x2921,0xdd40,0x3009,0x184c, + 0x4080,0x0024,0x0000,0x0381,0x2802,0x1f85,0x0000,0x0024, + 0x2921,0xdd40,0x3613,0x0024,0x2921,0xdd40,0x6892,0x184c, + 0x4080,0x0024,0x0000,0x0240,0x2802,0x2205,0x0000,0x00c1, + 0x2921,0xdd40,0x6892,0x184c,0x0000,0x00c1,0x0000,0x0240, + 0x0006,0x0752,0x2922,0x1880,0x3613,0x0024,0x2921,0xdd40, + 0x3613,0x0024,0x4080,0x2800,0x0000,0x0201,0x2802,0x2515, + 0x3613,0x0024,0x2921,0xdd40,0x0002,0x2788,0x3613,0x0024, + 0x4090,0x1bcc,0x0000,0x0241,0x2802,0x2715,0x0006,0x07d3, + 0x2921,0xdd40,0x3613,0x0024,0x2802,0x2780,0x3b00,0x0024, + 0x2802,0x2f40,0xb880,0x0024,0x0006,0x0813,0xb880,0x184c, + 0x2921,0xdd40,0x6892,0x2c00,0x4080,0x0024,0x0006,0x0810, + 0x2802,0x2d05,0x0000,0x4003,0x3000,0x184c,0xff86,0x0024, + 0x48b6,0x0024,0x2921,0xdd40,0x6892,0x2002,0x0000,0x0201, + 0x2921,0xdd40,0x4088,0x184c,0x3000,0x4024,0x4100,0x0024, + 0x4488,0x2000,0x0000,0x4003,0x2802,0x2995,0x0006,0x0810, + 0x2921,0xdd40,0x6892,0x184c,0x4080,0x0024,0x0000,0x0201, + 0x2802,0x2f05,0x0000,0x0024,0x2921,0xdd40,0x3613,0x0024, + 0x6890,0x0024,0x36f4,0xc024,0x36f4,0x5812,0x36f1,0x5810, + 0x36f0,0xd804,0x36f0,0x5802,0x3405,0x9014,0x36f3,0x0024, + 0x36f2,0x1815,0x2000,0x0000,0x36f2,0x9817,0x3613,0x0024, + 0x3e12,0xb817,0x3e12,0x3815,0x3e05,0xb814,0x3635,0x0024, + 0x0000,0x800a,0x3e10,0x3801,0x0000,0x0081,0x3e10,0xb803, + 0x3e11,0x3805,0x3e11,0xb807,0x3e14,0x3811,0x0006,0xf250, + 0x3e04,0xb813,0x3009,0x0000,0x6012,0x0024,0x003f,0xff01, + 0x2802,0x3a05,0x0006,0x07d1,0x6194,0x0400,0x0000,0x0041, + 0xa020,0x984c,0x0000,0x01c2,0xfe02,0x0024,0x48b2,0x0024, + 0x3e10,0x0024,0x2921,0xca80,0x3e00,0x4024,0x3100,0x5bcc, + 0x2921,0xdd40,0xb122,0x0024,0x291a,0x8a40,0x0002,0x4c08, + 0x0007,0x2052,0x0006,0x8a93,0x3100,0x184c,0xa010,0x0024, + 0x0000,0x0041,0x6090,0x0024,0x2922,0x1880,0x6090,0x0024, + 0xb880,0x010c,0x3100,0x2800,0xfe02,0x8c44,0x3613,0x0fc5, + 0x4eb2,0x0024,0x3009,0x2040,0x0000,0x00c0,0x2921,0xbb80, + 0x3e00,0x23c1,0x0000,0x01c1,0x6012,0x0024,0x0003,0xf680, + 0x2802,0x4055,0x0000,0x0024,0x36f3,0x0024,0x291a,0x8a40, + 0x0002,0x4c08,0x2901,0xca80,0x3e00,0x0024,0x3413,0x0040, + 0x36f3,0x03c1,0x3009,0x0c44,0x3009,0x0fc5,0x6ce2,0x0024, + 0x3c10,0x0024,0xbc82,0x33c1,0x3410,0x2040,0x34e0,0x63c1, + 0x4c82,0x0024,0x0000,0x0024,0x2802,0x4909,0x4c82,0x0024, + 0x0000,0x01c4,0x4c86,0x184c,0x003f,0xff40,0xad06,0x0024, + 0x3e10,0x8024,0x2921,0xca80,0x3e00,0xc024,0x36f3,0x0024, + 0x2921,0x9440,0x0000,0x0080,0xb88a,0x104c,0x3410,0x0c46, + 0x34e0,0x4fc7,0xbce2,0x984c,0x4cf2,0x0024,0x3e10,0x0024, + 0x2921,0x9780,0x3e00,0x4024,0x2802,0x4b00,0x36e3,0x0024, + 0x0000,0x0024,0x2802,0x4b18,0x0000,0x0024,0x4ce6,0x184c, + 0x3e10,0x8024,0x2921,0x9780,0x3e00,0xc024,0x36e3,0x0024, + 0x291a,0x8a40,0x0000,0x0100,0x2922,0x1880,0x3613,0x0024, + 0x36f4,0x9813,0x36f4,0x1811,0x36f1,0x9807,0x36f1,0x1805, + 0x36f0,0x9803,0x36f0,0x1801,0x3405,0x9014,0x36f3,0x0024, + 0x36f2,0x1815,0x2000,0x0000,0x36f2,0x9817,0x3613,0x0024, + 0x3e12,0xb817,0x3e12,0x3815,0x3e05,0xb814,0x3635,0x0024, + 0x0000,0x800a,0x3e10,0x7802,0x3e10,0xf804,0x3e14,0x3811, + 0x0006,0x8a91,0x0006,0x0790,0x3e14,0xb813,0x0007,0x8b52, + 0x3e13,0xf80e,0x3e03,0x504c,0xb880,0x0024,0x3c00,0x33c0, + 0x2921,0xb380,0x3800,0x0024,0x2920,0x6a00,0x0030,0x0253, + 0x0000,0x0400,0xb882,0xa440,0xb880,0xa7c1,0x3a00,0x0024, + 0x0013,0x1040,0x3b00,0x0024,0x0000,0x0180,0x2922,0x1880, + 0x3613,0x0024,0x4f82,0x0024,0x003f,0xf801,0xb010,0x0024, + 0x0015,0xb801,0x6012,0x0024,0x0007,0x8a50,0x2802,0x73d5, + 0x0000,0x0201,0x0006,0x8a90,0x2921,0xdd40,0x3613,0x0024, + 0x003f,0xfe00,0x3613,0x0042,0xb882,0x83c3,0xbdc2,0x0024, + 0x3009,0x2040,0x2921,0xdd40,0x6892,0xa3c1,0x4080,0x0024, + 0x0000,0x0024,0x2802,0x5e95,0x0000,0x0024,0x2901,0xee80, + 0x0006,0x0791,0x4080,0x2400,0x0006,0xf052,0x2802,0x5e85, + 0x0000,0x0024,0x3613,0x0841,0x3e10,0x4802,0x2909,0xa9c0, + 0x3e10,0x8024,0x36e3,0x0024,0x0006,0x0791,0x3100,0x0024, + 0x4080,0x0024,0x0000,0x0024,0x2921,0xc305,0x0002,0x6f48, + 0x0006,0x0752,0xb880,0x104c,0x3613,0x33c0,0x2922,0x1880, + 0x0000,0x0100,0x3200,0x0024,0x4080,0x0024,0x0000,0x0024, + 0x2902,0x31d5,0x0002,0x67c8,0x0006,0x07d3,0xb880,0x0024, + 0x0006,0x07d0,0x3b00,0x0024,0x0000,0x0201,0x2921,0xdd40, + 0x3613,0x0024,0x0000,0x00c1,0x3423,0x0024,0x3c00,0x0024, + 0xa010,0x0001,0x4100,0x0024,0x0000,0x3fc1,0x3800,0x0024, + 0x34e0,0x0024,0x6012,0x0024,0x0006,0x07d0,0x2802,0x6385, + 0x0000,0x0024,0x2902,0x31c0,0x0000,0x0024,0x0006,0x0810, + 0x3000,0x0024,0x4080,0x0024,0x0000,0x0024,0x2802,0x6ec5, + 0x0000,0x0024,0xf200,0x184c,0xf200,0x0024,0xf200,0x0024, + 0xb182,0x3840,0x2921,0xca80,0x3e00,0x4024,0x0000,0x01c1, + 0x291a,0x8a40,0x36e3,0x0024,0xb888,0x4411,0x3000,0x0024, + 0xb012,0x0024,0x6410,0x2001,0x0000,0x0024,0x2802,0x6ec1, + 0x0000,0x0024,0x4192,0x0024,0x2402,0x6e81,0x0000,0x0024, + 0x2921,0xdd40,0x6892,0x184c,0x6498,0x0024,0x2921,0xc300, + 0x0000,0x0024,0x291a,0x8a40,0x3413,0x0024,0xf400,0x4512, + 0x0030,0x0010,0x0000,0x0201,0x2900,0x0c80,0x34f3,0x0024, + 0x3000,0x0024,0xb010,0x0024,0x0000,0x0100,0x2802,0x8095, + 0x0000,0x0401,0x2922,0x1880,0x3613,0x0024,0x2921,0xdd40, + 0x3613,0x0024,0x2802,0x7ec0,0xb78e,0x4006,0x3000,0x0024, + 0x4080,0x0024,0x0000,0x0024,0x2802,0x8089,0xf292,0x0024, + 0x6012,0x904c,0x0006,0x0791,0x2802,0x7718,0x3100,0x0024, + 0x3000,0x0024,0x4090,0x0024,0x3800,0x0024,0x3100,0x0024, + 0x4080,0x4512,0x34f3,0x184c,0x2802,0x79d5,0x0007,0x0553, + 0x36f3,0x0800,0x6090,0x0024,0x4080,0xa800,0x0000,0x0024, + 0x2802,0x8088,0x0000,0x0024,0x3009,0x184c,0x0006,0xf312, + 0x4ffe,0xb841,0x2921,0xdd40,0x6892,0x41c7,0xb182,0x9bcc, + 0x291a,0x8a40,0xcfce,0x0024,0x0004,0x0001,0xb880,0x010c, + 0x6890,0x2000,0x0007,0x80d0,0xb880,0xa800,0x3000,0x2c00, + 0x0007,0x1ad0,0xff82,0x0024,0x48b2,0x0024,0xf400,0x4040, + 0x0000,0x03c1,0xb010,0x0024,0x3009,0x2000,0x0000,0x0201, + 0x0030,0x0010,0x3000,0x0024,0xb010,0x0024,0x0000,0x0180, + 0x2802,0x55c5,0x0000,0x0024,0x6890,0x1bcd,0x36f3,0xd80e, + 0x36f4,0x9813,0x36f4,0x1811,0x36f0,0xd804,0x36f0,0x5802, + 0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815,0x2000,0x0000, + 0x36f2,0x9817,0x3613,0x0024,0x3e12,0xb817,0x3e12,0x3815, + 0x3e05,0xb814,0x3615,0x0024,0x0000,0x800a,0x3e10,0xb803, + 0x0012,0x5103,0x3e11,0x3805,0x3e11,0xb807,0x3e14,0x380d, + 0x0030,0x0250,0x3e13,0xf80e,0xbe8b,0x83e0,0x290c,0x4840, + 0x3613,0x0024,0x290c,0x4840,0x4086,0x984c,0x0000,0x00ce, + 0x2402,0x8a8e,0x3009,0x1bc0,0x0000,0x01c3,0xae3a,0x184c, + 0x0000,0x0043,0x3009,0x3842,0x290c,0x4840,0x3009,0x3840, + 0x4084,0x9bc0,0xfe26,0x9bc2,0xceba,0x0024,0x4e8e,0x0024, + 0x4e9a,0x0024,0x4f8e,0x0024,0x0000,0x0102,0x2802,0x8fc5, + 0x0030,0x0010,0x0000,0x0206,0x3613,0x0024,0x290c,0x4840, + 0x3009,0x3840,0x3000,0xdbc0,0xb366,0x0024,0x0000,0x0024, + 0x2802,0x8fd5,0x4e8e,0x0024,0x4e9a,0x0024,0x4f8e,0x0024, + 0x0030,0x0010,0x2802,0x8c95,0x0000,0x0206,0x36f3,0xd80e, + 0x36f4,0x180d,0x36f1,0x9807,0x36f1,0x1805,0x36f0,0x9803, + 0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815,0x2000,0x0000, + 0x36f2,0x9817, + 0x0007,0x0001, /*copy 1*/ + 0x802e, + 0x0006,0x0002, /*copy 2*/ + 0x2801,0x6480, + 0x0007,0x0001, /*copy 1*/ + 0x8030, + 0x0006,0x0002, /*copy 2*/ + 0x2800,0x1b40, + 0x0007,0x0001, /*copy 1*/ + 0x8028, + 0x0006,0x0002, /*copy 2*/ + 0x2a00,0x144e, + 0x0007,0x0001, /*copy 1*/ + 0x8032, + 0x0006,0x0002, /*copy 2*/ + 0x2801,0x7980, + 0x0007,0x0001, /*copy 1*/ + 0x3580, + 0x0006, 0x8038, 0x0000, /*Rle(56)*/ + 0x0007,0x0001, /*copy 1*/ + 0xfab3, + 0x0006,0x01a4, /*copy 420*/ + 0x0001,0x0001,0x0001,0x0001,0x0000,0xffff,0xfffe,0xfffb, + 0xfff9,0xfff5,0xfff2,0xffed,0xffe8,0xffe3,0xffde,0xffd8, + 0xffd3,0xffce,0xffca,0xffc7,0xffc4,0xffc4,0xffc5,0xffc7, + 0xffcc,0xffd3,0xffdc,0xffe6,0xfff3,0x0001,0x0010,0x001f, + 0x002f,0x003f,0x004e,0x005b,0x0066,0x006f,0x0074,0x0075, + 0x0072,0x006b,0x005f,0x004f,0x003c,0x0024,0x0009,0xffed, + 0xffcf,0xffb0,0xff93,0xff77,0xff5f,0xff4c,0xff3d,0xff35, + 0xff34,0xff3b,0xff4a,0xff60,0xff7e,0xffa2,0xffcd,0xfffc, + 0x002e,0x0061,0x0094,0x00c4,0x00f0,0x0114,0x0131,0x0144, + 0x014b,0x0146,0x0134,0x0116,0x00eb,0x00b5,0x0075,0x002c, + 0xffde,0xff8e,0xff3d,0xfeef,0xfea8,0xfe6a,0xfe39,0xfe16, + 0xfe05,0xfe06,0xfe1b,0xfe43,0xfe7f,0xfecd,0xff2a,0xff95, + 0x0009,0x0082,0x00fd,0x0173,0x01e1,0x0242,0x0292,0x02cc, + 0x02ec,0x02f2,0x02da,0x02a5,0x0253,0x01e7,0x0162,0x00c9, + 0x0021,0xff70,0xfebc,0xfe0c,0xfd68,0xfcd5,0xfc5b,0xfc00, + 0xfbc9,0xfbb8,0xfbd2,0xfc16,0xfc85,0xfd1b,0xfdd6,0xfeae, + 0xff9e,0x009c,0x01a0,0x02a1,0x0392,0x046c,0x0523,0x05b0, + 0x060a,0x062c,0x0613,0x05bb,0x0526,0x0456,0x0351,0x021f, + 0x00c9,0xff5a,0xfde1,0xfc6a,0xfb05,0xf9c0,0xf8aa,0xf7d0, + 0xf73d,0xf6fa,0xf70f,0xf77e,0xf848,0xf96b,0xfadf,0xfc9a, + 0xfe8f,0x00ad,0x02e3,0x051a,0x073f,0x0939,0x0af4,0x0c5a, + 0x0d59,0x0de1,0x0de5,0x0d5c,0x0c44,0x0a9e,0x0870,0x05c7, + 0x02b4,0xff4e,0xfbaf,0xf7f8,0xf449,0xf0c7,0xed98,0xeae0, + 0xe8c4,0xe765,0xe6e3,0xe756,0xe8d2,0xeb67,0xef19,0xf3e9, + 0xf9cd,0x00b5,0x088a,0x112b,0x1a72,0x2435,0x2e42,0x3866, + 0x426b,0x4c1b,0x553e,0x5da2,0x6516,0x6b6f,0x7087,0x7441, + 0x7686,0x774a,0x7686,0x7441,0x7087,0x6b6f,0x6516,0x5da2, + 0x553e,0x4c1b,0x426b,0x3866,0x2e42,0x2435,0x1a72,0x112b, + 0x088a,0x00b5,0xf9cd,0xf3e9,0xef19,0xeb67,0xe8d2,0xe756, + 0xe6e3,0xe765,0xe8c4,0xeae0,0xed98,0xf0c7,0xf449,0xf7f8, + 0xfbaf,0xff4e,0x02b4,0x05c7,0x0870,0x0a9e,0x0c44,0x0d5c, + 0x0de5,0x0de1,0x0d59,0x0c5a,0x0af4,0x0939,0x073f,0x051a, + 0x02e3,0x00ad,0xfe8f,0xfc9a,0xfadf,0xf96b,0xf848,0xf77e, + 0xf70f,0xf6fa,0xf73d,0xf7d0,0xf8aa,0xf9c0,0xfb05,0xfc6a, + 0xfde1,0xff5a,0x00c9,0x021f,0x0351,0x0456,0x0526,0x05bb, + 0x0613,0x062c,0x060a,0x05b0,0x0523,0x046c,0x0392,0x02a1, + 0x01a0,0x009c,0xff9e,0xfeae,0xfdd6,0xfd1b,0xfc85,0xfc16, + 0xfbd2,0xfbb8,0xfbc9,0xfc00,0xfc5b,0xfcd5,0xfd68,0xfe0c, + 0xfebc,0xff70,0x0021,0x00c9,0x0162,0x01e7,0x0253,0x02a5, + 0x02da,0x02f2,0x02ec,0x02cc,0x0292,0x0242,0x01e1,0x0173, + 0x00fd,0x0082,0x0009,0xff95,0xff2a,0xfecd,0xfe7f,0xfe43, + 0xfe1b,0xfe06,0xfe05,0xfe16,0xfe39,0xfe6a,0xfea8,0xfeef, + 0xff3d,0xff8e,0xffde,0x002c,0x0075,0x00b5,0x00eb,0x0116, + 0x0134,0x0146,0x014b,0x0144,0x0131,0x0114,0x00f0,0x00c4, + 0x0094,0x0061,0x002e,0xfffc,0xffcd,0xffa2,0xff7e,0xff60, + 0xff4a,0xff3b,0xff34,0xff35,0xff3d,0xff4c,0xff5f,0xff77, + 0xff93,0xffb0,0xffcf,0xffed,0x0009,0x0024,0x003c,0x004f, + 0x005f,0x006b,0x0072,0x0075,0x0074,0x006f,0x0066,0x005b, + 0x004e,0x003f,0x002f,0x001f,0x0010,0x0001,0xfff3,0xffe6, + 0xffdc,0xffd3,0xffcc,0xffc7,0xffc5,0xffc4,0xffc4,0xffc7, + 0xffca,0xffce,0xffd3,0xffd8,0xffde,0xffe3,0xffe8,0xffed, + 0xfff2,0xfff5,0xfff9,0xfffb,0xfffe,0xffff,0x0000,0x0001, + 0x0001,0x0001,0x0001,0x0000, + 0x0007,0x0001, /*copy 1*/ + 0x180b, + 0x0006,0x0012, /*copy 18*/ + 0x000f,0x0010,0x001c,0xfab3,0x3580,0x8037,0xa037,0x0001, + 0x0000,0x3580,0x01a4,0x0750,0x075c,0x076f,0x0768,0x0773, + 0x0775,0x077b, + 0x000a,0x0001, /*copy 1*/ + 0x0050, +#define PLUGIN_SIZE 5594 +#ifndef SKIP_PLUGIN_VARNAME +}; +#endif diff --git a/src/patches/vs1053b-patches-pitch.plg b/src/patches/vs1053b-patches-pitch.plg new file mode 100644 index 0000000..fe362b7 --- /dev/null +++ b/src/patches/vs1053b-patches-pitch.plg @@ -0,0 +1,789 @@ +#ifndef SKIP_PLUGIN_VARNAME +const unsigned short PATCHES_PITCH[] = { /* Compressed plugin */ +#endif + 0x0007,0x0001, /*copy 1*/ + 0x8050, + 0x0006,0x0020, /*copy 32*/ + 0x2a00,0xc000,0x2a02,0x75c0,0x3e12,0xb817,0x3e14,0xf812, + 0x3e01,0xb811,0x0007,0x9717,0x0020,0xffd2,0x0030,0x11d1, + 0x3111,0x8024,0x3704,0xc024,0x3b81,0x8024,0x3101,0x8024, + 0x3b81,0x8024,0x3f04,0xc024,0x2808,0x4800,0x36f1,0x9811, + 0x0007,0x0001, /*copy 1*/ + 0x8060, + 0x0006,0x0516, /*copy 1302*/ + 0xf400,0x4095,0x0000,0x02c2,0x6124,0x0024,0x0000,0x0024, + 0x2800,0x1ac5,0x4192,0x4542,0x0000,0x0041,0x2000,0x0015, + 0x0030,0x0317,0x2000,0x0000,0x3f00,0x4024,0x2000,0x0000, + 0x0000,0x0000,0x3e12,0x3800,0x3e00,0xb804,0x0030,0x0015, + 0x0007,0x8257,0x3700,0x984c,0xf224,0x1444,0xf224,0x0024, + 0x0008,0x0002,0x2910,0x0181,0x0000,0x1bc8,0xb428,0x1402, + 0x0000,0x8004,0x2910,0x0195,0x0000,0x1bc8,0xb428,0x0024, + 0x0006,0x0095,0x2800,0x2945,0x3e13,0x780e,0x3e11,0x7803, + 0x3e13,0xf806,0x3e11,0xf801,0x3510,0xb808,0x003f,0xe004, + 0xfec4,0x3800,0x48be,0x17c3,0xfec6,0x41c2,0x48be,0x4497, + 0x4090,0x1c46,0xf06c,0x0024,0x2400,0x2580,0x6090,0x41c3, + 0x6628,0x1c47,0x0000,0x0024,0x2800,0x2449,0xf07e,0x0024, + 0xf400,0x4182,0x673a,0x1c46,0x0000,0x0024,0x2800,0x2589, + 0xf06c,0x0024,0xf400,0x41c3,0x0000,0x0024,0x4224,0x3442, + 0x2902,0xb7c0,0x4336,0x37c3,0x0000,0x1805,0x2902,0xb7c0, + 0x4508,0x40c2,0x450a,0x9808,0x0000,0x0207,0xa478,0x1bc0, + 0xc45a,0x1807,0x0030,0x03d5,0x3d01,0x5bc1,0x36f3,0xd806, + 0x3601,0x5803,0x36f3,0x0024,0x36f3,0x580e,0x0007,0x8257, + 0x0000,0x6004,0x3730,0x8024,0xb244,0x1c04,0xd428,0x3c02, + 0x0006,0xc717,0x2800,0x2d05,0x4284,0x0024,0x3613,0x3c02, + 0x0006,0xc357,0x2901,0x6b00,0x3e11,0x5c05,0x4284,0x1bc5, + 0x0007,0x8257,0x2800,0x3285,0x0002,0x0001,0x3701,0x0024, + 0x0006,0xc357,0xb412,0x9c02,0x002e,0xe001,0x2800,0x3005, + 0x6212,0x0024,0x0000,0x0024,0x2800,0x3295,0x0000,0x0024, + 0x0030,0x0117,0x3f00,0x0024,0x3613,0x0024,0x3e10,0x3813, + 0x3e14,0x8024,0x3e04,0x8024,0x2900,0x4b40,0x0006,0x02d3, + 0x36e3,0x0024,0x3009,0x1bd3,0x0007,0x8257,0x3700,0x8024, + 0xf224,0x0024,0x0000,0x0024,0x2800,0x3491,0x3600,0x9844, + 0x2900,0x3a40,0x0000,0x3508,0x2911,0xf140,0x0000,0x0024, + 0x0030,0x0057,0x3700,0x0024,0xf200,0x4595,0x0fff,0xfe02, + 0xa024,0x164c,0x8000,0x17cc,0x3f00,0x0024,0x3500,0x0024, + 0x0021,0x6d82,0xd024,0x44c0,0x0006,0xa402,0x2800,0x3955, + 0xd024,0x0024,0x0000,0x0000,0x2800,0x3955,0x000b,0x6d57, + 0x3009,0x3c00,0x36f0,0x8024,0x36f2,0x1800,0x2000,0x0000, + 0x0000,0x0024,0x3e14,0x7810,0x3e13,0xb80d,0x3e13,0xf80a, + 0x3e10,0xb803,0x3e11,0x3805,0x3e11,0xb807,0x3e14,0xf801, + 0x3e15,0x3815,0x0001,0x000a,0x0006,0xc4d7,0xbf8e,0x9c42, + 0x3e01,0x9c03,0x0006,0xa017,0x0023,0xffd1,0x0007,0x8250, + 0x0fff,0xfd85,0x3001,0x0024,0xa45a,0x4494,0x0000,0x0093, + 0x2800,0x4091,0xf25a,0x104c,0x34f3,0x0024,0x2800,0x4091, + 0x0000,0x0024,0x3413,0x084c,0x0000,0x0095,0x3281,0xf806, + 0x4091,0x4d64,0x2400,0x42c0,0x4efa,0x9c10,0xf1eb,0x6061, + 0xfe55,0x2f66,0x5653,0x4d64,0x48b2,0xa201,0x4efa,0xa201, + 0x36f3,0x3c10,0x36f5,0x1815,0x36f4,0xd801,0x36f1,0x9807, + 0x36f1,0x1805,0x36f0,0x9803,0x36f3,0xd80a,0x36f3,0x980d, + 0x2000,0x0000,0x36f4,0x5810,0x36f3,0x0024,0x3009,0x3848, + 0x3e14,0x3811,0x3e00,0x0024,0x0000,0x4000,0x0001,0x0010, + 0x2915,0x94c0,0x0001,0xcc11,0x36f0,0x0024,0x2927,0x9e40, + 0x3604,0x1811,0x3613,0x0024,0x3e14,0x3811,0x3e00,0x0024, + 0x0000,0x4000,0x0001,0x0010,0x2915,0x94c0,0x0001,0xcc11, + 0x36f0,0x0024,0x36f4,0x1811,0x3009,0x1808,0x2000,0x0000, + 0x0000,0x190d,0x3613,0x0024,0x3e22,0xb815,0x3e05,0xb814, + 0x3615,0x0024,0x0000,0x800a,0x3e13,0x7801,0x3e10,0xb803, + 0x3e11,0x3805,0x3e11,0xb807,0x3e14,0x3811,0x3e14,0xb813, + 0x3e03,0xf80e,0xb488,0x44d5,0x3543,0x134c,0x34e5,0xc024, + 0x3524,0x8024,0x35a4,0xc024,0x3710,0x8a0c,0x3540,0x4a0c, + 0x3d44,0x8024,0x3a10,0x8024,0x3590,0x0024,0x4010,0x15c1, + 0x6010,0x3400,0x3710,0x8024,0x2800,0x5704,0x3af0,0x8024, + 0x3df0,0x0024,0x3591,0x4024,0x3530,0x4024,0x4192,0x4050, + 0x6100,0x1482,0x4020,0x1753,0xbf8e,0x1582,0x4294,0x4011, + 0xbd86,0x408e,0x2400,0x550e,0xfe6d,0x2819,0x520e,0x0a00, + 0x5207,0x2819,0x4fbe,0x0024,0xad56,0x904c,0xaf5e,0x1010, + 0xf7d4,0x0024,0xf7fc,0x2042,0x6498,0x2046,0x3cf4,0x0024, + 0x3400,0x170c,0x4090,0x1492,0x35a4,0xc024,0x2800,0x4f95, + 0x3c00,0x0024,0x4480,0x914c,0x36f3,0xd80e,0x36f4,0x9813, + 0x36f4,0x1811,0x36f1,0x9807,0x36f1,0x1805,0x36f0,0x9803, + 0x36f3,0x5801,0x3405,0x9014,0x36e3,0x0024,0x2000,0x0000, + 0x36f2,0x9815,0x2814,0x9c91,0x0000,0x004d,0x2814,0x9940, + 0x003f,0x0013,0x3613,0x0024,0x3e12,0xb817,0x3e12,0x3815, + 0x3e05,0xb814,0x3655,0x0024,0x0000,0x800a,0x3e10,0x3801, + 0x3e10,0xb803,0x3e11,0x3805,0x3e11,0xb810,0x3e13,0xf80e, + 0x3e03,0x534c,0x3450,0x4024,0x6814,0x0024,0x0000,0x0024, + 0x2800,0x7618,0x4192,0x0024,0x2400,0x75c1,0x0000,0x0024, + 0xf400,0x4450,0x2938,0x1880,0x3613,0x0024,0x3c10,0x050c, + 0x3c10,0x4024,0x3c90,0x8024,0x34f3,0x0024,0x3464,0x0024, + 0x3011,0x0c40,0x3011,0x4c41,0x2915,0x9900,0x3011,0x8f82, + 0x3411,0x2c40,0x3411,0x6c41,0x2915,0xa580,0x34e1,0xaf82, + 0x3009,0x3040,0x4c8a,0x0040,0x3010,0x7041,0x2800,0x6854, + 0x3010,0xb382,0x3411,0x0024,0x3411,0x6c44,0x34e1,0xac45, + 0xbe8a,0xaf86,0x0fe0,0x0006,0x3009,0x3044,0x3009,0x3045, + 0x3009,0x3386,0x3411,0x0024,0x3411,0x4ccc,0x2915,0x9900, + 0x34e1,0x984c,0x3e10,0x7800,0x3009,0x3802,0x3011,0x0c40, + 0x3011,0x4c41,0x2915,0x9900,0x30e1,0x8f82,0x3009,0x1bc6, + 0x2915,0xa940,0x36f1,0x5804,0x3011,0x2c40,0x3011,0x6c41, + 0x30b1,0xac42,0x3009,0x0c40,0x3009,0x0c41,0x2915,0x9900, + 0x3613,0x0f82,0x3e10,0x7800,0x3009,0x3802,0x3010,0x1044, + 0x3010,0x5045,0x2915,0x9900,0x3010,0x9386,0x3009,0x1bc6, + 0x2915,0xa940,0x36f1,0x5804,0xf1ca,0xac40,0x4ce2,0xac41, + 0x3009,0x2ec2,0x2800,0x7112,0x629c,0x0024,0xf1c2,0x4182, + 0x3c10,0x0c44,0x3c10,0x4c45,0x2915,0x4780,0x3ce0,0x8f86, + 0x4080,0x0024,0x0000,0x0024,0x2800,0x75d5,0x0020,0x0000, + 0x3411,0x0c40,0x3411,0x4c41,0x2915,0xb780,0x34e1,0x8f82, + 0x0000,0x03c3,0x4234,0x0024,0x4c82,0x0024,0x0000,0x0024, + 0x2915,0x4355,0x0000,0x75c8,0x0000,0x0000,0x3a10,0x0d8c, + 0x36f3,0x538c,0x36f3,0xd80e,0x36f1,0x9810,0x36f1,0x1805, + 0x36f0,0x9803,0x36f0,0x1801,0x3405,0x9014,0x36f3,0x0024, + 0x36f2,0x1815,0x2000,0x0000,0x36f2,0x9817,0x3613,0x0024, + 0x3e12,0xb817,0x3e12,0x3815,0x3e05,0xb814,0x3645,0x0024, + 0x0000,0x800a,0x3e10,0x3801,0x3e10,0xb803,0x3e11,0x3805, + 0x3e11,0xb810,0x3e13,0xf80e,0x3e03,0x534c,0x3440,0x4024, + 0x4192,0x0024,0x2400,0x91c1,0x0000,0x0024,0xb68c,0x4450, + 0x2938,0x1880,0x3613,0x050c,0x3c10,0x0c40,0x3c10,0x4c41, + 0x3ce0,0x8f82,0x003c,0x2584,0x2915,0x9900,0x0018,0x8245, + 0x3411,0x2c40,0x3411,0x6c41,0x2915,0xa580,0x34e1,0xac42, + 0x4c8a,0xb040,0x3009,0x3041,0x2800,0x82d4,0x3009,0x3382, + 0x3411,0x0f4c,0x3411,0x6c44,0x34e1,0xac45,0xbe8a,0xac46, + 0x499c,0xb044,0xf38c,0xb045,0x3009,0x3386,0x3009,0x0c40, + 0x3009,0x0c41,0xf1ca,0x8f82,0x4ce2,0x1044,0x3411,0x4024, + 0x2800,0x8512,0x4294,0x1386,0x6294,0x0024,0xf1c2,0x0024, + 0x4e8a,0x4195,0x35e3,0x0024,0x2915,0xa955,0xf400,0x4546, + 0x3009,0x2c40,0x3009,0x2c41,0x3009,0x2c42,0x3009,0x0c40, + 0x3009,0x0c41,0xf1ca,0x8f82,0x4ce2,0x9044,0x3009,0x1045, + 0x2800,0x8985,0x3009,0x1386,0x2800,0x8992,0x4294,0x0024, + 0x6294,0x0024,0xf1c2,0x0024,0x4e8a,0x4195,0x35e3,0x0024, + 0x2915,0xa955,0xf400,0x4546,0xf1ca,0xac40,0x4ce2,0xac41, + 0x3009,0x2ec2,0x2800,0x8c12,0x629c,0x0024,0xf1c2,0x4182, + 0x3c20,0x0c84,0x3cf0,0x8fc6,0x6264,0x4017,0x3cf0,0x4fc5, + 0x2800,0x91c8,0x0020,0x0000,0x2800,0x8f19,0xf400,0x45c0, + 0x6cea,0x0024,0x0000,0x0024,0x2800,0x91c9,0x0020,0x0000, + 0x3411,0x0c40,0x3411,0x4c41,0x2915,0xb780,0x34e1,0x8f82, + 0x0000,0x03c3,0x4234,0x0024,0x4c82,0x0024,0x0000,0x0024, + 0x2915,0x4355,0x0000,0x91c8,0x0000,0x0000,0x3a10,0x0d8c, + 0x36f3,0x53cc,0x36f3,0xd80e,0x36f1,0x9810,0x36f1,0x1805, + 0x36f0,0x9803,0x36f0,0x1801,0x3405,0x9014,0x36f3,0x0024, + 0x36f2,0x1815,0x2000,0x0000,0x36f2,0x9817,0xf400,0x4595, + 0x35e3,0x3840,0x3e13,0xf80e,0x3e13,0x7808,0x3510,0x0024, + 0x3e10,0x0024,0x3510,0x0024,0x3e10,0x0024,0x3510,0x0024, + 0x3e00,0x0024,0x0001,0xce8e,0x002b,0xb30f,0x292d,0xa940, + 0x0000,0x004d,0x36d3,0x0024,0x36f3,0x5808,0x36f3,0xd80e, + 0x2000,0x0000,0x3009,0x1800,0xf400,0x4595,0x35f3,0x3840, + 0x3e13,0xf80e,0x3e13,0x7808,0x3510,0x0024,0x3e10,0x0024, + 0x3510,0x0024,0x3e00,0x0024,0x0000,0x9dce,0x0028,0x088f, + 0x2927,0xff80,0x0000,0x008d,0x36e3,0x0024,0x36f3,0x5808, + 0x36f3,0xd80e,0x2000,0x0000,0x3009,0x1800,0x0028,0x2b0f, + 0x0000,0xa34e,0x2828,0x0b15,0x0007,0x2605,0x3613,0x0001, + 0x3e14,0x3811,0x0001,0x0011,0x0001,0xcc10,0x2915,0x94c0, + 0x0000,0x4000,0x3e10,0x534c,0x3430,0xc024,0x3e10,0xc024, + 0x2927,0xc4c0,0x3e01,0x0024,0x36d3,0x0024,0x0001,0x0011, + 0x0001,0xcc10,0x2915,0x94c0,0x0000,0x4000,0x2828,0x0b00, + 0x36f4,0x1811,0x3e00,0x0024,0x2800,0xa740,0x0028,0x2bc8, + 0x3605,0x7840,0x3e13,0x780e,0x3e13,0xf808,0x3e05,0x4024, + 0x0000,0x458e,0x0027,0x9e0f,0x2922,0xa6c0,0x0000,0x190d, + 0x36f3,0x0024,0x36f3,0xd808,0x36f3,0x580e,0x2000,0x0000, + 0x3009,0x1800,0xf400,0x4595,0x35d3,0x3840,0x3e13,0xf80e, + 0x3e13,0x7808,0x3510,0x0024,0x3e10,0x0024,0x3510,0x0024, + 0x3e10,0x0024,0x3510,0x0024,0x3e10,0x0024,0x3510,0x0024, + 0x3e00,0x0024,0x0000,0xac8e,0x0025,0xf54f,0x2925,0xe580, + 0x0000,0x004d,0x36c3,0x0024,0x36f3,0x5808,0x36f3,0xd80e, + 0x2000,0x0000,0x3009,0x1800,0x3433,0x0000,0x6890,0x3040, + 0x3cc0,0xa000,0x0008,0x6201,0x000d,0x3500,0x3613,0x110c, + 0x3e10,0x0024,0x3e10,0x4024,0x34c0,0x8024,0x2900,0x94c0, + 0x3e00,0x8024,0x0026,0x0a4f,0x0000,0xb04e,0x2825,0xf880, + 0x0000,0x07cd,0x0000,0x0801,0x6012,0x0024,0x0000,0x0024, + 0x2826,0x0a85,0x0000,0x0024,0x2800,0xad40,0x0000,0x0024, + 0x3605,0x7840,0x3e13,0x780e,0x3e13,0xf808,0x3e05,0x4024, + 0x0000,0xb54e,0x0022,0xf54f,0x2922,0xda80,0x0000,0x190d, + 0x36f3,0x0024,0x36f3,0xd808,0x36f3,0x580e,0x2000,0x0000, + 0x3009,0x1800,0x3e00,0x0024,0x2800,0x9980,0x0022,0xf608, + 0x3605,0x7840,0x3e13,0x780e,0x3e13,0xf808,0x3e05,0x4024, + 0x0000,0xb94e,0x0022,0xa1cf,0x2922,0x9980,0x0000,0x190d, + 0x36f3,0x0024,0x36f3,0xd808,0x36f3,0x580e,0x2000,0x0000, + 0x3009,0x1800,0x3009,0x3400,0x2800,0xb200,0x0022,0xa288, + 0x2a01,0x5a4e,0x2a02,0x7c0e,0x2a02,0x964e, + 0x0007,0x0001, /*copy 1*/ + 0x8300, + 0x0006,0x0ff6, /*copy 4086*/ + 0x0030,0x0055,0xb080,0x1402,0x0fdf,0xffc1,0x0007,0x9257, + 0xb212,0x3c00,0x3d00,0x4024,0x0006,0x0097,0x3f10,0x0024, + 0x3f00,0x0024,0x0030,0x0297,0x3f00,0x0024,0x0007,0x9017, + 0x3f00,0x0024,0x0007,0x81d7,0x3f10,0x0024,0xc090,0x3c00, + 0x0006,0x0297,0xb080,0x3c00,0x0000,0x0401,0x000a,0x1055, + 0x0006,0x0017,0x3f10,0x3401,0x000a,0x2795,0x3f00,0x3401, + 0x0001,0x6ad7,0xf400,0x55c0,0x0000,0x0817,0xb080,0x57c0, + 0x0014,0x958f,0x0000,0x5b4e,0x0030,0x0017,0x3700,0x0024, + 0x0004,0x0001,0xb012,0x0024,0x0000,0x004d,0x280f,0xe115, + 0x0006,0x2016,0x0006,0x01d7,0x3f00,0x0024,0x0000,0x190d, + 0x000f,0xf94f,0x0000,0xcd0e,0x280f,0xe100,0x0006,0x2016, + 0x0000,0x0080,0x0005,0x4f92,0x2909,0xf840,0x3613,0x2800, + 0x0006,0x0197,0x0006,0xa115,0xb080,0x0024,0x3f00,0x3400, + 0x0007,0x8a57,0x3700,0x0024,0x4080,0x0024,0x0000,0x0040, + 0x2800,0xced5,0x0006,0xa2d7,0x3009,0x3c00,0x0006,0xa157, + 0x3009,0x1c00,0x0006,0x01d7,0x0000,0x190d,0x000a,0x708f, + 0x0000,0xd7ce,0x290b,0x1a80,0x3f00,0x184c,0x0030,0x0017, + 0x4080,0x1c01,0x0000,0x0200,0x2800,0xcb15,0xb102,0x0024, + 0x0000,0xcd08,0x2800,0xcb15,0x0000,0xd3ce,0x0011,0x210f, + 0x0000,0x190d,0x280f,0xcb00,0x3613,0x0024,0x0006,0xa115, + 0x0006,0x01d7,0x37f0,0x1401,0x6100,0x1c01,0x4012,0x0024, + 0x0000,0x8000,0x6010,0x0024,0x34f3,0x0400,0x2800,0xd698, + 0x0000,0x0024,0x0000,0x8001,0x6010,0x3c01,0x0000,0x000d, + 0x2811,0x8259,0x0000,0x0024,0x2a11,0x2100,0x0030,0x0257, + 0x3700,0x0024,0x4080,0x0024,0x0000,0x0024,0x2800,0xd9d5, + 0x0006,0x0197,0x0006,0xa115,0x3f00,0x3400,0x003f,0xc000, + 0xb600,0x41c1,0x0012,0x5103,0x000c,0xc002,0xdcd6,0x0024, + 0x0019,0xd4c2,0x2802,0x0c45,0x0001,0x1008,0x0013,0xd9c3, + 0x6fd6,0x0024,0x0000,0x190d,0x2800,0xdf95,0x0014,0x1b01, + 0x0020,0x480f,0x0000,0xde4e,0x0000,0x190d,0x2820,0x41c0, + 0x0001,0x1008,0x0039,0x324f,0x0001,0x3ece,0x2820,0x4a18, + 0xb882,0x0024,0x2a20,0x48c0,0x003f,0xfd00,0xb700,0x0024, + 0x003f,0xf901,0x6010,0x0024,0x0000,0x0024,0x280a,0xc505, + 0x0000,0x190d,0x0014,0x1b01,0x0015,0x59c0,0x6fc2,0x0024, + 0x0000,0x0024,0x2800,0xe9d5,0x0000,0x0024,0x290c,0x4840, + 0x3613,0x0024,0x290c,0x4840,0x4086,0x184c,0x0000,0x18c2, + 0x6234,0x0024,0x0000,0x1d02,0x2800,0xe5d5,0x6234,0x0024, + 0x0030,0x0317,0x2800,0xe9c0,0x3f00,0x0024,0x0000,0x1d82, + 0x2800,0xe855,0x6234,0x0024,0x2912,0x0d00,0x4084,0x184c, + 0xf200,0x0024,0x6200,0x0024,0x0006,0x0017,0x2800,0xe540, + 0xb080,0x3c40,0x0000,0x0202,0x2800,0xe9d5,0xa024,0x0024, + 0xc020,0x0024,0x2800,0xe540,0x0030,0x02d7,0x000a,0x8c8f, + 0x0000,0xeb0e,0x000c,0x0981,0x280a,0x71c0,0x002c,0x9d40, + 0x000a,0x708f,0x0000,0xd7ce,0x280a,0xc0d5,0x0012,0x5182, + 0x6fd6,0x0024,0x003f,0xfd81,0x280a,0x8e45,0xb710,0x0024, + 0xb710,0x0024,0x003f,0xfc01,0x6012,0x0024,0x0000,0x0101, + 0x2801,0x06d5,0xffd2,0x0024,0x48b2,0x0024,0x4190,0x0024, + 0x0000,0x190d,0x2801,0x06d5,0x0030,0x0250,0xb880,0x104c, + 0x3cf0,0x0024,0x0010,0x5500,0xb880,0x23c0,0xb882,0x2000, + 0x0007,0x8590,0x2914,0xbec0,0x0000,0x0440,0x0007,0x8b50, + 0xb880,0x0024,0x2920,0x0100,0x3800,0x0024,0x2920,0x0000, + 0x0006,0x8a91,0x0000,0x0800,0xb880,0xa440,0x003f,0xfd81, + 0xb710,0xa7c0,0x003f,0xfc01,0x6012,0x0024,0x0000,0x0101, + 0x2801,0x1015,0x0000,0x0024,0xffe2,0x0024,0x48b2,0x0024, + 0x4190,0x0024,0x0000,0x0024,0x2801,0x1015,0x0000,0x0024, + 0x2912,0x2d80,0x0000,0x0780,0x4080,0x0024,0x0006,0x8a90, + 0x2801,0x1015,0x0000,0x01c2,0xb886,0x8040,0x3613,0x03c1, + 0xbcd2,0x0024,0x0030,0x0011,0x2800,0xfc95,0x003f,0xff42, + 0xb886,0x8040,0x3009,0x03c1,0x0000,0x0020,0xac22,0x0024, + 0x0000,0x0102,0x6cd2,0x0024,0x3e10,0x0024,0x2909,0x8c80, + 0x3e00,0x4024,0x36f3,0x0024,0x3e11,0x8024,0x3e01,0xc024, + 0x2901,0x34c0,0x0000,0x0201,0xf400,0x4512,0x2900,0x0c80, + 0x3213,0x1b8c,0x3100,0x0024,0xb010,0x0024,0x0000,0x0024, + 0x2801,0x1015,0x0000,0x0024,0x291a,0x8a40,0x0000,0x0100, + 0x2920,0x0200,0x3633,0x0024,0x2920,0x0280,0x0000,0x0401, + 0x408e,0x0024,0x2920,0x0280,0x0000,0x0401,0x003f,0xfd81, + 0xb710,0x4006,0x003f,0xfc01,0x6012,0x0024,0x0000,0x0101, + 0x2801,0x1015,0x0000,0x0024,0xffe2,0x0024,0x48b2,0x0024, + 0x4190,0x0024,0x0000,0x0024,0x2801,0x1015,0x0000,0x0024, + 0x2912,0x2d80,0x0000,0x0780,0x4080,0x0024,0x0000,0x01c2, + 0x2800,0xf885,0x0006,0x8a90,0x2a01,0x1000,0x2920,0x0100, + 0x0000,0x0401,0x0000,0x0180,0x2920,0x0200,0x3613,0x0024, + 0x2920,0x0280,0x3613,0x0024,0x0000,0x0401,0x2920,0x0280, + 0x4084,0x984c,0x0019,0x9d01,0x6212,0x0024,0x001e,0x5c01, + 0x2801,0x0b55,0x6012,0x0024,0x0000,0x0024,0x2801,0x0d45, + 0x0000,0x0024,0x001b,0x5bc1,0x6212,0x0024,0x001b,0xdd81, + 0x2801,0x1115,0x6012,0x0024,0x0000,0x0024,0x2801,0x1115, + 0x0000,0x0024,0x0000,0x004d,0x000a,0xbf4f,0x280a,0xb880, + 0x0001,0x0e4e,0x0020,0xfb4f,0x0000,0x190d,0x0001,0x154e, + 0x2920,0xf440,0x3009,0x2bc1,0x291a,0x8a40,0x36e3,0x0024, + 0x0000,0x190d,0x000a,0x708f,0x280a,0xcac0,0x0000,0xd7ce, + 0x0030,0x0017,0x3700,0x4024,0x0000,0x0200,0xb102,0x0024, + 0x0000,0x00c0,0x2801,0x1445,0x0005,0x4f92,0x2909,0xf840, + 0x3613,0x2800,0x0006,0x0197,0x0006,0xa115,0xb080,0x0024, + 0x3f00,0x3400,0x0000,0x190d,0x000a,0x708f,0x280a,0xc0c0, + 0x0000,0xd7ce,0x0000,0x004d,0x0020,0xfe0f,0x2820,0xfb40, + 0x0001,0x164e,0x2801,0x1815,0x3009,0x1000,0x6012,0x93cc, + 0x0000,0x0024,0x2801,0x32c5,0x0000,0x0024,0x3413,0x0024, + 0x34b0,0x0024,0x4080,0x0024,0x0000,0x0200,0x2801,0x1b15, + 0xb882,0x0024,0x3453,0x0024,0x3009,0x13c0,0x4080,0x0024, + 0x0000,0x0200,0x2801,0x32c5,0x0000,0x0024,0xb882,0x130c, + 0x0000,0x004d,0x0021,0x058f,0x2821,0x0340,0x0001,0x1c0e, + 0x2801,0x2c55,0x6012,0x0024,0x0000,0x0024,0x2801,0x2c55, + 0x0000,0x0024,0x34c3,0x184c,0x3e13,0xb80f,0xf400,0x4500, + 0x0026,0x9dcf,0x0001,0x200e,0x0000,0xfa0d,0x2926,0x8e80, + 0x3e10,0x110c,0x36f3,0x0024,0x2801,0x2c40,0x36f3,0x980f, + 0x001c,0xdd00,0x001c,0xd901,0x6ec2,0x0024,0x001c,0xdd00, + 0x2801,0x2315,0x0018,0xdbc1,0x3413,0x184c,0xf400,0x4500, + 0x2926,0xc640,0x3e00,0x13cc,0x2801,0x2a00,0x36f3,0x0024, + 0x6ec2,0x0024,0x003f,0xc000,0x2801,0x2595,0x002a,0x4001, + 0x3413,0x184c,0xf400,0x4500,0x2926,0xafc0,0x3e00,0x13cc, + 0x2801,0x2a00,0x36f3,0x0024,0xb400,0x0024,0xd100,0x0024, + 0x0000,0x0024,0x2801,0x2a05,0x0000,0x0024,0x3613,0x0024, + 0x3e11,0x4024,0x2926,0x8540,0x3e01,0x0024,0x4080,0x1b8c, + 0x0000,0x0024,0x2801,0x2a05,0x0000,0x0024,0x3413,0x184c, + 0xf400,0x4500,0x2926,0x8e80,0x3e10,0x13cc,0x36f3,0x0024, + 0x3110,0x8024,0x31f0,0xc024,0x0000,0x4000,0x0000,0x0021, + 0x6d06,0x0024,0x3110,0x8024,0x2826,0xa8c4,0x31f0,0xc024, + 0x2a26,0xad00,0x34c3,0x184c,0x3410,0x8024,0x3430,0xc024, + 0x0000,0x4000,0x0000,0x0021,0x6d06,0x0024,0x0000,0x0024, + 0x2801,0x32d4,0x4d06,0x0024,0x0000,0x0200,0x2922,0x1885, + 0x0001,0x3148,0x0000,0x0200,0x3e10,0x8024,0x2921,0xca80, + 0x3e00,0xc024,0x291a,0x8a40,0x0000,0x0024,0x2922,0x1880, + 0x36f3,0x0024,0x0000,0x004d,0x0021,0x0ecf,0x2821,0x0bc0, + 0x0001,0x324e,0x2801,0x1540,0x3c30,0x4024,0x0000,0x190d, + 0x0001,0x33ce,0x2821,0x0f80,0x0021,0x420f,0x0000,0x190d, + 0x3e00,0x0024,0x2801,0xe840,0x0021,0x42c8,0x0020,0xcd4f, + 0x2820,0xc780,0x0001,0x358e,0x0006,0xf017,0x0000,0x0015, + 0xb070,0xbc15,0x0001,0x374e,0x0020,0xdf0f,0x2820,0xcd80, + 0x0000,0x190d,0x3e00,0x23c1,0x2801,0xe840,0x0020,0xdfc8, + 0x3613,0x0024,0x3e10,0xb803,0x3e14,0x3811,0x3e11,0x3805, + 0x3e00,0x3801,0x0007,0xc390,0x0006,0xa011,0x3010,0x0444, + 0x3050,0x4405,0x6458,0x0302,0xff94,0x4081,0x0003,0xffc5, + 0x48b6,0x0024,0xff82,0x0024,0x42b2,0x0042,0xb458,0x0003, + 0x4cd6,0x9801,0xf248,0x1bc0,0xb58a,0x0024,0x6de6,0x1804, + 0x0006,0x0010,0x3810,0x9bc5,0x3800,0xc024,0x36f4,0x1811, + 0x36f0,0x9803,0x283e,0x2d80,0x0fff,0xffc3,0x2801,0x4c80, + 0x0000,0x0024,0x3413,0x0024,0x2801,0x4085,0xf400,0x4517, + 0x2801,0x4480,0x6894,0x13cc,0x37b0,0x184c,0x6090,0x1d51, + 0x0000,0x0910,0x3f00,0x060c,0x3100,0x4024,0x6016,0xb812, + 0x000c,0x8012,0x2801,0x4311,0xb884,0x0024,0x6894,0x3002, + 0x0000,0x028d,0x003a,0x5e0f,0x0001,0x548e,0x2939,0xb0c0, + 0x3e10,0x93cc,0x4084,0x9bd2,0x4282,0x0024,0x0000,0x0040, + 0x2801,0x4685,0x4292,0x130c,0x3443,0x0024,0x2801,0x47c5, + 0x000c,0x8390,0x2a01,0x4b40,0x3444,0x0024,0x3073,0x0024, + 0xc090,0x014c,0x2801,0x4b40,0x3800,0x0024,0x000c,0x4113, + 0xb880,0x2380,0x3304,0x4024,0x3800,0x05cc,0xcc92,0x05cc, + 0x3910,0x0024,0x3910,0x4024,0x000c,0x8110,0x3910,0x0024, + 0x39f0,0x4024,0x3810,0x0024,0x38d0,0x4024,0x3810,0x0024, + 0x38f0,0x4024,0x34c3,0x0024,0x3444,0x0024,0x3073,0x0024, + 0x3063,0x0024,0x3000,0x0024,0x4080,0x0024,0x0000,0x0024, + 0x2839,0x53d5,0x4284,0x0024,0x3613,0x0024,0x2801,0x4e85, + 0x6898,0xb804,0x0000,0x0084,0x293b,0x1cc0,0x3613,0x0024, + 0x000c,0x8117,0x3711,0x0024,0x37d1,0x4024,0x4e8a,0x0024, + 0x0000,0x0015,0x2801,0x5145,0xce9a,0x0024,0x3f11,0x0024, + 0x3f01,0x4024,0x000c,0x8197,0x408a,0x9bc4,0x3f15,0x4024, + 0x2801,0x5385,0x4284,0x3c15,0x6590,0x0024,0x0000,0x0024, + 0x2839,0x53d5,0x4284,0x0024,0x0000,0x0024,0x2801,0x3f58, + 0x458a,0x0024,0x2a39,0x53c0,0x003e,0x2d4f,0x283a,0x5ed5, + 0x0001,0x380e,0x000c,0x4653,0x0000,0x0246,0xffac,0x0c01, + 0x48be,0x0024,0x4162,0x4546,0x6642,0x4055,0x3501,0x8024, + 0x0000,0x0087,0x667c,0x4057,0x000c,0x41d5,0x283a,0x62d5, + 0x3501,0x8024,0x667c,0x1c47,0x3701,0x8024,0x283a,0x62d5, + 0xc67c,0x0024,0x0000,0x0024,0x283a,0x62c5,0x0000,0x0024, + 0x2a3a,0x5ec0,0x3009,0x3851,0x3e14,0xf812,0x3e12,0xb817, + 0x3e11,0x8024,0x0006,0x0293,0x3301,0x8024,0x468c,0x3804, + 0x0006,0xa057,0x2801,0x6084,0x0006,0x0011,0x469c,0x0024, + 0x3be1,0x8024,0x2801,0x6095,0x0006,0xc392,0x3311,0x0024, + 0x33f1,0x2844,0x3009,0x2bc4,0x0030,0x04d2,0x3311,0x0024, + 0x3a11,0x0024,0x3201,0x8024,0x003f,0xfc04,0xb64c,0x0fc4, + 0xc648,0x0024,0x3a01,0x0024,0x3111,0x1fd3,0x6498,0x07c6, + 0x868c,0x2444,0x0023,0xffd2,0x3901,0x8e06,0x0030,0x0551, + 0x3911,0x8e06,0x3961,0x9c44,0xf400,0x44c6,0xd46c,0x1bc4, + 0x36f1,0xbc13,0x2801,0x6a15,0x36f2,0x9817,0x002b,0xffd2, + 0x3383,0x188c,0x3e01,0x8c06,0x0006,0xa097,0x3009,0x1c12, + 0x3213,0x0024,0x468c,0xbc12,0x002b,0xffd2,0xf400,0x4197, + 0x2801,0x6704,0x3713,0x0024,0x2801,0x6745,0x37e3,0x0024, + 0x3009,0x2c17,0x3383,0x0024,0x3009,0x0c06,0x468c,0x4197, + 0x0006,0xa052,0x2801,0x6944,0x3713,0x2813,0x2801,0x6985, + 0x37e3,0x0024,0x3009,0x2c17,0x36f1,0x8024,0x36f2,0x9817, + 0x36f4,0xd812,0x2100,0x0000,0x3904,0x5bd1,0x2a01,0x5a4e, + 0x3e11,0x7804,0x0030,0x0257,0x3701,0x0024,0x0013,0x4d05, + 0xd45b,0xe0e1,0x0007,0xc795,0x2801,0x7195,0x0fff,0xff45, + 0x3511,0x184c,0x4488,0xb808,0x0006,0x8a97,0x2801,0x7145, + 0x3009,0x1c40,0x3511,0x1fc1,0x0000,0x0020,0xac52,0x1405, + 0x6ce2,0x0024,0x0000,0x0024,0x2801,0x7141,0x68c2,0x0024, + 0x291a,0x8a40,0x3e10,0x0024,0x2921,0xca80,0x3e00,0x4024, + 0x36f3,0x0024,0x3009,0x1bc8,0x36f0,0x1801,0x3601,0x5804, + 0x3e13,0x780f,0x3e13,0xb808,0x0008,0x9b0f,0x0001,0x744e, + 0x2908,0x9300,0x0000,0x004d,0x36f3,0x9808,0x2000,0x0000, + 0x36f3,0x580f,0x0007,0x81d7,0x3711,0x8024,0x3711,0xc024, + 0x3700,0x0024,0x0000,0x2001,0xb012,0x0024,0x0034,0x0000, + 0x2801,0x79c5,0x0000,0x01c1,0x3700,0x0024,0x0002,0x0001, + 0xb012,0x0024,0x002e,0xe001,0x2801,0x78c5,0x6512,0x0024, + 0x0034,0x0000,0x2801,0x79d5,0x0000,0x01c1,0x0030,0x0117, + 0x3f00,0x0024,0x0014,0xc000,0x0000,0x01c1,0x4fce,0x0024, + 0xffea,0x0024,0x48b6,0x0024,0x4384,0x4097,0xb886,0x45c6, + 0xfede,0x0024,0x4db6,0x0024,0x466c,0x0024,0x0006,0xc610, + 0x8dd6,0x8007,0x0000,0x00c6,0xff6e,0x0024,0x48b2,0x0024, + 0x0034,0x2406,0xffee,0x0024,0x2914,0xaa80,0x40b2,0x0024, + 0xf1c6,0x0024,0xf1d6,0x0024,0x0000,0x0201,0x8d86,0x0024, + 0x61de,0x0024,0x0006,0xc612,0x2801,0x8041,0x0006,0xc713, + 0x4c86,0x0024,0x2912,0x1180,0x0006,0xc351,0x0006,0x0210, + 0x2912,0x0d00,0x3810,0x984c,0xf200,0x2043,0x2808,0xa000, + 0x3800,0x0024,0x3e12,0xb817,0x3e12,0x7808,0x3e11,0xb811, + 0x3e15,0x7810,0x3e18,0xb823,0x3e18,0x3821,0x3e10,0x3801, + 0x48b2,0x0024,0x3e10,0x3801,0x3e11,0x3802,0x3009,0x3814, + 0x0030,0x0717,0x3f05,0xc024,0x0030,0x0351,0x3100,0x0024, + 0x4080,0x0024,0x0030,0x10d1,0x2801,0x8d45,0x0001,0x800a, + 0x0006,0x6514,0x3111,0x8024,0x6894,0x13c1,0x6618,0x0024, + 0xfe44,0x1000,0x4cb2,0x0406,0x3c10,0x0024,0x3c50,0x4024, + 0x34f0,0x4024,0x661c,0x1040,0xfe64,0x0024,0x4cb2,0x0024, + 0x3cf0,0x4024,0xbc82,0x3080,0x0030,0x0351,0x3100,0x8024, + 0xfea8,0x0024,0x5ca2,0x0024,0x0000,0x0182,0xac22,0x0024, + 0xf7c8,0x0024,0x48b2,0x0024,0xac22,0x0024,0x2801,0x90c0, + 0xf7cc,0x1002,0x0030,0x0394,0x3400,0x4024,0x3100,0x184c, + 0x0006,0xc051,0x291e,0x8080,0x0006,0x6410,0x4088,0x1001, + 0x0030,0x1111,0x3100,0x184c,0x0006,0xc051,0x291e,0x8080, + 0x0006,0x6550,0x0006,0x6694,0x408c,0x1002,0xf224,0x0024, + 0x0006,0xa017,0x2801,0x94d5,0x0000,0x0024,0x2808,0x3f41, + 0x0006,0x6410,0x3050,0x0024,0x3000,0x4024,0x6014,0x0024, + 0x0000,0x0024,0x2801,0x9419,0x0000,0x0024,0xf400,0x4040, + 0x38b0,0x0024,0x2808,0x3f40,0x3800,0x0024,0x2801,0x96c1, + 0xf224,0x0024,0x0000,0x0024,0x2808,0x3f45,0x4684,0x4106, + 0xf12c,0x0024,0xf148,0x0024,0x846c,0x0024,0x2808,0x3f40, + 0xf400,0x4184,0x3e12,0xb817,0x3e12,0x3815,0x3e05,0xb814, + 0x3625,0x0024,0x0000,0x800a,0x3e10,0x3801,0x3e10,0xb803, + 0x3e11,0x3805,0x3e11,0xb807,0x3e14,0x3811,0x0006,0xa090, + 0x2912,0x0d00,0x3e14,0xc024,0x4088,0x8000,0x4080,0x0024, + 0x0007,0x90d1,0x2801,0x9d05,0x0000,0x0024,0x0007,0x9051, + 0x3100,0x4024,0x4100,0x0024,0x3900,0x0024,0x0007,0x90d1, + 0x0004,0x0000,0x31f0,0x4024,0x6014,0x0400,0x0000,0x0024, + 0x2801,0xa151,0x4080,0x0024,0x0000,0x0000,0x2801,0xa0c5, + 0x0000,0x0024,0x0007,0x9053,0x3300,0x0024,0x4080,0x0024, + 0x0000,0x0000,0x2801,0xa158,0x0000,0x0024,0x0007,0x9051, + 0x3900,0x0024,0x3200,0x504c,0x6410,0x0024,0x3cf0,0x0000, + 0x4080,0x0024,0x0006,0xc691,0x2801,0xba05,0x3009,0x0400, + 0x0007,0x9051,0x0000,0x1001,0x3100,0x0024,0x6012,0x0024, + 0x0006,0xc6d0,0x2801,0xae49,0x003f,0xe000,0x0006,0xc693, + 0x3900,0x0c00,0x3009,0x0001,0x6014,0x0024,0x0007,0x1ad0, + 0x2801,0xae55,0x3009,0x0000,0x4080,0x0024,0x0000,0x0301, + 0x2801,0xa845,0x4090,0x0024,0x0000,0x0024,0x2801,0xa955, + 0x0000,0x0024,0x3009,0x0000,0xc012,0x0024,0x2801,0xae40, + 0x3009,0x2001,0x3009,0x0000,0x6012,0x0024,0x0000,0x0341, + 0x2801,0xab55,0x0000,0x0024,0x6190,0x0024,0x2801,0xae40, + 0x3009,0x2000,0x6012,0x0024,0x0000,0x0381,0x2801,0xad15, + 0x0000,0x0024,0x6190,0x0024,0x2801,0xae40,0x3009,0x2000, + 0x6012,0x0024,0x0000,0x00c0,0x2801,0xae55,0x0000,0x0024, + 0x3009,0x2000,0x0006,0xa090,0x3009,0x0000,0x4080,0x0024, + 0x0000,0x0081,0x2801,0xb315,0x0007,0x8c13,0x3300,0x104c, + 0xb010,0x0024,0x0002,0x8001,0x2801,0xb585,0x34f0,0x0024, + 0x2801,0xb300,0x0000,0x0024,0x0006,0xc351,0x3009,0x0000, + 0x6090,0x0024,0x3009,0x2000,0x2900,0x0b80,0x3009,0x0405, + 0x0006,0xc690,0x0006,0xc6d1,0x3009,0x0000,0x3009,0x0401, + 0x6014,0x0024,0x0006,0xa093,0x2801,0xb191,0xb880,0x0024, + 0x2801,0xc2c0,0x3009,0x2c00,0x4040,0x0024,0x6012,0x0024, + 0x0006,0xc6d0,0x2801,0xc2d8,0x0000,0x0024,0x0006,0xc693, + 0x3009,0x0c00,0x3009,0x0001,0x6014,0x0024,0x0006,0xc350, + 0x2801,0xc2c1,0x0000,0x0024,0x6090,0x0024,0x3009,0x2c00, + 0x3009,0x0005,0x2900,0x0b80,0x0001,0xc2c8,0x3009,0x0400, + 0x4080,0x0024,0x0003,0x8000,0x2801,0xc2c5,0x0000,0x0024, + 0x6400,0x0024,0x0000,0x0081,0x2801,0xc2c9,0x0000,0x0024, + 0x0007,0x8c13,0x3300,0x0024,0xb010,0x0024,0x0006,0xc650, + 0x2801,0xc2d5,0x0000,0x0024,0x0001,0x0002,0x3413,0x0000, + 0x3009,0x0401,0x4010,0x8406,0x0000,0x0281,0xa010,0x13c1, + 0x4122,0x0024,0x0000,0x03c2,0x6122,0x8002,0x462c,0x0024, + 0x469c,0x0024,0xfee2,0x0024,0x48be,0x0024,0x6066,0x8400, + 0x0006,0xc350,0x2801,0xc2c1,0x0000,0x0024,0x4090,0x0024, + 0x3009,0x2400,0x2900,0x0b80,0x3009,0x0005,0x0007,0x1b50, + 0x2912,0x0d00,0x3613,0x0024,0x3a00,0x0380,0x4080,0x0024, + 0x0000,0x00c1,0x2801,0xcb85,0x3009,0x0000,0xb010,0x008c, + 0x4192,0x0024,0x6012,0x0024,0x0006,0xf051,0x2801,0xc998, + 0x3009,0x0400,0x0007,0x1fd1,0x30e3,0x0400,0x4080,0x0024, + 0x0000,0x0301,0x2801,0xcb85,0x3009,0x0000,0xb010,0x0024, + 0x0000,0x0101,0x6012,0x0024,0x0006,0xf051,0x2801,0xcb95, + 0x0000,0x0024,0x3023,0x0400,0xf200,0x184c,0xb880,0xa400, + 0x3009,0x2000,0x3009,0x0441,0x3e10,0x4402,0x2909,0xa9c0, + 0x3e10,0x8024,0x36e3,0x0024,0x36f4,0xc024,0x36f4,0x1811, + 0x36f1,0x9807,0x36f1,0x1805,0x36f0,0x9803,0x36f0,0x1801, + 0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815,0x2000,0x0000, + 0x36f2,0x9817,0x3613,0x0024,0x3e12,0xb817,0x3e12,0x3815, + 0x3e05,0xb814,0x3615,0x0024,0x0000,0x800a,0x3e10,0x3801, + 0x3e10,0xb803,0x3e11,0x3805,0x3e11,0xf810,0x0001,0x0010, + 0x3e14,0x7812,0xb882,0x3813,0x2914,0xbec0,0x0000,0x2200, + 0xb886,0x12cc,0x2801,0xd800,0x3454,0x8024,0x0001,0x0000, + 0x3000,0x984c,0x4234,0xb843,0xf400,0x4095,0x003b,0xffc2, + 0x3500,0x4024,0xb122,0x0842,0x4010,0x0bc3,0x4010,0x0024, + 0x4010,0x0024,0x4010,0x0024,0x4d82,0x4011,0x2938,0x0600, + 0xf400,0x4450,0x3223,0x184c,0x3210,0x8024,0x32d0,0xc024, + 0x2938,0x0600,0x4d82,0x4450,0x3243,0x1bc3,0x6396,0x0024, + 0x0005,0xdf90,0x3000,0x0024,0x6302,0x0024,0x0005,0xe110, + 0x2801,0xd2d1,0x0000,0x0024,0x2801,0xde80,0x4086,0x0024, + 0x3200,0x930c,0x6398,0x1111,0x4244,0x0844,0xf400,0x4095, + 0x3500,0x584c,0x4438,0x0805,0x453a,0x4115,0x3500,0x8024, + 0x6122,0x4155,0x4280,0x1404,0x0001,0x0002,0x4244,0x0024, + 0x4244,0x0024,0x4244,0x0024,0x4244,0x0024,0x2938,0x2f80, + 0xf400,0x4090,0x6396,0x0024,0x0005,0xdf50,0x3000,0x0024, + 0x6302,0x0024,0x0005,0xe0d2,0x2801,0xda11,0x0000,0x0381, + 0x3073,0x0024,0x3023,0x0024,0x3000,0x0024,0x6012,0x0024, + 0x0001,0x2212,0x2801,0xe395,0x0005,0x1453,0x0001,0x0011, + 0x3093,0x184c,0x3000,0x4024,0x2900,0x78c0,0x3e00,0x4024, + 0x2801,0xe580,0x36f3,0x0024,0x0005,0xe3c1,0x0001,0x0011, + 0x3613,0x024c,0x3e10,0x4024,0x3000,0x8024,0x2900,0x5c40, + 0x3e00,0x8024,0x36e3,0x0024,0x36f4,0xc024,0x36f4,0x5812, + 0x36f1,0xd810,0x36f1,0x1805,0x36f0,0x9803,0x36f0,0x1801, + 0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815,0x2000,0x0000, + 0x36f2,0x9817,0x3613,0x0024,0x3e12,0xb817,0x3e12,0x3815, + 0x3e05,0xb814,0x3625,0x0024,0x0000,0x800a,0x3e10,0x3801, + 0x0000,0x00c1,0xb880,0xb803,0x3e10,0x904c,0x3e11,0x3806, + 0x3e11,0xf810,0x0006,0xf450,0x3e14,0x7812,0x3e14,0xc024, + 0x3cf0,0x2080,0x3009,0x23c0,0x3009,0x2380,0x0000,0x0640, + 0x3009,0x2000,0x2921,0x9440,0x0000,0x00c0,0x2921,0xdd40, + 0x3613,0x0024,0xf400,0x4004,0x0000,0x01c0,0x6400,0x0024, + 0x0000,0x00c0,0x2802,0x0885,0x0000,0x01c1,0x6412,0x4100, + 0x0006,0x0581,0x2801,0xfe01,0x4412,0x0024,0xf400,0x4057, + 0x3702,0x0024,0x2000,0x0000,0x0000,0x0024,0x0006,0xf410, + 0x0000,0x0641,0x3613,0x0000,0x6012,0x0024,0x0000,0x0024, + 0x2801,0xf3d5,0x0000,0x0024,0x3009,0x2004,0x2900,0xb600, + 0x3e01,0x0024,0x2801,0xfe00,0x36f3,0x0024,0x0006,0xf410, + 0x0000,0x0641,0x3613,0x0000,0x6012,0x0024,0x0000,0x0024, + 0x2801,0xf6d5,0x0000,0x0024,0x3009,0x2004,0x2900,0xa400, + 0x3e01,0x0024,0x2801,0xfe00,0x36f3,0x0024,0x0006,0xf450, + 0x3613,0x0000,0x6090,0x3804,0x2900,0xb600,0x3009,0x2000, + 0x2801,0xfe00,0x36f3,0x0024,0x2923,0x4f00,0x0007,0x2050, + 0x2801,0xfe00,0x3009,0x2000,0x2923,0x7580,0x0001,0xfe08, + 0x34d3,0x184c,0x3430,0x0024,0x2922,0x4fc0,0x3e00,0x0024, + 0x2801,0xfe00,0x36f3,0x0024,0x0000,0x3fc0,0x0007,0x2050, + 0x3613,0x0024,0x2923,0x8480,0x3e00,0x0024,0x36f3,0x2000, + 0x0000,0x1800,0x3413,0x0024,0xf400,0x4510,0x34f0,0x4024, + 0x6192,0x0024,0x6014,0x2001,0x0007,0x2051,0x2802,0x0081, + 0x0000,0x0280,0x3009,0x2400,0x3009,0x0400,0x4080,0x0024, + 0x0006,0xf352,0x2802,0x0995,0x3009,0x0842,0x3009,0x0bc3, + 0x4d86,0x0024,0x0000,0x0201,0x2802,0x04c5,0x0030,0x0013, + 0x0006,0x8a93,0x3009,0x0c40,0x3009,0x0fc1,0x6cde,0x0024, + 0x0000,0x0201,0x2802,0x0981,0x0030,0x0013,0x3300,0x0024, + 0xb010,0x0024,0x0000,0x0100,0x2802,0x0995,0x0000,0x00c1, + 0x2921,0x9440,0x3613,0x0024,0x2921,0xdd40,0x3613,0x0024, + 0xf400,0x4004,0x0000,0x01c0,0x6400,0x0024,0x0000,0x01c1, + 0x2801,0xefd5,0x0000,0x00c0,0x2921,0x9440,0x3613,0x0024, + 0x2921,0xc300,0x0000,0x0024,0x36f4,0xc024,0x36f4,0x5812, + 0x36f1,0xd810,0x36f1,0x1806,0x36f0,0x9803,0x36f0,0x1801, + 0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815,0x2000,0x0000, + 0x36f2,0x9817,0x3613,0x0024,0x3e12,0xb817,0x3e12,0x3815, + 0x3e05,0xb814,0x3615,0x0024,0x0000,0x800a,0x3e10,0xb803, + 0x0012,0x5103,0x3e11,0x3805,0x3e11,0xb807,0x3e14,0x380d, + 0x0030,0x0250,0x3e13,0xf80e,0xbe8b,0x83e0,0x290c,0x4840, + 0x3613,0x0024,0x290c,0x4840,0x4086,0x984c,0x0000,0x00ce, + 0x2402,0x138e,0x3009,0x1bc0,0x0000,0x01c3,0xae3a,0x184c, + 0x0000,0x0043,0x3009,0x3842,0x290c,0x4840,0x3009,0x3840, + 0x4084,0x9bc0,0xfe26,0x9bc2,0xceba,0x0024,0x4e8e,0x0024, + 0x4e9a,0x0024,0x4f8e,0x0024,0x0000,0x0102,0x2802,0x18c5, + 0x0030,0x0010,0x0000,0x0206,0x3613,0x0024,0x290c,0x4840, + 0x3009,0x3840,0x3000,0xdbc0,0xb366,0x0024,0x0000,0x0024, + 0x2802,0x18d5,0x4e8e,0x0024,0x4e9a,0x0024,0x4f8e,0x0024, + 0x0030,0x0010,0x2802,0x1595,0x0000,0x0206,0x36f3,0xd80e, + 0x36f4,0x180d,0x36f1,0x9807,0x36f1,0x1805,0x36f0,0x9803, + 0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815,0x2000,0x0000, + 0x36f2,0x9817,0x3613,0x0024,0x3e12,0xb817,0x3e12,0x3815, + 0x3e05,0xb814,0x3635,0x0024,0x0000,0x800a,0x3e10,0x3801, + 0x3e10,0xb803,0x3e11,0x3805,0x3e11,0xb810,0x3e04,0x7812, + 0x34d3,0x0024,0x3400,0x0024,0xf200,0x1102,0xf200,0x0024, + 0xf200,0x0024,0x3cf0,0x0024,0x2914,0xba00,0x0000,0x1600, + 0x0000,0x4001,0x6012,0x108c,0x3ce0,0x0024,0x2802,0x2209, + 0x0000,0x0386,0x0000,0x4000,0x3423,0x0024,0x3ce0,0x0024, + 0x0000,0x0041,0x3413,0x0024,0x34b0,0x8024,0xfe22,0x1100, + 0x48b6,0x0024,0xad66,0x0024,0xfe02,0x0024,0x2915,0x8600, + 0x48b2,0x0024,0x4c8a,0x104c,0x0000,0x0041,0x34f0,0x0024, + 0xfe02,0x0024,0x0000,0xf001,0x6eba,0x0024,0xf040,0x0024, + 0x6012,0x0024,0x0000,0x0041,0x2802,0x2a08,0x0000,0xf002, + 0xf040,0x104c,0x3400,0xc024,0xfe26,0x0024,0x48b6,0x0024, + 0xfe02,0x0024,0x2915,0x8600,0x48b2,0x0024,0x4480,0x33c0, + 0x0000,0xf004,0x2802,0x2a18,0x0000,0x0024,0x003f,0x1004, + 0x0006,0x0090,0x0000,0x0041,0xb884,0x108c,0x6896,0xa004, + 0x34e0,0x0024,0xfe02,0x0024,0x2914,0xa580,0x48b2,0x0024, + 0x0006,0x0110,0x3423,0x23c0,0x34f0,0x0024,0x3410,0x2380, + 0xb880,0xa140,0x3009,0x23c0,0x3009,0x2340,0x3009,0x0000, + 0x4080,0x0024,0x0000,0xba11,0x2802,0x2f95,0x0000,0x0024, + 0x2802,0x3780,0x3ce4,0x4024,0x4080,0x138c,0x0000,0x0001, + 0x2802,0x3418,0x0006,0x0011,0x0000,0xba00,0x6090,0x108c, + 0x3ce0,0x0400,0x6014,0x0024,0x0006,0xa052,0x2802,0x3351, + 0x0004,0x0001,0x6014,0x0024,0x0000,0x0024,0x2802,0x3791, + 0x0000,0x0024,0x3009,0x0800,0x2802,0x3780,0x3009,0x2400, + 0x0000,0xba00,0x6090,0x108c,0x6090,0x0024,0x3ce0,0x0400, + 0x6014,0x0024,0x0006,0xa052,0x2802,0x3711,0x0004,0x0001, + 0x6014,0x0024,0x0000,0x0024,0x2802,0x3791,0x0000,0x0024, + 0x3009,0x0800,0x3009,0x2400,0x3613,0x108c,0x290f,0xfdc0, + 0x34e4,0x3810,0x0000,0x0810,0x290f,0xfcc0,0x3009,0x1bcc, + 0x36f4,0x5812,0x36f1,0x9810,0x36f1,0x1805,0x36f0,0x9803, + 0x36f0,0x1801,0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815, + 0x2000,0x0000,0x36f2,0x9817,0x3613,0x0024,0x3e12,0xb817, + 0x3e12,0x3815,0x3e05,0xb814,0x3615,0x0024,0x0000,0x800a, + 0x3e10,0x3801,0x3e10,0xb803,0x3e11,0x3805,0x3e14,0x3811, + 0x0006,0x01d1,0x0006,0xc610,0x3e04,0xb813,0x3009,0x0000, + 0x3009,0x0401,0x6014,0x0024,0x0030,0x0312,0x2802,0x4355, + 0x0000,0x0024,0x3200,0x044c,0x3009,0x0401,0x6014,0x0024, + 0x0006,0x0292,0x2802,0x4355,0x0006,0xc351,0x3009,0x0400, + 0x3009,0x0801,0x6014,0x0024,0x0000,0x0024,0x2802,0x5985, + 0x0000,0x0024,0x0030,0x0311,0x3100,0x0024,0x4080,0x0024, + 0x0010,0x0000,0x2802,0x4515,0x0000,0x0024,0x3900,0x0024, + 0x3100,0x0024,0x4080,0x0024,0x0001,0xffc0,0x2802,0x4b98, + 0x0030,0x00d2,0x3201,0x0024,0xb408,0x0024,0x0006,0x01d3, + 0x2802,0x47d5,0x0001,0xf400,0x0001,0x0c04,0x4408,0x0401, + 0x3613,0x2004,0x0006,0xc350,0x6810,0xac44,0x3009,0x2c81, + 0x3e10,0x0000,0x2902,0x1b40,0x3e00,0x2c00,0x36f3,0x0000, + 0x6090,0x0024,0x3009,0x2000,0x3009,0x0005,0x459a,0x0024, + 0x2908,0x9300,0x0002,0x5988,0x3201,0x0024,0xb408,0x0024, + 0x0000,0x0081,0x2802,0x4d15,0x0006,0x02d3,0x0001,0x0c04, + 0x0001,0xf400,0x4408,0x8c00,0x6012,0x044c,0x3009,0x184c, + 0x2802,0x4ed5,0x0004,0x0003,0x4448,0x0024,0x39f0,0x3800, + 0xb884,0x3801,0x0000,0x0041,0x3100,0x0024,0xfe02,0x0024, + 0x2915,0x8600,0x48b2,0x0024,0x0006,0x01d0,0x0006,0x02d1, + 0xffc0,0x1bcc,0x48b2,0x0024,0x4cc2,0x0024,0x4cc2,0x0024, + 0x3009,0x2001,0x0000,0x0081,0x3009,0x0400,0x6012,0x0024, + 0x0006,0xc353,0x2802,0x5595,0x0030,0x0312,0x3200,0x404c, + 0x3613,0x2001,0x3e10,0x4c01,0xf212,0x0024,0x3e00,0x4024, + 0x2902,0x1b40,0x0002,0x56c8,0x3200,0x404c,0x3613,0x2001, + 0x3e10,0x4c01,0x2902,0x1b40,0x3e00,0x4024,0x3023,0x0c00, + 0x36f3,0x2340,0x3009,0x0000,0x0006,0xc610,0x3009,0x2000, + 0x3009,0x0c00,0x6090,0x0024,0x3009,0x2c00,0x3009,0x0c05, + 0x2908,0x9300,0x459a,0x0024,0x36f4,0x9813,0x36f4,0x1811, + 0x36f1,0x1805,0x36f0,0x9803,0x36f0,0x1801,0x3405,0x9014, + 0x36f3,0x0024,0x36f2,0x1815,0x2000,0x0000,0x36f2,0x9817, + 0x3613,0x0024,0x3e12,0xb817,0x3e12,0x3815,0x3e05,0xb814, + 0x3615,0x0024,0x0000,0x800a,0x3e10,0xb803,0x3e11,0x3811, + 0x3e14,0xb813,0x3e13,0xf80e,0x2902,0x3b80,0x3e03,0x4024, + 0x4194,0x0024,0x002b,0x1103,0x2802,0x7355,0x0006,0xc351, + 0x3009,0x0402,0x6236,0x0024,0x0010,0x0003,0x2802,0x7351, + 0x0030,0x0311,0x3100,0x8024,0x6236,0x0024,0x0000,0x0024, + 0x2802,0x7105,0x0000,0x0024,0x3100,0x8024,0x4284,0x0024, + 0x0006,0x0793,0x2802,0x7109,0x0000,0x0024,0xf100,0x0012, + 0xb888,0x4491,0x3300,0x8024,0x0006,0x0753,0x6404,0x2c02, + 0x0000,0x0024,0x2802,0x6818,0x4094,0x0024,0x2402,0x6782, + 0x3613,0x0024,0x3220,0x3840,0x2902,0xafc0,0x32e0,0x7801, + 0x3243,0x1bc1,0x6498,0x0024,0x3920,0x1800,0x36f3,0x0024, + 0x0006,0x0753,0xb888,0x0c02,0x0006,0x0793,0x3b10,0x8024, + 0x3004,0x8024,0x3300,0x884c,0x0006,0x0753,0x6404,0x2c02, + 0x0000,0x0024,0x2802,0x6d18,0x4094,0x4491,0x2402,0x6c82, + 0x3613,0x0024,0x3220,0x3840,0x2902,0xafc0,0x32e0,0x7801, + 0x3243,0x1bc1,0x6498,0x0024,0x3920,0x1800,0x36f3,0x0024, + 0x0006,0x0753,0x0000,0x0083,0x3300,0x984c,0x0006,0x07d3, + 0x3b00,0x8024,0x0006,0x02d3,0x3009,0x0c02,0x6236,0x0024, + 0x0000,0x0082,0x2802,0x7085,0x0000,0x0024,0xb884,0xac02, + 0x0006,0x0293,0x3009,0x2c02,0x2802,0x7340,0x3009,0x1bcc, + 0x0006,0x02d2,0x3613,0x0802,0x4294,0x0024,0x0006,0x0293, + 0x2802,0x7305,0x6894,0x0024,0xb884,0xa802,0x3009,0x2c02, + 0x3009,0x1bcc,0x36f3,0x4024,0x36f3,0xd80e,0x36f4,0x9813, + 0x36f1,0x1811,0x36f0,0x9803,0x3405,0x9014,0x36f3,0x0024, + 0x36f2,0x1815,0x2000,0x0000,0x36f2,0x9817,0x3613,0x0024, + 0x3e22,0xb815,0x3e05,0xb814,0xb880,0x1854,0x3e10,0xb811, + 0x0007,0x9251,0xb884,0x3812,0x0006,0x0792,0x3900,0xb813, + 0x0006,0x0753,0x0006,0x1002,0x0002,0x5c11,0x3a10,0x8024, + 0x0006,0x8002,0x3a00,0x8024,0x0006,0x1002,0x0007,0x9252, + 0x3b00,0x9813,0x3a04,0x4024,0x36f4,0x8024,0x36f0,0x9811, + 0x3405,0x9014,0x36e3,0x0024,0x2000,0x0000,0x36f2,0x9815, + 0x3009,0x3857,0x3e18,0x3822,0x3e18,0x780a,0x3e10,0x3801, + 0x48b2,0x3855,0x3e10,0x3801,0x0000,0x800a,0x3e14,0x3811, + 0x3e14,0xb813,0x0006,0x0013,0x0023,0xffd1,0x0006,0x0192, + 0x3009,0x0800,0x4080,0x8c10,0x0030,0x0552,0x2802,0x8bc5, + 0xf400,0x4401,0x0006,0x0093,0x3e10,0xb803,0x3e01,0x0c40, + 0x4000,0x8cc4,0x4010,0x8c02,0x0000,0x0001,0x6010,0x4012, + 0x0006,0x0113,0x2802,0x8398,0x6428,0x8c80,0x0004,0x0013, + 0x3283,0x0024,0x0006,0x0193,0x3009,0x0203,0x3009,0x0c02, + 0xfe26,0x0024,0x48b6,0x8841,0xfe42,0x0024,0x4db6,0x0024, + 0xffb0,0x4003,0x48b2,0x0024,0xffa6,0x8203,0x40b2,0x8f82, + 0x0030,0x0555,0x3d10,0x4c80,0xfe26,0x0024,0x48b6,0x8bc1, + 0xfe42,0x0024,0x4db6,0x0024,0xffb0,0x4003,0x48b2,0x0024, + 0xffa6,0x1bc4,0x40b2,0x8c02,0x4290,0x3401,0x3009,0x2f00, + 0x2802,0x8c95,0x3009,0x0c00,0x4000,0x4401,0x4100,0x0024, + 0x0000,0x0001,0x6014,0x4010,0x0004,0x0001,0x2802,0x8c98, + 0x4010,0x0024,0x2802,0x8c80,0xf400,0x4010,0x3e00,0x8200, + 0x3a10,0x0200,0x3a00,0x3803,0x0006,0x0152,0x6104,0x8b00, + 0x6090,0x8901,0x6014,0xa800,0x0006,0xa053,0x2802,0x8f48, + 0xb880,0x4402,0x3009,0x2b80,0x3009,0x08c0,0x4090,0x4402, + 0x3009,0x2800,0x0006,0x0012,0x3009,0x2810,0x3009,0x0c01, + 0x6214,0x0024,0x0006,0x0092,0x2802,0x9198,0x0000,0x0100, + 0x0004,0x0001,0x4214,0x0024,0x3009,0x0801,0x4112,0x8c10, + 0x6010,0x020c,0x6204,0x020c,0x3083,0x1803,0x2802,0x9389, + 0x36f0,0x820c,0x3009,0x2c10,0x36f4,0x9813,0x36f4,0x1811, + 0x36f0,0x1801,0x2210,0x0000,0x36f5,0x4024,0x36f0,0x1801, + 0x36f8,0x580a,0x36f8,0x1822,0x0030,0x0717,0x2100,0x0000, + 0x3f05,0xdbd7,0x3009,0x3853,0x3e18,0x3823,0x3e18,0x780a, + 0x3e10,0x3801,0x48b2,0x0024,0x3e10,0x3801,0x0000,0x800a, + 0x3e10,0xb803,0x3e11,0x3810,0x3e04,0x7812,0x0006,0x0010, + 0x0006,0x0191,0x3009,0x0400,0x4080,0x8012,0x0030,0x0553, + 0x2802,0xa385,0x3009,0x0840,0x0006,0x0093,0x32f3,0x0c40, + 0x4000,0x4481,0x4010,0x8843,0xf400,0x4011,0x0004,0x0001, + 0x6014,0x8cc4,0x0030,0x0550,0x2802,0x9dd1,0x3009,0x0f82, + 0x0ffc,0x0010,0x3183,0x0024,0x0030,0x0550,0x6428,0x184c, + 0xfe27,0xe6e7,0x48b6,0x8447,0xfe4e,0x8c87,0x4db6,0x0024, + 0xffbe,0x8bc3,0x48b2,0x0024,0xffae,0x8f82,0x40b2,0x0024, + 0xfe26,0x2041,0x48b6,0x87c7,0xfe4e,0x0024,0x4db6,0x8c87, + 0xffbe,0x0024,0x48b2,0x0024,0xffae,0x0024,0x40b2,0x8c02, + 0x4290,0x2001,0x3009,0x2c00,0x2802,0xa415,0x36f1,0x9807, + 0x2802,0xa400,0xf400,0x4452,0x3b10,0x0bc0,0x3b00,0x0024, + 0x0006,0x0150,0x3223,0x0300,0x6090,0x8101,0x6014,0x4484, + 0x0004,0x0001,0x2802,0xa708,0x6414,0xa300,0xb880,0x810c, + 0x3009,0x2380,0x3009,0x00c0,0x4090,0x4484,0x6414,0xa000, + 0x0006,0xa051,0x2802,0xa891,0x0006,0x0010,0x0ffc,0x0013, + 0x3283,0x0024,0xf400,0x4484,0x3009,0x0400,0x6408,0xa012, + 0x0000,0x0400,0x2802,0xaa98,0x6404,0x8412,0x0004,0x0002, + 0x4428,0x0024,0x6404,0x0024,0x0000,0x0413,0x2802,0xad08, + 0x3283,0x0024,0xf400,0x4480,0x6014,0x0024,0x0ffc,0x0013, + 0x2802,0xacd1,0x0000,0x0024,0x3283,0x0024,0x3009,0x2412, + 0x36f4,0x5812,0x36f1,0x1810,0x36f0,0x9803,0x36f0,0x1801, + 0x2210,0x0000,0x36f0,0x1801,0x36f8,0x580a,0x36f8,0x1823, + 0x0030,0x0713,0x2100,0x0000,0x3b04,0xdbd3,0x3613,0x0024, + 0x3e12,0x8024,0x3e10,0xb803,0x3e14,0x3811,0x3e14,0xb813, + 0x3e13,0x780e,0x3e03,0xc024,0x0001,0x000a,0x0006,0x0755, + 0x3504,0x0024,0x0020,0x0b91,0x3880,0x0024,0x3880,0x4024, + 0xbd86,0x3410,0x0008,0x2b91,0x003f,0x15d2,0x0000,0x0053, + 0x0000,0x058e,0x2402,0xb4ce,0xfe25,0x0829,0x5017,0x0829, + 0x000e,0x7b91,0x5016,0x020c,0x4db6,0x0001,0x4d16,0x1bcf, + 0xf1d6,0x980e,0xf7d0,0x1bcd,0x36f4,0x9813,0x36f4,0x1811, + 0x36f0,0x9803,0x2000,0x0000,0x36f2,0x8024,0xb386,0x40d7, + 0x4284,0x184c,0x0000,0x05c0,0x2802,0xb955,0xf5d8,0x3804, + 0x0000,0x0984,0x6400,0xb84a,0x3e13,0xf80d,0xa204,0x380e, + 0x0000,0x800a,0x0000,0x00ce,0x2402,0xbc8e,0xffa4,0x0024, + 0x48b6,0x0024,0x0000,0x0024,0x2802,0xbc84,0x4000,0x40c2, + 0x4224,0x0024,0x6090,0x0024,0xffa4,0x0024,0x0fff,0xfe83, + 0xfe86,0x1bce,0x36f3,0xd80d,0x48b6,0x0024,0x0fff,0xff03, + 0xa230,0x45c3,0x2000,0x0000,0x36f1,0x180a, + 0x0007,0x0001, /*copy 1*/ + 0x802e, + 0x0006,0x0002, /*copy 2*/ + 0x2801,0x6b00, + 0x0007,0x0001, /*copy 1*/ + 0x8030, + 0x0006,0x0002, /*copy 2*/ + 0x2800,0x1b40, + 0x0007,0x0001, /*copy 1*/ + 0x8028, + 0x0006,0x0002, /*copy 2*/ + 0x2a00,0x148e, + 0x0007,0x0001, /*copy 1*/ + 0x8032, + 0x0006,0x0002, /*copy 2*/ + 0x2801,0x9740, + 0x0007,0x0001, /*copy 1*/ + 0x3580, + 0x0006, 0x8038, 0x0000, /*Rle(56)*/ + 0x0007,0x0001, /*copy 1*/ + 0xfab3, + 0x0006,0x01bc, /*copy 444*/ + 0x0001,0x0001,0x0001,0x0001,0x0000,0xffff,0xfffe,0xfffb, + 0xfff9,0xfff5,0xfff2,0xffed,0xffe8,0xffe3,0xffde,0xffd8, + 0xffd3,0xffce,0xffca,0xffc7,0xffc4,0xffc4,0xffc5,0xffc7, + 0xffcc,0xffd3,0xffdc,0xffe6,0xfff3,0x0001,0x0010,0x001f, + 0x002f,0x003f,0x004e,0x005b,0x0066,0x006f,0x0074,0x0075, + 0x0072,0x006b,0x005f,0x004f,0x003c,0x0024,0x0009,0xffed, + 0xffcf,0xffb0,0xff93,0xff77,0xff5f,0xff4c,0xff3d,0xff35, + 0xff34,0xff3b,0xff4a,0xff60,0xff7e,0xffa2,0xffcd,0xfffc, + 0x002e,0x0061,0x0094,0x00c4,0x00f0,0x0114,0x0131,0x0144, + 0x014b,0x0146,0x0134,0x0116,0x00eb,0x00b5,0x0075,0x002c, + 0xffde,0xff8e,0xff3d,0xfeef,0xfea8,0xfe6a,0xfe39,0xfe16, + 0xfe05,0xfe06,0xfe1b,0xfe43,0xfe7f,0xfecd,0xff2a,0xff95, + 0x0009,0x0082,0x00fd,0x0173,0x01e1,0x0242,0x0292,0x02cc, + 0x02ec,0x02f2,0x02da,0x02a5,0x0253,0x01e7,0x0162,0x00c9, + 0x0021,0xff70,0xfebc,0xfe0c,0xfd68,0xfcd5,0xfc5b,0xfc00, + 0xfbc9,0xfbb8,0xfbd2,0xfc16,0xfc85,0xfd1b,0xfdd6,0xfeae, + 0xff9e,0x009c,0x01a0,0x02a1,0x0392,0x046c,0x0523,0x05b0, + 0x060a,0x062c,0x0613,0x05bb,0x0526,0x0456,0x0351,0x021f, + 0x00c9,0xff5a,0xfde1,0xfc6a,0xfb05,0xf9c0,0xf8aa,0xf7d0, + 0xf73d,0xf6fa,0xf70f,0xf77e,0xf848,0xf96b,0xfadf,0xfc9a, + 0xfe8f,0x00ad,0x02e3,0x051a,0x073f,0x0939,0x0af4,0x0c5a, + 0x0d59,0x0de1,0x0de5,0x0d5c,0x0c44,0x0a9e,0x0870,0x05c7, + 0x02b4,0xff4e,0xfbaf,0xf7f8,0xf449,0xf0c7,0xed98,0xeae0, + 0xe8c4,0xe765,0xe6e3,0xe756,0xe8d2,0xeb67,0xef19,0xf3e9, + 0xf9cd,0x00b5,0x088a,0x112b,0x1a72,0x2435,0x2e42,0x3866, + 0x426b,0x4c1b,0x553e,0x5da2,0x6516,0x6b6f,0x7087,0x7441, + 0x7686,0x774a,0x7686,0x7441,0x7087,0x6b6f,0x6516,0x5da2, + 0x553e,0x4c1b,0x426b,0x3866,0x2e42,0x2435,0x1a72,0x112b, + 0x088a,0x00b5,0xf9cd,0xf3e9,0xef19,0xeb67,0xe8d2,0xe756, + 0xe6e3,0xe765,0xe8c4,0xeae0,0xed98,0xf0c7,0xf449,0xf7f8, + 0xfbaf,0xff4e,0x02b4,0x05c7,0x0870,0x0a9e,0x0c44,0x0d5c, + 0x0de5,0x0de1,0x0d59,0x0c5a,0x0af4,0x0939,0x073f,0x051a, + 0x02e3,0x00ad,0xfe8f,0xfc9a,0xfadf,0xf96b,0xf848,0xf77e, + 0xf70f,0xf6fa,0xf73d,0xf7d0,0xf8aa,0xf9c0,0xfb05,0xfc6a, + 0xfde1,0xff5a,0x00c9,0x021f,0x0351,0x0456,0x0526,0x05bb, + 0x0613,0x062c,0x060a,0x05b0,0x0523,0x046c,0x0392,0x02a1, + 0x01a0,0x009c,0xff9e,0xfeae,0xfdd6,0xfd1b,0xfc85,0xfc16, + 0xfbd2,0xfbb8,0xfbc9,0xfc00,0xfc5b,0xfcd5,0xfd68,0xfe0c, + 0xfebc,0xff70,0x0021,0x00c9,0x0162,0x01e7,0x0253,0x02a5, + 0x02da,0x02f2,0x02ec,0x02cc,0x0292,0x0242,0x01e1,0x0173, + 0x00fd,0x0082,0x0009,0xff95,0xff2a,0xfecd,0xfe7f,0xfe43, + 0xfe1b,0xfe06,0xfe05,0xfe16,0xfe39,0xfe6a,0xfea8,0xfeef, + 0xff3d,0xff8e,0xffde,0x002c,0x0075,0x00b5,0x00eb,0x0116, + 0x0134,0x0146,0x014b,0x0144,0x0131,0x0114,0x00f0,0x00c4, + 0x0094,0x0061,0x002e,0xfffc,0xffcd,0xffa2,0xff7e,0xff60, + 0xff4a,0xff3b,0xff34,0xff35,0xff3d,0xff4c,0xff5f,0xff77, + 0xff93,0xffb0,0xffcf,0xffed,0x0009,0x0024,0x003c,0x004f, + 0x005f,0x006b,0x0072,0x0075,0x0074,0x006f,0x0066,0x005b, + 0x004e,0x003f,0x002f,0x001f,0x0010,0x0001,0xfff3,0xffe6, + 0xffdc,0xffd3,0xffcc,0xffc7,0xffc5,0xffc4,0xffc4,0xffc7, + 0xffca,0xffce,0xffd3,0xffd8,0xffde,0xffe3,0xffe8,0xffed, + 0xfff2,0xfff5,0xfff9,0xfffb,0xfffe,0xffff,0x0000,0x0001, + 0x0001,0x0001,0x0001,0x0000,0xffd8,0x0052,0xff62,0x0116, + 0xfe3a,0x02c3,0xfbd5,0x0633,0xf6b8,0x0e89,0xe5ee,0x511e, + 0x511e,0xe5ee,0x0e89,0xf6b8,0x0633,0xfbd5,0x02c3,0xfe3a, + 0x0116,0xff62,0x0052,0xffd8, + 0x0007,0x0001, /*copy 1*/ + 0x180b, + 0x0006,0x0012, /*copy 18*/ + 0x000f,0x0010,0x001c,0xfab3,0x3580,0x8037,0xa037,0x0001, + 0x0000,0x3580,0x01a4,0x07c7,0x07d3,0x07e6,0x07df,0x07ea, + 0x07ec,0x07f2, + 0x0007,0x0001, /*copy 1*/ + 0x8025, + 0x0006,0x0002, /*copy 2*/ + 0x2a01,0x824e, + 0x0007,0x0001, /*copy 1*/ + 0x5800, + 0x0006,0x0005, /*copy 5*/ + 0x0000,0x0c00,0x0000,0x0100,0x0100, + 0x0006, 0x8006, 0x0000, /*Rle(6)*/ + 0x000a,0x0001, /*copy 1*/ + 0x0050, +#define PLUGIN_SIZE 5964 +#ifndef SKIP_PLUGIN_VARNAME +}; +#endif diff --git a/src/patches/vs1053b-patches.plg b/src/patches/vs1053b-patches.plg new file mode 100644 index 0000000..3604ccb --- /dev/null +++ b/src/patches/vs1053b-patches.plg @@ -0,0 +1,624 @@ +#ifndef SKIP_PLUGIN_VARNAME +const unsigned short PATCHES[] = { /* Compressed plugin */ +#endif + 0x0007,0x0001, /*copy 1*/ + 0x8050, + 0x0006,0x001e, /*copy 30*/ + 0x2a00,0xc000,0x3e12,0xb817,0x3e14,0xf812,0x3e01,0xb811, + 0x0007,0x9717,0x0020,0xffd2,0x0030,0x11d1,0x3111,0x8024, + 0x3704,0xc024,0x3b81,0x8024,0x3101,0x8024,0x3b81,0x8024, + 0x3f04,0xc024,0x2808,0x4800,0x36f1,0x9811, + 0x0007,0x0001, /*copy 1*/ + 0x8060, + 0x0006,0x0510, /*copy 1296*/ + 0xf400,0x4095,0x0000,0x02c2,0x6124,0x0024,0x0000,0x0024, + 0x2800,0x1ac5,0x4192,0x4542,0x0000,0x0041,0x2000,0x0015, + 0x0030,0x0317,0x2000,0x0000,0x3f00,0x4024,0x2000,0x0000, + 0x0000,0x0000,0x3e12,0x3800,0x3e00,0xb804,0x0030,0x0015, + 0x0007,0x8257,0x3700,0x984c,0xf224,0x1444,0xf224,0x0024, + 0x0008,0x0002,0x2910,0x0181,0x0000,0x1bc8,0xb428,0x1402, + 0x0000,0x8004,0x2910,0x0195,0x0000,0x1bc8,0xb428,0x0024, + 0x0006,0x0095,0x2800,0x2945,0x3e13,0x780e,0x3e11,0x7803, + 0x3e13,0xf806,0x3e11,0xf801,0x3510,0xb808,0x003f,0xe004, + 0xfec4,0x3800,0x48be,0x17c3,0xfec6,0x41c2,0x48be,0x4497, + 0x4090,0x1c46,0xf06c,0x0024,0x2400,0x2580,0x6090,0x41c3, + 0x6628,0x1c47,0x0000,0x0024,0x2800,0x2449,0xf07e,0x0024, + 0xf400,0x4182,0x673a,0x1c46,0x0000,0x0024,0x2800,0x2589, + 0xf06c,0x0024,0xf400,0x41c3,0x0000,0x0024,0x4224,0x3442, + 0x2902,0x1b40,0x4336,0x37c3,0x0000,0x1805,0x2902,0x1b40, + 0x4508,0x40c2,0x450a,0x9808,0x0000,0x0207,0xa478,0x1bc0, + 0xc45a,0x1807,0x0030,0x03d5,0x3d01,0x5bc1,0x36f3,0xd806, + 0x3601,0x5803,0x36f3,0x0024,0x36f3,0x580e,0x0007,0x8257, + 0x0000,0x6004,0x3730,0x8024,0xb244,0x1c04,0xd428,0x3c02, + 0x0006,0xc717,0x2800,0x2d05,0x4284,0x0024,0x3613,0x3c02, + 0x0006,0xc357,0x2901,0x6b00,0x3e11,0x5c05,0x4284,0x1bc5, + 0x0007,0x8257,0x2800,0x3285,0x0002,0x0001,0x3701,0x0024, + 0x0006,0xc357,0xb412,0x9c02,0x002e,0xe001,0x2800,0x3005, + 0x6212,0x0024,0x0000,0x0024,0x2800,0x3295,0x0000,0x0024, + 0x0030,0x0117,0x3f00,0x0024,0x3613,0x0024,0x3e10,0x3813, + 0x3e14,0x8024,0x3e04,0x8024,0x2900,0x4b40,0x0006,0x02d3, + 0x36e3,0x0024,0x3009,0x1bd3,0x0007,0x8257,0x3700,0x8024, + 0xf224,0x0024,0x0000,0x0024,0x2800,0x3491,0x3600,0x9844, + 0x2900,0x3a40,0x0000,0x3508,0x2911,0xf140,0x0000,0x0024, + 0x0030,0x0057,0x3700,0x0024,0xf200,0x4595,0x0fff,0xfe02, + 0xa024,0x164c,0x8000,0x17cc,0x3f00,0x0024,0x3500,0x0024, + 0x0021,0x6d82,0xd024,0x44c0,0x0006,0xa402,0x2800,0x3955, + 0xd024,0x0024,0x0000,0x0000,0x2800,0x3955,0x000b,0x6d57, + 0x3009,0x3c00,0x36f0,0x8024,0x36f2,0x1800,0x2000,0x0000, + 0x0000,0x0024,0x3e14,0x7810,0x3e13,0xb80d,0x3e13,0xf80a, + 0x3e10,0xb803,0x3e11,0x3805,0x3e11,0xb807,0x3e14,0xf801, + 0x3e15,0x3815,0x0001,0x000a,0x0006,0xc4d7,0xbf8e,0x9c42, + 0x3e01,0x9c03,0x0006,0xa017,0x0023,0xffd1,0x0007,0x8250, + 0x0fff,0xfd85,0x3001,0x0024,0xa45a,0x4494,0x0000,0x0093, + 0x2800,0x4091,0xf25a,0x104c,0x34f3,0x0024,0x2800,0x4091, + 0x0000,0x0024,0x3413,0x084c,0x0000,0x0095,0x3281,0xf806, + 0x4091,0x4d64,0x2400,0x42c0,0x4efa,0x9c10,0xf1eb,0x6061, + 0xfe55,0x2f66,0x5653,0x4d64,0x48b2,0xa201,0x4efa,0xa201, + 0x36f3,0x3c10,0x36f5,0x1815,0x36f4,0xd801,0x36f1,0x9807, + 0x36f1,0x1805,0x36f0,0x9803,0x36f3,0xd80a,0x36f3,0x980d, + 0x2000,0x0000,0x36f4,0x5810,0x36f3,0x0024,0x3009,0x3848, + 0x3e14,0x3811,0x3e00,0x0024,0x0000,0x4000,0x0001,0x0010, + 0x2915,0x94c0,0x0001,0xcc11,0x36f0,0x0024,0x2927,0x9e40, + 0x3604,0x1811,0x3613,0x0024,0x3e14,0x3811,0x3e00,0x0024, + 0x0000,0x4000,0x0001,0x0010,0x2915,0x94c0,0x0001,0xcc11, + 0x36f0,0x0024,0x36f4,0x1811,0x3009,0x1808,0x2000,0x0000, + 0x0000,0x190d,0x3613,0x0024,0x3e22,0xb815,0x3e05,0xb814, + 0x3615,0x0024,0x0000,0x800a,0x3e13,0x7801,0x3e10,0xb803, + 0x3e11,0x3805,0x3e11,0xb807,0x3e14,0x3811,0x3e14,0xb813, + 0x3e03,0xf80e,0xb488,0x44d5,0x3543,0x134c,0x34e5,0xc024, + 0x3524,0x8024,0x35a4,0xc024,0x3710,0x8a0c,0x3540,0x4a0c, + 0x3d44,0x8024,0x3a10,0x8024,0x3590,0x0024,0x4010,0x15c1, + 0x6010,0x3400,0x3710,0x8024,0x2800,0x5704,0x3af0,0x8024, + 0x3df0,0x0024,0x3591,0x4024,0x3530,0x4024,0x4192,0x4050, + 0x6100,0x1482,0x4020,0x1753,0xbf8e,0x1582,0x4294,0x4011, + 0xbd86,0x408e,0x2400,0x550e,0xfe6d,0x2819,0x520e,0x0a00, + 0x5207,0x2819,0x4fbe,0x0024,0xad56,0x904c,0xaf5e,0x1010, + 0xf7d4,0x0024,0xf7fc,0x2042,0x6498,0x2046,0x3cf4,0x0024, + 0x3400,0x170c,0x4090,0x1492,0x35a4,0xc024,0x2800,0x4f95, + 0x3c00,0x0024,0x4480,0x914c,0x36f3,0xd80e,0x36f4,0x9813, + 0x36f4,0x1811,0x36f1,0x9807,0x36f1,0x1805,0x36f0,0x9803, + 0x36f3,0x5801,0x3405,0x9014,0x36e3,0x0024,0x2000,0x0000, + 0x36f2,0x9815,0x2814,0x9c91,0x0000,0x004d,0x2814,0x9940, + 0x003f,0x0013,0x3613,0x0024,0x3e12,0xb817,0x3e12,0x3815, + 0x3e05,0xb814,0x3655,0x0024,0x0000,0x800a,0x3e10,0x3801, + 0x3e10,0xb803,0x3e11,0x3805,0x3e11,0xb810,0x3e13,0xf80e, + 0x3e03,0x534c,0x3450,0x4024,0x6814,0x0024,0x0000,0x0024, + 0x2800,0x7618,0x4192,0x0024,0x2400,0x75c1,0x0000,0x0024, + 0xf400,0x4450,0x2938,0x1880,0x3613,0x0024,0x3c10,0x050c, + 0x3c10,0x4024,0x3c90,0x8024,0x34f3,0x0024,0x3464,0x0024, + 0x3011,0x0c40,0x3011,0x4c41,0x2915,0x9900,0x3011,0x8f82, + 0x3411,0x2c40,0x3411,0x6c41,0x2915,0xa580,0x34e1,0xaf82, + 0x3009,0x3040,0x4c8a,0x0040,0x3010,0x7041,0x2800,0x6854, + 0x3010,0xb382,0x3411,0x0024,0x3411,0x6c44,0x34e1,0xac45, + 0xbe8a,0xaf86,0x0fe0,0x0006,0x3009,0x3044,0x3009,0x3045, + 0x3009,0x3386,0x3411,0x0024,0x3411,0x4ccc,0x2915,0x9900, + 0x34e1,0x984c,0x3e10,0x7800,0x3009,0x3802,0x3011,0x0c40, + 0x3011,0x4c41,0x2915,0x9900,0x30e1,0x8f82,0x3009,0x1bc6, + 0x2915,0xa940,0x36f1,0x5804,0x3011,0x2c40,0x3011,0x6c41, + 0x30b1,0xac42,0x3009,0x0c40,0x3009,0x0c41,0x2915,0x9900, + 0x3613,0x0f82,0x3e10,0x7800,0x3009,0x3802,0x3010,0x1044, + 0x3010,0x5045,0x2915,0x9900,0x3010,0x9386,0x3009,0x1bc6, + 0x2915,0xa940,0x36f1,0x5804,0xf1ca,0xac40,0x4ce2,0xac41, + 0x3009,0x2ec2,0x2800,0x7112,0x629c,0x0024,0xf1c2,0x4182, + 0x3c10,0x0c44,0x3c10,0x4c45,0x2915,0x4780,0x3ce0,0x8f86, + 0x4080,0x0024,0x0000,0x0024,0x2800,0x75d5,0x0020,0x0000, + 0x3411,0x0c40,0x3411,0x4c41,0x2915,0xb780,0x34e1,0x8f82, + 0x0000,0x03c3,0x4234,0x0024,0x4c82,0x0024,0x0000,0x0024, + 0x2915,0x4355,0x0000,0x75c8,0x0000,0x0000,0x3a10,0x0d8c, + 0x36f3,0x538c,0x36f3,0xd80e,0x36f1,0x9810,0x36f1,0x1805, + 0x36f0,0x9803,0x36f0,0x1801,0x3405,0x9014,0x36f3,0x0024, + 0x36f2,0x1815,0x2000,0x0000,0x36f2,0x9817,0x3613,0x0024, + 0x3e12,0xb817,0x3e12,0x3815,0x3e05,0xb814,0x3645,0x0024, + 0x0000,0x800a,0x3e10,0x3801,0x3e10,0xb803,0x3e11,0x3805, + 0x3e11,0xb810,0x3e13,0xf80e,0x3e03,0x534c,0x3440,0x4024, + 0x4192,0x0024,0x2400,0x91c1,0x0000,0x0024,0xb68c,0x4450, + 0x2938,0x1880,0x3613,0x050c,0x3c10,0x0c40,0x3c10,0x4c41, + 0x3ce0,0x8f82,0x003c,0x2584,0x2915,0x9900,0x0018,0x8245, + 0x3411,0x2c40,0x3411,0x6c41,0x2915,0xa580,0x34e1,0xac42, + 0x4c8a,0xb040,0x3009,0x3041,0x2800,0x82d4,0x3009,0x3382, + 0x3411,0x0f4c,0x3411,0x6c44,0x34e1,0xac45,0xbe8a,0xac46, + 0x499c,0xb044,0xf38c,0xb045,0x3009,0x3386,0x3009,0x0c40, + 0x3009,0x0c41,0xf1ca,0x8f82,0x4ce2,0x1044,0x3411,0x4024, + 0x2800,0x8512,0x4294,0x1386,0x6294,0x0024,0xf1c2,0x0024, + 0x4e8a,0x4195,0x35e3,0x0024,0x2915,0xa955,0xf400,0x4546, + 0x3009,0x2c40,0x3009,0x2c41,0x3009,0x2c42,0x3009,0x0c40, + 0x3009,0x0c41,0xf1ca,0x8f82,0x4ce2,0x9044,0x3009,0x1045, + 0x2800,0x8985,0x3009,0x1386,0x2800,0x8992,0x4294,0x0024, + 0x6294,0x0024,0xf1c2,0x0024,0x4e8a,0x4195,0x35e3,0x0024, + 0x2915,0xa955,0xf400,0x4546,0xf1ca,0xac40,0x4ce2,0xac41, + 0x3009,0x2ec2,0x2800,0x8c12,0x629c,0x0024,0xf1c2,0x4182, + 0x3c20,0x0c84,0x3cf0,0x8fc6,0x6264,0x4017,0x3cf0,0x4fc5, + 0x2800,0x91c8,0x0020,0x0000,0x2800,0x8f19,0xf400,0x45c0, + 0x6cea,0x0024,0x0000,0x0024,0x2800,0x91c9,0x0020,0x0000, + 0x3411,0x0c40,0x3411,0x4c41,0x2915,0xb780,0x34e1,0x8f82, + 0x0000,0x03c3,0x4234,0x0024,0x4c82,0x0024,0x0000,0x0024, + 0x2915,0x4355,0x0000,0x91c8,0x0000,0x0000,0x3a10,0x0d8c, + 0x36f3,0x53cc,0x36f3,0xd80e,0x36f1,0x9810,0x36f1,0x1805, + 0x36f0,0x9803,0x36f0,0x1801,0x3405,0x9014,0x36f3,0x0024, + 0x36f2,0x1815,0x2000,0x0000,0x36f2,0x9817,0xf400,0x4595, + 0x35e3,0x3840,0x3e13,0xf80e,0x3e13,0x7808,0x3510,0x0024, + 0x3e10,0x0024,0x3510,0x0024,0x3e10,0x0024,0x3510,0x0024, + 0x3e00,0x0024,0x0001,0xce8e,0x002b,0xb30f,0x292d,0xa940, + 0x0000,0x004d,0x36d3,0x0024,0x36f3,0x5808,0x36f3,0xd80e, + 0x2000,0x0000,0x3009,0x1800,0xf400,0x4595,0x35f3,0x3840, + 0x3e13,0xf80e,0x3e13,0x7808,0x3510,0x0024,0x3e10,0x0024, + 0x3510,0x0024,0x3e00,0x0024,0x0000,0x9dce,0x0028,0x088f, + 0x2927,0xff80,0x0000,0x008d,0x36e3,0x0024,0x36f3,0x5808, + 0x36f3,0xd80e,0x2000,0x0000,0x3009,0x1800,0x0028,0x2b0f, + 0x0000,0xa34e,0x2828,0x0b15,0x0007,0x2605,0x3613,0x0001, + 0x3e14,0x3811,0x0001,0x0011,0x0001,0xcc10,0x2915,0x94c0, + 0x0000,0x4000,0x3e10,0x534c,0x3430,0xc024,0x3e10,0xc024, + 0x2927,0xc4c0,0x3e01,0x0024,0x36d3,0x0024,0x0001,0x0011, + 0x0001,0xcc10,0x2915,0x94c0,0x0000,0x4000,0x2828,0x0b00, + 0x36f4,0x1811,0x3e00,0x0024,0x2800,0xa740,0x0028,0x2bc8, + 0x3605,0x7840,0x3e13,0x780e,0x3e13,0xf808,0x3e05,0x4024, + 0x0000,0x458e,0x0027,0x9e0f,0x2922,0xa6c0,0x0000,0x190d, + 0x36f3,0x0024,0x36f3,0xd808,0x36f3,0x580e,0x2000,0x0000, + 0x3009,0x1800,0xf400,0x4595,0x35d3,0x3840,0x3e13,0xf80e, + 0x3e13,0x7808,0x3510,0x0024,0x3e10,0x0024,0x3510,0x0024, + 0x3e10,0x0024,0x3510,0x0024,0x3e10,0x0024,0x3510,0x0024, + 0x3e00,0x0024,0x0000,0xac8e,0x0025,0xf54f,0x2925,0xe580, + 0x0000,0x004d,0x36c3,0x0024,0x36f3,0x5808,0x36f3,0xd80e, + 0x2000,0x0000,0x3009,0x1800,0x3433,0x0000,0x6890,0x3040, + 0x3cc0,0xa000,0x0008,0x6201,0x000d,0x3500,0x3613,0x110c, + 0x3e10,0x0024,0x3e10,0x4024,0x34c0,0x8024,0x2900,0x94c0, + 0x3e00,0x8024,0x0026,0x0a4f,0x0000,0xb04e,0x2825,0xf880, + 0x0000,0x07cd,0x0000,0x0801,0x6012,0x0024,0x0000,0x0024, + 0x2826,0x0a85,0x0000,0x0024,0x2800,0xad40,0x0000,0x0024, + 0x3605,0x7840,0x3e13,0x780e,0x3e13,0xf808,0x3e05,0x4024, + 0x0000,0xb54e,0x0022,0xf54f,0x2922,0xda80,0x0000,0x190d, + 0x36f3,0x0024,0x36f3,0xd808,0x36f3,0x580e,0x2000,0x0000, + 0x3009,0x1800,0x3e00,0x0024,0x2800,0x9980,0x0022,0xf608, + 0x3605,0x7840,0x3e13,0x780e,0x3e13,0xf808,0x3e05,0x4024, + 0x0000,0xb94e,0x0022,0xa1cf,0x2922,0x9980,0x0000,0x190d, + 0x36f3,0x0024,0x36f3,0xd808,0x36f3,0x580e,0x2000,0x0000, + 0x3009,0x1800,0x3009,0x3400,0x2800,0xb200,0x0022,0xa288, + 0x0007,0x0001, /*copy 1*/ + 0x8300, + 0x0006,0x0b12, /*copy 2834*/ + 0x0030,0x0055,0xb080,0x1402,0x0fdf,0xffc1,0x0007,0x9257, + 0xb212,0x3c00,0x3d00,0x4024,0x0006,0x0097,0x3f10,0x0024, + 0x3f00,0x0024,0x0030,0x0297,0x3f00,0x0024,0x0007,0x9017, + 0x3f00,0x0024,0x0007,0x81d7,0x3f10,0x0024,0xc090,0x3c00, + 0x0006,0x0297,0xb080,0x3c00,0x0000,0x0401,0x000a,0x1055, + 0x0006,0x0017,0x3f10,0x3401,0x000a,0x2795,0x3f00,0x3401, + 0x0001,0x6ad7,0xf400,0x55c0,0x0000,0x0817,0xb080,0x57c0, + 0x0014,0x958f,0x0000,0x5b4e,0x0030,0x0017,0x3700,0x0024, + 0x0004,0x0001,0xb012,0x0024,0x0000,0x004d,0x280f,0xe115, + 0x0006,0x2016,0x0006,0x01d7,0x3f00,0x0024,0x0000,0x190d, + 0x000f,0xf94f,0x0000,0xcd0e,0x280f,0xe100,0x0006,0x2016, + 0x0000,0x0080,0x0005,0x4f92,0x2909,0xf840,0x3613,0x2800, + 0x0006,0x0197,0x0006,0xa115,0xb080,0x0024,0x3f00,0x3400, + 0x0007,0x8a57,0x3700,0x0024,0x4080,0x0024,0x0000,0x0040, + 0x2800,0xced5,0x0006,0xa2d7,0x3009,0x3c00,0x0006,0xa157, + 0x3009,0x1c00,0x0006,0x01d7,0x0000,0x190d,0x000a,0x708f, + 0x0000,0xd7ce,0x290b,0x1a80,0x3f00,0x184c,0x0030,0x0017, + 0x4080,0x1c01,0x0000,0x0200,0x2800,0xcb15,0xb102,0x0024, + 0x0000,0xcd08,0x2800,0xcb15,0x0000,0xd3ce,0x0011,0x210f, + 0x0000,0x190d,0x280f,0xcb00,0x3613,0x0024,0x0006,0xa115, + 0x0006,0x01d7,0x37f0,0x1401,0x6100,0x1c01,0x4012,0x0024, + 0x0000,0x8000,0x6010,0x0024,0x34f3,0x0400,0x2800,0xd698, + 0x0000,0x0024,0x0000,0x8001,0x6010,0x3c01,0x0000,0x000d, + 0x2811,0x8259,0x0000,0x0024,0x2a11,0x2100,0x0030,0x0257, + 0x3700,0x0024,0x4080,0x0024,0x0000,0x0024,0x2800,0xd9d5, + 0x0006,0x0197,0x0006,0xa115,0x3f00,0x3400,0x003f,0xc000, + 0xb600,0x41c1,0x0012,0x5103,0x000c,0xc002,0xdcd6,0x0024, + 0x0019,0xd4c2,0x2802,0x0c45,0x0001,0x1008,0x0013,0xd9c3, + 0x6fd6,0x0024,0x0000,0x190d,0x2800,0xdf95,0x0014,0x1b01, + 0x0020,0x480f,0x0000,0xde4e,0x0000,0x190d,0x2820,0x41c0, + 0x0001,0x1008,0x0039,0x324f,0x0001,0x3ece,0x2820,0x4a18, + 0xb882,0x0024,0x2a20,0x48c0,0x003f,0xfd00,0xb700,0x0024, + 0x003f,0xf901,0x6010,0x0024,0x0000,0x0024,0x280a,0xc505, + 0x0000,0x190d,0x0014,0x1b01,0x0015,0x59c0,0x6fc2,0x0024, + 0x0000,0x0024,0x2800,0xe9d5,0x0000,0x0024,0x290c,0x4840, + 0x3613,0x0024,0x290c,0x4840,0x4086,0x184c,0x0000,0x18c2, + 0x6234,0x0024,0x0000,0x1d02,0x2800,0xe5d5,0x6234,0x0024, + 0x0030,0x0317,0x2800,0xe9c0,0x3f00,0x0024,0x0000,0x1d82, + 0x2800,0xe855,0x6234,0x0024,0x2912,0x0d00,0x4084,0x184c, + 0xf200,0x0024,0x6200,0x0024,0x0006,0x0017,0x2800,0xe540, + 0xb080,0x3c40,0x0000,0x0202,0x2800,0xe9d5,0xa024,0x0024, + 0xc020,0x0024,0x2800,0xe540,0x0030,0x02d7,0x000a,0x8c8f, + 0x0000,0xeb0e,0x000c,0x0981,0x280a,0x71c0,0x002c,0x9d40, + 0x000a,0x708f,0x0000,0xd7ce,0x280a,0xc0d5,0x0012,0x5182, + 0x6fd6,0x0024,0x003f,0xfd81,0x280a,0x8e45,0xb710,0x0024, + 0xb710,0x0024,0x003f,0xfc01,0x6012,0x0024,0x0000,0x0101, + 0x2801,0x06d5,0xffd2,0x0024,0x48b2,0x0024,0x4190,0x0024, + 0x0000,0x190d,0x2801,0x06d5,0x0030,0x0250,0xb880,0x104c, + 0x3cf0,0x0024,0x0010,0x5500,0xb880,0x23c0,0xb882,0x2000, + 0x0007,0x8590,0x2914,0xbec0,0x0000,0x0440,0x0007,0x8b50, + 0xb880,0x0024,0x2920,0x0100,0x3800,0x0024,0x2920,0x0000, + 0x0006,0x8a91,0x0000,0x0800,0xb880,0xa440,0x003f,0xfd81, + 0xb710,0xa7c0,0x003f,0xfc01,0x6012,0x0024,0x0000,0x0101, + 0x2801,0x1015,0x0000,0x0024,0xffe2,0x0024,0x48b2,0x0024, + 0x4190,0x0024,0x0000,0x0024,0x2801,0x1015,0x0000,0x0024, + 0x2912,0x2d80,0x0000,0x0780,0x4080,0x0024,0x0006,0x8a90, + 0x2801,0x1015,0x0000,0x01c2,0xb886,0x8040,0x3613,0x03c1, + 0xbcd2,0x0024,0x0030,0x0011,0x2800,0xfc95,0x003f,0xff42, + 0xb886,0x8040,0x3009,0x03c1,0x0000,0x0020,0xac22,0x0024, + 0x0000,0x0102,0x6cd2,0x0024,0x3e10,0x0024,0x2909,0x8c80, + 0x3e00,0x4024,0x36f3,0x0024,0x3e11,0x8024,0x3e01,0xc024, + 0x2901,0x34c0,0x0000,0x0201,0xf400,0x4512,0x2900,0x0c80, + 0x3213,0x1b8c,0x3100,0x0024,0xb010,0x0024,0x0000,0x0024, + 0x2801,0x1015,0x0000,0x0024,0x291a,0x8a40,0x0000,0x0100, + 0x2920,0x0200,0x3633,0x0024,0x2920,0x0280,0x0000,0x0401, + 0x408e,0x0024,0x2920,0x0280,0x0000,0x0401,0x003f,0xfd81, + 0xb710,0x4006,0x003f,0xfc01,0x6012,0x0024,0x0000,0x0101, + 0x2801,0x1015,0x0000,0x0024,0xffe2,0x0024,0x48b2,0x0024, + 0x4190,0x0024,0x0000,0x0024,0x2801,0x1015,0x0000,0x0024, + 0x2912,0x2d80,0x0000,0x0780,0x4080,0x0024,0x0000,0x01c2, + 0x2800,0xf885,0x0006,0x8a90,0x2a01,0x1000,0x2920,0x0100, + 0x0000,0x0401,0x0000,0x0180,0x2920,0x0200,0x3613,0x0024, + 0x2920,0x0280,0x3613,0x0024,0x0000,0x0401,0x2920,0x0280, + 0x4084,0x984c,0x0019,0x9d01,0x6212,0x0024,0x001e,0x5c01, + 0x2801,0x0b55,0x6012,0x0024,0x0000,0x0024,0x2801,0x0d45, + 0x0000,0x0024,0x001b,0x5bc1,0x6212,0x0024,0x001b,0xdd81, + 0x2801,0x1115,0x6012,0x0024,0x0000,0x0024,0x2801,0x1115, + 0x0000,0x0024,0x0000,0x004d,0x000a,0xbf4f,0x280a,0xb880, + 0x0001,0x0e4e,0x0020,0xfb4f,0x0000,0x190d,0x0001,0x154e, + 0x2920,0xf440,0x3009,0x2bc1,0x291a,0x8a40,0x36e3,0x0024, + 0x0000,0x190d,0x000a,0x708f,0x280a,0xcac0,0x0000,0xd7ce, + 0x0030,0x0017,0x3700,0x4024,0x0000,0x0200,0xb102,0x0024, + 0x0000,0x00c0,0x2801,0x1445,0x0005,0x4f92,0x2909,0xf840, + 0x3613,0x2800,0x0006,0x0197,0x0006,0xa115,0xb080,0x0024, + 0x3f00,0x3400,0x0000,0x190d,0x000a,0x708f,0x280a,0xc0c0, + 0x0000,0xd7ce,0x0000,0x004d,0x0020,0xfe0f,0x2820,0xfb40, + 0x0001,0x164e,0x2801,0x1815,0x3009,0x1000,0x6012,0x93cc, + 0x0000,0x0024,0x2801,0x32c5,0x0000,0x0024,0x3413,0x0024, + 0x34b0,0x0024,0x4080,0x0024,0x0000,0x0200,0x2801,0x1b15, + 0xb882,0x0024,0x3453,0x0024,0x3009,0x13c0,0x4080,0x0024, + 0x0000,0x0200,0x2801,0x32c5,0x0000,0x0024,0xb882,0x130c, + 0x0000,0x004d,0x0021,0x058f,0x2821,0x0340,0x0001,0x1c0e, + 0x2801,0x2c55,0x6012,0x0024,0x0000,0x0024,0x2801,0x2c55, + 0x0000,0x0024,0x34c3,0x184c,0x3e13,0xb80f,0xf400,0x4500, + 0x0026,0x9dcf,0x0001,0x200e,0x0000,0xfa0d,0x2926,0x8e80, + 0x3e10,0x110c,0x36f3,0x0024,0x2801,0x2c40,0x36f3,0x980f, + 0x001c,0xdd00,0x001c,0xd901,0x6ec2,0x0024,0x001c,0xdd00, + 0x2801,0x2315,0x0018,0xdbc1,0x3413,0x184c,0xf400,0x4500, + 0x2926,0xc640,0x3e00,0x13cc,0x2801,0x2a00,0x36f3,0x0024, + 0x6ec2,0x0024,0x003f,0xc000,0x2801,0x2595,0x002a,0x4001, + 0x3413,0x184c,0xf400,0x4500,0x2926,0xafc0,0x3e00,0x13cc, + 0x2801,0x2a00,0x36f3,0x0024,0xb400,0x0024,0xd100,0x0024, + 0x0000,0x0024,0x2801,0x2a05,0x0000,0x0024,0x3613,0x0024, + 0x3e11,0x4024,0x2926,0x8540,0x3e01,0x0024,0x4080,0x1b8c, + 0x0000,0x0024,0x2801,0x2a05,0x0000,0x0024,0x3413,0x184c, + 0xf400,0x4500,0x2926,0x8e80,0x3e10,0x13cc,0x36f3,0x0024, + 0x3110,0x8024,0x31f0,0xc024,0x0000,0x4000,0x0000,0x0021, + 0x6d06,0x0024,0x3110,0x8024,0x2826,0xa8c4,0x31f0,0xc024, + 0x2a26,0xad00,0x34c3,0x184c,0x3410,0x8024,0x3430,0xc024, + 0x0000,0x4000,0x0000,0x0021,0x6d06,0x0024,0x0000,0x0024, + 0x2801,0x32d4,0x4d06,0x0024,0x0000,0x0200,0x2922,0x1885, + 0x0001,0x3148,0x0000,0x0200,0x3e10,0x8024,0x2921,0xca80, + 0x3e00,0xc024,0x291a,0x8a40,0x0000,0x0024,0x2922,0x1880, + 0x36f3,0x0024,0x0000,0x004d,0x0021,0x0ecf,0x2821,0x0bc0, + 0x0001,0x324e,0x2801,0x1540,0x3c30,0x4024,0x0000,0x190d, + 0x0001,0x33ce,0x2821,0x0f80,0x0021,0x420f,0x0000,0x190d, + 0x3e00,0x0024,0x2801,0xe840,0x0021,0x42c8,0x0020,0xcd4f, + 0x2820,0xc780,0x0001,0x358e,0x0006,0xf017,0x0000,0x0015, + 0xb070,0xbc15,0x0001,0x374e,0x0020,0xdf0f,0x2820,0xcd80, + 0x0000,0x190d,0x3e00,0x23c1,0x2801,0xe840,0x0020,0xdfc8, + 0x3613,0x0024,0x3e10,0xb803,0x3e14,0x3811,0x3e11,0x3805, + 0x3e00,0x3801,0x0007,0xc390,0x0006,0xa011,0x3010,0x0444, + 0x3050,0x4405,0x6458,0x0302,0xff94,0x4081,0x0003,0xffc5, + 0x48b6,0x0024,0xff82,0x0024,0x42b2,0x0042,0xb458,0x0003, + 0x4cd6,0x9801,0xf248,0x1bc0,0xb58a,0x0024,0x6de6,0x1804, + 0x0006,0x0010,0x3810,0x9bc5,0x3800,0xc024,0x36f4,0x1811, + 0x36f0,0x9803,0x283e,0x2d80,0x0fff,0xffc3,0x2801,0x4c80, + 0x0000,0x0024,0x3413,0x0024,0x2801,0x4085,0xf400,0x4517, + 0x2801,0x4480,0x6894,0x13cc,0x37b0,0x184c,0x6090,0x1d51, + 0x0000,0x0910,0x3f00,0x060c,0x3100,0x4024,0x6016,0xb812, + 0x000c,0x8012,0x2801,0x4311,0xb884,0x0024,0x6894,0x3002, + 0x0000,0x028d,0x003a,0x5e0f,0x0001,0x548e,0x2939,0xb0c0, + 0x3e10,0x93cc,0x4084,0x9bd2,0x4282,0x0024,0x0000,0x0040, + 0x2801,0x4685,0x4292,0x130c,0x3443,0x0024,0x2801,0x47c5, + 0x000c,0x8390,0x2a01,0x4b40,0x3444,0x0024,0x3073,0x0024, + 0xc090,0x014c,0x2801,0x4b40,0x3800,0x0024,0x000c,0x4113, + 0xb880,0x2380,0x3304,0x4024,0x3800,0x05cc,0xcc92,0x05cc, + 0x3910,0x0024,0x3910,0x4024,0x000c,0x8110,0x3910,0x0024, + 0x39f0,0x4024,0x3810,0x0024,0x38d0,0x4024,0x3810,0x0024, + 0x38f0,0x4024,0x34c3,0x0024,0x3444,0x0024,0x3073,0x0024, + 0x3063,0x0024,0x3000,0x0024,0x4080,0x0024,0x0000,0x0024, + 0x2839,0x53d5,0x4284,0x0024,0x3613,0x0024,0x2801,0x4e85, + 0x6898,0xb804,0x0000,0x0084,0x293b,0x1cc0,0x3613,0x0024, + 0x000c,0x8117,0x3711,0x0024,0x37d1,0x4024,0x4e8a,0x0024, + 0x0000,0x0015,0x2801,0x5145,0xce9a,0x0024,0x3f11,0x0024, + 0x3f01,0x4024,0x000c,0x8197,0x408a,0x9bc4,0x3f15,0x4024, + 0x2801,0x5385,0x4284,0x3c15,0x6590,0x0024,0x0000,0x0024, + 0x2839,0x53d5,0x4284,0x0024,0x0000,0x0024,0x2801,0x3f58, + 0x458a,0x0024,0x2a39,0x53c0,0x003e,0x2d4f,0x283a,0x5ed5, + 0x0001,0x380e,0x000c,0x4653,0x0000,0x0246,0xffac,0x0c01, + 0x48be,0x0024,0x4162,0x4546,0x6642,0x4055,0x3501,0x8024, + 0x0000,0x0087,0x667c,0x4057,0x000c,0x41d5,0x283a,0x62d5, + 0x3501,0x8024,0x667c,0x1c47,0x3701,0x8024,0x283a,0x62d5, + 0xc67c,0x0024,0x0000,0x0024,0x283a,0x62c5,0x0000,0x0024, + 0x2a3a,0x5ec0,0x3009,0x3851,0x3e14,0xf812,0x3e12,0xb817, + 0x3e11,0x8024,0x0006,0x0293,0x3301,0x8024,0x468c,0x3804, + 0x0006,0xa057,0x2801,0x6084,0x0006,0x0011,0x469c,0x0024, + 0x3be1,0x8024,0x2801,0x6095,0x0006,0xc392,0x3311,0x0024, + 0x33f1,0x2844,0x3009,0x2bc4,0x0030,0x04d2,0x3311,0x0024, + 0x3a11,0x0024,0x3201,0x8024,0x003f,0xfc04,0xb64c,0x0fc4, + 0xc648,0x0024,0x3a01,0x0024,0x3111,0x1fd3,0x6498,0x07c6, + 0x868c,0x2444,0x0023,0xffd2,0x3901,0x8e06,0x0030,0x0551, + 0x3911,0x8e06,0x3961,0x9c44,0xf400,0x44c6,0xd46c,0x1bc4, + 0x36f1,0xbc13,0x2801,0x6a15,0x36f2,0x9817,0x002b,0xffd2, + 0x3383,0x188c,0x3e01,0x8c06,0x0006,0xa097,0x3009,0x1c12, + 0x3213,0x0024,0x468c,0xbc12,0x002b,0xffd2,0xf400,0x4197, + 0x2801,0x6704,0x3713,0x0024,0x2801,0x6745,0x37e3,0x0024, + 0x3009,0x2c17,0x3383,0x0024,0x3009,0x0c06,0x468c,0x4197, + 0x0006,0xa052,0x2801,0x6944,0x3713,0x2813,0x2801,0x6985, + 0x37e3,0x0024,0x3009,0x2c17,0x36f1,0x8024,0x36f2,0x9817, + 0x36f4,0xd812,0x2100,0x0000,0x3904,0x5bd1,0x2a01,0x5a4e, + 0x3e11,0x7804,0x0030,0x0257,0x3701,0x0024,0x0013,0x4d05, + 0xd45b,0xe0e1,0x0007,0xc795,0x2801,0x7195,0x0fff,0xff45, + 0x3511,0x184c,0x4488,0xb808,0x0006,0x8a97,0x2801,0x7145, + 0x3009,0x1c40,0x3511,0x1fc1,0x0000,0x0020,0xac52,0x1405, + 0x6ce2,0x0024,0x0000,0x0024,0x2801,0x7141,0x68c2,0x0024, + 0x291a,0x8a40,0x3e10,0x0024,0x2921,0xca80,0x3e00,0x4024, + 0x36f3,0x0024,0x3009,0x1bc8,0x36f0,0x1801,0x3601,0x5804, + 0x3e13,0x780f,0x3e13,0xb808,0x0008,0x9b0f,0x0001,0x744e, + 0x2908,0x9300,0x0000,0x004d,0x36f3,0x9808,0x2000,0x0000, + 0x36f3,0x580f,0x0007,0x81d7,0x3711,0x8024,0x3711,0xc024, + 0x3700,0x0024,0x0000,0x2001,0xb012,0x0024,0x0034,0x0000, + 0x2801,0x79c5,0x0000,0x01c1,0x3700,0x0024,0x0002,0x0001, + 0xb012,0x0024,0x002e,0xe001,0x2801,0x78c5,0x6512,0x0024, + 0x0034,0x0000,0x2801,0x79d5,0x0000,0x01c1,0x0030,0x0117, + 0x3f00,0x0024,0x0014,0xc000,0x0000,0x01c1,0x4fce,0x0024, + 0xffea,0x0024,0x48b6,0x0024,0x4384,0x4097,0xb886,0x45c6, + 0xfede,0x0024,0x4db6,0x0024,0x466c,0x0024,0x0006,0xc610, + 0x8dd6,0x8007,0x0000,0x00c6,0xff6e,0x0024,0x48b2,0x0024, + 0x0034,0x2406,0xffee,0x0024,0x2914,0xaa80,0x40b2,0x0024, + 0xf1c6,0x0024,0xf1d6,0x0024,0x0000,0x0201,0x8d86,0x0024, + 0x61de,0x0024,0x0006,0xc612,0x2801,0x8041,0x0006,0xc713, + 0x4c86,0x0024,0x2912,0x1180,0x0006,0xc351,0x0006,0x0210, + 0x2912,0x0d00,0x3810,0x984c,0xf200,0x2043,0x2808,0xa000, + 0x3800,0x0024,0x3e12,0xb817,0x3e12,0x7808,0x3e11,0xb811, + 0x3e15,0x7810,0x3e18,0xb823,0x3e18,0x3821,0x3e10,0x3801, + 0x48b2,0x0024,0x3e10,0x3801,0x3e11,0x3802,0x3009,0x3814, + 0x0030,0x0717,0x3f05,0xc024,0x0030,0x0351,0x3100,0x0024, + 0x4080,0x0024,0x0030,0x10d1,0x2801,0x8d45,0x0001,0x800a, + 0x0006,0x6514,0x3111,0x8024,0x6894,0x13c1,0x6618,0x0024, + 0xfe44,0x1000,0x4cb2,0x0406,0x3c10,0x0024,0x3c50,0x4024, + 0x34f0,0x4024,0x661c,0x1040,0xfe64,0x0024,0x4cb2,0x0024, + 0x3cf0,0x4024,0xbc82,0x3080,0x0030,0x0351,0x3100,0x8024, + 0xfea8,0x0024,0x5ca2,0x0024,0x0000,0x0182,0xac22,0x0024, + 0xf7c8,0x0024,0x48b2,0x0024,0xac22,0x0024,0x2801,0x90c0, + 0xf7cc,0x1002,0x0030,0x0394,0x3400,0x4024,0x3100,0x184c, + 0x0006,0xc051,0x291e,0x8080,0x0006,0x6410,0x4088,0x1001, + 0x0030,0x1111,0x3100,0x184c,0x0006,0xc051,0x291e,0x8080, + 0x0006,0x6550,0x0006,0x6694,0x408c,0x1002,0xf224,0x0024, + 0x0006,0xa017,0x2801,0x94d5,0x0000,0x0024,0x2808,0x3f41, + 0x0006,0x6410,0x3050,0x0024,0x3000,0x4024,0x6014,0x0024, + 0x0000,0x0024,0x2801,0x9419,0x0000,0x0024,0xf400,0x4040, + 0x38b0,0x0024,0x2808,0x3f40,0x3800,0x0024,0x2801,0x96c1, + 0xf224,0x0024,0x0000,0x0024,0x2808,0x3f45,0x4684,0x4106, + 0xf12c,0x0024,0xf148,0x0024,0x846c,0x0024,0x2808,0x3f40, + 0xf400,0x4184,0x3e12,0xb817,0x3e12,0x3815,0x3e05,0xb814, + 0x3625,0x0024,0x0000,0x800a,0x3e10,0x3801,0x3e10,0xb803, + 0x3e11,0x3805,0x3e11,0xb807,0x3e14,0x3811,0x0006,0xa090, + 0x2912,0x0d00,0x3e14,0xc024,0x4088,0x8000,0x4080,0x0024, + 0x0007,0x90d1,0x2801,0x9d05,0x0000,0x0024,0x0007,0x9051, + 0x3100,0x4024,0x4100,0x0024,0x3900,0x0024,0x0007,0x90d1, + 0x0004,0x0000,0x31f0,0x4024,0x6014,0x0400,0x0000,0x0024, + 0x2801,0xa151,0x4080,0x0024,0x0000,0x0000,0x2801,0xa0c5, + 0x0000,0x0024,0x0007,0x9053,0x3300,0x0024,0x4080,0x0024, + 0x0000,0x0000,0x2801,0xa158,0x0000,0x0024,0x0007,0x9051, + 0x3900,0x0024,0x3200,0x504c,0x6410,0x0024,0x3cf0,0x0000, + 0x4080,0x0024,0x0006,0xc691,0x2801,0xba05,0x3009,0x0400, + 0x0007,0x9051,0x0000,0x1001,0x3100,0x0024,0x6012,0x0024, + 0x0006,0xc6d0,0x2801,0xae49,0x003f,0xe000,0x0006,0xc693, + 0x3900,0x0c00,0x3009,0x0001,0x6014,0x0024,0x0007,0x1ad0, + 0x2801,0xae55,0x3009,0x0000,0x4080,0x0024,0x0000,0x0301, + 0x2801,0xa845,0x4090,0x0024,0x0000,0x0024,0x2801,0xa955, + 0x0000,0x0024,0x3009,0x0000,0xc012,0x0024,0x2801,0xae40, + 0x3009,0x2001,0x3009,0x0000,0x6012,0x0024,0x0000,0x0341, + 0x2801,0xab55,0x0000,0x0024,0x6190,0x0024,0x2801,0xae40, + 0x3009,0x2000,0x6012,0x0024,0x0000,0x0381,0x2801,0xad15, + 0x0000,0x0024,0x6190,0x0024,0x2801,0xae40,0x3009,0x2000, + 0x6012,0x0024,0x0000,0x00c0,0x2801,0xae55,0x0000,0x0024, + 0x3009,0x2000,0x0006,0xa090,0x3009,0x0000,0x4080,0x0024, + 0x0000,0x0081,0x2801,0xb315,0x0007,0x8c13,0x3300,0x104c, + 0xb010,0x0024,0x0002,0x8001,0x2801,0xb585,0x34f0,0x0024, + 0x2801,0xb300,0x0000,0x0024,0x0006,0xc351,0x3009,0x0000, + 0x6090,0x0024,0x3009,0x2000,0x2900,0x0b80,0x3009,0x0405, + 0x0006,0xc690,0x0006,0xc6d1,0x3009,0x0000,0x3009,0x0401, + 0x6014,0x0024,0x0006,0xa093,0x2801,0xb191,0xb880,0x0024, + 0x2801,0xc2c0,0x3009,0x2c00,0x4040,0x0024,0x6012,0x0024, + 0x0006,0xc6d0,0x2801,0xc2d8,0x0000,0x0024,0x0006,0xc693, + 0x3009,0x0c00,0x3009,0x0001,0x6014,0x0024,0x0006,0xc350, + 0x2801,0xc2c1,0x0000,0x0024,0x6090,0x0024,0x3009,0x2c00, + 0x3009,0x0005,0x2900,0x0b80,0x0001,0xc2c8,0x3009,0x0400, + 0x4080,0x0024,0x0003,0x8000,0x2801,0xc2c5,0x0000,0x0024, + 0x6400,0x0024,0x0000,0x0081,0x2801,0xc2c9,0x0000,0x0024, + 0x0007,0x8c13,0x3300,0x0024,0xb010,0x0024,0x0006,0xc650, + 0x2801,0xc2d5,0x0000,0x0024,0x0001,0x0002,0x3413,0x0000, + 0x3009,0x0401,0x4010,0x8406,0x0000,0x0281,0xa010,0x13c1, + 0x4122,0x0024,0x0000,0x03c2,0x6122,0x8002,0x462c,0x0024, + 0x469c,0x0024,0xfee2,0x0024,0x48be,0x0024,0x6066,0x8400, + 0x0006,0xc350,0x2801,0xc2c1,0x0000,0x0024,0x4090,0x0024, + 0x3009,0x2400,0x2900,0x0b80,0x3009,0x0005,0x0007,0x1b50, + 0x2912,0x0d00,0x3613,0x0024,0x3a00,0x0380,0x4080,0x0024, + 0x0000,0x00c1,0x2801,0xcb85,0x3009,0x0000,0xb010,0x008c, + 0x4192,0x0024,0x6012,0x0024,0x0006,0xf051,0x2801,0xc998, + 0x3009,0x0400,0x0007,0x1fd1,0x30e3,0x0400,0x4080,0x0024, + 0x0000,0x0301,0x2801,0xcb85,0x3009,0x0000,0xb010,0x0024, + 0x0000,0x0101,0x6012,0x0024,0x0006,0xf051,0x2801,0xcb95, + 0x0000,0x0024,0x3023,0x0400,0xf200,0x184c,0xb880,0xa400, + 0x3009,0x2000,0x3009,0x0441,0x3e10,0x4402,0x2909,0xa9c0, + 0x3e10,0x8024,0x36e3,0x0024,0x36f4,0xc024,0x36f4,0x1811, + 0x36f1,0x9807,0x36f1,0x1805,0x36f0,0x9803,0x36f0,0x1801, + 0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815,0x2000,0x0000, + 0x36f2,0x9817,0x3613,0x0024,0x3e12,0xb817,0x3e12,0x3815, + 0x3e05,0xb814,0x3615,0x0024,0x0000,0x800a,0x3e10,0x3801, + 0x3e10,0xb803,0x3e11,0x3805,0x3e11,0xf810,0x0001,0x0010, + 0x3e14,0x7812,0xb882,0x3813,0x2914,0xbec0,0x0000,0x2200, + 0xb886,0x12cc,0x2801,0xd800,0x3454,0x8024,0x0001,0x0000, + 0x3000,0x984c,0x4234,0xb843,0xf400,0x4095,0x003b,0xffc2, + 0x3500,0x4024,0xb122,0x0842,0x4010,0x0bc3,0x4010,0x0024, + 0x4010,0x0024,0x4010,0x0024,0x4d82,0x4011,0x2938,0x0600, + 0xf400,0x4450,0x3223,0x184c,0x3210,0x8024,0x32d0,0xc024, + 0x2938,0x0600,0x4d82,0x4450,0x3243,0x1bc3,0x6396,0x0024, + 0x0005,0xdf90,0x3000,0x0024,0x6302,0x0024,0x0005,0xe110, + 0x2801,0xd2d1,0x0000,0x0024,0x2801,0xde80,0x4086,0x0024, + 0x3200,0x930c,0x6398,0x1111,0x4244,0x0844,0xf400,0x4095, + 0x3500,0x584c,0x4438,0x0805,0x453a,0x4115,0x3500,0x8024, + 0x6122,0x4155,0x4280,0x1404,0x0001,0x0002,0x4244,0x0024, + 0x4244,0x0024,0x4244,0x0024,0x4244,0x0024,0x2938,0x2f80, + 0xf400,0x4090,0x6396,0x0024,0x0005,0xdf50,0x3000,0x0024, + 0x6302,0x0024,0x0005,0xe0d2,0x2801,0xda11,0x0000,0x0381, + 0x3073,0x0024,0x3023,0x0024,0x3000,0x0024,0x6012,0x0024, + 0x0001,0x2212,0x2801,0xe395,0x0005,0x1453,0x0001,0x0011, + 0x3093,0x184c,0x3000,0x4024,0x2900,0x78c0,0x3e00,0x4024, + 0x2801,0xe580,0x36f3,0x0024,0x0005,0xe3c1,0x0001,0x0011, + 0x3613,0x024c,0x3e10,0x4024,0x3000,0x8024,0x2900,0x5c40, + 0x3e00,0x8024,0x36e3,0x0024,0x36f4,0xc024,0x36f4,0x5812, + 0x36f1,0xd810,0x36f1,0x1805,0x36f0,0x9803,0x36f0,0x1801, + 0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815,0x2000,0x0000, + 0x36f2,0x9817,0x3613,0x0024,0x3e12,0xb817,0x3e12,0x3815, + 0x3e05,0xb814,0x3625,0x0024,0x0000,0x800a,0x3e10,0x3801, + 0x0000,0x00c1,0xb880,0xb803,0x3e10,0x904c,0x3e11,0x3806, + 0x3e11,0xf810,0x0006,0xf450,0x3e14,0x7812,0x3e14,0xc024, + 0x3cf0,0x2080,0x3009,0x23c0,0x3009,0x2380,0x0000,0x0640, + 0x3009,0x2000,0x2921,0x9440,0x0000,0x00c0,0x2921,0xdd40, + 0x3613,0x0024,0xf400,0x4004,0x0000,0x01c0,0x6400,0x0024, + 0x0000,0x00c0,0x2802,0x0885,0x0000,0x01c1,0x6412,0x4100, + 0x0006,0x0581,0x2801,0xfe01,0x4412,0x0024,0xf400,0x4057, + 0x3702,0x0024,0x2000,0x0000,0x0000,0x0024,0x0006,0xf410, + 0x0000,0x0641,0x3613,0x0000,0x6012,0x0024,0x0000,0x0024, + 0x2801,0xf3d5,0x0000,0x0024,0x3009,0x2004,0x2900,0xb600, + 0x3e01,0x0024,0x2801,0xfe00,0x36f3,0x0024,0x0006,0xf410, + 0x0000,0x0641,0x3613,0x0000,0x6012,0x0024,0x0000,0x0024, + 0x2801,0xf6d5,0x0000,0x0024,0x3009,0x2004,0x2900,0xa400, + 0x3e01,0x0024,0x2801,0xfe00,0x36f3,0x0024,0x0006,0xf450, + 0x3613,0x0000,0x6090,0x3804,0x2900,0xb600,0x3009,0x2000, + 0x2801,0xfe00,0x36f3,0x0024,0x2923,0x4f00,0x0007,0x2050, + 0x2801,0xfe00,0x3009,0x2000,0x2923,0x7580,0x0001,0xfe08, + 0x34d3,0x184c,0x3430,0x0024,0x2922,0x4fc0,0x3e00,0x0024, + 0x2801,0xfe00,0x36f3,0x0024,0x0000,0x3fc0,0x0007,0x2050, + 0x3613,0x0024,0x2923,0x8480,0x3e00,0x0024,0x36f3,0x2000, + 0x0000,0x1800,0x3413,0x0024,0xf400,0x4510,0x34f0,0x4024, + 0x6192,0x0024,0x6014,0x2001,0x0007,0x2051,0x2802,0x0081, + 0x0000,0x0280,0x3009,0x2400,0x3009,0x0400,0x4080,0x0024, + 0x0006,0xf352,0x2802,0x0995,0x3009,0x0842,0x3009,0x0bc3, + 0x4d86,0x0024,0x0000,0x0201,0x2802,0x04c5,0x0030,0x0013, + 0x0006,0x8a93,0x3009,0x0c40,0x3009,0x0fc1,0x6cde,0x0024, + 0x0000,0x0201,0x2802,0x0981,0x0030,0x0013,0x3300,0x0024, + 0xb010,0x0024,0x0000,0x0100,0x2802,0x0995,0x0000,0x00c1, + 0x2921,0x9440,0x3613,0x0024,0x2921,0xdd40,0x3613,0x0024, + 0xf400,0x4004,0x0000,0x01c0,0x6400,0x0024,0x0000,0x01c1, + 0x2801,0xefd5,0x0000,0x00c0,0x2921,0x9440,0x3613,0x0024, + 0x2921,0xc300,0x0000,0x0024,0x36f4,0xc024,0x36f4,0x5812, + 0x36f1,0xd810,0x36f1,0x1806,0x36f0,0x9803,0x36f0,0x1801, + 0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815,0x2000,0x0000, + 0x36f2,0x9817,0x3613,0x0024,0x3e12,0xb817,0x3e12,0x3815, + 0x3e05,0xb814,0x3615,0x0024,0x0000,0x800a,0x3e10,0xb803, + 0x0012,0x5103,0x3e11,0x3805,0x3e11,0xb807,0x3e14,0x380d, + 0x0030,0x0250,0x3e13,0xf80e,0xbe8b,0x83e0,0x290c,0x4840, + 0x3613,0x0024,0x290c,0x4840,0x4086,0x984c,0x0000,0x00ce, + 0x2402,0x138e,0x3009,0x1bc0,0x0000,0x01c3,0xae3a,0x184c, + 0x0000,0x0043,0x3009,0x3842,0x290c,0x4840,0x3009,0x3840, + 0x4084,0x9bc0,0xfe26,0x9bc2,0xceba,0x0024,0x4e8e,0x0024, + 0x4e9a,0x0024,0x4f8e,0x0024,0x0000,0x0102,0x2802,0x18c5, + 0x0030,0x0010,0x0000,0x0206,0x3613,0x0024,0x290c,0x4840, + 0x3009,0x3840,0x3000,0xdbc0,0xb366,0x0024,0x0000,0x0024, + 0x2802,0x18d5,0x4e8e,0x0024,0x4e9a,0x0024,0x4f8e,0x0024, + 0x0030,0x0010,0x2802,0x1595,0x0000,0x0206,0x36f3,0xd80e, + 0x36f4,0x180d,0x36f1,0x9807,0x36f1,0x1805,0x36f0,0x9803, + 0x3405,0x9014,0x36f3,0x0024,0x36f2,0x1815,0x2000,0x0000, + 0x36f2,0x9817,0xb386,0x40d7,0x4284,0x184c,0x0000,0x05c0, + 0x2802,0x1cd5,0xf5d8,0x3804,0x0000,0x0984,0x6400,0xb84a, + 0x3e13,0xf80d,0xa204,0x380e,0x0000,0x800a,0x0000,0x00ce, + 0x2402,0x200e,0xffa4,0x0024,0x48b6,0x0024,0x0000,0x0024, + 0x2802,0x2004,0x4000,0x40c2,0x4224,0x0024,0x6090,0x0024, + 0xffa4,0x0024,0x0fff,0xfe83,0xfe86,0x1bce,0x36f3,0xd80d, + 0x48b6,0x0024,0x0fff,0xff03,0xa230,0x45c3,0x2000,0x0000, + 0x36f1,0x180a, + 0x0007,0x0001, /*copy 1*/ + 0x802e, + 0x0006,0x0002, /*copy 2*/ + 0x2801,0x6b00, + 0x0007,0x0001, /*copy 1*/ + 0x8030, + 0x0006,0x0002, /*copy 2*/ + 0x2800,0x1b40, + 0x0007,0x0001, /*copy 1*/ + 0x8028, + 0x0006,0x0002, /*copy 2*/ + 0x2a00,0x144e, + 0x0007,0x0001, /*copy 1*/ + 0x8032, + 0x0006,0x0002, /*copy 2*/ + 0x2801,0x9740, + 0x0007,0x0001, /*copy 1*/ + 0x3580, + 0x0006, 0x8038, 0x0000, /*Rle(56)*/ + 0x0007,0x0001, /*copy 1*/ + 0xfab3, + 0x0006,0x01a4, /*copy 420*/ + 0x0001,0x0001,0x0001,0x0001,0x0000,0xffff,0xfffe,0xfffb, + 0xfff9,0xfff5,0xfff2,0xffed,0xffe8,0xffe3,0xffde,0xffd8, + 0xffd3,0xffce,0xffca,0xffc7,0xffc4,0xffc4,0xffc5,0xffc7, + 0xffcc,0xffd3,0xffdc,0xffe6,0xfff3,0x0001,0x0010,0x001f, + 0x002f,0x003f,0x004e,0x005b,0x0066,0x006f,0x0074,0x0075, + 0x0072,0x006b,0x005f,0x004f,0x003c,0x0024,0x0009,0xffed, + 0xffcf,0xffb0,0xff93,0xff77,0xff5f,0xff4c,0xff3d,0xff35, + 0xff34,0xff3b,0xff4a,0xff60,0xff7e,0xffa2,0xffcd,0xfffc, + 0x002e,0x0061,0x0094,0x00c4,0x00f0,0x0114,0x0131,0x0144, + 0x014b,0x0146,0x0134,0x0116,0x00eb,0x00b5,0x0075,0x002c, + 0xffde,0xff8e,0xff3d,0xfeef,0xfea8,0xfe6a,0xfe39,0xfe16, + 0xfe05,0xfe06,0xfe1b,0xfe43,0xfe7f,0xfecd,0xff2a,0xff95, + 0x0009,0x0082,0x00fd,0x0173,0x01e1,0x0242,0x0292,0x02cc, + 0x02ec,0x02f2,0x02da,0x02a5,0x0253,0x01e7,0x0162,0x00c9, + 0x0021,0xff70,0xfebc,0xfe0c,0xfd68,0xfcd5,0xfc5b,0xfc00, + 0xfbc9,0xfbb8,0xfbd2,0xfc16,0xfc85,0xfd1b,0xfdd6,0xfeae, + 0xff9e,0x009c,0x01a0,0x02a1,0x0392,0x046c,0x0523,0x05b0, + 0x060a,0x062c,0x0613,0x05bb,0x0526,0x0456,0x0351,0x021f, + 0x00c9,0xff5a,0xfde1,0xfc6a,0xfb05,0xf9c0,0xf8aa,0xf7d0, + 0xf73d,0xf6fa,0xf70f,0xf77e,0xf848,0xf96b,0xfadf,0xfc9a, + 0xfe8f,0x00ad,0x02e3,0x051a,0x073f,0x0939,0x0af4,0x0c5a, + 0x0d59,0x0de1,0x0de5,0x0d5c,0x0c44,0x0a9e,0x0870,0x05c7, + 0x02b4,0xff4e,0xfbaf,0xf7f8,0xf449,0xf0c7,0xed98,0xeae0, + 0xe8c4,0xe765,0xe6e3,0xe756,0xe8d2,0xeb67,0xef19,0xf3e9, + 0xf9cd,0x00b5,0x088a,0x112b,0x1a72,0x2435,0x2e42,0x3866, + 0x426b,0x4c1b,0x553e,0x5da2,0x6516,0x6b6f,0x7087,0x7441, + 0x7686,0x774a,0x7686,0x7441,0x7087,0x6b6f,0x6516,0x5da2, + 0x553e,0x4c1b,0x426b,0x3866,0x2e42,0x2435,0x1a72,0x112b, + 0x088a,0x00b5,0xf9cd,0xf3e9,0xef19,0xeb67,0xe8d2,0xe756, + 0xe6e3,0xe765,0xe8c4,0xeae0,0xed98,0xf0c7,0xf449,0xf7f8, + 0xfbaf,0xff4e,0x02b4,0x05c7,0x0870,0x0a9e,0x0c44,0x0d5c, + 0x0de5,0x0de1,0x0d59,0x0c5a,0x0af4,0x0939,0x073f,0x051a, + 0x02e3,0x00ad,0xfe8f,0xfc9a,0xfadf,0xf96b,0xf848,0xf77e, + 0xf70f,0xf6fa,0xf73d,0xf7d0,0xf8aa,0xf9c0,0xfb05,0xfc6a, + 0xfde1,0xff5a,0x00c9,0x021f,0x0351,0x0456,0x0526,0x05bb, + 0x0613,0x062c,0x060a,0x05b0,0x0523,0x046c,0x0392,0x02a1, + 0x01a0,0x009c,0xff9e,0xfeae,0xfdd6,0xfd1b,0xfc85,0xfc16, + 0xfbd2,0xfbb8,0xfbc9,0xfc00,0xfc5b,0xfcd5,0xfd68,0xfe0c, + 0xfebc,0xff70,0x0021,0x00c9,0x0162,0x01e7,0x0253,0x02a5, + 0x02da,0x02f2,0x02ec,0x02cc,0x0292,0x0242,0x01e1,0x0173, + 0x00fd,0x0082,0x0009,0xff95,0xff2a,0xfecd,0xfe7f,0xfe43, + 0xfe1b,0xfe06,0xfe05,0xfe16,0xfe39,0xfe6a,0xfea8,0xfeef, + 0xff3d,0xff8e,0xffde,0x002c,0x0075,0x00b5,0x00eb,0x0116, + 0x0134,0x0146,0x014b,0x0144,0x0131,0x0114,0x00f0,0x00c4, + 0x0094,0x0061,0x002e,0xfffc,0xffcd,0xffa2,0xff7e,0xff60, + 0xff4a,0xff3b,0xff34,0xff35,0xff3d,0xff4c,0xff5f,0xff77, + 0xff93,0xffb0,0xffcf,0xffed,0x0009,0x0024,0x003c,0x004f, + 0x005f,0x006b,0x0072,0x0075,0x0074,0x006f,0x0066,0x005b, + 0x004e,0x003f,0x002f,0x001f,0x0010,0x0001,0xfff3,0xffe6, + 0xffdc,0xffd3,0xffcc,0xffc7,0xffc5,0xffc4,0xffc4,0xffc7, + 0xffca,0xffce,0xffd3,0xffd8,0xffde,0xffe3,0xffe8,0xffed, + 0xfff2,0xfff5,0xfff9,0xfffb,0xfffe,0xffff,0x0000,0x0001, + 0x0001,0x0001,0x0001,0x0000, + 0x0007,0x0001, /*copy 1*/ + 0x180b, + 0x0006,0x0012, /*copy 18*/ + 0x000f,0x0010,0x001c,0xfab3,0x3580,0x8037,0xa037,0x0001, + 0x0000,0x3580,0x01a4,0x07c7,0x07d3,0x07e6,0x07df,0x07ea, + 0x07ec,0x07f2, + 0x0007,0x0001, /*copy 1*/ + 0x8025, + 0x0006,0x0002, /*copy 2*/ + 0x2a01,0x824e, + 0x000a,0x0001, /*copy 1*/ + 0x0050, +#define PLUGIN_SIZE 4667 +#ifndef SKIP_PLUGIN_VARNAME +}; +#endif