├── Examples └── inkster_example_pio │ ├── .gitignore │ ├── platformio.ini │ └── src │ ├── dragon.h │ ├── main.cpp │ └── roboto12.h ├── LICENSE ├── README.md └── Resources ├── Inkster_v1.3_BOM.csv ├── Inkster_v1.3_GERBER.zip ├── Inkster_v1.3_SCHEMATIC.pdf ├── PCB_INKSTER_easyeda.json └── SCH_INKSTER_easyeda.json /Examples/inkster_example_pio/.gitignore: -------------------------------------------------------------------------------- 1 | .pio 2 | .vscode -------------------------------------------------------------------------------- /Examples/inkster_example_pio/platformio.ini: -------------------------------------------------------------------------------- 1 | ; PlatformIO Project Configuration File 2 | ; 3 | ; Build options: build flags, source filter 4 | ; Upload options: custom upload port, speed and extra flags 5 | ; Library options: dependencies, extra library storages 6 | ; Advanced options: extra scripting 7 | ; 8 | ; Please visit documentation for the other options and examples 9 | ; https://docs.platformio.org/page/projectconf.html 10 | 11 | [common_env_data] 12 | framework = arduino 13 | platform = espressif32 14 | board = esp32dev 15 | board_build.f_cpu = 240000000L 16 | upload_speed = 921600 17 | monitor_speed = 115200 18 | lib_deps = 19 | https://github.com/vroland/epdiy.git 20 | NeoPixelBus 21 | 22 | [env:6inch] 23 | platform = ${common_env_data.platform} 24 | board = ${common_env_data.board} 25 | framework = ${common_env_data.framework} 26 | upload_speed = ${common_env_data.upload_speed} 27 | monitor_speed = ${common_env_data.monitor_speed} 28 | lib_deps = 29 | ${common_env_data.lib_deps} 30 | build_flags = 31 | -DBOARD_HAS_PSRAM 32 | # -DCONFIG_EPD_DISPLAY_TYPE_ED097TC2 33 | -DCONFIG_EPD_DISPLAY_TYPE_ED060XC3 34 | # -DCONFIG_EPD_DISPLAY_TYPE_ED060SCT 35 | # -DCONFIG_EPD_DISPLAY_TYPE_ED097OC4_LQ 36 | # -DCONFIG_EPD_DISPLAY_TYPE_ED097OC4 37 | -DCONFIG_EPD_BOARD_REVISION_V5 38 | 39 | [env:6inch_lowres] 40 | platform = ${common_env_data.platform} 41 | board = ${common_env_data.board} 42 | framework = ${common_env_data.framework} 43 | upload_speed = ${common_env_data.upload_speed} 44 | monitor_speed = ${common_env_data.monitor_speed} 45 | lib_deps = 46 | ${common_env_data.lib_deps} 47 | build_flags = 48 | -DBOARD_HAS_PSRAM 49 | # -DCONFIG_EPD_DISPLAY_TYPE_ED097TC2 50 | # -DCONFIG_EPD_DISPLAY_TYPE_ED060XC3 51 | -DCONFIG_EPD_DISPLAY_TYPE_ED060SCT 52 | # -DCONFIG_EPD_DISPLAY_TYPE_ED097OC4_LQ 53 | # -DCONFIG_EPD_DISPLAY_TYPE_ED097OC4 54 | -DCONFIG_EPD_BOARD_REVISION_V5 55 | 56 | [env:9_7inch] 57 | platform = ${common_env_data.platform} 58 | board = ${common_env_data.board} 59 | framework = ${common_env_data.framework} 60 | upload_speed = ${common_env_data.upload_speed} 61 | monitor_speed = ${common_env_data.monitor_speed} 62 | lib_deps = 63 | ${common_env_data.lib_deps} 64 | build_flags = 65 | -DBOARD_HAS_PSRAM 66 | # -DCONFIG_EPD_DISPLAY_TYPE_ED097TC2 67 | # -DCONFIG_EPD_DISPLAY_TYPE_ED060XC3 68 | # -DCONFIG_EPD_DISPLAY_TYPE_ED060SCT 69 | # -DCONFIG_EPD_DISPLAY_TYPE_ED097OC4_LQ 70 | -DCONFIG_EPD_DISPLAY_TYPE_ED097OC4 71 | -DCONFIG_EPD_BOARD_REVISION_V5 72 | 73 | [env:9_7inch_low_quality] 74 | platform = ${common_env_data.platform} 75 | board = ${common_env_data.board} 76 | framework = ${common_env_data.framework} 77 | upload_speed = ${common_env_data.upload_speed} 78 | monitor_speed = ${common_env_data.monitor_speed} 79 | lib_deps = 80 | ${common_env_data.lib_deps} 81 | build_flags = 82 | -DBOARD_HAS_PSRAM 83 | # -mfix-esp32-psram-cache-issue 84 | # -DCONFIG_SPIRAM_CACHE_WORKAROUND=1 85 | -DCONFIG_ARDUINO_ISR_IRAM=1 86 | # -DCONFIG_EPD_DISPLAY_TYPE_ED097TC2 87 | # -DCONFIG_EPD_DISPLAY_TYPE_ED060XC3 88 | # -DCONFIG_EPD_DISPLAY_TYPE_ED060SCT 89 | -DCONFIG_EPD_DISPLAY_TYPE_ED097OC4_LQ 90 | # -DCONFIG_EPD_DISPLAY_TYPE_ED097OC4 91 | -DCONFIG_EPD_BOARD_REVISION_V5 -------------------------------------------------------------------------------- /Examples/inkster_example_pio/src/main.cpp: -------------------------------------------------------------------------------- 1 | 2 | /* Inkster arduino example - */ 3 | 4 | #include "driver/adc.h" 5 | #include "esp_adc_cal.h" 6 | 7 | #include 8 | #include 9 | 10 | extern "C" 11 | { 12 | #include "epd_driver.h" 13 | #include "epd_highlevel.h" 14 | } 15 | #include "dragon.h" 16 | #include "roboto12.h" 17 | 18 | // Has to be NeoEsp32I2s0800KbpsMethod method or NeoEsp32BitBang800KbpsMethod in order not to conflict with epdiy! 19 | // Note that bitbang method can be prone to glitching. 20 | NeoPixelBus strip(1, 3); 21 | NeoGamma colorGamma; 22 | 23 | EpdiyHighlevelState hl; 24 | uint8_t *fb; // EPD 2bpp buffer 25 | 26 | int deepSleepSeconds = 86400; 27 | int temperature = 25; 28 | 29 | uint8_t led_power_toggle_pin = 14; // This pin is used to toggle power to the WS2812. 30 | uint8_t button_1_pin = 36; 31 | uint8_t button_2_pin = 39; 32 | uint8_t button_3_pin = 13; 33 | uint64_t wakeUpPins = GPIO_SEL_13 | GPIO_SEL_36 | GPIO_SEL_39; // Wakeup pins, same as button pins 34 | int bat_pin = 34; // Battery ADC pin 35 | int therm_pin = 35; // Thermistor ADC pin 36 | 37 | // Thermistor settings, change only if you're using different thermistor than specified 38 | int therm_resistance_nom = 100000; // resistance at 25 degrees C 39 | int therm_temp_nom = 25; // temp. for nominal resistance (almost always 25 C) 40 | int therm_b = 4250; // The beta coefficient of the thermistor (usually 3000-4000) 41 | int therm_resistor = 100000; // the value of the 'other' resistor (measured) 42 | 43 | // Use internal ADC calibration to get more reasonable results 44 | // https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/peripherals/adc.html 45 | esp_adc_cal_characteristics_t *adc_chars = (esp_adc_cal_characteristics_t *)calloc(1, sizeof(esp_adc_cal_characteristics_t)); 46 | esp_adc_cal_value_t val_type = esp_adc_cal_characterize(ADC_UNIT_1, ADC_ATTEN_DB_11, ADC_WIDTH_BIT_12, 1100, adc_chars); 47 | 48 | uint8_t readButtons() 49 | { 50 | uint8_t result = 0; 51 | if (digitalRead(button_1_pin) == HIGH) 52 | { 53 | result = result * 10 + 1; 54 | } 55 | if (digitalRead(button_2_pin) == HIGH) 56 | { 57 | result = result * 10 + 2; 58 | } 59 | if (digitalRead(button_3_pin) == HIGH) 60 | { 61 | result = result * 10 + 3; 62 | } 63 | return result; 64 | } 65 | 66 | void print_uint64_t(uint64_t num) 67 | { 68 | 69 | char rev[128]; 70 | char *p = rev + 1; 71 | 72 | while (num > 0) 73 | { 74 | *p++ = '0' + (num % 10); 75 | num /= 10; 76 | } 77 | p--; 78 | /*Print the number which is now in reverse*/ 79 | while (p > rev) 80 | { 81 | Serial.print(*p--); 82 | } 83 | } 84 | 85 | void checkWakeupReason() 86 | { 87 | esp_sleep_wakeup_cause_t wakeup_reason = esp_sleep_get_wakeup_cause(); 88 | 89 | if (wakeup_reason == ESP_SLEEP_WAKEUP_EXT1) 90 | { 91 | uint64_t rst_pin = esp_sleep_get_ext1_wakeup_status(); 92 | 93 | if (rst_pin == GPIO_SEL_36) 94 | { 95 | Serial.println("[SYSTEM] Wakeup by button 1"); 96 | } 97 | if (rst_pin == GPIO_SEL_39) 98 | { 99 | Serial.println("[SYSTEM] Wakeup by button 2"); 100 | } 101 | if (rst_pin == GPIO_SEL_13) 102 | { 103 | Serial.println("[SYSTEM] Wakeup by button 3"); 104 | } 105 | } 106 | else if (wakeup_reason == ESP_SLEEP_WAKEUP_TIMER) 107 | { 108 | Serial.println("[SYSTEM] Wakeup by timer"); 109 | } 110 | } 111 | 112 | int readADC(int pin, uint8_t sample_count) 113 | { 114 | uint8_t i; 115 | float average; 116 | int samples[sample_count]; 117 | 118 | // take N samples in a row, with a slight delay 119 | for (i = 0; i < sample_count; i++) 120 | { 121 | samples[i] = analogRead(pin); 122 | } 123 | 124 | // average all the samples out 125 | average = 0; 126 | for (i = 0; i < sample_count; i++) 127 | { 128 | average += samples[i]; 129 | } 130 | average /= sample_count; 131 | 132 | return average; 133 | } 134 | 135 | int readADC(int pin) 136 | { 137 | return readADC(pin, 10); // 10 samples by default 138 | } 139 | 140 | float measureBattery() 141 | { 142 | 143 | int average = readADC(bat_pin); 144 | 145 | // convert the value to resistance 146 | // 4095 for 12-bits, 2047 for 11-bits, 1023 for 10-bits, 511 for 9 bits. 147 | float value = (float)esp_adc_cal_raw_to_voltage(average, adc_chars) * 2 / 1000; 148 | 149 | return value; 150 | } 151 | 152 | float measureThermistor() 153 | { 154 | float resistance; 155 | 156 | int average = readADC(therm_pin); 157 | float vout = (float)esp_adc_cal_raw_to_voltage(average, adc_chars); 158 | 159 | // convert the value to resistance 160 | // 4095 for 12-bits, 2047 for 11-bits, 1023 for 10-bits, 511 for 9 bits. 161 | resistance = (3300 / vout) - 1; 162 | resistance = therm_resistor / resistance; 163 | 164 | float steinhart; 165 | steinhart = resistance / therm_resistance_nom; // (R/Ro) 166 | steinhart = log(steinhart); // ln(R/Ro) 167 | steinhart /= therm_b; // 1/B * ln(R/Ro) 168 | steinhart += 1.0 / (therm_temp_nom + 273.15); // + (1/To) 169 | steinhart = 1.0 / steinhart; // Invert 170 | steinhart -= 273.15; // convert to C 171 | 172 | return steinhart; 173 | } 174 | 175 | void ledColorSet(RgbColor color) 176 | { 177 | strip.ClearTo(color); 178 | strip.Show(); 179 | } 180 | 181 | void ledInit() 182 | { 183 | pinMode(led_power_toggle_pin, OUTPUT); 184 | digitalWrite(led_power_toggle_pin, HIGH); 185 | delay(5); // small delay to let the led power up 186 | strip.Begin(); 187 | strip.Show(); 188 | Serial.println("[SYSTEM] LED initiated"); 189 | } 190 | 191 | void deepSleep() 192 | { 193 | epd_poweroff(); 194 | epd_deinit(); // needs to be called before sleep for low power consumption 195 | 196 | ledColorSet(RgbColor(0, 0, 0)); 197 | 198 | //pinMode(led_power_toggle_pin, OUTPUT); 199 | digitalWrite(led_power_toggle_pin, LOW); // cut power to WS2812 200 | 201 | Serial.print("[SYSTEM] Going to sleep for "); 202 | Serial.println(deepSleepSeconds); 203 | Serial.println(" seconds."); 204 | 205 | esp_sleep_enable_ext1_wakeup(wakeUpPins, ESP_EXT1_WAKEUP_ANY_HIGH); 206 | 207 | esp_sleep_enable_timer_wakeup(1000000LL * deepSleepSeconds); 208 | 209 | esp_deep_sleep_start(); 210 | } 211 | 212 | void loop() 213 | { 214 | /* wow so much empty */ 215 | } 216 | 217 | void setup() 218 | { 219 | 220 | Serial.begin(115200); 221 | Serial.println(); 222 | 223 | // analogSetAttenuation(ADC_11db); // 11db=0-3.3v(default), 6db=0-2.2v, 2.5db=0-1.5v, 0db=0-1v 224 | // analogReadResolution(12); // 12=0->4095(default), 11=0->2047, 10=0->1024, 9=0->511 225 | 226 | checkWakeupReason(); 227 | 228 | epd_init(EPD_LUT_64K); 229 | hl = epd_hl_init(EPD_BUILTIN_WAVEFORM); 230 | fb = epd_hl_get_framebuffer(&hl); 231 | 232 | epd_poweron(); 233 | 234 | ledInit(); 235 | 236 | ledColorSet(RgbColor(100, 0, 100)); 237 | delay(500); 238 | ledColorSet(RgbColor(0, 100, 100)); 239 | delay(500); 240 | ledColorSet(RgbColor(100, 100, 0)); 241 | delay(500); 242 | ledColorSet(RgbColor(0, 0, 0)); 243 | 244 | // Check type of calibration value used to characterize ADC, should be efuse on ESP32-WROVER-B 245 | // https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/peripherals/adc.html 246 | if (val_type == ESP_ADC_CAL_VAL_EFUSE_VREF) 247 | { 248 | Serial.println("eFuse Vref"); 249 | } 250 | else if (val_type == ESP_ADC_CAL_VAL_EFUSE_TP) 251 | { 252 | Serial.println("Two Point"); 253 | } 254 | else 255 | { 256 | Serial.println("Default"); 257 | } 258 | 259 | // Both functions use esp_adc_cal_raw_to_voltage function to calibrate the output via internal efuse Vref 260 | // so the measurements should be closer to reality but keep in mind that ESP32 ADC is very innacurate. 261 | // It's also good to have some delay after connecting to wifi because of the current spike. 262 | float bat = measureBattery(); 263 | float temp = measureThermistor(); // Thermistor is powered with the display to save power -> you need to run epd_poweron() before measurement! 264 | Serial.print("[SYSTEM] Battery voltage: "); 265 | Serial.print(bat); 266 | Serial.println("V"); 267 | Serial.print("[SYSTEM] Thermistor temperature: "); 268 | Serial.print(temp); 269 | Serial.println("°C"); 270 | 271 | int cursor_x = epd_rotated_display_width() / 2; 272 | int cursor_y = epd_rotated_display_height() / 2; 273 | 274 | EpdFontProperties font_props = epd_font_properties_default(); 275 | font_props.flags = EPD_DRAW_ALIGN_CENTER; 276 | 277 | String infoText = "Battery voltage: " + String(bat) + "\nTemperature: " + String(temp); 278 | 279 | epd_fullclear(&hl, temperature); 280 | // epd_set_rotation(EPD_ROT_INVERTED_LANDSCAPE); 281 | epd_write_string(&roboto, infoText.c_str(), &cursor_x, &cursor_y, fb, &font_props); 282 | epd_hl_update_screen(&hl, MODE_GC16, temperature); 283 | 284 | delay(10000); 285 | 286 | EpdRect dragon_area = { 287 | .x = 0, 288 | .y = 0, 289 | .width = dragon_width, 290 | .height = dragon_height}; 291 | 292 | unsigned long updateMillis = millis(); 293 | 294 | // If you want to make multiple screen updates, run epd_fullclear before epd_copy_to_framebuffer 295 | // If you only do one update nad go to sleep, you can save alot of time ommiting epd_fullclear refresh. 296 | epd_fullclear(&hl, temperature); 297 | epd_copy_to_framebuffer(dragon_area, dragon_data, epd_hl_get_framebuffer(&hl)); 298 | 299 | enum EpdDrawError _err = epd_hl_update_screen(&hl, MODE_GC16, temperature); 300 | 301 | Serial.print("[SYSTEM] Display update took "); 302 | Serial.print((millis() - updateMillis)); 303 | Serial.println("ms"); 304 | 305 | deepSleep(); 306 | } -------------------------------------------------------------------------------- /Examples/inkster_example_pio/src/roboto12.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "epd_driver.h" 3 | const uint8_t robotoBitmaps[14563] = { 4 | 0x78, 0x9C, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01, 0x78, 0x9C, 0xFB, 0x90, 0xFF, 0x21, 0xFF, 0x43, 5 | 0xFC, 0x03, 0x28, 0xBC, 0xE0, 0x0F, 0x83, 0x0B, 0x6C, 0x19, 0x80, 0xC0, 0x41, 0xE2, 0x43, 0xFF, 6 | 0x86, 0x78, 0x00, 0x84, 0x86, 0x12, 0x68, 0x78, 0x9C, 0xFB, 0xCA, 0xB6, 0xFE, 0x2B, 0xEB, 0xFA, 7 | 0xAF, 0x2C, 0xF3, 0xBF, 0x32, 0xF7, 0x7F, 0x65, 0xCA, 0xFF, 0xCA, 0x10, 0x0F, 0x00, 0x5D, 0x64, 8 | 0x09, 0x2D, 0x78, 0x9C, 0x63, 0x60, 0x30, 0xE8, 0x67, 0xF8, 0xC2, 0xCE, 0xC0, 0xC0, 0x50, 0xE0, 9 | 0xCF, 0xF0, 0x9D, 0x05, 0x48, 0x2F, 0x90, 0x67, 0xF8, 0xC5, 0x08, 0xA4, 0x2F, 0xF0, 0x31, 0xBC, 10 | 0x05, 0x52, 0x0C, 0x1F, 0xB8, 0x05, 0xD6, 0x03, 0x45, 0xFF, 0x83, 0x01, 0x63, 0xC1, 0xEE, 0xBF, 11 | 0x7B, 0x6E, 0x9F, 0xDF, 0x0D, 0x14, 0xFF, 0xC5, 0x08, 0x54, 0x09, 0x04, 0x6F, 0x41, 0x2A, 0x81, 12 | 0x60, 0x3F, 0x50, 0x25, 0x90, 0x02, 0x1A, 0xF7, 0x99, 0x83, 0x81, 0xE1, 0x07, 0x58, 0xB9, 0x3E, 13 | 0xC3, 0xD2, 0x57, 0xFB, 0x57, 0xFD, 0x5B, 0x2D, 0xC5, 0xC0, 0x70, 0x80, 0x9F, 0xE1, 0x0F, 0xD8, 14 | 0x38, 0x1E, 0x86, 0xF3, 0x20, 0xFA, 0x13, 0xA7, 0xC2, 0x7C, 0x10, 0xFD, 0x95, 0x2D, 0x20, 0x1F, 15 | 0x44, 0xFF, 0x60, 0x6E, 0xB0, 0x07, 0x52, 0x00, 0x99, 0xAA, 0x2F, 0x32, 0x78, 0x9C, 0x63, 0x60, 16 | 0x48, 0xD0, 0x62, 0x00, 0x82, 0x09, 0xF6, 0x70, 0xB2, 0xE0, 0xEF, 0x7B, 0xA0, 0xD0, 0xEF, 0xFF, 17 | 0xFF, 0xFF, 0x33, 0x17, 0xFC, 0x67, 0x33, 0xF8, 0xCB, 0x7B, 0xA1, 0x9F, 0x81, 0xE1, 0xB3, 0xFF, 18 | 0x87, 0x78, 0x06, 0x86, 0x0B, 0xF5, 0x0F, 0xF2, 0x19, 0x18, 0x1A, 0xA2, 0x16, 0xBC, 0x67, 0x04, 19 | 0x2A, 0x54, 0xF8, 0x5F, 0x07, 0xA2, 0x1E, 0xFF, 0xDF, 0xCF, 0x0A, 0xA4, 0xAE, 0xFF, 0x3F, 0x0F, 20 | 0xE2, 0x2D, 0xFE, 0xCF, 0x0B, 0x32, 0xE9, 0x4B, 0x7E, 0x09, 0x0B, 0x03, 0xC3, 0x86, 0xF9, 0x3F, 21 | 0xB9, 0x81, 0xA6, 0xAE, 0xFF, 0x26, 0x0F, 0xD4, 0xDB, 0xFF, 0xE0, 0x3E, 0xB3, 0xC2, 0x6F, 0x7B, 22 | 0x07, 0xA0, 0xC1, 0xFF, 0xD9, 0x18, 0x26, 0xFD, 0x7B, 0x6F, 0x05, 0x54, 0x77, 0x81, 0x9F, 0x01, 23 | 0x4E, 0x3A, 0x00, 0x8D, 0x01, 0x00, 0xDD, 0xC1, 0x30, 0xE5, 0x78, 0x9C, 0x53, 0xF8, 0xBD, 0x9E, 24 | 0x91, 0x01, 0x04, 0x3E, 0xCD, 0xFF, 0xC9, 0x0B, 0x66, 0xFC, 0x60, 0x49, 0xC8, 0x67, 0x28, 0xE0, 25 | 0x64, 0x60, 0xF8, 0xCD, 0xA0, 0xD0, 0xCF, 0xF0, 0x89, 0x0B, 0xCA, 0x78, 0x03, 0x54, 0xF6, 0x83, 26 | 0x39, 0x21, 0xBF, 0x20, 0x1E, 0xA4, 0xB8, 0xEF, 0x27, 0xDF, 0x27, 0x6E, 0x20, 0x43, 0xE1, 0xF5, 27 | 0x3A, 0xC6, 0xD7, 0x10, 0x03, 0x18, 0x80, 0xDA, 0x20, 0xE0, 0x23, 0x37, 0x94, 0xF1, 0x9B, 0xF1, 28 | 0xEA, 0x7D, 0x76, 0xB0, 0x4C, 0xC2, 0xFD, 0x1D, 0xF3, 0x81, 0x8C, 0x87, 0xDC, 0x0F, 0xF8, 0x18, 29 | 0xFE, 0x00, 0xD5, 0xFF, 0x66, 0xFA, 0xC0, 0xC5, 0xF0, 0x9D, 0x99, 0x21, 0xA0, 0x9E, 0x01, 0xC2, 30 | 0x48, 0xE0, 0x66, 0x00, 0x4A, 0xFD, 0x06, 0x1B, 0x95, 0x70, 0x1E, 0xAC, 0x18, 0x08, 0x8E, 0x02, 31 | 0xB5, 0x03, 0x00, 0xEE, 0x14, 0x2B, 0x9F, 0x78, 0x9C, 0x15, 0xCD, 0xD1, 0x09, 0xC2, 0x30, 0x18, 32 | 0x04, 0xE0, 0x6B, 0x25, 0x4A, 0x05, 0xB1, 0x13, 0x88, 0x2F, 0x82, 0x4F, 0xA5, 0x1B, 0xD8, 0x0D, 33 | 0xDA, 0x0D, 0xC4, 0x49, 0x74, 0x03, 0xC5, 0x09, 0x1C, 0xA1, 0x1B, 0x74, 0x04, 0xB3, 0x41, 0x70, 34 | 0x82, 0x80, 0x48, 0x69, 0x68, 0x92, 0x33, 0xFF, 0xBD, 0x7C, 0x0F, 0x77, 0x70, 0x68, 0xFC, 0x7B, 35 | 0x89, 0x94, 0x91, 0xF1, 0x2E, 0xB2, 0xE8, 0x98, 0x03, 0x35, 0x33, 0x78, 0x05, 0x34, 0x04, 0xC2, 36 | 0x02, 0x28, 0xA9, 0x6E, 0x46, 0x7A, 0x57, 0xCD, 0x95, 0xA8, 0x69, 0x72, 0xF1, 0xC5, 0x8D, 0x50, 37 | 0xFA, 0x78, 0x45, 0x7D, 0x80, 0x36, 0x17, 0xAA, 0xFE, 0x8C, 0x71, 0x87, 0xE9, 0xA4, 0x5B, 0xCC, 38 | 0x05, 0x7A, 0xFB, 0xDB, 0x8A, 0x08, 0x5C, 0x63, 0x4A, 0xEB, 0x4F, 0x3A, 0xF8, 0x0E, 0xD9, 0xDE, 39 | 0x71, 0x85, 0x8E, 0x36, 0xD2, 0xB5, 0xC0, 0x33, 0x98, 0xE3, 0xC3, 0xE6, 0x7F, 0xE5, 0xEF, 0x36, 40 | 0xE9, 0x78, 0x9C, 0xFB, 0xCD, 0xF8, 0x9B, 0xF1, 0x37, 0xC3, 0x6F, 0x86, 0xD7, 0x0C, 0x77, 0x18, 41 | 0x00, 0x28, 0xD0, 0x05, 0xB6, 0x78, 0x9C, 0x63, 0x60, 0x30, 0xE0, 0x62, 0x60, 0xF8, 0xC2, 0xC7, 42 | 0xA0, 0xF0, 0x9E, 0x89, 0xE1, 0x80, 0x3F, 0x03, 0xC3, 0x57, 0x6E, 0x06, 0x86, 0xBF, 0xCC, 0x0C, 43 | 0x06, 0xF7, 0x19, 0x18, 0x26, 0xF4, 0x33, 0x30, 0x5C, 0x88, 0x67, 0x60, 0xF8, 0xA0, 0xCF, 0xC0, 44 | 0xF0, 0x99, 0x1F, 0xAC, 0x8A, 0xE1, 0x2B, 0x14, 0x7F, 0xE1, 0x87, 0x88, 0x81, 0xE4, 0x40, 0x6A, 45 | 0x26, 0xCC, 0x67, 0x00, 0xEB, 0x61, 0xF8, 0xCB, 0x02, 0x31, 0x03, 0x64, 0x16, 0xC8, 0x4C, 0x86, 46 | 0x2F, 0xBC, 0x40, 0x19, 0x2E, 0x00, 0x5C, 0xA9, 0x19, 0xD0, 0x78, 0x9C, 0x25, 0x8C, 0xDB, 0x09, 47 | 0x80, 0x30, 0x00, 0x03, 0x0F, 0xA9, 0x82, 0xF8, 0xC0, 0xD1, 0x1C, 0xA1, 0x1B, 0xE8, 0x2E, 0x1D, 48 | 0x40, 0x37, 0x70, 0x05, 0x37, 0x70, 0x17, 0xB5, 0x16, 0x5F, 0x68, 0xC4, 0x8F, 0x40, 0xE0, 0x2E, 49 | 0x71, 0x80, 0xCF, 0xA0, 0xED, 0x54, 0x2E, 0x03, 0x4B, 0x01, 0x63, 0x03, 0x76, 0x82, 0xEA, 0x89, 50 | 0xE0, 0x8E, 0xE1, 0x48, 0x21, 0xC8, 0xDA, 0x04, 0x7D, 0xF9, 0xE7, 0xEB, 0x21, 0x87, 0x5D, 0xEC, 51 | 0x4A, 0x40, 0x6E, 0xAD, 0x4D, 0xAF, 0xED, 0x2C, 0x74, 0x1A, 0xEC, 0x00, 0xAB, 0x0C, 0xA7, 0xEB, 52 | 0x17, 0x5D, 0x38, 0x19, 0xFB, 0x78, 0x9C, 0x63, 0x60, 0xF8, 0xC1, 0xCA, 0x00, 0x04, 0xDF, 0x59, 53 | 0x18, 0x18, 0x04, 0x80, 0xA4, 0x00, 0xC3, 0xD7, 0xEC, 0xEF, 0xA5, 0x7F, 0x18, 0x8F, 0xFE, 0xFF, 54 | 0xFF, 0x7F, 0x3F, 0x13, 0x43, 0xE2, 0x7F, 0x3F, 0xA0, 0xE4, 0x86, 0xF3, 0xF9, 0x20, 0x25, 0x92, 55 | 0xFF, 0x98, 0x18, 0x14, 0xDE, 0x33, 0x7E, 0xE3, 0x61, 0x60, 0x08, 0x67, 0x58, 0xC0, 0xC2, 0x00, 56 | 0x00, 0x63, 0x63, 0x14, 0x19, 0x78, 0x9C, 0x63, 0x60, 0x60, 0x30, 0x66, 0x00, 0x01, 0x81, 0xFF, 57 | 0x4C, 0xF8, 0xA9, 0x0F, 0xFF, 0x41, 0x40, 0x1F, 0x4A, 0x29, 0x28, 0x19, 0xFD, 0x57, 0x51, 0x62, 58 | 0x22, 0xA0, 0xEF, 0x0C, 0x90, 0x02, 0x00, 0xA2, 0x50, 0x18, 0x9A, 0x78, 0x9C, 0x73, 0xE8, 0x2A, 59 | 0x38, 0x5F, 0xB0, 0x7F, 0xC2, 0xFC, 0x0B, 0xFE, 0x5F, 0x79, 0x0E, 0x33, 0x01, 0x00, 0x38, 0x90, 60 | 0x07, 0x4D, 0x78, 0x9C, 0xFB, 0xF1, 0xFF, 0x3F, 0xDB, 0xF5, 0xBB, 0x77, 0x59, 0x01, 0x1C, 0x8B, 61 | 0x05, 0x93, 0x78, 0x9C, 0x6B, 0x90, 0xFC, 0xD4, 0x7F, 0xC1, 0x0F, 0x00, 0x0A, 0xE6, 0x03, 0x39, 62 | 0x78, 0x9C, 0x63, 0x60, 0x60, 0x68, 0xC8, 0x67, 0x60, 0x60, 0x78, 0xC0, 0x0F, 0x24, 0xBE, 0x70, 63 | 0x01, 0x89, 0x5F, 0x2C, 0x0C, 0x0C, 0x02, 0xEF, 0x81, 0x8C, 0x84, 0x7E, 0x20, 0x71, 0x40, 0x1F, 64 | 0x48, 0x7C, 0xE2, 0x01, 0x12, 0x3F, 0xD8, 0x80, 0xC4, 0x3F, 0x46, 0x06, 0x06, 0x87, 0xF5, 0x40, 65 | 0xC6, 0x02, 0x7F, 0x20, 0xF1, 0x81, 0x0F, 0x48, 0x7C, 0xE5, 0x04, 0x12, 0xBF, 0x99, 0x81, 0x9A, 66 | 0xEE, 0x03, 0x19, 0x05, 0xF5, 0x40, 0xE2, 0x82, 0x3C, 0x90, 0xF8, 0xCC, 0x0D, 0x24, 0x7E, 0xB2, 67 | 0x02, 0x09, 0x00, 0xD4, 0xDC, 0x13, 0x54, 0x78, 0x9C, 0x63, 0x28, 0xF8, 0x7B, 0x9F, 0x83, 0x41, 68 | 0xE0, 0xEF, 0xFB, 0x7F, 0xF7, 0x19, 0x27, 0xBC, 0x67, 0x36, 0xF8, 0xC7, 0xF9, 0x21, 0x9E, 0x81, 69 | 0xE1, 0x8B, 0xFC, 0x17, 0x7E, 0x06, 0x86, 0x07, 0xF1, 0xDF, 0x79, 0x18, 0x18, 0x0E, 0xD4, 0xFF, 70 | 0xE0, 0x62, 0x60, 0x58, 0x30, 0xFF, 0x27, 0x82, 0x5C, 0x8F, 0x44, 0xCE, 0xFF, 0xC1, 0x0D, 0x22, 71 | 0x21, 0x2A, 0xC1, 0xBA, 0xFC, 0xC1, 0x26, 0xF0, 0x37, 0x80, 0x4D, 0x63, 0xF8, 0x03, 0x32, 0x99, 72 | 0x01, 0x6C, 0x0B, 0x00, 0xA6, 0x53, 0x2D, 0x05, 0x78, 0x9C, 0x63, 0x10, 0x58, 0xCA, 0x5B, 0xF4, 73 | 0xFB, 0x3F, 0xDF, 0xBF, 0xF7, 0x7F, 0xF8, 0xE6, 0x32, 0x7F, 0xE3, 0x63, 0x60, 0x20, 0x0F, 0x03, 74 | 0x00, 0x83, 0x2B, 0x16, 0x10, 0x78, 0x9C, 0x63, 0x98, 0xF8, 0xF7, 0xBE, 0x04, 0x03, 0x83, 0xC3, 75 | 0xFF, 0xF7, 0xFF, 0xDF, 0x33, 0x31, 0x7C, 0xDC, 0xCF, 0xE4, 0xF0, 0x8F, 0x87, 0xE1, 0x07, 0x2F, 76 | 0x03, 0xC3, 0x57, 0x7D, 0x86, 0x3F, 0x1C, 0x0C, 0x0C, 0x1F, 0xFC, 0x19, 0xCA, 0x98, 0x81, 0x94, 77 | 0x3D, 0x03, 0x08, 0x7C, 0xE1, 0x03, 0x53, 0x20, 0x09, 0x06, 0x86, 0x86, 0xFB, 0x60, 0xCE, 0x57, 78 | 0xB0, 0x94, 0xC3, 0x7F, 0x56, 0x10, 0xF5, 0xB9, 0x1E, 0x44, 0x2A, 0xFC, 0xE3, 0x04, 0x51, 0x17, 79 | 0xD7, 0x43, 0x54, 0x73, 0x83, 0xC8, 0x0D, 0xE7, 0xC1, 0x9C, 0xEF, 0xEF, 0xEF, 0x02, 0x01, 0xE3, 80 | 0x8F, 0xFF, 0x20, 0xC0, 0x04, 0x00, 0x61, 0xAE, 0x27, 0x80, 0x78, 0x9C, 0x63, 0x98, 0xF8, 0xF7, 81 | 0x3C, 0x3B, 0x83, 0xC3, 0xFF, 0xF7, 0xFF, 0xCF, 0x33, 0x7C, 0xDC, 0xCF, 0xE8, 0xF0, 0x8F, 0xF3, 82 | 0x3B, 0x1F, 0x03, 0xC3, 0x37, 0xBE, 0x97, 0x9C, 0x0C, 0x0C, 0x9F, 0xE4, 0x19, 0x80, 0xE0, 0x33, 83 | 0x3F, 0x88, 0xFC, 0xC9, 0x03, 0x24, 0x26, 0xFD, 0x67, 0x66, 0x30, 0xF8, 0xFF, 0x5F, 0x87, 0x81, 84 | 0xC1, 0xE0, 0xEE, 0xFF, 0xF9, 0x20, 0x61, 0x87, 0x7F, 0x5C, 0x60, 0x35, 0xFA, 0x20, 0xF2, 0x41, 85 | 0xFC, 0x1F, 0x76, 0x10, 0xF9, 0x8B, 0x07, 0x24, 0xF2, 0x79, 0x3E, 0xA3, 0xC1, 0x5F, 0x9E, 0x04, 86 | 0xA0, 0xC9, 0xF7, 0x19, 0x19, 0x16, 0xFF, 0x03, 0xDA, 0x02, 0x00, 0x53, 0xFF, 0x27, 0x88, 0x78, 87 | 0x9C, 0x63, 0x60, 0x60, 0x60, 0xF8, 0xCD, 0x0F, 0x24, 0x18, 0x02, 0xFE, 0x83, 0xA9, 0x87, 0x10, 88 | 0xEA, 0xE7, 0x1F, 0x10, 0xE5, 0x70, 0xFF, 0x0B, 0x88, 0xBA, 0xE0, 0x0F, 0xA6, 0x7E, 0x70, 0x81, 89 | 0x28, 0x85, 0xF7, 0x8C, 0x20, 0xEA, 0x40, 0x3E, 0x03, 0x88, 0xFA, 0xCE, 0x03, 0xA2, 0x04, 0xFE, 90 | 0x33, 0x81, 0xA8, 0x0D, 0xFD, 0x0C, 0x20, 0xEA, 0xCB, 0x7F, 0x10, 0xA8, 0xBF, 0x72, 0xF7, 0xEE, 91 | 0xDD, 0x7F, 0xF7, 0x73, 0x41, 0xA6, 0x81, 0xB5, 0x63, 0xA1, 0x00, 0x4F, 0x5D, 0x27, 0x75, 0x78, 92 | 0x9C, 0x63, 0xF8, 0xF5, 0xFF, 0xFF, 0xFF, 0x7E, 0x06, 0x86, 0xDF, 0x10, 0xEA, 0xAF, 0xA8, 0xA0, 93 | 0x20, 0x23, 0x03, 0xC3, 0x7F, 0x26, 0x06, 0x10, 0xF8, 0x0F, 0x26, 0x15, 0x20, 0x94, 0xC3, 0xFB, 94 | 0x1B, 0xEF, 0xBD, 0x19, 0x18, 0x02, 0x80, 0x0A, 0xFF, 0xB3, 0x33, 0x04, 0xBC, 0x17, 0x73, 0xF8, 95 | 0x6B, 0x0F, 0x96, 0x78, 0xB8, 0x1E, 0x4C, 0x15, 0xBC, 0x87, 0x28, 0xFB, 0x0F, 0xA3, 0x1E, 0xE8, 96 | 0x31, 0x30, 0x24, 0xBC, 0x67, 0xB8, 0x50, 0xCF, 0xC0, 0x70, 0x60, 0x3D, 0x50, 0x1F, 0x1B, 0xC3, 97 | 0x4F, 0xA0, 0x86, 0x9F, 0xFF, 0xFF, 0x02, 0x59, 0x0C, 0x0E, 0xAF, 0xDF, 0x5B, 0x31, 0x30, 0x00, 98 | 0x00, 0xFC, 0xB3, 0x2B, 0x2A, 0x78, 0x9C, 0x63, 0x60, 0x08, 0xB8, 0x15, 0xCF, 0xC0, 0xA0, 0xF0, 99 | 0xF7, 0x3F, 0x90, 0x7C, 0x74, 0x5F, 0x94, 0x81, 0x81, 0xE1, 0x2F, 0x17, 0x90, 0x08, 0xB8, 0x0F, 100 | 0x24, 0x18, 0x36, 0xE4, 0x83, 0xC8, 0x0F, 0xFA, 0x37, 0xDE, 0x5B, 0x33, 0x7C, 0xBE, 0xFF, 0xFF, 101 | 0xDF, 0x7F, 0x96, 0x2F, 0xFF, 0xD9, 0x05, 0xFE, 0xC8, 0x7D, 0x05, 0x2A, 0xFE, 0x58, 0xFF, 0x8D, 102 | 0x8F, 0x81, 0x61, 0xC2, 0xFE, 0xAF, 0x40, 0xB2, 0xE0, 0xFE, 0x17, 0x7E, 0x20, 0x79, 0xFE, 0xA3, 103 | 0x3F, 0x50, 0x64, 0xFD, 0x86, 0xFD, 0x40, 0xD9, 0x7C, 0x83, 0xFF, 0x9C, 0x02, 0xBF, 0xF9, 0x18, 104 | 0xBE, 0xFE, 0xFF, 0xF7, 0x9E, 0x99, 0xC1, 0xE0, 0xD5, 0x7B, 0x49, 0x06, 0x00, 0x92, 0xCF, 0x2B, 105 | 0x97, 0x78, 0x9C, 0xFB, 0xF8, 0x1F, 0x04, 0xF8, 0x2F, 0xDC, 0x05, 0x82, 0x7F, 0xBC, 0x0C, 0x20, 106 | 0xF0, 0x9B, 0x0D, 0x44, 0x2A, 0xBC, 0x07, 0x73, 0x16, 0xF4, 0x83, 0xA9, 0x8F, 0xF2, 0x60, 0xEA, 107 | 0x07, 0x17, 0x98, 0xFA, 0xCF, 0x0C, 0x22, 0x0B, 0xCE, 0x83, 0x39, 0x0F, 0xE2, 0xC1, 0xD4, 0x57, 108 | 0x3E, 0x30, 0xF5, 0x97, 0x1D, 0x44, 0x3A, 0xFC, 0x07, 0x73, 0x36, 0xCC, 0x07, 0x53, 0x9F, 0xF5, 109 | 0xC1, 0xD4, 0x2F, 0x6E, 0x10, 0x29, 0xF0, 0x9F, 0x05, 0x44, 0x35, 0xDC, 0x07, 0x91, 0x00, 0x29, 110 | 0x43, 0x1D, 0x4A, 0x78, 0x9C, 0x63, 0x28, 0xF8, 0x7B, 0x9F, 0x9D, 0x41, 0xE0, 0xEF, 0xFF, 0xFF, 111 | 0xF7, 0x19, 0x17, 0xBC, 0x67, 0x71, 0xF8, 0xC7, 0xF5, 0x21, 0x9F, 0x81, 0xE1, 0xAB, 0xFC, 0x27, 112 | 0x79, 0x06, 0x86, 0x8F, 0xF6, 0x9F, 0xF4, 0x81, 0xA4, 0xFE, 0x83, 0x7A, 0x06, 0x86, 0x6F, 0x7C, 113 | 0x01, 0xFF, 0xC5, 0x12, 0xFF, 0xB3, 0x32, 0x7C, 0xFD, 0xFF, 0x3F, 0x9E, 0x81, 0xE1, 0xE7, 0xFB, 114 | 0xFF, 0xF3, 0x19, 0x36, 0x9C, 0x67, 0x36, 0xF8, 0xC3, 0xFD, 0x05, 0xA4, 0xD2, 0xFF, 0x07, 0x37, 115 | 0x03, 0xC3, 0x86, 0xF9, 0x3F, 0x81, 0xE4, 0x82, 0xF5, 0xDF, 0xF8, 0x18, 0x18, 0x1E, 0xD4, 0x7F, 116 | 0xDC, 0xCF, 0xA4, 0xF0, 0x5B, 0xDE, 0xE1, 0xFF, 0xFB, 0x7F, 0xFF, 0x59, 0x18, 0x26, 0xFD, 0xBD, 117 | 0xAF, 0xC9, 0x00, 0x00, 0x8D, 0x9E, 0x31, 0xDA, 0x78, 0x9C, 0x63, 0x68, 0xFC, 0xBB, 0x8F, 0x99, 118 | 0x41, 0xE1, 0xDF, 0xFB, 0xFF, 0xF9, 0x0C, 0x07, 0xCE, 0x33, 0x4D, 0xF8, 0xCF, 0xFC, 0x45, 0x9E, 119 | 0x81, 0xE1, 0x37, 0xF7, 0x4F, 0x2E, 0x06, 0x86, 0x2F, 0xF2, 0xBF, 0x39, 0x18, 0x18, 0x3E, 0xF8, 120 | 0x83, 0xC8, 0x07, 0xF1, 0xBF, 0x80, 0x22, 0x0F, 0xF2, 0xBF, 0x02, 0x65, 0xBF, 0xE6, 0x3F, 0x38, 121 | 0xCF, 0x54, 0xF0, 0x3F, 0xDE, 0xE1, 0xFF, 0xFB, 0xFF, 0xBF, 0xED, 0x19, 0x16, 0xFD, 0xCB, 0xFD, 122 | 0x00, 0x14, 0x05, 0xAA, 0xE7, 0x05, 0x91, 0x20, 0xD5, 0x0C, 0x09, 0xFF, 0x19, 0x19, 0x18, 0x1C, 123 | 0x7E, 0xC7, 0x33, 0x30, 0x3C, 0xF9, 0xFF, 0x9E, 0x15, 0x28, 0xB5, 0x8F, 0x8D, 0x81, 0x01, 0x00, 124 | 0xC7, 0x6E, 0x2A, 0xEB, 0x78, 0x9C, 0xBB, 0xA8, 0xF7, 0x25, 0xBF, 0x41, 0x92, 0x01, 0x05, 0x34, 125 | 0x70, 0x7E, 0xC9, 0x7F, 0xA8, 0x07, 0x00, 0x51, 0xF2, 0x05, 0xF7, 0x78, 0x9C, 0x0B, 0x38, 0xCF, 126 | 0x30, 0xE1, 0x3F, 0xA3, 0x42, 0x15, 0x03, 0x56, 0x60, 0x30, 0x8B, 0x21, 0xE0, 0x3D, 0x43, 0xC0, 127 | 0x7D, 0x86, 0x82, 0xFD, 0x0C, 0x1B, 0xF2, 0x19, 0x3E, 0xF1, 0x31, 0x1C, 0x64, 0x61, 0x00, 0x00, 128 | 0xF2, 0xDB, 0x0A, 0x95, 0x78, 0x9C, 0x63, 0x60, 0x60, 0x60, 0x08, 0xE0, 0x06, 0x12, 0x05, 0xFF, 129 | 0x78, 0x19, 0x18, 0x1A, 0xFF, 0xBD, 0x67, 0x67, 0x98, 0xF4, 0xFF, 0x3C, 0x2B, 0xC3, 0x82, 0xFF, 130 | 0xF3, 0x99, 0x18, 0x18, 0x3E, 0x9D, 0x67, 0x04, 0x4A, 0x2D, 0xF8, 0xDF, 0x07, 0x64, 0x03, 0xC5, 131 | 0xF7, 0xB3, 0x32, 0x40, 0xD5, 0x40, 0xD5, 0x33, 0x30, 0x24, 0x70, 0x03, 0x00, 0x92, 0xED, 0x13, 132 | 0x92, 0x78, 0x9C, 0xFB, 0xF4, 0x1F, 0x08, 0xF8, 0x3F, 0x81, 0x49, 0x06, 0x0C, 0xF0, 0x09, 0x49, 133 | 0x16, 0x00, 0xB6, 0x15, 0x13, 0xF5, 0x78, 0x9C, 0x9B, 0xCA, 0xC4, 0x00, 0x04, 0x5F, 0xF7, 0xB3, 134 | 0x00, 0xC9, 0x45, 0xFF, 0xEF, 0xB3, 0x01, 0xA9, 0xC4, 0xBF, 0xEF, 0x25, 0x80, 0x94, 0xC1, 0xCF, 135 | 0xFF, 0x5C, 0x40, 0x4A, 0xE1, 0x8F, 0x3C, 0x03, 0x83, 0xC3, 0x2F, 0x20, 0xBB, 0x10, 0x24, 0x0E, 136 | 0x51, 0x03, 0x51, 0x3F, 0x15, 0xAC, 0x17, 0x00, 0xB0, 0x3A, 0x14, 0x35, 0x78, 0x9C, 0x63, 0x68, 137 | 0xF8, 0x7B, 0x9E, 0x9D, 0x41, 0xE0, 0xEF, 0xFF, 0xFF, 0xFB, 0x19, 0x16, 0xBC, 0x67, 0x2D, 0xFC, 138 | 0xCF, 0xF6, 0x21, 0x9F, 0x81, 0xE1, 0x17, 0x77, 0x82, 0x18, 0x03, 0xC3, 0x77, 0x1E, 0x06, 0x20, 139 | 0xF8, 0xC9, 0x0D, 0x24, 0x04, 0xFE, 0xB1, 0x01, 0xC9, 0x03, 0xF7, 0x41, 0x02, 0x7F, 0xF4, 0x80, 140 | 0xC4, 0x82, 0xF7, 0x4C, 0x40, 0xF2, 0xB3, 0x3F, 0x48, 0xE0, 0x07, 0x2F, 0x88, 0x7C, 0xC1, 0xC9, 141 | 0x80, 0x06, 0x9A, 0x98, 0x41, 0xE4, 0x2F, 0xB0, 0xEC, 0x37, 0xA0, 0x2C, 0x00, 0xFC, 0xE9, 0x19, 142 | 0x3A, 0x78, 0x9C, 0x3D, 0x8C, 0xB1, 0x6E, 0x82, 0x50, 0x18, 0x46, 0x4F, 0xB9, 0x02, 0x21, 0x4D, 143 | 0x0C, 0x73, 0x27, 0xDE, 0x40, 0x1E, 0x81, 0xDD, 0x81, 0xBD, 0xCF, 0x50, 0x07, 0x77, 0x13, 0x99, 144 | 0xBB, 0x54, 0x67, 0x5F, 0xC0, 0xB8, 0x38, 0xBA, 0x21, 0x83, 0x6B, 0x73, 0xDB, 0x27, 0xC0, 0xDD, 145 | 0x81, 0x34, 0x06, 0xB8, 0x25, 0x78, 0xF1, 0x8A, 0xD1, 0x33, 0x7C, 0x39, 0xC9, 0xF7, 0xFD, 0x3F, 146 | 0x30, 0x3D, 0x75, 0xA9, 0xC3, 0x8D, 0xA4, 0x4B, 0x37, 0x6D, 0x61, 0x1B, 0xF3, 0xDB, 0xB1, 0xC9, 147 | 0xC3, 0x97, 0x89, 0x6C, 0xDE, 0x77, 0x8D, 0x99, 0x28, 0xB7, 0xD7, 0x6C, 0x48, 0x20, 0x61, 0xA9, 148 | 0x3F, 0x08, 0xE7, 0x2C, 0x62, 0x02, 0xBD, 0xBA, 0xB8, 0x7C, 0x73, 0x1C, 0xF2, 0x13, 0x53, 0x3A, 149 | 0xFC, 0x73, 0xF6, 0xA8, 0x3C, 0x6A, 0x9B, 0xCA, 0xAA, 0x1C, 0x5A, 0x0B, 0x25, 0xA8, 0x84, 0x1A, 150 | 0x50, 0x98, 0x57, 0x16, 0xA5, 0x50, 0x22, 0xDC, 0x43, 0x0B, 0xB5, 0xA5, 0x44, 0xB4, 0x85, 0x0B, 151 | 0xE6, 0xAC, 0x1E, 0x84, 0x92, 0xC0, 0x6C, 0x52, 0x4A, 0xD7, 0xEF, 0xC4, 0x6F, 0xF7, 0x92, 0xC4, 152 | 0xFC, 0xBD, 0xD2, 0xC8, 0x5C, 0xCD, 0x1A, 0x8F, 0x6C, 0xC4, 0xA2, 0x78, 0x4B, 0xF4, 0x04, 0x22, 153 | 0xC9, 0x13, 0xD3, 0x3C, 0xC8, 0xA4, 0x80, 0xF0, 0xEE, 0x2A, 0xFF, 0x5C, 0x6B, 0xBB, 0x57, 0x7F, 154 | 0xA7, 0xF3, 0xF7, 0x9B, 0x5C, 0x01, 0x03, 0x98, 0x4C, 0x0C, 0x78, 0x9C, 0x63, 0x60, 0x60, 0xF8, 155 | 0x18, 0xCF, 0x00, 0x06, 0xDF, 0xCF, 0x43, 0xE8, 0xBF, 0xFF, 0x99, 0x40, 0x94, 0xC1, 0xFB, 0x5F, 156 | 0x1C, 0x20, 0x7A, 0xC2, 0xFC, 0x2F, 0x7C, 0x20, 0xFA, 0x81, 0xFD, 0x03, 0x7F, 0x10, 0xFD, 0x95, 157 | 0xB7, 0x61, 0x3D, 0x88, 0xFE, 0xCD, 0xAE, 0xF0, 0x1F, 0x48, 0x09, 0xFC, 0x67, 0x64, 0xF8, 0xC3, 158 | 0xC6, 0xC0, 0x50, 0xB0, 0x9F, 0x81, 0xE1, 0x1B, 0x0F, 0x03, 0xC3, 0x05, 0xA0, 0x69, 0x1F, 0xF4, 159 | 0x19, 0x18, 0x3E, 0xFF, 0x07, 0x82, 0x7E, 0x06, 0x86, 0x9F, 0xEF, 0xDF, 0xBD, 0x7B, 0xF7, 0x9E, 160 | 0x81, 0xE1, 0x1F, 0x33, 0x50, 0xF1, 0x3F, 0x96, 0x80, 0xF7, 0x20, 0xBD, 0x3F, 0xB9, 0x36, 0xCC, 161 | 0x07, 0xD1, 0x5F, 0xE4, 0x3F, 0x82, 0xCD, 0x7C, 0x90, 0xFF, 0x1D, 0x6C, 0xC7, 0x84, 0xF3, 0x00, 162 | 0xAE, 0xBB, 0x2D, 0x51, 0x78, 0x9C, 0xFB, 0xFF, 0xFF, 0xFF, 0x7D, 0x2B, 0x06, 0x86, 0xFF, 0xEF, 163 | 0xDF, 0xFD, 0xFF, 0xCF, 0xC6, 0x00, 0x44, 0x0A, 0xBF, 0xF5, 0x41, 0x14, 0xC3, 0x83, 0x7E, 0x30, 164 | 0xB5, 0x61, 0x3D, 0x98, 0x3A, 0x30, 0x1F, 0x4C, 0x7D, 0x8A, 0x07, 0x51, 0x81, 0x7F, 0xB9, 0x19, 165 | 0xFE, 0x03, 0xC1, 0x7C, 0xA0, 0xBE, 0x77, 0xEF, 0xFE, 0xBD, 0x07, 0xEB, 0x63, 0xF8, 0x06, 0x96, 166 | 0x63, 0x68, 0x78, 0x0F, 0xA6, 0x1C, 0xFE, 0x33, 0x22, 0x51, 0x13, 0xC0, 0x82, 0x02, 0x3F, 0xFA, 167 | 0x21, 0x16, 0x81, 0xB5, 0xBF, 0x8F, 0x66, 0x60, 0x00, 0x00, 0x09, 0x86, 0x38, 0x43, 0x78, 0x9C, 168 | 0x63, 0x60, 0x58, 0xF2, 0xF7, 0x1C, 0x3B, 0x03, 0x03, 0xC3, 0x86, 0xFF, 0xFF, 0xFF, 0xDF, 0x67, 169 | 0x62, 0x60, 0xF8, 0x93, 0xCF, 0x18, 0xF0, 0x8F, 0x97, 0xA1, 0xE0, 0x3F, 0x33, 0x03, 0xC3, 0xC7, 170 | 0x7A, 0x86, 0x07, 0xFD, 0x40, 0xB9, 0x09, 0xF7, 0x19, 0x3E, 0xEB, 0x03, 0x69, 0x87, 0xFF, 0x0C, 171 | 0xDF, 0xF8, 0x19, 0xC0, 0xE0, 0x3B, 0x2F, 0x84, 0xFE, 0x81, 0x83, 0x86, 0xA9, 0x83, 0xE8, 0x7B, 172 | 0x07, 0x37, 0xA7, 0xE0, 0x3F, 0x13, 0xD8, 0x5C, 0x86, 0xBF, 0x71, 0x0C, 0x01, 0x7F, 0x81, 0x8A, 173 | 0x0F, 0x42, 0xED, 0x65, 0xD8, 0xF6, 0x6F, 0x1F, 0x1B, 0x03, 0x03, 0x00, 0x04, 0xE2, 0x29, 0xE5, 174 | 0x78, 0x9C, 0xFB, 0xFF, 0xFF, 0xFF, 0x3A, 0x16, 0x06, 0x86, 0xFF, 0xEF, 0xFF, 0xFD, 0xDF, 0x0F, 175 | 0xA4, 0xD8, 0x18, 0x12, 0xFF, 0xF1, 0x82, 0x28, 0x86, 0x47, 0xF3, 0xC1, 0x94, 0xC3, 0x7F, 0x46, 176 | 0x10, 0xC5, 0xF0, 0x97, 0x1D, 0x4C, 0xFD, 0xE4, 0x06, 0x53, 0xDF, 0x79, 0xC1, 0xD4, 0x37, 0x3E, 177 | 0x64, 0x0A, 0x2A, 0x08, 0x55, 0x02, 0xD1, 0x10, 0x00, 0xD1, 0x0E, 0x31, 0xAC, 0xE8, 0x3F, 0x2F, 178 | 0xDC, 0xA2, 0xFF, 0xFF, 0xE7, 0x32, 0x33, 0x30, 0x00, 0x00, 0xED, 0xE8, 0x2F, 0x83, 0x78, 0x9C, 179 | 0xFB, 0xFF, 0x1F, 0x08, 0xEC, 0xFF, 0xBF, 0x7F, 0xF7, 0xEE, 0x9D, 0xDD, 0x7F, 0x36, 0x06, 0x20, 180 | 0x20, 0x40, 0x82, 0x00, 0x23, 0x58, 0x3D, 0x23, 0x51, 0xEA, 0x41, 0x2A, 0xE3, 0xC0, 0xBA, 0xE2, 181 | 0x01, 0x2F, 0xC8, 0x2A, 0x92, 0x78, 0x9C, 0xFB, 0xFF, 0x1F, 0x08, 0xE4, 0xFF, 0xBF, 0x7F, 0xF7, 182 | 0xEE, 0x9D, 0xDC, 0x7F, 0x36, 0x06, 0x20, 0x20, 0x40, 0x02, 0xC1, 0x7D, 0x06, 0x90, 0xFA, 0x73, 183 | 0x84, 0x54, 0x62, 0x90, 0x00, 0xD5, 0x2F, 0x21, 0xAA, 0x78, 0x9C, 0x63, 0x60, 0xD8, 0xFA, 0xEF, 184 | 0xBC, 0x38, 0x03, 0x03, 0xC3, 0xC1, 0xFF, 0xFF, 0xFF, 0xBF, 0x67, 0x66, 0x60, 0xF8, 0x9B, 0xC7, 185 | 0xE0, 0xF0, 0x57, 0x9E, 0xA1, 0xE0, 0x3F, 0x13, 0x03, 0xC3, 0xC3, 0xF9, 0x0C, 0x0F, 0xFA, 0x81, 186 | 0x72, 0x05, 0xFF, 0x19, 0x3E, 0xEB, 0x03, 0x69, 0x81, 0x72, 0x86, 0x6F, 0xFC, 0x0C, 0x60, 0xF0, 187 | 0x9D, 0x0F, 0x42, 0xFF, 0xE0, 0x85, 0xD3, 0x0E, 0x40, 0x13, 0x98, 0x81, 0xE2, 0x06, 0xEF, 0xDE, 188 | 0xFD, 0x67, 0xFE, 0x0A, 0x52, 0xA7, 0xF0, 0x9F, 0xF9, 0x93, 0x3F, 0x84, 0x3E, 0xB0, 0x1E, 0x42, 189 | 0x07, 0xFC, 0x67, 0x03, 0xD3, 0x0C, 0xBF, 0xFA, 0x99, 0x04, 0xAE, 0xFE, 0x67, 0x64, 0x98, 0x00, 190 | 0xD4, 0xF5, 0xDF, 0x0E, 0x28, 0x39, 0xF9, 0xEF, 0xFB, 0x6C, 0x06, 0x06, 0x00, 0xAC, 0xD1, 0x31, 191 | 0xA5, 0x78, 0x9C, 0xFB, 0xCF, 0xC6, 0xC0, 0xC0, 0xB0, 0x60, 0xFF, 0x7F, 0x92, 0x29, 0x30, 0xD8, 192 | 0xFF, 0xFF, 0xFD, 0xBB, 0x77, 0xEF, 0xFE, 0x91, 0xA1, 0x1D, 0x42, 0x01, 0x00, 0xBE, 0x0B, 0x33, 193 | 0x6F, 0x78, 0x9C, 0xFB, 0xC3, 0xF9, 0x87, 0x20, 0x04, 0x00, 0x5C, 0x3F, 0x12, 0x5B, 0x78, 0x9C, 194 | 0x63, 0x60, 0x60, 0x60, 0x28, 0xB8, 0xCF, 0x40, 0x31, 0xA9, 0xC0, 0x04, 0x22, 0xBF, 0xC8, 0x33, 195 | 0x30, 0x2C, 0x38, 0xFF, 0x29, 0x9F, 0x81, 0xE1, 0xE1, 0xFC, 0x0D, 0xEF, 0x59, 0x15, 0xFE, 0xE8, 196 | 0x0B, 0xFC, 0xFD, 0xFF, 0xFF, 0x3F, 0x2B, 0x43, 0xC1, 0x9F, 0xF7, 0x5A, 0x0C, 0x00, 0x60, 0x14, 197 | 0x20, 0x0C, 0x78, 0x9C, 0xFB, 0xCF, 0xC6, 0xC0, 0xA0, 0xF0, 0x9F, 0xFB, 0x3F, 0x90, 0x7A, 0x78, 198 | 0x9E, 0x01, 0x48, 0x09, 0xFC, 0x95, 0x05, 0x51, 0x07, 0xDE, 0x33, 0x81, 0xA8, 0x5F, 0xF6, 0x0C, 199 | 0x40, 0x6A, 0xC2, 0x7F, 0x16, 0x10, 0xF5, 0x3D, 0x9F, 0x01, 0x48, 0x85, 0xFD, 0xE7, 0x00, 0x51, 200 | 0xBF, 0x20, 0xD4, 0xFF, 0x7F, 0xFE, 0x20, 0x6A, 0xFF, 0x81, 0xF7, 0x8C, 0x40, 0x8A, 0x47, 0xE0, 201 | 0x1F, 0x0F, 0x48, 0x25, 0xC3, 0x97, 0x7E, 0x30, 0xD5, 0x00, 0xD4, 0x08, 0x32, 0xFA, 0xB7, 0x1C, 202 | 0x03, 0xC2, 0x06, 0x06, 0x87, 0xFF, 0x1C, 0x20, 0x8A, 0xE1, 0x47, 0x3C, 0x00, 0x89, 0x12, 0x2D, 203 | 0xD0, 0x78, 0x9C, 0xFB, 0xCF, 0xC6, 0x00, 0x04, 0xFF, 0x69, 0x47, 0xBE, 0x7F, 0xF7, 0xEE, 0x1D, 204 | 0xCF, 0x7F, 0x10, 0xE0, 0x05, 0x00, 0x47, 0x98, 0x1A, 0x1D, 0x78, 0x9C, 0x25, 0xCA, 0xB1, 0x0D, 205 | 0x83, 0x30, 0x10, 0x85, 0xE1, 0x4B, 0x81, 0x69, 0x60, 0x17, 0x90, 0xE8, 0xCD, 0x06, 0x59, 0x25, 206 | 0x15, 0x15, 0x45, 0x46, 0x70, 0x41, 0x6F, 0xAA, 0xB4, 0x8C, 0x72, 0xAB, 0x80, 0x14, 0x61, 0x45, 207 | 0xC2, 0x7A, 0x79, 0x87, 0x4F, 0x7A, 0xBA, 0xAF, 0xF8, 0xF1, 0x14, 0xBB, 0xA4, 0xD8, 0x6E, 0x64, 208 | 0x05, 0x1E, 0xFC, 0x23, 0x88, 0x9A, 0x58, 0x89, 0x5F, 0x4B, 0x1C, 0x51, 0xF1, 0xB5, 0x3A, 0xCD, 209 | 0x8A, 0xC5, 0xEA, 0x3C, 0x29, 0x06, 0xD6, 0x23, 0x5E, 0x8A, 0xEA, 0xAA, 0x65, 0x8D, 0x6F, 0xE2, 210 | 0x6C, 0xE5, 0xF0, 0x84, 0xDB, 0xBD, 0xA4, 0x26, 0x10, 0x61, 0x93, 0xEC, 0x0C, 0x1D, 0x7A, 0x88, 211 | 0x41, 0xAE, 0x4F, 0x2C, 0x38, 0xB3, 0x2F, 0xD8, 0xD1, 0x14, 0x04, 0x9B, 0xA1, 0x83, 0x10, 0x7F, 212 | 0x30, 0x2B, 0x4D, 0x6C, 0x78, 0x9C, 0xFB, 0xCF, 0xCD, 0xC0, 0xC0, 0x30, 0x61, 0xFF, 0xFF, 0x7C, 213 | 0x08, 0xF5, 0x9E, 0x11, 0x4C, 0xFD, 0xE7, 0x02, 0x53, 0x7F, 0xE2, 0xC1, 0xD4, 0xB6, 0xF7, 0x60, 214 | 0x4A, 0xEC, 0x3F, 0x27, 0x88, 0x62, 0xFB, 0xE6, 0x0F, 0xA6, 0x0E, 0xDC, 0x07, 0x53, 0x0A, 0xFF, 215 | 0x39, 0x40, 0x14, 0xC3, 0x77, 0x7B, 0x30, 0x75, 0xE0, 0x3C, 0x98, 0x32, 0xF8, 0x3F, 0x1D, 0x44, 216 | 0x31, 0xFC, 0x38, 0x0F, 0xA6, 0x2E, 0xFC, 0x07, 0x53, 0x0E, 0x10, 0x8A, 0xE1, 0x27, 0x84, 0x7A, 217 | 0xB8, 0x1F, 0x00, 0xE6, 0x58, 0x3C, 0x35, 0x78, 0x9C, 0x63, 0x60, 0xD8, 0xF2, 0x6F, 0x1F, 0x1B, 218 | 0x03, 0x03, 0xC3, 0x82, 0xFF, 0xFF, 0xFF, 0x9F, 0x67, 0x64, 0x60, 0xF8, 0xDD, 0xCF, 0x94, 0xF8, 219 | 0x8F, 0x97, 0x21, 0xE0, 0x3F, 0x0B, 0x03, 0xC3, 0xA3, 0xF9, 0x0C, 0x17, 0xE6, 0x03, 0xE5, 0x12, 220 | 0xFE, 0x33, 0x7C, 0xD2, 0x07, 0xD2, 0x0C, 0xFF, 0x59, 0xBF, 0xF1, 0x83, 0xE8, 0x3F, 0x1C, 0xDF, 221 | 0x79, 0x41, 0xF4, 0x2F, 0xAE, 0x1F, 0x3C, 0x20, 0xFA, 0x27, 0x37, 0x8C, 0x86, 0x89, 0x7F, 0xE3, 222 | 0x83, 0xA8, 0x83, 0xE9, 0x83, 0x99, 0x03, 0x36, 0xF7, 0x21, 0x90, 0xF3, 0xBB, 0x9E, 0x29, 0xF0, 223 | 0x1F, 0x1F, 0xC4, 0xDE, 0xFB, 0x40, 0x7B, 0x41, 0xEE, 0x60, 0x65, 0x60, 0x00, 0x00, 0x85, 0x20, 224 | 0x2F, 0x65, 0x78, 0x9C, 0xFB, 0xFF, 0xFF, 0xFF, 0xFB, 0x1A, 0x46, 0x86, 0xFF, 0xEF, 0xDF, 0xFD, 225 | 0xFB, 0x6F, 0xC7, 0xF0, 0x9F, 0x8D, 0x81, 0xE1, 0xE9, 0x7B, 0x46, 0x10, 0xA5, 0xF0, 0x9F, 0x1D, 226 | 0x44, 0x31, 0xFC, 0xE2, 0x06, 0x53, 0x3F, 0x78, 0x21, 0x3C, 0x1E, 0x88, 0x1C, 0x07, 0x90, 0x12, 227 | 0xB8, 0xFA, 0x9F, 0xF1, 0x3F, 0x08, 0xD8, 0x81, 0xB4, 0xDF, 0xAB, 0x66, 0x04, 0x6B, 0x07, 0x02, 228 | 0xE2, 0x29, 0x00, 0xF9, 0x5B, 0x2A, 0x4D, 0x78, 0x9C, 0x63, 0x60, 0xD8, 0xFA, 0x6F, 0x1F, 0x2B, 229 | 0x03, 0x03, 0xC3, 0x86, 0xFF, 0xFF, 0xFF, 0xEF, 0x07, 0xD2, 0x7F, 0xEA, 0x99, 0x8A, 0xFE, 0xF3, 230 | 0x30, 0x14, 0xFC, 0x67, 0x66, 0x60, 0xF8, 0x5C, 0xCF, 0xF0, 0xA0, 0x1E, 0x28, 0x56, 0xF0, 0x9E, 231 | 0xE1, 0x8B, 0x3C, 0x90, 0x16, 0xF8, 0xCF, 0xFC, 0x9D, 0x17, 0x48, 0x33, 0xFC, 0x65, 0xFF, 0xC9, 232 | 0x0D, 0xA2, 0xFF, 0x70, 0xFC, 0xE2, 0x02, 0xD1, 0xBF, 0xB9, 0x60, 0x34, 0x4C, 0x1C, 0xA6, 0x0E, 233 | 0xAA, 0x8F, 0x05, 0x66, 0x4E, 0xC1, 0x7F, 0x26, 0x06, 0x86, 0x4F, 0x40, 0xCE, 0x9F, 0x3C, 0xC6, 234 | 0xC4, 0x7F, 0x40, 0x45, 0x1B, 0x81, 0xF6, 0xDE, 0x67, 0x04, 0x4A, 0x6E, 0xFD, 0xF7, 0xEE, 0x3F, 235 | 0x1B, 0x03, 0x18, 0xFC, 0x5A, 0x0F, 0xA1, 0x0B, 0xFE, 0xB3, 0x42, 0x18, 0x21, 0x0C, 0x00, 0x49, 236 | 0xC0, 0x34, 0x18, 0x78, 0x9C, 0xFB, 0xFF, 0xFF, 0xFF, 0x7D, 0x2B, 0x06, 0x86, 0xFF, 0xEF, 0xDF, 237 | 0xFD, 0xFF, 0xCF, 0xC9, 0xF0, 0x9F, 0x8D, 0x41, 0xE1, 0x57, 0x3E, 0x88, 0x62, 0xD8, 0x70, 0x1F, 238 | 0x4C, 0x05, 0xFC, 0x67, 0x04, 0x51, 0x06, 0xFF, 0x99, 0x20, 0x3C, 0xB0, 0xE0, 0x81, 0xF3, 0x20, 239 | 0xCA, 0xF1, 0x8F, 0x3D, 0xC3, 0x7F, 0x20, 0x78, 0xCF, 0x0A, 0xD6, 0x2E, 0xCF, 0x00, 0x12, 0xFC, 240 | 0x94, 0x0F, 0xA6, 0x26, 0xBC, 0x07, 0x53, 0x02, 0xFF, 0x39, 0xC0, 0x1A, 0xBE, 0xCB, 0x83, 0xA9, 241 | 0x07, 0xEB, 0xC1, 0x54, 0xC2, 0x7F, 0x66, 0x10, 0xC5, 0xF0, 0x97, 0x1B, 0x00, 0xCA, 0x43, 0x33, 242 | 0x23, 0x78, 0x9C, 0x63, 0x60, 0xD8, 0xF6, 0x6F, 0x1F, 0x1B, 0x03, 0xC3, 0xC1, 0xFF, 0xFF, 0xFF, 243 | 0xDF, 0x67, 0x62, 0xF8, 0x13, 0xC7, 0xE0, 0xF0, 0x97, 0xD7, 0xE1, 0x3F, 0x0B, 0x03, 0xC3, 0xC3, 244 | 0xFA, 0x84, 0xFF, 0x0C, 0x0C, 0x0C, 0x13, 0xF6, 0x27, 0xFC, 0x67, 0x64, 0x60, 0x30, 0x08, 0x13, 245 | 0xF8, 0x2F, 0xC3, 0x00, 0x02, 0xDF, 0xFE, 0x7B, 0x82, 0x28, 0x87, 0xBF, 0xFF, 0xE7, 0x31, 0x03, 246 | 0xE9, 0x80, 0xDF, 0xFF, 0xF7, 0x33, 0x82, 0x04, 0xB6, 0xFE, 0xE7, 0x05, 0xCB, 0x7F, 0xED, 0x4F, 247 | 0x50, 0x03, 0x52, 0x0B, 0xCE, 0x3F, 0xA8, 0x07, 0x52, 0x0D, 0xF7, 0x27, 0xDC, 0x07, 0x52, 0x07, 248 | 0xF6, 0x0B, 0xFC, 0x8B, 0x65, 0x34, 0xF8, 0xED, 0xCF, 0x70, 0x09, 0x68, 0xD1, 0x7F, 0xA0, 0x85, 249 | 0x4B, 0xFF, 0xDD, 0xD7, 0x64, 0x00, 0x00, 0x93, 0xE3, 0x2F, 0x8E, 0x78, 0x9C, 0xFB, 0xF6, 0x1F, 250 | 0x0C, 0x58, 0x9F, 0xBE, 0x7B, 0xF7, 0xFF, 0xFD, 0xBB, 0x77, 0xAC, 0x0C, 0x0C, 0x0C, 0xBF, 0xB9, 251 | 0x18, 0xC0, 0x60, 0x40, 0x68, 0x00, 0x62, 0x47, 0x1D, 0xD6, 0x78, 0x9C, 0xFB, 0xC2, 0xCF, 0xC0, 252 | 0xC0, 0x70, 0x60, 0xFE, 0x17, 0xAA, 0x52, 0xF2, 0x40, 0xEA, 0x42, 0xFF, 0x27, 0x7B, 0x20, 0xF5, 253 | 0x21, 0xFF, 0xC2, 0x7E, 0x20, 0xF5, 0x5D, 0xDE, 0xE1, 0xBF, 0x16, 0x43, 0xE3, 0x7F, 0x0E, 0x86, 254 | 0x6F, 0xFF, 0xFF, 0xFF, 0x9F, 0xCF, 0xC0, 0xA0, 0x70, 0xF3, 0xFF, 0x5A, 0x66, 0x06, 0x00, 0xD4, 255 | 0xEB, 0x2E, 0x6B, 0x78, 0x9C, 0xFB, 0x2E, 0xCF, 0x00, 0x04, 0x9F, 0xF2, 0x3F, 0xE6, 0x83, 0xE8, 256 | 0xEF, 0xF2, 0x1B, 0xF6, 0x83, 0xE8, 0xBF, 0x5C, 0x09, 0xFF, 0x19, 0x19, 0x18, 0x14, 0xFE, 0xB3, 257 | 0x30, 0xFC, 0x67, 0x63, 0x60, 0x68, 0x78, 0xCF, 0xC0, 0xF0, 0x8B, 0x87, 0x81, 0xE1, 0xC2, 0x7C, 258 | 0x06, 0x86, 0x2F, 0x40, 0x0D, 0x9F, 0xED, 0x19, 0x18, 0x1E, 0xD4, 0x33, 0x30, 0xFC, 0xE0, 0x05, 259 | 0xCA, 0x9D, 0x07, 0x2A, 0x67, 0x67, 0x60, 0x30, 0xF8, 0xCF, 0x64, 0x00, 0xD2, 0x03, 0xE4, 0x4C, 260 | 0x00, 0x9B, 0xF1, 0x9D, 0xE7, 0x01, 0xD8, 0xCC, 0x8F, 0xFA, 0x9F, 0xF9, 0x41, 0xF4, 0x86, 0xFA, 261 | 0x9F, 0x5C, 0x20, 0x3A, 0xE0, 0xFE, 0x3F, 0x16, 0x10, 0xCD, 0xF0, 0xFF, 0x3D, 0x98, 0x62, 0xF8, 262 | 0xD5, 0x0F, 0xA1, 0xBF, 0xE8, 0x03, 0x09, 0x00, 0x27, 0xD2, 0x27, 0xF1, 0x78, 0x9C, 0x35, 0x8E, 263 | 0xD9, 0x0D, 0x82, 0x40, 0x00, 0x44, 0x9F, 0x07, 0x8A, 0x06, 0x8F, 0x0E, 0xA0, 0x03, 0x4B, 0xC0, 264 | 0x02, 0x4C, 0xB4, 0x03, 0xE8, 0x40, 0x3B, 0xC0, 0x0E, 0xA4, 0x03, 0xEC, 0x60, 0xE9, 0x80, 0x16, 265 | 0xE8, 0x00, 0x3A, 0xE0, 0x34, 0xA0, 0x28, 0xEB, 0x92, 0xE8, 0xCF, 0x64, 0x92, 0xC9, 0xBC, 0x99, 266 | 0xD2, 0x06, 0x7A, 0x0D, 0xE2, 0x5B, 0x7A, 0x06, 0x4B, 0x2E, 0x21, 0x3F, 0xDE, 0x05, 0x5C, 0xE4, 267 | 0x1A, 0xEA, 0x8D, 0x9B, 0x41, 0x28, 0x77, 0xD0, 0x1A, 0x96, 0x1C, 0x91, 0x07, 0x1E, 0x74, 0xFA, 268 | 0x50, 0xA9, 0x0F, 0x11, 0x48, 0x8D, 0x6E, 0xC1, 0x53, 0x97, 0x0C, 0x69, 0x63, 0xF0, 0x99, 0x74, 269 | 0x53, 0x37, 0x81, 0x6A, 0x63, 0x65, 0x34, 0xBA, 0x1F, 0x28, 0x9E, 0xED, 0x0A, 0xCA, 0x55, 0xEC, 270 | 0x28, 0x92, 0x17, 0x3A, 0xA4, 0x66, 0x61, 0xC2, 0x35, 0xCA, 0x4D, 0x7C, 0xA7, 0x56, 0x2B, 0xFB, 271 | 0xAC, 0x32, 0x38, 0x89, 0x46, 0x6D, 0x23, 0xDB, 0x39, 0xDB, 0xE4, 0x35, 0x53, 0xF6, 0xDD, 0x8F, 272 | 0x7F, 0x42, 0x9B, 0xFD, 0x85, 0x87, 0x22, 0x52, 0x89, 0xC1, 0x16, 0x8A, 0x48, 0xAA, 0x0E, 0x7D, 273 | 0x01, 0x27, 0x82, 0x46, 0xE4, 0x78, 0x9C, 0x1D, 0xCC, 0xE1, 0x09, 0x82, 0x60, 0x10, 0x87, 0xF1, 274 | 0xC7, 0xB0, 0x08, 0x53, 0x70, 0x82, 0x56, 0xA8, 0x4D, 0x72, 0x13, 0x1B, 0xA1, 0x0D, 0xDE, 0x46, 275 | 0x68, 0x03, 0xDB, 0xA0, 0x36, 0xA8, 0x0D, 0xC2, 0x09, 0x44, 0xAC, 0x20, 0xD2, 0xFE, 0xDD, 0xBD, 276 | 0x70, 0xF0, 0xFB, 0x70, 0xCF, 0xDD, 0xFD, 0x01, 0x6C, 0xB5, 0xB4, 0x81, 0x6B, 0x07, 0x9F, 0x0D, 277 | 0xBC, 0x77, 0xD0, 0x5E, 0x28, 0x95, 0x41, 0xA5, 0xF9, 0x49, 0x89, 0x45, 0xDF, 0xF5, 0xB3, 0x36, 278 | 0xE8, 0x9B, 0x29, 0x77, 0xF7, 0xD2, 0xCC, 0x65, 0x0C, 0x11, 0xA6, 0x26, 0x72, 0x90, 0x52, 0x77, 279 | 0x08, 0x63, 0x11, 0xD7, 0xC5, 0x10, 0x62, 0x9E, 0x1E, 0xFD, 0xA0, 0xB7, 0xEA, 0x97, 0xFB, 0x3B, 280 | 0x78, 0xD5, 0xF6, 0x7E, 0x01, 0x67, 0x25, 0xED, 0xCD, 0x9A, 0x52, 0xAB, 0x3F, 0x26, 0x7D, 0x2E, 281 | 0x45, 0x78, 0x9C, 0xFB, 0xA1, 0xCF, 0xC0, 0xC0, 0xA0, 0xF0, 0x9F, 0xE3, 0xE1, 0x7A, 0x20, 0xBD, 282 | 0xE0, 0x3D, 0x43, 0xC1, 0x7F, 0x26, 0x06, 0x86, 0x4F, 0xF9, 0x0C, 0x0C, 0xFF, 0xB8, 0x18, 0x18, 283 | 0x7E, 0xF1, 0x32, 0x30, 0x7C, 0xD5, 0x67, 0x30, 0xF8, 0xCF, 0xCA, 0xC0, 0x70, 0x61, 0x3D, 0xC3, 284 | 0x86, 0xF3, 0x40, 0x35, 0x0E, 0xFF, 0x99, 0x3F, 0xFB, 0x03, 0x69, 0x86, 0xDF, 0xDC, 0xBF, 0xB9, 285 | 0x41, 0xF4, 0xE7, 0x7A, 0x90, 0x16, 0xA0, 0xE6, 0xFF, 0xF3, 0x41, 0x14, 0xD0, 0x30, 0x79, 0x30, 286 | 0xCD, 0xF0, 0x9B, 0x8B, 0x0C, 0x1A, 0x00, 0x6D, 0x9B, 0x21, 0x47, 0x78, 0x9C, 0xFB, 0xF3, 0x1F, 287 | 0x04, 0x38, 0x5F, 0xBF, 0x7B, 0xF7, 0xEE, 0xDF, 0x7F, 0x4E, 0x06, 0x20, 0x98, 0xF0, 0x9F, 0x11, 288 | 0x44, 0x7D, 0xC9, 0x07, 0x91, 0x02, 0xFF, 0xB8, 0x41, 0xD4, 0x82, 0xF7, 0x60, 0xB1, 0xAF, 0xF1, 289 | 0x10, 0x31, 0x2E, 0x64, 0x31, 0x7F, 0x88, 0x18, 0x58, 0xEF, 0x86, 0xF7, 0x20, 0x92, 0xE1, 0x1B, 290 | 0x58, 0x4C, 0x01, 0x62, 0xDE, 0x81, 0xFB, 0x60, 0xB1, 0xEF, 0xF6, 0x60, 0xEA, 0xDF, 0x7B, 0xA0, 291 | 0x4D, 0xEF, 0xF8, 0xC0, 0xB6, 0xFE, 0xE7, 0x07, 0x00, 0x9B, 0xAF, 0x2A, 0x4C, 0x78, 0x9C, 0xFB, 292 | 0xFC, 0x3F, 0xFF, 0xF3, 0xFD, 0xD8, 0xCF, 0xFC, 0x0C, 0xE4, 0x23, 0xA0, 0xF6, 0xFF, 0xF9, 0x00, 293 | 0x42, 0x78, 0x1D, 0x49, 0x78, 0x9C, 0xFB, 0xCA, 0xCB, 0x00, 0x04, 0x0F, 0xEC, 0x41, 0xE4, 0x84, 294 | 0xF9, 0x20, 0xD2, 0xE0, 0x3D, 0x88, 0x64, 0xF8, 0xCB, 0x02, 0x22, 0xBF, 0x73, 0x81, 0xC8, 0x8F, 295 | 0xF2, 0x20, 0x72, 0x43, 0x3E, 0x88, 0x0C, 0x38, 0x0F, 0x96, 0xFE, 0xCF, 0x04, 0x22, 0x7F, 0x72, 296 | 0x80, 0xC8, 0x2F, 0x7C, 0x20, 0xF2, 0x82, 0x3F, 0x88, 0x6C, 0x58, 0x0F, 0x22, 0x15, 0xFE, 0x83, 297 | 0x15, 0xFD, 0x61, 0x03, 0x91, 0xDF, 0x78, 0x40, 0xE4, 0x07, 0x7D, 0x10, 0xB9, 0xA0, 0x1F, 0x44, 298 | 0x3A, 0xDC, 0x67, 0x00, 0x00, 0x22, 0x99, 0x15, 0xA2, 0x78, 0x9C, 0xFB, 0xF7, 0x9F, 0xFB, 0xCE, 299 | 0x3F, 0x6E, 0x86, 0x1F, 0xE4, 0x23, 0xA0, 0xF6, 0x7F, 0xFF, 0xB9, 0x01, 0x04, 0x53, 0x1C, 0x17, 300 | 0x78, 0x9C, 0x01, 0x2D, 0x00, 0xD2, 0xFF, 0x00, 0x00, 0xFC, 0x02, 0x00, 0x00, 0x20, 0xFF, 0x09, 301 | 0x00, 0x00, 0x90, 0xFF, 0x0F, 0x00, 0x00, 0xF0, 0xAF, 0x6F, 0x00, 0x00, 0xF6, 0x39, 0xCF, 0x00, 302 | 0x00, 0xFC, 0x03, 0xFD, 0x03, 0x30, 0xDF, 0x00, 0xF7, 0x09, 0x90, 0x7F, 0x00, 0xF1, 0x0F, 0xF0, 303 | 0x1F, 0x00, 0xA0, 0x6F, 0x4B, 0x8F, 0x10, 0x0C, 0x78, 0x9C, 0xFB, 0xFF, 0x1F, 0x08, 0xEC, 0xEF, 304 | 0xDC, 0x05, 0x02, 0x5B, 0x00, 0x45, 0x0E, 0x09, 0xC8, 0x78, 0x9C, 0xBB, 0xB0, 0x9F, 0x41, 0xE1, 305 | 0x3F, 0x1B, 0xC3, 0x57, 0x7D, 0x86, 0x86, 0x5C, 0x00, 0x22, 0x35, 0x04, 0xC6, 0x78, 0x9C, 0x63, 306 | 0x98, 0xF4, 0xF7, 0x3C, 0x3B, 0x43, 0xC0, 0xFF, 0xFB, 0xFF, 0xCE, 0x33, 0x7C, 0xEC, 0x67, 0x70, 307 | 0xF8, 0xCF, 0x36, 0x99, 0x93, 0x81, 0xE1, 0x27, 0x17, 0x03, 0x10, 0x7C, 0xE7, 0x61, 0x98, 0xFC, 308 | 0xF7, 0xFF, 0x7F, 0x9E, 0x86, 0xFF, 0x6B, 0x67, 0xFE, 0xE1, 0xF9, 0xE2, 0x0F, 0x12, 0x01, 0xC9, 309 | 0x7C, 0xE7, 0xF9, 0xC5, 0xCD, 0xC0, 0xF0, 0x9B, 0xE7, 0x5B, 0x3D, 0xC3, 0xE1, 0xFF, 0x3C, 0x07, 310 | 0xFE, 0xFF, 0xFF, 0xFF, 0x87, 0x8F, 0xE1, 0xC6, 0x7B, 0xEB, 0x2F, 0xFA, 0x00, 0x67, 0xF5, 0x24, 311 | 0xB6, 0x78, 0x9C, 0xFB, 0xC2, 0xCF, 0x00, 0x04, 0x5F, 0x08, 0x90, 0x37, 0xDE, 0x5B, 0x31, 0x7C, 312 | 0xB9, 0xFF, 0xFF, 0xFF, 0x7F, 0x96, 0x2F, 0xEF, 0x59, 0x0D, 0xFE, 0xC8, 0x7D, 0xB1, 0x67, 0x60, 313 | 0xF8, 0x98, 0x0F, 0x92, 0x5D, 0xB0, 0x1F, 0x44, 0x16, 0xDC, 0x07, 0x91, 0x09, 0xEF, 0x11, 0x6C, 314 | 0xA0, 0x38, 0x44, 0xCD, 0x7B, 0x56, 0x05, 0xA0, 0xFA, 0x73, 0x60, 0xBD, 0x3C, 0x20, 0x73, 0x00, 315 | 0x65, 0x7C, 0x2C, 0xE3, 0x78, 0x9C, 0x63, 0x28, 0xF8, 0x73, 0x9E, 0x9D, 0x41, 0xE1, 0xEF, 0xFB, 316 | 0xFF, 0xE7, 0x19, 0x0E, 0x9C, 0x67, 0x72, 0xF8, 0xC7, 0xF9, 0x55, 0x9E, 0x81, 0xE1, 0x0B, 0xFF, 317 | 0x2F, 0x4E, 0x06, 0x86, 0x03, 0x3A, 0x7F, 0xD8, 0x18, 0x80, 0xE0, 0x2F, 0x84, 0x64, 0x07, 0x91, 318 | 0x20, 0xF1, 0x04, 0x31, 0x90, 0x9A, 0xCF, 0xF2, 0x17, 0xCE, 0x33, 0x19, 0xFC, 0xE5, 0x54, 0xF8, 319 | 0xF7, 0xFE, 0xDF, 0x7E, 0x06, 0x86, 0xC6, 0xBF, 0xE7, 0xD9, 0x18, 0x00, 0x7F, 0x66, 0x1C, 0x97, 320 | 0x78, 0x9C, 0x63, 0x60, 0x60, 0x60, 0xF8, 0x10, 0xCF, 0x80, 0x9F, 0x9C, 0xF8, 0x6F, 0xEE, 0xC7, 321 | 0x78, 0x83, 0x7F, 0xFF, 0xFF, 0xFF, 0x8B, 0xBF, 0x70, 0x9F, 0xD9, 0xE1, 0x6F, 0xFC, 0x57, 0x7D, 322 | 0x06, 0x86, 0x4F, 0xF1, 0xBF, 0xB8, 0x41, 0xB2, 0x7F, 0xD8, 0x41, 0xE4, 0x5F, 0x30, 0xF9, 0x87, 323 | 0x03, 0x44, 0x42, 0xC4, 0x21, 0x6A, 0x20, 0xEA, 0x41, 0x7A, 0xDF, 0xC5, 0x33, 0x2C, 0xFC, 0x37, 324 | 0xF7, 0x60, 0x3C, 0x00, 0xF3, 0x83, 0x2E, 0xDB, 0x78, 0x9C, 0x63, 0x48, 0xF8, 0x73, 0x9E, 0x9D, 325 | 0x41, 0xE0, 0xCF, 0xFB, 0xFF, 0xE7, 0x19, 0x16, 0x9C, 0x67, 0x72, 0xF8, 0xC7, 0xF1, 0x59, 0x8E, 326 | 0x81, 0xE1, 0x0B, 0xFF, 0x4F, 0x4E, 0x06, 0x86, 0x0F, 0xF6, 0x7F, 0xFE, 0x03, 0x81, 0xFF, 0xDF, 327 | 0x7B, 0x77, 0xEF, 0xDE, 0xF5, 0xFD, 0xC3, 0xCE, 0x00, 0x04, 0xBF, 0xB8, 0x41, 0xE4, 0x57, 0x7B, 328 | 0x06, 0x06, 0x05, 0x86, 0x0B, 0xEF, 0x59, 0x18, 0xBE, 0xF1, 0x0A, 0xFC, 0x7D, 0xFF, 0xF7, 0x3F, 329 | 0x2B, 0x43, 0xC1, 0x9F, 0xFB, 0x9A, 0x0C, 0x00, 0xB2, 0x9F, 0x23, 0x91, 0x78, 0x9C, 0x63, 0x60, 330 | 0xD8, 0xFC, 0x9F, 0x93, 0xC1, 0xE1, 0xFF, 0x7F, 0x2E, 0x86, 0x0B, 0xE7, 0x19, 0x19, 0x18, 0x3E, 331 | 0xDA, 0x33, 0x30, 0x30, 0x7C, 0x92, 0x07, 0x12, 0x9F, 0x81, 0xC4, 0x97, 0xFF, 0xFF, 0xDF, 0x33, 332 | 0x1C, 0xFE, 0x73, 0x7E, 0x0D, 0x84, 0x4B, 0x3A, 0x01, 0x00, 0xED, 0xA5, 0x1B, 0xD8, 0x78, 0x9C, 333 | 0x63, 0x58, 0xF4, 0x6F, 0xDE, 0xC1, 0x78, 0x83, 0xFF, 0xFF, 0xFF, 0xBF, 0x8B, 0xBF, 0x70, 0x9F, 334 | 0xD9, 0xE1, 0x6F, 0xFC, 0x57, 0x7D, 0x06, 0x86, 0x4F, 0xF1, 0xBF, 0xB8, 0x19, 0x18, 0x3E, 0xC4, 335 | 0xFF, 0xE1, 0x00, 0x91, 0x7F, 0xD9, 0x11, 0xEC, 0x9F, 0x60, 0x71, 0x88, 0x1A, 0x88, 0x7A, 0x85, 336 | 0x7F, 0xFF, 0xFF, 0xFF, 0x8B, 0x67, 0x58, 0xF8, 0x6F, 0xDE, 0xC7, 0x78, 0x06, 0x20, 0xF8, 0x68, 337 | 0xAF, 0xC0, 0xCC, 0xC0, 0xF0, 0x8D, 0xFF, 0x41, 0x3E, 0x43, 0xC0, 0x7F, 0xCE, 0x84, 0xFF, 0xEF, 338 | 0xFF, 0x9F, 0x67, 0x60, 0x98, 0xF4, 0xF7, 0x3C, 0x1B, 0x03, 0x00, 0x24, 0x2B, 0x32, 0x84, 0x78, 339 | 0x9C, 0xFB, 0xC2, 0xCF, 0x00, 0x04, 0x5F, 0x08, 0x90, 0xC7, 0xFE, 0xFB, 0x30, 0x7C, 0xD9, 0xFF, 340 | 0xFF, 0xFF, 0x7F, 0x96, 0x2F, 0xFF, 0xD9, 0x0C, 0xFE, 0xF2, 0x7C, 0xF1, 0x67, 0x60, 0xF8, 0xCA, 341 | 0x0F, 0x92, 0xFD, 0x24, 0x4F, 0x2A, 0x09, 0x00, 0xE7, 0x02, 0x26, 0x08, 0x78, 0x9C, 0x2B, 0x60, 342 | 0xFF, 0x1C, 0x7F, 0x51, 0x8F, 0x01, 0x08, 0x3E, 0xEA, 0xE3, 0x82, 0x00, 0x27, 0x7C, 0x11, 0x69, 343 | 0x78, 0x9C, 0x63, 0x68, 0x60, 0x63, 0xF8, 0xA6, 0xCF, 0xF0, 0x98, 0x97, 0x01, 0x02, 0x3E, 0xF3, 344 | 0x93, 0x80, 0x7E, 0xF2, 0xFD, 0xF9, 0xCF, 0xF1, 0xAB, 0x97, 0x01, 0x00, 0xA2, 0x52, 0x16, 0x4B, 345 | 0x78, 0x9C, 0xFB, 0xC2, 0xCF, 0x00, 0x04, 0x5F, 0x08, 0x91, 0x06, 0xFF, 0x39, 0x81, 0xE4, 0xE7, 346 | 0xF9, 0x40, 0xB6, 0xC2, 0x3F, 0x2E, 0x20, 0xF9, 0x68, 0x3F, 0x50, 0x5C, 0xFE, 0x1F, 0x0F, 0x90, 347 | 0x3C, 0xFF, 0x9F, 0x09, 0x48, 0xFE, 0xFF, 0xCF, 0x0D, 0x24, 0xEF, 0x7F, 0xA9, 0x07, 0x89, 0x17, 348 | 0xFC, 0x67, 0x06, 0xE9, 0xFA, 0x25, 0x07, 0x22, 0x2F, 0xEC, 0x07, 0x91, 0x0A, 0xFF, 0x39, 0x40, 349 | 0xA6, 0x7D, 0xF3, 0x07, 0x00, 0x78, 0x03, 0x26, 0x7A, 0x78, 0x9C, 0xFB, 0xA8, 0xFF, 0x91, 0x08, 350 | 0x08, 0x00, 0xA8, 0x38, 0x15, 0x61, 0x78, 0x9C, 0xFB, 0xC2, 0x7B, 0xE3, 0xBD, 0x35, 0xC3, 0xF5, 351 | 0xFF, 0x3E, 0x0C, 0x5F, 0xEE, 0xFD, 0xFF, 0xFF, 0xFF, 0x0A, 0x10, 0xB3, 0x7E, 0xB9, 0xCF, 0xEC, 352 | 0xF0, 0xEF, 0x3F, 0x9B, 0xC2, 0x1F, 0xBE, 0x2F, 0xFA, 0x0C, 0x0C, 0xDF, 0xEA, 0x19, 0x18, 0x3E, 353 | 0xCB, 0x7F, 0xE1, 0x07, 0x92, 0x40, 0xDE, 0x47, 0x7B, 0x30, 0x4B, 0x9E, 0x81, 0xE1, 0x03, 0x95, 354 | 0x58, 0x00, 0x46, 0x37, 0x34, 0x2D, 0x78, 0x9C, 0xFB, 0xC2, 0x7B, 0xEC, 0xBF, 0x0F, 0xC3, 0x97, 355 | 0x7D, 0xFF, 0xFF, 0xFF, 0x67, 0xF9, 0xF2, 0x9F, 0xCD, 0xE0, 0x2F, 0xCF, 0x17, 0x7F, 0x06, 0x86, 356 | 0xAF, 0xFC, 0x5F, 0xF8, 0x19, 0x18, 0x3E, 0xC9, 0x93, 0x4A, 0x02, 0x00, 0x8D, 0x43, 0x1F, 0xF3, 357 | 0x78, 0x9C, 0x63, 0x48, 0x78, 0x73, 0x5F, 0x82, 0x81, 0x41, 0xE0, 0xCF, 0xFB, 0x7F, 0xEF, 0x99, 358 | 0x19, 0x36, 0xBC, 0x67, 0x51, 0xF8, 0x23, 0xC7, 0xF0, 0x45, 0x9F, 0x81, 0xE1, 0x42, 0x3F, 0xC3, 359 | 0x2F, 0x2E, 0x06, 0x86, 0x84, 0xF7, 0x0C, 0x7F, 0xD8, 0x19, 0x18, 0x0C, 0xFE, 0x33, 0xFE, 0x63, 360 | 0x63, 0x60, 0x50, 0xF8, 0xCF, 0xF8, 0x17, 0xCC, 0x83, 0xC9, 0x7D, 0x85, 0xA8, 0x3C, 0x70, 0x9F, 361 | 0x59, 0xE0, 0xB7, 0x1C, 0x83, 0xC0, 0x5F, 0xB0, 0x29, 0x0C, 0x05, 0x7F, 0x40, 0x66, 0x02, 0x00, 362 | 0x3D, 0x33, 0x22, 0x5B, 0x78, 0x9C, 0xFB, 0x22, 0x73, 0xE3, 0xBD, 0x16, 0xC3, 0x97, 0x7B, 0xFF, 363 | 0xFF, 0xFF, 0x67, 0xF9, 0x72, 0x9F, 0xC5, 0xE0, 0x2F, 0xDF, 0x17, 0x7D, 0x06, 0x86, 0x4F, 0xF9, 364 | 0x5F, 0xF8, 0x19, 0x18, 0x36, 0xAC, 0x07, 0x91, 0x0D, 0xE7, 0x41, 0x64, 0xC2, 0x7D, 0x10, 0x59, 365 | 0x00, 0x66, 0x2F, 0x58, 0xFF, 0x45, 0x9E, 0x81, 0xE1, 0x63, 0xFE, 0x97, 0xF3, 0x4C, 0x0A, 0x40, 366 | 0xF5, 0xEF, 0xDF, 0xFF, 0x03, 0xEA, 0x95, 0xBF, 0x09, 0x32, 0x07, 0x28, 0xCB, 0x80, 0x93, 0x04, 367 | 0x00, 0xCA, 0x48, 0x2B, 0x3F, 0x78, 0x9C, 0x63, 0x58, 0xF4, 0x6F, 0xDE, 0x45, 0x7F, 0x83, 0xFF, 368 | 0xEF, 0xFF, 0xFD, 0xF3, 0x7F, 0x70, 0x9F, 0xD9, 0xE0, 0xAF, 0xFF, 0x37, 0x7D, 0x06, 0x86, 0x8F, 369 | 0xFE, 0xBF, 0xB8, 0x19, 0x18, 0x3E, 0xF8, 0xFF, 0xE1, 0x00, 0x91, 0x7F, 0xD9, 0x11, 0x6C, 0x88, 370 | 0xF8, 0x57, 0xB0, 0x9A, 0x0B, 0xF7, 0x99, 0x14, 0xFE, 0x40, 0xF5, 0x32, 0x00, 0xCD, 0xF9, 0xE8, 371 | 0xCF, 0xC0, 0x00, 0x92, 0xC5, 0x45, 0x02, 0x00, 0xB1, 0xEF, 0x2C, 0x5E, 0x78, 0x9C, 0xFB, 0x22, 372 | 0xF7, 0x4A, 0xFE, 0xCB, 0xFD, 0xFF, 0xF2, 0x5F, 0xFE, 0x9B, 0x33, 0x7F, 0xF1, 0x67, 0x60, 0xF8, 373 | 0xC2, 0x4F, 0x18, 0x03, 0x00, 0x3B, 0x79, 0x11, 0x98, 0x78, 0x9C, 0x01, 0x4E, 0x00, 0xB1, 0xFF, 374 | 0x00, 0xB3, 0xFE, 0xBE, 0x03, 0x00, 0x70, 0xFF, 0xEF, 0xFF, 0x7F, 0x00, 0xF2, 0x7F, 0x00, 0xA1, 375 | 0xFF, 0x02, 0xF5, 0x0F, 0x00, 0x00, 0xFE, 0x07, 0xF3, 0x5F, 0x00, 0x00, 0x21, 0x01, 0xA0, 0xFF, 376 | 0xAE, 0x16, 0x00, 0x00, 0x00, 0xC5, 0xFF, 0xFF, 0x2B, 0x00, 0x00, 0x00, 0x41, 0xE9, 0xEF, 0x02, 377 | 0x54, 0x02, 0x00, 0x10, 0xFD, 0x08, 0xFB, 0x0A, 0x00, 0x00, 0xFA, 0x09, 0xF5, 0x7F, 0x00, 0x50, 378 | 0xFF, 0x06, 0x80, 0xFF, 0xDF, 0xFF, 0xBF, 0x00, 0x00, 0xA4, 0xFE, 0xCE, 0x06, 0x00, 0x2B, 0x78, 379 | 0x21, 0x19, 0x78, 0x9C, 0x63, 0xF8, 0xCE, 0xC3, 0xC0, 0x00, 0xC5, 0xFF, 0xFE, 0xFF, 0xB7, 0x3F, 380 | 0xF5, 0xF7, 0xBC, 0x0E, 0x03, 0x92, 0x18, 0x56, 0xFC, 0x55, 0x9E, 0x81, 0xE1, 0xE3, 0x7F, 0x7F, 381 | 0x06, 0x87, 0x3F, 0xB6, 0x00, 0xDF, 0xF6, 0x15, 0xEB, 0x78, 0x9C, 0xFB, 0xCA, 0xC7, 0xC0, 0xF0, 382 | 0x59, 0xFE, 0x2B, 0xF1, 0x24, 0x3F, 0x88, 0xFC, 0xAC, 0xCF, 0xC0, 0xF0, 0x4D, 0xFE, 0xC3, 0x7E, 383 | 0xC6, 0x84, 0xFF, 0xF2, 0x05, 0xFF, 0xFF, 0xFF, 0xFF, 0x2B, 0xCF, 0x70, 0xF4, 0x7F, 0xED, 0x27, 384 | 0x79, 0x00, 0x66, 0xE4, 0x1F, 0xFF, 0x78, 0x9C, 0xFB, 0xC6, 0xCB, 0xC0, 0x70, 0xA1, 0xFE, 0xA3, 385 | 0x3D, 0x03, 0xC3, 0x27, 0xF9, 0x05, 0xFD, 0x0C, 0x0C, 0xDF, 0xB9, 0x1D, 0xDE, 0x33, 0x30, 0xFC, 386 | 0x61, 0x65, 0xF8, 0xC7, 0xAC, 0xF0, 0x9F, 0x81, 0xE1, 0x27, 0x47, 0xC1, 0x7A, 0x06, 0x86, 0xCF, 387 | 0x7C, 0x07, 0xFC, 0x81, 0xCA, 0xEC, 0x3F, 0xF1, 0x31, 0x30, 0x14, 0xCC, 0xFF, 0xCE, 0xC1, 0xC0, 388 | 0x20, 0xF0, 0xFE, 0x0F, 0x13, 0x03, 0x03, 0xC3, 0xEF, 0xFB, 0x40, 0x82, 0xE1, 0x6B, 0x3D, 0x88, 389 | 0xFC, 0x20, 0xCF, 0xC0, 0x00, 0x00, 0x50, 0x72, 0x19, 0xBC, 0x78, 0x9C, 0x0D, 0xCC, 0x6D, 0x0D, 390 | 0x82, 0x50, 0x18, 0x40, 0xE1, 0xE3, 0x10, 0x07, 0x88, 0x1F, 0x0D, 0xB4, 0x81, 0x26, 0x60, 0x34, 391 | 0xC0, 0x06, 0xDA, 0x00, 0x1A, 0x58, 0xC1, 0x06, 0xD2, 0x00, 0x1A, 0xDC, 0x08, 0x44, 0x80, 0x04, 392 | 0xEE, 0x6E, 0x5E, 0x87, 0x88, 0xF2, 0xFA, 0xFE, 0x7B, 0xB6, 0xB3, 0x9D, 0xD7, 0x1A, 0xC6, 0x05, 393 | 0x47, 0x99, 0xD9, 0x03, 0xC8, 0x92, 0xA2, 0xA1, 0xCE, 0x39, 0xC9, 0x8E, 0xFA, 0x4A, 0x61, 0x28, 394 | 0x9B, 0x33, 0x9A, 0xF6, 0x82, 0x4D, 0x2A, 0x9E, 0x2B, 0xF8, 0x79, 0x2E, 0x9C, 0xE8, 0x43, 0x78, 395 | 0x07, 0x83, 0x37, 0xF8, 0xE3, 0x1C, 0x5C, 0xFC, 0xC0, 0x45, 0x02, 0xD8, 0xEC, 0x4E, 0x97, 0x18, 396 | 0x55, 0xD9, 0x66, 0xDC, 0x4C, 0xAE, 0xBA, 0xC8, 0x86, 0x54, 0x8F, 0xB0, 0x95, 0x08, 0xA6, 0x58, 397 | 0xC5, 0xD7, 0x87, 0x4F, 0x00, 0x7F, 0x41, 0x57, 0x2C, 0x89, 0x78, 0x9C, 0x0D, 0xCB, 0xC1, 0x0D, 398 | 0x80, 0x20, 0x10, 0x44, 0xD1, 0x8F, 0x47, 0xD9, 0xE2, 0xE8, 0x80, 0x12, 0xA4, 0x03, 0x4B, 0xA0, 399 | 0xC6, 0xAD, 0x80, 0x64, 0xBD, 0x81, 0x06, 0xE7, 0x38, 0x3F, 0x6F, 0xBC, 0xC3, 0x53, 0xCB, 0x3E, 400 | 0xF8, 0x32, 0xD3, 0xDA, 0x48, 0xF8, 0x15, 0x15, 0xCA, 0x58, 0x27, 0x30, 0x15, 0x24, 0xA4, 0xE0, 401 | 0x95, 0xA2, 0x8D, 0x69, 0x10, 0xD5, 0x6F, 0x85, 0xAC, 0x63, 0xDB, 0x89, 0x65, 0xA1, 0x19, 0xFD, 402 | 0x07, 0xB3, 0x82, 0x1E, 0xA7, 0x78, 0x9C, 0xFB, 0xC1, 0xC7, 0xC0, 0xF0, 0x31, 0xFE, 0x93, 0x3D, 403 | 0x03, 0xC3, 0x37, 0xFE, 0x0B, 0xF3, 0x19, 0x18, 0x7E, 0x73, 0x15, 0xBC, 0x67, 0x60, 0xF8, 0xCF, 404 | 0x22, 0xF0, 0x9F, 0x25, 0x00, 0xC8, 0xF8, 0xCD, 0xB9, 0xA0, 0x9F, 0x81, 0xE1, 0x2B, 0xDF, 0x07, 405 | 0xA0, 0x82, 0x07, 0xFE, 0x5F, 0x78, 0x19, 0x18, 0x26, 0xAC, 0xFF, 0xC9, 0xCE, 0xC0, 0x60, 0xF0, 406 | 0xFF, 0x1F, 0x23, 0x03, 0x03, 0xC3, 0xDF, 0xF3, 0x40, 0x82, 0xE1, 0x7B, 0x3E, 0x88, 0xFC, 0x24, 407 | 0x0F, 0x22, 0xBF, 0x72, 0x81, 0xC8, 0x3F, 0xAC, 0x40, 0xA2, 0xF1, 0x3E, 0x90, 0xF8, 0xF0, 0xDF, 408 | 0x1F, 0x48, 0x5E, 0x38, 0xCF, 0x02, 0x24, 0x01, 0x1F, 0xFA, 0x22, 0x3B, 0x78, 0x9C, 0xFB, 0xFB, 409 | 0x1F, 0x08, 0x98, 0x5F, 0xBF, 0x7B, 0xF7, 0xEF, 0x3F, 0x13, 0x03, 0x03, 0xC3, 0xA7, 0x7A, 0x20, 410 | 0xC1, 0xF0, 0x97, 0x1B, 0x48, 0x2C, 0x78, 0xCF, 0x08, 0x24, 0xBF, 0xD9, 0x03, 0x09, 0x83, 0xFF, 411 | 0x6C, 0x40, 0xF2, 0xE1, 0x7A, 0x90, 0xDC, 0x6F, 0x5E, 0x20, 0xD1, 0x00, 0x56, 0xFC, 0x25, 0x1E, 412 | 0x24, 0xF0, 0xEF, 0xFE, 0xDD, 0xBB, 0x77, 0xD9, 0xFF, 0x81, 0xCC, 0xE1, 0x04, 0x00, 0xE5, 0x9C, 413 | 0x1F, 0x20, 0x78, 0x9C, 0x63, 0x60, 0x10, 0x38, 0xC1, 0xC0, 0xC0, 0xF0, 0x68, 0x3F, 0x90, 0xF8, 414 | 0xCB, 0xC9, 0xC0, 0xE0, 0xF0, 0x1F, 0xC8, 0x68, 0x00, 0xF1, 0x26, 0xAC, 0x07, 0x12, 0x0B, 0x10, 415 | 0xC4, 0x7C, 0x20, 0x71, 0x21, 0x9F, 0x81, 0x41, 0xE0, 0xA7, 0x1C, 0x03, 0xC3, 0xE7, 0xF7, 0xCC, 416 | 0x40, 0x4D, 0xFF, 0x59, 0x81, 0x62, 0xDF, 0xF4, 0x41, 0x12, 0xF5, 0x30, 0x25, 0x08, 0x1D, 0x60, 417 | 0x03, 0x1A, 0xCE, 0x33, 0x80, 0x0C, 0x65, 0x84, 0x1A, 0xCF, 0xF0, 0x08, 0xC4, 0x07, 0x5A, 0x09, 418 | 0x00, 0x58, 0x6D, 0x1E, 0xF9, 0x78, 0x9C, 0xFB, 0xFB, 0x17, 0x0B, 0x00, 0x00, 0xE4, 0x60, 0x14, 419 | 0xC2, 0x78, 0x9C, 0xDB, 0xCE, 0xCC, 0xC0, 0xF0, 0xAD, 0x9E, 0x81, 0xC1, 0xE0, 0x3F, 0x0B, 0x03, 420 | 0xC3, 0x4F, 0x6E, 0x06, 0x86, 0xAF, 0xFC, 0x0C, 0x0C, 0x9F, 0x91, 0xF0, 0x27, 0x79, 0x06, 0x86, 421 | 0x0F, 0xFE, 0x0C, 0x0C, 0x0D, 0xF7, 0x81, 0x2A, 0x7F, 0xAE, 0x67, 0x10, 0xF8, 0xD3, 0xCF, 0xB0, 422 | 0xE0, 0x3C, 0x23, 0xC3, 0x07, 0x7B, 0x88, 0x1C, 0xB2, 0x5A, 0x90, 0x5E, 0xA0, 0x19, 0x06, 0xFF, 423 | 0x99, 0x19, 0xBE, 0xE7, 0x33, 0x30, 0x6C, 0x07, 0xEA, 0x00, 0x00, 0x41, 0x45, 0x1B, 0x76, 0x78, 424 | 0x9C, 0x01, 0x28, 0x00, 0xD7, 0xFF, 0x00, 0xD5, 0xDF, 0x07, 0x00, 0x00, 0xA5, 0x04, 0x60, 0xFF, 425 | 0xFF, 0xCF, 0x01, 0x00, 0xFA, 0x04, 0xF0, 0x5F, 0x40, 0xFD, 0x4E, 0x50, 0xEF, 0x00, 0xF4, 0x0B, 426 | 0x00, 0xC1, 0xFF, 0xFF, 0x5F, 0x00, 0x83, 0x05, 0x00, 0x00, 0xD7, 0xDF, 0x05, 0x00, 0x67, 0xFE, 427 | 0x11, 0x0A, 0x78, 0x9C, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01, 0x78, 0x9C, 0xBB, 0xA8, 0xF7, 0x39, 428 | 0xBE, 0x80, 0x9D, 0x01, 0x08, 0x1E, 0xE8, 0x7F, 0x80, 0x41, 0x7B, 0x38, 0xF4, 0xFF, 0xE8, 0x0F, 429 | 0x00, 0x08, 0x2F, 0x10, 0xBE, 0x78, 0x9C, 0x63, 0x60, 0xD8, 0xA8, 0xCD, 0x00, 0x04, 0x1F, 0xF5, 430 | 0xE1, 0x64, 0xC3, 0xDF, 0xF7, 0x92, 0x0C, 0x02, 0x7F, 0xEF, 0xFF, 0x7D, 0xCF, 0xB4, 0xE1, 0x3E, 431 | 0x93, 0xC0, 0x1F, 0x9E, 0xCF, 0x40, 0xD1, 0x8F, 0xF6, 0x3F, 0x78, 0x18, 0x18, 0x26, 0x78, 0xFF, 432 | 0xE2, 0x04, 0xA9, 0xFB, 0xCD, 0x01, 0x22, 0x7F, 0x71, 0x81, 0x48, 0x90, 0xB8, 0x81, 0xC8, 0x67, 433 | 0x7B, 0x06, 0x86, 0x07, 0xFE, 0x07, 0x80, 0xEA, 0x7F, 0xF3, 0x0A, 0xFC, 0x3D, 0xFF, 0xE7, 0x3D, 434 | 0x13, 0x43, 0xE3, 0x3F, 0xA0, 0x39, 0x28, 0x26, 0x33, 0x5C, 0xD4, 0x65, 0x60, 0x00, 0x00, 0x00, 435 | 0x85, 0x23, 0x50, 0x78, 0x9C, 0x63, 0x60, 0xD8, 0xFA, 0x6F, 0x1D, 0x13, 0x03, 0xC3, 0x82, 0xFF, 436 | 0xFF, 0xFF, 0xFB, 0x33, 0x30, 0x7C, 0xEB, 0x67, 0xB8, 0xFC, 0x9E, 0x81, 0xE1, 0x2F, 0x37, 0x83, 437 | 0xC1, 0x7F, 0x16, 0x86, 0xFF, 0x6C, 0x0C, 0x0C, 0xA7, 0x81, 0x14, 0x2B, 0x03, 0x08, 0xC0, 0x28, 438 | 0x36, 0x10, 0xF9, 0x0F, 0xA8, 0x1E, 0xC8, 0x7F, 0xFB, 0xFF, 0xFD, 0x3B, 0x16, 0x20, 0xF7, 0x2F, 439 | 0x07, 0x58, 0x0E, 0x4A, 0xFD, 0xE1, 0x44, 0xE6, 0x41, 0x34, 0x04, 0xFC, 0x67, 0x04, 0x4B, 0xFD, 440 | 0x7F, 0x07, 0x04, 0xDC, 0x7F, 0xFF, 0x83, 0x00, 0x0F, 0x00, 0x25, 0xD3, 0x2A, 0xAB, 0x78, 0x9C, 441 | 0x13, 0x60, 0x00, 0x03, 0xC6, 0x8B, 0xDC, 0x8D, 0x7F, 0xEF, 0x4B, 0x6C, 0x90, 0xFD, 0x76, 0xFE, 442 | 0x3F, 0x10, 0xFC, 0xC9, 0x2F, 0xF8, 0x7F, 0x5E, 0x35, 0xE8, 0xCF, 0x7F, 0x76, 0x85, 0xFF, 0x1C, 443 | 0x0C, 0x0C, 0x13, 0xFE, 0x33, 0x6D, 0xD8, 0x0F, 0x52, 0xF6, 0x87, 0xEB, 0x83, 0x3D, 0x88, 0xFE, 444 | 0xC2, 0xFF, 0x99, 0x0F, 0x44, 0x7F, 0xD0, 0xFF, 0xC2, 0x0B, 0xA2, 0x1F, 0xD8, 0xC3, 0xF8, 0x30, 445 | 0x79, 0xA8, 0x7A, 0x4E, 0x03, 0x98, 0x7E, 0x88, 0x79, 0xDC, 0xDF, 0xD7, 0x83, 0xCC, 0xFF, 0x55, 446 | 0xBF, 0x80, 0x1D, 0x64, 0x5F, 0x01, 0x17, 0x03, 0x14, 0x00, 0x00, 0x52, 0x67, 0x34, 0xEC, 0x78, 447 | 0x9C, 0xFB, 0x21, 0xCF, 0xC0, 0xC0, 0xF0, 0x97, 0xEB, 0x41, 0x3F, 0x03, 0x43, 0xC0, 0x7F, 0xA6, 448 | 0x84, 0xF7, 0x0C, 0x0C, 0x07, 0x80, 0xCC, 0xBF, 0x6C, 0x0C, 0x5F, 0xF8, 0x18, 0x18, 0xBE, 0xF0, 449 | 0x32, 0xFC, 0x66, 0x63, 0x60, 0xD8, 0x10, 0xAF, 0x70, 0x1F, 0xA8, 0xCA, 0xE0, 0xFC, 0x02, 0x7F, 450 | 0x20, 0xC5, 0xF0, 0xEB, 0x2B, 0x37, 0x03, 0x43, 0xC3, 0x7F, 0x20, 0x58, 0xCF, 0xE0, 0xD0, 0x71, 451 | 0xE3, 0x7E, 0x47, 0x04, 0x50, 0x70, 0xC1, 0x7E, 0x90, 0x14, 0x84, 0xC2, 0x27, 0x87, 0x4A, 0x01, 452 | 0x00, 0x16, 0x2B, 0x2A, 0xC8, 0x78, 0x9C, 0xFB, 0x2C, 0xFF, 0x19, 0x03, 0x32, 0x00, 0x01, 0xA6, 453 | 0x28, 0x00, 0xBF, 0x74, 0x14, 0x57, 0x78, 0x9C, 0x1D, 0x4E, 0xCB, 0x09, 0xC2, 0x30, 0x00, 0x7D, 454 | 0xB1, 0x21, 0x45, 0x31, 0xB4, 0x23, 0x38, 0x82, 0x13, 0x68, 0xD1, 0x01, 0xEC, 0xB9, 0x17, 0x3B, 455 | 0x82, 0x03, 0x78, 0xF1, 0x2E, 0x74, 0x07, 0x17, 0xB1, 0x17, 0xCF, 0xBD, 0x38, 0x83, 0x20, 0x0A, 456 | 0x81, 0xD2, 0x22, 0xA4, 0x36, 0xCF, 0xC4, 0xD3, 0xE3, 0xF1, 0xBE, 0x28, 0x5F, 0x3C, 0x0B, 0xA4, 457 | 0x23, 0x1D, 0x57, 0xA8, 0x8D, 0xC4, 0xDD, 0x88, 0x76, 0x0D, 0xA4, 0x54, 0x5D, 0x02, 0xC0, 0xCE, 458 | 0x02, 0xC3, 0x66, 0x52, 0x1B, 0xE5, 0x11, 0x0B, 0xC7, 0x42, 0x00, 0x07, 0x92, 0xD7, 0x08, 0xFD, 459 | 0x3E, 0x7B, 0xB2, 0xC2, 0x30, 0x05, 0x6E, 0x54, 0xDF, 0xD8, 0x1B, 0x06, 0x6D, 0xE7, 0x1E, 0xFA, 460 | 0xA4, 0x6B, 0x24, 0xF0, 0xD1, 0x25, 0x4D, 0x91, 0xB9, 0x18, 0x17, 0x9F, 0xA8, 0xBC, 0x90, 0x5B, 461 | 0xEE, 0x42, 0x11, 0x1E, 0x06, 0x5B, 0xDF, 0xB4, 0xA4, 0x1C, 0x43, 0xCE, 0x29, 0xAB, 0xC3, 0xAC, 462 | 0x6C, 0x9B, 0xC8, 0x9F, 0x40, 0xCE, 0xFF, 0x25, 0x9C, 0xDE, 0x3C, 0x0A, 0xFC, 0x00, 0x50, 0x59, 463 | 0x43, 0x87, 0x78, 0x9C, 0x6B, 0x62, 0x66, 0x08, 0x67, 0xF8, 0xCD, 0x5B, 0xF0, 0x9F, 0xF1, 0x3B, 464 | 0xA7, 0xC1, 0x39, 0x06, 0x00, 0x27, 0xD0, 0x05, 0x53, 0x78, 0x9C, 0x63, 0x60, 0x08, 0x78, 0xF5, 465 | 0xBF, 0x87, 0x89, 0x81, 0x81, 0x41, 0xE1, 0xCF, 0xBA, 0x19, 0xBF, 0xFB, 0x81, 0x8C, 0x2F, 0x71, 466 | 0x0C, 0x0C, 0x02, 0x3F, 0xB9, 0x19, 0x04, 0xCE, 0x31, 0x02, 0x79, 0x01, 0xF3, 0x19, 0x36, 0xC8, 467 | 0x31, 0x5C, 0x7F, 0xAF, 0xC5, 0xF0, 0x9D, 0xE5, 0x33, 0xEB, 0x82, 0xFB, 0x3B, 0xFF, 0x33, 0x5D, 468 | 0xE0, 0x79, 0xC1, 0xF0, 0x85, 0x9B, 0xE1, 0x1B, 0x47, 0x82, 0xFC, 0x1E, 0x86, 0x1F, 0x2C, 0x0C, 469 | 0x8D, 0xAC, 0x0A, 0xFE, 0x73, 0x19, 0x7E, 0x82, 0x0C, 0x61, 0xC8, 0x87, 0x33, 0xE0, 0x52, 0x70, 470 | 0xC5, 0x30, 0xED, 0xDC, 0x70, 0x03, 0xA1, 0x56, 0x00, 0x6D, 0x7D, 0xE2, 0x0B, 0xB4, 0xF4, 0x07, 471 | 0x37, 0xD0, 0x19, 0x7F, 0xE7, 0xB6, 0x83, 0x9D, 0x01, 0x73, 0x18, 0x00, 0xC6, 0xF3, 0x37, 0x37, 472 | 0x78, 0x9C, 0x63, 0xB8, 0xFE, 0x9E, 0x93, 0x61, 0xC2, 0xFF, 0xD7, 0xEB, 0x19, 0x2E, 0xC8, 0x33, 473 | 0xFC, 0x63, 0x64, 0x60, 0x60, 0xF8, 0xC3, 0x2C, 0x70, 0xF3, 0xFF, 0x7F, 0xE6, 0x03, 0xE7, 0xD3, 474 | 0xFE, 0x32, 0x7F, 0xE2, 0x03, 0x72, 0x3F, 0xF1, 0x29, 0xFC, 0x63, 0xBE, 0x70, 0xFF, 0xF7, 0x7F, 475 | 0x16, 0x85, 0xDF, 0x7D, 0xD7, 0xD9, 0x00, 0x4A, 0x4F, 0x18, 0x18, 0x78, 0x9C, 0x63, 0x68, 0xB0, 476 | 0x2F, 0xF0, 0x67, 0xF8, 0xC2, 0xF9, 0x99, 0x4B, 0xE0, 0x9D, 0xE0, 0x3B, 0xC6, 0x0D, 0xF1, 0x1B, 477 | 0xF2, 0x19, 0xBE, 0x73, 0x7F, 0xE7, 0x01, 0x11, 0xDC, 0x0C, 0x60, 0x2E, 0x58, 0x02, 0xAC, 0x84, 478 | 0x01, 0xA4, 0x18, 0x00, 0xF2, 0x4A, 0x13, 0x52, 0x78, 0x9C, 0xFB, 0xFE, 0x1F, 0x08, 0xB8, 0xBF, 479 | 0x83, 0x49, 0x06, 0x20, 0xF8, 0x89, 0x42, 0x02, 0x00, 0x11, 0xA6, 0x0D, 0x09, 0x78, 0x9C, 0xFB, 480 | 0xF1, 0xFF, 0x3F, 0xDB, 0xF5, 0xBB, 0x77, 0x59, 0x01, 0x1C, 0x8B, 0x05, 0x93, 0x78, 0x9C, 0x63, 481 | 0x60, 0x08, 0x78, 0xF5, 0xBF, 0x87, 0x89, 0x81, 0x81, 0x41, 0xE1, 0xEF, 0xDA, 0x19, 0xBF, 0xFB, 482 | 0x81, 0x8C, 0x2F, 0x71, 0x0C, 0x0C, 0x02, 0x3F, 0xB9, 0x19, 0x04, 0xCE, 0x31, 0x02, 0x79, 0x01, 483 | 0xF3, 0x19, 0x0E, 0xC8, 0x1D, 0xF8, 0xFF, 0x5E, 0x8B, 0xE1, 0x3B, 0xCB, 0x67, 0xD6, 0x03, 0xFD, 484 | 0x2B, 0xDE, 0x33, 0x5E, 0xE0, 0x7E, 0xC9, 0x70, 0x80, 0x9F, 0xE1, 0x2B, 0x7B, 0x82, 0xFC, 0x1A, 485 | 0x10, 0xE3, 0x33, 0x87, 0x82, 0x7F, 0x1F, 0x90, 0xA1, 0xF0, 0x9B, 0x99, 0x21, 0x1F, 0xC8, 0xF8, 486 | 0xFF, 0x3F, 0x9F, 0x81, 0x21, 0x1F, 0x28, 0x35, 0x7F, 0xE6, 0x7B, 0x46, 0x05, 0xFF, 0x17, 0x60, 487 | 0xC5, 0x6C, 0x05, 0xF2, 0x40, 0xED, 0xFC, 0x0C, 0x5F, 0xD8, 0x2F, 0x70, 0x6F, 0x90, 0x03, 0x32, 488 | 0x3E, 0x71, 0x7E, 0x67, 0x86, 0x5A, 0x01, 0xB4, 0xF5, 0x89, 0x2F, 0xC8, 0x52, 0x2E, 0x90, 0x33, 489 | 0xE6, 0xB6, 0xFF, 0x02, 0x39, 0x03, 0xE6, 0x30, 0x00, 0x0C, 0x11, 0x3A, 0x85, 0x78, 0x9C, 0xFB, 490 | 0xF2, 0xFF, 0xFF, 0x7F, 0xFE, 0xC3, 0x67, 0xCE, 0x9C, 0xE1, 0x06, 0x00, 0x2C, 0xDA, 0x07, 0x33, 491 | 0x78, 0x9C, 0x13, 0xF8, 0xE5, 0xCB, 0x70, 0x60, 0xFE, 0x5F, 0xE6, 0x2F, 0xAC, 0x0F, 0x38, 0xBF, 492 | 0x32, 0x1D, 0xE0, 0xFE, 0xC4, 0xF9, 0x85, 0xA3, 0xE1, 0xFF, 0x7D, 0x06, 0x86, 0x16, 0x36, 0x06, 493 | 0x00, 0xBF, 0xED, 0x0C, 0x3A, 0x78, 0x9C, 0x63, 0x60, 0x80, 0x80, 0x8F, 0x7C, 0xB8, 0xC9, 0xBF, 494 | 0xFF, 0x81, 0x20, 0xFE, 0xD6, 0xDD, 0xBF, 0xF7, 0xEF, 0xFA, 0xE2, 0x56, 0x39, 0x91, 0x03, 0x6A, 495 | 0x14, 0xC3, 0x95, 0xBB, 0x40, 0xC0, 0xFD, 0x15, 0xA4, 0x8B, 0x17, 0x00, 0x84, 0x38, 0x1C, 0xF7, 496 | 0x78, 0x9C, 0x63, 0xB8, 0x7E, 0x9F, 0x9D, 0x61, 0xC1, 0xFD, 0x9B, 0xFD, 0x0C, 0x1F, 0xF9, 0x04, 497 | 0xEE, 0x33, 0x18, 0x30, 0x29, 0xDC, 0x67, 0x60, 0x60, 0xD8, 0x50, 0x0F, 0x24, 0x7E, 0x71, 0x33, 498 | 0x30, 0x2C, 0x58, 0x0F, 0x64, 0xFC, 0xE6, 0x00, 0x8A, 0xBC, 0x9F, 0x39, 0x93, 0xF9, 0xC3, 0xFF, 499 | 0xFF, 0xFF, 0x59, 0x01, 0xC8, 0x70, 0x13, 0x10, 0x78, 0x9C, 0x63, 0x78, 0x71, 0x9F, 0x83, 0x61, 500 | 0xC3, 0xF9, 0x9B, 0xF3, 0x19, 0x36, 0x70, 0x31, 0xBC, 0x67, 0x60, 0x60, 0x08, 0xD8, 0xCF, 0xC0, 501 | 0x70, 0xE0, 0x3F, 0x0F, 0x90, 0xB1, 0x7D, 0x3E, 0x90, 0xCB, 0xF0, 0x8F, 0xE1, 0x11, 0x37, 0xC3, 502 | 0x3F, 0xC6, 0x0B, 0xE7, 0x6F, 0xEE, 0x67, 0x10, 0x78, 0x09, 0x54, 0x0C, 0x00, 0xDF, 0xF4, 0x12, 503 | 0xF1, 0x78, 0x9C, 0x63, 0xF8, 0x6E, 0xAF, 0xF0, 0x9F, 0xF5, 0x40, 0x3F, 0xC3, 0x61, 0x6E, 0x06, 504 | 0x00, 0x20, 0x04, 0x04, 0x78, 0x78, 0x9C, 0xFB, 0xA4, 0xCF, 0xC0, 0xF0, 0xC1, 0xFF, 0x13, 0xF1, 505 | 0xA4, 0x3D, 0x98, 0xAC, 0x67, 0x60, 0xF8, 0xE8, 0xFF, 0xE9, 0x3D, 0xB3, 0xC2, 0x1F, 0xFF, 0x4F, 506 | 0xFF, 0xDF, 0xFF, 0x7B, 0x07, 0x14, 0xF9, 0xB3, 0x7E, 0x91, 0x2D, 0x48, 0x0D, 0x03, 0x03, 0x2E, 507 | 0x12, 0x00, 0xB1, 0x73, 0x2A, 0x2C, 0x78, 0x9C, 0x63, 0x30, 0xB8, 0xF9, 0xFF, 0x3F, 0x13, 0xC3, 508 | 0xB7, 0xFF, 0x40, 0xD2, 0xE1, 0x3F, 0x88, 0x3C, 0x00, 0x26, 0x3F, 0x80, 0xC9, 0x4F, 0x48, 0x24, 509 | 0x44, 0x64, 0x02, 0x98, 0x14, 0xF8, 0x07, 0x22, 0x19, 0x0E, 0x81, 0x49, 0x86, 0xE2, 0x19, 0x20, 510 | 0x92, 0x41, 0x80, 0x10, 0x09, 0x00, 0xD6, 0xBE, 0x38, 0x85, 0x78, 0x9C, 0x3B, 0xE0, 0xF7, 0xA9, 511 | 0xBF, 0x41, 0x0B, 0x00, 0x0C, 0xAB, 0x03, 0x3A, 0x78, 0x9C, 0xFB, 0xC2, 0xC9, 0x70, 0xE4, 0x3E, 512 | 0x03, 0xC3, 0x2F, 0xA6, 0xE2, 0xF7, 0x0C, 0x2F, 0xB4, 0x18, 0x00, 0x33, 0xE5, 0x06, 0x11, 0x78, 513 | 0x9C, 0x33, 0xD8, 0xCE, 0xF7, 0xE3, 0x3F, 0x7F, 0xC8, 0x43, 0x7E, 0x86, 0x07, 0x58, 0x10, 0x00, 514 | 0xB6, 0x61, 0x0A, 0xC9, 0x78, 0x9C, 0x63, 0xB8, 0xF6, 0x5E, 0x92, 0xA1, 0xE1, 0xFF, 0x9B, 0xFB, 515 | 0x0C, 0x9F, 0xF4, 0x19, 0xFE, 0xB0, 0x7F, 0xE3, 0x64, 0xF8, 0xC2, 0xFD, 0x83, 0x9D, 0xE1, 0x13, 516 | 0x2F, 0x98, 0xF8, 0xC6, 0x05, 0xE4, 0x02, 0x25, 0x7E, 0xB3, 0x83, 0x95, 0x30, 0x80, 0x14, 0x03, 517 | 0x00, 0x49, 0x27, 0x16, 0x91, 0x78, 0x9C, 0xFB, 0xCE, 0xFA, 0x99, 0x93, 0xE1, 0x80, 0x7E, 0x43, 518 | 0x3C, 0x83, 0xC1, 0x79, 0x86, 0xBF, 0x4C, 0x0C, 0x3F, 0x38, 0xBE, 0xF0, 0x30, 0x3C, 0xF0, 0x5F, 519 | 0xD0, 0x0F, 0x21, 0x40, 0x5C, 0xB0, 0x04, 0x58, 0xC9, 0x77, 0xD6, 0x4F, 0x9C, 0x0C, 0x00, 0x09, 520 | 0xFF, 0x14, 0x44, 0x78, 0x9C, 0x0B, 0x3C, 0xC9, 0xC9, 0x00, 0x06, 0xFF, 0xFF, 0x43, 0x19, 0x6A, 521 | 0x5F, 0x81, 0x8C, 0x02, 0x0E, 0x20, 0x0B, 0xC4, 0xF8, 0xC4, 0x05, 0x65, 0xFC, 0x66, 0x84, 0x30, 522 | 0x02, 0xEA, 0x19, 0x20, 0x8C, 0x07, 0xBC, 0x50, 0xC6, 0x0F, 0x66, 0x08, 0x43, 0x61, 0x3E, 0xC3, 523 | 0x67, 0x79, 0x10, 0xE3, 0x80, 0x9C, 0xC0, 0x3F, 0x79, 0x90, 0xD8, 0x37, 0xB6, 0x0D, 0xFF, 0x41, 524 | 0x0C, 0x81, 0x73, 0x0C, 0xDF, 0xAE, 0x83, 0x18, 0x13, 0xF4, 0x15, 0xD6, 0x5F, 0x00, 0x31, 0x3E, 525 | 0x73, 0x5C, 0xE0, 0x05, 0x33, 0xDE, 0x32, 0x7C, 0xFB, 0xFF, 0xFF, 0x3F, 0x1B, 0x43, 0x41, 0x3C, 526 | 0xC3, 0x94, 0x99, 0x2F, 0xD7, 0x33, 0x33, 0x24, 0x80, 0x2C, 0x04, 0x4B, 0x31, 0x40, 0x18, 0x00, 527 | 0x46, 0x42, 0x29, 0xE1, 0x78, 0x9C, 0x13, 0x98, 0xDA, 0xC3, 0x00, 0x01, 0x1F, 0xFE, 0xF7, 0x43, 528 | 0x59, 0x09, 0x49, 0x40, 0x96, 0x80, 0x0E, 0x98, 0x09, 0x64, 0x2D, 0xD0, 0x87, 0xB1, 0xBE, 0x70, 529 | 0xC0, 0x58, 0x77, 0x19, 0xA0, 0xAC, 0x02, 0x7F, 0x18, 0xEB, 0x13, 0x17, 0x8C, 0xF5, 0x5B, 0xF0, 530 | 0xE5, 0x79, 0x16, 0x10, 0x2B, 0xA0, 0xFE, 0xC2, 0xFE, 0x5F, 0x60, 0x05, 0x0F, 0x78, 0xBF, 0x72, 531 | 0x05, 0xCC, 0x07, 0xB1, 0x7E, 0x30, 0x1B, 0x32, 0x26, 0x80, 0x58, 0x0A, 0x20, 0xE2, 0xA1, 0x3D, 532 | 0x90, 0x38, 0x20, 0x07, 0xB4, 0xEE, 0x2F, 0x3B, 0x90, 0xF5, 0x8D, 0x8D, 0x81, 0xE1, 0x62, 0x3D, 533 | 0x90, 0x21, 0x70, 0x0E, 0xA8, 0xE0, 0x1F, 0x2B, 0x88, 0xA5, 0x0D, 0x54, 0x75, 0x7E, 0xE6, 0x4C, 534 | 0x88, 0xD3, 0x3E, 0xFF, 0xFF, 0xFF, 0x9F, 0x11, 0x00, 0xB4, 0x49, 0x2A, 0xCB, 0x78, 0x9C, 0x33, 535 | 0x78, 0x7D, 0x8E, 0x85, 0x01, 0x04, 0x3E, 0xAD, 0xFF, 0x65, 0x0F, 0x66, 0x2C, 0x61, 0x2D, 0xE8, 536 | 0x67, 0x60, 0x38, 0xC0, 0x0C, 0x64, 0x6E, 0xF4, 0x67, 0x60, 0xF8, 0x01, 0x64, 0x7C, 0xFA, 0xCF, 537 | 0xC6, 0xA0, 0x30, 0x1F, 0x28, 0x90, 0xF8, 0xC2, 0x9E, 0xE1, 0x80, 0x1C, 0x48, 0x95, 0xC3, 0x7A, 538 | 0x86, 0x6F, 0x6C, 0x0C, 0x0C, 0x3F, 0xD9, 0x02, 0xD6, 0x0B, 0x9C, 0x03, 0xF2, 0x3F, 0xAF, 0xFF, 539 | 0xE5, 0x3F, 0x41, 0x5F, 0xE1, 0x3F, 0xB3, 0x03, 0xD0, 0xC0, 0xCF, 0x1C, 0x07, 0xFE, 0x83, 0xF4, 540 | 0x33, 0xBC, 0x65, 0xF8, 0xF9, 0x0F, 0xC4, 0x28, 0x88, 0x77, 0x98, 0xFF, 0x1B, 0xC4, 0xF8, 0xC8, 541 | 0xFD, 0x90, 0x07, 0xCC, 0xF8, 0xC5, 0xF4, 0x9A, 0x11, 0xC4, 0x70, 0xA8, 0x77, 0xF8, 0xFF, 0xFF, 542 | 0x3F, 0xD0, 0xC2, 0x0B, 0xBC, 0x0A, 0x33, 0x67, 0xFE, 0xF3, 0x02, 0x5A, 0x0A, 0x72, 0x0F, 0x58, 543 | 0x0D, 0x03, 0x98, 0x01, 0x00, 0xD2, 0xEA, 0x32, 0xAA, 0x78, 0x9C, 0x63, 0x60, 0x78, 0x24, 0xCB, 544 | 0x00, 0x04, 0x5F, 0xED, 0x41, 0x64, 0x01, 0x1B, 0x03, 0x1A, 0x78, 0xA4, 0x07, 0x22, 0xBF, 0xF0, 545 | 0x83, 0xC8, 0xDF, 0x3C, 0x40, 0x62, 0xC2, 0x7F, 0x66, 0x20, 0xF9, 0x3D, 0x1E, 0x48, 0x18, 0xFC, 546 | 0x07, 0x29, 0xDF, 0xB0, 0x1E, 0x24, 0xF7, 0x11, 0xAC, 0xFF, 0x93, 0x3E, 0x03, 0x43, 0x31, 0xEB, 547 | 0x47, 0xA0, 0xE4, 0x2F, 0xEE, 0x0D, 0xEF, 0x59, 0x0A, 0xFF, 0xB3, 0x2A, 0xFC, 0xFB, 0xFF, 0x1F, 548 | 0xA8, 0x60, 0xE2, 0xDF, 0xF3, 0x6C, 0x0C, 0x00, 0xE5, 0x8D, 0x19, 0xA4, 0x78, 0x9C, 0x63, 0x60, 549 | 0xF8, 0x5C, 0xCF, 0x00, 0x06, 0x09, 0xFF, 0x99, 0x20, 0x8C, 0x9F, 0x3C, 0x10, 0xFA, 0x80, 0x0D, 550 | 0x03, 0x0A, 0xF8, 0x18, 0x0F, 0xA1, 0xBF, 0x9F, 0x87, 0xD0, 0x7F, 0x21, 0x1A, 0x0C, 0xDE, 0xFF, 551 | 0xE2, 0x00, 0xD1, 0x13, 0xE6, 0x7F, 0xE1, 0x03, 0xD1, 0x0F, 0xEC, 0x1F, 0xF8, 0x83, 0xE8, 0xAF, 552 | 0xBC, 0x0D, 0xEB, 0x41, 0xF4, 0x6F, 0x76, 0x85, 0xFF, 0x40, 0x4A, 0xE0, 0x3F, 0x23, 0xC3, 0x1F, 553 | 0x36, 0x06, 0x86, 0x82, 0xFD, 0x0C, 0x0C, 0xDF, 0x80, 0x36, 0x5C, 0x00, 0x9A, 0xF6, 0x41, 0x9F, 554 | 0x81, 0xE1, 0xF3, 0x7F, 0x20, 0xE8, 0x07, 0xDA, 0xFA, 0xFE, 0xDD, 0xBB, 0x77, 0xEF, 0x19, 0x18, 555 | 0xFE, 0x31, 0x03, 0x15, 0xFF, 0x63, 0x09, 0x78, 0x0F, 0x76, 0x0A, 0xD7, 0x86, 0xF9, 0x20, 0xFA, 556 | 0x8B, 0xFC, 0x47, 0xB0, 0x99, 0x0F, 0xF2, 0xBF, 0x83, 0xED, 0x98, 0x70, 0x1E, 0x00, 0xE7, 0x05, 557 | 0x32, 0x25, 0x78, 0x9C, 0x63, 0x60, 0x60, 0x60, 0x78, 0xB8, 0x9E, 0x01, 0x0C, 0x7E, 0xF3, 0x80, 558 | 0xA9, 0x84, 0xF7, 0x8C, 0x60, 0x7A, 0x82, 0x1D, 0x03, 0x0A, 0xF8, 0x18, 0x0F, 0xA1, 0xBF, 0x9F, 559 | 0x87, 0xD0, 0x7F, 0xFF, 0x33, 0x81, 0x28, 0x83, 0xF7, 0xBF, 0x38, 0xC0, 0xCA, 0xE7, 0x7F, 0xE1, 560 | 0x03, 0xD1, 0x0F, 0xEC, 0x1F, 0xF8, 0x83, 0xE8, 0xAF, 0xBC, 0x0D, 0x60, 0x73, 0x7F, 0xB3, 0x2B, 561 | 0xFC, 0x07, 0x52, 0x02, 0xFF, 0x19, 0x19, 0xFE, 0xB0, 0x31, 0x30, 0x14, 0xEC, 0x67, 0x60, 0xF8, 562 | 0x06, 0xB4, 0xE8, 0x02, 0xD0, 0xB4, 0x0F, 0xFA, 0x0C, 0x0C, 0x9F, 0xFF, 0x03, 0x41, 0x3F, 0x03, 563 | 0xC3, 0xCF, 0xF7, 0xEF, 0xDE, 0xBD, 0x7B, 0xCF, 0xC0, 0xF0, 0x8F, 0x19, 0xA8, 0xF8, 0x1F, 0x4B, 564 | 0xC0, 0x7B, 0x90, 0xDE, 0x9F, 0x5C, 0x1B, 0xE6, 0x83, 0xE8, 0x2F, 0xF2, 0x1F, 0xC1, 0x66, 0x3E, 565 | 0xC8, 0xFF, 0x0E, 0xB6, 0x63, 0xC2, 0x79, 0x00, 0xCE, 0x00, 0x32, 0x06, 0x78, 0x9C, 0x63, 0x60, 566 | 0x60, 0x78, 0xDC, 0xCF, 0x00, 0x02, 0x09, 0xF7, 0x7F, 0x70, 0x83, 0xE8, 0x43, 0x32, 0x05, 0xB5, 567 | 0x0C, 0xC8, 0xE0, 0x63, 0x3C, 0x84, 0xFE, 0x7E, 0x1E, 0x42, 0xFF, 0xFD, 0xCF, 0x04, 0xA2, 0x0C, 568 | 0xDE, 0xFF, 0xE2, 0x00, 0xD1, 0x13, 0xE6, 0x7F, 0xE1, 0x03, 0xD1, 0x0F, 0xEC, 0x1F, 0xF8, 0x83, 569 | 0xE8, 0xAF, 0xBC, 0x0D, 0xEB, 0x41, 0xF4, 0x6F, 0x76, 0x85, 0xFF, 0x40, 0x4A, 0xE0, 0x3F, 0x23, 570 | 0xC3, 0x1F, 0x36, 0x06, 0x86, 0x82, 0xFD, 0x0C, 0x0C, 0xDF, 0x78, 0x18, 0x18, 0x2E, 0x00, 0x4D, 571 | 0xFB, 0xA0, 0xCF, 0xC0, 0xF0, 0xF9, 0x3F, 0x10, 0x00, 0x6D, 0xFE, 0xF9, 0xFE, 0xDD, 0xBB, 0x77, 572 | 0xEF, 0x19, 0x18, 0xFE, 0x31, 0x03, 0x15, 0xFF, 0x63, 0x09, 0x78, 0x0F, 0xD2, 0xFB, 0x93, 0x6B, 573 | 0xC3, 0x7C, 0x10, 0xFD, 0x45, 0xFE, 0x23, 0xD8, 0xCC, 0x07, 0xF9, 0xDF, 0xC1, 0x76, 0x4C, 0x38, 574 | 0x0F, 0x00, 0x35, 0x45, 0x32, 0xD0, 0x78, 0x9C, 0x63, 0x60, 0x28, 0xE8, 0x66, 0x7C, 0xC8, 0xC6, 575 | 0xC0, 0xC0, 0xF0, 0xEB, 0xFF, 0xF9, 0x7F, 0xCC, 0x40, 0x7A, 0xBD, 0xC1, 0xAF, 0x3C, 0x06, 0x6C, 576 | 0xE0, 0x63, 0x3C, 0x84, 0xFE, 0x7E, 0x1E, 0x42, 0xFF, 0xFD, 0xCF, 0x04, 0xA2, 0x0C, 0xDE, 0xFF, 577 | 0xE2, 0x00, 0xD1, 0x13, 0xE6, 0x7F, 0xE1, 0x03, 0xD1, 0x0F, 0xEC, 0x1F, 0xF8, 0x83, 0xE8, 0xAF, 578 | 0xBC, 0x0D, 0xEB, 0x41, 0xF4, 0x6F, 0x76, 0x85, 0xFF, 0x40, 0x4A, 0xE0, 0x3F, 0x23, 0xC3, 0x1F, 579 | 0xA0, 0x3D, 0x05, 0xFB, 0x19, 0x18, 0xBE, 0xF1, 0x30, 0x30, 0x5C, 0x00, 0x9A, 0xF6, 0x41, 0x9F, 580 | 0x81, 0xE1, 0xF3, 0x7F, 0x20, 0xE8, 0x67, 0x60, 0xF8, 0xF9, 0xFE, 0xDD, 0xBB, 0x77, 0xEF, 0x19, 581 | 0x18, 0xC0, 0x6E, 0xF8, 0xC7, 0x12, 0xF0, 0x1E, 0xA4, 0xF7, 0x27, 0xD7, 0x86, 0xF9, 0x20, 0xFA, 582 | 0x8B, 0xFC, 0x47, 0xB0, 0x99, 0x0F, 0xF2, 0xBF, 0x83, 0xED, 0x98, 0x70, 0x1E, 0x00, 0x06, 0xEE, 583 | 0x35, 0x44, 0x78, 0x9C, 0x63, 0x60, 0x68, 0x62, 0x61, 0x08, 0x67, 0x00, 0x82, 0x5F, 0x7C, 0x09, 584 | 0xFF, 0x99, 0x80, 0xF4, 0x37, 0x4E, 0x83, 0x7B, 0x0C, 0xD8, 0xC0, 0xC7, 0x78, 0x08, 0xFD, 0xFD, 585 | 0x3C, 0x84, 0xFE, 0x0B, 0x56, 0xCE, 0x60, 0xF0, 0xFE, 0x17, 0x07, 0x88, 0x9E, 0x30, 0xFF, 0x0B, 586 | 0x1F, 0x88, 0x7E, 0x60, 0xFF, 0xC0, 0x1F, 0x44, 0x7F, 0xE5, 0x6D, 0x58, 0x0F, 0xA2, 0x7F, 0xB3, 587 | 0x2B, 0xFC, 0x07, 0x52, 0x02, 0xFF, 0x19, 0x19, 0xFE, 0xB0, 0x31, 0x30, 0x14, 0xEC, 0x07, 0x5A, 588 | 0xC1, 0xC3, 0xC0, 0x70, 0x01, 0x68, 0xDA, 0x07, 0x7D, 0x06, 0x86, 0xCF, 0xFF, 0x81, 0xA0, 0x9F, 589 | 0x81, 0xE1, 0xE7, 0xFB, 0x77, 0xEF, 0xDE, 0xBD, 0x67, 0x60, 0xF8, 0xC7, 0x0C, 0x54, 0xFC, 0x8F, 590 | 0x25, 0xE0, 0x3D, 0x48, 0xEF, 0x4F, 0xAE, 0x0D, 0xF3, 0x41, 0xF4, 0x17, 0xF9, 0x8F, 0x60, 0x33, 591 | 0x1F, 0xE4, 0x7F, 0x07, 0xDB, 0x31, 0xE1, 0x3C, 0x00, 0x3C, 0x2A, 0x32, 0xA4, 0x78, 0x9C, 0x63, 592 | 0x60, 0x60, 0xB8, 0x3A, 0x8F, 0x01, 0x04, 0x14, 0xE2, 0x0F, 0x71, 0x80, 0xE8, 0x00, 0xDE, 0x04, 593 | 0x1E, 0x28, 0x9F, 0x13, 0x2C, 0x71, 0x75, 0x3D, 0x03, 0x0A, 0xF8, 0x18, 0x0F, 0xA1, 0xBF, 0x9F, 594 | 0x87, 0xD0, 0x7F, 0xFF, 0x33, 0x81, 0x28, 0x83, 0xF7, 0xBF, 0xC0, 0xFA, 0x27, 0xCC, 0xFF, 0xC2, 595 | 0x07, 0xA2, 0x1F, 0xD8, 0x3F, 0xF0, 0x07, 0xD1, 0x5F, 0x79, 0x1B, 0xC0, 0x06, 0xFC, 0x66, 0x57, 596 | 0xF8, 0x0F, 0xA4, 0x04, 0xFE, 0x33, 0x32, 0xFC, 0x61, 0x63, 0x60, 0x28, 0xD8, 0xCF, 0xC0, 0xF0, 597 | 0x0D, 0x68, 0xD1, 0x05, 0xA0, 0x69, 0x1F, 0xF4, 0x19, 0x18, 0x3E, 0xFF, 0x07, 0x82, 0x7E, 0x06, 598 | 0x86, 0x9F, 0xEF, 0xDF, 0xBD, 0x7B, 0xF7, 0x9E, 0x81, 0xE1, 0x1F, 0x33, 0x50, 0xF1, 0x3F, 0x96, 599 | 0x80, 0xF7, 0x20, 0xBD, 0x3F, 0xB9, 0x36, 0xCC, 0x07, 0xD1, 0x5F, 0xE4, 0x3F, 0x82, 0xCD, 0x7C, 600 | 0x90, 0xFF, 0x1D, 0x6C, 0xC7, 0x84, 0xF3, 0x00, 0xF1, 0x4B, 0x33, 0xA4, 0x78, 0x9C, 0x63, 0x60, 601 | 0x00, 0x82, 0x0D, 0xFF, 0x41, 0xC0, 0x1E, 0xC4, 0x64, 0xF8, 0xFA, 0xFF, 0xFE, 0xDD, 0xBB, 0x77, 602 | 0x75, 0xC1, 0xEC, 0x7F, 0xFF, 0x78, 0x18, 0xA0, 0xA0, 0xE1, 0xFE, 0x77, 0x38, 0xFB, 0x93, 0xFF, 603 | 0x37, 0x5E, 0x18, 0xFB, 0x37, 0xD7, 0x57, 0x3E, 0x28, 0xD3, 0xE1, 0x3F, 0xE3, 0x17, 0x18, 0xFB, 604 | 0x42, 0x3D, 0xC3, 0x17, 0x7E, 0x28, 0xFB, 0x07, 0x2F, 0xC3, 0x67, 0x90, 0xF9, 0xCC, 0x0C, 0x0C, 605 | 0x0A, 0x40, 0xE2, 0x13, 0xC8, 0x7C, 0x26, 0xA0, 0xA5, 0xEB, 0x81, 0x26, 0xC9, 0x43, 0x94, 0x7C, 606 | 0x01, 0xC9, 0xEB, 0x43, 0xD8, 0x7F, 0x11, 0xEC, 0x82, 0xF7, 0x4A, 0x4A, 0x4A, 0x9F, 0x20, 0xEE, 607 | 0xFA, 0x98, 0x0F, 0x24, 0x3E, 0xF8, 0x83, 0xD9, 0xBF, 0x78, 0xE1, 0x6C, 0x87, 0xFF, 0xAC, 0x40, 608 | 0xF2, 0xC1, 0x7B, 0xA0, 0x99, 0x67, 0x2F, 0xDC, 0x07, 0x5B, 0x0D, 0xF6, 0x0C, 0x00, 0xDE, 0xCB, 609 | 0x46, 0xD2, 0x78, 0x9C, 0x63, 0x60, 0x58, 0xF2, 0xF7, 0x1C, 0x3B, 0x03, 0x03, 0xC3, 0x86, 0xFF, 610 | 0xFF, 0xFF, 0xDF, 0x67, 0x62, 0x60, 0xF8, 0x93, 0xCF, 0x18, 0xF0, 0x8F, 0x97, 0xA1, 0xE0, 0x3F, 611 | 0x33, 0x03, 0xC3, 0xC7, 0x7A, 0x86, 0x07, 0xFD, 0x40, 0xB9, 0x09, 0xF7, 0x19, 0x3E, 0xEB, 0x03, 612 | 0x69, 0x87, 0xFF, 0x0C, 0xDF, 0xF8, 0x19, 0xC0, 0xE0, 0x3B, 0x2F, 0x84, 0xFE, 0x81, 0x83, 0x86, 613 | 0xA9, 0x83, 0xE8, 0x7B, 0x07, 0x37, 0xA7, 0xE0, 0x3F, 0x13, 0xD8, 0x5C, 0x86, 0xBF, 0x71, 0x0C, 614 | 0x01, 0x7F, 0x81, 0x8A, 0x0F, 0x42, 0xED, 0x65, 0xD8, 0xF6, 0x6F, 0x1F, 0x1B, 0x58, 0xCB, 0x4F, 615 | 0x16, 0x88, 0xD6, 0x1B, 0xFD, 0x10, 0x9A, 0xE1, 0x3E, 0x84, 0x9A, 0x32, 0x1F, 0x42, 0xDF, 0xE1, 616 | 0x00, 0x12, 0x00, 0x02, 0x8C, 0x2F, 0x3F, 0x78, 0x9C, 0x63, 0xF8, 0xC3, 0xC3, 0x00, 0x04, 0x8F, 617 | 0xEA, 0x41, 0xA4, 0xC3, 0x7F, 0x66, 0x10, 0x75, 0x9D, 0x8D, 0x01, 0x0A, 0xFE, 0x83, 0x80, 0xFD, 618 | 0xFF, 0xF7, 0xEF, 0xDE, 0xBD, 0xB3, 0xFB, 0x0F, 0x16, 0x25, 0x40, 0x82, 0x00, 0x23, 0x58, 0x3D, 619 | 0x23, 0x51, 0xEA, 0x41, 0x2A, 0xE3, 0xC0, 0xBA, 0xE2, 0x01, 0x73, 0x71, 0x2F, 0x1A, 0x78, 0x9C, 620 | 0x63, 0x60, 0x60, 0xF8, 0x25, 0xC7, 0xC0, 0xC0, 0x10, 0xF0, 0x9F, 0x19, 0x48, 0x3E, 0x8C, 0x07, 621 | 0x12, 0x0C, 0x57, 0x39, 0x18, 0xA0, 0xE0, 0x3F, 0x08, 0xD8, 0xFF, 0x7F, 0xFF, 0xEE, 0xDD, 0x3B, 622 | 0xBB, 0xFF, 0x6C, 0x60, 0x11, 0xFC, 0x24, 0x08, 0x30, 0x82, 0xD5, 0x33, 0x12, 0xA5, 0x1E, 0xA4, 623 | 0x32, 0x0E, 0xAC, 0x2B, 0x1E, 0x00, 0x6E, 0xA4, 0x2F, 0x19, 0x78, 0x9C, 0x63, 0x60, 0xF8, 0x2D, 624 | 0xC3, 0xC0, 0xC0, 0x70, 0xA9, 0xFE, 0x1D, 0x33, 0x03, 0xC3, 0x4B, 0x96, 0xC7, 0x52, 0x0C, 0x10, 625 | 0xF0, 0x1F, 0x04, 0xEC, 0xFF, 0xBF, 0x7F, 0xF7, 0xEE, 0x9D, 0xDD, 0x7F, 0x36, 0xB0, 0x08, 0x7E, 626 | 0x12, 0x04, 0x18, 0xC1, 0xEA, 0x19, 0x89, 0x52, 0x0F, 0x52, 0x19, 0x07, 0xD6, 0x15, 0x0F, 0x00, 627 | 0xB7, 0x14, 0x2F, 0xD5, 0x78, 0x9C, 0x63, 0x48, 0x67, 0x08, 0x60, 0x67, 0x08, 0xF8, 0xCF, 0xFC, 628 | 0xB1, 0x9E, 0x41, 0xE1, 0x1E, 0xE3, 0x01, 0x3F, 0x06, 0x64, 0xF0, 0x1F, 0x04, 0xEC, 0xFF, 0xBF, 629 | 0x7F, 0xF7, 0xEE, 0x9D, 0xDD, 0x7F, 0x36, 0xB0, 0x08, 0x7E, 0x12, 0x04, 0x18, 0xC1, 0xEA, 0x19, 630 | 0x89, 0x52, 0x0F, 0x52, 0x19, 0x07, 0xD6, 0x15, 0x0F, 0x00, 0xF9, 0x3F, 0x30, 0x1F, 0x78, 0x9C, 631 | 0x7B, 0xB8, 0x9E, 0xC1, 0xE0, 0x3F, 0x2B, 0xC3, 0x37, 0x39, 0x86, 0x05, 0x31, 0x0C, 0x40, 0x70, 632 | 0x60, 0x3E, 0x19, 0x08, 0x00, 0xD1, 0xE7, 0x1D, 0x83, 0x78, 0x9C, 0x63, 0xF8, 0xCB, 0xD3, 0xF0, 633 | 0x9E, 0xF1, 0xB3, 0x3D, 0xC3, 0x75, 0x36, 0x06, 0x20, 0xF8, 0xC3, 0x49, 0x0E, 0x02, 0x00, 0x2D, 634 | 0xF1, 0x16, 0xE3, 0x78, 0x9C, 0x63, 0x38, 0xB8, 0x9E, 0x81, 0xC1, 0xE0, 0xDD, 0x77, 0x5D, 0x86, 635 | 0x8D, 0xBA, 0x0E, 0xF3, 0x18, 0x20, 0xE0, 0xC0, 0x7C, 0x1A, 0x11, 0x00, 0xA1, 0xCE, 0x1E, 0x1D, 636 | 0x78, 0x9C, 0x6B, 0x64, 0x65, 0x28, 0x63, 0xF8, 0x2E, 0x6F, 0xF0, 0x9F, 0xF5, 0x09, 0x8F, 0xC0, 637 | 0x5B, 0x26, 0x06, 0x04, 0x38, 0x30, 0x9F, 0x46, 0x04, 0x00, 0xA1, 0x4F, 0x1D, 0xE4, 0x78, 0x9C, 638 | 0x63, 0xF8, 0xF9, 0xFF, 0xFF, 0x39, 0x76, 0x06, 0x06, 0x86, 0x9F, 0xEF, 0xDF, 0xFD, 0x7F, 0xCF, 639 | 0x0C, 0xA4, 0x79, 0x18, 0x1C, 0xFE, 0xF8, 0x83, 0x69, 0x86, 0x05, 0xEF, 0x19, 0xC1, 0x34, 0xC3, 640 | 0x3F, 0x76, 0x08, 0xFD, 0x9D, 0x17, 0x42, 0x7F, 0x96, 0x87, 0xD0, 0x1F, 0xF5, 0xFF, 0xFD, 0xFF, 641 | 0x7F, 0x9F, 0x81, 0xE1, 0x83, 0xFF, 0x9D, 0x7F, 0xF7, 0xF7, 0x82, 0x68, 0x98, 0x38, 0xAA, 0xBA, 642 | 0x1F, 0x10, 0x7D, 0x02, 0x50, 0x73, 0x36, 0x40, 0xCC, 0x0D, 0xF8, 0x0B, 0xB2, 0xE7, 0xFD, 0x3F, 643 | 0x88, 0xBD, 0xFF, 0xFF, 0xEF, 0x65, 0x65, 0x60, 0x00, 0x00, 0x5B, 0xB1, 0x36, 0x0D, 0x78, 0x9C, 644 | 0x63, 0x50, 0x58, 0xC9, 0x9A, 0x20, 0xCB, 0xC0, 0xF0, 0xF0, 0xFF, 0xFB, 0x3F, 0xBC, 0x0C, 0x0C, 645 | 0x5F, 0x59, 0x8F, 0x9E, 0x67, 0x62, 0x40, 0x05, 0xFF, 0xB9, 0x81, 0xC4, 0x84, 0xFD, 0xFF, 0xF3, 646 | 0x21, 0xD4, 0x7B, 0x46, 0x30, 0xF5, 0x9F, 0x0B, 0x4C, 0xFD, 0x89, 0x07, 0x53, 0xDB, 0xDE, 0x83, 647 | 0x29, 0xB1, 0xFF, 0x9C, 0x20, 0x8A, 0xED, 0x9B, 0x3F, 0x98, 0x3A, 0x70, 0x1F, 0x4C, 0x29, 0xFC, 648 | 0xE7, 0x00, 0x51, 0x0C, 0xDF, 0xED, 0xC1, 0xD4, 0x81, 0xF3, 0x60, 0xCA, 0xE0, 0xFF, 0x74, 0x10, 649 | 0xC5, 0xF0, 0xE3, 0x3C, 0x98, 0xBA, 0xF0, 0x1F, 0x4C, 0x39, 0x40, 0x28, 0x86, 0x9F, 0x10, 0xEA, 650 | 0xE1, 0x7E, 0x00, 0x6B, 0x8E, 0x43, 0xE8, 0x78, 0x9C, 0x63, 0x60, 0xF8, 0xC3, 0xCB, 0x00, 0x06, 651 | 0x0F, 0xFB, 0x21, 0xB4, 0xC1, 0x7F, 0x66, 0x08, 0xE3, 0x1A, 0x3B, 0x03, 0x32, 0xD8, 0xF2, 0x6F, 652 | 0x1F, 0x1B, 0x90, 0x5A, 0xF0, 0xFF, 0xFF, 0xFF, 0xF3, 0x8C, 0x0C, 0x0C, 0xBF, 0xFB, 0x99, 0x12, 653 | 0xFF, 0xF1, 0x32, 0x04, 0xFC, 0x67, 0x61, 0x60, 0x78, 0x34, 0x9F, 0xE1, 0xC2, 0x7C, 0xA0, 0x5C, 654 | 0xC2, 0x7F, 0x86, 0x4F, 0xFA, 0x20, 0xB5, 0xFF, 0x59, 0xBF, 0xF1, 0x83, 0xE8, 0x3F, 0x1C, 0xDF, 655 | 0xC1, 0xA6, 0xFF, 0xE2, 0xFA, 0xC1, 0x03, 0xA2, 0x7F, 0x72, 0xC3, 0x68, 0x98, 0xF8, 0x37, 0x3E, 656 | 0x88, 0x3A, 0x98, 0x3E, 0x98, 0x39, 0x60, 0x73, 0x1F, 0x02, 0x39, 0xBF, 0xEB, 0x99, 0x02, 0xFF, 657 | 0xF1, 0x41, 0xEC, 0xBD, 0xCF, 0x08, 0x71, 0x07, 0x2B, 0x03, 0x03, 0x00, 0x88, 0x48, 0x33, 0xED, 658 | 0x78, 0x9C, 0x63, 0x60, 0x60, 0x60, 0xF8, 0xA9, 0xC7, 0x00, 0x02, 0x0E, 0xFF, 0x59, 0xC0, 0xF4, 659 | 0x83, 0x7C, 0x30, 0xC5, 0x70, 0x84, 0x93, 0x01, 0x19, 0x6C, 0xF9, 0xB7, 0x8F, 0x0D, 0x48, 0x2D, 660 | 0xF8, 0xFF, 0xFF, 0xFF, 0x79, 0x46, 0x06, 0x86, 0xDF, 0xFD, 0x4C, 0x89, 0xFF, 0x78, 0x19, 0x02, 661 | 0x40, 0x9A, 0x1E, 0xCD, 0x67, 0xB8, 0x30, 0x1F, 0x28, 0x97, 0xF0, 0x9F, 0xE1, 0x93, 0x3E, 0x48, 662 | 0xED, 0x7F, 0xD6, 0x6F, 0xFC, 0x20, 0xFA, 0x0F, 0xC7, 0x77, 0x5E, 0x10, 0xFD, 0x8B, 0xEB, 0x07, 663 | 0x0F, 0x88, 0xFE, 0xC9, 0x0D, 0xA3, 0x61, 0xE2, 0xDF, 0xF8, 0x20, 0xEA, 0x60, 0xFA, 0x60, 0xE6, 664 | 0x80, 0xCD, 0x7D, 0x08, 0xE4, 0xFC, 0xAE, 0x67, 0x0A, 0xFC, 0xC7, 0x07, 0xB1, 0xF7, 0x3E, 0x23, 665 | 0xC4, 0x1D, 0xAC, 0x0C, 0x0C, 0x00, 0x83, 0x1F, 0x33, 0xEB, 0x78, 0x9C, 0x63, 0x60, 0x60, 0xF8, 666 | 0xA5, 0xC3, 0x00, 0x02, 0x97, 0xEA, 0xDF, 0xB1, 0x80, 0xE8, 0x97, 0xAC, 0x97, 0xA4, 0x19, 0x90, 667 | 0xC0, 0x96, 0x7F, 0xFB, 0xD8, 0x80, 0xD4, 0x82, 0xFF, 0xFF, 0xFF, 0x9F, 0x67, 0x64, 0x60, 0xF8, 668 | 0xDD, 0xCF, 0x94, 0xF8, 0x8F, 0x97, 0x21, 0xE0, 0x3F, 0x50, 0xF1, 0xA3, 0xF9, 0x0C, 0x17, 0xE6, 669 | 0x03, 0xE5, 0x12, 0xFE, 0x33, 0x7C, 0xD2, 0x07, 0xA9, 0xFD, 0xCF, 0xFA, 0x8D, 0x1F, 0x44, 0xFF, 670 | 0xE1, 0xF8, 0xCE, 0x0B, 0xA2, 0x7F, 0x71, 0xFD, 0xE0, 0x01, 0xD1, 0x3F, 0xB9, 0x61, 0x34, 0x4C, 671 | 0xFC, 0x1B, 0x1F, 0x44, 0x1D, 0x4C, 0x1F, 0xCC, 0x1C, 0xB0, 0xB9, 0x0F, 0x81, 0x9C, 0xDF, 0xF5, 672 | 0x4C, 0x81, 0xFF, 0xF8, 0x20, 0xF6, 0xDE, 0x67, 0x84, 0xB8, 0x83, 0x95, 0x81, 0x01, 0x00, 0xE4, 673 | 0x2A, 0x34, 0xA9, 0x78, 0x9C, 0x63, 0x60, 0x58, 0xE2, 0xC5, 0xB0, 0x8B, 0x81, 0x81, 0xC1, 0xE1, 674 | 0xFF, 0xFF, 0xB3, 0xF3, 0x81, 0xF4, 0x04, 0xBD, 0xC2, 0x7F, 0x52, 0x0C, 0x58, 0xC0, 0x96, 0x7F, 675 | 0xFB, 0xD8, 0x80, 0xD4, 0x82, 0xFF, 0xFF, 0xFF, 0x9F, 0x67, 0x64, 0x60, 0xF8, 0xDD, 0xCF, 0x94, 676 | 0xF8, 0x8F, 0x97, 0x21, 0xE0, 0x3F, 0x0B, 0x03, 0xC3, 0xA3, 0xF9, 0x0C, 0x17, 0x40, 0x7A, 0x13, 677 | 0xFE, 0x33, 0x7C, 0xD2, 0x07, 0xA9, 0xFD, 0xCF, 0xFA, 0x8D, 0x1F, 0x44, 0xFF, 0xE1, 0xF8, 0xCE, 678 | 0x0B, 0xA2, 0x7F, 0x71, 0xFD, 0xE0, 0x01, 0xD1, 0x3F, 0xB9, 0x61, 0x34, 0x4C, 0xFC, 0x1B, 0x1F, 679 | 0x44, 0x1D, 0x4C, 0x1F, 0xCC, 0x1C, 0xB0, 0xB9, 0x0F, 0x81, 0x9C, 0xDF, 0xF5, 0x4C, 0x81, 0xFF, 680 | 0xF8, 0x20, 0xF6, 0xDE, 0x67, 0x84, 0xB8, 0x83, 0x95, 0x81, 0x01, 0x00, 0xA1, 0xC0, 0x36, 0xFE, 681 | 0x78, 0x9C, 0x63, 0x60, 0x28, 0x67, 0x70, 0x90, 0x60, 0x60, 0x60, 0x70, 0xF8, 0xCF, 0xF2, 0xA1, 682 | 0x1F, 0x48, 0x0B, 0xBC, 0x65, 0xDA, 0xE0, 0xCF, 0x80, 0x05, 0x6C, 0xF9, 0xB7, 0x8F, 0x0D, 0x48, 683 | 0x2D, 0xF8, 0xFF, 0xFF, 0xFF, 0x79, 0x46, 0x06, 0x86, 0xDF, 0xFD, 0x4C, 0x89, 0xFF, 0x78, 0x19, 684 | 0x02, 0xFE, 0xB3, 0x30, 0x30, 0x3C, 0x9A, 0xCF, 0x70, 0x61, 0x3E, 0x50, 0x2E, 0xE1, 0x3F, 0xC3, 685 | 0x27, 0x7D, 0x90, 0xDA, 0xFF, 0xAC, 0xDF, 0xF8, 0x41, 0xF4, 0x1F, 0x8E, 0xEF, 0xBC, 0x20, 0xFA, 686 | 0x17, 0xD7, 0x0F, 0x1E, 0x10, 0xFD, 0x93, 0x1B, 0x46, 0xC3, 0xC4, 0xBF, 0xF1, 0x41, 0xD4, 0xC1, 687 | 0xF4, 0xC1, 0xCC, 0x01, 0x9B, 0xFB, 0x10, 0xC8, 0xF9, 0x5D, 0xCF, 0x14, 0xF8, 0x8F, 0x0F, 0x62, 688 | 0xEF, 0x7D, 0x46, 0x88, 0x3B, 0x58, 0x19, 0x18, 0x00, 0x3C, 0xE6, 0x34, 0xF4, 0x78, 0x9C, 0xDB, 689 | 0xC8, 0xC4, 0xC0, 0xB0, 0x91, 0xE9, 0x97, 0x1E, 0x83, 0xC0, 0x5F, 0x9E, 0x83, 0xEF, 0x99, 0x2E, 690 | 0xBE, 0x67, 0x12, 0xF8, 0x63, 0xF7, 0x57, 0x8F, 0x81, 0xE1, 0xE0, 0xFF, 0xF7, 0x40, 0x29, 0x85, 691 | 0xFF, 0xFE, 0x0C, 0x0C, 0x0C, 0x17, 0x41, 0x6C, 0x81, 0xBF, 0x76, 0x7F, 0xF4, 0x18, 0x80, 0x0A, 692 | 0x80, 0xCA, 0x40, 0xEA, 0xFF, 0xF0, 0x6E, 0x04, 0xEB, 0x05, 0x00, 0x72, 0x9B, 0x1A, 0x01, 0x78, 693 | 0x9C, 0x1D, 0x8E, 0xCD, 0x0D, 0x82, 0x40, 0x18, 0x44, 0x1F, 0xC4, 0x25, 0x82, 0x88, 0x15, 0x98, 694 | 0xD8, 0x81, 0x25, 0x50, 0x02, 0xD8, 0xC1, 0x5A, 0x81, 0x2D, 0xD8, 0x01, 0x25, 0x2C, 0x07, 0x4B, 695 | 0xF0, 0x4C, 0x0D, 0x74, 0xA0, 0xDE, 0xBD, 0x48, 0x02, 0x88, 0xFC, 0x7C, 0x2E, 0x4C, 0x26, 0x99, 696 | 0xE4, 0x65, 0x92, 0x19, 0x98, 0xA5, 0x3D, 0xB8, 0x4F, 0x85, 0x57, 0x2B, 0x72, 0x11, 0x79, 0x14, 697 | 0xD0, 0x67, 0xEE, 0x79, 0x8A, 0x49, 0x65, 0x05, 0xB5, 0xA1, 0x34, 0xB6, 0x36, 0x8A, 0x53, 0xC5, 698 | 0x70, 0x4D, 0x44, 0x35, 0x3B, 0xA8, 0xFC, 0xC1, 0x6F, 0xB7, 0xF0, 0xE6, 0x17, 0x7C, 0x43, 0x74, 699 | 0x42, 0xB7, 0xB1, 0xF9, 0x09, 0x6C, 0x5A, 0xDE, 0x3B, 0x96, 0x37, 0x51, 0x7A, 0x81, 0x61, 0x5D, 700 | 0x1D, 0x9F, 0x21, 0x88, 0x2A, 0x4D, 0xE7, 0xA2, 0xC5, 0x3A, 0x83, 0x97, 0x59, 0x76, 0x4E, 0x53, 701 | 0x04, 0xED, 0xBC, 0xEB, 0x70, 0x30, 0xB7, 0xB1, 0x50, 0x90, 0xEF, 0x97, 0x63, 0xFC, 0x01, 0x40, 702 | 0x9C, 0x3C, 0xF5, 0x78, 0x9C, 0x63, 0x70, 0xF8, 0xCF, 0xC6, 0x00, 0x02, 0xDF, 0xF5, 0xC1, 0xD4, 703 | 0x82, 0xF3, 0x60, 0x8A, 0x61, 0x0F, 0x13, 0x03, 0x0C, 0x7C, 0xE1, 0x07, 0x12, 0x07, 0xE6, 0x53, 704 | 0x97, 0x92, 0x07, 0x52, 0x17, 0xFA, 0x3F, 0xD9, 0x03, 0xA9, 0x0F, 0xF9, 0x17, 0xF6, 0x83, 0x1C, 705 | 0x20, 0xEF, 0xF0, 0x5F, 0x8B, 0xA1, 0xF1, 0x3F, 0x07, 0xC3, 0xB7, 0xFF, 0xFF, 0xFF, 0xCF, 0x67, 706 | 0x60, 0x50, 0xB8, 0xF9, 0x7F, 0x2D, 0x33, 0x03, 0x00, 0x82, 0x6D, 0x33, 0x03, 0x78, 0x9C, 0x63, 707 | 0x60, 0x60, 0x50, 0xF8, 0xCF, 0xC9, 0x00, 0x04, 0x07, 0xF6, 0x83, 0x48, 0x86, 0xEF, 0xB2, 0x60, 708 | 0xEA, 0x15, 0x13, 0x03, 0x0C, 0x7C, 0xE1, 0x07, 0xC9, 0xCE, 0xA7, 0x2E, 0x25, 0x0F, 0xA4, 0x2E, 709 | 0xF4, 0x7F, 0xB2, 0x07, 0x52, 0x1F, 0xF2, 0x2F, 0x80, 0xAC, 0xFE, 0x2E, 0xEF, 0xF0, 0x5F, 0x8B, 710 | 0xA1, 0xF1, 0x3F, 0x07, 0xC3, 0xB7, 0xFF, 0xFF, 0xFF, 0xCF, 0x07, 0xBA, 0xEB, 0xE6, 0xFF, 0xB5, 711 | 0xCC, 0x0C, 0x00, 0x85, 0x71, 0x33, 0x12, 0x78, 0x9C, 0x63, 0x60, 0x70, 0xF8, 0xC7, 0xCE, 0x00, 712 | 0x04, 0xDF, 0xE7, 0xAC, 0x07, 0x92, 0x06, 0x67, 0x18, 0x6E, 0xB0, 0x31, 0x40, 0xC1, 0x17, 0x7E, 713 | 0x20, 0x71, 0x60, 0x3E, 0x75, 0x29, 0x79, 0x20, 0x75, 0xA1, 0xFF, 0x93, 0x3D, 0x90, 0xFA, 0x90, 714 | 0x7F, 0x61, 0x3F, 0xC8, 0x66, 0x79, 0x87, 0xFF, 0x5A, 0x0C, 0x8D, 0xFF, 0x39, 0x18, 0xBE, 0xFD, 715 | 0xFF, 0xFF, 0x7F, 0x3E, 0x03, 0x83, 0xC2, 0xCD, 0xFF, 0x6B, 0x99, 0x19, 0x00, 0xD8, 0x7A, 0x33, 716 | 0xCC, 0x78, 0x9C, 0x63, 0x50, 0xB0, 0x60, 0x28, 0x60, 0x65, 0x60, 0xD8, 0x70, 0x9F, 0xE1, 0xBB, 717 | 0x3C, 0x03, 0x43, 0x41, 0x3F, 0xC3, 0x13, 0x1E, 0x06, 0x54, 0xF0, 0x85, 0x1F, 0x48, 0x1C, 0x98, 718 | 0x4F, 0x5D, 0x0A, 0x68, 0x17, 0xC3, 0x85, 0xFE, 0x4F, 0xF6, 0x40, 0xEA, 0x43, 0xFE, 0x85, 0xFD, 719 | 0x40, 0xEA, 0xBB, 0xBC, 0xC3, 0x7F, 0x2D, 0x86, 0xC6, 0xFF, 0x1C, 0x0C, 0xDF, 0xFE, 0xFF, 0xFF, 720 | 0x3F, 0x9F, 0x81, 0x41, 0xE1, 0xE6, 0xFF, 0xB5, 0xCC, 0x0C, 0x00, 0xFA, 0xFF, 0x33, 0xCC, 0x78, 721 | 0x9C, 0x63, 0x60, 0x60, 0x60, 0xF8, 0x2D, 0xC7, 0x00, 0x02, 0x01, 0xFF, 0x99, 0xC1, 0xF4, 0xC3, 722 | 0x78, 0x30, 0xC5, 0x70, 0x95, 0x83, 0x01, 0x01, 0x7E, 0xE8, 0x03, 0x09, 0x85, 0xFF, 0x1C, 0x0F, 723 | 0xD7, 0x03, 0xE9, 0x05, 0xEF, 0x19, 0x0A, 0xFE, 0x33, 0x31, 0x30, 0x7C, 0xCA, 0x67, 0x60, 0xF8, 724 | 0xC7, 0xC5, 0xC0, 0xF0, 0x8B, 0x97, 0x81, 0xE1, 0xAB, 0x3E, 0x83, 0xC1, 0x7F, 0x56, 0x06, 0x86, 725 | 0x0B, 0xEB, 0x19, 0x36, 0x9C, 0x07, 0xAA, 0x71, 0xF8, 0xCF, 0xFC, 0xD9, 0x1F, 0xA4, 0xF3, 0x37, 726 | 0xF7, 0x6F, 0x6E, 0x10, 0xFD, 0xB9, 0x1E, 0xA4, 0x05, 0xA8, 0xF9, 0xFF, 0x7C, 0xB0, 0x89, 0x0A, 727 | 0xFF, 0xE5, 0x21, 0x46, 0xFF, 0xE6, 0x22, 0x83, 0x06, 0x00, 0x6C, 0x2D, 0x25, 0xCF, 0x78, 0x9C, 728 | 0xFB, 0xCF, 0xC2, 0x00, 0x04, 0xFF, 0x31, 0xC9, 0xFF, 0xFF, 0xCF, 0x89, 0x33, 0xFC, 0xBF, 0x77, 729 | 0xF7, 0xFF, 0x7B, 0x66, 0xA0, 0x88, 0xC1, 0x5F, 0x3E, 0x90, 0xF8, 0xC7, 0x7C, 0x10, 0xB9, 0x61, 730 | 0x3E, 0x88, 0x3C, 0x00, 0x26, 0x3F, 0x81, 0x44, 0x02, 0xFF, 0xF1, 0x02, 0xD5, 0xFF, 0xBF, 0xCF, 731 | 0x04, 0x54, 0xBF, 0x86, 0x15, 0x9B, 0x69, 0x60, 0x12, 0x00, 0x77, 0xF3, 0x27, 0x06, 0x78, 0x9C, 732 | 0x25, 0xC5, 0xCB, 0x0D, 0x40, 0x40, 0x14, 0x05, 0xD0, 0x8B, 0x44, 0x88, 0xC4, 0x58, 0x5A, 0x2A, 733 | 0x41, 0x09, 0x3A, 0xA0, 0x13, 0x3A, 0x10, 0x25, 0x50, 0x88, 0x4F, 0x25, 0x74, 0x30, 0x25, 0x88, 734 | 0x98, 0x4C, 0x90, 0x98, 0x87, 0xE7, 0x6C, 0x0E, 0x5A, 0xD3, 0x3B, 0x40, 0x62, 0x56, 0xCA, 0x81, 735 | 0x51, 0xDA, 0xD3, 0x0C, 0x6C, 0x39, 0x52, 0x02, 0x76, 0x81, 0xE8, 0x4D, 0x09, 0x14, 0x92, 0x5B, 736 | 0x6A, 0x4E, 0x87, 0xDC, 0xE5, 0xFF, 0x05, 0x9C, 0x2A, 0xB9, 0x8A, 0xBC, 0x2F, 0xE8, 0x81, 0xCB, 737 | 0xC8, 0xFD, 0xC2, 0x19, 0x70, 0xC7, 0x5B, 0x63, 0xA5, 0xE4, 0x29, 0xA1, 0x57, 0x23, 0x2D, 0x25, 738 | 0xBA, 0x5B, 0xC6, 0x78, 0x00, 0x54, 0xFD, 0x30, 0xAE, 0x78, 0x9C, 0x63, 0xF8, 0x1A, 0xCF, 0x00, 739 | 0x04, 0x0D, 0xEF, 0x19, 0x41, 0xD4, 0x6F, 0x6E, 0x10, 0x79, 0x51, 0x9A, 0x01, 0x15, 0x4C, 0xFA, 740 | 0x7B, 0x9E, 0x9D, 0x21, 0xE0, 0xFF, 0xFD, 0x7F, 0xE7, 0x19, 0x3E, 0xF6, 0x33, 0x38, 0xFC, 0x67, 741 | 0x9B, 0xCC, 0xC9, 0xC0, 0xF0, 0x93, 0x0B, 0x24, 0xF5, 0x9D, 0x87, 0x61, 0xF2, 0xDF, 0xFF, 0xFF, 742 | 0x79, 0x1A, 0xFE, 0xAF, 0x9D, 0xF9, 0x87, 0xE7, 0x8B, 0x3F, 0x48, 0x04, 0x24, 0xF3, 0x9D, 0xE7, 743 | 0x17, 0xD0, 0xAC, 0xDF, 0x3C, 0xDF, 0xEA, 0x19, 0x0E, 0xFF, 0xE7, 0x39, 0xF0, 0xFF, 0xFF, 0xFF, 744 | 0x3F, 0x7C, 0x0C, 0x37, 0xDE, 0x5B, 0x7F, 0xD1, 0x07, 0x00, 0x53, 0xA5, 0x29, 0x6C, 0x78, 0x9C, 745 | 0x63, 0x60, 0x60, 0xF8, 0xD4, 0xCF, 0x00, 0x04, 0x7F, 0xB8, 0x81, 0x44, 0xC1, 0x7D, 0x10, 0x73, 746 | 0x81, 0x2E, 0x03, 0x2A, 0x98, 0xF4, 0xF7, 0x3C, 0x3B, 0x43, 0xC0, 0xFF, 0xFB, 0xFF, 0xCE, 0x33, 747 | 0x7C, 0xEC, 0x67, 0x70, 0xF8, 0xCF, 0x36, 0x99, 0x93, 0x81, 0xE1, 0x27, 0x17, 0x48, 0xEA, 0x3B, 748 | 0x0F, 0xC3, 0xE4, 0xBF, 0xFF, 0xFF, 0xF3, 0x34, 0xFC, 0x5F, 0x3B, 0xF3, 0x0F, 0xCF, 0x17, 0x7F, 749 | 0x90, 0x08, 0x48, 0xE6, 0x3B, 0xCF, 0x2F, 0xA0, 0x81, 0xBF, 0x79, 0xBE, 0xD5, 0x33, 0x1C, 0xFE, 750 | 0xCF, 0x73, 0xE0, 0xFF, 0xFF, 0xFF, 0x7F, 0xF8, 0x18, 0x6E, 0xBC, 0xB7, 0xFE, 0xA2, 0x0F, 0x00, 751 | 0x47, 0x81, 0x29, 0x5A, 0x78, 0x9C, 0x63, 0x60, 0x78, 0x92, 0xCF, 0xC0, 0xC0, 0x50, 0x70, 0xFE, 752 | 0x27, 0x17, 0x03, 0xC3, 0x61, 0xEE, 0x09, 0xB9, 0x0C, 0x28, 0x60, 0xD2, 0xDF, 0xF3, 0xEC, 0x0C, 753 | 0x01, 0xFF, 0xEF, 0xFF, 0x3B, 0xCF, 0xF0, 0xB1, 0x9F, 0xC1, 0xE1, 0x3F, 0xDB, 0x64, 0x4E, 0x06, 754 | 0x06, 0x90, 0x52, 0x06, 0x86, 0xEF, 0x3C, 0x0C, 0x93, 0xFF, 0xFE, 0xFF, 0xCF, 0xD3, 0xF0, 0x7F, 755 | 0xED, 0xCC, 0x3F, 0x3C, 0x5F, 0xFC, 0x41, 0x22, 0x20, 0x99, 0xEF, 0x3C, 0xBF, 0xB8, 0x19, 0x18, 756 | 0x7E, 0xF3, 0x7C, 0xAB, 0x67, 0x38, 0xFC, 0x9F, 0xE7, 0xC0, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x31, 757 | 0xDC, 0x78, 0x6F, 0xFD, 0x45, 0x1F, 0x00, 0x7D, 0x2E, 0x2A, 0x16, 0x78, 0x9C, 0x63, 0x68, 0xAC, 758 | 0x66, 0x7C, 0xCC, 0xC2, 0xF0, 0xE7, 0xFF, 0xF9, 0xFF, 0x4C, 0x02, 0xFD, 0x06, 0xBF, 0x63, 0x19, 759 | 0x50, 0xC0, 0xA4, 0xBF, 0xE7, 0xD9, 0x19, 0x02, 0xFE, 0xDF, 0xFF, 0x77, 0x9E, 0xE1, 0x63, 0x3F, 760 | 0x83, 0xC3, 0x7F, 0xB6, 0xC9, 0x9C, 0x0C, 0x0C, 0x3F, 0xB9, 0x40, 0x52, 0xDF, 0x79, 0x18, 0x26, 761 | 0xFF, 0xFD, 0xFF, 0x9F, 0xA7, 0xE1, 0xFF, 0xDA, 0x99, 0x7F, 0x78, 0xBE, 0xF8, 0x83, 0x44, 0x40, 762 | 0x32, 0xDF, 0x79, 0x7E, 0x71, 0x33, 0x30, 0xFC, 0xE6, 0xF9, 0x56, 0xCF, 0x70, 0xF8, 0x3F, 0xCF, 763 | 0x81, 0xFF, 0xFF, 0xFF, 0xFF, 0xE1, 0x63, 0xB8, 0xF1, 0xDE, 0xFA, 0x8B, 0x3E, 0x00, 0x72, 0x17, 764 | 0x2C, 0x8C, 0x78, 0x9C, 0x63, 0x68, 0x66, 0x16, 0xF0, 0x60, 0x60, 0xF8, 0xC3, 0xD3, 0xF0, 0x9F, 765 | 0x81, 0xE1, 0x07, 0xBB, 0xC3, 0x7E, 0x06, 0x14, 0x30, 0xE9, 0xEF, 0x79, 0x76, 0x86, 0x80, 0xFF, 766 | 0xF7, 0xFF, 0x9D, 0x67, 0xF8, 0xD8, 0xCF, 0xE0, 0xF0, 0x9F, 0x6D, 0x32, 0x27, 0x03, 0xC3, 0x4F, 767 | 0x2E, 0x90, 0xD4, 0x77, 0x1E, 0x86, 0xC9, 0x7F, 0xFF, 0xFF, 0x07, 0x6A, 0x5C, 0x3B, 0xF3, 0x0F, 768 | 0xCF, 0x17, 0x7F, 0x90, 0x08, 0x48, 0xE6, 0x3B, 0xCF, 0x2F, 0x6E, 0x06, 0x86, 0xDF, 0x3C, 0xDF, 769 | 0xEA, 0x19, 0x0E, 0xFF, 0xE7, 0x39, 0xF0, 0xFF, 0xFF, 0xFF, 0x3F, 0x7C, 0x0C, 0x37, 0xDE, 0x5B, 770 | 0x7F, 0xD1, 0x07, 0x00, 0x79, 0xB8, 0x2A, 0x19, 0x78, 0x9C, 0x63, 0x60, 0x78, 0xD6, 0xC7, 0xC0, 771 | 0xC0, 0xE0, 0xE0, 0x7F, 0x99, 0x8D, 0x81, 0xA1, 0x80, 0xBB, 0x81, 0x0B, 0xCC, 0x66, 0x07, 0x0A, 772 | 0x3D, 0x9F, 0xC7, 0x80, 0x0A, 0x26, 0xFD, 0x3D, 0xCF, 0xCE, 0x10, 0xF0, 0xFF, 0xFE, 0xBF, 0xF3, 773 | 0x0C, 0x1F, 0xFB, 0x19, 0x1C, 0xFE, 0xB3, 0x4D, 0xE6, 0x64, 0x60, 0xF8, 0xC9, 0x05, 0x92, 0xFA, 774 | 0xCE, 0xC3, 0x30, 0xF9, 0xEF, 0xFF, 0xFF, 0x3C, 0x0D, 0xFF, 0xD7, 0xCE, 0xFC, 0xC3, 0xF3, 0xC5, 775 | 0x1F, 0x24, 0x02, 0x92, 0xF9, 0xCE, 0xF3, 0x8B, 0x9B, 0x81, 0xE1, 0x37, 0xCF, 0xB7, 0x7A, 0x86, 776 | 0xC3, 0xFF, 0x79, 0x0E, 0xFC, 0xFF, 0xFF, 0xFF, 0x0F, 0x1F, 0xC3, 0x8D, 0xF7, 0xD6, 0x5F, 0xF4, 777 | 0x01, 0x36, 0xA0, 0x2B, 0x85, 0x78, 0x9C, 0x63, 0x08, 0x78, 0xFD, 0xDE, 0x8A, 0xE1, 0xF8, 0xFF, 778 | 0x1A, 0x06, 0x06, 0x86, 0x3F, 0xFF, 0xFF, 0xFD, 0x3F, 0x06, 0xC4, 0x3C, 0x0C, 0x0D, 0xFF, 0xD9, 779 | 0x18, 0x7E, 0xFE, 0xD7, 0x61, 0xB8, 0x3C, 0x9F, 0x21, 0x20, 0x93, 0x81, 0xE1, 0xC3, 0x7B, 0x46, 780 | 0x06, 0x87, 0xFF, 0x0C, 0x20, 0x70, 0x61, 0x3E, 0x90, 0xF8, 0xCF, 0xCC, 0xD0, 0xF8, 0xF7, 0x3F, 781 | 0x04, 0xB0, 0x28, 0xFC, 0xBB, 0xBF, 0xFB, 0xF7, 0xFD, 0x33, 0x40, 0xC0, 0xBC, 0xE1, 0x3D, 0x33, 782 | 0xC3, 0x85, 0x7E, 0xB0, 0xBA, 0x0F, 0xF1, 0x40, 0xB5, 0xFB, 0x21, 0x4C, 0x7F, 0x06, 0x86, 0x07, 783 | 0x40, 0x2D, 0x40, 0x70, 0xE0, 0x3C, 0xA3, 0xC3, 0xDF, 0xFF, 0x7E, 0x0C, 0x0A, 0x95, 0x40, 0xF3, 784 | 0xEE, 0xFF, 0xBB, 0x7F, 0xE8, 0xFF, 0xBD, 0xFF, 0xF7, 0x19, 0x18, 0x36, 0xFF, 0xDF, 0xC7, 0xC6, 785 | 0xB0, 0xED, 0x1F, 0x90, 0x00, 0x00, 0x2B, 0xF7, 0x43, 0x2A, 0x78, 0x9C, 0x63, 0x28, 0xF8, 0x73, 786 | 0x9E, 0x9D, 0x41, 0xE1, 0xEF, 0xFB, 0xFF, 0xE7, 0x19, 0x0E, 0x9C, 0x67, 0x72, 0xF8, 0xC7, 0xF9, 787 | 0x55, 0x9E, 0x81, 0xE1, 0x0B, 0xFF, 0x2F, 0x4E, 0x06, 0x86, 0x03, 0x3A, 0x7F, 0xD8, 0x18, 0x80, 788 | 0xE0, 0x2F, 0x84, 0x64, 0x07, 0x91, 0x20, 0xF1, 0x04, 0x31, 0x90, 0x9A, 0xCF, 0xF2, 0x17, 0xCE, 789 | 0x33, 0x19, 0xFC, 0xE5, 0x54, 0xF8, 0xF7, 0xFE, 0xDF, 0x7E, 0x06, 0x86, 0xC6, 0xBF, 0xE7, 0x41, 790 | 0xCA, 0xBE, 0x81, 0x55, 0x1D, 0xDD, 0x0F, 0x22, 0x19, 0xFE, 0x80, 0x88, 0xE6, 0xF3, 0x20, 0xF2, 791 | 0xA5, 0x24, 0x03, 0x03, 0x00, 0x34, 0xAA, 0x22, 0x68, 0x78, 0x9C, 0x63, 0xF8, 0xA1, 0xCF, 0x00, 792 | 0x04, 0x1B, 0xEE, 0x83, 0x48, 0x81, 0xBF, 0x1C, 0x20, 0xEA, 0x11, 0x17, 0x03, 0x2A, 0x48, 0xF8, 793 | 0x73, 0x9E, 0x9D, 0x41, 0xE0, 0xCF, 0xFB, 0xFF, 0xE7, 0x19, 0x16, 0x9C, 0x67, 0x72, 0xF8, 0xC7, 794 | 0xF1, 0x59, 0x8E, 0x81, 0xE1, 0x0B, 0xFF, 0x4F, 0x4E, 0x06, 0x86, 0x0F, 0xF6, 0x7F, 0xFE, 0x03, 795 | 0x81, 0xFF, 0xDF, 0x7B, 0x77, 0xEF, 0xDE, 0xF5, 0xFD, 0xC3, 0x0E, 0x52, 0xFE, 0x8B, 0x1B, 0x44, 796 | 0x7E, 0xB5, 0x67, 0x60, 0x50, 0x60, 0xB8, 0xF0, 0x9E, 0x85, 0xE1, 0x1B, 0xAF, 0xC0, 0xDF, 0xF7, 797 | 0x7F, 0xFF, 0xB3, 0x32, 0x14, 0xFC, 0xB9, 0xAF, 0xC9, 0x00, 0x00, 0x9D, 0xA9, 0x28, 0x48, 0x78, 798 | 0x9C, 0x63, 0x60, 0x60, 0xF8, 0x1A, 0xCF, 0xC0, 0xC0, 0x20, 0xF0, 0x8F, 0x03, 0x48, 0x2E, 0xD8, 799 | 0x0F, 0x24, 0x18, 0x36, 0xF2, 0x30, 0xA0, 0x82, 0x84, 0x3F, 0xE7, 0xD9, 0x19, 0x04, 0xFE, 0xBC, 800 | 0xFF, 0x7F, 0x9E, 0x61, 0xC1, 0x79, 0x26, 0x87, 0x7F, 0x1C, 0x9F, 0xE5, 0x18, 0x18, 0xBE, 0xF0, 801 | 0xFF, 0xE4, 0x64, 0x60, 0xF8, 0x60, 0xFF, 0xE7, 0x3F, 0x10, 0xF8, 0xFF, 0xBD, 0x77, 0xF7, 0xEE, 802 | 0x5D, 0xDF, 0x3F, 0xEC, 0x20, 0xE5, 0xBF, 0xB8, 0x41, 0xE4, 0x57, 0x7B, 0x06, 0x06, 0x05, 0x86, 803 | 0x0B, 0xEF, 0x59, 0x18, 0xBE, 0xF1, 0x0A, 0xFC, 0x7D, 0xFF, 0xF7, 0x3F, 0x2B, 0x43, 0xC1, 0x9F, 804 | 0xFB, 0x9A, 0x0C, 0x00, 0x85, 0xB3, 0x28, 0x17, 0x78, 0x9C, 0x63, 0x60, 0xF8, 0xEE, 0xC7, 0xC0, 805 | 0xC0, 0xB0, 0x60, 0xFE, 0x1F, 0x76, 0x06, 0x86, 0x6B, 0x9C, 0x1B, 0x6C, 0x18, 0x50, 0x40, 0xC2, 806 | 0x9F, 0xF3, 0xEC, 0x0C, 0x02, 0x7F, 0xDE, 0xFF, 0x3F, 0xCF, 0xB0, 0xE0, 0x3C, 0x93, 0xC3, 0x3F, 807 | 0x8E, 0xCF, 0x72, 0x0C, 0x0C, 0x5F, 0xF8, 0x7F, 0x72, 0x32, 0x30, 0x7C, 0xB0, 0xFF, 0xF3, 0x1F, 808 | 0x08, 0xFC, 0xFF, 0xDE, 0xBB, 0x7B, 0xF7, 0xAE, 0x2F, 0x48, 0x3B, 0x03, 0xC3, 0x2F, 0x6E, 0x10, 809 | 0xF9, 0xD5, 0x9E, 0x81, 0x41, 0x81, 0xE1, 0xC2, 0x7B, 0x16, 0x86, 0x6F, 0xBC, 0x02, 0x7F, 0xDF, 810 | 0xFF, 0xFD, 0xCF, 0xCA, 0x50, 0xF0, 0xE7, 0xBE, 0x26, 0x03, 0x00, 0xC2, 0xB5, 0x28, 0xE3, 0x78, 811 | 0x9C, 0x63, 0x68, 0x61, 0x54, 0xB0, 0x60, 0x60, 0xF8, 0xCF, 0xB9, 0xE1, 0x3E, 0x03, 0xC3, 0x6F, 812 | 0xD6, 0x82, 0x7E, 0x06, 0x14, 0x90, 0xF0, 0xE7, 0x3C, 0x3B, 0x83, 0xC0, 0x9F, 0xF7, 0xFF, 0xCF, 813 | 0x33, 0x2C, 0x38, 0xCF, 0xE4, 0xF0, 0x8F, 0xE3, 0xB3, 0x1C, 0x03, 0xC3, 0x17, 0xFE, 0x9F, 0x9C, 814 | 0x0C, 0x0C, 0x1F, 0xEC, 0xFF, 0xFC, 0x07, 0x02, 0xFF, 0xBF, 0xF7, 0xEE, 0xDE, 0xBD, 0xEB, 0xFB, 815 | 0x87, 0x1D, 0xA4, 0xFC, 0x17, 0x37, 0x88, 0xFC, 0x6A, 0xCF, 0xC0, 0xA0, 0xC0, 0x70, 0xE1, 0x3D, 816 | 0x0B, 0xC3, 0x37, 0x5E, 0x81, 0xBF, 0xEF, 0xFF, 0xFE, 0x67, 0x65, 0x28, 0xF8, 0x73, 0x5F, 0x93, 817 | 0x01, 0x00, 0xCA, 0xED, 0x29, 0x04, 0x78, 0x9C, 0xFB, 0x1A, 0xCF, 0xD0, 0xF0, 0x9E, 0x91, 0xE1, 818 | 0x37, 0x37, 0xC3, 0x45, 0x69, 0x06, 0x08, 0xF8, 0xA8, 0x4F, 0x0C, 0x02, 0x00, 0x18, 0xD2, 0x13, 819 | 0x57, 0x78, 0x9C, 0x63, 0xF8, 0xD4, 0xCF, 0xF0, 0x87, 0xBB, 0xE1, 0x3E, 0xC3, 0x02, 0x5D, 0x06, 820 | 0x08, 0xF8, 0xA8, 0x4F, 0x14, 0x02, 0x00, 0x26, 0x76, 0x13, 0x55, 0x78, 0x9C, 0x63, 0x78, 0x92, 821 | 0xCF, 0x50, 0x70, 0xFE, 0x27, 0xD7, 0x61, 0xEE, 0x09, 0xB9, 0x0C, 0x30, 0xF0, 0x51, 0x9F, 0x64, 822 | 0x0C, 0x00, 0xED, 0x70, 0x14, 0x01, 0x78, 0x9C, 0x6B, 0x66, 0x16, 0xF0, 0x60, 0xF8, 0xC3, 0xD3, 823 | 0xF0, 0x9F, 0xE1, 0x07, 0xBB, 0xC3, 0x7E, 0x06, 0x24, 0xF0, 0x51, 0x9F, 0x32, 0x02, 0x00, 0xAB, 824 | 0xDB, 0x14, 0x04, 0x78, 0x9C, 0x63, 0x38, 0x2A, 0xCE, 0x00, 0x02, 0xBF, 0xFF, 0x73, 0x1E, 0xE2, 825 | 0x66, 0x60, 0x08, 0xF8, 0xF3, 0xFE, 0x3D, 0x2B, 0x90, 0x5B, 0xF0, 0xDF, 0x1F, 0x24, 0xFA, 0xFD, 826 | 0xDE, 0x7D, 0x46, 0x06, 0x06, 0x85, 0xF5, 0x82, 0xFF, 0x38, 0x81, 0x3C, 0x46, 0x86, 0xAF, 0xF2, 827 | 0x40, 0x25, 0x6F, 0xF6, 0x5F, 0xA9, 0x67, 0x60, 0xF8, 0xF5, 0xFF, 0xDF, 0xFB, 0xFD, 0x40, 0x75, 828 | 0x6C, 0x0C, 0x4F, 0xDF, 0x33, 0x3C, 0xE8, 0x07, 0x8A, 0xFF, 0x67, 0xF8, 0xC2, 0xCF, 0xC0, 0x60, 829 | 0xF0, 0x9F, 0xE1, 0x1B, 0x1F, 0x84, 0xE2, 0x05, 0x0A, 0xBE, 0x07, 0x0B, 0x4E, 0x38, 0xCF, 0xF0, 830 | 0x00, 0xA8, 0xE7, 0x63, 0x3E, 0x48, 0x83, 0xC0, 0x6F, 0xA0, 0xC4, 0xCF, 0xFF, 0x7F, 0xDF, 0x33, 831 | 0x31, 0x30, 0x38, 0xBC, 0xBE, 0x2F, 0xC1, 0xC0, 0x00, 0x00, 0x3A, 0x0D, 0x30, 0xA2, 0x78, 0x9C, 832 | 0x63, 0x98, 0x98, 0xCD, 0x70, 0x95, 0x99, 0xE1, 0xEF, 0xFF, 0x73, 0xEF, 0x19, 0x0D, 0xEA, 0x1D, 833 | 0xFE, 0xF8, 0x32, 0x20, 0x83, 0x2F, 0xBC, 0xC7, 0xFE, 0xFB, 0x30, 0x7C, 0xD9, 0xF7, 0xFF, 0xFF, 834 | 0x7F, 0x96, 0x2F, 0xFF, 0xD9, 0x0C, 0xFE, 0xF2, 0x7C, 0xF1, 0x67, 0x60, 0xF8, 0xCA, 0xFF, 0x85, 835 | 0x9F, 0x81, 0xE1, 0x93, 0x3C, 0xA9, 0x24, 0x00, 0x91, 0x03, 0x27, 0xB9, 0x78, 0x9C, 0x63, 0xF8, 836 | 0xE6, 0xCF, 0x00, 0x02, 0x13, 0xDE, 0x33, 0x82, 0xE9, 0x3F, 0x5C, 0x60, 0xEA, 0xA2, 0x34, 0x03, 837 | 0x06, 0x48, 0x78, 0x73, 0x5F, 0x82, 0x81, 0x41, 0xE0, 0xCF, 0xFB, 0x7F, 0xEF, 0x99, 0x19, 0x36, 838 | 0xBC, 0x67, 0x51, 0xF8, 0x23, 0xC7, 0xF0, 0x45, 0x9F, 0x81, 0xE1, 0x42, 0x3F, 0xC3, 0x2F, 0xA0, 839 | 0xAE, 0x84, 0xF7, 0x0C, 0x7F, 0xD8, 0x19, 0x18, 0x0C, 0xFE, 0x33, 0xFE, 0x63, 0x63, 0x60, 0x50, 840 | 0xF8, 0xCF, 0xF8, 0x17, 0xCC, 0x83, 0xC9, 0x7D, 0x85, 0xA8, 0x3C, 0x70, 0x9F, 0x59, 0xE0, 0xB7, 841 | 0x1C, 0x83, 0xC0, 0x5F, 0xB0, 0x29, 0x0C, 0x05, 0x7F, 0x40, 0x66, 0x02, 0x00, 0x7C, 0x50, 0x27, 842 | 0x12, 0x78, 0x9C, 0x63, 0x60, 0x60, 0xF8, 0x5C, 0xCF, 0x00, 0x02, 0x7F, 0xB9, 0x40, 0xE4, 0x84, 843 | 0xF3, 0x60, 0xCE, 0x06, 0x59, 0x06, 0x0C, 0x90, 0xF0, 0xE6, 0xBE, 0x04, 0x03, 0x83, 0xC0, 0x9F, 844 | 0xF7, 0xFF, 0xDE, 0x33, 0x33, 0x6C, 0x78, 0xCF, 0xA2, 0xF0, 0x47, 0x8E, 0xE1, 0x8B, 0x3E, 0x03, 845 | 0xC3, 0x85, 0x7E, 0x86, 0x5F, 0x40, 0xBD, 0x09, 0xEF, 0x19, 0xFE, 0xB0, 0x33, 0x30, 0x18, 0xFC, 846 | 0x67, 0xFC, 0xC7, 0xC6, 0xC0, 0xA0, 0xF0, 0x9F, 0xF1, 0x2F, 0x98, 0x07, 0x93, 0xFB, 0x0A, 0x51, 847 | 0x79, 0xE0, 0x3E, 0xB3, 0xC0, 0x6F, 0x39, 0x06, 0x81, 0xBF, 0x60, 0x53, 0x18, 0x0A, 0xFE, 0x80, 848 | 0xCC, 0x04, 0x00, 0x6E, 0xC8, 0x27, 0x00, 0x78, 0x9C, 0x63, 0x60, 0xF8, 0x1A, 0xCF, 0x00, 0x04, 849 | 0x0D, 0xFB, 0x7F, 0x71, 0x02, 0xA9, 0x2B, 0x5C, 0x0B, 0x62, 0x19, 0xD0, 0x41, 0xC2, 0x9B, 0xFB, 850 | 0x12, 0x0C, 0x0C, 0x02, 0x7F, 0xDE, 0xFF, 0x7B, 0xCF, 0xCC, 0xB0, 0xE1, 0x3D, 0x8B, 0xC2, 0x1F, 851 | 0x39, 0x86, 0x2F, 0xFA, 0x0C, 0x0C, 0x17, 0xFA, 0x19, 0x7E, 0x71, 0x01, 0xA5, 0xDF, 0x33, 0xFC, 852 | 0x61, 0x67, 0x60, 0x30, 0xF8, 0xCF, 0xF8, 0x8F, 0x8D, 0x81, 0x41, 0xE1, 0x3F, 0xE3, 0x5F, 0x30, 853 | 0x0F, 0x26, 0xF7, 0x15, 0xA2, 0xF2, 0xC0, 0x7D, 0x66, 0x81, 0xDF, 0x72, 0x0C, 0x02, 0x7F, 0xC1, 854 | 0xA6, 0x30, 0x14, 0xFC, 0x01, 0x99, 0x09, 0x00, 0xB4, 0xF7, 0x27, 0xCC, 0x78, 0x9C, 0x63, 0x68, 855 | 0xCC, 0x66, 0x78, 0xC2, 0xCC, 0xC0, 0xF0, 0xF7, 0xFF, 0xF9, 0xFF, 0x8C, 0x0C, 0x06, 0xF5, 0x0E, 856 | 0xBF, 0x7D, 0x19, 0xD0, 0x41, 0xC2, 0x9B, 0xFB, 0x12, 0x0C, 0x0C, 0x02, 0x7F, 0xDE, 0xFF, 0x7B, 857 | 0xCF, 0xCC, 0xB0, 0xE1, 0x3D, 0x8B, 0xC2, 0x1F, 0x39, 0x86, 0x2F, 0xFA, 0x0C, 0x0C, 0x17, 0xFA, 858 | 0x19, 0x7E, 0x71, 0x01, 0xA5, 0xDF, 0x33, 0xFC, 0x61, 0x67, 0x60, 0x30, 0xF8, 0xCF, 0xF8, 0x8F, 859 | 0x8D, 0x81, 0x41, 0xE1, 0x3F, 0xE3, 0x5F, 0x30, 0x0F, 0x26, 0xF7, 0x15, 0xA2, 0xF2, 0xC0, 0x7D, 860 | 0x66, 0x81, 0xDF, 0x72, 0x0C, 0x02, 0x7F, 0xC1, 0xA6, 0x30, 0x14, 0xFC, 0x01, 0x99, 0x09, 0x00, 861 | 0xCB, 0x47, 0x2A, 0x30, 0x78, 0x9C, 0x63, 0x68, 0x66, 0x12, 0xF0, 0x60, 0x60, 0x60, 0xF8, 0xCB, 862 | 0x3D, 0xE1, 0x3F, 0x90, 0xFA, 0xC9, 0x1E, 0xB0, 0x9E, 0x01, 0x1D, 0x24, 0xBC, 0xB9, 0x2F, 0xC1, 863 | 0xC0, 0x20, 0xF0, 0xE7, 0xFD, 0xBF, 0xF7, 0xCC, 0x0C, 0x1B, 0xDE, 0xB3, 0x28, 0xFC, 0x91, 0x63, 864 | 0xF8, 0xA2, 0xCF, 0xC0, 0x70, 0xA1, 0x9F, 0xE1, 0x17, 0x17, 0x50, 0xFA, 0x3D, 0xC3, 0x1F, 0x76, 865 | 0x06, 0x06, 0x83, 0xFF, 0x8C, 0xFF, 0xD8, 0x18, 0x18, 0x14, 0xFE, 0x33, 0xFE, 0x05, 0xF3, 0x60, 866 | 0x72, 0x5F, 0x21, 0x2A, 0x0F, 0xDC, 0x67, 0x16, 0xF8, 0x2D, 0xC7, 0x20, 0xF0, 0x17, 0x6C, 0x0A, 867 | 0x43, 0xC1, 0x1F, 0x90, 0x99, 0x00, 0xB0, 0xB2, 0x27, 0xCE, 0x78, 0x9C, 0x63, 0x60, 0x60, 0x10, 868 | 0x64, 0x00, 0x01, 0x83, 0xFF, 0xCC, 0x20, 0xCA, 0xE1, 0x3F, 0x2B, 0x98, 0x9B, 0xC6, 0x80, 0x0E, 869 | 0x3E, 0xFD, 0x07, 0x01, 0x7E, 0x28, 0xE5, 0xE0, 0x02, 0x02, 0x2C, 0x08, 0x69, 0xAC, 0xA6, 0xA4, 870 | 0x02, 0x31, 0x00, 0xB0, 0x2D, 0x13, 0x6A, 0x78, 0x9C, 0x1D, 0x8D, 0xD1, 0x09, 0x83, 0x30, 0x14, 871 | 0x00, 0x4F, 0x52, 0x0C, 0x15, 0x0A, 0xF9, 0xEC, 0x57, 0x70, 0x83, 0xBA, 0x91, 0x6E, 0x20, 0xDD, 872 | 0xC0, 0x0D, 0xB2, 0x4A, 0x47, 0xE8, 0x08, 0x6E, 0x10, 0xBF, 0x83, 0x10, 0x0A, 0x15, 0x41, 0xA3, 873 | 0xAF, 0xD6, 0xFB, 0x39, 0xEE, 0xEB, 0x00, 0xCA, 0x0B, 0x7F, 0x86, 0x2B, 0x34, 0xA3, 0x5F, 0x33, 874 | 0x4C, 0x8A, 0xBB, 0x28, 0x5E, 0x5E, 0x75, 0x62, 0xF9, 0x3E, 0x18, 0x82, 0x63, 0x29, 0x98, 0x9F, 875 | 0x9E, 0xA4, 0x8D, 0xAB, 0x84, 0x2D, 0xEF, 0x6C, 0x29, 0x59, 0xD2, 0x1F, 0x7D, 0xD4, 0x52, 0x04, 876 | 0x9A, 0xC8, 0x54, 0xB7, 0xF4, 0x8E, 0xB7, 0xDC, 0xCC, 0x6A, 0x31, 0x5B, 0xDC, 0xA3, 0x82, 0x90, 877 | 0xFC, 0xFD, 0x98, 0xD4, 0xE7, 0xA4, 0xCA, 0x4F, 0xFD, 0x00, 0x81, 0x5E, 0x2B, 0xB4, 0x78, 0x9C, 878 | 0x63, 0xF8, 0x6E, 0xCF, 0x00, 0x04, 0x1B, 0xEE, 0x83, 0x48, 0x86, 0xBF, 0x1C, 0x20, 0xF2, 0x11, 879 | 0x17, 0x03, 0x0A, 0xF8, 0xCA, 0xC7, 0xC0, 0xF0, 0x59, 0x9E, 0x04, 0x92, 0x1F, 0x44, 0x7E, 0xD6, 880 | 0x67, 0x60, 0xF8, 0x26, 0xFF, 0x61, 0x3F, 0x63, 0xC2, 0x7F, 0xF9, 0x82, 0xFF, 0xFF, 0xFF, 0xFF, 881 | 0x95, 0x67, 0x38, 0xFA, 0xBF, 0xF6, 0x93, 0x3C, 0x00, 0x52, 0x2D, 0x24, 0xB5, 0x78, 0x9C, 0x63, 882 | 0x60, 0x60, 0xF8, 0x12, 0xCF, 0xC0, 0xC0, 0x20, 0xF0, 0x8F, 0x03, 0x48, 0x2E, 0xD8, 0x0F, 0x24, 883 | 0x18, 0x36, 0xF2, 0x32, 0xA0, 0x80, 0xAF, 0x7C, 0x0C, 0x0C, 0x9F, 0xE5, 0x49, 0x20, 0xF9, 0x41, 884 | 0xE4, 0x67, 0x7D, 0x06, 0x86, 0x6F, 0xF2, 0x1F, 0xF6, 0x33, 0x26, 0xFC, 0x97, 0x2F, 0xF8, 0xFF, 885 | 0xFF, 0xFF, 0x5F, 0x79, 0x86, 0xA3, 0xFF, 0x6B, 0x3F, 0xC9, 0x03, 0x00, 0x39, 0xE6, 0x24, 0x85, 886 | 0x78, 0x9C, 0x63, 0x60, 0xF8, 0xE6, 0xCF, 0xC0, 0xC0, 0x30, 0x61, 0xFE, 0x6F, 0x76, 0x06, 0x86, 887 | 0xAB, 0x9C, 0x1B, 0x7C, 0x18, 0x90, 0xC1, 0x57, 0x3E, 0x06, 0x86, 0xCF, 0xF2, 0x24, 0x90, 0xFC, 888 | 0x20, 0xF2, 0xB3, 0x3E, 0x03, 0xC3, 0x37, 0xF9, 0x0F, 0xFB, 0x19, 0x13, 0xFE, 0xCB, 0x17, 0xFC, 889 | 0xFF, 0xFF, 0xFF, 0xAF, 0x3C, 0xC3, 0xD1, 0xFF, 0xB5, 0x9F, 0xE4, 0x01, 0x75, 0xA7, 0x25, 0x4F, 890 | 0x78, 0x9C, 0x63, 0x68, 0x61, 0x54, 0xB0, 0x60, 0x60, 0xF8, 0xCF, 0xB9, 0xE1, 0x3E, 0x03, 0xC3, 891 | 0x2F, 0xD6, 0x82, 0xF9, 0x0C, 0xC8, 0xE0, 0x2B, 0x1F, 0x03, 0xC3, 0x67, 0x79, 0x12, 0x48, 0x7E, 892 | 0x10, 0xF9, 0x59, 0x9F, 0x81, 0xE1, 0x9B, 0xFC, 0x87, 0xFD, 0x8C, 0x09, 0xFF, 0xE5, 0x0B, 0xFE, 893 | 0xFF, 0xFF, 0xFF, 0x57, 0x9E, 0xE1, 0xE8, 0xFF, 0xDA, 0x4F, 0xF2, 0x00, 0x84, 0x93, 0x25, 0x81, 894 | 0x78, 0x9C, 0x63, 0x60, 0x60, 0x78, 0xB8, 0x9E, 0x01, 0x08, 0x7E, 0xF3, 0x00, 0x89, 0x84, 0xF7, 895 | 0x8C, 0x40, 0x72, 0x82, 0x1D, 0x03, 0x0A, 0xF8, 0xC1, 0xC7, 0xC0, 0xF0, 0x31, 0xFE, 0x93, 0x3D, 896 | 0x03, 0xC3, 0x37, 0xFE, 0x0B, 0xF3, 0x81, 0x4A, 0xB9, 0x0A, 0xDE, 0x33, 0x30, 0xFC, 0x67, 0x11, 897 | 0xF8, 0xCF, 0x12, 0x00, 0x64, 0xFC, 0xE6, 0x5C, 0xD0, 0xCF, 0xC0, 0xF0, 0x95, 0xEF, 0x03, 0x50, 898 | 0xC1, 0x03, 0xFF, 0x2F, 0xBC, 0x40, 0x03, 0xD6, 0xFF, 0x64, 0x67, 0x60, 0x30, 0xF8, 0xFF, 0x0F, 899 | 0x64, 0xDA, 0xDF, 0xF3, 0x20, 0x33, 0xBE, 0xE7, 0x83, 0xC8, 0x4F, 0xF2, 0x20, 0xF2, 0x2B, 0x17, 900 | 0x88, 0xFC, 0xC3, 0x0A, 0x24, 0x1A, 0xEF, 0x03, 0x89, 0x0F, 0xFF, 0xFD, 0x81, 0xE4, 0x85, 0xF3, 901 | 0x2C, 0x40, 0x12, 0x00, 0x93, 0xBB, 0x26, 0xF0, 0x78, 0x9C, 0xFB, 0x2C, 0xCF, 0x00, 0x04, 0x9F, 902 | 0x09, 0x90, 0xD7, 0xDF, 0x5B, 0x33, 0x7C, 0xBE, 0xFF, 0xFF, 0xFF, 0x7F, 0xD6, 0xCF, 0xEF, 0x59, 903 | 0x0D, 0xFE, 0xC8, 0x7F, 0xB6, 0x67, 0x60, 0xF8, 0xD8, 0x0F, 0x92, 0x9D, 0x70, 0x1E, 0x44, 0x26, 904 | 0xBC, 0x07, 0x91, 0x0E, 0xFF, 0x41, 0x64, 0x00, 0x98, 0xDD, 0x70, 0xFE, 0xB3, 0x3E, 0x03, 0xC3, 905 | 0x83, 0xFE, 0xCF, 0xF7, 0x99, 0x05, 0x80, 0xEA, 0xDF, 0xBF, 0xFF, 0x07, 0xD4, 0xAB, 0x7F, 0xE3, 906 | 0xBF, 0x35, 0x01, 0xBB, 0x00, 0x51, 0x12, 0x32, 0xFF, 0x78, 0x9C, 0x63, 0x68, 0x62, 0x66, 0x08, 907 | 0x67, 0x60, 0xF8, 0xC5, 0x97, 0xF0, 0x9F, 0x91, 0xE1, 0x1B, 0xA7, 0xC1, 0x39, 0x06, 0x64, 0xF0, 908 | 0x83, 0x8F, 0x81, 0xE1, 0x63, 0xFC, 0x27, 0x7B, 0x06, 0x86, 0x6F, 0xFC, 0x17, 0xE6, 0x33, 0x30, 909 | 0xFC, 0xE6, 0x2A, 0x78, 0xCF, 0xC0, 0xF0, 0x9F, 0x45, 0xE0, 0x3F, 0x4B, 0x00, 0x90, 0xF1, 0x9B, 910 | 0x73, 0x41, 0x3F, 0x03, 0xC3, 0x57, 0xBE, 0x0F, 0x40, 0x05, 0x0F, 0xFC, 0xBF, 0xF0, 0x32, 0x30, 911 | 0x4C, 0x58, 0xFF, 0x93, 0x9D, 0x81, 0xC1, 0xE0, 0xFF, 0x3F, 0x46, 0xA0, 0xEE, 0xBF, 0xE7, 0x41, 912 | 0x66, 0x7C, 0xCF, 0x07, 0x91, 0x9F, 0xE4, 0x41, 0xE4, 0x57, 0x2E, 0x10, 0xF9, 0x87, 0x15, 0x48, 913 | 0x34, 0xDE, 0x07, 0x12, 0x1F, 0xFE, 0xFB, 0x03, 0xC9, 0x0B, 0xE7, 0x59, 0x80, 0x24, 0x00, 0xC2, 914 | 0x09, 0x27, 0x7C, 915 | }; 916 | const EpdGlyph robotoGlyphs[] = { 917 | { 0, 0, 6, 0, 0, 8, 0 }, // 918 | { 4, 18, 6, 1, 18, 31, 8 }, // ! 919 | { 6, 6, 8, 1, 19, 27, 39 }, // " 920 | { 15, 18, 15, 1, 18, 122, 66 }, // # 921 | { 12, 24, 14, 1, 21, 126, 188 }, // $ 922 | { 17, 18, 18, 1, 18, 125, 314 }, // % 923 | { 15, 18, 16, 1, 18, 138, 439 }, // & 924 | { 3, 6, 4, 1, 19, 20, 577 }, // ' 925 | { 8, 26, 9, 1, 20, 85, 597 }, // ( 926 | { 7, 26, 9, 0, 20, 91, 682 }, // ) 927 | { 11, 10, 11, 0, 18, 64, 773 }, // * 928 | { 14, 14, 14, 0, 16, 38, 837 }, // + 929 | { 4, 7, 5, 0, 3, 23, 875 }, // , 930 | { 7, 2, 7, 0, 8, 16, 898 }, // - 931 | { 4, 3, 7, 1, 3, 14, 914 }, // . 932 | { 10, 20, 10, 0, 18, 87, 928 }, // / 933 | { 12, 18, 14, 1, 18, 81, 1015 }, // 0 934 | { 7, 18, 14, 2, 18, 29, 1096 }, // 1 935 | { 13, 18, 14, 1, 18, 101, 1125 }, // 2 936 | { 12, 18, 14, 1, 18, 101, 1226 }, // 3 937 | { 14, 18, 14, 0, 18, 80, 1327 }, // 4 938 | { 13, 18, 14, 1, 18, 102, 1407 }, // 5 939 | { 12, 18, 14, 1, 18, 108, 1509 }, // 6 940 | { 13, 18, 14, 0, 18, 82, 1617 }, // 7 941 | { 12, 18, 14, 1, 18, 117, 1699 }, // 8 942 | { 12, 18, 14, 1, 18, 108, 1816 }, // 9 943 | { 4, 13, 6, 1, 13, 23, 1924 }, // : 944 | { 5, 17, 5, 0, 13, 41, 1947 }, // ; 945 | { 11, 11, 13, 0, 13, 61, 1988 }, // < 946 | { 12, 7, 14, 1, 12, 21, 2049 }, // = 947 | { 12, 11, 13, 1, 13, 54, 2070 }, // > 948 | { 11, 18, 12, 0, 18, 85, 2124 }, // ? 949 | { 21, 22, 22, 1, 17, 201, 2209 }, // @ 950 | { 16, 18, 16, 0, 18, 122, 2410 }, // A 951 | { 13, 18, 16, 2, 18, 90, 2532 }, // B 952 | { 15, 18, 16, 1, 18, 98, 2622 }, // C 953 | { 13, 18, 16, 2, 18, 78, 2720 }, // D 954 | { 12, 18, 14, 2, 18, 39, 2798 }, // E 955 | { 12, 18, 14, 2, 18, 36, 2837 }, // F 956 | { 15, 18, 17, 1, 18, 120, 2873 }, // G 957 | { 14, 18, 18, 2, 18, 32, 2993 }, // H 958 | { 3, 18, 7, 2, 18, 13, 3025 }, // I 959 | { 12, 18, 14, 0, 18, 52, 3038 }, // J 960 | { 14, 18, 16, 2, 18, 95, 3090 }, // K 961 | { 11, 18, 13, 2, 18, 25, 3185 }, // L 962 | { 18, 18, 22, 2, 18, 122, 3210 }, // M 963 | { 14, 18, 18, 2, 18, 83, 3332 }, // N 964 | { 15, 18, 17, 1, 18, 107, 3415 }, // O 965 | { 13, 18, 16, 2, 18, 69, 3522 }, // P 966 | { 15, 21, 17, 1, 18, 124, 3591 }, // Q 967 | { 13, 18, 15, 2, 18, 94, 3715 }, // R 968 | { 14, 18, 15, 0, 18, 122, 3809 }, // S 969 | { 15, 18, 15, 0, 18, 31, 3931 }, // T 970 | { 14, 18, 16, 1, 18, 57, 3962 }, // U 971 | { 16, 18, 16, 0, 18, 121, 4019 }, // V 972 | { 22, 18, 22, 0, 18, 169, 4140 }, // W 973 | { 16, 18, 16, 0, 18, 124, 4309 }, // X 974 | { 15, 18, 15, 0, 18, 90, 4433 }, // Y 975 | { 13, 18, 15, 1, 18, 82, 4523 }, // Z 976 | { 6, 24, 7, 1, 20, 23, 4605 }, // [ 977 | { 11, 20, 10, 0, 18, 85, 4628 }, // 978 | { 5, 24, 7, 0, 20, 23, 4713 }, // ] 979 | { 10, 9, 10, 0, 18, 56, 4736 }, // ^ 980 | { 12, 2, 11, 0, 0, 17, 4792 }, // _ 981 | { 6, 4, 8, 0, 19, 20, 4809 }, // ` 982 | { 12, 13, 14, 1, 13, 84, 4829 }, // a 983 | { 12, 19, 14, 1, 19, 67, 4913 }, // b 984 | { 12, 13, 13, 1, 13, 76, 4980 }, // c 985 | { 12, 19, 14, 1, 19, 72, 5056 }, // d 986 | { 12, 13, 13, 1, 13, 84, 5128 }, // e 987 | { 9, 19, 9, 0, 19, 50, 5212 }, // f 988 | { 12, 18, 14, 1, 13, 97, 5262 }, // g 989 | { 12, 19, 14, 1, 19, 45, 5359 }, // h 990 | { 4, 18, 6, 1, 18, 20, 5404 }, // i 991 | { 6, 23, 6, -1, 18, 32, 5424 }, // j 992 | { 12, 19, 13, 1, 19, 73, 5456 }, // k 993 | { 4, 19, 6, 1, 19, 13, 5529 }, // l 994 | { 20, 13, 22, 1, 13, 64, 5542 }, // m 995 | { 12, 13, 14, 1, 13, 42, 5606 }, // n 996 | { 13, 13, 14, 1, 13, 84, 5648 }, // o 997 | { 12, 18, 14, 1, 13, 81, 5732 }, // p 998 | { 12, 18, 14, 1, 13, 71, 5813 }, // q 999 | { 8, 13, 8, 1, 13, 29, 5884 }, // r 1000 | { 11, 13, 13, 1, 13, 89, 5913 }, // s 1001 | { 8, 16, 8, 0, 16, 39, 6002 }, // t 1002 | { 12, 13, 14, 1, 13, 45, 6041 }, // u 1003 | { 12, 13, 12, 0, 13, 84, 6086 }, // v 1004 | { 19, 13, 19, 0, 13, 128, 6170 }, // w 1005 | { 12, 13, 12, 0, 13, 75, 6298 }, // x 1006 | { 12, 18, 12, 0, 13, 103, 6373 }, // y 1007 | { 11, 13, 12, 1, 13, 70, 6476 }, // z 1008 | { 9, 24, 8, 0, 20, 83, 6546 }, // { 1009 | { 2, 21, 6, 2, 18, 12, 6629 }, // | 1010 | { 8, 24, 8, 0, 20, 78, 6641 }, // } 1011 | { 15, 5, 17, 1, 10, 51, 6719 }, // ~ 1012 | { 0, 0, 6, 0, 0, 8, 6770 }, //   1013 | { 4, 17, 6, 1, 13, 27, 6778 }, // ¡ 1014 | { 12, 19, 14, 1, 16, 94, 6805 }, // ¢ 1015 | { 13, 18, 15, 1, 18, 91, 6899 }, // £ 1016 | { 16, 17, 18, 1, 16, 97, 6990 }, // ¤ 1017 | { 13, 18, 13, 0, 18, 86, 7087 }, // ¥ 1018 | { 4, 21, 6, 1, 18, 17, 7173 }, // ¦ 1019 | { 13, 24, 15, 1, 18, 156, 7190 }, // § 1020 | { 9, 3, 10, 1, 18, 23, 7346 }, // ¨ 1021 | { 18, 18, 20, 1, 18, 119, 7369 }, // © 1022 | { 9, 10, 11, 1, 18, 59, 7488 }, // ª 1023 | { 10, 10, 12, 1, 12, 45, 7547 }, // « 1024 | { 11, 5, 14, 1, 10, 21, 7592 }, // ¬ 1025 | { 7, 2, 7, 0, 8, 16, 7613 }, // ­ 1026 | { 18, 18, 20, 1, 18, 144, 7629 }, // ® 1027 | { 9, 2, 11, 1, 18, 19, 7773 }, // ¯ 1028 | { 7, 7, 9, 1, 18, 37, 7792 }, // ° 1029 | { 12, 16, 13, 1, 16, 43, 7829 }, // ± 1030 | { 9, 10, 9, 0, 18, 56, 7872 }, // ² 1031 | { 9, 10, 9, 0, 18, 57, 7928 }, // ³ 1032 | { 6, 4, 8, 1, 19, 20, 7985 }, // ´ 1033 | { 12, 18, 14, 1, 13, 49, 8005 }, // µ 1034 | { 11, 18, 12, 0, 18, 52, 8054 }, // ¶ 1035 | { 4, 3, 7, 1, 10, 14, 8106 }, // · 1036 | { 5, 5, 6, 1, 0, 23, 8120 }, // ¸ 1037 | { 6, 10, 9, 1, 18, 21, 8143 }, // ¹ 1038 | { 9, 10, 11, 1, 18, 49, 8164 }, // º 1039 | { 10, 10, 12, 1, 12, 46, 8213 }, // » 1040 | { 17, 18, 18, 1, 18, 113, 8259 }, // ¼ 1041 | { 19, 18, 19, 0, 18, 121, 8372 }, // ½ 1042 | { 18, 18, 19, 1, 18, 140, 8493 }, // ¾ 1043 | { 11, 18, 12, 0, 13, 83, 8633 }, // ¿ 1044 | { 16, 23, 16, 0, 23, 134, 8716 }, // À 1045 | { 16, 23, 16, 0, 23, 138, 8850 }, // Á 1046 | { 16, 22, 16, 0, 22, 138, 8988 }, // Â 1047 | { 16, 23, 16, 0, 23, 140, 9126 }, // Ã 1048 | { 16, 23, 16, 0, 23, 139, 9266 }, // Ä 1049 | { 16, 24, 16, 0, 24, 143, 9405 }, // Å 1050 | { 24, 18, 23, -1, 18, 134, 9548 }, // Æ 1051 | { 15, 23, 16, 1, 18, 117, 9682 }, // Ç 1052 | { 12, 23, 14, 2, 23, 55, 9799 }, // È 1053 | { 12, 23, 14, 2, 23, 60, 9854 }, // É 1054 | { 12, 22, 14, 2, 22, 58, 9914 }, // Ê 1055 | { 12, 23, 14, 2, 23, 58, 9972 }, // Ë 1056 | { 6, 23, 7, -1, 23, 27, 10030 }, // Ì 1057 | { 6, 23, 7, 2, 23, 26, 10057 }, // Í 1058 | { 9, 22, 7, -1, 22, 29, 10083 }, // Î 1059 | { 9, 23, 7, -1, 23, 30, 10112 }, // Ï 1060 | { 16, 18, 17, 0, 18, 96, 10142 }, // Ð 1061 | { 14, 23, 18, 2, 23, 105, 10238 }, // Ñ 1062 | { 15, 23, 17, 1, 23, 121, 10343 }, // Ò 1063 | { 15, 23, 17, 1, 23, 122, 10464 }, // Ó 1064 | { 15, 22, 17, 1, 22, 121, 10586 }, // Ô 1065 | { 15, 23, 17, 1, 23, 125, 10707 }, // Õ 1066 | { 15, 23, 17, 1, 23, 125, 10832 }, // Ö 1067 | { 12, 11, 13, 1, 14, 66, 10957 }, // × 1068 | { 15, 20, 17, 1, 19, 148, 11023 }, // Ø 1069 | { 14, 23, 16, 1, 23, 74, 11171 }, // Ù 1070 | { 14, 23, 16, 1, 23, 74, 11245 }, // Ú 1071 | { 14, 22, 16, 1, 22, 74, 11319 }, // Û 1072 | { 14, 23, 16, 1, 23, 78, 11393 }, // Ü 1073 | { 15, 23, 15, 0, 23, 111, 11471 }, // Ý 1074 | { 12, 18, 15, 2, 18, 64, 11582 }, // Þ 1075 | { 13, 19, 15, 1, 19, 107, 11646 }, // ß 1076 | { 12, 19, 14, 1, 19, 101, 11753 }, // à 1077 | { 12, 19, 14, 1, 19, 102, 11854 }, // á 1078 | { 12, 18, 14, 1, 18, 103, 11956 }, // â 1079 | { 12, 18, 14, 1, 18, 103, 12059 }, // ã 1080 | { 12, 18, 14, 1, 18, 102, 12162 }, // ä 1081 | { 12, 20, 14, 1, 20, 109, 12264 }, // å 1082 | { 21, 13, 21, 0, 13, 133, 12373 }, // æ 1083 | { 12, 18, 13, 1, 13, 95, 12506 }, // ç 1084 | { 12, 19, 13, 1, 19, 102, 12601 }, // è 1085 | { 12, 19, 13, 1, 19, 105, 12703 }, // é 1086 | { 12, 18, 13, 1, 18, 103, 12808 }, // ê 1087 | { 12, 18, 13, 1, 18, 103, 12911 }, // ë 1088 | { 6, 19, 6, -1, 19, 27, 13014 }, // ì 1089 | { 6, 19, 6, 1, 19, 26, 13041 }, // í 1090 | { 8, 18, 6, -1, 18, 27, 13067 }, // î 1091 | { 9, 18, 6, -1, 18, 29, 13094 }, // ï 1092 | { 13, 19, 15, 1, 19, 123, 13123 }, // ð 1093 | { 12, 18, 14, 1, 18, 62, 13246 }, // ñ 1094 | { 13, 19, 14, 1, 19, 101, 13308 }, // ò 1095 | { 13, 19, 14, 1, 19, 102, 13409 }, // ó 1096 | { 13, 18, 14, 1, 18, 101, 13511 }, // ô 1097 | { 13, 18, 14, 1, 18, 104, 13612 }, // õ 1098 | { 13, 18, 14, 1, 18, 102, 13716 }, // ö 1099 | { 14, 14, 14, 0, 16, 45, 13818 }, // ÷ 1100 | { 13, 17, 14, 1, 15, 119, 13863 }, // ø 1101 | { 12, 19, 14, 1, 19, 63, 13982 }, // ù 1102 | { 12, 19, 14, 1, 19, 67, 14045 }, // ú 1103 | { 12, 18, 14, 1, 18, 64, 14112 }, // û 1104 | { 12, 18, 14, 1, 18, 64, 14176 }, // ü 1105 | { 12, 24, 12, 0, 19, 120, 14240 }, // ý 1106 | { 12, 24, 14, 1, 19, 81, 14360 }, // þ 1107 | { 12, 23, 12, 0, 18, 122, 14441 }, // ÿ 1108 | }; 1109 | const EpdUnicodeInterval robotoIntervals[] = { 1110 | { 0x20, 0x7E, 0x0 }, 1111 | { 0xA0, 0xFF, 0x5F }, 1112 | }; 1113 | const EpdFont roboto = { 1114 | robotoBitmaps, 1115 | robotoGlyphs, 1116 | robotoIntervals, 1117 | 2, 1118 | 1, 1119 | 29, 1120 | 24, 1121 | -7, 1122 | }; 1123 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Inkster-ESP32 2 | Low power EPDiy compatible board - almost the same as EPDiy V5 board but with some useful tweaks. 3 | 4 | ## Compared to EPDiy V5 board, it also has: 5 | - Unique shape tailored for 6" and 9.7" displays allowing for very tight and compact projects 6 | - 3 buttons 7 | - WS2812 led 8 | - NTC thermistor for temperature measurement 9 | - Voltage divider to measure battery voltage 10 | 11 | ## 3D printed cover 12 | https://www.thingiverse.com/thing:5226424 13 | -------------------------------------------------------------------------------- /Resources/Inkster_v1.3_BOM.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcer12/Inkster-ESP32/1cf3ec75513275f16480c04274104034ade02495/Resources/Inkster_v1.3_BOM.csv -------------------------------------------------------------------------------- /Resources/Inkster_v1.3_GERBER.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcer12/Inkster-ESP32/1cf3ec75513275f16480c04274104034ade02495/Resources/Inkster_v1.3_GERBER.zip -------------------------------------------------------------------------------- /Resources/Inkster_v1.3_SCHEMATIC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcer12/Inkster-ESP32/1cf3ec75513275f16480c04274104034ade02495/Resources/Inkster_v1.3_SCHEMATIC.pdf --------------------------------------------------------------------------------