diff --git a/.github/stale.yml b/.github/stale.yml index 164b7a6e..b9a5d246 100644 --- a/.github/stale.yml +++ b/.github/stale.yml @@ -1,9 +1,9 @@ # Number of days of inactivity before an Issue or Pull Request becomes stale -daysUntilStale: 120 +daysUntilStale: 60 # Number of days of inactivity before a stale Issue or Pull Request is closed. # Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale. -daysUntilClose: 30 +daysUntilClose: 7 # Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable exemptLabels: diff --git a/README.md b/README.md index 513a6d9f..7485384f 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ ESPurna ("spark" in Catalan) is a custom firmware for ESP8285/ESP8266 based smart switches, lights and sensors. It uses the Arduino Core for ESP8266 framework and a number of 3rd party libraries. -[![version](https://img.shields.io/badge/version-1.13.2a-brightgreen.svg)](CHANGELOG.md) +[![version](https://img.shields.io/badge/version-1.13.2c-brightgreen.svg)](CHANGELOG.md) [![branch](https://img.shields.io/badge/branch-softcfg-orange.svg)](https://github.com/xoseperez/espurna/tree/softcfg/) [![travis](https://travis-ci.org/xoseperez/espurna.svg?branch=softcfg)](https://travis-ci.org/xoseperez/espurna) [![codacy](https://img.shields.io/codacy/grade/c9496e25cf07434cba786b462cb15f49/softcfg.svg)](https://www.codacy.com/app/xoseperez/espurna/dashboard) diff --git a/code/build.sh b/code/build.sh index 57b030f9..b30097b9 100755 --- a/code/build.sh +++ b/code/build.sh @@ -1,19 +1,26 @@ #!/bin/bash set -e +# Utility +is_git() { + command -v git >/dev/null 2>&1 || return 1 + command git rev-parse >/dev/null 2>&1 || return 1 + + return 0 +} + # Script settings version=$(grep APP_VERSION espurna/config/version.h | awk '{print $3}' | sed 's/"//g') -(command -v git && git rev-parse --is-inside-work-tree) 2>&1>/dev/null -if [ $? -eq 0 ]; then +if is_git; then git_revision=$(git rev-parse --short HEAD) - git_version=$(git describe --tags) + git_version=${version}-${git_revision} else git_revision= git_version=$version fi -par_build=0 +par_build=false par_thread=${BUILDER_THREAD:-0} par_total_threads=${BUILDER_TOTAL_THREADS:-4} if [ ${par_thread} -ne ${par_thread} -o \ @@ -27,8 +34,12 @@ if [ ${par_thread} -ge ${par_total_threads} ]; then fi # Available environments -travis=$(grep env: platformio.ini | grep travis | sed 's/\[env://' | sed 's/\]/ /' | sort) -available=$(grep env: platformio.ini | grep -v ota | grep -v ssl | grep -v travis | sed 's/\[env://' | sed 's/\]/ /' | sort) +list_envs() { + grep env: platformio.ini | sed 's/\[env:\(.*\)\]/\1/g' +} + +travis=$(list_envs | grep travis | sort) +available=$(list_envs | grep -Ev -- '-ota$|-ssl$|^travis' | sort) # Build tools settings export PLATFORMIO_BUILD_FLAGS="${PLATFORMIO_BUILD_FLAGS} -DAPP_REVISION='\"$git_revision\"'" @@ -52,7 +63,7 @@ print_environments() { set_default_environments() { # Hook to build in parallel when using travis - if [[ "${TRAVIS_BUILD_STAGE_NAME}" = "Release" ]] && [ ${par_build} ]; then + if [[ "${TRAVIS_BUILD_STAGE_NAME}" = "Release" ]] && ${par_build}; then environments=$(echo ${available} | \ awk -v par_thread=${par_thread} -v par_total_threads=${par_total_threads} \ '{ for (i = 1; i <= NF; i++) if (++j % par_total_threads == par_thread ) print $i; }') @@ -90,7 +101,7 @@ build_environments() { for environment in $environments; do echo -n "* espurna-$version-$environment.bin --- " - platformio run --silent --environment $environment || exit 1 + platformio run --silent --environment $environment 2>/dev/null || exit 1 stat -c %s .pioenvs/$environment/firmware.bin [[ "${TRAVIS_BUILD_STAGE_NAME}" = "Test" ]] || \ mv .pioenvs/$environment/firmware.bin ../firmware/espurna-$version/espurna-$version-$environment.bin @@ -106,7 +117,7 @@ while getopts "lp" opt; do exit ;; p) - par_build=1 + par_build=true ;; esac done @@ -125,7 +136,7 @@ if [ $# -eq 0 ]; then set_default_environments fi -if [[ "${CI}" = true ]]; then +if ${CI:-false}; then print_environments fi diff --git a/code/espurna/api.ino b/code/espurna/api.ino index baba9549..1c6fb752 100644 --- a/code/espurna/api.ino +++ b/code/espurna/api.ino @@ -72,52 +72,6 @@ bool _asJson(AsyncWebServerRequest *request) { return asJson; } -ArRequestHandlerFunction _bindAPI(unsigned int apiID) { - - return [apiID](AsyncWebServerRequest *request) { - - webLog(request); - if (!_authAPI(request)) return; - - web_api_t api = _apis[apiID]; - - // Check if its a PUT - if (api.putFn != NULL) { - if (request->hasParam("value", request->method() == HTTP_PUT)) { - AsyncWebParameter* p = request->getParam("value", request->method() == HTTP_PUT); - (api.putFn)((p->value()).c_str()); - } - } - - // Get response from callback - char value[API_BUFFER_SIZE] = {0}; - (api.getFn)(value, API_BUFFER_SIZE); - - // The response will be a 404 NOT FOUND if the resource is not available - if (0 == value[0]) { - DEBUG_MSG_P(PSTR("[API] Sending 404 response\n")); - request->send(404); - return; - } - DEBUG_MSG_P(PSTR("[API] Sending response '%s'\n"), value); - - // Format response according to the Accept header - if (_asJson(request)) { - char buffer[64]; - if (isNumber(value)) { - snprintf_P(buffer, sizeof(buffer), PSTR("{ \"%s\": %s }"), api.key, value); - } else { - snprintf_P(buffer, sizeof(buffer), PSTR("{ \"%s\": \"%s\" }"), api.key, value); - } - request->send(200, "application/json", buffer); - } else { - request->send(200, "text/plain", value); - } - - }; - -} - void _onAPIs(AsyncWebServerRequest *request) { webLog(request); @@ -174,35 +128,98 @@ void _onRPC(AsyncWebServerRequest *request) { } +bool _apiRequestCallback(AsyncWebServerRequest *request) { + + String url = request->url(); + + // Main API entry point + if (url.equals("/api") || url.equals("/apis")) { + _onAPIs(request); + return true; + } + + // Main RPC entry point + if (url.equals("/rpc")) { + _onRPC(request); + return true; + } + + // Not API request + if (!url.startsWith("/api/")) return false; + + for (unsigned char i=0; i < _apis.size(); i++) { + + // Search API url + web_api_t api = _apis[i]; + if (!url.endsWith(api.key)) continue; + + // Log and check credentials + webLog(request); + if (!_authAPI(request)) return false; + + // Check if its a PUT + if (api.putFn != NULL) { + if (request->hasParam("value", request->method() == HTTP_PUT)) { + AsyncWebParameter* p = request->getParam("value", request->method() == HTTP_PUT); + (api.putFn)((p->value()).c_str()); + } + } + + // Get response from callback + char value[API_BUFFER_SIZE] = {0}; + (api.getFn)(value, API_BUFFER_SIZE); + + // The response will be a 404 NOT FOUND if the resource is not available + if (0 == value[0]) { + DEBUG_MSG_P(PSTR("[API] Sending 404 response\n")); + request->send(404); + return false; + } + + DEBUG_MSG_P(PSTR("[API] Sending response '%s'\n"), value); + + // Format response according to the Accept header + if (_asJson(request)) { + char buffer[64]; + if (isNumber(value)) { + snprintf_P(buffer, sizeof(buffer), PSTR("{ \"%s\": %s }"), api.key, value); + } else { + snprintf_P(buffer, sizeof(buffer), PSTR("{ \"%s\": \"%s\" }"), api.key, value); + } + request->send(200, "application/json", buffer); + } else { + request->send(200, "text/plain", value); + } + + return true; + + } + + return false; + +} + // ----------------------------------------------------------------------------- void apiRegister(const char * key, api_get_callback_f getFn, api_put_callback_f putFn) { // Store it web_api_t api; - char buffer[40]; - snprintf_P(buffer, sizeof(buffer), PSTR("/api/%s"), key); api.key = strdup(key); api.getFn = getFn; api.putFn = putFn; _apis.push_back(api); - // Bind call - unsigned int methods = HTTP_GET; - if (putFn != NULL) methods += HTTP_PUT; - webServer()->on(buffer, methods, _bindAPI(_apis.size() - 1)); +} +bool apiRealTime() { + return getSetting("apiRealTime", API_REAL_TIME_VALUES).toInt() == 1; } void apiSetup() { - webServer()->on("/apis", HTTP_GET, _onAPIs); - webServer()->on("/rpc", HTTP_GET, _onRPC); - wsOnSendRegister(_apiWebSocketOnSend); settingsRegisterKeyCheck(_apiKeyCheck); -} - -bool apiRealTime() { - return getSetting("apiRealTime", API_REAL_TIME_VALUES).toInt() == 1; + webRequestRegister(_apiRequestCallback); + wsOnSendRegister(_apiWebSocketOnSend); } #endif // WEB_SUPPORT diff --git a/code/espurna/config/all.h b/code/espurna/config/all.h index d21eb007..f1be16f0 100644 --- a/code/espurna/config/all.h +++ b/code/espurna/config/all.h @@ -29,9 +29,9 @@ #include "hardware.h" #include "defaults.h" #include "general.h" +#include "dependencies.h" #include "prototypes.h" #include "sensors.h" -#include "dependencies.h" #include "progmem.h" #include "debug.h" diff --git a/code/espurna/config/arduino.h b/code/espurna/config/arduino.h index 46a48685..d4c4e9d7 100644 --- a/code/espurna/config/arduino.h +++ b/code/espurna/config/arduino.h @@ -8,6 +8,7 @@ //-------------------------------------------------------------------------------- //#define NODEMCU_LOLIN +//#define WEMOS_D1_MINI //#define WEMOS_D1_MINI_RELAYSHIELD //#define TINKERMAN_ESPURNA_H06 //#define TINKERMAN_ESPURNA_H08 @@ -140,7 +141,6 @@ //#define EMON_ANALOG_SUPPORT 1 //#define EVENTS_SUPPORT 1 //#define GUVAS12SD_SUPPORT 1 -//#define HCSR04_SUPPORT 1 //#define HLW8012_SUPPORT 1 //#define MHZ19_SUPPORT 1 //#define NTC_SUPPORT 1 @@ -148,6 +148,7 @@ //#define PZEM004T_SUPPORT 1 //#define SHT3X_I2C_SUPPORT 1 //#define SI7021_SUPPORT 1 +//#define SONAR_SUPPORT 1 //#define TMP3X_SUPPORT 1 //#define V9261F_SUPPORT 1 //#define GEIGER_SUPPORT 1 diff --git a/code/espurna/config/defaults.h b/code/espurna/config/defaults.h index 6efd4570..fb48d62e 100644 --- a/code/espurna/config/defaults.h +++ b/code/espurna/config/defaults.h @@ -2,7 +2,7 @@ // Hardware default values // ----------------------------------------------------------------------------- -#define GPIO_NONE 0x99 +#define GPIO_NONE 0xFF // ----------------------------------------------------------------------------- // Buttons diff --git a/code/espurna/config/general.h b/code/espurna/config/general.h index 69d9fe28..60e99628 100644 --- a/code/espurna/config/general.h +++ b/code/espurna/config/general.h @@ -259,6 +259,14 @@ #define RELAY_SAVE_DELAY 1000 #endif +// Configure the MQTT payload for ON/OFF +#ifndef RELAY_MQTT_ON +#define RELAY_MQTT_ON "1" +#endif +#ifndef RELAY_MQTT_OFF +#define RELAY_MQTT_OFF "0" +#endif + // ----------------------------------------------------------------------------- // WIFI // ----------------------------------------------------------------------------- @@ -693,6 +701,7 @@ #define MQTT_TOPIC_BOARD "board" #define MQTT_TOPIC_PULSE "pulse" #define MQTT_TOPIC_SPEED "speed" +#define MQTT_TOPIC_IR "ir" // Light module #define MQTT_TOPIC_CHANNEL "channel" @@ -865,6 +874,14 @@ #define HOMEASSISTANT_ENABLED 0 // Integration not enabled by default #define HOMEASSISTANT_PREFIX "homeassistant" // Default MQTT prefix +#ifndef HOMEASSISTANT_PAYLOAD_ON +#define HOMEASSISTANT_PAYLOAD_ON "1" // Payload for ON and available messages +#endif + +#ifndef HOMEASSISTANT_PAYLOAD_OFF +#define HOMEASSISTANT_PAYLOAD_OFF "0" // Payload for OFF and unavailable messages +#endif + // ----------------------------------------------------------------------------- // INFLUXDB // ----------------------------------------------------------------------------- @@ -1020,7 +1037,6 @@ #define RF_RECEIVE_DELAY 500 // Interval between recieving in ms (avoid debouncing) #endif - #ifndef RF_RAW_SUPPORT #define RF_RAW_SUPPORT 0 // RF raw codes require a specific firmware for the EFM8BB1 // https://github.com/rhx/RF-Bridge-EFM8BB1 @@ -1035,8 +1051,8 @@ #define IR_SUPPORT 0 // Do not build with IR support by default (10.25Kb) #endif -#ifndef IR_PIN -#define IR_PIN 4 // IR LED +#ifndef IR_RECEIVER_PIN +#define IR_RECEIVER_PIN 4 // IR LED #endif // 24 Buttons Set of the IR Remote @@ -1044,6 +1060,10 @@ #define IR_BUTTON_SET 1 // IR button set to use (see below) #endif +#ifndef IR_DEBOUNCE +#define IR_DEBOUNCE 500 // IR debounce time in milliseconds +#endif + //Remote Buttons SET 1 (for the original Remote shipped with the controller) #if IR_SUPPORT #if IR_BUTTON_SET == 1 @@ -1066,7 +1086,7 @@ #define IR_BUTTON_COUNT 24 - const unsigned long IR_BUTTON[IR_BUTTON_COUNT][3] PROGMEM = { + const uint32_t IR_BUTTON[IR_BUTTON_COUNT][3] PROGMEM = { { 0xFF906F, IR_BUTTON_MODE_BRIGHTER, 1 }, { 0xFFB847, IR_BUTTON_MODE_BRIGHTER, 0 }, diff --git a/code/espurna/config/hardware.h b/code/espurna/config/hardware.h index ac59627a..09713134 100644 --- a/code/espurna/config/hardware.h +++ b/code/espurna/config/hardware.h @@ -65,6 +65,26 @@ #include "devices/002_nodemcu_lolin.json.h" +#elif defined(WEMOS_D1_MINI) + + // Info + #define MANUFACTURER "WEMOS" + #define DEVICE "D1_MINI" + + // Buttons + // No buttons on the D1 MINI alone, but defining it without adding a button doen't create problems + #define BUTTON1_PIN 0 // Connect a pushbutton between D3 and GND, + // it's the same as using a Wemos one button shield + #define BUTTON1_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH + #define BUTTON1_RELAY 1 + + // LEDs + #define LED1_PIN 2 + #define LED1_PIN_INVERSE 1 + + #define I2C_SDA_PIN 4 // D2 + #define I2C_SCL_PIN 5 // D1 + #elif defined(WEMOS_D1_MINI_RELAYSHIELD) #include "devices/003_wemos_d1_mini_relayshield.json.h" @@ -982,7 +1002,7 @@ // IR #define IR_SUPPORT 1 - #define IR_PIN 4 + #define IR_RECEIVER_PIN 4 #define IR_BUTTON_SET 1 #elif defined(MAGICHOME_LED_CONTROLLER_20) @@ -1011,7 +1031,7 @@ // IR #define IR_SUPPORT 1 - #define IR_PIN 4 + #define IR_RECEIVER_PIN 4 #define IR_BUTTON_SET 1 // ----------------------------------------------------------------------------- @@ -2109,7 +2129,7 @@ #define BUTTON1_PIN 12 #define BUTTON1_RELAY 1 #define BUTTON1_MODE BUTTON_SWITCH | BUTTON_DEFAULT_HIGH //Hardware Pullup - + #define BUTTON1_PRESS BUTTON_MODE_NONE #define BUTTON1_CLICK BUTTON_MODE_TOGGLE #define BUTTON1_DBLCLICK BUTTON_MODE_NONE @@ -2318,6 +2338,60 @@ #define HLW8012_POWER_RATIO 3414290 #define HLW8012_INTERRUPT_ON FALLING +// ---------------------------------------------------------------------------------------- +// Homecube 16A is similar but some pins differ and it also has RGB LEDs +// https://www.amazon.de/gp/product/B07D7RVF56/ref=oh_aui_detailpage_o00_s01?ie=UTF8&psc=1 +// ---------------------------------------------------------------------------------------- +#elif defined(HOMECUBE_16A) + + // Info + #define MANUFACTURER "HOMECUBE" + #define DEVICE "16A" + + // Buttons + #define BUTTON1_PIN 13 + #define BUTTON1_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH + #define BUTTON1_RELAY 1 + + // Relays + #define RELAY1_PIN 15 + #define RELAY1_TYPE RELAY_TYPE_NORMAL + + // LEDs + //LED Pin 4 - ESP8266 onboard LED + //Red LED: 0 + //Green LED: 12 + //Blue LED: 2 + + // Blue + #define LED1_PIN 2 + #define LED1_PIN_INVERSE 0 + + // Green + #define LED2_PIN 12 + #define LED2_PIN_INVERSE 1 + #define LED2_MODE LED_MODE_RELAY + + // Red + #define LED3_PIN 0 + #define LED3_PIN_INVERSE 0 + #define LED2_MODE LED_MODE_OFF + + // HJL01 / BL0937 + #ifndef HLW8012_SUPPORT + #define HLW8012_SUPPORT 1 + #endif + #define HLW8012_SEL_PIN 16 + #define HLW8012_CF1_PIN 14 + #define HLW8012_CF_PIN 5 + + #define HLW8012_SEL_CURRENT LOW + #define HLW8012_CURRENT_RATIO 25740 + #define HLW8012_VOLTAGE_RATIO 313400 + #define HLW8012_POWER_RATIO 3414290 + #define HLW8012_INTERRUPT_ON FALLING + + // ----------------------------------------------------------------------------- // VANZAVANZU Smart Outlet Socket (based on BL0937 or HJL-01) // https://www.amazon.com/Smart-Plug-Wifi-Mini-VANZAVANZU/dp/B078PHD6S5 @@ -2506,6 +2580,11 @@ #define MANUFACTURER "TravisCI" #define DEVICE "Virtual board 02" + // Some buttons - pin 0 + #define BUTTON1_PIN 0 + #define BUTTON1_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH + #define BUTTON1_RELAY 1 + // A bit of CSE7766 - pin 1 #ifndef CSE7766_SUPPORT #define CSE7766_SUPPORT 1 @@ -2521,7 +2600,7 @@ // IR - pin 4 #define IR_SUPPORT 1 - #define IR_PIN 4 + #define IR_RECEIVER_PIN 4 #define IR_BUTTON_SET 1 // A bit of DHT - pin 5 @@ -2537,10 +2616,10 @@ #define EVENTS_SUPPORT 1 #define EVENTS_PIN 6 - // HC-RS04 - #define HCSR04_SUPPORT 1 - #define HCSR04_TRIGGER 7 - #define HCSR04_ECHO 8 + // Sonar + #define SONAR_SUPPORT 1 + #define SONAR_TRIGGER 7 + #define SONAR_ECHO 8 // MHZ19 #define MHZ19_SUPPORT 1 @@ -2573,6 +2652,11 @@ #define MANUFACTURER "TravisCI" #define DEVICE "Virtual board 03" + // Some buttons - pin 0 + #define BUTTON1_PIN 0 + #define BUTTON1_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH + #define BUTTON1_RELAY 1 + // MY9231 Light - pins 1,2 #define RELAY_PROVIDER RELAY_PROVIDER_LIGHT #define LIGHT_PROVIDER LIGHT_PROVIDER_MY92XX diff --git a/code/espurna/config/progmem.h b/code/espurna/config/progmem.h index d1e44c4f..ba607720 100644 --- a/code/espurna/config/progmem.h +++ b/code/espurna/config/progmem.h @@ -58,6 +58,9 @@ PROGMEM const char espurna_modules[] = #if INFLUXDB_SUPPORT "INFLUXDB " #endif + #if IR_SUPPORT + "IR " + #endif #if LLMNR_SUPPORT "LLMNR " #endif @@ -166,8 +169,8 @@ PROGMEM const char espurna_sensors[] = #if GUVAS12SD_SUPPORT "GUVAS12SD " #endif - #if HCSR04_SUPPORT - "HCSR04 " + #if SONAR_SUPPORT + "SONAR " #endif #if HLW8012_SUPPORT "HLW8012 " @@ -204,12 +207,13 @@ PROGMEM const char espurna_sensors[] = PROGMEM const unsigned char magnitude_decimals[] = { 0, - 1, 0, 2, - 3, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, - 0, 0, 0, - 0, 0, 3, 3, - 4, 4 // Geiger Counter decimals + 1, 0, 2, // THP + 3, 0, 0, 0, 0, 0, 0, 0, // Power decimals + 0, 0, 0, // analog, digital, event + 0, 0, 0, // PM + 0, 0, 3, 3, 0, + 4, 4, // Geiger Counter decimals + 0 }; PROGMEM const char magnitude_unknown_topic[] = "unknown"; @@ -226,7 +230,7 @@ PROGMEM const char magnitude_energy_topic[] = "energy"; PROGMEM const char magnitude_energy_delta_topic[] = "energy_delta"; PROGMEM const char magnitude_analog_topic[] = "analog"; PROGMEM const char magnitude_digital_topic[] = "digital"; -PROGMEM const char magnitude_events_topic[] = "events"; +PROGMEM const char magnitude_event_topic[] = "event"; PROGMEM const char magnitude_pm1dot0_topic[] = "pm1dot0"; PROGMEM const char magnitude_pm2dot5_topic[] = "pm2dot5"; PROGMEM const char magnitude_pm10_topic[] = "pm10"; @@ -237,17 +241,19 @@ PROGMEM const char magnitude_distance_topic[] = "distance"; PROGMEM const char magnitude_hcho_topic[] = "hcho"; PROGMEM const char magnitude_geiger_cpm_topic[] = "ldr_cpm"; // local dose rate [Counts per minute] PROGMEM const char magnitude_geiger_sv_topic[] = "ldr_uSvh"; // local dose rate [µSievert per hour] +PROGMEM const char magnitude_count_topic[] = "count"; PROGMEM const char* const magnitude_topics[] = { magnitude_unknown_topic, magnitude_temperature_topic, magnitude_humidity_topic, magnitude_pressure_topic, magnitude_current_topic, magnitude_voltage_topic, magnitude_active_power_topic, magnitude_apparent_power_topic, magnitude_reactive_power_topic, magnitude_power_factor_topic, magnitude_energy_topic, magnitude_energy_delta_topic, - magnitude_analog_topic, magnitude_digital_topic, magnitude_events_topic, + magnitude_analog_topic, magnitude_digital_topic, magnitude_event_topic, magnitude_pm1dot0_topic, magnitude_pm2dot5_topic, magnitude_pm10_topic, magnitude_co2_topic, magnitude_lux_topic, magnitude_uv_topic, magnitude_distance_topic, magnitude_hcho_topic, - magnitude_geiger_cpm_topic, magnitude_geiger_sv_topic // Geiger Counter topics + magnitude_geiger_cpm_topic, magnitude_geiger_sv_topic, + magnitude_count_topic }; PROGMEM const char magnitude_empty[] = ""; @@ -280,7 +286,8 @@ PROGMEM const char* const magnitude_units[] = { magnitude_ugm3, magnitude_ugm3, magnitude_ugm3, magnitude_ppm, magnitude_lux, magnitude_uv, magnitude_distance, magnitude_mgm3, - magnitude_geiger_cpm, magnitude_geiger_sv // Geiger counter units + magnitude_geiger_cpm, magnitude_geiger_sv, // Geiger counter units + magnitude_empty }; #endif diff --git a/code/espurna/config/prototypes.h b/code/espurna/config/prototypes.h index 8ccfe132..f7ab84b4 100644 --- a/code/espurna/config/prototypes.h +++ b/code/espurna/config/prototypes.h @@ -144,6 +144,8 @@ void nice_delay(unsigned long ms); #define AsyncWebSocket void #define AwsEventType void * #endif +typedef std::function web_request_callback_f; +void webRequestRegister(web_request_callback_f callback); // ----------------------------------------------------------------------------- // WebSockets diff --git a/code/espurna/config/sensors.h b/code/espurna/config/sensors.h index 4df614e4..f9a9a6e6 100644 --- a/code/espurna/config/sensors.h +++ b/code/espurna/config/sensors.h @@ -281,6 +281,11 @@ #define EVENTS_SUPPORT 0 // Do not build with counter support by default #endif +#ifndef EVENTS_TRIGGER +#define EVENTS_TRIGGER 1 // 1 to trigger callback on events, + // 0 to only count them and report periodically +#endif + #ifndef EVENTS_PIN #define EVENTS_PIN 2 // GPIO to monitor #endif @@ -337,23 +342,6 @@ #define GUVAS12SD_PIN 14 #endif -//------------------------------------------------------------------------------ -// HC-SR04 -// Enable support by passing HCSR04_SUPPORT=1 build flag -//------------------------------------------------------------------------------ - -#ifndef HCSR04_SUPPORT -#define HCSR04_SUPPORT 0 -#endif - -#ifndef HCSR04_TRIGGER -#define HCSR04_TRIGGER 12 // GPIO for the trigger pin (output) -#endif - -#ifndef HCSR04_ECHO -#define HCSR04_ECHO 14 // GPIO for the echo pin (input) -#endif - //------------------------------------------------------------------------------ // HLW8012 Energy monitor IC // Enable support by passing HLW8012_SUPPORT=1 build flag @@ -504,14 +492,21 @@ #define PMS_SMART_SLEEP 0 #endif +#ifndef PMS_USE_SOFT +#define PMS_USE_SOFT 0 // If PMS_USE_SOFT == 1, DEBUG_SERIAL_SUPPORT must be 0 +#endif + #ifndef PMS_RX_PIN -#define PMS_RX_PIN 13 +#define PMS_RX_PIN 13 // Software serial RX GPIO (if PMS_USE_SOFT == 1) #endif #ifndef PMS_TX_PIN -#define PMS_TX_PIN 15 +#define PMS_TX_PIN 15 // Software serial TX GPIO (if PMS_USE_SOFT == 1) #endif +#ifndef PMS_HW_PORT +#define PMS_HW_PORT Serial // Hardware serial port (if PMS_USE_SOFT == 0) +#endif //------------------------------------------------------------------------------ // PZEM004T based power monitor // Enable support by passing PZEM004T_SUPPORT=1 build flag @@ -563,6 +558,31 @@ #define SI7021_ADDRESS 0x00 // 0x00 means auto #endif +//------------------------------------------------------------------------------ +// Sonar +// Enable support by passing SONAR_SUPPORT=1 build flag +//------------------------------------------------------------------------------ + +#ifndef SONAR_SUPPORT +#define SONAR_SUPPORT 0 +#endif + +#ifndef SONAR_TRIGGER +#define SONAR_TRIGGER 12 // GPIO for the trigger pin (output) +#endif + +#ifndef SONAR_ECHO +#define SONAR_ECHO 14 // GPIO for the echo pin (input) +#endif + +#ifndef SONAR_MAX_DISTANCE +#define SONAR_MAX_DISTANCE MAX_SENSOR_DISTANCE // Max sensor distance in cm +#endif + +#ifndef SONAR_ITERATIONS +#define SONAR_ITERATIONS 5 // Number of iterations to ping for +#endif // error correction. + //------------------------------------------------------------------------------ // TMP3X analog temperature sensor // Enable support by passing TMP3X_SUPPORT=1 build flag @@ -623,7 +643,6 @@ EVENTS_SUPPORT || \ GEIGER_SUPPORT || \ GUVAS12SD_SUPPORT || \ - HCSR04_SUPPORT || \ HLW8012_SUPPORT || \ MHZ19_SUPPORT || \ NTC_SUPPORT || \ @@ -632,6 +651,7 @@ PZEM004T_SUPPORT || \ SHT3X_I2C_SUPPORT || \ SI7021_SUPPORT || \ + SONAR_SUPPORT || \ TMP3X_SUPPORT || \ V9261F_SUPPORT \ ) @@ -743,10 +763,6 @@ #include "../sensors/GUVAS12SDSensor.h" #endif -#if HCSR04_SUPPORT - #include "../sensors/HCSR04Sensor.h" -#endif - #if HLW8012_SUPPORT #include #include "../sensors/HLW8012Sensor.h" @@ -785,6 +801,10 @@ #include "../sensors/SHT3XI2CSensor.h" #endif +#if SONAR_SUPPORT + #include "../sensors/SonarSensor.h" +#endif + #if TMP3X_SUPPORT #include "../sensors/TMP3XSensor.h" #endif diff --git a/code/espurna/config/types.h b/code/espurna/config/types.h index b7dbbca8..36416c6e 100644 --- a/code/espurna/config/types.h +++ b/code/espurna/config/types.h @@ -84,36 +84,36 @@ //------------------------------------------------------------------------------ // Priority codes: -#define SYSLOG_EMERG 0 /* system is unusable */ -#define SYSLOG_ALERT 1 /* action must be taken immediately */ -#define SYSLOG_CRIT 2 /* critical conditions */ -#define SYSLOG_ERR 3 /* error conditions */ -#define SYSLOG_WARNING 4 /* warning conditions */ -#define SYSLOG_NOTICE 5 /* normal but significant condition */ -#define SYSLOG_INFO 6 /* informational */ -#define SYSLOG_DEBUG 7 /* debug-level messages */ +#define SYSLOG_EMERG 0 /* system is unusable */ +#define SYSLOG_ALERT 1 /* action must be taken immediately */ +#define SYSLOG_CRIT 2 /* critical conditions */ +#define SYSLOG_ERR 3 /* error conditions */ +#define SYSLOG_WARNING 4 /* warning conditions */ +#define SYSLOG_NOTICE 5 /* normal but significant condition */ +#define SYSLOG_INFO 6 /* informational */ +#define SYSLOG_DEBUG 7 /* debug-level messages */ // Facility codes: -#define SYSLOG_KERN (0<<3) /* kernel messages */ -#define SYSLOG_USER (1<<3) /* random user-level messages */ -#define SYSLOG_MAIL (2<<3) /* mail system */ -#define SYSLOG_DAEMON (3<<3) /* system daemons */ -#define SYSLOG_AUTH (4<<3) /* security/authorization messages */ -#define SYSLOG_SYSLOG (5<<3) /* messages generated internally by syslogd */ -#define SYSLOG_LPR (6<<3) /* line printer subsystem */ -#define SYSLOG_NEWS (7<<3) /* network news subsystem */ -#define SYSLOG_UUCP (8<<3) /* UUCP subsystem */ -#define SYSLOG_CRON (9<<3) /* clock daemon */ -#define SYSLOG_AUTHPRIV (10<<3) /* security/authorization messages (private) */ -#define SYSLOG_FTP (11<<3) /* ftp daemon */ -#define SYSLOG_LOCAL0 (16<<3) /* reserved for local use */ -#define SYSLOG_LOCAL1 (17<<3) /* reserved for local use */ -#define SYSLOG_LOCAL2 (18<<3) /* reserved for local use */ -#define SYSLOG_LOCAL3 (19<<3) /* reserved for local use */ -#define SYSLOG_LOCAL4 (20<<3) /* reserved for local use */ -#define SYSLOG_LOCAL5 (21<<3) /* reserved for local use */ -#define SYSLOG_LOCAL6 (22<<3) /* reserved for local use */ -#define SYSLOG_LOCAL7 (23<<3) /* reserved for local use */ +#define SYSLOG_KERN (0<<3) /* kernel messages */ +#define SYSLOG_USER (1<<3) /* random user-level messages */ +#define SYSLOG_MAIL (2<<3) /* mail system */ +#define SYSLOG_DAEMON (3<<3) /* system daemons */ +#define SYSLOG_AUTH (4<<3) /* security/authorization messages */ +#define SYSLOG_SYSLOG (5<<3) /* messages generated internally by syslogd */ +#define SYSLOG_LPR (6<<3) /* line printer subsystem */ +#define SYSLOG_NEWS (7<<3) /* network news subsystem */ +#define SYSLOG_UUCP (8<<3) /* UUCP subsystem */ +#define SYSLOG_CRON (9<<3) /* clock daemon */ +#define SYSLOG_AUTHPRIV (10<<3) /* security/authorization messages (private) */ +#define SYSLOG_FTP (11<<3) /* ftp daemon */ +#define SYSLOG_LOCAL0 (16<<3) /* reserved for local use */ +#define SYSLOG_LOCAL1 (17<<3) /* reserved for local use */ +#define SYSLOG_LOCAL2 (18<<3) /* reserved for local use */ +#define SYSLOG_LOCAL3 (19<<3) /* reserved for local use */ +#define SYSLOG_LOCAL4 (20<<3) /* reserved for local use */ +#define SYSLOG_LOCAL5 (21<<3) /* reserved for local use */ +#define SYSLOG_LOCAL6 (22<<3) /* reserved for local use */ +#define SYSLOG_LOCAL7 (23<<3) /* reserved for local use */ //------------------------------------------------------------------------------ // MQTT @@ -267,7 +267,7 @@ #define SENSOR_GUVAS12SD_ID 0x20 #define SENSOR_CSE7766_ID 0x21 #define SENSOR_TMP3X_ID 0x22 -#define SENSOR_HCSR04_ID 0x23 +#define SENSOR_SONAR_ID 0x23 #define SENSOR_SENSEAIR_ID 0x24 #define SENSOR_GEIGER_ID 0x25 #define SENSOR_NTC_ID 0x26 @@ -290,7 +290,7 @@ #define MAGNITUDE_ENERGY_DELTA 11 #define MAGNITUDE_ANALOG 12 #define MAGNITUDE_DIGITAL 13 -#define MAGNITUDE_EVENTS 14 +#define MAGNITUDE_EVENT 14 #define MAGNITUDE_PM1dot0 15 #define MAGNITUDE_PM2dot5 16 #define MAGNITUDE_PM10 17 @@ -301,14 +301,13 @@ #define MAGNITUDE_HCHO 22 #define MAGNITUDE_GEIGER_CPM 23 #define MAGNITUDE_GEIGER_SIEVERT 24 +#define MAGNITUDE_COUNT 25 -#define MAGNITUDE_MAX 25 +#define MAGNITUDE_MAX 26 //-------------------------------------------------------------------------------- // GPIO //-------------------------------------------------------------------------------- -#define GPIO_NONE 0xFF - #define GPIO_LOGIC_DIRECT 0 #define GPIO_LOGIC_INVERSE 1 diff --git a/code/espurna/config/version.h b/code/espurna/config/version.h index 6911b03e..63b92562 100644 --- a/code/espurna/config/version.h +++ b/code/espurna/config/version.h @@ -1,5 +1,5 @@ #define APP_NAME "ESPURNA" -#define APP_VERSION "1.13.2a" +#define APP_VERSION "1.13.2c" #define APP_AUTHOR "xose.perez@gmail.com" #define APP_WEBSITE "http://tinkerman.cat" #define CFG_VERSION 4 diff --git a/code/espurna/data/index.all.html.gz b/code/espurna/data/index.all.html.gz index 6b99cbc9..d49ec3a5 100644 Binary files a/code/espurna/data/index.all.html.gz and b/code/espurna/data/index.all.html.gz differ diff --git a/code/espurna/data/index.sensor.html.gz b/code/espurna/data/index.sensor.html.gz index f57f1611..d4abbe89 100644 Binary files a/code/espurna/data/index.sensor.html.gz and b/code/espurna/data/index.sensor.html.gz differ diff --git a/code/espurna/eeprom.ino b/code/espurna/eeprom.ino index d0a7fca6..9e3149e0 100644 --- a/code/espurna/eeprom.ino +++ b/code/espurna/eeprom.ino @@ -12,7 +12,7 @@ Module key prefix: eep // ----------------------------------------------------------------------------- -bool eepromRotate(bool value) { +void eepromRotate(bool value) { // Enable/disable EEPROM rotation only if we are using more sectors than the // reserved by the memory layout if (EEPROMr.size() > EEPROMr.reserved()) { diff --git a/code/espurna/hardware.ino b/code/espurna/hardware.ino index 12538ff5..353753e5 100644 --- a/code/espurna/hardware.ino +++ b/code/espurna/hardware.ino @@ -1876,7 +1876,7 @@ void _hardwareSpecific() { // These devices use the hardware UART // to communicate to secondary microcontrollers - #if defined(ITEAD_SONOFF_RFBRIDGE) || defined(ITEAD_SONOFF_DUAL) || defined(STM_RELAY) + #if defined(ITEAD_SONOFF_RFBRIDGE) || defined(ITEAD_SONOFF_DUAL) || (RELAY_PROVIDER == RELAY_PROVIDER_STM) Serial.begin(DEBUG_SERIAL_SPEED); #endif diff --git a/code/espurna/homeassistant.ino b/code/espurna/homeassistant.ino index e206652e..07d3f453 100644 --- a/code/espurna/homeassistant.ino +++ b/code/espurna/homeassistant.ino @@ -75,11 +75,11 @@ void _haSendSwitch(unsigned char i, JsonObject& config) { if (relayCount()) { config["state_topic"] = mqttTopic(MQTT_TOPIC_RELAY, i, false); config["command_topic"] = mqttTopic(MQTT_TOPIC_RELAY, i, true); - config["payload_on"] = String("1"); - config["payload_off"] = String("0"); + config["payload_on"] = String(HOMEASSISTANT_PAYLOAD_ON); + config["payload_off"] = String(HOMEASSISTANT_PAYLOAD_OFF); config["availability_topic"] = mqttTopic(MQTT_TOPIC_STATUS, false); - config["payload_available"] = String("1"); - config["payload_not_available"] = String("0"); + config["payload_available"] = String(HOMEASSISTANT_PAYLOAD_ON); + config["payload_not_available"] = String(HOMEASSISTANT_PAYLOAD_OFF); } #if LIGHT_PROVIDER != LIGHT_PROVIDER_NONE diff --git a/code/espurna/i2c.ino b/code/espurna/i2c.ino index e0bf28f8..528f9f35 100644 --- a/code/espurna/i2c.ino +++ b/code/espurna/i2c.ino @@ -236,7 +236,7 @@ uint16_t i2c_read_uint16(uint8_t address, uint8_t reg) { void i2c_read_buffer(uint8_t address, uint8_t * buffer, size_t len) { Wire.beginTransmission((uint8_t) address); Wire.requestFrom(address, (uint8_t) len); - for (int i=0; i 0 - for (unsigned char i = 0; i < IR_BUTTON_COUNT ; i++) { + boolean found = false; - unsigned long button_code = pgm_read_dword(&IR_BUTTON[i][0]); - if (code == button_code) { + for (unsigned char i = 0; i < IR_BUTTON_COUNT ; i++) { - unsigned long button_mode = pgm_read_dword(&IR_BUTTON[i][1]); - unsigned long button_value = pgm_read_dword(&IR_BUTTON[i][2]); + uint32_t button_code = pgm_read_dword(&IR_BUTTON[i][0]); + if (code == button_code) { - if (button_mode == IR_BUTTON_MODE_STATE) { - relayStatus(0, button_value); - } + unsigned long button_mode = pgm_read_dword(&IR_BUTTON[i][1]); + unsigned long button_value = pgm_read_dword(&IR_BUTTON[i][2]); - if (button_mode == IR_BUTTON_MODE_TOGGLE) { + if (button_mode == IR_BUTTON_MODE_STATE) { + relayStatus(0, button_value); + } - if (millis() - _ir_last_toggle > 250){ + if (button_mode == IR_BUTTON_MODE_TOGGLE) { relayToggle(button_value); - _ir_last_toggle = millis(); - } else { - DEBUG_MSG_P(PSTR("[IR] Ignoring repeated code\n")); } - } - #if LIGHT_PROVIDER != LIGHT_PROVIDER_NONE + #if LIGHT_PROVIDER != LIGHT_PROVIDER_NONE - if (button_mode == IR_BUTTON_MODE_BRIGHTER) { - lightBrightnessStep(button_value ? 1 : -1); - nice_delay(150); //debounce - } + if (button_mode == IR_BUTTON_MODE_BRIGHTER) { + lightBrightnessStep(button_value ? 1 : -1); + nice_delay(150); //debounce + } - if (button_mode == IR_BUTTON_MODE_RGB) { - lightColor(button_value); - } + if (button_mode == IR_BUTTON_MODE_RGB) { + lightColor(button_value); + } - /* - #if LIGHT_PROVIDER == LIGHT_PROVIDER_FASTLED - if (button_mode == IR_BUTTON_MODE_EFFECT) { - _buttonAnimMode(button_value); + /* + #if LIGHT_PROVIDER == LIGHT_PROVIDER_FASTLED + if (button_mode == IR_BUTTON_MODE_EFFECT) { + _buttonAnimMode(button_value); + } + #endif + */ + + /* + if (button_mode == IR_BUTTON_MODE_HSV) { + lightColor(button_value); } - #endif - */ + */ - /* - if (button_mode == IR_BUTTON_MODE_HSV) { - lightColor(button_value); - } - */ + lightUpdate(true, true); - lightUpdate(true, true); + #endif - #endif + found = true; + break; - found = true; - last_code = code; - break; + } - } + } - } + if (!found) { + DEBUG_MSG_P(PSTR("[IR] Ignoring code\n")); + } - if (!found) { - DEBUG_MSG_P(PSTR("[IR] Ignoring code\n")); - } + #endif + + #if MQTT_SUPPORT + char buffer[16]; + snprintf_P(buffer, sizeof(buffer), "0x%08X", code); + mqttSend(MQTT_TOPIC_IR, buffer); + #endif } @@ -109,7 +113,7 @@ bool _irKeyCheck(const char * key) { void irSetup() { - _ir_recv = new IRrecv(IR_PIN); + _ir_recv = new IRrecv(IR_RECEIVER_PIN); _ir_recv->enableIRIn(); // Key Check @@ -122,8 +126,7 @@ void irSetup() { void irLoop() { if (_ir_recv->decode(&_ir_results)) { - unsigned long code = _ir_results.value; - _irProcessCode(code); + _irProcessCode(_ir_results.value, _ir_results.decode_type); _ir_recv->resume(); // Receive the next value } } diff --git a/code/espurna/led.ino b/code/espurna/led.ino index ff0733ed..f8c838ca 100644 --- a/code/espurna/led.ino +++ b/code/espurna/led.ino @@ -304,4 +304,4 @@ void ledSetup() { } -#endif LED_SUPPORT +#endif // LED_SUPPORT diff --git a/code/espurna/ota.ino b/code/espurna/ota.ino index ecfe6090..b94db691 100644 --- a/code/espurna/ota.ino +++ b/code/espurna/ota.ino @@ -246,8 +246,14 @@ void otaSetup() { deferredReset(100, CUSTOM_RESET_OTA); }); - ArduinoOTA.onProgress([](unsigned int progress, unsigned int total) { - DEBUG_MSG_P(PSTR("[OTA] Progress: %u%%\r"), (progress / (total / 100))); + ArduinoOTA.onProgress([](unsigned int progress, unsigned int total) { + static unsigned int _progOld; + + unsigned int _prog = (progress / (total / 100)); + if (_prog != _progOld) { + DEBUG_MSG_P(PSTR("[OTA] Progress: %u%%\r"), _prog); + _progOld = _prog; + } }); ArduinoOTA.onError([](ota_error_t error) { diff --git a/code/espurna/relay.ino b/code/espurna/relay.ino index c264b984..c6b025cf 100644 --- a/code/espurna/relay.ino +++ b/code/espurna/relay.ino @@ -101,7 +101,7 @@ void _relayProviderStatus(unsigned char id, bool status) { if (_relays.size() == lightChannels()) { lightState(id, status); lightState(true); - } else if (_relays.size() == lightChannels() + 1) { + } else if (_relays.size() == (lightChannels() + 1u)) { if (id == 0) { lightState(status); } else { @@ -561,6 +561,8 @@ void _relayConfigure() { pinMode(pin, OUTPUT); unsigned char type = getSetting("rlyType", index, RELAY_TYPE_NORMAL).toInt(); + if (RELAY_TYPE_INVERSE == type) digitalWrite(pin, HIGH); + unsigned char reset = getSetting("rlyResetGPIO", index, GPIO_NONE).toInt(); if (GPIO_NONE != reset) pinMode(reset, OUTPUT); @@ -568,7 +570,7 @@ void _relayConfigure() { unsigned long delay_off = getSetting("rlyDelayOff", index, 0).toInt(); unsigned char pulse = getSetting("rlyPulse", index, RELAY_PULSE_MODE).toInt(); - float pulse_ms = 1000 * getSetting("rlyTime", index, RELAY_PULSE_TIME).toFloat(); + unsigned long pulse_ms = 1000 * getSetting("rlyTime", index, RELAY_PULSE_TIME).toFloat(); _relays.push_back((relay_t) { pin, type, reset, delay_on, delay_off, pulse, pulse_ms }); ++index; @@ -678,11 +680,11 @@ void relaySetupWS() { void relaySetupAPI() { + char key[20]; + // API entry points (protected with apikey) for (unsigned int relayID=0; relayID 0) { bool status = relayStatus(id); if (getSetting("mqttGroupInv", id, 0).toInt() == 1) status = !status; - mqttSendRaw(t.c_str(), status ? "1" : "0"); + mqttSendRaw(t.c_str(), status ? RELAY_MQTT_ON : RELAY_MQTT_OFF); } } @@ -789,7 +788,7 @@ void relayMQTT(unsigned char id) { void relayMQTT() { for (unsigned int id=0; id < _relays.size(); id++) { - mqttSend(MQTT_TOPIC_RELAY, id, _relays[id].current_status ? "1" : "0"); + mqttSend(MQTT_TOPIC_RELAY, id, _relays[id].current_status ? RELAY_MQTT_ON : RELAY_MQTT_OFF); } } diff --git a/code/espurna/sensor.ino b/code/espurna/sensor.ino index d3b28155..a0e94c9c 100644 --- a/code/espurna/sensor.ino +++ b/code/espurna/sensor.ino @@ -109,6 +109,8 @@ void _sensorWebSocketSendData(JsonObject& root) { for (unsigned char i=0; i<_magnitudes.size(); i++) { sensor_magnitude_t magnitude = _magnitudes[i]; + if (magnitude.type == MAGNITUDE_EVENT) continue; + unsigned char decimals = _magnitudeDecimals(magnitude.type); dtostrf(magnitude.current, 1-sizeof(buffer), decimals, buffer); @@ -440,7 +442,8 @@ void _sensorLoad() { { EventSensor * sensor = new EventSensor(); sensor->setGPIO(EVENTS_PIN); - sensor->setMode(EVENTS_PIN_MODE); + sensor->setTrigger(EVENTS_TRIGGER); + sensor->setPinMode(EVENTS_PIN_MODE); sensor->setDebounceTime(EVENTS_DEBOUNCE); sensor->setInterruptMode(EVENTS_INTERRUPT_MODE); _sensors.push_back(sensor); @@ -467,11 +470,13 @@ void _sensorLoad() { } #endif - #if HCSR04_SUPPORT + #if SONAR_SUPPORT { - HCSR04Sensor * sensor = new HCSR04Sensor(); - sensor->setTrigger(HCSR04_TRIGGER); - sensor->setEcho(HCSR04_ECHO); + SonarSensor * sensor = new SonarSensor(); + sensor->setEcho(SONAR_ECHO); + sensor->setIterations(SONAR_ITERATIONS); + sensor->setMaxDistance(SONAR_MAX_DISTANCE); + sensor->setTrigger(SONAR_TRIGGER); _sensors.push_back(sensor); } #endif @@ -522,8 +527,12 @@ void _sensorLoad() { #if PMSX003_SUPPORT { PMSX003Sensor * sensor = new PMSX003Sensor(); - sensor->setRX(PMS_RX_PIN); - sensor->setTX(PMS_TX_PIN); + #if PMS_USE_SOFT + sensor->setRX(PMS_RX_PIN); + sensor->setTX(PMS_TX_PIN); + #else + sensor->setSerial(& PMS_HW_PORT); + #endif sensor->setType(PMS_TYPE); _sensors.push_back(sensor); } @@ -577,8 +586,17 @@ void _sensorLoad() { } -void _sensorCallback(unsigned char i, unsigned char type, const char * payload) { - DEBUG_MSG_P(PSTR("[SENSOR] Sensor #%u callback, type %u, payload: '%s'\n"), i, type, payload); +void _sensorCallback(unsigned char i, unsigned char type, double value) { + + DEBUG_MSG_P(PSTR("[SENSOR] Sensor #%u callback, type %u, payload: '%s'\n"), i, type, String(value).c_str()); + + for (unsigned char k=0; k<_magnitudes.size(); k++) { + if ((_sensors[i] == _magnitudes[k].sensor) && (type == _magnitudes[k].type)) { + _sensorReport(k, value); + return; + } + } + } void _sensorInit() { @@ -615,7 +633,7 @@ void _sensorInit() { new_magnitude.min_change = 0; if (type == MAGNITUDE_DIGITAL) { new_magnitude.filter = new MaxFilter(); - } else if (type == MAGNITUDE_EVENTS || type == MAGNITUDE_GEIGER_CPM|| type == MAGNITUDE_GEIGER_SIEVERT) { // For geiger counting moving average filter is the most appropriate if needed at all. + } else if (type == MAGNITUDE_COUNT || type == MAGNITUDE_GEIGER_CPM|| type == MAGNITUDE_GEIGER_SIEVERT) { // For geiger counting moving average filter is the most appropriate if needed at all. new_magnitude.filter = new MovingAverageFilter(); } else { new_magnitude.filter = new MedianFilter(); @@ -630,8 +648,8 @@ void _sensorInit() { } // Hook callback - _sensors[i]->onEvent([i](unsigned char type, const char * payload) { - _sensorCallback(i, type, payload); + _sensors[i]->onEvent([i](unsigned char type, double value) { + _sensorCallback(i, type, value); }); // Custom initializations @@ -714,7 +732,7 @@ void _sensorConfigure() { double value; EmonAnalogSensor * sensor = (EmonAnalogSensor *) _sensors[i]; - if (value = getSetting("pwrExpected", 0).toInt()) { + if ((value = getSetting("pwrExpected", 0).toInt())) { sensor->expectedPower(0, value); setSetting("curRatio", sensor->getCurrentRatio(0)); } @@ -801,17 +819,17 @@ void _sensorConfigure() { double value; CSE7766Sensor * sensor = (CSE7766Sensor *) _sensors[i]; - if (value = getSetting("curExpected", 0).toFloat()) { + if ((value = getSetting("curExpected", 0).toFloat())) { sensor->expectedCurrent(value); setSetting("curRatio", sensor->getCurrentRatio()); } - if (value = getSetting("volExpected", 0).toInt()) { + if ((value = getSetting("volExpected", 0).toInt())) { sensor->expectedVoltage(value); setSetting("volRatio", sensor->getVoltageRatio()); } - if (value = getSetting("pwrExpected", 0).toInt()) { + if ((value = getSetting("pwrExpected", 0).toInt())) { sensor->expectedPower(value); setSetting("pwrRatio", sensor->getPowerRatio()); } @@ -887,6 +905,73 @@ void _sensorBackwards() { moveSetting("pwrExpectedV", "volExpected"); // 1.14.0 - 2018-06-26 moveSetting("pwrResetCalibration", "snsResetCalibration"); // 1.14.0 - 2018-06-26 moveSetting("pwrResetE", "eneReset"); // 1.14.0 - 2018-06-26 + +} + +void _sensorReport(unsigned char index, double value) { + + sensor_magnitude_t magnitude = _magnitudes[index]; + unsigned char decimals = _magnitudeDecimals(magnitude.type); + + char buffer[10]; + dtostrf(value, 1-sizeof(buffer), decimals, buffer); + + #if BROKER_SUPPORT + brokerPublish(magnitudeTopic(magnitude.type).c_str(), magnitude.local, buffer); + #endif + + #if MQTT_SUPPORT + + mqttSend(magnitudeTopicIndex(index).c_str(), buffer); + + #if SENSOR_PUBLISH_ADDRESSES + char topic[32]; + snprintf(topic, sizeof(topic), "%s/%s", SENSOR_ADDRESS_TOPIC, magnitudeTopic(magnitude.type).c_str()); + if (SENSOR_USE_INDEX || (_counts[magnitude.type] > 1)) { + mqttSend(topic, magnitude.global, magnitude.sensor->address(magnitude.local).c_str()); + } else { + mqttSend(topic, magnitude.sensor->address(magnitude.local).c_str()); + } + #endif // SENSOR_PUBLISH_ADDRESSES + + #endif // MQTT_SUPPORT + + #if INFLUXDB_SUPPORT + if (SENSOR_USE_INDEX || (_counts[magnitude.type] > 1)) { + idbSend(magnitudeTopic(magnitude.type).c_str(), magnitude.global, buffer); + } else { + idbSend(magnitudeTopic(magnitude.type).c_str(), buffer); + } + #endif // INFLUXDB_SUPPORT + + #if THINGSPEAK_SUPPORT + tspkEnqueueMeasurement(index, buffer); + #endif + + #if DOMOTICZ_SUPPORT + { + char key[15]; + snprintf_P(key, sizeof(key), PSTR("dczMagnitude%d"), index); + if (magnitude.type == MAGNITUDE_HUMIDITY) { + int status; + if (value > 70) { + status = HUMIDITY_WET; + } else if (value > 45) { + status = HUMIDITY_COMFORTABLE; + } else if (value > 30) { + status = HUMIDITY_NORMAL; + } else { + status = HUMIDITY_DRY; + } + char status_buf[5]; + itoa(status, status_buf, 10); + domoticzSend(key, buffer, status_buf); + } else { + domoticzSend(key, 0, buffer); + } + } + #endif // DOMOTICZ_SUPPORT + } // ----------------------------------------------------------------------------- @@ -1026,7 +1111,6 @@ void sensorLoop() { double current; double filtered; - char buffer[64]; // Pre-read hook _sensorPre(); @@ -1062,19 +1146,18 @@ void sensorLoop() { magnitude.filter->add(current); // Special case - if (magnitude.type == MAGNITUDE_EVENTS) { + if (magnitude.type == MAGNITUDE_COUNT) { current = magnitude.filter->result(); } current = _magnitudeProcess(magnitude.type, current); _magnitudes[i].current = current; - unsigned char decimals = _magnitudeDecimals(magnitude.type); - // Debug #if SENSOR_DEBUG { - dtostrf(current, 1-sizeof(buffer), decimals, buffer); + char buffer[64]; + dtostrf(current, 1-sizeof(buffer), _magnitudeDecimals(magnitude.type), buffer); DEBUG_MSG_P(PSTR("[SENSOR] %s - %s: %s%s\n"), magnitude.sensor->slot(magnitude.local).c_str(), magnitudeTopic(magnitude.type).c_str(), @@ -1096,63 +1179,8 @@ void sensorLoop() { if (fabs(filtered - magnitude.reported) >= magnitude.min_change) { _magnitudes[i].reported = filtered; - dtostrf(filtered, 1-sizeof(buffer), decimals, buffer); - - #if BROKER_SUPPORT - brokerPublish(magnitudeTopic(magnitude.type).c_str(), magnitude.local, buffer); - #endif - - #if MQTT_SUPPORT - - mqttSend(magnitudeTopicIndex(i).c_str(), buffer); - - #if SENSOR_PUBLISH_ADDRESSES - char topic[32]; - snprintf(topic, sizeof(topic), "%s/%s", SENSOR_ADDRESS_TOPIC, magnitudeTopic(magnitude.type).c_str()); - if (SENSOR_USE_INDEX || (_counts[magnitude.type] > 1)) { - mqttSend(topic, magnitude.global, magnitude.sensor->address(magnitude.local).c_str()); - } else { - mqttSend(topic, magnitude.sensor->address(magnitude.local).c_str()); - } - #endif // SENSOR_PUBLISH_ADDRESSES - - #endif // MQTT_SUPPORT - - #if INFLUXDB_SUPPORT - if (SENSOR_USE_INDEX || (_counts[magnitude.type] > 1)) { - idbSend(magnitudeTopic(magnitude.type).c_str(), magnitude.global, buffer); - } else { - idbSend(magnitudeTopic(magnitude.type).c_str(), buffer); - } - #endif // INFLUXDB_SUPPORT - - #if THINGSPEAK_SUPPORT - tspkEnqueueMeasurement(i, buffer); - #endif - - #if DOMOTICZ_SUPPORT - { - char key[15]; - snprintf_P(key, sizeof(key), PSTR("dczMagnitude%d"), i); - if (magnitude.type == MAGNITUDE_HUMIDITY) { - int status; - if (filtered > 70) { - status = HUMIDITY_WET; - } else if (filtered > 45) { - status = HUMIDITY_COMFORTABLE; - } else if (filtered > 30) { - status = HUMIDITY_NORMAL; - } else { - status = HUMIDITY_DRY; - } - char status_buf[5]; - itoa(status, status_buf, 10); - domoticzSend(key, buffer, status_buf); - } else { - domoticzSend(key, 0, buffer); - } - } - #endif // DOMOTICZ_SUPPORT + + _sensorReport(i, filtered); } // if (fabs(filtered - magnitude.reported) >= magnitude.min_change) } // if (report_count == 0) diff --git a/code/espurna/sensors/BaseSensor.h b/code/espurna/sensors/BaseSensor.h index 9f3854f6..f261cd28 100644 --- a/code/espurna/sensors/BaseSensor.h +++ b/code/espurna/sensors/BaseSensor.h @@ -21,7 +21,7 @@ #define SENSOR_ERROR_CALIBRATION 8 // Calibration error or Not calibrated #define SENSOR_ERROR_OTHER 99 // Any other error -typedef std::function TSensorCallback; +typedef std::function TSensorCallback; class BaseSensor { @@ -46,19 +46,19 @@ class BaseSensor { virtual void post() {} // Descriptive name of the sensor - virtual String description() {} + virtual String description() = 0; // Address of the sensor (it could be the GPIO or I2C address) - virtual String address(unsigned char index) {} + virtual String address(unsigned char index) = 0; // Descriptive name of the slot # index - virtual String slot(unsigned char index) {}; + virtual String slot(unsigned char index) = 0; // Type for slot # index - virtual unsigned char type(unsigned char index) {} + virtual unsigned char type(unsigned char index) = 0; // Current value for slot # index - virtual double value(unsigned char index) {} + virtual double value(unsigned char index) = 0; // Retrieve current instance configuration virtual void getConfig(JsonObject& root) {}; diff --git a/code/espurna/sensors/DHTSensor.h b/code/espurna/sensors/DHTSensor.h index 2651eadb..24559252 100644 --- a/code/espurna/sensors/DHTSensor.h +++ b/code/espurna/sensors/DHTSensor.h @@ -221,7 +221,7 @@ class DHTSensor : public BaseSensor { } - unsigned long _signal(int usTimeOut, bool state) { + unsigned long _signal(unsigned long usTimeOut, bool state) { unsigned long uSec = 1; while (digitalRead(_gpio) == state) { if (++uSec > usTimeOut) return 0; diff --git a/code/espurna/sensors/EmonSensor.h b/code/espurna/sensors/EmonSensor.h index 527a4bda..4bbfd276 100644 --- a/code/espurna/sensors/EmonSensor.h +++ b/code/espurna/sensors/EmonSensor.h @@ -146,7 +146,7 @@ class EmonSensor : public I2CSensor { #endif } - virtual unsigned int readADC(unsigned char channel) {} + virtual unsigned int readADC(unsigned char channel) = 0; void calculateFactors(unsigned char channel) { @@ -154,8 +154,8 @@ class EmonSensor : public I2CSensor { unsigned int s = 1; unsigned int i = 1; - unsigned int m = s * i; - unsigned int multiplier; + unsigned int m = 1; + unsigned int multiplier = 1; while (m * _current_factor[channel] < 1) { multiplier = m; i = (i == 1) ? 2 : (i == 2) ? 5 : 1; diff --git a/code/espurna/sensors/EventSensor.h b/code/espurna/sensors/EventSensor.h index d46fc063..dda65d25 100644 --- a/code/espurna/sensors/EventSensor.h +++ b/code/espurna/sensors/EventSensor.h @@ -33,12 +33,16 @@ class EventSensor : public BaseSensor { _gpio = gpio; } - void setMode(unsigned char mode) { - _mode = mode; + void setTrigger(bool trigger) { + _trigger = trigger; } - void setInterruptMode(unsigned char mode) { - _interrupt_mode = mode; + void setPinMode(unsigned char pin_mode) { + _pin_mode = pin_mode; + } + + void setInterruptMode(unsigned char interrupt_mode) { + _interrupt_mode = interrupt_mode; } void setDebounceTime(unsigned long debounce) { @@ -51,8 +55,12 @@ class EventSensor : public BaseSensor { return _gpio; } - unsigned char getMode() { - return _mode; + bool getTrigger() { + return _trigger; + } + + unsigned char getPinMode() { + return _pin_mode; } unsigned char getInterruptMode() { @@ -70,8 +78,9 @@ class EventSensor : public BaseSensor { // Initialization method, must be idempotent // Defined outside the class body void begin() { - pinMode(_gpio, _mode); + pinMode(_gpio, _pin_mode); _enableInterrupts(true); + _count = _trigger ? 2 : 1; _ready = true; } @@ -94,7 +103,8 @@ class EventSensor : public BaseSensor { // Type for slot # index unsigned char type(unsigned char index) { - if (index == 0) return MAGNITUDE_EVENTS; + if (index == 0) return MAGNITUDE_COUNT; + if (index == 1) return MAGNITUDE_EVENT; return MAGNITUDE_NONE; } @@ -113,8 +123,14 @@ class EventSensor : public BaseSensor { (void) gpio; static unsigned long last = 0; if (millis() - last > _debounce) { - _events = _events + 1; + last = millis(); + _events = _events + 1; + + if (_trigger) { + if (_callback) _callback(MAGNITUDE_EVENT, digitalRead(gpio)); + } + } } @@ -148,9 +164,10 @@ class EventSensor : public BaseSensor { volatile unsigned long _events = 0; unsigned long _debounce = EVENTS_DEBOUNCE; - unsigned char _gpio; - unsigned char _mode; - unsigned char _interrupt_mode; + unsigned char _gpio = GPIO_NONE; + bool _trigger = false; + unsigned char _pin_mode = INPUT; + unsigned char _interrupt_mode = RISING; }; diff --git a/code/espurna/sensors/PMSX003Sensor.h b/code/espurna/sensors/PMSX003Sensor.h index 9f6ddd4b..64611418 100644 --- a/code/espurna/sensors/PMSX003Sensor.h +++ b/code/espurna/sensors/PMSX003Sensor.h @@ -12,7 +12,12 @@ #include "Arduino.h" #include "BaseSensor.h" +#if PMS_USE_SOFT #include +#endif + +// Generic data +#define PMS_BAUD_RATE 9600 // Type of sensor #define PMS_TYPE_X003 0 @@ -46,7 +51,7 @@ const static struct { class PMSX003 { protected: - SoftwareSerial *_serial = NULL; // Should initialized by child class + Stream *_serial = NULL; // Should initialized by child class public: @@ -175,7 +180,13 @@ class PMSX003Sensor : public BaseSensor, PMSX003 { _dirty = true; } - // Should call setType after constrcutor immediately to enable corresponding slot count + void setSerial(HardwareSerial * serial) { + _soft = false; + _serial = serial; + _dirty = true; + } + + // Should call setType after constructor immediately to enable corresponding slot count void setType(unsigned char type) { _type = type; _count = pms_specs[_type].slot_count; @@ -204,30 +215,45 @@ class PMSX003Sensor : public BaseSensor, PMSX003 { if (!_dirty) return; - if (_serial) delete _serial; + if (_soft) { + if (_serial) delete _serial; + _serial = new SoftwareSerial(_pin_rx, _pin_tx, false, 64); + static_cast(_serial)->enableIntTx(false); + } + + if (_soft) { + static_cast(_serial)->begin(PMS_BAUD_RATE); + } else { + static_cast(_serial)->begin(PMS_BAUD_RATE); + } - _serial = new SoftwareSerial(_pin_rx, _pin_tx, false, 64); - _serial->enableIntTx(false); - _serial->begin(9600); passiveMode(); _startTime = millis(); _ready = true; _dirty = false; - } // Descriptive name of the sensor String description() { char buffer[28]; - snprintf(buffer, sizeof(buffer), "%s @ SwSerial(%u,%u)", pms_specs[_type].name, _pin_rx, _pin_tx); + if (_soft) { + snprintf(buffer, sizeof(buffer), "%s @ SwSerial(%u,%u)", pms_specs[_type].name, _pin_rx, _pin_tx); + } else { + snprintf(buffer, sizeof(buffer), "%s @ HwSerial", pms_specs[_type].name); + } + return String(buffer); } // Descriptive name of the slot # index String slot(unsigned char index) { char buffer[36] = {0}; - snprintf(buffer, sizeof(buffer), "%d @ %s @ SwSerial(%u,%u)", int(index + 1), pms_specs[_type].name, _pin_rx, _pin_tx); + if (_soft) { + snprintf(buffer, sizeof(buffer), "%d @ %s @ SwSerial(%u,%u)", int(index + 1), pms_specs[_type].name, _pin_rx, _pin_tx); + } else { + snprintf(buffer, sizeof(buffer), "%d @ %s @ HwSerial", int(index + 1), pms_specs[_type].name); + } return String(buffer); } @@ -301,7 +327,7 @@ class PMSX003Sensor : public BaseSensor, PMSX003 { #endif requestRead(); - + } // Current value for slot # index @@ -310,6 +336,7 @@ class PMSX003Sensor : public BaseSensor, PMSX003 { } protected: + bool _soft = true; unsigned int _pin_rx; unsigned int _pin_tx; unsigned long _startTime; @@ -322,4 +349,4 @@ class PMSX003Sensor : public BaseSensor, PMSX003 { }; -#endif // SENSOR_SUPPORT && PMS_SUPPORT +#endif // SENSOR_SUPPORT && PMSX003_SUPPORT diff --git a/code/espurna/sensors/HCSR04Sensor.h b/code/espurna/sensors/SonarSensor.h similarity index 62% rename from code/espurna/sensors/HCSR04Sensor.h rename to code/espurna/sensors/SonarSensor.h index d2901000..f26f2156 100644 --- a/code/espurna/sensors/HCSR04Sensor.h +++ b/code/espurna/sensors/SonarSensor.h @@ -1,16 +1,18 @@ // ----------------------------------------------------------------------------- -// HC-SR04 Ultrasonic sensor +// HC-SR04, SRF05, SRF06, DYP-ME007, JSN-SR04T & Parallax PING)))™ // Copyright (C) 2018 by Xose Pérez +// Enhancements by Rui Marinho // ----------------------------------------------------------------------------- -#if SENSOR_SUPPORT && HCSR04_SUPPORT +#if SENSOR_SUPPORT && SONAR_SUPPORT #pragma once #include "Arduino.h" #include "BaseSensor.h" +#include "NewPing.h" -class HCSR04Sensor : public BaseSensor { +class SonarSensor : public BaseSensor { public: @@ -18,17 +20,30 @@ class HCSR04Sensor : public BaseSensor { // Public // --------------------------------------------------------------------- - HCSR04Sensor(): BaseSensor() { + SonarSensor(): BaseSensor() { _count = 1; - _sensor_id = SENSOR_HCSR04_ID; + _sensor_id = SENSOR_SONAR_ID; } // --------------------------------------------------------------------- + // Echo pin. void setEcho(unsigned char echo) { _echo = echo; } + // Number of iterations to ping in order to filter out erroneous readings + // using a digital filter. + void setIterations(unsigned int iterations) { + _iterations = iterations; + } + + // Max sensor distance in centimeters. + void setMaxDistance(unsigned int distance) { + _max_distance = distance; + } + + // Trigger pin. void setTrigger(unsigned char trigger) { _trigger = trigger; } @@ -43,22 +58,28 @@ class HCSR04Sensor : public BaseSensor { return _trigger; } + unsigned int getMaxDistance() { + return _max_distance; + } + + unsigned int getIterations() { + return _iterations; + } + // --------------------------------------------------------------------- // Sensor API // --------------------------------------------------------------------- // Initialization method, must be idempotent void begin() { - pinMode(_echo, INPUT); - pinMode(_trigger, OUTPUT); - digitalWrite(_trigger, LOW); + _sonar = new NewPing(getTrigger(), getEcho(), getMaxDistance()); _ready = true; } // Descriptive name of the sensor String description() { - char buffer[24]; - snprintf(buffer, sizeof(buffer), "HCSR04 @ GPIO(%u, %u)", _trigger, _echo); + char buffer[23]; + snprintf(buffer, sizeof(buffer), "Sonar @ GPIO(%u, %u)", _trigger, _echo); return String(buffer); } @@ -80,28 +101,11 @@ class HCSR04Sensor : public BaseSensor { // Current value for slot # index double value(unsigned char index) { - - if (index == 0) { - - // Trigger pulse - digitalWrite(_trigger, HIGH); - delayMicroseconds(10); - digitalWrite(_trigger, LOW); - - // Wait for echo pulse low-high-low - while ( digitalRead(_echo) == 0 ) yield(); - unsigned long start = micros(); - while ( digitalRead(_echo) == 1 ) yield(); - unsigned long travel_time = micros() - start; - - // Assuming a speed of sound of 340m/s - // Dividing by 2 since it is a round trip - return 340.0 * (double) travel_time / 1000000.0 / 2; - + if (index != 0) return 0; + if (getIterations() > 0) { + return NewPing::convert_cm(_sonar->ping_median(getIterations())) / 100.0; } - - return 0; - + return _sonar->ping_cm() / 100.0; } @@ -113,7 +117,10 @@ class HCSR04Sensor : public BaseSensor { unsigned char _trigger; unsigned char _echo; + unsigned int _max_distance; + unsigned int _iterations; + NewPing * _sonar = NULL; }; -#endif // SENSOR_SUPPORT && HCSR04_SUPPORT +#endif // SENSOR_SUPPORT && SONAR_SUPPORT diff --git a/code/espurna/ssdp.ino b/code/espurna/ssdp.ino index b86caf96..3f040220 100644 --- a/code/espurna/ssdp.ino +++ b/code/espurna/ssdp.ino @@ -48,7 +48,7 @@ void ssdpSetup() { char response[strlen_P(_ssdp_template) + 100]; snprintf_P(response, sizeof(response), _ssdp_template, - WiFi.localIP().toString().c_str(), // ip + ip.toString().c_str(), // ip webPort(), // port SSDP_DEVICE_TYPE, // device type getHostname().c_str(), // friendlyName diff --git a/code/espurna/static/index.all.html.gz.h b/code/espurna/static/index.all.html.gz.h index d736c4c3..00a9e854 100644 --- a/code/espurna/static/index.all.html.gz.h +++ b/code/espurna/static/index.all.html.gz.h @@ -1,4 +1,4 @@ -#define webui_image_len 60890 +#define webui_image_len 60892 const uint8_t webui_image[] PROGMEM = { 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0xec,0xbd,0xfb,0x5e,0xdb,0x58,0xd2,0x28,0xfa,0x2a, 0x42,0x99,0x61,0xec,0x41,0xbe,0x82,0x09,0xd8,0x31,0x7c,0xe6,0x16,0x48,0x27,0x40,0x80,0xdc,0x9a,0x66, @@ -2391,658 +2391,658 @@ const uint8_t webui_image[] PROGMEM = { 0xfb,0xde,0xb7,0xf4,0xf7,0xed,0x8b,0x3f,0x0f,0xf9,0x5b,0x6f,0x9f,0x1f,0xde,0xff,0xb9,0xf7,0x62,0xff, 0x00,0xa5,0x9e,0xef,0xfd,0xf9,0x01,0x4a,0xbd,0xfe,0xfb,0xd3,0x97,0xc3,0xe1,0xd7,0x68,0xf0,0xe3,0x97, 0xfb,0xf7,0xf7,0x87,0xaa,0xc0,0xf7,0xef,0x7e,0x7a,0xfc,0x76,0x6f,0xff,0xed,0x13,0xba,0x3e,0x7c,0xf9, -0xfa,0xfe,0xcf,0x68,0xdd,0xc1,0xce,0xdb,0x37,0xc3,0xaf,0x51,0x15,0xf5,0x3b,0x7d,0x9c,0x41,0xaa,0xfe, -0x9e,0x4e,0x50,0xe2,0x30,0xb3,0x13,0x00,0xa7,0xab,0x5f,0x07,0xaf,0x5f,0x7a,0x46,0x74,0xd8,0x7b,0xc8, -0x08,0xeb,0x0f,0x4d,0x62,0x23,0x3a,0x4c,0xd2,0x9d,0xbd,0xa9,0xb8,0xef,0x9a,0xa1,0xbc,0x48,0xce,0x68, -0xe9,0xaf,0xe4,0xb0,0xb0,0x47,0xf3,0x30,0xbd,0x58,0x20,0x83,0xe1,0x0a,0x09,0x6f,0xbd,0xe7,0xab,0x8b, -0x6c,0xc6,0x00,0xfc,0xde,0x6b,0x04,0xe1,0xca,0xdd,0x83,0x55,0x09,0x66,0x0e,0xe3,0x56,0xcc,0x2b,0x9a, -0x26,0x74,0x87,0x1d,0x1b,0x7b,0xaf,0xe1,0x32,0x8a,0x9f,0x0b,0xb1,0xe8,0x9b,0x1b,0x44,0xd3,0xdc,0x12, -0xfc,0xb7,0xf7,0x2c,0x41,0x86,0x23,0x8c,0x2d,0x1d,0x77,0x67,0x9f,0xcd,0x45,0x8f,0x58,0x13,0xaa,0x3a, -0xf8,0xe2,0x44,0xec,0x0d,0x78,0x5c,0x5f,0xee,0x0f,0x1e,0xc8,0x6f,0xfc,0x3c,0x78,0x85,0x49,0xfd,0x61, -0x05,0xa0,0xbc,0x77,0x3f,0xf1,0xab,0xb4,0x3d,0xd9,0x1f,0x8f,0x86,0xf5,0xf9,0x2b,0x3c,0x44,0x00,0x4f, -0xef,0x49,0x41,0xeb,0xed,0x4d,0xc2,0xca,0x8b,0xe6,0x9d,0x7f,0x7b,0x48,0x79,0xcf,0xdb,0x63,0xfa,0xea, -0x6f,0x54,0xfd,0xab,0x55,0xd5,0x23,0xc2,0xfa,0x06,0x7b,0x82,0x7e,0xbe,0x4f,0xca,0x0b,0x90,0x84,0x77, -0x60,0xd6,0x94,0x3d,0x0f,0xb7,0xcb,0x82,0x6e,0xbe,0x78,0xc2,0x2b,0xba,0x4a,0x7a,0x5a,0x9b,0x42,0xcb, -0xc4,0x5c,0x7f,0xff,0xfa,0xc5,0x2b,0xf3,0xe3,0x80,0x08,0xc4,0xb1,0x22,0x0c,0x62,0x31,0x31,0xed,0x1e, -0xaa,0x76,0xdb,0xcd,0x9e,0x46,0x8a,0x24,0x81,0x6f,0x32,0x4d,0xff,0x98,0xa6,0x0b,0xb4,0x41,0x44,0xb2, -0x3b,0xbe,0xb7,0x5c,0x24,0xf9,0x04,0xb6,0xf4,0xf8,0x6e,0x72,0x56,0xdc,0x9d,0x7a,0x81,0x68,0xa7,0xe8, -0x47,0x10,0xd2,0x3f,0xfd,0x7e,0xc8,0x38,0x95,0xc5,0x65,0xad,0xbb,0xbd,0xec,0x3d,0x41,0x3c,0xf1,0x5e, -0x7a,0xff,0x1e,0xee,0x23,0x7d,0x00,0xc9,0x2f,0x2f,0xde,0xbe,0x52,0x01,0xaa,0xc1,0x60,0xb9,0x3a,0x16, -0x45,0xaa,0x3f,0x0c,0xf7,0xbe,0xad,0xdd,0x98,0xbd,0x43,0x05,0xae,0x76,0x47,0xa1,0x27,0xab,0x4f,0x53, -0x35,0xfc,0x69,0x98,0xd1,0x88,0xc6,0xbb,0xed,0xd2,0x0f,0xb9,0x5d,0x08,0x45,0x2d,0x2e,0xfb,0xfd,0x9b, -0xba,0x4f,0xbf,0xa7,0x65,0xf1,0x3a,0x99,0x35,0xb0,0x6e,0x90,0x56,0x56,0x32,0x2a,0x57,0x92,0x50,0xb9, -0x1f,0x7b,0x43,0x4f,0x8d,0x98,0x9f,0xf7,0x89,0x9d,0x15,0xad,0xe1,0x0e,0x31,0x09,0xa6,0x2e,0xd0,0x23, -0x8c,0xcf,0xdf,0x8b,0x9c,0xcf,0x09,0x95,0xdf,0x7a,0xe7,0xcf,0xfb,0xc3,0x70,0xe7,0x9b,0x6f,0xf0,0xcf, -0x90,0xfe,0x79,0xf0,0x67,0xfc,0xf3,0x35,0xfd,0xf3,0xf5,0x5f,0xf0,0x0f,0x9e,0xde,0xc7,0xd3,0xfb,0x78, -0xba,0x8f,0x07,0xfb,0x7b,0xf4,0xcf,0x1e,0x9e,0xee,0xf1,0xbb,0xc3,0x70,0x18,0x7e,0x03,0x0f,0x0d,0xfa, -0x8f,0xee,0xe2,0x31,0xca,0xed,0x53,0x4d,0x78,0xe9,0xfe,0x7d,0xfa,0xef,0xeb,0x07,0x21,0x6a,0xb9,0xff, -0xed,0x30,0x44,0x95,0xa8,0xfb,0x01,0x95,0x7b,0xb0,0xff,0x20,0xc4,0xc7,0xf0,0x55,0x7c,0xfe,0x1b,0x2a, -0x8b,0xb6,0xa0,0x51,0x7f,0xfe,0xe6,0x41,0xf8,0x67,0x2a,0xf7,0x97,0xaf,0x87,0x53,0x93,0x1d,0x46,0x79, -0xb2,0x6b,0xac,0x5e,0xb8,0xb2,0x27,0x71,0xfe,0x28,0x1e,0x8e,0xf3,0x68,0x27,0x47,0xf2,0xb7,0xef,0x5f, -0x1e,0x7a,0x7d,0x9f,0x6f,0x79,0x7d,0x62,0x71,0x77,0xbc,0xa0,0xaf,0xc7,0xd1,0xa0,0x7c,0x26,0xbb,0x68, -0x30,0xc9,0x9f,0xfb,0x01,0xca,0x98,0x02,0xc9,0x9f,0xe8,0xfe,0x3e,0x4f,0xa2,0xc4,0xef,0xea,0x89,0xaa, -0x16,0x22,0xc6,0xf0,0x74,0x29,0x8d,0x26,0x15,0x7a,0x28,0xe0,0x40,0x8f,0x1e,0xee,0xaa,0x0b,0x3c,0x65, -0x7c,0x40,0x01,0xc5,0x21,0x9e,0x48,0x20,0x9e,0x0a,0x58,0xdb,0xcd,0x5c,0xf0,0x89,0x48,0x0b,0xed,0x59, -0x51,0x5e,0xd4,0x9b,0x0c,0x71,0x84,0xf1,0xe0,0xde,0xe4,0xf1,0xce,0xdf,0x8f,0x66,0xd3,0x40,0x7e,0x24, -0x3b,0xbf,0x4f,0x83,0xc9,0xd1,0xe5,0x3f,0xb7,0xfe,0xe7,0x57,0x77,0xfe,0xf4,0xeb,0xf6,0xbd,0x23,0xff, -0x28,0x78,0xf8,0x28,0x1c,0x1c,0x8d,0x47,0xd1,0xf5,0x0d,0x22,0x96,0x8f,0x8e,0xd6,0xd3,0xeb,0x07,0xe1, -0xcd,0x9d,0xdd,0x30,0x8f,0x1b,0xcb,0x2f,0x99,0xd1,0x0e,0xc5,0x49,0x48,0x0d,0x0f,0xd3,0x40,0x3c,0xc4, -0x7c,0x1d,0xe5,0x09,0xd9,0xc8,0xd2,0x08,0x6f,0x19,0xa9,0x48,0x0b,0x4c,0xc9,0x3c,0x85,0xfd,0x15,0xe7, -0xbb,0x76,0x47,0xc1,0xa1,0xdb,0x3b,0x07,0xe4,0x01,0xa3,0x02,0xa4,0x33,0x9c,0xe0,0x38,0x5e,0xb9,0x53, -0x61,0x2f,0xa3,0x83,0x76,0xb5,0xac,0xa4,0x48,0x42,0x9c,0x00,0x9d,0x87,0x55,0xef,0x01,0x07,0x00,0x12, -0xa1,0x84,0x16,0xb3,0xb7,0x47,0xab,0x91,0x28,0xe7,0x09,0x4e,0xca,0x24,0x9f,0xd1,0xef,0x15,0x7c,0xc3, -0xf9,0x37,0xed,0x6b,0x71,0xc2,0xd8,0xf2,0x82,0x70,0x6b,0x4f,0x72,0x7a,0x7f,0xa9,0x5b,0x70,0x4f,0x76, -0x7a,0xb5,0x05,0x94,0x2a,0xb7,0x13,0x35,0x3f,0x40,0x54,0xbd,0x37,0xcb,0x4e,0x4f,0x53,0x50,0x77,0xeb, -0x33,0x45,0x23,0x59,0xf8,0x78,0x6b,0x27,0xc0,0x6c,0xd0,0x1c,0x0c,0x77,0xbe,0xdd,0x99,0x5e,0xd3,0x02, -0xde,0xbb,0xa9,0xef,0x4c,0xef,0xb0,0x11,0xa3,0xd1,0x36,0xf8,0xf3,0xe3,0x4a,0x9a,0xc6,0xda,0x47,0x59, -0x12,0x70,0x5d,0x60,0x76,0x82,0xd3,0x9d,0x0e,0x0d,0x89,0x83,0xc0,0x41,0x6c,0xdf,0xd6,0x56,0x21,0xc3, -0x5f,0x2a,0x8c,0x38,0x00,0xc9,0x48,0xd3,0x9f,0xab,0x2a,0x7b,0x27,0x49,0x8e,0xa1,0x3e,0xa6,0xc1,0x47, -0xee,0x17,0x1e,0xbc,0x8b,0xe4,0x73,0xaf,0xc8,0xe7,0x9f,0x19,0x56,0x22,0x81,0xde,0x90,0x66,0xeb,0xf1, -0xdb,0x83,0x17,0x2f,0x7a,0x92,0x9c,0x78,0xd9,0xf3,0xef,0x3e,0xbe,0xdb,0x83,0x47,0xc4,0xea,0xec,0xbc, -0x77,0xf7,0xef,0x77,0xf9,0xbd,0xbb,0x89,0x75,0xef,0xf7,0xbb,0x41,0xc8,0x2f,0xce,0x70,0x40,0x2d,0x7b, -0x77,0x87,0xd6,0xc3,0x6f,0xef,0x86,0xfc,0x06,0x9e,0x9f,0x7f,0x5e,0x9c,0xa7,0x39,0xd5,0xb8,0x73,0x37, -0xd8,0xea,0xd1,0xc2,0xf8,0x8c,0x46,0xf5,0xf2,0x34,0xa3,0xa7,0xa5,0x70,0x90,0x98,0x43,0xda,0x20,0x3d, -0x78,0x60,0xd1,0x8b,0xea,0x9d,0x01,0x0f,0x74,0x60,0x91,0xa4,0xb3,0xb4,0x62,0x54,0xee,0x5a,0xe5,0x5d, -0xe3,0x62,0xd1,0xa0,0xdc,0x81,0x60,0x2e,0x43,0xa7,0x90,0x9c,0xf8,0x0e,0xdb,0xec,0x3d,0x15,0xdf,0x4c, -0x37,0xf7,0xa2,0x61,0xa4,0x70,0xb5,0xb6,0x3a,0x5e,0x5a,0xaf,0x3b,0xdf,0xba,0x63,0x40,0xb1,0x1a,0x47, -0x20,0x09,0xec,0xaa,0x51,0xb5,0x96,0x3c,0xa1,0x03,0xf0,0x32,0x3b,0xcd,0x18,0xb6,0x37,0xe4,0xcb,0xd7, -0x02,0xff,0x89,0xcb,0xef,0xdf,0xab,0x8b,0x97,0xc9,0xf2,0xa3,0xba,0x7c,0xf1,0x5a,0x5d,0x3c,0xf9,0xf1, -0x2d,0x72,0x73,0x9c,0x9c,0x3f,0xcd,0x25,0x8c,0x9b,0x7f,0xbc,0xa5,0xa1,0x81,0x5b,0x3c,0xae,0x1f,0x8b, -0xd8,0xc2,0xd7,0xe2,0xc2,0x8e,0xab,0xe7,0xc4,0xda,0xca,0xd5,0xcb,0x2c,0xe7,0x94,0xd4,0xb8,0x7e,0xff, -0x64,0x29,0x17,0xef,0x0e,0xc1,0x72,0x95,0xf3,0xcf,0xdf,0x11,0x1f,0x2c,0x57,0xaf,0x57,0xf3,0x65,0x2a, -0x97,0xa0,0xf3,0x72,0xf5,0x2a,0x27,0xb6,0xe1,0x04,0x00,0xbb,0xbf,0x55,0xd5,0xf7,0x8c,0xbc,0x66,0x5d, -0xbf,0xc8,0x3f,0xd1,0xcf,0xd9,0xc9,0xef,0x6f,0x90,0x58,0xe1,0xc5,0xec,0x4a,0x7e,0xbd,0xd4,0x5c,0x00, -0xfd,0xac,0x96,0x8b,0x8f,0xfc,0x54,0x5d,0xdb,0xcf,0xa8,0x3b,0x2f,0x0b,0xbe,0x32,0xfb,0xd1,0x43,0xf6, -0x5a,0xbe,0xf5,0x31,0xe5,0x57,0x8a,0x45,0x76,0x42,0xc7,0xb9,0xd0,0xed,0x71,0x13,0x61,0x00,0xf0,0x4d, -0x90,0x78,0x38,0x30,0x89,0x63,0x92,0x02,0x0e,0x4d,0x12,0x5b,0x2d,0xb0,0xf8,0x12,0x1b,0x09,0x92,0x68, -0xba,0x14,0xcd,0xa7,0x0a,0x33,0xda,0x59,0x4c,0xe0,0x36,0x6a,0x72,0x7a,0x6d,0x52,0x15,0xe9,0x0d,0xaa, -0x20,0xf6,0x98,0x62,0x74,0xf9,0xa2,0xa6,0xb4,0x7a,0x14,0x0a,0x2f,0x2f,0x20,0x6c,0x39,0x4e,0xc8,0x60, -0x16,0xaa,0x64,0x64,0x51,0xc8,0xd4,0xf9,0xf6,0xb6,0x59,0x2c,0x2c,0x60,0x43,0x05,0x60,0xdd,0xb1,0x27, -0x7a,0xff,0xc1,0x83,0x40,0x07,0x7d,0x00,0x9b,0x84,0x88,0x2e,0xbc,0xfc,0xcc,0x9d,0xf2,0xf4,0x18,0x9e, -0x08,0x61,0x55,0x77,0xa8,0x84,0xcf,0x85,0x46,0xc6,0xb0,0xb5,0x83,0xde,0xc8,0xca,0xa1,0x9c,0x68,0x14, -0x31,0x70,0x01,0xc9,0xf1,0x09,0x09,0xb8,0x67,0xe7,0xd9,0x3f,0x3e,0xce,0x2f,0xf2,0x62,0xf1,0x1b,0x11, -0xfb,0xd5,0xa7,0xcb,0xab,0xcf,0xbf,0x33,0x88,0x97,0x79,0xe9,0xb1,0xfd,0xd2,0xe3,0xef,0x0e,0x9e,0x3c, -0x7d,0xf6,0xfd,0xf3,0x17,0x7f,0xfd,0xdb,0x0f,0x2f,0x7f,0x7c,0xf5,0xfa,0xbf,0xde,0xbc,0x3d,0x7c,0xf7, -0xd3,0xfb,0x9f,0x7f,0xf9,0xbb,0xfb,0xd2,0x57,0xf6,0x4b,0x24,0x72,0xd0,0x99,0xfe,0xcd,0x9f,0xff,0xf2, -0xad,0x5b,0xe8,0x7f,0xb6,0x6b,0x76,0x0b,0x6c,0xd9,0x05,0xfe,0xf9,0xbf,0xf4,0xa9,0xe6,0x07,0x1f,0xfa, -0x3b,0x34,0x65,0x93,0x69,0x74,0xe4,0x8d,0xee,0x3e,0x7c,0x34,0x0e,0x07,0xbb,0xeb,0xa3,0x23,0xaf,0x4e, -0x0c,0x97,0x80,0xef,0x29,0xe2,0x74,0x54,0x3c,0x1a,0x8e,0x76,0x76,0x8a,0x20,0xe9,0xc7,0xf9,0x84,0xd5, -0x41,0x9c,0x43,0xda,0x97,0x4b,0x1e,0x35,0x3f,0xb8,0x67,0x4e,0xb6,0x1d,0xa2,0x39,0x35,0xda,0xa7,0xbd, -0x60,0x72,0x08,0x09,0xe9,0xe3,0xd7,0x2f,0xfe,0x96,0x7e,0x36,0x4b,0xc0,0x19,0xf6,0xbd,0x6f,0x42,0xef, -0x7f,0x7e,0x55,0xeb,0xc7,0x9a,0xc7,0xd0,0x22,0xa3,0x57,0x0d,0x7f,0x97,0x82,0xc0,0x39,0x2b,0xf2,0xaf, -0x4b,0xe5,0x1f,0x54,0xfb,0xbd,0xd6,0x1a,0x0c,0x38,0xe6,0x1a,0x87,0xd7,0x1a,0xd8,0xd4,0x16,0x15,0x67, -0x8f,0x2d,0x4d,0xd0,0x65,0x7a,0xbc,0x2c,0x4e,0x3e,0x8a,0x27,0x1c,0x57,0x23,0x9c,0x68,0x76,0xfa,0x59, -0x40,0x01,0x38,0x29,0x9c,0xb6,0xd4,0x06,0x6e,0x45,0x07,0x2c,0x7e,0xa3,0x2d,0xb7,0x56,0x23,0x52,0x7a, -0x94,0x3a,0xef,0x33,0xce,0xc9,0xab,0x92,0x4e,0x06,0x12,0x63,0xc0,0x3b,0x36,0x37,0x54,0x7b,0x3b,0xb9, -0x1b,0xa9,0x50,0xef,0x7a,0xe1,0x1d,0x07,0x05,0x15,0xfe,0x4f,0xab,0x8b,0x37,0x2c,0xcc,0xc7,0x7c,0x45, -0xdf,0xcf,0xa9,0x46,0xf9,0xc1,0x46,0xf5,0x61,0xdd,0x8e,0x59,0x21,0xf7,0xd0,0x8b,0x6e,0x0f,0xc2,0x4b, -0xd6,0x4a,0xd6,0x4e,0x03,0x22,0x86,0x23,0x8f,0x8d,0x61,0xfd,0x52,0xf0,0x7d,0x56,0xe7,0xf8,0x48,0x78, -0x96,0x95,0x17,0x97,0xc4,0x16,0xd8,0xfb,0x0c,0xbc,0xc0,0x33,0xda,0xa8,0x6f,0xd8,0x61,0x72,0x94,0x2b, -0x4f,0x49,0xa4,0x8f,0x6d,0x58,0xd9,0xea,0x52,0x83,0x27,0xaf,0x7e,0x7c,0x2a,0xee,0x5e,0x0c,0x47,0x64, -0xb9,0x3d,0x22,0x50,0x73,0xff,0xbe,0x24,0x9f,0x37,0x0f,0x81,0xf2,0x35,0x00,0x67,0x84,0x08,0xcf,0xc7, -0x95,0x3f,0x44,0xae,0x35,0x1f,0x4e,0x72,0x5f,0x28,0xb8,0x6f,0xf2,0x55,0xa8,0x2e,0xf3,0xc4,0x11,0x37, -0xe9,0x7d,0xc7,0x8e,0xa1,0x3d,0x46,0xa8,0xd1,0xac,0x19,0x5b,0x11,0x7b,0x4f,0x5e,0xbd,0x3b,0xec,0x9d, -0x12,0xab,0x74,0xde,0xbb,0x00,0x4c,0x27,0x9d,0xde,0xf4,0xfc,0x02,0xea,0x6c,0x3a,0xc3,0x57,0xac,0xb5, -0xa0,0x61,0x5d,0x82,0x54,0x2f,0x0b,0xe2,0x36,0x66,0xe9,0x27,0x12,0x23,0x96,0x83,0x1e,0xcb,0xcd,0xbd, -0x57,0x7f,0xeb,0x55,0x05,0x73,0x19,0x74,0x22,0xa5,0x03,0x78,0x66,0x22,0x0d,0x05,0x07,0xce,0x54,0x92, -0x1b,0x4e,0xf6,0x69,0xed,0xb5,0x70,0x1f,0x6e,0xfc,0x18,0x83,0xc7,0x4b,0x69,0x97,0xda,0x57,0x49,0x60, -0xcf,0xea,0xbb,0xc5,0x19,0x9d,0xdf,0xa9,0x45,0x85,0x9d,0x5d,0xb6,0x92,0xc7,0xd8,0x66,0x88,0xa0,0x00, -0xf1,0xb4,0x0c,0x8d,0x9d,0xa9,0x55,0xc6,0x9a,0x73,0x7a,0x06,0x7e,0xb7,0x66,0x59,0xa9,0xfd,0x0a,0xa1, -0x2b,0x11,0x85,0xd5,0x69,0x59,0x5c,0x88,0x1a,0x09,0xb1,0x4f,0x50,0x5d,0x2b,0x36,0x05,0xce,0x80,0xd9, -0xef,0xe9,0xa3,0xd3,0x32,0x4d,0x3f,0xe0,0xca,0x54,0xf9,0x42,0x46,0xb6,0xa2,0xca,0x8a,0xde,0x1c,0x13, -0x84,0x6a,0x4f,0x33,0x3e,0xe2,0xc0,0x22,0x25,0x9f,0x92,0x6c,0x8e,0xc3,0xbe,0xc7,0x20,0x89,0x88,0xc0, -0xed,0xbd,0x3a,0x7c,0x3c,0xe8,0xd1,0x1e,0x5c,0x66,0xb4,0x4a,0xa8,0xcb,0x98,0x8f,0xa4,0x57,0x5d,0x16, -0x3b,0xc8,0xf8,0xa9,0xf4,0x6f,0xfa,0xd3,0x7e,0x73,0x4d,0xda,0xfa,0x45,0x46,0x5c,0x72,0xec,0xb8,0x16, -0x93,0xee,0x2a,0xe1,0x96,0x69,0x7a,0x81,0xb6,0x1d,0xd7,0x5a,0xb8,0x53,0x55,0xa9,0xac,0x0f,0xcc,0xa1, -0xb5,0xd8,0x49,0x1a,0xc1,0x11,0x3a,0xca,0xb5,0x84,0xe3,0xa9,0xa1,0xa7,0x13,0x13,0xe9,0x5a,0x01,0x36, -0x13,0xde,0xb1,0xbc,0x46,0xe8,0xbf,0xe5,0x40,0x95,0xb1,0x01,0x46,0xd8,0xdb,0x44,0xc7,0x08,0xa9,0x88, -0x9d,0x3d,0x07,0x32,0x84,0x7e,0x3a,0xc8,0x22,0x7b,0x26,0x94,0xc8,0xd5,0x7e,0xd3,0x52,0xf8,0x4a,0x7d, -0x60,0x87,0x5e,0x38,0xc3,0x42,0x84,0xc0,0x9c,0x61,0xb9,0x84,0xd0,0x4a,0xb0,0x11,0xdb,0x9a,0x6e,0xab, -0x7b,0x34,0xac,0xbc,0x63,0x49,0x2a,0x11,0x25,0xa1,0xa8,0x0d,0x61,0x51,0x97,0xb5,0x0f,0xf5,0x1c,0x71, -0xa9,0xf3,0x39,0x86,0x88,0x9a,0x4f,0xb5,0x9f,0x43,0xa0,0xc9,0x49,0x5e,0x59,0x82,0x16,0xcd,0x96,0x8c, -0xc8,0xa9,0xe9,0xce,0x83,0xf4,0x3e,0x58,0x12,0x33,0xde,0xf4,0x21,0x78,0xc2,0x25,0x4a,0x6d,0xd1,0x23, -0x32,0x8f,0x89,0xa5,0x21,0x97,0x2f,0xf3,0x72,0xc0,0xd0,0x72,0x73,0x8c,0x72,0x90,0x8a,0xf5,0x92,0x33, -0xb0,0xea,0x3e,0x03,0x64,0x07,0x03,0xc4,0x89,0x5d,0x9d,0x3b,0x99,0xa6,0x37,0xf4,0x5c,0x32,0x48,0x8e, -0xd4,0x46,0xe9,0x0a,0x83,0x30,0x0a,0x68,0x69,0x03,0x94,0xce,0x72,0xd5,0x86,0x2b,0xf3,0x4c,0xc5,0x8e, -0x6b,0xad,0x4e,0xbd,0x7a,0xc0,0x5b,0x22,0x61,0x28,0xcc,0x3b,0x56,0x61,0x45,0xd6,0xaf,0x35,0xae,0x8f, -0x1a,0xe4,0x8b,0xe4,0x2a,0x82,0xba,0xa4,0x4a,0xe6,0xf0,0xe1,0x66,0x57,0x5f,0xb1,0x8b,0xc0,0x4f,0xda, -0xd9,0xef,0x58,0xed,0x5a,0x1e,0xb3,0xb7,0xfd,0x57,0xf0,0x73,0xd3,0x0f,0xea,0x63,0xb7,0x21,0x2f,0x6f, -0x6f,0x5b,0x27,0x5a,0xcd,0xf7,0xb9,0xa7,0x2f,0xef,0x21,0xa5,0xdd,0x15,0x9d,0x10,0x9d,0x29,0x4a,0xfe, -0x7a,0x34,0xd4,0xdf,0x6c,0x52,0xcf,0xb7,0xa0,0x7b,0x5a,0xe9,0xcb,0x24,0x43,0xe4,0x2d,0x12,0x79,0x58, -0x43,0xdc,0xfb,0x9c,0x56,0x21,0x14,0xca,0x20,0x29,0x97,0x49,0x5e,0x31,0x49,0x61,0xd2,0x72,0x4e,0x9b, -0x8d,0xc5,0xeb,0x31,0x35,0x1c,0x66,0x07,0xd5,0x4f,0xdf,0x96,0xfc,0x67,0x85,0x7d,0xa2,0x23,0x12,0xd1, -0x69,0x66,0x98,0x6e,0x20,0xeb,0x92,0x27,0x68,0x8b,0x71,0xd3,0x03,0xc3,0x2b,0x68,0xf7,0xb1,0x9a,0x51, -0xa8,0xc2,0xeb,0x9b,0xc6,0x82,0x75,0x46,0x05,0x4f,0xb0,0x07,0x6a,0x36,0xb9,0x93,0x7e,0xae,0xd7,0xfc, -0xa9,0x54,0x40,0x16,0xbc,0xc7,0xb4,0xd0,0xd1,0x61,0xe8,0x4e,0x9d,0x9e,0x2b,0x3d,0x3c,0x0b,0x8e,0x7c, -0x58,0x8c,0xb5,0x1e,0xaa,0xee,0x69,0x85,0x44,0x1f,0x28,0xe6,0x05,0x6e,0x3b,0xd4,0x59,0xff,0xdf,0xd4, -0x94,0x19,0xc9,0x39,0x52,0xa1,0x10,0x75,0xb4,0xe9,0x44,0x94,0xbc,0xbd,0xf7,0x2f,0x9e,0xbd,0xa0,0x7d, -0x48,0xe4,0xb6,0xfc,0xb8,0xa9,0x85,0xea,0x65,0xaf,0x63,0xa5,0xb6,0x56,0xe8,0xdb,0xe4,0x53,0x7a,0xcb, -0xea,0xf4,0x37,0x2c,0x4f,0x7a,0x7d,0xb0,0xb8,0x2c,0x9f,0x5e,0x2d,0xc4,0x96,0x20,0x6c,0xd0,0x90,0x1f, -0xd8,0x07,0x1e,0x95,0x79,0x83,0x93,0xd8,0xd2,0x8b,0x32,0x8f,0xe9,0xca,0xb0,0xbc,0xc1,0x36,0xbc,0xf9, -0x74,0x53,0xf9,0x7a,0x0f,0xc4,0xc3,0xb0,0x9b,0x87,0xe2,0xae,0x8e,0x0c,0x5f,0xf6,0x68,0x38,0xf6,0xdb, -0xfb,0xe4,0x17,0xeb,0x44,0xb5,0x16,0x81,0x90,0x59,0x1c,0x78,0x3c,0xfc,0x6a,0x1f,0x51,0x99,0x2a,0xf9, -0x98,0xf6,0xd2,0xd3,0x53,0xea,0x78,0x6b,0xfb,0xd0,0x4f,0x3a,0x3c,0xf3,0xe2,0x72,0x8c,0x8c,0x73,0xd8, -0x38,0x6a,0x8d,0x42,0x5b,0x10,0xd9,0x6c,0xe1,0x1f,0x69,0x8b,0x5e,0x04,0xf8,0x28,0xb5,0xe1,0x7d,0xf6, -0x2c,0xfb,0xef,0x68,0x90,0x5e,0xac,0x75,0x9b,0xb0,0xc1,0x38,0x4e,0xf9,0x4b,0x2d,0x32,0x27,0x01,0x1f, -0x37,0xcc,0x82,0x30,0xb9,0xe8,0x01,0xbb,0x92,0xb8,0x13,0xd5,0xaa,0x3f,0xd4,0x0c,0xde,0xd5,0xc8,0xde, -0xd6,0xe4,0xc9,0x6f,0xc2,0x3d,0x1c,0x4e,0x8d,0xcd,0xfe,0x1d,0x9b,0xd9,0x6a,0xcb,0xa6,0xb1,0xc2,0xd7, -0xe0,0x89,0xdf,0x91,0xdc,0xef,0x7b,0xc0,0xa4,0x64,0x32,0x0e,0xd4,0xc4,0x65,0x79,0x12,0xf3,0xd1,0x2e, -0xd2,0x80,0x9c,0xec,0x76,0xc5,0x45,0x0e,0x96,0xf7,0xdd,0x42,0x33,0xe3,0xb2,0x7d,0xd9,0x24,0xcc,0xdc, -0x19,0x67,0xce,0xe8,0xd8,0xcc,0xd5,0x7a,0x3d,0x64,0x13,0xbf,0xe3,0x8d,0xa6,0xb4,0x6f,0x79,0x8c,0xb8, -0x87,0x91,0x95,0x3a,0x80,0x24,0x5d,0x61,0x28,0x9b,0xe3,0x0b,0x98,0xdf,0xac,0x58,0x2d,0x69,0x24,0xe5, -0xe8,0x33,0x87,0x38,0x62,0xda,0x2e,0xcb,0xac,0xa2,0xf3,0x6d,0xd0,0xbb,0x85,0x6c,0x01,0xdf,0x4d,0x32, -0x6b,0x99,0x3a,0xc6,0x9e,0x4a,0xfe,0xe2,0x36,0xab,0x68,0x0a,0x02,0xda,0xbf,0x4d,0x47,0x4e,0x75,0x45, -0x9f,0x2a,0xc1,0xcf,0xe5,0xdf,0x89,0x5f,0x1e,0x5b,0xa4,0xda,0x53,0xad,0x40,0xc6,0x8e,0x48,0xf5,0x50, -0x58,0x0b,0xcb,0xb6,0x4a,0xf3,0x5a,0x28,0x06,0x1a,0xde,0xad,0x48,0x14,0xd3,0x24,0xe7,0x5c,0x89,0x99, -0xe2,0xda,0x0e,0x6e,0xdc,0x40,0x54,0xdd,0x75,0x17,0xc6,0x4d,0x8e,0x91,0x44,0x60,0x12,0x15,0xf2,0xbb, -0x00,0xae,0x5d,0x20,0xe4,0x86,0x0e,0xba,0x42,0xbc,0x07,0x7a,0xc7,0x08,0xa9,0x26,0x9e,0x95,0x0e,0x3e, -0x60,0xa2,0x0b,0x5b,0x62,0x96,0x0a,0x23,0xe8,0xfa,0xcd,0x46,0x89,0x45,0xec,0x33,0x93,0x22,0x7f,0xd3, -0x51,0xfb,0xe5,0xd9,0x21,0xae,0x5a,0x2a,0x72,0xe6,0xa8,0x99,0x65,0xd8,0x1e,0x52,0x55,0xfe,0x03,0xef, -0x0e,0xaf,0xf3,0x2c,0x74,0xe8,0xbb,0x24,0x86,0x75,0x1c,0x2d,0xdc,0x19,0x62,0xc5,0xd7,0x75,0x36,0x23, -0xc1,0x5a,0x02,0xf8,0xa2,0x0a,0x0a,0xc7,0x9b,0x66,0x8f,0xdf,0x9e,0x24,0x96,0x03,0x01,0x06,0x69,0x49, -0x77,0xde,0xf0,0xbc,0x6b,0x03,0x0f,0x5c,0xde,0xe9,0xc9,0x2c,0xfb,0x34,0xc0,0x43,0x66,0x9b,0xe0,0xea, -0xa9,0x99,0xba,0xd0,0xfe,0x34,0x4a,0x48,0x07,0xdc,0x0f,0x3d,0x7f,0xac,0x0e,0x16,0xe7,0x63,0xe7,0x89, -0xdc,0xb5,0x3f,0x65,0xd7,0x76,0x9e,0xc8,0x56,0xee,0xaa,0xf1,0x49,0x7a,0xbc,0x3a,0x23,0x56,0xef,0x22, -0xc9,0x67,0x9b,0x44,0xb0,0xd9,0xf1,0xd9,0xc9,0xc5,0x0c,0x87,0x0a,0x9b,0xc4,0x1c,0x8c,0x48,0xf9,0xd9, -0xfc,0xa2,0xbc,0x41,0xdf,0x3b,0x91,0x9a,0xa1,0x92,0xe8,0xfc,0x30,0xe0,0xdc,0xdc,0xce,0x5c,0xa6,0xc7, -0x30,0x96,0x2a,0xcb,0x89,0xe7,0xb9,0xef,0x49,0x7e,0x9f,0x97,0x69,0xbe,0x52,0x4c,0x32,0x4d,0x11,0x43, -0x40,0x38,0x99,0x7f,0x3c,0xb1,0xd4,0xca,0x88,0x7f,0xc5,0x48,0xcb,0x5f,0x2a,0xf0,0x43,0x96,0x7f,0xdc, -0x54,0xc8,0xd2,0xa5,0xd0,0x54,0xbd,0x4e,0xf2,0x74,0x2e,0x5f,0x1f,0x2c,0x70,0x5d,0x4b,0x24,0x4e,0x83, -0x4c,0xfa,0x1f,0x53,0x0f,0x49,0xf7,0x56,0xf3,0xb9,0xb4,0xd7,0x77,0x75,0x25,0x12,0x75,0xa4,0xd7,0x84, -0xc5,0xcf,0x72,0x08,0x03,0xab,0x62,0xc1,0xbf,0xbb,0xea,0x69,0xa9,0xa8,0xea,0x7b,0xbd,0x47,0xc4,0x08, -0x7d,0x32,0xc8,0xb7,0x4c,0xd0,0xfc,0x84,0xf8,0x5d,0xe5,0xc3,0xa5,0x4a,0xe6,0x54,0x72,0xb0,0xd8,0x39, -0x63,0x89,0xda,0x68,0xd8,0x4a,0xcb,0xb8,0x96,0x51,0xc9,0x42,0x03,0x18,0xb0,0x41,0x8c,0x44,0x5a,0xea, -0x69,0x98,0xe9,0x25,0x26,0xaa,0xcd,0x1e,0xd5,0x56,0xd6,0x7c,0x08,0x3f,0x57,0xea,0x77,0x9d,0x66,0x2f, -0xfc,0x7a,0x48,0x45,0x44,0x43,0x36,0x29,0x91,0x80,0x5b,0xc9,0x97,0x87,0x85,0x34,0x1b,0x9e,0x9d,0x8d, -0x7e,0x1a,0x35,0xf3,0xff,0x99,0xbe,0xa2,0x5d,0xe1,0x72,0x53,0x97,0x97,0xaa,0xcb,0xae,0xc3,0x81,0x24, -0xb0,0x41,0xba,0x22,0xfa,0x88,0x51,0x2f,0x65,0xa2,0xea,0x64,0x25,0x93,0xde,0xed,0xe7,0x19,0x1c,0x0d, -0x74,0x2d,0x99,0x16,0xa4,0xcd,0x90,0x2d,0x6f,0x1b,0x32,0xaa,0x70,0x76,0x45,0x7b,0xeb,0xb6,0x31,0x9b, -0xa5,0xf3,0x1f,0x85,0xbb,0x6d,0x69,0xb2,0xc5,0x85,0x61,0x89,0x95,0x8a,0x21,0x18,0xdd,0xa9,0x03,0xa9, -0xec,0xd5,0x75,0x41,0x04,0xf7,0x8f,0x57,0xe1,0x0d,0x2e,0xf8,0xe0,0x4a,0xf5,0x76,0xb1,0xab,0x22,0x29, -0xb3,0x5d,0x93,0xf7,0x95,0x62,0xbf,0x97,0x1d,0xb3,0x96,0x3e,0x8a,0x49,0x76,0x54,0x2f,0x2d,0x1b,0x66, -0xbb,0x97,0xc9,0x95,0x32,0x08,0xc2,0xf5,0xc0,0xd4,0x52,0x42,0xe3,0xc8,0xa1,0x67,0x8c,0x30,0x2d,0x07, -0xef,0xfe,0x70,0xd8,0xdf,0x1b,0xde,0x4b,0xc5,0x0e,0xaa,0x3f,0x09,0x77,0x10,0xb0,0x5a,0x38,0xae,0x10, -0xba,0x43,0xbd,0xe1,0xe8,0x80,0x3b,0x48,0x3c,0xa3,0x67,0xdb,0xd0,0x9f,0x44,0x45,0xa6,0xe8,0xbc,0xb0, -0x5f,0x50,0x6d,0xd6,0x53,0x06,0x0f,0xaf,0x7e,0xff,0x06,0x13,0x6b,0xea,0x18,0x08,0x5e,0xf4,0x0e,0x4d, -0xd0,0x8e,0x6a,0x8d,0x27,0xb1,0xa4,0x7c,0x70,0x22,0x8b,0xb2,0x9e,0xb9,0xce,0xf7,0x30,0xcc,0xdd,0x2f, -0x5a,0x13,0x86,0xb0,0x1e,0x6b,0x71,0xe8,0x21,0x42,0xb8,0x8f,0xb3,0x44,0xde,0x62,0xc0,0x56,0xf3,0xf4, -0x3f,0x59,0x23,0xff,0x42,0x1d,0xbc,0xf4,0x6f,0x5f,0x27,0xa6,0x36,0xc3,0x3a,0xc9,0xc9,0x29,0x77,0xbb, -0x96,0x4a,0xc5,0x4b,0x45,0xbf,0x77,0xfb,0x5a,0xa9,0xeb,0xe9,0x58,0x2c,0xb9,0x5e,0x2c,0x55,0x98,0x38, -0x5f,0xed,0x5e,0x2d,0x20,0x26,0x89,0x59,0x2d,0x2a,0x59,0x5f,0x2a,0xe8,0x60,0xca,0x6e,0x37,0xf6,0x96, -0x62,0xec,0x89,0xbc,0x39,0xbb,0x08,0x8f,0x34,0xad,0x2a,0xfb,0x9e,0x1c,0x8b,0x9d,0x75,0x0b,0x4a,0x64, -0x9c,0xb4,0x97,0x62,0xa1,0x97,0xc3,0x57,0xc6,0x4c,0xf8,0x84,0xc7,0x43,0xa9,0xe7,0x32,0xac,0x99,0xe2, -0xdf,0x5d,0xaf,0xc8,0xf8,0xab,0xd6,0x6b,0xd1,0xb5,0x5e,0xf5,0x80,0xb4,0x16,0xac,0x1e,0xfd,0xce,0x37, -0x79,0xc5,0x76,0xbf,0x6a,0xaf,0x9f,0x76,0xcb,0x15,0xa7,0x21,0xb6,0x4d,0x4b,0x7c,0xcd,0x66,0xb5,0xc5, -0xb3,0xef,0x57,0x7d,0x92,0xbf,0x06,0x39,0x18,0x03,0x5d,0xe0,0xb4,0x28,0x5b,0x25,0x6e,0xa9,0x5d,0xd9, -0x61,0x3b,0xbe,0xa0,0x2d,0xb4,0xb7,0x7f,0xa5,0x51,0x8a,0xd8,0x73,0x6b,0xef,0x99,0x25,0xe7,0x75,0x34, -0x81,0xa3,0xdc,0xef,0x6a,0x0b,0xf7,0x26,0x09,0xbd,0xa8,0x77,0x08,0x3c,0x3b,0xf9,0xc0,0x5f,0xba,0x1b, -0x84,0xd9,0xd2,0xae,0xdd,0xb1,0x45,0xfb,0x83,0xce,0x9d,0xda,0x53,0xc8,0x94,0xd6,0x2b,0xaf,0x3e,0x09, -0x95,0x0b,0x91,0xd6,0xf5,0xb1,0x27,0x91,0x39,0x37,0x73,0xe7,0x18,0x1c,0x60,0x84,0x0a,0xed,0x3e,0xc5, -0x27,0x57,0x54,0x67,0x9c,0x2f,0x5a,0xdd,0x48,0x01,0xe6,0x61,0xb3,0x33,0x61,0xe2,0x8c,0xb5,0xb0,0xd5, -0xfd,0x44,0xad,0x8e,0x73,0x71,0x27,0x6b,0xcb,0x51,0xe6,0x50,0xbd,0x63,0x44,0x29,0x97,0x4b,0x62,0x17, -0x1e,0xf4,0xb2,0x7e,0xdc,0xb0,0xf3,0x8f,0x0c,0x8f,0x5f,0x89,0x7d,0x56,0x9f,0xea,0x8a,0x20,0x59,0xcd, -0x97,0x19,0x36,0x6d,0x73,0x27,0x56,0x86,0x5c,0xb8,0x45,0xb1,0x20,0x0c,0xb2,0xa5,0x94,0xfd,0x97,0xfc, -0x81,0x12,0xcd,0xd5,0xd6,0xdc,0x53,0xe2,0xb8,0x06,0x09,0xfb,0x73,0xa0,0x46,0x37,0xb5,0xad,0x6d,0x5d, -0x0b,0x68,0xd3,0x66,0x97,0x2e,0x89,0x01,0x1b,0xca,0x5b,0xfb,0x2e,0xe6,0xa0,0xab,0x5c,0x10,0xba,0xc4, -0xdc,0xb7,0xb2,0xd1,0x7a,0x32,0x5c,0xef,0x4b,0xf4,0xb5,0xf4,0xea,0xa2,0xc9,0x29,0x02,0xfd,0xef,0x3e, -0xe4,0x41,0x85,0xa2,0x25,0xf6,0xee,0xf6,0xbb,0x6a,0xef,0xdf,0xf5,0x7a,0x9c,0x4e,0x32,0x56,0x75,0x79, -0x8f,0x1e,0xc2,0x15,0xce,0xbd,0xf9,0xe1,0x83,0x24,0x14,0x2a,0xe9,0xe9,0x2e,0x1e,0xd3,0x1f,0xae,0xfa, -0xd1,0x5d,0x04,0x75,0xb6,0xb7,0x46,0x6d,0xd7,0x6c,0xec,0x0f,0x79,0xb0,0x79,0x93,0x5c,0x37,0x76,0x88, -0x94,0xef,0xa6,0xd0,0xc6,0x04,0x6d,0x31,0x8d,0x88,0x6a,0x4f,0xa6,0xec,0xfe,0xe3,0xee,0x16,0xb4,0x7a, -0x70,0xb6,0x40,0x9a,0xb7,0x52,0xed,0x99,0x82,0x7f,0x1b,0xef,0x3f,0xde,0x4f,0xa5,0xb3,0x9f,0x1c,0x6f, -0x33,0xe5,0xd6,0x01,0x07,0x22,0xc5,0x04,0x16,0x48,0xc1,0x5e,0x75,0x96,0x64,0xb7,0x0f,0xa7,0xe8,0x02, -0x77,0x5a,0xaa,0x41,0xe5,0x16,0xd2,0x2e,0xf9,0xe1,0x62,0xd9,0x2a,0x6c,0x3c,0x44,0x9c,0xe2,0x9c,0xb9, -0xaf,0xdd,0x08,0xdb,0x9d,0xa4,0x5d,0xfe,0x43,0x96,0x7f,0xea,0x6c,0xb8,0xb8,0xa6,0x38,0x2f,0x14,0xf9, -0x07,0xa8,0x71,0x11,0xff,0xdd,0xdc,0x7b,0x5a,0xbe,0xb5,0xd9,0x5e,0xf6,0x7c,0xd7,0x3c,0x79,0x83,0x46, -0x1a,0x5e,0xfd,0x16,0x3a,0x69,0x2d,0x81,0x9a,0xb5,0xff,0xcf,0x17,0x80,0x92,0x1a,0xca,0x4e,0xa9,0xa1, -0xe8,0x94,0x1a,0x8a,0x8d,0x52,0x43,0xbd,0x84,0xa8,0x2b,0xec,0xf9,0x4f,0x3d,0xb7,0x85,0x87,0xb2,0x49, -0x69,0xdd,0xc1,0xab,0xc7,0xa1,0x3d,0x76,0x07,0xc5,0xbc,0x28,0xdf,0x7c,0xff,0x9d,0xc3,0xa7,0x9f,0xe0, -0x66,0xf7,0xa0,0xa5,0x66,0xd0,0xaa,0xba,0x28,0xbd,0xdf,0xcd,0x32,0x61,0x60,0xab,0x7a,0x60,0x72,0xbb, -0x55,0xf2,0x11,0xaf,0xb5,0xee,0xf8,0x3e,0x13,0xb6,0xcb,0xf3,0x34,0x9d,0x73,0x03,0x5f,0x13,0xf3,0x40, -0x24,0xe6,0x7a,0x39,0xcf,0x18,0xd9,0xd9,0xbb,0x2c,0xcf,0x8e,0x17,0x9e,0xc2,0x64,0x91,0xbb,0x2b,0x1b, -0x5f,0xa4,0xc9,0x9a,0xb6,0xaa,0xf2,0xb4,0x3f,0x0f,0x12,0x31,0xc2,0x9e,0x35,0xb2,0x35,0x17,0xdc,0x06, -0x2f,0xbc,0xa6,0xaf,0x44,0x9c,0xc7,0x90,0xc5,0xf4,0xe3,0x12,0x3c,0x5d,0x2e,0xe6,0xaf,0xce,0x63,0xab, -0xf9,0x59,0x95,0x71,0xf1,0x36,0x0e,0x79,0xc9,0x09,0xcc,0x2b,0x35,0xc5,0xa9,0xab,0x41,0xd1,0xed,0xa8, -0xbf,0x2c,0xcd,0x69,0x4e,0xe2,0xc1,0xa1,0x3b,0x7f,0x27,0x55,0x73,0xf2,0x68,0xde,0xd6,0x6b,0x9f,0x97, -0x39,0x82,0x14,0x96,0x9d,0xf3,0xa5,0x27,0xca,0x99,0x26,0xd8,0x43,0xc2,0xfa,0xc5,0xff,0x53,0x5d,0x57, -0x5f,0x0b,0xaf,0xe5,0x42,0xfa,0x1d,0x74,0x2c,0xde,0xe7,0x6f,0x7f,0xfa,0x8f,0x16,0x2f,0xbd,0xff,0x7f, -0x7a,0xf1,0x9e,0x2f,0x3f,0xfd,0xc7,0x8b,0x97,0x7f,0xb3,0x2e,0xce,0x50,0x90,0xfb,0xdf,0x90,0xdc,0x3b, -0x38,0x07,0x05,0xe9,0xd3,0xb2,0xae,0x49,0xcb,0xde,0x10,0x0f,0x96,0x9b,0x1e,0x7c,0xc2,0x83,0xce,0xf5, -0x4f,0x0d,0x85,0xd2,0xae,0xbd,0xe0,0x68,0xf6,0xf3,0x74,0xde,0xa0,0xb7,0x27,0xea,0x6e,0x63,0xec,0x1f, -0x0d,0x25,0x45,0x94,0x4d,0x6b,0x3b,0x27,0xe9,0x11,0x12,0x38,0xa4,0x23,0xe0,0x41,0xd1,0xdf,0x3f,0xdd, -0x0f,0x93,0x47,0xc3,0xed,0x79,0x56,0xbd,0x3f,0xcf,0x00,0x19,0xe6,0x27,0x3b,0x3b,0xe1,0x9c,0x57,0xfb, -0xf6,0x36,0x5d,0x07,0x81,0x52,0xce,0xa7,0x3b,0x49,0xe8,0x40,0x0c,0x76,0x39,0xf2,0x29,0x6e,0xb1,0x6a, -0x2c,0xd0,0xfc,0xcb,0x0b,0x34,0xaf,0x9d,0xf3,0x9d,0x31,0x92,0xde,0x6a,0xd5,0xb0,0x18,0xc2,0x31,0x58, -0x61,0x06,0xbb,0x9a,0x3d,0x22,0x9b,0x0f,0x94,0x0c,0xd9,0xec,0x1f,0x26,0xa3,0x4c,0x73,0xde,0x27,0x71, -0xd1,0xcf,0xc2,0x39,0xbd,0xbd,0x6c,0x73,0x14,0xb2,0x56,0xbc,0x70,0xee,0xd2,0xfb,0x93,0x7a,0x19,0x6e, -0x2e,0xe2,0xec,0xda,0xb2,0x66,0x82,0xb9,0xa8,0x68,0xf3,0xd4,0xac,0xe2,0x54,0xa2,0x2a,0xe7,0xce,0x7a, -0x57,0x53,0xeb,0x49,0x96,0x49,0x69,0x76,0xca,0xcd,0xb6,0xb9,0x61,0x11,0x7a,0xff,0x25,0x6e,0x38,0xd3, -0xdc,0xb0,0xf5,0xf5,0xcc,0x61,0x87,0x2d,0x27,0x11,0xe5,0x6c,0x05,0x34,0xa7,0x0f,0xcc,0x52,0xd6,0x47, -0x31,0x74,0xd2,0xfa,0xf6,0x88,0x0b,0x7c,0xa2,0xcd,0x06,0x23,0x08,0xca,0x08,0x7a,0x43,0x9f,0xb3,0x91, -0xff,0xbf,0xd5,0x3d,0x8b,0x72,0xdb,0xb6,0xb2,0xbf,0x62,0xf3,0x9c,0xd8,0xa4,0x45,0xd1,0x92,0x1b,0xa7, -0x2d,0x65,0x5a,0xe3,0xb8,0x39,0x49,0x66,0xda,0x24,0xb5,0xdd,0xe6,0x76,0x5c,0x5f,0x0f,0x65,0xd1,0x12, -0x1b,0x45,0xd4,0x21,0x29,0x39,0x39,0xae,0xff,0xfd,0xee,0x2e,0x1e,0x04,0x40,0x50,0x0f,0x37,0xa7,0xb7, -0xed,0x4c,0x6a,0x11,0x58,0x00,0xbb,0x8b,0xf7,0x62,0x1f,0x81,0x92,0x69,0x58,0x63,0x94,0x69,0x39,0x49, -0x54,0x6b,0x0c,0x47,0x68,0x72,0x57,0xb5,0x24,0x81,0x48,0x83,0xea,0xda,0x2c,0x7e,0x98,0x7c,0x53,0xa3, -0x0a,0xa2,0xf2,0x81,0xf9,0xbf,0x0d,0x3e,0x24,0x74,0x6f,0x0b,0x80,0x67,0x2f,0x4c,0xcf,0x0a,0xcc,0xb1, -0x64,0x4c,0x06,0x0c,0xf4,0x58,0x76,0x97,0x0c,0x48,0x95,0x16,0x5f,0xc7,0xd0,0x39,0x04,0x57,0x81,0x20, -0x31,0x43,0xac,0x4b,0x95,0xb9,0x24,0x65,0xbb,0xf2,0x0f,0x89,0xd9,0x33,0xa9,0x34,0x21,0x00,0x64,0x3e, -0x50,0x12,0x0b,0xd3,0xc8,0x48,0x53,0x1d,0xa2,0x17,0x8e,0x2c,0x1e,0x32,0x0f,0x65,0x0c,0x48,0x79,0x67, -0xa4,0x17,0x45,0x42,0x0f,0xf6,0x42,0xad,0xb0,0x7e,0x7a,0x60,0x86,0xe2,0xeb,0xaf,0x86,0x18,0x49,0x9c, -0xef,0xbf,0x31,0x1a,0xf6,0x53,0x13,0xb0,0xdc,0xb0,0x26,0xee,0xf5,0xd5,0x9d,0xcf,0xf3,0x58,0x04,0x4a, -0xf4,0x49,0xe7,0xbe,0x52,0xee,0xcd,0x83,0x71,0x94,0xc1,0x7d,0x76,0x1f,0xed,0x4b,0xf2,0xa0,0x80,0x8f, -0xee,0xd5,0x3e,0x2c,0x6e,0xf0,0xb1,0x80,0x8f,0x03,0xf6,0xf1,0x08,0x14,0xd9,0x2a,0x8b,0x56,0xb3,0x88, -0x9f,0x72,0x00,0x50,0x39,0x51,0x3b,0x1b,0xe0,0xd2,0x12,0x57,0x2c,0xa1,0xb9,0xab,0x01,0xf0,0x53,0x3f, -0x11,0x2d,0xa7,0xd6,0x36,0xa3,0xfc,0x56,0xee,0x7d,0x66,0x1b,0x72,0x03,0xb6,0xd5,0x2f,0x33,0xd5,0xba, -0xc5,0xe2,0x29,0xc6,0x94,0xf8,0x8e,0xa0,0xb4,0xc3,0x96,0x52,0x91,0x25,0xcf,0x11,0x7c,0x89,0x25,0x10, -0xe5,0xe4,0xa8,0x60,0x57,0xc9,0x69,0xeb,0xa3,0x49,0xc9,0xac,0x36,0xa6,0x98,0x0e,0xb5,0x6c,0x90,0xa7, -0xb7,0xa9,0x52,0x97,0xf2,0x42,0xc6,0xf1,0xb0,0xbf,0x8e,0x29,0x4f,0x2b,0xda,0xa3,0x1a,0x7b,0x21,0xc1, -0x79,0x2a,0x5e,0xbf,0x58,0x35,0xc6,0x83,0x18,0x7f,0x5c,0x73,0x54,0xb9,0xa1,0x15,0x77,0x99,0x6b,0x45, -0x5e,0xca,0xb4,0x88,0x00,0x9a,0x14,0x78,0x2f,0x39,0xa7,0x57,0x41,0x85,0x2a,0xf5,0xb6,0x62,0xb6,0x52, -0xbb,0xb6,0xf2,0xae,0x12,0x1a,0xf8,0x75,0xbc,0x6a,0xcf,0x3e,0xb1,0xaf,0x40,0x57,0xbf,0xab,0x5d,0x46, -0x54,0x58,0x5d,0x8c,0x9a,0x2a,0xd5,0xdf,0x58,0x62,0xdf,0x28,0xa5,0x7f,0x1b,0x0d,0x48,0xb3,0x80,0xf5, -0x50,0x56,0xc0,0x95,0x0f,0x4b,0x9d,0x8f,0xc0,0xda,0x28,0x66,0x24,0x18,0x6d,0xf0,0xa7,0xf5,0x7a,0xe5, -0xf6,0x07,0xf8,0xf8,0xca,0x13,0xcb,0x33,0x3e,0x49,0x9a,0x93,0x52,0xbe,0x54,0xf2,0x3d,0x0f,0x35,0x05, -0xe8,0x99,0x3e,0xf6,0xaa,0x19,0x5a,0x41,0x49,0x27,0x20,0xae,0x9a,0x8c,0x3a,0xad,0x2c,0x87,0xb9,0x98, -0x68,0x6b,0x65,0x98,0xbb,0x09,0xd7,0x13,0x62,0x62,0x45,0x95,0xfe,0x67,0xe6,0xc3,0x99,0x51,0x96,0xa2, -0x2a,0x4a,0xaa,0x28,0x57,0xb4,0xbf,0x66,0xdb,0x0c,0x3a,0x57,0x14,0xea,0xb8,0x90,0xd6,0x53,0x89,0x66, -0x2f,0x39,0x38,0xaa,0xdb,0x4e,0x0b,0xcf,0x1c,0x28,0xe9,0x81,0x1b,0xf8,0x8c,0xd9,0x7b,0xa4,0xd3,0x71, -0x92,0xa7,0xa8,0x12,0x45,0x63,0x8a,0x14,0xbc,0xd2,0x19,0x5f,0xa5,0xd9,0x81,0x45,0xb7,0x67,0xa4,0x67, -0x39,0x26,0xd8,0xe4,0x12,0xa4,0xde,0x8d,0x30,0x7e,0xca,0x93,0x5b,0xa8,0x12,0x43,0x9e,0xc0,0xe2,0x72, -0x23,0x84,0xab,0x5a,0x66,0x99,0x4c,0xa6,0x49,0x19,0x32,0x18,0x6a,0x13,0xad,0xba,0x6b,0x53,0x15,0x12, -0x23,0x3e,0x71,0xa4,0x76,0xae,0x58,0x41,0x64,0x82,0x39,0x87,0x99,0xd5,0x0b,0x9f,0xad,0x1c,0x38,0x8e, -0xe2,0xbe,0x73,0xfa,0xf6,0xcd,0x9b,0x17,0xa7,0x17,0x2f,0xbe,0x73,0x42,0xe7,0xcd,0xdb,0x8b,0xad,0xea, -0x1b,0xca,0x4c,0xcb,0x99,0xa5,0xc8,0xf9,0x2f,0x6f,0x4e,0x77,0x05,0x3c,0xff,0x40,0xc7,0x4d,0x33,0xf4, -0xd2,0xc5,0xd9,0x13,0x8f,0x30,0x1a,0x37,0x05,0x33,0x33,0x50,0xf1,0x87,0xd1,0xe4,0xc9,0xb3,0x4e,0x4f, -0x49,0x9f,0x70,0x73,0x44,0x82,0x9f,0x2f,0xcf,0x9e,0x41,0xf6,0xc1,0x53,0x3d,0xfb,0xe0,0xa9,0xcc,0x1e, -0x47,0x93,0x5e,0x1c,0x8d,0x5b,0xce,0x70,0xab,0x32,0x6b,0x9c,0x91,0x9d,0xe3,0x58,0x49,0x99,0x53,0xca, -0x47,0x25,0x65,0x48,0x29,0x85,0xf3,0x80,0xb5,0x8c,0xfc,0x5b,0xff,0xa3,0xa9,0x04,0x20,0x7b,0xb7,0xf7, -0x51,0x31,0x1a,0x74,0x35,0x9b,0xad,0x8f,0xba,0xc1,0xd6,0x47,0x53,0x34,0x1c,0x7b,0xc2,0x56,0xcb,0x06, -0x8c,0x7b,0x1b,0xce,0xb9,0xd0,0x1d,0xc9,0xcc,0x59,0x4e,0x46,0x5c,0x0e,0xdc,0x91,0xaa,0x34,0x0c,0x82, -0xc0,0x12,0x59,0xa1,0x51,0x2b,0x6e,0xdd,0x7a,0x7c,0x92,0x2c,0x9a,0x46,0x65,0x6f,0xa1,0xe2,0x3d,0x8a, -0x16,0x96,0x26,0x16,0xf5,0x26,0x16,0x6c,0x5b,0xe5,0x6d,0x50,0x13,0x77,0x91,0x29,0xd0,0xaa,0x1a,0xb9, -0x53,0x1a,0xb9,0xe3,0xdb,0x35,0x29,0xc9,0xdf,0x2b,0xf2,0xfc,0x98,0x5d,0x01,0x28,0x0e,0x6a,0xec,0x99, -0xa2,0x3a,0x84,0xd9,0xbd,0xba,0xa4,0x10,0x34,0xbb,0xf4,0x82,0x6d,0x7b,0x2d,0x88,0x2f,0xa7,0x57,0x5c, -0xfd,0x5e,0xa9,0x8b,0x26,0xe6,0xe7,0x08,0x33,0xfd,0x41,0xa4,0x3e,0xb2,0xdd,0x93,0x42,0xf6,0x3d,0x7f, -0xae,0x0a,0x3f,0x8b,0x87,0x2b,0x74,0x27,0xab,0x9e,0x59,0x3f,0x5b,0xce,0xac,0xf2,0xa0,0xfd,0xf9,0x32, -0xb9,0x32,0x6d,0x9c,0x49,0x89,0x19,0x05,0x79,0x03,0xcd,0xce,0x59,0x67,0x4f,0x05,0xc2,0xc8,0xe0,0x57, -0x80,0x52,0xb9,0x46,0x9b,0xf2,0xed,0xc6,0xb2,0x92,0x05,0x25,0x5d,0x4f,0xad,0x2c,0xf8,0xc0,0x58,0x70, -0x1a,0xa9,0xef,0xd1,0x1a,0x9d,0x1f,0xec,0x74,0x36,0x11,0x77,0xca,0x88,0xfb,0x70,0xc9,0xfc,0x0b,0x56, -0x5d,0xaa,0x88,0x20,0xf5,0x6e,0x25,0x3c,0x2e,0x18,0x1e,0x67,0xd1,0x05,0xf3,0x9f,0x8a,0x3e,0xe7,0x3e, -0x45,0xa8,0x06,0x77,0xd6,0xbf,0x60,0x8a,0x6e,0xad,0x8b,0x60,0x0e,0x35,0x14,0xa1,0x61,0x7e,0x7f,0xe6, -0xf9,0x27,0xe6,0x24,0x94,0x20,0xf5,0xf1,0xd1,0x3b,0x21,0x04,0x3f,0x19,0x12,0xc4,0x93,0x4a,0x9c,0x2f, -0x7e,0xf0,0x83,0xe2,0x85,0x26,0x53,0x7c,0xe0,0x24,0x21,0xd2,0xe7,0x51,0x2c,0x85,0x27,0xea,0x95,0xff, -0xbc,0x4e,0xdf,0x3b,0xa2,0x4f,0x0e,0x09,0x7e,0x09,0x65,0xb8,0x11,0x6a,0xc2,0x3a,0xea,0x5d,0x25,0xff, -0xb6,0xc2,0x10,0x4a,0xef,0x98,0x5f,0x6e,0x87,0xd9,0x7f,0x2e,0x33,0xb6,0xf2,0xd0,0x83,0xa5,0x6e,0xc1, -0x55,0x57,0x8a,0x94,0xf7,0xc8,0xca,0xf6,0x56,0x88,0x08,0xfc,0xb2,0x67,0x58,0x9b,0x6a,0xcf,0xa4,0x6c, -0x49,0x72,0x95,0x07,0x6e,0xfd,0x61,0xc9,0x2f,0x23,0xa7,0xcc,0xe7,0x49,0xbd,0xa8,0x34,0x76,0xf2,0xc8, -0x59,0x5b,0x93,0x4c,0xac,0x06,0xdc,0x13,0x12,0x12,0x35,0xdf,0xb0,0x19,0xa6,0xb7,0x6a,0x35,0x9f,0x5f, -0xec,0xbc,0x9e,0xa2,0x6e,0xb9,0xad,0xf8,0xfe,0x84,0x1d,0x74,0x4a,0x47,0x56,0x8c,0x49,0x85,0x2a,0x73, -0x25,0xf9,0x6b,0x42,0x31,0x4b,0xab,0x55,0x29,0x03,0xab,0x0a,0xd0,0x11,0x01,0x53,0xae,0x54,0x7b,0x95, -0x2a,0xdc,0x5a,0x26,0xa6,0xf8,0xca,0x15,0xb2,0xca,0xc1,0x14,0xbf,0x91,0x12,0x1f,0x75,0x68,0xbb,0x1c, -0x8d,0x76,0x7b,0x19,0x1a,0x94,0xdb,0x84,0x06,0xcf,0xb4,0xa0,0xc1,0x73,0x56,0xa0,0x81,0x61,0x2d,0x75, -0xd9,0xd6,0x4f,0xb9,0x2a,0xd7,0xba,0x74,0xee,0xf0,0x3c,0x29,0x8d,0x60,0x1c,0xa1,0x44,0x87,0x6e,0x27, -0xc7,0xce,0x55,0x8f,0x94,0x64,0x73,0x34,0x5e,0xc3,0x80,0x0d,0xb6,0x8b,0x3e,0x42,0x90,0xa1,0x2a,0x9c, -0x0c,0x7f,0x3a,0xfb,0x9e,0xdc,0x80,0xfa,0x3c,0x51,0x46,0x82,0x8b,0x12,0xf9,0x13,0xc7,0xfe,0xb8,0x2c, -0x67,0x45,0xe8,0x44,0x4a,0x72,0x9f,0x5a,0xba,0x2b,0xaa,0x22,0x80,0x1a,0xc0,0x84,0xb6,0xf4,0x50,0x71, -0x37,0xc3,0x19,0x77,0x91,0x61,0xe3,0x09,0xbb,0x5b,0x73,0x22,0xa5,0x25,0x0f,0x8b,0xa8,0xc7,0x23,0xee, -0x28,0x1e,0xd5,0x31,0xca,0x8e,0xb4,0xf2,0x41,0x8a,0x99,0x22,0xb0,0x8c,0x32,0x11,0xde,0x1b,0x21,0x36, -0x28,0xc0,0xac,0xc5,0x45,0x2c,0xb7,0x38,0x84,0xed,0x90,0x9b,0x1e,0xde,0x4c,0x32,0x8a,0x02,0xc7,0xbf, -0x89,0x3b,0xef,0x93,0xc1,0x39,0xfc,0x4e,0x4a,0x57,0xd0,0x44,0xb1,0x02,0x05,0x4c,0x90,0x4d,0xf9,0xa9, -0x7c,0xa9,0xc2,0xad,0x16,0xae,0x6d,0x9f,0x22,0xb8,0x3b,0xbf,0x62,0xf8,0x68,0x25,0x31,0x67,0x89,0xb9, -0x96,0x58,0xb2,0xc4,0x12,0x27,0x22,0xcc,0x1b,0x55,0xee,0x54,0x52,0xec,0x69,0x8a,0x7e,0xa5,0xc8,0x19, -0xd5,0xd7,0x48,0xc5,0x92,0x01,0x3d,0x85,0xc5,0x79,0x59,0x50,0x58,0x17,0xea,0xca,0xd0,0xa1,0x38,0xea, -0x66,0x72,0x41,0xe9,0xb0,0x40,0x30,0x20,0x3c,0xf4,0x42,0x9f,0x68,0xfd,0x25,0x06,0x4d,0xe2,0xd5,0xdb, -0xba,0xc8,0xb8,0x07,0x1b,0x04,0xf0,0xee,0xad,0xe5,0x0c,0x6b,0x48,0xc3,0xf4,0xfe,0x1d,0x46,0x06,0x4c, -0xca,0x24,0x7f,0xfe,0x59,0x77,0x47,0x24,0x1c,0x20,0x60,0x1c,0x6d,0xda,0xfd,0x22,0x97,0x62,0x69,0x7b, -0xf8,0xde,0x8c,0xee,0x95,0x4d,0x2b,0xcb,0x22,0x89,0xf3,0x9b,0x71,0x15,0x64,0x07,0xdd,0x6c,0xd5,0xa2, -0xcd,0x53,0xac,0xcf,0x8a,0xdf,0x2d,0xe4,0xf7,0x16,0x70,0x9b,0xce,0x9b,0xbc,0x93,0x7d,0x29,0xf7,0xda, -0xee,0xfa,0x8a,0x34,0xc1,0x57,0x6f,0xe7,0xd2,0x03,0x13,0x3a,0xbf,0xaf,0xce,0xfb,0x34,0x56,0x31,0xca, -0xa8,0x6e,0xe3,0x50,0xd9,0x97,0xf2,0xdf,0xc2,0xc2,0x94,0x7f,0x32,0x1b,0x53,0x5f,0x0a,0x47,0xa0,0x61, -0x2e,0x03,0x81,0x5f,0x78,0xd3,0xe8,0xf8,0xec,0x28,0xff,0x4f,0x72,0xed,0x86,0x2e,0x2f,0x60,0xaf,0x69, -0xf4,0xf4,0xdb,0xf4,0x1e,0x0f,0x07,0x8e,0x19,0xda,0x4e,0xd5,0xa5,0x80,0xd5,0x39,0x9e,0x8e,0x25,0x68, -0xdf,0xd9,0x97,0xbf,0xc2,0x32,0xb8,0x1b,0xa7,0x37,0x24,0xd6,0xc7,0x0b,0x4f,0xf7,0x2b,0xc5,0x00,0x68, -0x4b,0x0f,0xb3,0x44,0xa2,0x7a,0x58,0xed,0x54,0xdf,0xa4,0x9a,0x6b,0x30,0xdf,0x70,0x01,0xe3,0xd7,0x75, -0x0d,0xd0,0x24,0xe4,0x35,0xd2,0x88,0xbb,0x95,0x52,0x51,0xe5,0x5c,0x87,0xd9,0x19,0x98,0x4a,0xb3,0x8a, -0x96,0x4f,0xa5,0xe0,0xca,0x0d,0x5e,0xda,0x08,0xd7,0x9e,0xd4,0x00,0xa5,0x26,0x2d,0xc1,0x35,0x18,0x97, -0x75,0xc8,0xaa,0xac,0xdb,0xe9,0xb0,0x67,0x38,0xa1,0x65,0xc4,0xec,0x25,0x0d,0xcd,0x24,0x6e,0xad,0x63, -0x01,0x6c,0x2b,0xd2,0x51,0x4b,0x89,0x77,0xaa,0x24,0x55,0x94,0x14,0x36,0x4b,0x7a,0x01,0x36,0x96,0x0c, -0x40,0x69,0x3a,0x64,0xc2,0xf2,0x0c,0x0d,0x1c,0x85,0x60,0x6d,0xd2,0xee,0x36,0xc0,0x51,0x85,0x5c,0x83, -0x1c,0xc7,0xed,0x1b,0x21,0xc4,0xd2,0x20,0x85,0x0e,0xb8,0x06,0xcd,0x15,0xae,0x0d,0x50,0x55,0xb9,0xbb, -0xf6,0x60,0x55,0x69,0x75,0xcb,0x81,0xed,0x5a,0x8a,0x28,0x2d,0xb4,0x29,0xfa,0xb6,0xbd,0x11,0xcc,0xd1, -0xe0,0x85,0xd2,0x7e,0x9b,0x39,0x7b,0x33,0x4b,0x31,0xdb,0x14,0x7b,0x09,0x61,0x1a,0x51,0xe3,0x28,0x25, -0xdb,0xcb,0x70,0xdd,0x7f,0xb3,0x8c,0x6a,0x8b,0xc0,0xc6,0xad,0x62,0xbe,0xa0,0xbe,0x8b,0xa8,0x46,0x2d, -0xc6,0x18,0x62,0xfb,0x7f,0x6d,0xec,0x50,0xb2,0x06,0x0a,0x67,0x54,0xf4,0x7b,0xa1,0x41,0xea,0xa7,0x54, -0x5b,0xcd,0x6d,0x66,0x63,0xa1,0x17,0xab,0xbb,0x25,0x34,0x7a,0xcf,0x30,0x8b,0x56,0x2c,0x31,0x6a,0x1d, -0xad,0x80,0x06,0x8c,0xdc,0xba,0xeb,0x8b,0xca,0x7a,0x07,0xd5,0xa4,0x8d,0x0a,0x84,0xc3,0x8a,0xca,0xd5, -0x01,0x53,0x62,0xd6,0x67,0x25,0xdc,0xb4,0xec,0xca,0xaa,0xba,0x59,0x2b,0x57,0x0a,0x55,0xef,0x65,0x8a, -0x7e,0x68,0xad,0x46,0xa6,0x55,0xd9,0xa0,0x53,0x28,0x6f,0xb3,0xdd,0x07,0x5f,0xb9,0xeb,0xd6,0x2a,0xa1, -0xc7,0xa9,0x55,0x75,0x1c,0xd4,0xea,0x18,0xca,0x78,0x7e,0xea,0x48,0x11,0xaa,0x17,0xd5,0x59,0x72,0x09, -0xac,0xf0,0x39,0xa2,0x02,0x3b,0xc8,0xcf,0x10,0x8f,0xe5,0xe6,0x56,0x2a,0xce,0x71,0x70,0x30,0x76,0xf1, -0xa9,0x29,0xb2,0x6c,0xd4,0xf4,0x2e,0x05,0x3b,0x67,0x5f,0x1c,0x3b,0xf0,0xdb,0x0b,0xad,0x07,0x03,0xcf, -0xe2,0x39,0x72,0x5b,0xb7,0xf5,0x85,0x6d,0xcd,0x7c,0xfe,0x30,0xdf,0x53,0x73,0x16,0x77,0xd0,0xe2,0x50, -0xfc,0xb8,0xe3,0x31,0xb9,0xe4,0xe5,0x55,0x50,0x8c,0xd3,0xdb,0xd2,0x2f,0xa2,0x94,0x7b,0xe8,0x97,0xb0, -0xa8,0x6c,0x5d,0x8b,0xde,0x52,0xf4,0x0b,0x72,0x68,0x40,0x5e,0x0f,0xf4,0xe8,0xc0,0xad,0x82,0x4b,0x2c, -0xbb,0x5e,0x58,0xb0,0x28,0xd6,0x4c,0x92,0x29,0xdc,0xad,0xf2,0x1f,0xe2,0x69,0x48,0xb4,0xb3,0x24,0xca, -0x9f,0x54,0xf4,0xe7,0xfb,0x31,0x9e,0x13,0x5d,0xe7,0xb7,0x1f,0xdf,0x9f,0xbe,0xc3,0x20,0x8c,0xcc,0xb1, -0x1e,0x6d,0xb1,0xc2,0x09,0x6c,0xca,0xe2,0x4a,0xc1,0x0f,0xb1,0x51,0xa3,0xf3,0x7b,0x33,0xbc,0x42,0x41, -0x71,0x32,0x0a,0x74,0xf3,0x84,0xa7,0xae,0x32,0x50,0x1f,0x91,0x78,0xf4,0x40,0x7f,0x69,0xa3,0x7e,0x4a, -0xa2,0x4e,0xe9,0x7b,0x16,0x63,0xcd,0xd4,0x5a,0xe1,0xb1,0xbc,0x49,0xe4,0x59,0xf3,0x73,0x9a,0x5e,0x16, -0xdc,0xf7,0xf8,0x24,0xc2,0xdf,0x9c,0xfd,0xe8,0x30,0x18,0x09,0x42,0x57,0x35,0xa9,0x38,0x32,0xe4,0xd1, -0x04,0x57,0x88,0xa5,0xb5,0x39,0xe4,0x1f,0x37,0xbe,0xaa,0x02,0x62,0x08,0x7b,0x69,0xac,0x5f,0xe4,0xfe, -0xe1,0x56,0x46,0xac,0x1e,0xa5,0xe6,0xd1,0xc6,0x35,0xcb,0xd0,0x64,0x69,0xc0,0x9e,0x98,0x0b,0xa0,0x5f, -0xc3,0x5b,0xcd,0xa0,0x77,0xc2,0x1e,0x93,0xdb,0x34,0x94,0xad,0xda,0x51,0x53,0xd1,0x41,0x98,0x08,0x7f, -0xe3,0xfc,0x40,0xd7,0x25,0xfe,0xa4,0xbd,0x85,0xcb,0x20,0x8a,0x5a,0x8b,0x96,0x53,0x39,0x5e,0x48,0x3e, -0xa5,0x45,0x89,0x16,0x74,0xcc,0x91,0x6b,0x6d,0x7e,0xb1,0xd0,0xae,0xf9,0x43,0x4f,0x3c,0x5e,0x5b,0xe6, -0x60,0x4f,0xfa,0xb7,0x87,0x43,0x2d,0x1a,0x1d,0xc7,0xe4,0x7c,0xfa,0x93,0xe3,0xcf,0xd0,0xfa,0x31,0xb9, -0x0b,0xe9,0xa8,0xba,0xa0,0x60,0xa8,0x18,0x36,0x90,0x16,0x25,0xfc,0x10,0xf6,0xc8,0x14,0x25,0x75,0x5e, -0xe2,0xae,0x09,0x07,0x64,0xf1,0xf5,0x2f,0x56,0x15,0x7c,0xe1,0x81,0x14,0x4e,0x7a,0xc9,0x7b,0x6c,0x99, -0xbc,0x60,0xf9,0x37,0x05,0xb3,0x58,0x0a,0x1d,0xc7,0x67,0x0f,0xce,0xa1,0x33,0xcb,0x66,0xa8,0xa1,0x82, -0x81,0x2a,0xbe,0xe3,0xee,0x5b,0x29,0x86,0xd5,0xbf,0xe7,0xd0,0x4e,0xf9,0x39,0xec,0xfa,0x42,0xb9,0x85, -0xaa,0xc8,0xb9,0xd3,0xfa,0xf0,0xc0,0xff,0x98,0x0d,0x70,0x9d,0x83,0xa6,0xd8,0x2f,0xe6,0x32,0x1b,0x7d, -0xff,0xe1,0x93,0x1e,0x6c,0x86,0x64,0x2e,0x8c,0x74,0xa0,0xec,0xe7,0x2d,0x63,0x37,0x82,0x17,0xd3,0x78, -0x46,0x3e,0x21,0xe0,0xef,0x45,0x36,0x81,0xed,0x13,0x66,0x4a,0x18,0x74,0x0e,0x31,0xc4,0xd0,0xf3,0x9f, -0x5e,0x5e,0x9f,0xbd,0xf8,0xfe,0xe4,0xe2,0xf5,0xcf,0x2f,0xae,0xdf,0x9d,0xbc,0x7c,0x71,0xfd,0xf6,0xec, -0xf5,0xcb,0xd7,0x6f,0xf0,0xc0,0x5e,0x06,0xfc,0xf7,0x3d,0xf3,0xb7,0xef,0x93,0xf3,0xfd,0x07,0x8a,0x76, -0x04,0x9c,0xbd,0xc8,0xce,0x4b,0x65,0x71,0x93,0xce,0x5e,0x72,0x34,0x35,0x65,0xfb,0x0c,0x9e,0xcb,0xd1, -0x0f,0x1d,0x29,0x86,0x85,0x90,0xf1,0x0f,0xa7,0x47,0xdf,0xc8,0xfa,0x90,0x2d,0x22,0x8a,0xcf,0xa1,0x83, -0xc3,0xc3,0xbd,0x24,0xc8,0x71,0x01,0x93,0x2e,0x83,0xbc,0x5e,0x17,0x07,0x95,0xf4,0xcd,0x9d,0xa2,0x7b, -0xc6,0x56,0xca,0x04,0x3c,0x45,0xbd,0xf4,0xa8,0x5e,0x5a,0xf1,0xec,0x5d,0x50,0xe9,0xc2,0xe3,0xa6,0xb0, -0xb5,0xd2,0x83,0x7a,0xe9,0xb8,0x2a,0x1d,0x53,0x69,0x54,0x0a,0x6c,0x45,0x29,0x0c,0xd2,0xb8,0x37,0x80, -0x43,0xff,0x87,0x9e,0x20,0x31,0x36,0x69,0x8c,0xff,0xc6,0x44,0xf2,0xfd,0xa0,0x56,0x3a,0xae,0x97,0xae, -0x42,0xfd,0xb8,0x19,0x95,0xce,0x2a,0x16,0xb5,0x32,0x95,0x49,0xa8,0xfa,0x80,0x3c,0x82,0xbf,0xae,0xd3, -0xb2,0x70,0x85,0xb4,0xaa,0x2c,0xf4,0xda,0xd3,0x07,0x90,0xee,0x39,0x46,0x03,0x4f,0x94,0x16,0x98,0x5a, -0x56,0xde,0x72,0x9e,0xf8,0xe2,0x63,0xa4,0x7e,0x0c,0xe0,0xa3,0x56,0x41,0x2c,0x2a,0x88,0xbf,0x14,0x8e, -0x3e,0x29,0xcb,0x58,0x70,0x8d,0x9f,0xa8,0x6d,0xad,0x83,0xad,0xfc,0x88,0x6b,0xa8,0xa3,0xd2,0x07,0xd6, -0x06,0x7f,0xa1,0x32,0xae,0xc3,0xc6,0x1b,0x2f,0xf8,0xdf,0x85,0x89,0x04,0x00,0x3f,0x51,0x4a,0xb1,0xba, -0xc7,0x6a,0x43,0x85,0xfa,0xb1,0xb0,0xb5,0x1a,0x8b,0x0a,0xe2,0x65,0xed,0xda,0x99,0x80,0xa5,0x9e,0xa8, -0xe5,0xd7,0xc1,0x60,0x29,0x13,0x06,0xbc,0x36,0xec,0xff,0xb5,0x18,0x30,0x78,0xa2,0x94,0x78,0x0c,0x03, -0x06,0x82,0x01,0xd4,0x8b,0x1b,0x11,0x3f,0x90,0xc4,0x0f,0x1e,0x49,0xbc,0xf0,0x5b,0x92,0xe3,0xc2,0x0c, -0xe7,0x42,0x38,0xb2,0xe2,0xea,0x5c,0x17,0xec,0x61,0x20,0x8b,0xe8,0x3e,0x86,0xc3,0x3d,0x39,0xf5,0x24, -0xb7,0x7b,0x49,0x40,0x7e,0xbc,0xdd,0xfd,0xff,0xfd,0xc7,0x65,0xa7,0xfd,0x6d,0xdc,0xbe,0xbd,0xba,0xff, -0xea,0xe1,0x9f,0xfb,0x29,0x49,0xd9,0xea,0x79,0x4f,0x29,0x8f,0x74,0x33,0xd2,0xe2,0x4d,0xfc,0xc6,0x4d, -0x83,0x3c,0xea,0x7e,0xbd,0x57,0x39,0x04,0xe3,0x3e,0x7d,0xdd,0xae,0xdf,0xf5,0x7c,0x58,0x1f,0xf6,0xd1, -0x59,0x5f,0xe5,0x04,0x40,0x29,0x38,0xb2,0x17,0x3c,0x58,0x59,0x70,0x60,0x2f,0xf8,0x55,0x63,0xc1,0x43, -0x94,0xfe,0x8a,0x25,0x4a,0xd4,0x12,0xdb,0x6b,0x79,0x6a,0xad,0x45,0x9e,0x91,0x4c,0xb6,0xd5,0xb8,0xd6, -0x08,0xb0,0x3e,0xeb,0x3a,0x8f,0x65,0xdd,0x6a,0x9e,0x37,0xb0,0xae,0x99,0xe7,0x4f,0x37,0x60,0x9d,0xbd, -0x03,0x1a,0x59,0x57,0x8d,0xaa,0x67,0x0d,0xbc,0xab,0x20,0xbe,0xb1,0x31,0xcf,0xc6,0x80,0x83,0x95,0x9c, -0xb3,0xe1,0xbd,0xaa,0xd4,0xc0,0x52,0xea,0xb0,0xb1,0xd4,0xb7,0x76,0x9e,0xd5,0xab,0xf8,0xda,0x5a,0xc5, -0xea,0xb1,0xd6,0xc4,0xaf,0x4d,0xd9,0xd5,0x79,0x14,0xbb,0x0e,0x1e,0xc5,0xae,0xa7,0x8d,0xa5,0xbe,0x59, -0x97,0x5d,0xcf,0x36,0x63,0x17,0x6e,0xaa,0xbf,0x16,0xe8,0xe2,0xb9,0xd8,0x73,0x91,0x35,0xbf,0x06,0x57, -0xad,0x27,0xbf,0x5f,0x76,0xba,0x57,0xfd,0x5f,0x83,0x3e,0xa6,0x5c,0xed,0x79,0x90,0xe9,0xff,0xf7,0x01, -0x7e,0xf5,0xec,0x3d,0x06,0x38,0xfe,0x49,0x28,0x32,0x0c,0x68,0x48,0xe4,0x91,0x81,0x46,0xbc,0x9f,0x32, -0x57,0x14,0x95,0x3f,0x76,0x25,0xb4,0xa2,0xeb,0x78,0xad,0xae,0xaf,0x24,0xf8,0x68,0xdd,0xe6,0x3c,0xc1, -0xfb,0xa7,0x10,0x3a,0x48,0x3d,0xa9,0xae,0x75,0xd4,0xb1,0x78,0x70,0xa5,0x87,0xca,0xa3,0x96,0x9e,0xb3, -0x8c,0xd1,0xd2,0x32,0x50,0x1a,0x31,0xf4,0xeb,0x18,0xfa,0x66,0xf6,0xda,0x28,0x8f,0x36,0x42,0x79,0xb4, -0x0a,0xe5,0xbc,0xdf,0x88,0x74,0x1d,0x47,0xa2,0x02,0xdd,0x6f,0xbf,0x56,0x79,0x1d,0xea,0x35,0x98,0xf9, -0xf5,0x42,0xde,0xfa,0x1d,0x34,0xd8,0x88,0xda,0xc1,0x72,0x6a,0x73,0xcf,0xd2,0x4b,0x5f,0x14,0xdd,0x78, -0x23,0x74,0x0d,0x68,0x03,0xf2,0x9e,0xaf,0x19,0x91,0x32,0x1f,0xf1,0x0c,0xfa,0xd7,0x5a,0x33,0x76,0x76, -0x2c,0x38,0xfe,0xa9,0x6b,0x86,0x0d,0x83,0xbf,0xda,0xca,0x6a,0xc5,0xf1,0xcf,0x5d,0x59,0xb5,0x89,0xf0, -0xe7,0xad,0xb0,0xe3,0x8d,0x66,0x84,0x09,0x0d,0x97,0xb5,0xff,0x8f,0x35,0xb6,0xd8,0x08,0xe9,0xa2,0x69, -0x1a,0xff,0x2d,0x56,0xd8,0xc5,0x46,0xb4,0x2e,0x96,0xd1,0xfa,0xf7,0x59,0x5f,0x85,0x65,0x0b,0xde,0x49, -0x61,0xbd,0xba,0xc8,0xce,0x46,0x03,0x3d,0xa2,0x73,0x2e,0x1f,0x11,0x8e,0xa2,0xee,0xfe,0x33,0xb8,0x6e, -0x1e,0x47,0x87,0xfb,0xcf,0xfa,0xdd,0x30,0x39,0xea,0xee,0x7f,0xd5,0xef,0xb6,0x9f,0xed,0xb9,0x49,0x1b, -0xb2,0xa0,0x77,0x8e,0x9f,0x42,0x0e,0x7d,0x3f,0xc5,0x6f,0x34,0x0a,0x03,0x70,0xc8,0xa3,0x28,0x3c,0xc1, -0x21,0x2f,0x85,0x30,0x09,0xfc,0x42,0x68,0x5e,0x3e,0x38,0x44,0xf0,0x18,0xc1,0x83,0x43,0x82,0xe6,0x8d, -0x1c,0x1f,0xb0,0xd2,0x50,0x98,0x00,0x0f,0x58,0x43,0x87,0x55,0xd1,0x43,0xd6,0x54,0x16,0xb9,0x69,0xcb, -0xed,0xb6,0x53,0x6f,0x0f,0xfe,0x0f,0x54,0xee,0xe5,0xfe,0x34,0x72,0x0b,0x4c,0x2b,0x94,0xb4,0x49,0xe4, -0xc6,0x98,0x16,0x57,0x69,0xfc,0x09,0xe5,0x3e,0x0f,0x33,0x7f,0x14,0x4e,0xfd,0x41,0x38,0x79,0x40,0x8e, -0xc0,0xa9,0xef,0x22,0x7b,0x55,0x2c,0xec,0x1c,0xf1,0x0b,0x3f,0xf6,0xb9,0xe0,0x0d,0x43,0xf3,0xb1,0x3c, -0x68,0x93,0xa5,0xa4,0x02,0x1a,0x5a,0xcc,0xda,0x53,0x19,0xf5,0x3a,0xea,0x6c,0x47,0x59,0x7f,0xb2,0x9f, -0x85,0x18,0x86,0xb7,0x13,0x45,0x93,0x7e,0x27,0x4c,0x30,0xde,0xbb,0xfb,0xac,0xe5,0x96,0xed,0xdc,0xdb, -0x9f,0x78,0x4f,0x9e,0x85,0x25,0x26,0x1d,0xb4,0xdc,0xbc,0x9d,0x40,0x4a,0x98,0xe3,0xe7,0xd3,0x16,0xd0, -0x5b,0xe2,0x27,0x94,0xdd,0x8f,0x9e,0x61,0xdc,0x76,0xff,0x7e,0x1c,0x02,0x2e,0x61,0xe1,0x2f,0xc2,0x98, -0xd0,0xb6,0xbe,0x69,0x51,0x74,0x4c,0x7a,0x23,0x22,0x91,0x79,0x94,0x53,0xa4,0x68,0x26,0x21,0x8e,0xa0, -0x0a,0xe8,0x2b,0xf8,0xb7,0x08,0xbb,0x7e,0x0e,0xff,0x46,0xf0,0x6f,0x00,0xff,0x50,0x0a,0xc1,0x00,0x0b, -0x35,0x1a,0x00,0xab,0x83,0xe9,0x71,0xb2,0x90,0xd3,0xe2,0xdd,0x20,0x92,0x41,0x82,0xb7,0x3b,0xfe,0x3d, -0x62,0x23,0xe4,0xf9,0x9e,0xac,0x87,0xcb,0xbc,0xd1,0x93,0x0b,0xdb,0x0d,0xd4,0x0a,0xb8,0x9a,0x24,0x3e, -0x31,0xd9,0x92,0x23,0xe7,0x6e,0x31,0x43,0x37,0x24,0x6a,0x1e,0x7b,0x28,0xd0,0xc3,0x03,0x60,0x24,0x9c, -0xd8,0x09,0x1d,0x9c,0x53,0x1c,0xe5,0xb4,0x44,0x4d,0x0e,0x8d,0x3f,0xc1,0x5d,0x3a,0x1c,0x25,0x65,0xc4, -0xa2,0x0b,0x6a,0x39,0xe8,0x54,0x71,0x12,0x7f,0xb6,0x65,0x61,0x55,0xea,0x6b,0x21,0xea,0xa8,0x60,0x90, -0x63,0x13,0x06,0x7d,0xa1,0xbd,0x86,0xbf,0xc0,0xf8,0xc6,0xbc,0x68,0x9b,0xbd,0xe8,0xe5,0x51,0xe2,0xee, -0x62,0xf4,0x70,0xe1,0x1a,0x82,0x5e,0xcc,0xda,0x1c,0x0b,0x67,0x8b,0x42,0x31,0x46,0xc2,0x4e,0x21,0xdc, -0x42,0x15,0xc7,0x1e,0xfa,0x8b,0xc0,0x80,0xe3,0xbb,0x5e,0x2f,0xd7,0xd4,0x51,0x82,0x57,0xcc,0xa1,0x84, -0xa0,0xe2,0x9a,0x32,0xbc,0x06,0x12,0x73,0xf4,0x8c,0x89,0x2e,0x59,0x13,0xd7,0xc1,0xe8,0x91,0x95,0x6d, -0x47,0x5e,0x59,0x60,0xa8,0x05,0x01,0x9c,0xde,0x4f,0x50,0x53,0xec,0xa7,0x7c,0xe2,0x1e,0xc0,0xf2,0xd3, -0xc3,0x37,0xda,0x24,0x1e,0x56,0x85,0x77,0x8f,0x08,0xe9,0x2d,0xd2,0x70,0x76,0xd0,0xe6,0x71,0x1f,0xdf, -0x17,0x8e,0x03,0x46,0xda,0x1d,0x55,0xb1,0x75,0x8f,0x8a,0x12,0x23,0x92,0xc4,0x86,0x5b,0x73,0xa8,0x6c, -0xb7,0x95,0xb6,0x1c,0x0f,0x08,0x6c,0xe7,0xc9,0x2c,0x89,0xcb,0xad,0x1b,0xd2,0xd3,0xe0,0x7f,0x7a,0x0f, -0x47,0xfb,0x54,0xed,0xb1,0x43,0xf8,0xb2,0x50,0xbf,0x44,0xfc,0xc7,0x6c,0x5e,0x24,0xf3,0x59,0xfd,0xe1, -0x49,0xe1,0x07,0x82,0x5f,0x73,0x40,0xb3,0x7c,0x99,0xcd,0x6f,0xc6,0x80,0xf8,0xa3,0x2b,0xa0,0x64,0x74, -0x20,0xb5,0x66,0x0d,0x08,0x6a,0x45,0xe2,0x11,0x75,0xb0,0x37,0x75,0x56,0x47,0x4e,0x6f,0x5f,0x4b,0x2b, -0x60,0xe0,0xd7,0x0c,0xd2,0x33,0x97,0x8d,0x80,0x29,0x49,0xbd,0x67,0x93,0xa3,0xf6,0x2e,0xce,0xe3,0xdc, -0xf3,0x91,0xba,0x2b,0xba,0x93,0xa0,0x77,0x8f,0x6d,0x59,0x88,0x49,0x73,0xce,0x5b,0x36,0x0e,0x77,0xf9, -0x68,0x56,0x3d,0xa4,0x68,0x70,0xa7,0xf3,0xbc,0xc8,0xf2,0xdd,0xca,0x49,0x0a,0x41,0xd7,0x2b,0x7d,0x35, -0x4f,0xb6,0xd8,0x4f,0xb6,0x6a,0xb4,0xef,0x98,0x07,0x17,0x28,0x79,0x13,0x4f,0x17,0x71,0x51,0x87,0x3f, -0x27,0x40,0xad,0xd4,0xee,0x16,0x85,0xb9,0x8d,0x76,0xbb,0xbb,0x5b,0xcc,0x20,0x29,0xda,0x3d,0xc4,0x08, -0x41,0x64,0xf1,0xba,0x0b,0x85,0x10,0x13,0x56,0xa1,0x15,0x67,0x80,0x60,0x18,0x8b,0x6a,0x6f,0xd6,0xc4, -0xff,0x1c,0x06,0xfd,0x26,0xf8,0x03,0xfc,0xe6,0xf8,0x9f,0x63,0xa8,0x40,0xe6,0x66,0x79,0x39,0x19,0x00, -0xf8,0x38,0x32,0x60,0xbf,0xd8,0x88,0x0c,0x80,0xdf,0x9c,0x0c,0xda,0x94,0x56,0x50,0x00,0x30,0x8f,0xa3, -0xe0,0x2c,0x19,0x6e,0x44,0x01,0xc0,0x6f,0x4e,0x01,0x14,0x5a,0x81,0x3f,0x40,0x3c,0x0e,0xff,0x97,0x39, -0xfa,0x70,0xdf,0x84,0x02,0x2a,0xb1,0x39,0x0d,0x54,0x6c,0x05,0x15,0x04,0xf3,0x38,0x3a,0x9e,0x4f,0x36, -0x9c,0xd1,0x58,0x60,0x73,0x2a,0x9e,0xaf,0x1e,0x4a,0x08,0xf2,0x38,0x1a,0x4e,0x26,0xb3,0x71,0xbc,0x11, -0x11,0x54,0x62,0x73,0x2a,0xa8,0xd8,0x0a,0x32,0x08,0xe6,0x71,0x74,0xbc,0x63,0x8a,0x18,0x4d,0x48,0xf3, -0xec,0xe7,0xd9,0x27,0x1b,0x9a,0xdd,0x6a,0xf9,0x21,0x0d,0x31,0x98,0x5f,0xb4,0xed,0xa8,0xe8,0xb2,0x86, -0xe9,0xff,0x95,0xe3,0xe3,0x5c,0x78,0xdc,0x53,0xf7,0x03,0x7f,0x2b,0xb0,0xf1,0xb3,0x4a,0x66,0x34,0x19, -0x60,0xd2,0x1f,0xc3,0x7c,0xca,0xd4,0xd4,0xd0,0xb5,0x1d,0xdc,0xc8,0xd0,0xa2,0x84,0x19,0x83,0xb6,0x3f, -0x66,0xff,0x69,0xa3,0x76,0x49,0x5b,0xe8,0xb1,0x31,0x8b,0x12,0x91,0x7d,0x97,0x0c,0x3e,0xa4,0xe5,0x12, -0x88,0xd5,0x65,0x69,0x9b,0x6f,0xa3,0x26,0x33,0x0b,0x1f,0xca,0x60,0x7c,0x7e,0x8a,0xc3,0x98,0x21,0x9f, -0x4a,0x54,0x21,0xb6,0x6c,0xe2,0x35,0x1d,0x49,0x52,0x7e,0xcc,0xab,0x13,0x08,0xba,0x35,0xb7,0x94,0xd3, -0x79,0xa7,0x1d,0x06,0x30,0xe1,0x5a,0x96,0x15,0x95,0x11,0x8e,0xa4,0xc1,0xff,0x25,0x6a,0x5b,0x1f,0x35, -0x36,0x2e,0x6b,0x55,0xb2,0xe4,0x3f,0x84,0xe6,0x86,0x35,0xaf,0x83,0xb2,0x70,0x3f,0x52,0x55,0xc9,0x52, -0x1e,0x89,0xe7,0xfa,0xd5,0xad,0x85,0xdc,0x4d,0x8d,0x60,0x56,0xdd,0x1f,0xe2,0xe5,0x46,0xb5,0xb2,0x9b, -0x85,0x79,0xbe,0x34,0x2e,0x10,0x16,0xeb,0x96,0x64,0xff,0xc0,0xcf,0xa3,0x12,0xae,0xc8,0xd2,0xd5,0x08, -0x3b,0x94,0x72,0x0f,0xfe,0x30,0x4b,0x68,0xbd,0x40,0xfd,0xc5,0x80,0x2d,0x34,0x89,0x9f,0x72,0xcb,0xf1, -0x28,0x91,0xce,0xcb,0x50,0x33,0x93,0x9c,0x07,0x4d,0x99,0xd3,0x95,0x03,0x34,0x63,0xe3,0x5e,0x20,0xc9, -0xfd,0xa3,0x00,0x44,0x73,0x87,0x0c,0xd2,0x32,0xe1,0x98,0x86,0x5f,0xe4,0x8b,0x7f,0xe7,0x25,0x8b,0xb2, -0x36,0xcb,0xee,0x5c,0xb8,0x94,0xa0,0xc9,0xb0,0xfc,0x8e,0xe9,0x9b,0xf9,0xd0,0x77,0xa7,0xc7,0x65,0x4b, -0xc4,0xa8,0x9a,0x44,0x2e,0x02,0x47,0x70,0x0f,0x8d,0x8f,0xf2,0xfe,0xb7,0x9d,0xf0,0xe0,0xeb,0x4e,0x48, -0xe5,0x80,0xe6,0xa9,0x0b,0xf7,0xfa,0xd8,0xdb,0x47,0x10,0xcf,0xdb,0xa7,0xe4,0x77,0xaf,0xf7,0xba,0xdf, -0x74,0xbc,0x96,0x9b,0x01,0x3c,0xfc,0x0a,0xe1,0x37,0xca,0xfd,0x9e,0xa0,0x8f,0x8f,0x61,0x34,0xdd,0x2f, -0xfd,0x71,0xc4,0x30,0x89,0x07,0x85,0x3b,0xa1,0xcc,0x16,0x07,0x38,0xea,0x1e,0x74,0xfa,0xdd,0x70,0x72, -0x7c,0xf0,0xb4,0xd3,0x77,0xe1,0xa3,0x5d,0x01,0xb6,0x49,0x7a,0xb8,0xff,0xac,0x13,0x4e,0x08,0x8c,0xb2, -0x27,0x94,0xd0,0xf1,0xe7,0x91,0x02,0x08,0x19,0xde,0xd1,0x33,0xac,0xc8,0x4c,0x94,0xe5,0x8c,0x0c,0x5e, -0xcb,0x8d,0x5a,0x0b,0xa0,0x50,0xaf,0x85,0x12,0x6d,0xb5,0x60,0x06,0xaf,0x65,0x66,0x6a,0x31,0xb9,0x63, -0x94,0xd4,0x8c,0x49,0x52,0x33,0xf4,0xe0,0x26,0x7f,0x5a,0x83,0x98,0x23,0xc4,0xbc,0x82,0xb8,0xad,0x41, -0xdc,0x20,0xc4,0x8d,0x84,0xe8,0x91,0xc2,0xf7,0xe4,0x9c,0xdd,0xa7,0x99,0xfa,0xd1,0x8c,0x14,0x3f,0x4e, -0xe9,0xff,0xb7,0xa8,0xfc,0xe1,0x33,0xa0,0x33,0x54,0x34,0xce,0xfc,0xd8,0xc7,0x17,0xfb,0x07,0x29,0x2d, -0x0b,0xca,0x8c,0x06,0x2e,0xea,0x1a,0x9b,0x23,0x9b,0x74,0x99,0xf1,0xc6,0x2b,0x25,0x22,0x16,0x01,0x42, -0x05,0xc4,0x84,0x31,0x4b,0x41,0x9a,0x45,0x14,0x15,0x0c,0x13,0xe3,0x2c,0x05,0x41,0x51,0x23,0x1d,0x96, -0x97,0x83,0x55,0xf2,0x19,0x45,0x76,0xc4,0x9f,0x23,0x0d,0xd9,0x4e,0xae,0x8b,0x7e,0x02,0x45,0x9f,0x51, -0xce,0xaa,0x94,0xe2,0x83,0x55,0x42,0x20,0x45,0x7a,0x34,0x8e,0x8b,0x13,0xd8,0x87,0xd3,0xc1,0xbc,0x4c, -0x98,0xd7,0xa6,0xf6,0xdd,0xcd,0xac,0x8d,0xfa,0x74,0x3b,0x3b,0x52,0x33,0x38,0xbf,0x4c,0xaf,0x76,0x76, -0x5c,0xfc,0x13,0x29,0x85,0x81,0x23,0x4d,0x85,0x7d,0x61,0xa2,0x8a,0x65,0xfa,0x54,0x70,0xbb,0x13,0x3a, -0xb7,0x31,0x46,0x0a,0xd5,0x2b,0xc4,0xb8,0x26,0x3d,0x0d,0x55,0x12,0xdd,0x4a,0x25,0x59,0x95,0x3c,0x80, -0x17,0xbe,0x25,0xd2,0x46,0x1d,0xee,0x54,0xea,0x70,0xf7,0x2c,0xfa,0xbf,0x58,0x1d,0x57,0x25,0x2e,0xae, -0xfa,0xda,0x17,0xe1,0xe3,0x85,0x46,0x83,0x84,0xac,0x18,0x76,0x98,0xd7,0x3c,0xda,0x2c,0x32,0xa9,0xba, -0xd0,0xc9,0xf5,0x7c,0x14,0x54,0x61,0x23,0x95,0x68,0x4a,0xf9,0x52,0x85,0x51,0x15,0xb3,0x49,0xcf,0x1b, -0x5d,0x48,0x3b,0x83,0x49,0x76,0xf3,0xc1,0x31,0x04,0x76,0x4c,0x65,0xb6,0xcf,0x0a,0xf0,0xc1,0xda,0x2c, -0x4d,0x70,0xb1,0xb6,0x44,0x05,0x46,0xd7,0xf8,0x76,0x25,0x71,0x52,0x20,0xf7,0xd1,0xb9,0x3c,0x9c,0xa7, -0xca,0x13,0x72,0xba,0xaa,0xa2,0xe5,0xa4,0xd3,0x49,0x3a,0xa5,0x4e,0xd5,0xbd,0x78,0x78,0xfd,0xb4,0xee, -0xd6,0x03,0x41,0xdb,0x8c,0x02,0x2f,0x34,0xf3,0xcd,0x0a,0x2a,0x7f,0xfd,0x5a,0x8b,0xb9,0xf0,0xcb,0x23, -0x86,0x48,0x6e,0x7a,0x98,0xc6,0xa6,0x4d,0xa7,0xd3,0x75,0x20,0x44,0xc0,0x84,0xea,0xf0,0xe9,0xc4,0x43, -0xb2,0x49,0x76,0xf1,0xc4,0x61,0x1e,0xdf,0xb1,0xcb,0x40,0x81,0x61,0x07,0x59,0x32,0xb3,0xf4,0x12,0xc9, -0x88,0x34,0x05,0x04,0x81,0x1d,0xb3,0x58,0x21,0xfe,0xc1,0xca,0xaf,0x09,0xf0,0x9a,0x78,0x22,0xca,0x0e, -0x26,0xf3,0x7c,0x9d,0xa2,0x08,0xc7,0x4b,0x7a,0x21,0x7f,0x9f,0xb5,0x89,0x56,0x51,0x8e,0x6b,0x93,0xb8, -0xae,0x1e,0x21,0x96,0x52,0x88,0x24,0xef,0x80,0x9a,0xa8,0x32,0x15,0x14,0x2c,0x3b,0x18,0xd5,0xc8,0x90, -0xc0,0xd7,0xa4,0xf1,0x2d,0x84,0xc5,0x56,0x24,0x59,0x22,0x3f,0x29,0xad,0xe6,0x31,0x0d,0x19,0xce,0x62, -0x56,0x39,0x2f,0xba,0x92,0xc5,0xac,0x24,0x71,0x58,0x60,0xc5,0x4a,0x7e,0x48,0x3e,0xaf,0x90,0x6f,0xb2, -0xa2,0x04,0x27,0x6f,0x13,0x64,0x80,0xb3,0x46,0x29,0x06,0x08,0xd3,0xca,0xb4,0xc4,0xd0,0xa6,0x3b,0x6d, -0x35,0x7c,0xb6,0x0b,0x7f,0x61,0x6e,0x1d,0xc2,0xd8,0x1b,0xd8,0x06,0xc5,0x66,0x8d,0x17,0xd6,0xec,0x62, -0xea,0xb0,0x42,0xfe,0xaf,0xbf,0x3b,0xac,0xdd,0x84,0x9e,0x25,0x2d,0x05,0xfa,0x39,0x77,0xf1,0x7f,0x42, -0x93,0x0f,0x63,0x0c,0x61,0x14,0x71,0x58,0x10,0xc4,0x1c,0x95,0x49,0xe8,0xa3,0xad,0x26,0x17,0xad,0xd6, -0xdb,0x61,0x02,0x34,0x64,0x9f,0x4d,0xe1,0x68,0x69,0xae,0x6d,0xc6,0x52,0xba,0x74,0x0d,0xa5,0xb9,0x32, -0x48,0x6e,0x31,0xb4,0x91,0xba,0xea,0x94,0x32,0x2e,0x01,0xfa,0x7a,0xe3,0x0e,0xc0,0xa0,0x73,0x6f,0x6f, -0x1b,0xc7,0xa1,0xcc,0xb7,0x0f,0x36,0x99,0xdd,0x30,0xa2,0x64,0x7e,0xd3,0xe0,0x41,0x00,0xfb,0xa2,0x8d, -0x4b,0x41,0x15,0xf5,0x79,0xe9,0x9e,0xa5,0xad,0x74,0x6b,0x70,0x52,0x65,0x19,0xac,0x11,0xdb,0xdd,0x5e, -0xc9,0x7b,0x8d,0x64,0x10,0xb0,0xca,0x6b,0xa2,0x68,0x74,0x4f,0x24,0xb8,0x9d,0x4b,0x16,0x97,0x8a,0x7f, -0x6f,0x06,0xce,0xf7,0x04,0x5f,0xc9,0xa1,0xed,0x80,0x7e,0x7a,0x3e,0xb7,0x56,0x4b,0xa7,0xd3,0x24,0x27, -0x63,0x8e,0x23,0xa8,0x4d,0xb1,0xed,0xd8,0xd9,0xe1,0xad,0x6c,0x2b,0xad,0x08,0x08,0x32,0x12,0x80,0xe3, -0x52,0xbd,0x55,0x96,0x4f,0xcf,0x53,0x8f,0x91,0x6d,0x08,0x41,0x8b,0x74,0x15,0xa7,0x34,0x00,0x09,0xc3, -0x64,0xaa,0x44,0x91,0xa6,0xe8,0xb6,0xe2,0x96,0x56,0x88,0x98,0x32,0xb4,0xa7,0x0b,0x03,0x10,0xcb,0x5b, -0x1b,0x59,0x58,0x91,0xfe,0xf3,0x9d,0x13,0xc6,0x91,0x15,0x4d,0x68,0x44,0xd5,0x93,0xb6,0xc1,0xbd,0x9a, -0x27,0x3a,0x54,0x61,0x83,0x3a,0x8f,0x4b,0x1d,0x6a,0x61,0x83,0xfa,0x39,0x36,0x5a,0xcc,0x6d,0x50,0x67, -0xe4,0x04,0x5f,0x81,0x1a,0xd9,0xa0,0x48,0x1e,0xa9,0xc3,0x0d,0x6c,0x70,0x28,0xf2,0xd3,0xc1,0x62,0x1b, -0x18,0x89,0xd4,0x74,0xb8,0x99,0x0d,0x4e,0xf6,0xdb,0x03,0xd3,0x3d,0x41,0x1f,0x25,0x4a,0x28,0x13,0x6d, -0xc8,0xc7,0x7c,0xb6,0xf3,0xf9,0x6f,0x74,0x2f,0xf3,0x22,0x90,0x45,0x87,0x9d,0xbd,0x3c,0xe0,0x86,0x49, -0x3d,0xa3,0x39,0x43,0xe4,0xc5,0xae,0xc7,0xe8,0xff,0x5f,0x44,0x9f,0xfb,0x83,0x63,0x6f,0x9a,0xc1,0x9d, -0x3a,0x90,0x03,0x0e,0xaf,0x09,0x41,0x65,0x7e,0xb5,0xb3,0xb3,0x9d,0x8a,0xeb,0x70,0xa7,0x37,0xa5,0x33, -0xd6,0x3d,0x5d,0xd6,0xd1,0xd6,0x8a,0x21,0x03,0xbf,0x30,0x22,0xb6,0x61,0xba,0xa8,0x2a,0x1e,0xe0,0x2b, -0xe4,0xa4,0xa5,0xea,0x30,0xf0,0xd3,0xdb,0xc7,0x38,0x1f,0xa5,0xd3,0x36,0x5a,0x3d,0x29,0x6e,0x2d,0x9c, -0x19,0x1c,0xa6,0xf0,0xdd,0xb7,0xd5,0x58,0x22,0xe7,0x5e,0x5b,0xeb,0x45,0xe0,0x08,0x81,0xf1,0x90,0x69, -0x62,0x93,0x5d,0x6e,0xa9,0x22,0x3d,0x69,0x21,0xe4,0x03,0xf7,0x6c,0x55,0xea,0xf4,0x3c,0x30,0x9e,0x0e, -0x9b,0x26,0x8a,0xc1,0x2b,0xb8,0xcc,0x5b,0xfb,0x6a,0x33,0x6e,0x0f,0x19,0x0e,0x9c,0x95,0xa5,0xf4,0x9c, -0x47,0x88,0xfa,0x0c,0xb5,0x2a,0x15,0x23,0xc3,0xe9,0x36,0xac,0x73,0x40,0xe2,0x8e,0x11,0xdb,0x1e,0x6a, -0xb4,0xb7,0x15,0xee,0x0d,0xd7,0xe2,0x77,0x73,0x89,0x46,0x7e,0x57,0x76,0xae,0x0a,0x22,0x48,0xd7,0xd8, -0x30,0xc2,0xbc,0x51,0xbb,0x7f,0xbc,0x71,0xf7,0x8f,0xd7,0x44,0x67,0xbc,0x06,0x3b,0xdd,0x79,0x5b,0xa2, -0xd7,0xee,0x7a,0x7b,0x37,0xde,0xbe,0xf8,0x14,0xc3,0x63,0xbd,0x2b,0x9b,0x76,0xa6,0x8f,0x54,0x1f,0x19, -0x52,0xe3,0x51,0x5d,0x0d,0x94,0x3a,0xf5,0x4b,0x1a,0xcf,0x67,0x0e,0x3b,0x8d,0x83,0x95,0x34,0x13,0xbe, -0xec,0x5c,0x91,0x33,0xdf,0x2a,0xa1,0x7b,0xc5,0x4e,0x49,0xb8,0x6d,0xd9,0x2d,0x83,0x6b,0x4d,0xa6,0xfa, -0x16,0x5c,0x44,0x95,0x0e,0x89,0x1f,0x47,0x5d,0x9f,0xd6,0xa2,0x54,0xac,0x45,0xfe,0x14,0x92,0x60,0xe2, -0xfb,0xe8,0x6b,0x64,0x8c,0xbe,0x4a,0x22,0x94,0x14,0xa1,0x9c,0xa7,0xdb,0x4b,0x03,0x34,0xe3,0x64,0x86, -0xc4,0x41,0x0c,0x60,0x86,0xd8,0x06,0xae,0x3c,0xe8,0x34,0xb0,0x96,0x3a,0xc2,0x89,0x53,0x4b,0x1d,0x78, -0x50,0x39,0x5c,0x63,0xa1,0x7a,0xd8,0xbe,0xa0,0x81,0x22,0x58,0xb0,0xe9,0x78,0x1a,0x99,0x4f,0x07,0xd5, -0x0b,0x05,0x8f,0x7d,0x79,0xaa,0xc4,0xac,0x93,0x6b,0x2b,0x8d,0xba,0xdb,0xe8,0x94,0x0b,0x30,0x6b,0x32, -0xc4,0xde,0xad,0x21,0x46,0x42,0xb3,0xa0,0x09,0x49,0x90,0x86,0xf4,0x7f,0x66,0x5c,0x34,0x25,0x69,0xd2, -0x6d,0x40,0x2e,0x24,0x48,0x9c,0xd4,0xf1,0x3b,0x24,0x4e,0xf2,0x6f,0x2b,0x11,0x93,0x48,0x7b,0x20,0xb7, -0xe1,0xda,0xc1,0x90,0x98,0xb4,0x5d,0xef,0xfd,0x51,0x8d,0x2e,0xe5,0xb9,0x88,0x13,0x36,0xb2,0x10,0xf6, -0xfb,0xef,0xdc,0xfc,0x73,0x11,0x8d,0x9a,0x68,0xf3,0xef,0xa2,0x05,0xbf,0x92,0x7d,0x0f,0x97,0xe6,0x38, -0x7f,0x89,0xde,0x0b,0x51,0xe8,0x8a,0x88,0x76,0x70,0xf7,0xb8,0xa3,0xe3,0x06,0x76,0xfc,0x79,0x99,0xcd, -0x20,0xbd,0x89,0x05,0x5d,0x0f,0xeb,0xd3,0xa1,0xbb,0x8d,0xd0,0x1d,0x84,0x5e,0x28,0x9c,0xbd,0x83,0x2f, -0x9d,0x77,0x31,0x34,0xcf,0x41,0xb4,0xb4,0x07,0xe6,0x97,0xcd,0xe4,0x8a,0x7c,0x92,0xe5,0x3c,0x79,0xb7, -0x8c,0x27,0xef,0xa3,0x77,0x8d,0x3c,0x19,0x44,0xef,0x57,0xf0,0x64,0x60,0xe3,0x09,0x0e,0x50,0x95,0x44, -0x24,0x70,0x60,0x63,0x07,0xc2,0xeb,0x60,0xef,0x15,0x3e,0x0c,0xf8,0x57,0x9d,0xe4,0xdf,0x6a,0x24,0x2b, -0x6f,0xb8,0x9c,0xe8,0xdf,0x96,0x11,0xfd,0x63,0xf4,0x5b,0x23,0xd1,0x1f,0xa2,0x1f,0x57,0x10,0xfd,0xc1, -0x4a,0x34,0xeb,0x59,0x46,0x3a,0xa7,0xe6,0x83,0x95,0x68,0x06,0xd8,0xa9,0xc0,0x7e,0x54,0x88,0xfe,0xc0, -0xbf,0xea,0x44,0x7f,0xae,0x11,0x5d,0xbd,0xf8,0x72,0x9a,0x3f,0x2f,0xa3,0xf9,0x63,0xf4,0xb9,0x91,0xe6, -0xf3,0xe8,0xe3,0x0a,0x9a,0xcf,0x97,0xd0,0xcc,0xfa,0x10,0x55,0xee,0xb1,0xaa,0x25,0x34,0x33,0x40,0x1a, -0xf0,0x1f,0x15,0x9a,0xcf,0xf9,0x57,0x9d,0xe6,0x37,0x35,0x9a,0x5f,0x19,0x24,0xbf,0x59,0x46,0xf2,0xeb, -0xe8,0x4d,0x23,0xc9,0x9f,0xa2,0xd7,0x2b,0x48,0xfe,0x54,0x23,0xf9,0x1f,0xb7,0x9d,0x0e,0x16,0xd5,0x33, -0x82,0xee,0x33,0xf6,0xdf,0xd7,0x08,0x71,0x6b,0x83,0xf8,0x4a,0xfc,0x07,0x10,0x1d,0x2b,0xc4,0x21,0xe5, -0xdc,0x5a,0x72,0x9e,0x29,0xb5,0x77,0x3a,0x36,0x88,0x6f,0x94,0xda,0x6f,0x6d,0x10,0x5d,0x89,0xfa,0x6b, -0x85,0xed,0x9f,0xf8,0x57,0x9d,0xed,0xaf,0x6a,0x6c,0x97,0xea,0x36,0x9c,0xed,0xaf,0x96,0xb1,0xfd,0xda, -0xee,0xe8,0x40,0x6a,0xdb,0xba,0x73,0x58,0xf9,0x67,0x5e,0xef,0x3a,0xc8,0xcd,0x6d,0xed,0x1a,0xb7,0xc0, -0xeb,0x60,0x54,0x4f,0x1f,0x61,0xfa,0xa0,0x9e,0x3e,0x60,0x7b,0xde,0x59,0xf4,0xaa,0xb1,0xab,0x7f,0x88, -0xce,0x56,0x74,0xf5,0x0f,0x0d,0xa3,0xfb,0x1a,0x2d,0x9e,0x7d,0xfc,0x3b,0xe2,0x7f,0x07,0x6c,0xca,0xfe, -0xd0,0x30,0xca,0x0d,0xf4,0x66,0x56,0xc3,0xeb,0xe6,0x54,0xac,0xfa,0x4c,0xe9,0xa2,0x1f,0xf8,0x57,0xbd, -0x8b,0xde,0xd6,0xba,0x48,0xaa,0x12,0xf1,0x2e,0x7a,0xbb,0xac,0x8b,0x4e,0x56,0x77,0xd1,0x0d,0xec,0x63, -0xbd,0x93,0x7a,0x17,0x9d,0x60,0x17,0x9d,0xd4,0xbb,0xe8,0x04,0xbb,0xe8,0xa4,0xde,0x45,0x27,0xa2,0x8b, -0x5e,0x46,0x6f,0x1b,0xbb,0xe8,0x22,0x7a,0xb9,0xa2,0x8b,0x2e,0x1a,0xba,0xe8,0x84,0x77,0xd1,0x09,0xef, -0xa2,0x13,0xd1,0x45,0x17,0xf5,0x39,0xd0,0xa1,0x39,0xf0,0x52,0x61,0xf0,0x05,0xff,0xd2,0x19,0xbc,0xd6, -0x51,0x56,0x93,0x43,0x1b,0xcf,0x10,0xab,0x4f,0xb2,0x4d,0xa2,0x1e,0x3a,0x58,0x92,0xf1,0x00,0x1d,0x53, -0xcb,0x0d,0x8e,0xa9,0x0d,0xb2,0x0a,0x1c,0x0b,0x69,0xe3,0x71,0xaf,0xb0,0x97,0xe3,0x5a,0x03,0xf8,0x6c, -0x6c,0xcd,0xe7,0xea,0x8b,0x8e,0x27,0xb4,0xc1,0x6f,0xb2,0xc2,0x3d,0xd8,0x13,0x8f,0xba,0x30,0x90,0x3c, -0xf8,0x5f,0x21,0x34,0xc3,0x8b,0x74,0x6a,0xcb,0x9d,0x44,0xa9,0xb8,0x00,0xed,0x1f,0xc0,0xc9,0x37,0x95, -0x97,0x8f,0xfd,0x83,0x5e,0xc1,0xee,0x2f,0x74,0xd5,0xf1,0x27,0xad,0x6c,0x4f,0x81,0xa5,0x4b,0x07,0xc6, -0xca,0xbd,0x61,0x21,0xeb,0x66,0x8e,0x3f,0x6c,0x4f,0xf7,0xd4,0xf2,0x1c,0xa4,0x6b,0x48,0x1d,0x35,0x5f, -0x28,0xc2,0xf3,0x4f,0x33,0xc4,0xce,0x4e,0xc7,0x14,0x5b,0xc2,0xe9,0xb4,0x1f,0xb3,0x86,0xb3,0x59,0x7c, -0x03,0x87,0x7e,0xdc,0xd2,0x42,0x33,0xa9,0xdb,0x76,0xf3,0x60,0x71,0x14,0x1c,0xf4,0x83,0x83,0x10,0x7e, -0x71,0xd1,0x45,0xed,0x06,0x5c,0xdb,0xd1,0xc6,0x8d,0x7d,0x35,0xb7,0x95,0x15,0x3d,0xd5,0x9b,0x2b,0xcc, -0x00,0x0e,0xef,0x8d,0xf5,0x9b,0x1c,0x6b,0xfe,0xc6,0x26,0x84,0xd2,0x9a,0xbf,0x69,0x6c,0x7e,0x66,0x2b, -0x2b,0x9b,0x9f,0x29,0xcd,0xbb,0xdd,0x36,0x74,0x2f,0x5c,0x13,0x6d,0x28,0x9c,0xda,0x24,0x5c,0x1a,0x0a, -0xcb,0x2e,0x27,0x96,0xb2,0x12,0x85,0x5b,0x13,0x85,0x85,0xb7,0x77,0x6a,0x43,0x61,0x64,0x13,0x9f,0xad, -0xbc,0x46,0x88,0x3b,0x84,0xa5,0xac,0x44,0x61,0x61,0xa2,0x90,0x7b,0x7b,0x23,0x1b,0x0a,0x77,0x76,0xd9, -0x9c,0x86,0xc4,0x5d,0x23,0x12,0xef,0xec,0xa5,0x25,0x1a,0xef,0x4c,0x34,0x46,0xde,0xde,0x9d,0x0d,0x8d, -0xf7,0x56,0xd1,0x9f,0x86,0xc5,0xfb,0x46,0x2c,0x06,0xd6,0xc2,0x12,0x89,0x81,0x89,0xc4,0xc0,0xdb,0x7b, -0x6f,0x43,0xe2,0x37,0xbb,0x60,0x71,0xe5,0x71,0x5e,0x9c,0xe5,0xad,0xa5,0x25,0x1a,0x3f,0x9a,0x68,0xc4, -0xde,0xde,0x6f,0x26,0x1a,0x9b,0xac,0xf8,0xa4,0xe3,0x06,0x6b,0x41,0x54,0xf7,0xdc,0x67,0x79,0xb7,0x6c, -0x78,0xb5,0x5c,0xa7,0xa5,0xd7,0xa4,0x28,0xb1,0xe9,0xce,0x62,0xbe,0xbe,0x98,0xc6,0x2b,0xfc,0x31,0x5c, -0x84,0xc6,0x43,0xff,0xda,0x35,0x03,0x17,0x13,0xc4,0x78,0x5b,0xe2,0x8e,0xa9,0x50,0xa5,0x80,0x31,0xb7, -0xb2,0x67,0x70,0x34,0x17,0x4c,0xae,0x22,0x2c,0x61,0xee,0x6b,0x44,0x55,0x94,0x16,0x2c,0x8e,0x83,0xc3, -0x3e,0xaf,0x83,0x87,0x23,0x73,0x06,0x93,0x98,0x9e,0xab,0x8d,0xe4,0x3b,0x0a,0x71,0xe3,0x2d,0x51,0x3e, -0x61,0x4c,0xc3,0xc8,0x5d,0x8b,0x04,0x4f,0x17,0x79,0x36,0xd1,0xf4,0x39,0x84,0x68,0xb5,0x7a,0x46,0x55, -0xf7,0xd6,0x58,0x2d,0xe7,0x30,0xf5,0xa6,0xce,0xb6,0xf4,0x7c,0x24,0x76,0x4b,0xd7,0x78,0xa6,0x52,0xd8, -0x42,0x9b,0xa5,0xb6,0x87,0x0b,0x8d,0x0e,0xc0,0x32,0x1e,0x25,0xff,0x83,0x4f,0x24,0xc2,0x0f,0xf8,0x8b, -0x05,0x45,0x92,0x22,0xf3,0x8b,0x42,0x8d,0x56,0xc0,0x61,0xa3,0x06,0x50,0xf4,0x00,0x49,0x00,0x3e,0x03, -0xfc,0x65,0x15,0xe0,0x2f,0xf4,0x80,0x2c,0xe7,0x8e,0x7e,0x38,0x10,0x01,0x2e,0xd3,0xa5,0x67,0x80,0x69, -0xe4,0x5a,0x01,0xaa,0x43,0x80,0xc0,0xba,0x9d,0xe2,0x13,0x5a,0x81,0x0f,0xda,0x01,0x6e,0xdc,0x6d,0x65, -0xcf,0xf6,0xf6,0x5d,0xf5,0x0b,0x6d,0xc4,0xda,0xbc,0xdc,0x2f,0x6a,0x39,0x98,0xa8,0x6d,0x75,0x23,0xa7, -0x72,0xca,0x27,0x1d,0x8e,0x1a,0x9d,0x83,0x79,0x4c,0xc6,0x2f,0x11,0x72,0x53,0xe5,0xcc,0xf9,0x9c,0xbb, -0x2c,0x3b,0x9d,0xe0,0xd9,0x92,0xce,0x7c,0x1c,0x4f,0xe1,0x4f,0x8c,0xbe,0xbc,0x25,0x68,0x6b,0x58,0xaf, -0xae,0x1c,0x89,0x91,0x75,0xc3,0x87,0xb7,0x9c,0x34,0x26,0x4c,0xb7,0xe8,0xe0,0x4d,0x35,0x0d,0xbc,0x09, -0xe9,0xdf,0x0d,0x8f,0xbb,0x30,0x5e,0x86,0x51,0x17,0x0f,0x42,0xe8,0x41,0x6d,0x67,0x67,0x78,0xc4,0x7e, -0x49,0x5f,0x6a,0x04,0x20,0x23,0x86,0x74,0xc8,0x13,0x3b,0xb7,0xbf,0xab,0xf4,0xf2,0x26,0xfb,0x53,0xc0, -0x44,0x9e,0xcf,0xbc,0xde,0xf8,0x08,0x47,0xe2,0xb8,0x15,0x05,0x87,0x40,0xb0,0xfa,0x21,0xde,0xa7,0x5f, -0x15,0x0b,0x77,0xec,0x0f,0xfd,0x18,0xf6,0xd8,0xca,0xf6,0xb2,0x36,0xce,0x74,0xf1,0x7e,0xe3,0x78,0x13, -0xda,0x95,0xc8,0xdd,0x86,0x21,0xe1,0xed,0x57,0x9c,0x5a,0x63,0x04,0x28,0xf5,0x3c,0xa2,0x93,0xb4,0xc6, -0x78,0xa8,0x96,0xa3,0x0e,0xf0,0x6c,0x72,0xdc,0x45,0x8d,0xc3,0x9e,0xe0,0xf7,0xdc,0xe4,0x77,0x7f,0x1e, -0x75,0x42,0x99,0x7b,0xdc,0x6d,0xd7,0xfb,0x63,0xae,0x76,0xd8,0x1c,0x16,0xc0,0x3a,0xcc,0xfc,0x28,0x38, -0x6c,0xd9,0x4a,0x62,0x17,0x64,0xca,0x7e,0x36,0x57,0x8e,0xbc,0xfc,0xc0,0x6b,0x99,0xec,0xf4,0x36,0xb8, -0xb3,0x23,0xfa,0x0e,0xaf,0x77,0xdd,0xf6,0x1c,0xfa,0x6e,0x04,0xff,0x06,0xd6,0x22,0xfc,0xa1,0x50,0x2f, -0x14,0x07,0xb9,0xcf,0x0a,0xda,0x0b,0xb1,0x57,0xc3,0x7a,0x19,0x6c,0x08,0x15,0x16,0x6d,0x65,0x5e,0xe9, -0x45,0x70,0x5c,0x61,0x03,0x05,0x8d,0x2c,0x5b,0x01,0x7a,0x34,0xd5,0x0b,0xc4,0x18,0x0e,0x93,0xf0,0xb2, -0x17,0xa1,0x17,0xd4,0x7a,0x11,0x6c,0xa5,0x09,0x2d,0xfe,0xb2,0x59,0x15,0xa2,0x04,0x52,0xbb,0x7c,0x58, -0xa2,0x21,0x21,0x42,0x76,0x36,0x1d,0x0d,0x68,0x67,0x58,0x5a,0x9c,0xa9,0x2b,0x9a,0xba,0xc1,0xba,0x1e, -0x80,0x30,0x10,0xe0,0x7e,0x05,0x30,0xe0,0x03,0x4a,0x03,0xc8,0x22,0x14,0x95,0x14,0x84,0x67,0xc6,0xe3, -0xa8,0x23,0xf6,0x76,0xb6,0xdd,0x6a,0x0e,0xf7,0xd4,0xf4,0x3d,0xb9,0xb4,0x74,0x3b,0x4a,0x05,0x42,0x4d, -0xd7,0x92,0xd1,0xb8,0xcd,0x27,0x4b,0x76,0xe8,0xa2,0x4e,0x5f,0xf5,0xe6,0xa9,0x7a,0x08,0x03,0xba,0x05, -0x91,0x69,0x5f,0x57,0xbb,0x49,0xa1,0x44,0xb8,0xfc,0xf4,0x54,0xd4,0x7a,0x81,0x1c,0x40,0xb2,0x0a,0x6b, -0xcf,0x45,0x89,0x6c,0x80,0x1d,0x76,0x10,0x36,0x14,0x3e,0x12,0xf2,0xbe,0x32,0x98,0x63,0x17,0x12,0x7c, -0xe8,0x26,0xf8,0x37,0x80,0x7f,0xb1,0x0a,0x39,0xee,0x2b,0xe3,0x0b,0x21,0xc7,0x3e,0x46,0x63,0xc5,0xc0, -0xab,0x06,0x64,0xdc,0xd7,0x07,0x15,0xcf,0x5e,0x49,0x13,0x62,0xa0,0x71,0xce,0x27,0x7b,0x6c,0xe0,0x9f, -0x50,0x1c,0xa5,0x77,0xf5,0x68,0xbb,0x23,0x1c,0x24,0x2a,0xa7,0x91,0x2c,0x80,0x73,0x21,0xac,0x1d,0xa3, -0x28,0x87,0xff,0x0f,0xa2,0xd4,0x67,0xe8,0xa0,0xd1,0x71,0x06,0x03,0xa3,0xa8,0x5e,0xc7,0x85,0x09,0x38, -0x6b,0x42,0x76,0x44,0x16,0x8c,0xa3,0x29,0x50,0x95,0x05,0x05,0xfc,0x2d,0xe0,0xef,0x02,0xfe,0x2e,0x9a, -0x8f,0xb7,0xb5,0x83,0x70,0xcc,0xa7,0x93,0x72,0xba,0x5d,0x79,0x12,0x66,0x74,0x1b,0xd6,0xe8,0x68,0xd7, -0xad,0x4e,0x2b,0xd9,0x3d,0x94,0x49,0xba,0xbe,0xe9,0xf2,0x61,0x88,0x7d,0xf4,0x07,0x78,0x39,0x26,0x5e, -0x16,0xc4,0xcb,0xc5,0x32,0x5e,0x4a,0x79,0x9a,0xc9,0xcb,0x1c,0x78,0x97,0x53,0x7f,0x4c,0x61,0x3c,0x61, -0x8f,0x4c,0x61,0x4c,0xfd,0xd7,0x79,0x59,0xb7,0xec,0xb7,0xf0,0x92,0x0d,0xe0,0xb5,0x79,0x49,0xa3,0xd8, -0x3a,0xd7,0xb6,0x24,0x37,0x49,0xcf,0x2b,0x92,0x3a,0x9c,0x62,0x39,0x4a,0x36,0xa0,0xb8,0x7c,0x0c,0xc5, -0xe3,0xec,0xce,0xee,0xe3,0x9a,0x1d,0xe0,0x7d,0xa6,0x6a,0x81,0x3e,0x1b,0x0c,0x2d,0x14,0x7d,0xc1,0xc5, -0x67,0x66,0xe6,0x1e,0x97,0xfc,0x91,0x0a,0xcd,0xb5,0x62,0xa9,0x12,0x2f,0xf0,0x12,0x05,0x8f,0xdb,0x1d, -0x54,0xab,0xe3,0xb2,0xaa,0x7b,0xf4,0x53,0x9b,0xaf,0x7d,0x12,0x11,0xba,0x19,0xaf,0xb4,0x37,0x79,0x72, -0x79,0xdb,0x5c,0x49,0xfd,0x40,0xcb,0xdf,0xe8,0xd7,0xd6,0xb5,0x5d,0x72,0x67,0x55,0x74,0xea,0x73,0x76, -0x57,0x44,0xbb,0x81,0x78,0x08,0x1d,0x82,0x2a,0x3d,0x8a,0xef,0x60,0x54,0xe5,0x51,0xdd,0xff,0xa2,0x5a, -0x58,0x80,0xaa,0x79,0xa4,0xc9,0x6a,0xb5,0xca,0xaf,0x42,0x7d,0x16,0xb5,0x2d,0x59,0xea,0x8e,0x89,0x33, -0x64,0x65,0x43,0x5e,0x85,0x5b,0xc4,0xbb,0xca,0xfa,0xdc,0xed,0x4d,0x8f,0xb2,0x7e,0x55,0x0d,0x22,0x0f, -0xf4,0xba,0xf7,0xb2,0xbe,0x70,0xfa,0x00,0xcb,0xb6,0xd9,0x09,0xc7,0x59,0x4b,0xd5,0x8f,0xe3,0xc1,0x1c, -0x0b,0x1d,0x68,0x67,0x67,0x79,0xc5,0x66,0xa5,0xed,0x7a,0x95,0x2d,0xa3,0xca,0x87,0x65,0xba,0x99,0xc8, -0x69,0x9b,0xd5,0xba,0xa6,0x2d,0x81,0x1f,0x51,0xa3,0xea,0x03,0x5d,0x3e,0xb1,0x2b,0xdf,0xc2,0xcc,0xd2, -0xee,0xfb,0x7a,0xb7,0x36,0x76,0x1e,0x53,0xca,0xa3,0xc5,0x82,0x6b,0xd9,0x46,0xf7,0x0f,0xcb,0xb4,0x83, -0x35,0x05,0x10,0x15,0xe3,0x46,0xbf,0xed,0x42,0x17,0x94,0x7b,0xd1,0x10,0xd0,0x86,0x1e,0x2b,0x92,0xd2, -0x90,0xc5,0xe6,0x62,0x52,0x62,0x90,0x13,0xe0,0xae,0xea,0x38,0x1e,0x56,0x02,0x7e,0xad,0x6f,0x50,0x98, -0x7d,0xf0,0xf8,0x42,0x3f,0x8d,0x17,0xe9,0x28,0x2e,0x61,0x09,0x43,0x2d,0xdb,0x93,0x11,0x5e,0xbb,0xb9, -0x37,0xa5,0x93,0xe9,0x30,0xc7,0x45,0x2f,0xd8,0xdb,0xfa,0x57,0x0a,0x53,0x2d,0xfb,0xb4,0x0f,0xd8,0xac, -0x6c,0xd0,0x86,0xa5,0x92,0x8d,0x81,0x96,0x48,0xad,0x55,0x33,0x85,0x5c,0x03,0xe1,0x07,0xad,0x3b,0x6a, -0x5a,0xd6,0x8f,0xe9,0x00,0x69,0xfa,0xa2,0xcc,0xed,0xdf,0x7f,0x77,0xa5,0x99,0x40,0x5e,0x2d,0x11,0x5c, -0xd4,0x44,0xcb,0x04,0x4e,0x08,0x56,0x33,0x9c,0xbf,0x46,0x23,0x0c,0xbd,0xcc,0x43,0x27,0xd8,0x50,0x24, -0x1d,0x5d,0xab,0xf4,0x66,0x19,0x76,0x7e,0xa1,0x9f,0x22,0xab,0xd6,0xbd,0x1e,0x6c,0xce,0x69,0x75,0x8a, -0x2c,0xfc,0xed,0xae,0xa5,0x59,0x86,0xd1,0x17,0x6d,0x37,0xad,0x66,0x91,0x74,0xca,0x0e,0x03,0xa2,0xaf, -0x23,0xd3,0x41,0xeb,0x08,0x01,0x28,0xfc,0xba,0xef,0xec,0x6c,0x03,0xd6,0x8e,0xa3,0xb3,0x51,0xa9,0x9d, -0xd9,0xf9,0x09,0x19,0x9d,0x4a,0x4e,0xdd,0xd8,0x61,0xe3,0xae,0x66,0x7b,0xa3,0x90,0x22,0xe6,0xda,0xc2, -0xaf,0x88,0x0a,0xe1,0xf6,0xc4,0x3b,0x94,0xb7,0xcd,0xf5,0xb3,0x1d,0x1b,0x3e,0x86,0xe9,0xc1,0x1f,0xc4, -0x89,0x44,0x0e,0xcb,0x35,0xc2,0xd3,0xe5,0x1a,0xe1,0xc2,0xa4,0x45,0x58,0xe3,0x24,0x28,0x41,0x03,0xd4, -0x3d,0x61,0xf4,0xa4,0x27,0xd3,0xf6,0x55,0x8f,0x53,0xc1,0x9d,0x99,0xdf,0x63,0x6e,0x78,0x79,0xf5,0x50, -0x89,0xfe,0xe0,0x4c,0x68,0x18,0x5b,0x0a,0x59,0x1f,0xd9,0x5c,0xc6,0x54,0x61,0x30,0x9b,0x17,0x63,0xb7, -0xb8,0xcc,0x30,0x06,0xb1,0x46,0x78,0x31,0x2f,0x50,0x45,0x36,0x19,0xbe,0x60,0x08,0xc0,0x01,0xd5,0xc2, -0xd4,0xca,0x2c,0xe5,0xcb,0xf5,0xf1,0xb6,0xde,0xc9,0x38,0x77,0x6a,0xd3,0xd6,0xd2,0xf3,0xb4,0x44,0xe9, -0x38,0xda,0x8c,0x8d,0x9b,0xf1,0x04,0x84,0x72,0x16,0x35,0xae,0x28,0x15,0x69,0xa3,0xd0,0x6d,0xaf,0xba, -0xa4,0x46,0x09,0x1c,0x26,0x5d,0x29,0xf3,0x5e,0x47,0xc4,0x4b,0x02,0x54,0x1e,0x2f,0x93,0x09,0x88,0xf0, -0xc4,0x22,0xa9,0x64,0xa2,0x2b,0xc4,0xd6,0x42,0xd0,0x5f,0x8f,0x94,0x0d,0x28,0x30,0xad,0xab,0xff,0x2a, -0x24,0x3c,0xa6,0x37,0xec,0x46,0xd8,0x7f,0x67,0x8a,0x54,0x67,0x4b,0x5f,0xfe,0xf9,0x22,0x5d,0x42,0x3c, -0x5c,0x5c,0x9b,0x88,0xc7,0xd3,0x76,0xac,0x2c,0xbb,0xca,0x65,0x48,0x37,0xe7,0xf1,0xee,0xe3,0x86,0x03, -0x42,0x56,0x91,0xce,0x56,0x6b,0x6a,0xe4,0xfa,0xbb,0xb7,0x6f,0x2e,0xae,0x2f,0xe0,0x48,0xfe,0xf2,0xc5, -0xd9,0xf5,0x8b,0x9f,0x5f,0xbc,0xb9,0x38,0xc7,0xf6,0x1e,0x6f,0x6f,0x96,0x3d,0xd2,0xde,0x8c,0x5f,0xd9, -0xb3,0xa5,0x0b,0xb0,0xa7,0x2e,0xed,0x53,0xb9,0xb4,0x4f,0xf0,0xf2,0x0e,0x55,0xa1,0xd6,0x6f,0x6f,0x78, -0x34,0x11,0x6b,0xfc,0x10,0xd6,0xf8,0x0a,0x1f,0xa7,0xe5,0x62,0xb8,0xdb,0xc9,0xe5,0xf0,0x8a,0x82,0x6a, -0x15,0xb3,0xf8,0x26,0xe9,0x3b,0x4e,0xe8,0x04,0x4e,0x4b,0x4f,0xf5,0x7c,0xfa,0x1e,0x33,0x64,0xbd,0x07, -0xa5,0x27,0xe1,0x00,0x50,0x19,0x62,0xf2,0x67,0xa5,0xd8,0xf6,0xf6,0x85,0xf7,0xda,0xb5,0xc6,0x29,0xb3, -0x5e,0xca,0xcc,0xa1,0x89,0x81,0xdc,0xd8,0x8d,0xc3,0xee,0x81,0xcb,0x3a,0xc9,0x36,0x1a,0x9c,0xb9,0x1c, -0x9c,0x25,0x3d,0x29,0x02,0x8b,0xbf,0x63,0x46,0xd3,0xae,0xf0,0xc1,0xf6,0x25,0x26,0xab,0xf0,0x42,0x68, -0x65,0x52,0x69,0x99,0x94,0x48,0x9d,0x43,0x01,0xd6,0xf4,0xdd,0x56,0x71,0x1f,0x66,0x25,0x9e,0x48,0xdf, -0xd2,0xf1,0x0c,0x34,0x7b,0x2b,0xd8,0x62,0x6d,0xe1,0xaa,0xca,0x55,0xa7,0xee,0xb2,0x7e,0x6b,0x37,0xaf, -0xec,0x0f,0xda,0x2a,0xa2,0xf9,0xc0,0x33,0xad,0xda,0xd9,0x25,0xc6,0x6a,0x6c,0x5a,0x1d,0x77,0xad,0xa6, -0xa8,0xcd,0x2c,0xaf,0xe2,0x36,0x48,0x5b,0x2b,0xa5,0x0b,0x0a,0xf5,0x64,0x51,0xe8,0x27,0x8b,0xd8,0x72, -0xb2,0x28,0xf8,0x65,0x02,0x65,0xed,0x89,0x12,0x70,0x0d,0xaf,0x36,0x9f,0xf5,0x2b,0x94,0x73,0xc9,0x2c, -0xe1,0x71,0xae,0x93,0x58,0x69,0x46,0x28,0x63,0xfc,0x3a,0x73,0xfe,0xbb,0xf7,0x7a,0xf8,0x21,0xbc,0x1e, -0xa9,0xf7,0x29,0x31,0xaf,0x92,0x80,0xc5,0xe9,0xcb,0xe1,0xce,0x22,0x7e,0x06,0x1f,0xb3,0xff,0xa4,0x93, -0x09,0x45,0x57,0xb6,0x6a,0xce,0x09,0x73,0x7f,0x61,0x09,0x10,0x05,0x07,0xde,0x4a,0xdc,0x75,0x73,0x5e, -0xe6,0x0b,0x31,0x1d,0x0a,0x47,0x88,0xef,0x60,0x76,0xb3,0x20,0xd7,0xd2,0x17,0xe2,0x2c,0x2b,0x52,0x0a, -0xcc,0xb4,0x15,0x0f,0x8a,0x6c,0x32,0x2f,0x93,0xde,0x16,0x8a,0x94,0xe0,0x10,0xba,0x45,0x62,0x21,0xfc, -0xc1,0x4d,0x39,0xf0,0x27,0x33,0xdf,0x80,0x5f,0x8a,0xdb,0x44,0x36,0x5c,0xa5,0x8b,0x11,0xe8,0x58,0xee, -0x5f,0xe4,0xf9,0xe7,0xd7,0x43,0xb7,0xde,0x76,0xe3,0xc3,0x59,0x4f,0x46,0x61,0xca,0x0d,0x6f,0x7c,0x4c, -0xd0,0xc1,0x97,0xf8,0xb3,0x64,0x12,0xe3,0x94,0xab,0xaa,0x7c,0x3e,0x1f,0xfd,0x2b,0xfd,0xa4,0xdd,0x65, -0x59,0x6c,0xc2,0x2f,0x8a,0x54,0xe2,0x77,0x98,0xfb,0xfe,0xdb,0x92,0x1e,0x3d,0x13,0x94,0xf9,0xc0,0x4d, -0x75,0x59,0x64,0xa9,0x0e,0x8b,0xae,0x0a,0x23,0xcf,0x65,0x21,0xbd,0x94,0xa8,0x7a,0xfb,0x38,0x7a,0x8e, -0xff,0x0f,0xd5,0x86,0x83,0x0b,0xc0,0x40,0x03,0x00 +0xfa,0xfe,0xcf,0xa8,0xa0,0xc8,0x13,0x08,0xd2,0x24,0x36,0x2f,0xd3,0xc7,0x19,0x2e,0xbf,0xa7,0xf3,0x93, +0xf8,0xcb,0xec,0x04,0xb0,0xe9,0xea,0xd7,0xc1,0xeb,0x97,0x9e,0x11,0x1c,0xf6,0x1e,0x32,0xbe,0xfa,0x43, +0x93,0xd6,0x88,0x8e,0x92,0x74,0x67,0x6f,0x2a,0xce,0xbb,0x66,0x20,0x2f,0x92,0x33,0x5a,0xf8,0x2b,0x39, +0x2a,0xec,0xb1,0x3c,0x4c,0x2f,0x16,0xc8,0x5f,0xb8,0x42,0xba,0x5b,0xef,0xf9,0xea,0x22,0x9b,0x31,0xfc, +0xbe,0xf7,0x1a,0x21,0xb8,0x72,0xf7,0x60,0x55,0x82,0x95,0xc3,0xa8,0x15,0xf3,0x8a,0x26,0x09,0x9d,0x61, +0xb7,0xc6,0xde,0x6b,0x38,0x8c,0xe2,0xe7,0x42,0xec,0xf9,0xe6,0x06,0x51,0x34,0xb7,0x04,0xff,0xed,0x3d, +0x4b,0x90,0xdf,0x08,0x23,0x4b,0x87,0xdd,0xd9,0x67,0x73,0xd1,0x23,0xc6,0x84,0xaa,0x0e,0x6e,0x99,0x06, +0x9e,0x85,0xbd,0x01,0x0f,0xea,0xcb,0xfd,0xc1,0x03,0xf9,0x8d,0x9f,0x07,0xaf,0x30,0xa3,0x3f,0xac,0x80, +0x92,0xf7,0xee,0x27,0x7e,0x93,0xf6,0x26,0x3b,0xe3,0x79,0xcf,0x0f,0x9e,0xbf,0xc2,0x43,0x44,0xef,0xf4, +0x9e,0x14,0xb4,0xd8,0xde,0x24,0xac,0xb9,0x68,0xdf,0xe1,0x84,0x8d,0xff,0xfe,0xc8,0xf2,0xc6,0xb7,0x87, +0xf6,0xd5,0xdf,0xa8,0xd2,0x57,0xab,0xaa,0x47,0xd4,0xf5,0x0d,0x36,0x06,0xfd,0x7c,0x9f,0x94,0x17,0xa0, +0x0b,0xef,0xc0,0xb1,0x29,0xa3,0x1e,0x6e,0x97,0x05,0xdd,0x7c,0xf1,0x84,0x97,0x75,0x95,0xf4,0xb4,0x4a, +0x85,0xd6,0x8a,0xb9,0xfe,0xfe,0xf5,0x8b,0x57,0xe6,0xc7,0x01,0x51,0x89,0x63,0x45,0x1d,0xc4,0x6c,0x62, +0xda,0x3d,0x54,0xed,0xb6,0x9b,0x3d,0x8d,0x14,0x5d,0x02,0xf3,0x64,0x9a,0xfe,0x31,0x4d,0x17,0x68,0x83, +0xc8,0x65,0x77,0x7c,0x6f,0xb9,0x48,0xf2,0x09,0x0c,0xea,0xf1,0xdd,0xe4,0xac,0xb8,0x3b,0xf5,0x02,0x51, +0x51,0xd1,0x8f,0x20,0xa4,0x7f,0xfa,0xfd,0x90,0xc1,0x2a,0x8b,0xcb,0x5a,0x81,0x7b,0xd9,0x7b,0x82,0xa0, +0xe2,0xbd,0xf4,0xfe,0x3d,0xdc,0x47,0x0e,0x01,0x12,0x62,0x5e,0xbc,0x7d,0xa5,0xa2,0x54,0x83,0xc1,0x72, +0x75,0x2c,0xda,0x54,0x7f,0x18,0xee,0x7d,0x5b,0xfb,0x32,0x7b,0x87,0x0a,0x61,0xed,0x8e,0x82,0x50,0x56, +0x9f,0xa6,0x6a,0xf8,0xd3,0xb0,0xa5,0x11,0xa1,0x77,0xdb,0xa5,0x1f,0x72,0xbb,0x10,0x8f,0x5a,0x5c,0xf6, +0xfb,0x37,0x75,0x9f,0x7e,0x4f,0xcb,0xe2,0x75,0x32,0x6b,0x00,0xde,0x20,0xb7,0xac,0xa4,0x55,0xae,0x24, +0xab,0x72,0x3f,0xf6,0x86,0x9e,0x1a,0x31,0x3f,0xef,0x13,0x4f,0x2b,0xaa,0xc3,0x1d,0xe2,0x14,0x4c,0x5d, +0x20,0x4a,0x18,0x9f,0xbf,0x17,0x39,0x1f,0x16,0x2a,0xc9,0xf5,0xce,0x9f,0xf7,0x87,0xe1,0xce,0x37,0xdf, +0xe0,0x9f,0x21,0xfd,0xf3,0xe0,0xcf,0xf8,0xe7,0x6b,0xfa,0xe7,0xeb,0xbf,0xe0,0x1f,0x3c,0xbd,0x8f,0xa7, +0xf7,0xf1,0x74,0x1f,0x0f,0xf6,0xf7,0xe8,0x9f,0x3d,0x3c,0xdd,0xe3,0x77,0x87,0xe1,0x30,0xfc,0x06,0x6e, +0x1a,0xf4,0x1f,0xdd,0xc5,0x63,0x94,0xdb,0xa7,0x9a,0xf0,0xd2,0xfd,0xfb,0xf4,0xdf,0xd7,0x0f,0x42,0xd4, +0x72,0xff,0xdb,0x61,0x88,0x2a,0x51,0xf7,0x03,0x2a,0xf7,0x60,0xff,0x41,0x88,0x8f,0xe1,0xab,0xf8,0xfc, +0x37,0x54,0x16,0x6d,0x41,0xa3,0xfe,0xfc,0xcd,0x83,0xf0,0xcf,0x54,0xee,0x2f,0x5f,0x0f,0xa7,0x26,0x45, +0x8c,0x72,0x67,0xd7,0x80,0xbd,0xf0,0x67,0x4f,0xe2,0xfc,0x51,0x3c,0x1c,0xe7,0xd1,0x4e,0x8e,0x0c,0x70, +0xdf,0xbf,0x3c,0xf4,0xfa,0x3e,0xdf,0xf2,0xfa,0xc4,0xe7,0xee,0x78,0x41,0x5f,0x8f,0xa3,0x81,0xfa,0x4c, +0x76,0xd1,0x60,0x12,0x42,0xf7,0x03,0x94,0x31,0x05,0x92,0x3f,0xd1,0xfd,0x7d,0x9e,0x44,0x09,0xe2,0xd5, +0x13,0x55,0x2d,0x44,0x96,0xe1,0xe9,0x52,0x6a,0x4d,0x2a,0xf4,0x50,0x10,0x82,0x1e,0x3d,0xdc,0x55,0x17, +0x78,0xca,0x20,0x81,0x82,0x8c,0x43,0x8c,0x91,0xe0,0x3c,0x15,0x30,0xb9,0x9b,0xb9,0xe0,0x63,0x91,0x16, +0xda,0xb3,0xa2,0xbc,0xa8,0x37,0x19,0x82,0x09,0xe3,0xc1,0xbd,0xc9,0xe3,0x9d,0xbf,0x1f,0xcd,0xa6,0x81, +0xfc,0x48,0x76,0x7e,0x9f,0x06,0x93,0xa3,0xcb,0x7f,0x6e,0xfd,0xcf,0xaf,0xee,0xfc,0xe9,0xd7,0xed,0x7b, +0x47,0xfe,0x51,0xf0,0xf0,0x51,0x38,0x38,0x1a,0x8f,0xa2,0xeb,0x1b,0x84,0x2d,0x1f,0x1d,0xad,0xa7,0xd7, +0x0f,0xc2,0x9b,0x3b,0xbb,0x61,0x1e,0x37,0x96,0x5f,0x32,0xa3,0x1d,0x8a,0xe3,0x90,0x1a,0x1e,0xa6,0x81, +0xb8,0x89,0xf9,0x3a,0xd4,0x13,0x02,0x92,0xa5,0x16,0xde,0x32,0xa2,0x91,0x96,0x9a,0x92,0x79,0x0a,0x23, +0x2c,0x0e,0x79,0xed,0x93,0x82,0x93,0xb7,0x77,0x0e,0xdc,0x03,0x86,0x06,0x48,0x67,0x38,0xc6,0x71,0xc6, +0x72,0xa7,0xc2,0x5e,0x46,0xa7,0xed,0x6a,0x59,0x49,0x91,0x84,0xd8,0x01,0x3a,0x14,0xab,0xde,0x03,0x8e, +0x02,0x24,0x7a,0x09,0x55,0x66,0x6f,0x8f,0x56,0x23,0x11,0xd0,0x13,0x1c,0x97,0x49,0x3e,0xa3,0xdf,0x2b, +0x38,0x88,0xf3,0x6f,0xda,0xd7,0xe2,0x89,0xb1,0xe5,0x05,0xe1,0xd6,0x9e,0x24,0xf6,0xfe,0x52,0xb7,0xe0, +0xa3,0xec,0xf4,0x6a,0x0b,0x50,0x55,0x6e,0x27,0x6a,0xa6,0x80,0x88,0x7b,0x6f,0x96,0x9d,0x9e,0xa6,0x20, +0xf2,0xd6,0x67,0x8a,0x46,0xc6,0xf0,0xf1,0xd6,0x4e,0x80,0xd9,0xa0,0x39,0x18,0xee,0x7c,0xbb,0x33,0xbd, +0xa6,0x05,0xbc,0x77,0x53,0xdf,0x99,0xde,0x61,0x4b,0x46,0xa3,0x6d,0x70,0xea,0xc7,0x95,0x34,0x8d,0x55, +0x90,0xb2,0x24,0xe0,0xbf,0xc0,0x3c,0x05,0xe7,0x3c,0x1d,0x1a,0x12,0x07,0xa9,0x83,0x78,0xbf,0xad,0xad, +0x42,0x86,0xbf,0x54,0x40,0x71,0x40,0x93,0x91,0xa6,0x3f,0x57,0x55,0xf6,0x4e,0x92,0x1c,0x43,0x7d,0x4c, +0x83,0x8f,0x04,0x30,0x3c,0x78,0x17,0xc9,0xe7,0x5e,0x91,0xcf,0x3f,0x33,0xb6,0x44,0x02,0xe5,0x21,0xcd, +0xd6,0xe3,0xb7,0x07,0x2f,0x5e,0xf4,0x24,0x43,0xf1,0xb2,0xe7,0xdf,0x7d,0x7c,0xb7,0x07,0xb7,0x88,0xd5, +0xd9,0x79,0xef,0xee,0xdf,0xef,0xf2,0x7b,0x77,0x13,0xeb,0xde,0xef,0x77,0x83,0x90,0x5f,0x9c,0xe1,0x9c, +0x5a,0xf6,0xee,0x0e,0xad,0x87,0xdf,0xde,0x0d,0xf9,0x0d,0x3c,0x3f,0xff,0xbc,0x38,0x4f,0x73,0xaa,0x71, +0xe7,0x6e,0xb0,0xd5,0xa3,0x85,0xf1,0x19,0x8d,0xea,0xe5,0x69,0x46,0x4f,0x4b,0x61,0x23,0x31,0x87,0xb4, +0x41,0x7a,0x70,0xc3,0xa2,0x17,0xd5,0x3b,0x03,0x1e,0xe8,0xc0,0x22,0x49,0x67,0x69,0xc5,0xd0,0xdc,0xb5, +0xde,0xbb,0x06,0xc7,0xa2,0x41,0xb9,0x03,0xe9,0x5c,0x86,0x4e,0xc1,0x39,0xf1,0x1d,0x36,0xdc,0x7b,0x2a, +0xc8,0x99,0x6e,0xee,0x45,0xc3,0x48,0x81,0x6b,0x6d,0x75,0xbc,0xb4,0x5e,0x77,0xbe,0x75,0xc7,0x20,0x63, +0x35,0x8e,0x40,0x92,0xda,0x55,0xa3,0x6a,0x55,0x79,0x42,0x07,0xe0,0x65,0x76,0x9a,0x31,0x76,0x6f,0xc8, +0x97,0xaf,0x05,0x03,0x14,0x97,0xdf,0xbf,0x57,0x17,0x2f,0x93,0xe5,0x47,0x75,0xf9,0xe2,0xb5,0xba,0x78, +0xf2,0xe3,0x5b,0x24,0xe8,0x38,0x39,0x7f,0x9a,0x4b,0x2c,0x37,0xff,0x78,0x4b,0x43,0x03,0xdf,0x78,0x5c, +0x3f,0x16,0xd9,0x85,0xaf,0xc5,0x8f,0x1d,0x57,0xcf,0x89,0xbf,0x95,0xab,0x97,0x59,0xce,0x79,0xa9,0x71, +0xfd,0xfe,0xc9,0x52,0x2e,0xde,0x1d,0x82,0xef,0x2a,0xe7,0x9f,0xbf,0x23,0x66,0x58,0xae,0x5e,0xaf,0xe6, +0xcb,0x54,0x2e,0x41,0xe7,0xe5,0xea,0x55,0x4e,0xec,0xc3,0x09,0x50,0x76,0x7f,0xab,0xaa,0xef,0x19,0x7e, +0xcd,0xba,0x7e,0x91,0x7f,0xa2,0x9f,0xb3,0x93,0xdf,0xdf,0x20,0xbb,0xc2,0x8b,0xd9,0x95,0xfc,0x7a,0xa9, +0xb9,0x00,0xfa,0x59,0x2d,0x17,0x1f,0xf9,0xa9,0xba,0xb6,0x9f,0x51,0x77,0x5e,0x16,0x7c,0x65,0xf6,0xa3, +0x87,0x14,0xb6,0x7c,0xeb,0x63,0xca,0xaf,0x14,0x8b,0xec,0x84,0x8e,0x73,0xa1,0xdb,0xe3,0x26,0xcc,0x00, +0x30,0x9c,0x20,0xf6,0x70,0x74,0x12,0x07,0x26,0x05,0x1c,0x9f,0x24,0x06,0x5b,0x00,0xf2,0x25,0x36,0x1c, +0x24,0xd1,0x74,0x29,0x9a,0x4f,0x15,0x70,0xb4,0xb3,0x98,0xc0,0x6d,0xd4,0xe4,0xf4,0xda,0xe4,0x2b,0xd2, +0x1b,0x54,0xe1,0xec,0x31,0xc5,0xe8,0x72,0x48,0x4d,0x69,0xf5,0x28,0x28,0x5e,0x5e,0x40,0xd8,0x72,0x9c, +0x95,0xc1,0x2c,0x54,0x49,0xcb,0xa2,0xe0,0xa9,0xf3,0xed,0x6d,0xb3,0x58,0x58,0xca,0x86,0x1e,0xc0,0xba, +0x63,0x4f,0xf4,0xfe,0x83,0x07,0x81,0x8e,0xfc,0x00,0x40,0x09,0x11,0x5d,0xb8,0xfa,0x99,0x3b,0xe5,0xe9, +0x31,0xdc,0x11,0xc2,0xaa,0xee,0x50,0x09,0xc7,0x0b,0x0d,0x8f,0x61,0xab,0x08,0xbd,0x91,0x95,0x48,0x39, +0xd1,0x50,0x62,0xe0,0x02,0x92,0xe3,0x13,0x92,0x72,0xcf,0xce,0xb3,0x7f,0x7c,0x9c,0x5f,0xe4,0xc5,0xe2, +0x37,0x22,0xf6,0xab,0x4f,0x97,0x57,0x9f,0x7f,0x67,0x24,0x2f,0xf3,0xd2,0x63,0xfb,0xa5,0xc7,0xdf,0x1d, +0x3c,0x79,0xfa,0xec,0xfb,0xe7,0x2f,0xfe,0xfa,0xb7,0x1f,0x5e,0xfe,0xf8,0xea,0xf5,0x7f,0xbd,0x79,0x7b, +0xf8,0xee,0xa7,0xf7,0x3f,0xff,0xf2,0x77,0xf7,0xa5,0xaf,0xec,0x97,0x48,0xee,0xa0,0x33,0xfd,0x9b,0x3f, +0xff,0xe5,0x5b,0xb7,0xd0,0xff,0x6c,0xd7,0xec,0x16,0xd8,0xb2,0x0b,0xfc,0xf3,0x7f,0xe9,0x53,0xcd,0x0f, +0x3e,0xf4,0x77,0x68,0xca,0x26,0xd3,0xe8,0xc8,0x1b,0xdd,0x7d,0xf8,0x68,0x1c,0x0e,0x76,0xd7,0x47,0x47, +0x5e,0x9d,0x1d,0x2e,0x01,0xdf,0x53,0xc4,0xe9,0xa8,0x78,0x34,0x1c,0xed,0xec,0x14,0x41,0xd2,0x8f,0xf3, +0x09,0xeb,0x84,0x38,0x91,0xb4,0x2f,0x97,0x3c,0x6a,0x7e,0x70,0xcf,0x9c,0x6c,0x3b,0x44,0x73,0x6a,0xc8, +0x4f,0x7b,0xc1,0xe4,0x90,0x15,0xd2,0xc7,0xaf,0x5f,0xfc,0x2d,0xfd,0x6c,0x96,0x80,0x33,0xec,0x7b,0xdf, +0x84,0xde,0xff,0xfc,0xaa,0x56,0x92,0x35,0x8f,0xa1,0x45,0x46,0xaf,0x1a,0xfe,0x2e,0x05,0x81,0x73,0x56, +0xe4,0x5f,0x97,0xca,0x49,0xa8,0x76,0x7e,0xad,0xd5,0x18,0xf0,0xce,0x35,0x5e,0xaf,0x35,0xba,0xa9,0x2d, +0x2f,0xce,0x1e,0x5b,0xea,0xa0,0xcb,0xf4,0x78,0x59,0x9c,0x7c,0x14,0x77,0x38,0xae,0x46,0x38,0xd1,0xec, +0xf4,0xb3,0x20,0x03,0x70,0x66,0x38,0x6d,0xae,0x0d,0xdc,0x8a,0x0e,0x58,0x06,0x47,0x5b,0x6e,0xad,0x46, +0x44,0xf5,0x28,0x75,0xde,0x67,0xb0,0x93,0x57,0x25,0x9d,0x0c,0x24,0xcd,0x80,0x77,0x6c,0x6e,0xa8,0xf6, +0x76,0x72,0x37,0x52,0xa1,0xde,0xf5,0xc2,0x3b,0x0e,0x14,0x2a,0x9c,0xa0,0x56,0x17,0x6f,0x58,0xa2,0x8f, +0xf9,0x8a,0xbe,0x9f,0x53,0x8d,0xf2,0x83,0x2d,0xeb,0xc3,0xba,0x1d,0xb3,0x42,0xee,0xa1,0x17,0xdd,0x6e, +0x84,0x97,0xac,0x9a,0xac,0x3d,0x07,0x44,0x16,0x47,0x32,0x1b,0xc3,0xfa,0xa5,0xe0,0xfb,0xac,0xce,0xf1, +0x91,0xf0,0x2c,0x2b,0x2f,0x2e,0x89,0x2d,0xb0,0xf7,0x19,0x78,0x81,0x67,0xb4,0x51,0xdf,0xb0,0xd7,0xe4, +0x28,0x57,0xee,0x92,0xc8,0x21,0xdb,0x30,0xb5,0xd5,0xa5,0x06,0x4f,0x5e,0xfd,0xf8,0x54,0x7c,0xbe,0x18, +0x93,0xc8,0xf2,0x7d,0x44,0xb4,0xe6,0xfe,0x7d,0xc9,0x40,0x6f,0x1e,0x02,0xea,0x6b,0x00,0xce,0x08,0x61, +0x9e,0x8f,0x2b,0x7f,0x88,0x84,0x6b,0x3e,0x3c,0xe5,0xbe,0x50,0x70,0xdf,0x24,0xad,0x50,0x5d,0xe6,0x89, +0x23,0x6e,0xd2,0xfb,0x8e,0xbd,0x43,0x7b,0x0c,0x53,0xa3,0x59,0x33,0x36,0x25,0xf6,0x9e,0xbc,0x7a,0x77, +0xd8,0x3b,0x25,0x56,0xe9,0xbc,0x77,0x01,0xac,0x4e,0x3a,0xbd,0xe9,0xf9,0x05,0x74,0xda,0x74,0x86,0xaf, +0x58,0x75,0x41,0xc3,0xba,0x04,0xa9,0x5e,0x16,0xc4,0x6d,0xcc,0xd2,0x4f,0x24,0x46,0x2c,0x07,0x3d,0x16, +0x9f,0x7b,0xaf,0xfe,0xd6,0xab,0x0a,0xe6,0x32,0xe8,0x44,0x4a,0x07,0x70,0xcf,0x44,0x2e,0x0a,0x8e,0x9e, +0xa9,0x24,0x41,0x9c,0xec,0xd3,0xda,0x75,0xe1,0x3e,0x7c,0xf9,0x31,0x06,0x8f,0x97,0xd2,0x2e,0xb5,0xaf, +0x92,0xc0,0x9e,0xd5,0x77,0x8b,0x33,0x3a,0xbf,0x53,0x8b,0x0a,0x3b,0xbb,0x6c,0x25,0x8f,0xb1,0xcd,0x10, +0x46,0x01,0xe2,0x69,0x59,0x1b,0x3b,0xf3,0xab,0x8c,0x35,0xe7,0xf4,0x0c,0xfc,0x6e,0xcd,0xb2,0x52,0xfb, +0x15,0x4c,0x57,0x22,0x5a,0xab,0xd3,0xb2,0xb8,0x10,0x5d,0x12,0x02,0xa0,0xa0,0xbf,0x56,0x6c,0x0a,0x3c, +0x02,0xb3,0xdf,0xd3,0x47,0xa7,0x65,0x9a,0x7e,0xc0,0x95,0xa9,0xf2,0x85,0x8c,0x6c,0x45,0x95,0x15,0xbd, +0x39,0x26,0x08,0xd5,0x9e,0x66,0x7c,0xc4,0x81,0x45,0x4a,0x3e,0x25,0xd9,0x1c,0x87,0x7d,0x8f,0x91,0x12, +0x11,0x86,0xdb,0x7b,0x75,0xf8,0x78,0xd0,0xa3,0x3d,0xb8,0xcc,0x68,0x95,0x50,0x97,0x31,0x1f,0x49,0xaf, +0xba,0x2c,0x76,0x90,0xf6,0x53,0x29,0xe1,0xf4,0xa7,0xfd,0xe6,0x9a,0xb4,0x95,0x8c,0x0c,0xbb,0xe4,0x18, +0x73,0x2d,0x26,0xdd,0xd5,0xc4,0x2d,0xd3,0xf4,0x02,0x6d,0x3b,0xae,0x55,0x71,0xa7,0xaa,0x52,0x59,0x1f, +0x98,0x43,0x6b,0xb1,0x93,0x34,0x82,0x23,0x74,0x94,0x6b,0x09,0xc7,0x53,0x43,0x4f,0x27,0x26,0x72,0xb6, +0x02,0x71,0x26,0xbc,0x63,0xb9,0x8e,0xd0,0x7f,0xcb,0x81,0x2a,0x63,0xa3,0x8c,0xb0,0xcb,0x89,0x0e,0x14, +0x52,0x61,0x3b,0x7b,0x0e,0x6e,0x08,0xfd,0x74,0xe0,0x45,0xf6,0x4c,0x3c,0x91,0xab,0x02,0xa7,0xa5,0xf0, +0x95,0xfa,0xc0,0x0e,0xbd,0x70,0x86,0x85,0x08,0x81,0x39,0xc3,0x72,0x09,0xa1,0x95,0x60,0x4b,0xb6,0x35, +0xdd,0x56,0xf7,0x68,0x58,0x79,0xc7,0x92,0x54,0x22,0x9a,0x42,0xd1,0x1d,0xc2,0xac,0x2e,0x6b,0x1f,0x3a, +0x3a,0xe2,0x52,0xe7,0x73,0x0c,0x11,0x35,0x9f,0x6a,0x3f,0x87,0x40,0x93,0x93,0xbc,0xb2,0x04,0x2d,0x9a, +0x2d,0x19,0x96,0x53,0xd3,0x9d,0x07,0xe9,0x7d,0xb0,0x24,0x66,0xbc,0xe9,0x43,0x70,0x87,0x4b,0x94,0xda, +0xa2,0x47,0x64,0x1e,0x13,0x4b,0x43,0x2e,0x5f,0xe6,0xe5,0x80,0xa1,0xe5,0xe6,0x18,0x0d,0x21,0x15,0xeb, +0x25,0x67,0x60,0xd5,0x7d,0x46,0xc9,0x0e,0x06,0x08,0x16,0xbb,0x3a,0x77,0xd2,0x4d,0x6f,0xe8,0xb9,0xa4, +0x91,0x1c,0xa9,0x8d,0xd2,0x15,0x0b,0x61,0xb4,0xd0,0xd2,0x06,0x68,0x9e,0xe5,0xaa,0x8d,0x59,0xe6,0x99, +0x8a,0x1d,0xff,0x5a,0x9d,0x7f,0xf5,0x80,0xb7,0x44,0xc2,0x78,0x98,0x77,0xac,0xc2,0x8a,0xac,0x5f,0x6b, +0x70,0x1f,0x35,0xc8,0x17,0xc9,0x55,0x04,0x75,0x49,0x95,0xcc,0xe1,0xc8,0xcd,0xfe,0xbe,0x62,0x1c,0x81, +0xb3,0xb4,0xb3,0xdf,0xb1,0xda,0xb5,0x3c,0x66,0x6f,0xfb,0xaf,0xe0,0xec,0xa6,0x1f,0xd4,0xc7,0x6e,0x43, +0x5e,0xde,0xde,0xb6,0x4e,0xb4,0x9a,0xef,0x73,0x4f,0x5f,0xde,0x43,0x4a,0xc5,0x2b,0x3a,0x21,0x3a,0x53, +0x94,0xfc,0xf5,0x68,0xa8,0xbf,0xd9,0xa4,0x9e,0x6f,0x41,0xf7,0xb4,0xe6,0x97,0x49,0x86,0xc8,0x5b,0x24, +0xf2,0xb0,0x9a,0xb8,0xf7,0x39,0xad,0x42,0x68,0x95,0x41,0x52,0x2e,0x93,0xbc,0x62,0x92,0xc2,0xa4,0xe5, +0x9c,0x36,0x1b,0x8b,0xd7,0x63,0x6a,0x38,0x6c,0x0f,0xaa,0x9f,0xbe,0x2d,0xf9,0xcf,0x0a,0xfb,0x44,0x47, +0x38,0xa2,0xd3,0xcc,0x30,0xdd,0x40,0xd6,0x25,0x59,0xd0,0x16,0x83,0xa7,0x07,0x86,0x57,0xd0,0x3e,0x64, +0x35,0xa3,0x50,0x85,0xd7,0x37,0x8d,0x05,0xeb,0x8c,0x0a,0x9e,0x60,0x0f,0xd4,0x6c,0x72,0x27,0xfd,0x5c, +0xaf,0xf9,0x53,0xa9,0x20,0x2d,0x78,0x8f,0x69,0xa1,0xa3,0xc3,0x50,0xa1,0x3a,0x3d,0x57,0xca,0x78,0x16, +0x1c,0xf9,0xb0,0x18,0x6b,0x3d,0x54,0xdd,0xd3,0x0a,0xd9,0x3e,0x50,0xcc,0x0b,0xdc,0x76,0xa8,0xb3,0xfe, +0xbf,0xa9,0x29,0x33,0x92,0x73,0xa4,0x42,0x21,0xea,0x68,0xd3,0x89,0xe8,0x7a,0x7b,0xef,0x5f,0x3c,0x7b, +0x41,0xfb,0x90,0xc8,0x6d,0xf9,0x71,0x53,0x0b,0xd5,0xcb,0x5e,0xc7,0x4a,0x6d,0xad,0xd0,0xb7,0xc9,0xa7, +0xf4,0x96,0xd5,0xe9,0x6f,0x58,0x9e,0xf4,0xfa,0x60,0x71,0x59,0x3e,0xbd,0x5a,0x88,0x41,0x41,0xd8,0xa0, +0x21,0x3f,0xb0,0x0f,0x3c,0x2a,0xf3,0x06,0x27,0xb1,0xa5,0x17,0x65,0x1e,0xd3,0x95,0x61,0x79,0x83,0x6d, +0x78,0xf3,0xe9,0xa6,0xf2,0xf5,0x1e,0x88,0x87,0x61,0x37,0x0f,0xc5,0x5d,0x1d,0x19,0xbe,0xec,0xd1,0x70, +0xec,0xb7,0xf7,0xc9,0x2f,0xd6,0x89,0x6a,0x2d,0x02,0x21,0xb3,0x38,0xf0,0x78,0xf8,0xd5,0x3e,0xa2,0x32, +0x55,0xf2,0x31,0xed,0xa5,0xa7,0xa7,0xd4,0xf1,0xd6,0xf6,0xa1,0x9f,0x74,0x78,0xe6,0xc5,0xe5,0x18,0x69, +0xe7,0xb0,0x71,0xd4,0x1a,0x85,0xb6,0x20,0xb2,0xd9,0xc2,0x3f,0xd2,0x16,0xbd,0x08,0xf0,0x51,0x6a,0xc3, +0xfb,0xec,0x59,0xf6,0xdf,0xd1,0x20,0xbd,0x58,0xeb,0x36,0x61,0x83,0x71,0xb0,0xf2,0x97,0x5a,0x64,0x4e, +0x02,0x3e,0x6e,0x98,0x05,0x61,0x72,0xd1,0x03,0x80,0x25,0x71,0x27,0xaa,0x55,0x7f,0xa8,0x19,0xbc,0xab, +0x91,0xc2,0xad,0xc9,0x93,0xdf,0x84,0x7b,0x38,0x9c,0x1a,0x9b,0xfd,0x3b,0xb6,0xb5,0xd5,0xe6,0x4d,0x63, +0x8a,0xaf,0x11,0x14,0xbf,0x23,0xb9,0xdf,0xf7,0x00,0x4c,0xc9,0x64,0x1c,0xd0,0x89,0xcb,0xf2,0x24,0xe6, +0xa3,0x5d,0xa4,0x01,0x39,0xd9,0xed,0x8a,0x8b,0x1c,0x2c,0xef,0xbb,0x85,0x66,0xc6,0x65,0xfb,0xb2,0x5d, +0x98,0xb9,0x33,0x4e,0x9f,0xd1,0xb1,0x99,0xab,0xf5,0x7a,0xc8,0x76,0x7e,0xc7,0x25,0x4d,0x69,0xdf,0xf2, +0x18,0xc1,0x0f,0x23,0x2b,0x7f,0x00,0x49,0xba,0xc2,0x50,0x36,0xc7,0x17,0x58,0xbf,0x59,0xb1,0x5a,0xd2, +0x48,0xca,0xd1,0x67,0x0e,0x71,0x04,0xb6,0x5d,0x96,0x59,0x45,0xe7,0xdb,0xa0,0x77,0x0b,0xd9,0x02,0xc8, +0x9b,0xa4,0xd7,0x32,0x75,0x8c,0x3d,0x95,0x01,0xc6,0x6d,0x56,0xd1,0x14,0x04,0xb4,0x93,0x9b,0x0e,0x9f, +0xea,0x0a,0x41,0x55,0x82,0x9f,0xcb,0xbf,0x13,0xbf,0x3c,0xb6,0x48,0xb5,0xa7,0x5a,0x81,0xb4,0x1d,0x91, +0xea,0xa1,0xb0,0x16,0x96,0x81,0x95,0xe6,0xb5,0x50,0x0c,0x34,0x5c,0x5c,0x91,0x2d,0xa6,0x49,0xce,0xb9, +0x12,0x33,0xc5,0xb5,0x31,0xdc,0xf8,0x82,0xa8,0xba,0xeb,0x2e,0x8c,0x9b,0x1c,0x23,0x89,0xc0,0x24,0x2a, +0xe4,0x77,0x81,0x5e,0xbb,0x40,0xdc,0x0d,0x1d,0x74,0x85,0xb8,0x10,0xf4,0x8e,0x11,0x57,0x4d,0x3c,0x2b, +0x1d,0x7c,0x00,0x46,0x17,0xb6,0xc4,0x2c,0x15,0x86,0xd1,0xf5,0x9b,0x8d,0x12,0xc3,0xd8,0x67,0x26,0x45, +0xfe,0xa6,0xa3,0xf6,0xcb,0xb3,0x43,0x5c,0xb5,0x54,0xe4,0xcc,0x51,0x33,0xd5,0xb0,0x3d,0xa4,0xaa,0xfc, +0x07,0xde,0x1d,0x5e,0xe7,0x59,0xe8,0xd0,0x77,0xc9,0x0e,0xeb,0x78,0x5b,0xb8,0x33,0xc4,0x8a,0xaf,0xeb, +0x6c,0x46,0x82,0xb5,0x44,0xf1,0x45,0x15,0x14,0x8e,0x37,0xcd,0x1e,0xbf,0x3d,0x49,0x2c,0x2f,0x02,0x0c, +0xd2,0x92,0xee,0xbc,0xe1,0x79,0xd7,0x06,0x1e,0xf8,0xbd,0xd3,0x93,0x59,0xf6,0x69,0x80,0x87,0xcc,0x36, +0xc1,0xdf,0x53,0x33,0x75,0xa1,0xfd,0x69,0x94,0x90,0x0e,0xb8,0x1f,0x7a,0xfe,0x58,0x1d,0x2c,0xce,0xc7, +0xce,0x13,0xb9,0x6b,0x7f,0xca,0xae,0xed,0x3c,0x91,0xad,0xdc,0x55,0xe3,0x93,0xf4,0x78,0x75,0x46,0xac, +0xde,0x45,0x92,0xcf,0x36,0x89,0x60,0xb3,0xe3,0xb3,0x93,0x8b,0x19,0x0e,0x15,0x36,0x89,0x39,0x40,0x91, +0xf2,0xb3,0xf9,0x45,0x79,0x83,0xbe,0x77,0x22,0x35,0x43,0x25,0xd1,0xf9,0x61,0x60,0xba,0xb9,0x9d,0xb9, +0x4c,0x8f,0x61,0x33,0x55,0x96,0x13,0xcf,0x73,0xdf,0x93,0x24,0x3f,0x2f,0xd3,0x7c,0xa5,0x98,0x64,0x9a, +0x22,0xc6,0x81,0x70,0xd2,0xff,0x78,0x62,0xb0,0x95,0x11,0xff,0x8a,0xe1,0x96,0xbf,0x54,0xe0,0x87,0x2c, +0xff,0xb8,0xa9,0x90,0xa5,0x4b,0xa1,0xa9,0x7a,0x9d,0xe4,0xe9,0x5c,0xbe,0x3e,0x58,0xe0,0xba,0x96,0x48, +0x9c,0x06,0x99,0x1c,0x40,0xa6,0x1e,0x92,0xee,0xad,0xe6,0x73,0x69,0xaf,0xef,0xea,0x4a,0x24,0xf4,0x48, +0xaf,0x09,0x8b,0x9f,0xe5,0x38,0x06,0x56,0xc5,0x82,0x7f,0x77,0xd5,0xd3,0x52,0x51,0xd5,0xf7,0x7a,0x8f, +0x88,0x11,0xfa,0x64,0xe0,0x6f,0x99,0xa0,0xf9,0x09,0xf1,0xbb,0xca,0x91,0x4b,0x95,0xcc,0xa9,0xe4,0x60, +0xb1,0x73,0xc6,0x12,0xb5,0xd1,0xb0,0x95,0x96,0x71,0x2d,0xa3,0x92,0x85,0x46,0x31,0x60,0x83,0x18,0x89, +0xb4,0xd4,0xd3,0x30,0xd3,0x4b,0x4c,0x54,0x9b,0x3d,0xaa,0xad,0xac,0xf9,0x10,0x7e,0xae,0xd4,0xef,0x3a, +0xd7,0x5e,0xf8,0xf5,0x90,0x8a,0x88,0x86,0x6c,0x52,0x22,0x0b,0xb7,0x92,0x2f,0x0f,0x0b,0x69,0x36,0xdc, +0x3b,0x1b,0xfd,0x34,0x6a,0xe6,0xff,0x33,0x7d,0x45,0xbb,0xc2,0xe5,0xa6,0x2e,0x2f,0x55,0x97,0x5d,0xbf, +0x03,0xc9,0x62,0x83,0x9c,0x45,0xf4,0x11,0xa3,0x5e,0xca,0x44,0xd5,0xc9,0x4a,0x26,0xbd,0xdb,0xcf,0x33, +0x18,0xfc,0x75,0x2d,0x99,0x16,0xa4,0xcd,0x90,0x2d,0x6f,0x1b,0x32,0xaa,0x70,0x76,0x45,0x7b,0xeb,0xb6, +0x31,0x9b,0xa5,0xf3,0x1f,0x85,0xbb,0x6d,0x69,0xb2,0xc5,0x93,0x61,0x89,0x95,0x8a,0x21,0x18,0xdd,0xa9, +0xa3,0xa9,0xec,0xd5,0x75,0x41,0x04,0xf7,0x8f,0x57,0xe1,0x0d,0x2e,0xf8,0xe0,0x4a,0xf5,0x76,0xb1,0xab, +0x22,0x29,0xb3,0x5d,0x93,0xf7,0x95,0x62,0xbf,0x97,0x1d,0xb3,0x96,0x3e,0x8a,0x49,0x76,0x54,0x2f,0x2d, +0x1b,0x66,0xbb,0x97,0xc9,0x95,0x32,0x08,0xc2,0xf5,0xc0,0xd4,0x52,0x42,0xe3,0xc8,0xf1,0x67,0x0c,0x33, +0x2d,0x07,0xef,0xfe,0x70,0xd8,0xdf,0x1b,0xde,0x4b,0xc5,0x0e,0xaa,0x3f,0x09,0xaf,0x10,0xb0,0x5a,0x38, +0xae,0x10,0xbf,0x43,0xbd,0xe1,0x10,0x81,0x3b,0xc8,0x3e,0xa3,0x67,0xdb,0xd0,0x9f,0x44,0x85,0xa7,0xe8, +0xe4,0xb0,0x5f,0x50,0x6d,0xd6,0x53,0x06,0x37,0xaf,0x7e,0xff,0x06,0x13,0x6b,0xea,0x18,0x08,0x68,0xf4, +0x0e,0x4d,0xd0,0x8e,0x6a,0x8d,0x27,0x01,0xa5,0x7c,0x70,0x22,0x95,0xb2,0x9e,0xb9,0xce,0xf7,0x30,0xcc, +0xdd,0x2f,0x5a,0x13,0x86,0xd8,0x1e,0x6b,0x71,0xe8,0x21,0x42,0xcc,0x8f,0xb3,0x44,0xde,0x62,0xc0,0x56, +0xf3,0xf4,0x3f,0x59,0x23,0xff,0x42,0x1d,0xbc,0xf4,0x6f,0x5f,0x27,0xa6,0x36,0xc3,0x3a,0xc9,0xc9,0x29, +0x77,0xbb,0x96,0x4a,0xc5,0x4b,0x45,0xbf,0x77,0xfb,0x5a,0xa9,0xeb,0xe9,0x58,0x2c,0xb9,0x5e,0x2c,0x55, +0x98,0x38,0x5f,0xed,0x5e,0x2d,0x20,0x26,0x89,0x59,0x2d,0x2a,0x63,0x5f,0x2a,0x10,0x61,0xca,0x6e,0x37, +0xf6,0x96,0x62,0xec,0x89,0xbc,0x39,0xfb,0x09,0x8f,0x34,0xad,0x2a,0xfb,0x9e,0x1c,0x8b,0x9d,0x75,0x0b, +0x54,0x64,0x9c,0xb4,0x97,0x62,0xa1,0x97,0xc3,0x57,0xc6,0x4c,0xf8,0x84,0xc7,0x43,0xa9,0xe7,0x32,0xac, +0x99,0xe2,0xdf,0x5d,0xaf,0x48,0xfb,0xab,0xd6,0x6b,0xd1,0xb5,0x5e,0xf5,0x80,0xb4,0x16,0xac,0x1e,0xfd, +0xce,0x37,0x79,0xc5,0x76,0xbf,0x6a,0xaf,0x9f,0x76,0xcb,0x15,0xa7,0x21,0xb6,0x4d,0x4b,0x7c,0xcd,0x66, +0xb5,0xc5,0xb3,0xef,0x57,0x7d,0x92,0xbf,0x06,0x39,0x18,0x03,0x5d,0xe0,0xb4,0x28,0x5b,0x25,0x6e,0xa9, +0x5d,0xd9,0x61,0x3b,0xbe,0xa0,0x2d,0xb4,0xb7,0x7f,0xa5,0x51,0x8a,0xd8,0x73,0x6b,0xef,0x99,0x25,0xe7, +0x75,0x34,0x81,0x43,0xdd,0xef,0x6a,0x0b,0xf7,0x26,0x09,0xbd,0xa8,0x77,0x08,0xdc,0x3b,0xf9,0xc0,0x5f, +0xba,0x1b,0x84,0xd9,0xd2,0xae,0xdd,0xb1,0x45,0xfb,0x83,0xce,0x9d,0xda,0x53,0xc8,0x94,0xd6,0x2b,0xaf, +0x3e,0x09,0x95,0x0b,0x91,0xd6,0xf5,0xb1,0x27,0x91,0x39,0x37,0x73,0xe7,0x18,0x1c,0x60,0x84,0x0a,0xed, +0x3e,0xc5,0x27,0x57,0x54,0xa7,0x9d,0x2f,0x5a,0xdd,0x48,0x81,0xe8,0x61,0xb3,0x33,0x61,0xe2,0x8c,0xb5, +0xb0,0xd5,0xfd,0x44,0xad,0x8e,0x73,0x71,0x27,0x6b,0xcb,0x51,0xe6,0x50,0xbd,0x63,0x44,0x29,0x97,0x4b, +0x62,0x17,0x1e,0xf4,0xb2,0x7e,0xdc,0xb0,0xf3,0x8f,0x0c,0x8f,0x5f,0x89,0x7d,0x56,0x9f,0xea,0x8a,0x20, +0x59,0xcd,0x97,0x19,0x36,0x6d,0x73,0x27,0x56,0x86,0x5c,0xb8,0x45,0xb1,0x20,0x0c,0xb2,0xa5,0x94,0xfd, +0x97,0xfc,0x81,0x12,0xcd,0xd5,0xd6,0xdc,0x53,0xe2,0xb8,0x06,0x09,0xfb,0x73,0xa0,0x46,0x37,0xb5,0xad, +0x6d,0x5d,0x0b,0x68,0xd3,0x66,0x97,0x2e,0x89,0x01,0x1b,0xca,0x5b,0xfb,0x2e,0xe6,0xa0,0xab,0x5c,0x10, +0xba,0xc4,0xdc,0xb7,0x52,0xd2,0x7a,0x32,0x5c,0xef,0x4b,0xf4,0xb5,0xf4,0xea,0xa2,0xc9,0x29,0xa2,0xfd, +0xef,0x3e,0xe4,0x41,0x85,0xa2,0x25,0xf6,0xee,0xf6,0xbb,0x6a,0xef,0xdf,0xf5,0x7a,0x9c,0x53,0x32,0x56, +0x75,0x79,0x8f,0x1e,0xc2,0x15,0xce,0xbd,0xf9,0xe1,0x83,0x64,0x15,0x2a,0xe9,0xe9,0x2e,0x1e,0xd3,0x1f, +0xae,0xfa,0xd1,0x5d,0x44,0x76,0xb6,0xb7,0x46,0x6d,0xd7,0x6c,0xec,0x0f,0x79,0xb0,0x79,0x93,0x5c,0x37, +0x76,0x88,0x94,0xef,0xa6,0xd0,0xc6,0x04,0x6d,0x31,0x8d,0x08,0x6d,0x4f,0xa6,0xec,0xfe,0xe3,0xee,0x16, +0xb4,0x7a,0x70,0xb6,0x40,0xae,0xb7,0x52,0xed,0x99,0x82,0x7f,0x1b,0xef,0x3f,0xde,0x4f,0xa5,0xb3,0x9f, +0x1c,0x6f,0x33,0xe5,0xd6,0x01,0x07,0x22,0xc5,0x04,0x16,0xc8,0xc3,0x5e,0x75,0x96,0x64,0xb7,0x0f,0xa7, +0xe8,0x02,0x77,0x5a,0xaa,0x41,0xe5,0x16,0xd2,0x2e,0xf9,0xe1,0x62,0xd9,0x2a,0x6c,0x3c,0x44,0x9c,0xe2, +0x9c,0xbe,0xaf,0xdd,0x08,0xdb,0x9d,0xa4,0x5d,0xfe,0x43,0x96,0x7f,0xea,0x6c,0xb8,0xb8,0xa6,0x38,0x2f, +0x14,0xf9,0x07,0xa8,0x71,0x11,0x04,0xde,0xdc,0x7b,0x5a,0xbe,0xb5,0xd9,0x5e,0x76,0x7f,0xd7,0x3c,0x79, +0x83,0x46,0x1a,0x5e,0xfd,0x16,0x3a,0x69,0x2d,0x81,0x9a,0xb5,0xff,0xcf,0x17,0x80,0x92,0x1a,0xca,0x4e, +0xa9,0xa1,0xe8,0x94,0x1a,0x8a,0x8d,0x52,0x43,0xbd,0x84,0xa8,0x2b,0xec,0xfe,0x4f,0x3d,0xb7,0x85,0x87, +0xb2,0x49,0x69,0xdd,0xc1,0xab,0xc7,0xa1,0x3d,0x76,0x07,0xc5,0xbc,0x28,0xdf,0x7c,0xff,0x9d,0xc3,0xa7, +0x9f,0xe0,0x66,0xf7,0xa0,0xa5,0x66,0xd0,0xaa,0xba,0x28,0xbd,0xdf,0xcd,0x32,0x61,0x60,0xab,0x7a,0x60, +0x72,0xbb,0x55,0xf2,0x11,0xaf,0xb5,0xee,0xf8,0x3e,0x13,0xb6,0xcb,0xf3,0x34,0x9d,0x73,0x03,0x5f,0x13, +0xf3,0x40,0x24,0xe6,0x7a,0x39,0xcf,0x18,0xde,0xd9,0xbb,0x2c,0xcf,0x8e,0x17,0x9e,0x02,0x66,0x91,0xbb, +0x2b,0x1b,0x64,0xa4,0xc9,0x9a,0xb6,0xaa,0xf2,0xb4,0x3f,0x0f,0xb2,0x31,0xc2,0x9e,0x35,0xb2,0x35,0x17, +0xdc,0x06,0x2f,0xbc,0xa6,0xaf,0x44,0x9c,0xcc,0x90,0xc5,0xf4,0xe3,0x12,0x3c,0x5d,0x2e,0xe6,0xaf,0xce, +0x63,0xab,0xf9,0x59,0x95,0x76,0xf1,0x36,0x0e,0x79,0xc9,0x59,0xcc,0x2b,0x35,0xc5,0xa9,0xab,0x41,0xd1, +0xed,0xa8,0xbf,0x2c,0xcd,0x69,0x4e,0xe2,0xc1,0xa1,0x3b,0x7f,0x27,0x55,0x73,0xf2,0x68,0xde,0xd6,0x6b, +0x9f,0x97,0x39,0x22,0x15,0x96,0x9d,0xf3,0xa5,0x27,0xca,0x99,0x26,0xd8,0x43,0xc2,0xfa,0xc5,0xff,0x53, +0x5d,0x57,0x5f,0x0b,0xaf,0xe5,0x42,0xfa,0x1d,0x74,0x2c,0xde,0xe7,0x6f,0x7f,0xfa,0x8f,0x16,0x2f,0xbd, +0xff,0x7f,0x7a,0xf1,0x9e,0x2f,0x3f,0xfd,0xc7,0x8b,0x97,0x7f,0xb3,0x2e,0xce,0x50,0x90,0xfb,0xdf,0x90, +0xdc,0x3b,0x38,0x07,0x05,0xe9,0xd3,0xb2,0xae,0x49,0xcb,0xde,0x10,0x0f,0x96,0x9b,0x1e,0x7c,0xc2,0x83, +0xce,0xf5,0x4f,0x0d,0x85,0xd2,0xae,0xbd,0xe0,0x68,0xf6,0xf3,0x74,0xde,0xa0,0xb7,0x27,0xea,0x6e,0x63, +0xec,0x1f,0x0d,0x25,0x4f,0x94,0x4d,0x6b,0x3b,0x27,0xe9,0x11,0xb2,0x38,0xa4,0x23,0x80,0x42,0xd1,0xdf, +0x3f,0xdd,0x0f,0x93,0x47,0xc3,0xed,0x79,0x56,0xbd,0x3f,0xcf,0x80,0x1b,0xe6,0x27,0x3b,0x3b,0xe1,0x9c, +0x57,0xfb,0xf6,0x36,0x5d,0x07,0x81,0x52,0xce,0xa7,0x3b,0x49,0xe8,0xe0,0x0c,0x76,0x39,0xf2,0x29,0x6e, +0xb1,0x6a,0x2c,0xd0,0xfc,0xcb,0x0b,0x34,0xaf,0x9d,0xf3,0x9d,0x31,0x92,0xde,0x6a,0xd5,0xb0,0x18,0xc2, +0x31,0x58,0x61,0x06,0xbb,0x9a,0x3d,0x22,0x9b,0x0f,0x94,0x0c,0x29,0xed,0x1f,0x26,0xa3,0x4c,0x73,0xde, +0x27,0x71,0xd1,0xcf,0xc2,0x39,0xbd,0xbd,0x6c,0x73,0x14,0xb2,0x56,0xbc,0x70,0xee,0xd2,0xfb,0x93,0x7a, +0x19,0x6e,0x2e,0xe2,0xec,0xda,0xb2,0x66,0x82,0xb9,0xa8,0x68,0xf3,0xd4,0xac,0xe2,0x54,0xa2,0x2a,0xe7, +0xce,0x7a,0x57,0x53,0xeb,0x49,0xaa,0x49,0x69,0x76,0xca,0xcd,0xb6,0xb9,0x61,0x11,0x7a,0xff,0x25,0x6e, +0x38,0xd3,0xdc,0xb0,0xf5,0xf5,0xcc,0x61,0x87,0x2d,0x27,0x11,0xe5,0x6c,0x05,0x48,0xa7,0x0f,0xcc,0x52, +0xd6,0x47,0x31,0x74,0xd2,0xfa,0xf6,0x88,0x0b,0x7c,0xa2,0xcd,0x06,0x23,0x08,0xca,0x08,0x84,0xc3,0xff, +0x5b,0xdd,0xb3,0x28,0xb7,0x6d,0x2b,0xfb,0x2b,0x36,0xcf,0x89,0x4d,0x5a,0x14,0x2d,0xb9,0x71,0xda,0x52, +0xa6,0x35,0x8e,0x9b,0x93,0x64,0xa6,0x4d,0x52,0xdb,0x6d,0x6e,0xc7,0xf5,0xf5,0x50,0x16,0x2d,0xb1,0x51, +0x44,0x1d,0x92,0x92,0x93,0xe3,0xfa,0xdf,0xef,0xee,0xe2,0x41,0x00,0x04,0xf5,0x70,0x73,0x7a,0xdb,0xce, +0xa4,0x16,0x81,0x05,0xb0,0xbb,0x78,0x2f,0xf6,0xd1,0xa2,0x90,0xe4,0x81,0x92,0x69,0x58,0x63,0x94,0x69, +0x39,0x49,0x54,0x6b,0x0c,0x47,0x68,0x72,0x57,0xb5,0x24,0x81,0x48,0x83,0xea,0xda,0x2c,0x88,0x98,0x7c, +0x53,0xa3,0x0a,0xa2,0xf2,0x81,0x39,0xc1,0x0d,0x3e,0x24,0x74,0x6f,0x0b,0x80,0x67,0x2f,0x4c,0xf7,0x0a, +0xcc,0xbb,0x64,0x4c,0x06,0x0c,0xf4,0x58,0x76,0x97,0x0c,0x48,0x95,0x16,0x5f,0xc7,0xd0,0x43,0x04,0x57, +0x81,0x20,0x31,0x43,0xac,0x4b,0x95,0xb9,0x24,0x65,0xbb,0x72,0x12,0x89,0xd9,0x33,0xa9,0x34,0x21,0x00, +0x64,0x3e,0x50,0x12,0x0b,0xfb,0xc8,0x48,0x53,0x1d,0xa2,0x17,0x8e,0x2c,0x1e,0x32,0x37,0x65,0x0c,0x48, +0x79,0x67,0xa4,0x17,0x45,0x42,0x0f,0xf6,0x42,0xad,0xb0,0x7e,0x7a,0x60,0xd6,0xe2,0xeb,0xaf,0x86,0x18, +0x4e,0x9c,0xef,0xbf,0x31,0x5a,0xf7,0x53,0x13,0xb0,0xdc,0xb0,0x26,0xee,0xf5,0xd5,0x9d,0xcf,0xf3,0x58, +0x44,0x4b,0xf4,0x49,0xe7,0xbe,0x52,0xee,0xcd,0x83,0x71,0x94,0xc1,0x7d,0x76,0x1f,0xed,0x4b,0xf2,0xa0, +0x80,0x8f,0xee,0xd5,0x3e,0x2c,0x6e,0xf0,0xb1,0x80,0x8f,0x03,0xf6,0xf1,0x08,0x14,0xd9,0x2a,0x8b,0xa6, +0xb3,0x88,0x9f,0x72,0x00,0x50,0x39,0x51,0x3b,0x1b,0xe0,0xd2,0x12,0x57,0x2c,0xa1,0xb9,0xab,0x01,0xf0, +0x53,0x3f,0x11,0x2d,0xa7,0xd6,0x36,0xa3,0xfc,0x56,0xee,0x7d,0x66,0x1b,0x72,0x03,0xb6,0xd5,0x2f,0x33, +0xd5,0xba,0xc5,0xe2,0x29,0xc6,0x94,0xf8,0x8e,0xa0,0xb4,0xc3,0x96,0x52,0x91,0x25,0xcf,0x11,0x7c,0x89, +0x25,0x10,0xe5,0xe4,0xa8,0x60,0x57,0xc9,0x69,0xeb,0xa3,0x49,0xc9,0xac,0x36,0xa6,0x98,0x0e,0xb5,0x6c, +0x90,0xa7,0xb7,0xa9,0x52,0x97,0xf2,0x42,0xc6,0xf1,0xb0,0xbf,0x8e,0x29,0x4f,0x2b,0xda,0xa3,0x1a,0x7b, +0x21,0xc1,0x79,0x2a,0x5e,0xbf,0x58,0x35,0xc6,0x83,0x18,0x7f,0x5c,0x73,0x54,0xb9,0xa1,0x15,0x77,0x99, +0x6b,0x45,0x5e,0xca,0xb4,0x88,0x00,0x9a,0x14,0x78,0x2f,0x39,0xa7,0x57,0x41,0x85,0x2a,0xf5,0xb6,0x62, +0xb6,0x52,0xbb,0xb6,0xf2,0xae,0x12,0x1a,0xf8,0x75,0xbc,0x6a,0xcf,0x3e,0xb1,0xaf,0x40,0x57,0xbf,0xab, +0x5d,0x46,0x54,0x58,0x5d,0x8c,0x9a,0x2a,0xd5,0xdf,0x58,0x62,0xdf,0x28,0xa5,0x7f,0x1b,0x0d,0x48,0xb3, +0x80,0xf5,0x50,0x56,0xc0,0x95,0x0f,0x4b,0x9d,0x8f,0xc0,0xda,0x28,0x66,0x24,0x18,0x6d,0xf0,0xa7,0xf5, +0x7a,0xe5,0xf6,0x07,0xf8,0xf8,0xca,0x13,0xcb,0x33,0x3e,0x49,0x9a,0x93,0x52,0xbe,0x54,0xf2,0x3d,0x0f, +0x35,0x05,0xe8,0x99,0x3e,0xf6,0xaa,0x19,0x5a,0x41,0x49,0x4f,0x20,0xae,0x9a,0x8c,0x3a,0xad,0x2c,0x87, +0xf9,0x99,0x68,0x6b,0x65,0x98,0xcf,0x09,0xd7,0x13,0x62,0x62,0x45,0x95,0xfe,0x67,0xe6,0xc8,0x99,0x51, +0x96,0xa2,0x2a,0x4a,0xaa,0x28,0x57,0xb4,0xbf,0x66,0xdb,0x0c,0x7a,0x58,0x14,0xea,0xb8,0x90,0xd6,0x53, +0x89,0x66,0x2f,0x39,0x38,0xaa,0xdb,0x4e,0x0b,0xcf,0x1c,0x28,0xe9,0x81,0x1b,0xf8,0x8c,0xd9,0x7b,0xa4, +0xd3,0x71,0x92,0xa7,0xa8,0x12,0x45,0x63,0x8a,0x14,0xbc,0xd2,0x19,0x5f,0xa5,0xd9,0x81,0x45,0xb7,0x67, +0xa4,0x67,0x39,0x26,0xd8,0xe4,0x12,0xa4,0xde,0x8d,0x30,0x7e,0xca,0x93,0x5b,0xa8,0x12,0xe3,0x9e,0xc0, +0xe2,0x72,0x23,0x84,0xab,0x5a,0x66,0x99,0x4c,0xa6,0x49,0x19,0x32,0x18,0x6a,0x13,0x4d,0xbb,0x6b,0x53, +0x15,0x12,0x23,0x3e,0x71,0xa4,0x76,0xae,0x58,0x41,0x64,0x82,0x39,0x87,0x99,0xd5,0x0b,0x9f,0xad,0x1c, +0x38,0x8e,0xe2,0xbe,0x73,0xfa,0xf6,0xcd,0x9b,0x17,0xa7,0x17,0x2f,0xbe,0x73,0x42,0xe7,0xcd,0xdb,0x8b, +0xad,0xea,0x1b,0xca,0x4c,0xcb,0x99,0xa5,0xc8,0xf9,0x2f,0x6f,0x4e,0x77,0x05,0x3c,0xff,0x40,0xef,0x4d, +0x33,0x74,0xd5,0xc5,0xd9,0x13,0x8f,0x30,0x24,0x37,0x45,0x34,0x33,0x50,0xf1,0x87,0xd1,0xe4,0xc9,0xb3, +0x4e,0x4f,0x49,0x9f,0x70,0x73,0x44,0x82,0x9f,0x2f,0xcf,0x9e,0x41,0xf6,0xc1,0x53,0x3d,0xfb,0xe0,0xa9, +0xcc,0x1e,0x47,0x93,0x5e,0x1c,0x8d,0x5b,0xce,0x70,0xab,0x32,0x6b,0x9c,0x91,0x9d,0xe3,0x58,0x49,0x99, +0x53,0xca,0x47,0x25,0x65,0x48,0x29,0x85,0xf3,0x80,0xb5,0x8c,0xfc,0x5b,0xff,0xa3,0xa9,0x04,0x20,0x7b, +0xb7,0xf7,0x51,0x31,0x1a,0x74,0x35,0x9b,0xad,0x8f,0xba,0xc1,0xd6,0x47,0x53,0x34,0x1c,0x7b,0xc2,0x56, +0xcb,0x06,0x8c,0x7b,0x1b,0xce,0xb9,0xd0,0x1d,0xc9,0xcc,0x59,0x4e,0x46,0x5c,0x0e,0xdc,0x91,0xaa,0x34, +0x8c,0x84,0xc0,0x12,0x59,0xa1,0x51,0x2b,0x6e,0xdd,0x7a,0x7c,0x92,0x2c,0x9a,0x46,0x65,0x6f,0xa1,0xe2, +0x3d,0x8a,0x16,0x96,0x26,0x16,0xf5,0x26,0x16,0x6c,0x5b,0xe5,0x6d,0x50,0x13,0x77,0x91,0x29,0xd0,0xaa, +0x1a,0xb9,0x53,0x1a,0xb9,0xe3,0xdb,0x35,0x29,0xc9,0xdf,0x2b,0xf2,0xfc,0x98,0x5d,0x01,0x28,0x18,0x6a, +0xec,0x99,0xa2,0x3a,0x84,0xd9,0xbd,0xba,0xa4,0x38,0x34,0xbb,0xf4,0x82,0x6d,0x7b,0x2d,0x88,0x2f,0xa7, +0x57,0x5c,0xfd,0x5e,0xa9,0x8b,0x26,0xe6,0xe7,0x08,0x33,0xfd,0x41,0xa4,0x3e,0xb2,0xdd,0x93,0x42,0xf6, +0x3d,0x7f,0xae,0x0a,0x3f,0x8b,0x87,0x2b,0xf4,0x29,0xab,0x9e,0x59,0x3f,0x5b,0xce,0xac,0xf2,0xa0,0xfd, +0xf9,0x32,0xb9,0x32,0x6d,0x9c,0x49,0x89,0x19,0x05,0x79,0x03,0xcd,0xce,0x59,0x67,0x4f,0x05,0xc2,0xc8, +0xe0,0x57,0x80,0x52,0xb9,0x46,0x9b,0xf2,0xed,0xc6,0xb2,0x92,0x05,0x25,0x5d,0x4f,0xad,0x2c,0xf8,0xc0, +0x58,0x70,0x1a,0xa9,0xef,0xd1,0x1a,0x9d,0x1f,0xec,0x74,0x36,0x11,0x77,0xca,0x88,0xfb,0x70,0xc9,0x9c, +0x0c,0x56,0x5d,0xaa,0x88,0x20,0xf5,0x6e,0x25,0x3c,0x2e,0x18,0x1e,0x67,0xd1,0x05,0x73,0xa2,0x8a,0x8e, +0xe7,0x3e,0x45,0xa8,0x06,0x77,0xd6,0xbf,0x60,0x8a,0x6e,0xad,0x8b,0x60,0x0e,0x35,0x14,0xa1,0x61,0x7e, +0x7f,0xe6,0xf9,0x27,0xe6,0x24,0x94,0x20,0xf5,0xf1,0xd1,0x3b,0x21,0x04,0x3f,0x19,0x12,0xc4,0x93,0x4a, +0x9c,0x2f,0x7e,0xf0,0x83,0xe2,0x85,0x26,0x53,0x7c,0xe0,0x24,0x21,0xd2,0xe7,0x51,0x2c,0x85,0x27,0xea, +0x95,0xff,0xbc,0x4e,0xdf,0x3b,0xa2,0x4f,0x0e,0x09,0x7e,0x09,0x65,0xb8,0x11,0x6a,0xc2,0x3a,0xea,0x5d, +0x25,0xff,0xb6,0xc2,0x10,0x4a,0xef,0x98,0x73,0x6e,0x87,0xd9,0x7f,0x2e,0x33,0xb6,0xf2,0xd0,0x8d,0xa5, +0x6e,0xc1,0x55,0x57,0x8a,0x94,0xf7,0xc8,0xca,0xf6,0x56,0x88,0x08,0xfc,0xb2,0x67,0x58,0x9b,0x6a,0xcf, +0xa4,0x6c,0x49,0x72,0x95,0x07,0x6e,0xfd,0x61,0xc9,0x2f,0x23,0xa7,0xcc,0xe7,0x49,0xbd,0xa8,0x34,0x76, +0xf2,0xc8,0x63,0x5b,0x93,0x4c,0xac,0x06,0xdc,0x13,0x12,0x12,0x35,0xdf,0xb0,0x19,0xa6,0xb7,0x6a,0x35, +0x9f,0x5f,0xec,0xbc,0x9e,0xa2,0x6e,0xb9,0xad,0x38,0x00,0x85,0x1d,0x74,0x4a,0x47,0x56,0x0c,0x4c,0x85, +0x2a,0x73,0x25,0x39,0x6d,0x42,0x31,0x4b,0xab,0x55,0x29,0x03,0xab,0x0a,0xd0,0x11,0x01,0x53,0xae,0x54, +0x7b,0x95,0x2a,0xdc,0x5a,0x26,0xa6,0xf8,0xca,0x15,0xb2,0xca,0xc1,0x14,0xbf,0x91,0x12,0x1f,0x75,0x68, +0xbb,0x1c,0x8d,0x76,0x7b,0x19,0x1a,0x94,0xdb,0x84,0x06,0xcf,0xb4,0xa0,0xc1,0x73,0x56,0xa0,0x81,0xb1, +0x2d,0x75,0xd9,0xd6,0x4f,0xb9,0x2a,0xd7,0xba,0x74,0xee,0xf0,0x3c,0x29,0x8d,0x60,0x1c,0xa1,0x44,0x87, +0xbe,0x27,0xc7,0xce,0x55,0x8f,0x94,0x64,0x73,0x34,0x5e,0xc3,0xa8,0x0d,0xb6,0x8b,0x3e,0x42,0x90,0xa1, +0x2a,0x9c,0x0c,0x7f,0x3a,0xfb,0x9e,0x7c,0x81,0xfa,0x3c,0x51,0x86,0x83,0x8b,0x12,0xf9,0x13,0xc7,0xfe, +0xb8,0x2c,0x67,0x45,0xe8,0x44,0x4a,0x72,0x9f,0x5a,0xba,0x2b,0xaa,0x22,0x80,0x1a,0xc0,0x84,0xb6,0xf4, +0x50,0xf1,0x39,0xc3,0x19,0x77,0x91,0x61,0xe3,0x09,0xbb,0x5b,0x73,0x22,0xa5,0x25,0x0f,0x0b,0xab,0xc7, +0xc3,0xee,0x28,0x6e,0xd5,0x31,0xd4,0x8e,0xb4,0xf2,0x41,0x8a,0x99,0x22,0xb0,0x0c,0x35,0x11,0xde,0x1b, +0x71,0x36,0x28,0xca,0xac,0xc5,0x4f,0x2c,0xb7,0x38,0x84,0xed,0x90,0x9b,0x1e,0xde,0x4c,0x32,0x0a,0x05, +0xc7,0xbf,0x89,0x3b,0xef,0x93,0xc1,0x39,0xfc,0x4e,0x4a,0x57,0xd0,0x44,0x01,0x03,0x05,0x4c,0x90,0x4d, +0xf9,0xa9,0x7c,0xa9,0xc2,0xad,0x16,0xb3,0x6d,0x9f,0xc2,0xb8,0x3b,0xbf,0x62,0x0c,0x69,0x25,0x31,0x67, +0x89,0xb9,0x96,0x58,0xb2,0xc4,0x12,0x27,0x22,0xcc,0x1b,0x55,0xee,0x54,0x52,0x00,0x6a,0x0a,0x81,0xa5, +0xc8,0x19,0xd5,0xd7,0x48,0xc5,0x92,0x01,0xdd,0x85,0xc5,0x79,0x59,0x50,0x6c,0x17,0xea,0xca,0xd0,0xa1, +0x60,0xea,0x66,0x72,0x41,0xe9,0xb0,0x40,0x30,0x20,0x3c,0xf4,0x42,0x9f,0x68,0xfd,0x25,0x06,0x4d,0xe2, +0xd5,0xdb,0xba,0xc8,0xb8,0x23,0x1b,0x04,0xf0,0xee,0xad,0xe5,0x0c,0x6b,0x48,0xc3,0xf4,0xfe,0x1d,0x86, +0x07,0x4c,0xca,0x24,0x7f,0xfe,0x59,0xf7,0x49,0x24,0x1c,0x20,0x60,0x30,0x6d,0xda,0xfd,0x22,0x97,0x02, +0x6a,0x7b,0xf8,0xde,0x8c,0x3e,0x96,0x4d,0x2b,0xcb,0x22,0x89,0xf3,0x9b,0x71,0x15,0x69,0x07,0x7d,0x6d, +0xd5,0x42,0xce,0x53,0xc0,0xcf,0x8a,0xdf,0x2d,0xe4,0xf7,0x16,0x70,0x9b,0xce,0x9b,0xbc,0x93,0x7d,0x29, +0xf7,0xda,0xee,0xfa,0x8a,0x34,0xc1,0x57,0x6f,0xe7,0xd2,0x0d,0x13,0x7a,0xc0,0xaf,0xce,0xfb,0x34,0x56, +0x31,0xd4,0xa8,0x6e,0xe3,0x50,0xd9,0x97,0xf2,0xdf,0xc2,0xc2,0x94,0x7f,0x32,0x1b,0x53,0x5f,0x0a,0x47, +0xa0,0x61,0x2e,0x03,0x81,0x5f,0x78,0xd3,0xe8,0xf8,0xec,0x28,0xff,0x4f,0xf2,0xef,0x86,0x2e,0x2f,0x60, +0xaf,0x69,0x74,0xf7,0xdb,0xf4,0x1e,0x0f,0x07,0x8e,0x19,0xda,0x4e,0xd5,0xa5,0x80,0xd5,0x39,0x9e,0x8e, +0x25,0x68,0xdf,0xd9,0x97,0xbf,0xc2,0x32,0xb8,0x1b,0xa7,0x37,0x24,0xd6,0xc7,0x0b,0x4f,0xf7,0x2b,0xc5, +0x00,0x68,0x4b,0x8f,0xb5,0x44,0xa2,0x7a,0x58,0xed,0x54,0x07,0xa5,0x9a,0x7f,0x30,0xdf,0x70,0x01,0xe3, +0xd7,0x75,0x0d,0xd0,0x24,0xe4,0x35,0xd2,0x88,0xbb,0x95,0x52,0x51,0xe5,0x5c,0x87,0xd9,0x19,0x98,0x4a, +0xb3,0x8a,0x96,0x4f,0xa5,0xe0,0xca,0x0d,0x5e,0xda,0x08,0xd7,0x9e,0xd4,0x00,0xa5,0x26,0x2d,0xc1,0x35, +0x18,0x97,0x75,0xc8,0xaa,0xac,0xdb,0xe9,0xb0,0x67,0x38,0xa1,0x65,0xc4,0xec,0x25,0x0d,0xcd,0x24,0x6e, +0xad,0x63,0x01,0x6c,0x2b,0xd2,0x51,0x4b,0x89,0x77,0xaa,0x24,0x55,0x94,0x14,0x36,0x4b,0x7a,0x01,0x36, +0x96,0x0c,0x40,0x69,0x3a,0x64,0xc2,0xf2,0x0c,0x0d,0x1c,0x85,0x60,0x6d,0xd2,0xee,0x36,0xc0,0x51,0x85, +0x5c,0x83,0x1c,0xc7,0xed,0x1b,0x21,0xc4,0xd2,0x20,0x85,0x0e,0xb8,0x06,0xcd,0x15,0xae,0x0d,0x50,0x55, +0xb9,0xbb,0xf6,0x60,0x55,0x69,0x75,0xcb,0x81,0xed,0x5a,0x8a,0x28,0x2d,0xb4,0x29,0x04,0xb7,0xbd,0x11, +0xcc,0xd1,0xe0,0x85,0xd2,0x7e,0x9b,0x79,0x7c,0x33,0x4b,0x31,0xdb,0x14,0x7b,0x09,0x61,0x1a,0x51,0xe3, +0x28,0x25,0xdb,0xcb,0x70,0xdd,0x7f,0xb3,0x8c,0x6a,0x8b,0xc0,0xc6,0xad,0x62,0xbe,0xa0,0xbe,0x8b,0xa8, +0x46,0x2d,0xc6,0x18,0x62,0xfb,0x7f,0x6d,0xec,0x50,0xb2,0x06,0x0a,0x67,0x54,0xf4,0x7b,0xa1,0x41,0xea, +0xa7,0x54,0x5b,0xcd,0x6d,0x66,0x63,0xa1,0x17,0xab,0xfb,0x26,0x34,0x7a,0xcf,0x30,0x8b,0x56,0x2c,0x31, +0x6a,0x1d,0xad,0x80,0x06,0x8c,0xdc,0xba,0xeb,0x8b,0xca,0x7a,0x07,0xd5,0xa4,0x8d,0x0a,0x84,0xc3,0x8a, +0xca,0xd5,0x01,0x53,0x62,0xd6,0x67,0x25,0xdc,0xb4,0xec,0xca,0xaa,0xba,0x59,0x2b,0x57,0x0a,0x55,0xef, +0x65,0x8a,0x7e,0x68,0xad,0x46,0xa6,0x55,0xd9,0xa0,0x53,0x28,0x6f,0xb3,0xdd,0x07,0x5f,0xb9,0xeb,0xd6, +0x2a,0xa1,0xc7,0xa9,0x55,0x75,0x1c,0xd4,0xea,0x18,0xca,0xa0,0x7e,0xea,0x48,0x11,0xaa,0x17,0xd5,0x59, +0x72,0x09,0xac,0xf0,0x39,0xa2,0x02,0x3b,0xc8,0xcf,0x10,0x8f,0xe5,0xe6,0x56,0x2a,0xce,0x71,0x70,0x30, +0x76,0xf1,0xa9,0x29,0xb2,0x6c,0xd4,0xf4,0x2e,0x05,0x3b,0x67,0x5f,0x1c,0x3b,0xf0,0xdb,0x0b,0xad,0x07, +0x03,0xcf,0xe2,0x3e,0x72,0x5b,0xb7,0xf5,0x85,0x6d,0xcd,0x7c,0xfe,0x30,0xdf,0x53,0x73,0x16,0x7c,0xd0, +0xe2,0x55,0xfc,0xb8,0xe3,0x31,0xb9,0xe4,0xe5,0x55,0x50,0x8c,0xd3,0xdb,0xd2,0x2f,0xa2,0x94,0xbb,0xe9, +0x97,0xb0,0xa8,0x6c,0x5d,0x0b,0xe1,0x52,0xf4,0x0b,0x72,0x68,0x40,0x5e,0x0f,0xf4,0x10,0xc1,0xad,0x82, +0x4b,0x2c,0xbb,0x5e,0x58,0xb0,0x50,0xd6,0x4c,0x92,0x29,0x7c,0xae,0xf2,0x1f,0xe2,0x69,0x48,0xb4,0xb3, +0x24,0xd4,0x9f,0x54,0xf4,0xe7,0xfb,0x31,0x9e,0x13,0x5d,0xe7,0xb7,0x1f,0xdf,0x9f,0xbe,0xc3,0x48,0x8c, +0xcc,0xc1,0x1e,0x6d,0xb1,0xc2,0x13,0x6c,0xca,0x82,0x4b,0xc1,0x0f,0xb1,0x51,0xa3,0x07,0x7c,0x33,0xc6, +0x42,0x41,0xc1,0x32,0x0a,0x74,0xf3,0x84,0xa7,0xae,0x32,0x50,0x1f,0x91,0x78,0x08,0x41,0x7f,0x69,0xa3, +0x7e,0x4a,0xa2,0x4e,0xe9,0x80,0x16,0x03,0xce,0xd4,0x5a,0xe1,0x01,0xbd,0x49,0xe4,0x59,0x73,0x76,0x9a, +0x5e,0x16,0xdc,0x01,0xf9,0x24,0xc2,0xdf,0x9c,0xfd,0xe8,0x35,0x18,0x09,0x42,0x57,0x35,0xa9,0x38,0x32, +0xe4,0xd1,0x04,0x57,0x88,0xa5,0xb5,0x39,0xe4,0x24,0x37,0xbe,0xaa,0xa2,0x62,0x08,0x7b,0x69,0xac,0x5f, +0xe4,0xfe,0xe1,0x56,0x46,0xac,0x1e,0xa5,0xe6,0xd1,0xc6,0x35,0xcb,0xf8,0x64,0x69,0xc0,0x9e,0x98,0x0b, +0xa0,0x5f,0xc3,0x5b,0xcd,0xa0,0x77,0xc2,0x1e,0x93,0xdb,0x34,0x94,0xad,0xda,0x51,0x53,0xd1,0x41,0x98, +0x88,0x81,0xe3,0xfc,0x40,0xd7,0x25,0xfe,0xa4,0xbd,0x85,0xcb,0x20,0x8a,0x5a,0x8b,0x96,0x53,0x39,0x5e, +0x48,0x3e,0xa5,0x45,0x89,0x16,0x74,0xcc,0x9b,0x6b,0x6d,0x7e,0xb1,0xf8,0xae,0xf9,0x43,0x4f,0x3c,0x5e, +0x5b,0xe6,0x60,0x4f,0x3a,0xb9,0x87,0x43,0x2d,0x1a,0x1d,0xc7,0xe4,0x81,0xfa,0x93,0xe3,0xcf,0xd0,0xfa, +0x31,0xb9,0x0b,0xe9,0xa8,0xba,0xa0,0x88,0xa8,0x18,0x3b,0x90,0x16,0x25,0xfc,0x10,0xf6,0xc8,0x14,0x2a, +0x75,0x5e,0xe2,0xae,0x09,0x07,0x64,0xf1,0xf5,0x2f,0x56,0x15,0x7c,0xe1,0x81,0x14,0x4e,0x7a,0xc9,0x7b, +0x6c,0x99,0xbc,0x60,0xf9,0x37,0x05,0xb3,0x58,0x0a,0x1d,0xc7,0x67,0x0f,0xce,0xa1,0x33,0xcb,0x66,0xa8, +0xa1,0x82,0xd1,0x2a,0xbe,0xe3,0x3e,0x5c,0x29,0x90,0xd5,0xbf,0xe7,0xd0,0x4e,0xf9,0x39,0xec,0xfa,0x42, +0xb9,0x85,0xaa,0xc8,0xb9,0xe7,0xfa,0xf0,0xc0,0xff,0x98,0x0d,0x70,0x9d,0x83,0xa6,0xd8,0x2f,0xe6,0x37, +0x1b,0x7d,0xff,0xe1,0x93,0x1e,0x6c,0x86,0x64,0x2e,0x8c,0x74,0xa0,0xec,0xe7,0x2d,0x63,0x37,0x82,0x17, +0xd3,0x78,0x46,0x3e,0x21,0xe0,0xef,0x45,0x36,0x81,0xed,0x13,0x66,0x4a,0x18,0x74,0x0e,0x31,0xce,0xd0, +0xf3,0x9f,0x5e,0x5e,0x9f,0xbd,0xf8,0xfe,0xe4,0xe2,0xf5,0xcf,0x2f,0xae,0xdf,0x9d,0xbc,0x7c,0x71,0xfd, +0xf6,0xec,0xf5,0xcb,0xd7,0x6f,0xf0,0xc0,0x5e,0x06,0xfc,0xf7,0x3d,0x73,0xba,0xef,0x93,0x07,0xfe,0x07, +0x0a,0x79,0x04,0x9c,0xbd,0xc8,0xce,0x4b,0x65,0x71,0x93,0xce,0x5e,0x72,0x34,0x35,0x65,0xfb,0x0c,0x9e, +0xcb,0xd1,0x0f,0x1d,0x29,0x86,0x85,0x90,0xf1,0x0f,0xa7,0x47,0xdf,0xc8,0xfa,0x90,0x2d,0x22,0x8a,0xcf, +0xa1,0x83,0xc3,0xc3,0xbd,0x24,0xc8,0x71,0x01,0x93,0x2e,0x83,0xbc,0x5e,0x17,0x07,0x95,0x74,0xd0,0x9d, +0xa2,0x7b,0xc6,0x56,0xca,0x04,0x3c,0x45,0xbd,0xf4,0xa8,0x5e,0x5a,0x71,0xef,0x5d,0x50,0xe9,0xc2,0xe3, +0xa6,0xb0,0xb5,0xd2,0x83,0x7a,0xe9,0xb8,0x2a,0x1d,0x53,0x69,0x54,0x0a,0x6c,0x45,0x29,0x0c,0xd2,0xb8, +0x37,0x80,0x43,0xff,0x87,0x9e,0x20,0x31,0x36,0x69,0x8c,0xff,0xc6,0x44,0xf2,0xfd,0xa0,0x56,0x3a,0xae, +0x97,0xae,0xe2,0xfd,0xb8,0x19,0x95,0xce,0x2a,0x16,0xb5,0x32,0x95,0x49,0xa8,0xfa,0x80,0x3c,0x82,0xbf, +0xae,0xd3,0xb2,0x70,0x85,0xb4,0xaa,0x2c,0xf4,0xda,0xd3,0x07,0x90,0xee,0x39,0x46,0x03,0x4f,0x94,0x16, +0x98,0x5a,0x56,0xde,0x72,0x9e,0xf8,0xe2,0x63,0xa4,0x7e,0x0c,0xe0,0xa3,0x56,0x41,0x2c,0x2a,0x88,0xbf, +0x14,0x8e,0x3e,0x29,0xcb,0x58,0x70,0x8d,0x9f,0xa8,0x6d,0xad,0x83,0xad,0xfc,0x88,0x6b,0xa8,0xa3,0xd2, +0x07,0xd6,0x06,0x7f,0xa1,0x32,0xae,0xc3,0xc6,0x1b,0x2f,0xf8,0xdf,0x85,0x89,0x04,0x00,0x3f,0x51,0x4a, +0xb1,0xba,0xc7,0x6a,0x43,0x85,0xfa,0xb1,0xb0,0xb5,0x1a,0x8b,0x0a,0xe2,0x65,0xed,0xda,0x99,0x80,0xa5, +0x9e,0xa8,0xe5,0xd7,0xc1,0x60,0x29,0x13,0x06,0xbc,0x36,0xec,0xff,0xb5,0x18,0x30,0x78,0xa2,0x94,0x78, +0x0c,0x03,0x06,0x82,0x01,0xd4,0x8b,0x1b,0x11,0x3f,0x90,0xc4,0x0f,0x1e,0x49,0xbc,0xf0,0x5b,0x92,0xe3, +0xc2,0x0c,0xe7,0x42,0x38,0xb2,0xe2,0xea,0x5c,0x17,0xec,0x61,0x34,0x8b,0xe8,0x3e,0x86,0xc3,0x3d,0x39, +0xf5,0x24,0xb7,0x7b,0x49,0x40,0xce,0xbc,0xdd,0xfd,0xff,0xfd,0xc7,0x65,0xa7,0xfd,0x6d,0xdc,0xbe,0xbd, +0xba,0xff,0xea,0xe1,0x9f,0xfb,0x29,0x49,0xd9,0xea,0x79,0x4f,0x29,0x8f,0x74,0x33,0xd2,0xe2,0x4d,0xfc, +0xc6,0x4d,0x83,0x3c,0xea,0x7e,0xbd,0x57,0x39,0x04,0xe3,0x3e,0x7d,0xdd,0xae,0xdf,0xf5,0x7c,0x58,0x1f, +0xf6,0xd1,0x59,0x5f,0xe5,0x04,0x40,0x29,0x38,0xb2,0x17,0x3c,0x58,0x59,0x70,0x60,0x2f,0xf8,0x55,0x63, +0xc1,0x43,0x94,0xfe,0x8a,0x25,0x4a,0xd4,0x12,0xdb,0x6b,0x79,0x6a,0xad,0x45,0x9e,0x91,0x4c,0xb6,0xd5, +0xb8,0xd6,0x08,0xb0,0x3e,0xeb,0x3a,0x8f,0x65,0xdd,0x6a,0x9e,0x37,0xb0,0xae,0x99,0xe7,0x4f,0x37,0x60, +0x9d,0xbd,0x03,0x1a,0x59,0x57,0x8d,0xaa,0x67,0x0d,0xbc,0xab,0x20,0xbe,0xb1,0x31,0xcf,0xc6,0x80,0x83, +0x95,0x9c,0xb3,0xe1,0xbd,0xaa,0xd4,0xc0,0x52,0xea,0xb0,0xb1,0xd4,0xb7,0x76,0x9e,0xd5,0xab,0xf8,0xda, +0x5a,0xc5,0xea,0xb1,0xd6,0xc4,0xaf,0x4d,0xd9,0xd5,0x79,0x14,0xbb,0x0e,0x1e,0xc5,0xae,0xa7,0x8d,0xa5, +0xbe,0x59,0x97,0x5d,0xcf,0x36,0x63,0x17,0x6e,0xaa,0xbf,0x16,0xe8,0xe2,0xb9,0xd8,0x73,0x91,0x35,0xbf, +0x06,0x57,0xad,0x27,0xbf,0x5f,0x76,0xba,0x57,0xfd,0x5f,0x83,0x3e,0xa6,0x5c,0xed,0x79,0x90,0xe9,0xff, +0xf7,0x01,0x7e,0xf5,0xec,0x3d,0x06,0x38,0xfe,0x49,0x28,0x32,0x0c,0x68,0x48,0xe4,0x91,0x81,0x46,0xbc, +0x9f,0x32,0x57,0x14,0x95,0x3f,0x76,0x25,0xbe,0xa2,0xeb,0x78,0xad,0xae,0xaf,0x24,0xf8,0x68,0xdd,0xe6, +0x3c,0xc1,0xfb,0xa7,0x10,0x3a,0x48,0x3d,0xa9,0xae,0x75,0xd4,0xb1,0xa0,0x70,0xa5,0x87,0xca,0xa3,0x96, +0x9e,0xb3,0x8c,0xd1,0xd2,0x32,0x50,0x1a,0x31,0xf4,0xeb,0x18,0xfa,0x66,0xf6,0xda,0x28,0x8f,0x36,0x42, +0x79,0xb4,0x0a,0xe5,0xbc,0xdf,0x88,0x74,0x1d,0x47,0xa2,0x02,0xdd,0x6f,0xbf,0x56,0x79,0x1d,0xea,0x35, +0x98,0xf9,0xf5,0x42,0xde,0xfa,0x1d,0x34,0xd8,0x88,0xda,0xc1,0x72,0x6a,0x73,0xcf,0xd2,0x4b,0x5f,0x14, +0xdd,0x78,0x23,0x74,0x0d,0x68,0x03,0xf2,0x9e,0xaf,0x19,0x91,0x32,0x1f,0xf1,0x0c,0xfa,0xd7,0x5a,0x33, +0x76,0x76,0x2c,0x38,0xfe,0xa9,0x6b,0x86,0x0d,0x83,0xbf,0xda,0xca,0x6a,0xc5,0xf1,0xcf,0x5d,0x59,0xb5, +0x89,0xf0,0xe7,0xad,0xb0,0xe3,0x8d,0x66,0x84,0x09,0x0d,0x97,0xb5,0xff,0x8f,0x35,0xb6,0xd8,0x08,0xe9, +0xa2,0x69,0x1a,0xff,0x2d,0x56,0xd8,0xc5,0x46,0xb4,0x2e,0x96,0xd1,0xfa,0xf7,0x59,0x5f,0x85,0x65,0x0b, +0xde,0x49,0x61,0xbd,0xba,0xc8,0xce,0x46,0x03,0x3d,0xac,0x73,0x2e,0x1f,0x11,0x8e,0xa2,0xee,0xfe,0x33, +0xb8,0x6e,0x1e,0x47,0x87,0xfb,0xcf,0xfa,0xdd,0x30,0x39,0xea,0xee,0x7f,0xd5,0xef,0xb6,0x9f,0xed,0xb9, +0x49,0x1b,0xb2,0xa0,0x77,0x8e,0x9f,0x42,0x0e,0x7d,0x3f,0xc5,0x6f,0x34,0x0a,0x03,0x70,0xc8,0xa3,0x28, +0x3c,0xc1,0x21,0x2f,0x85,0x30,0x09,0xfc,0x42,0x68,0x5e,0x3e,0x38,0x44,0xf0,0x18,0xc1,0x83,0x43,0x82, +0xe6,0x8d,0x1c,0x1f,0xb0,0xd2,0x50,0x98,0x00,0x0f,0x58,0x43,0x87,0x55,0xd1,0x43,0xd6,0x54,0x16,0xb9, +0x69,0xcb,0xed,0xb6,0x53,0x6f,0x0f,0xfe,0x0f,0x54,0xee,0xe5,0xfe,0x34,0x72,0x0b,0x4c,0x2b,0x94,0xb4, +0x49,0xe4,0xc6,0x98,0x16,0x57,0x69,0xfc,0x09,0xe5,0x3e,0x0f,0x33,0x7f,0x14,0x4e,0xfd,0x41,0x38,0x79, +0x40,0x8e,0xc0,0xa9,0xef,0x22,0x7b,0x55,0x2c,0xec,0x1c,0xf1,0x0b,0x3f,0xf6,0xb9,0xe0,0x0d,0xe3,0xf3, +0xb1,0x3c,0x68,0x93,0xa5,0xa4,0x02,0x1a,0x5a,0xcc,0xda,0x53,0x19,0xfa,0x3a,0xea,0x6c,0x47,0x59,0x7f, +0xb2,0x9f,0x85,0x18,0x8b,0xb7,0x13,0x45,0x93,0x7e,0x27,0x4c,0x30,0xe8,0xbb,0xfb,0xac,0xe5,0x96,0xed, +0xdc,0xdb,0x9f,0x78,0x4f,0x9e,0x85,0x25,0x26,0x1d,0xb4,0xdc,0xbc,0x9d,0x40,0x4a,0x98,0xe3,0xe7,0xd3, +0x16,0xd0,0x5b,0xe2,0x27,0x94,0xdd,0x8f,0x9e,0x61,0xf0,0x76,0xff,0x7e,0x1c,0x02,0x2e,0x61,0xe1,0x2f, +0xc2,0x98,0xd0,0xb6,0xbe,0x69,0x51,0x88,0x4c,0x7a,0x23,0x22,0x91,0x79,0x94,0x53,0xb8,0x68,0x26,0x21, +0x8e,0xa0,0x0a,0xe8,0x2b,0xf8,0xb7,0x08,0xbb,0x7e,0x0e,0xff,0x46,0xf0,0x6f,0x00,0xff,0x50,0x0a,0xc1, +0x00,0x0b,0x35,0x1a,0x00,0xab,0x83,0xe9,0x71,0xb2,0xb8,0xd3,0xe2,0xdd,0x20,0x92,0x91,0x82,0xb7,0x3b, +0xfe,0x3d,0x62,0x23,0xe4,0xf9,0x9e,0xac,0x87,0xcb,0xbc,0xd1,0x93,0x0b,0xdb,0x0d,0xd4,0x0a,0xb8,0x9a, +0x24,0x3e,0x31,0xd9,0x92,0x23,0xe7,0x6e,0x31,0x43,0x37,0x24,0x6a,0x1e,0x7b,0x28,0xd0,0xc3,0x03,0x60, +0x24,0x9c,0xd8,0x09,0x1d,0x9c,0x53,0x1c,0xe5,0xb4,0x44,0x4d,0x0e,0x8d,0x3f,0xc1,0x5d,0x3a,0x1c,0x25, +0x65,0xc4,0x42,0x0c,0x6a,0x39,0xe8,0x54,0x71,0x12,0x7f,0xb6,0x65,0x61,0x55,0xea,0x6b,0x21,0xea,0xa8, +0x60,0xa4,0x63,0x13,0x06,0x7d,0xa1,0xbd,0x86,0xbf,0xc0,0xf8,0xc6,0xbc,0x68,0x9b,0xbd,0xe8,0xe5,0x51, +0xe2,0xee,0x62,0x08,0x71,0xe1,0x1a,0x82,0x5e,0xcc,0xda,0x1c,0x0b,0x67,0x8b,0xe2,0x31,0x46,0xc2,0x4e, +0x21,0xdc,0x42,0x15,0xc7,0x1e,0xfa,0x8b,0xc0,0xa8,0xe3,0xbb,0x5e,0x2f,0xd7,0xd4,0x51,0x82,0x57,0xcc, +0xa1,0x84,0xa0,0xe2,0x9a,0x32,0xbc,0x06,0x12,0x73,0xf4,0x8c,0x89,0x2e,0x59,0x13,0xd7,0xc1,0x10,0x92, +0x95,0x6d,0x47,0x5e,0x59,0x60,0xa8,0x05,0x01,0x9c,0xde,0x4f,0x50,0x53,0xec,0xa7,0x7c,0xe2,0x1e,0xc0, +0xf2,0xd3,0xc3,0x37,0xda,0x24,0x1e,0x56,0x85,0x77,0x8f,0x08,0xe9,0x2d,0xd2,0x70,0x76,0xd0,0xe6,0x71, +0x1f,0xdf,0x17,0x8e,0x03,0x46,0xda,0x1d,0x55,0xb1,0x75,0x8f,0x8a,0x12,0x23,0x92,0xc4,0x86,0x5b,0x73, +0xa8,0x6c,0xb7,0x95,0xb6,0x1c,0x0f,0x08,0x6c,0xe7,0xc9,0x2c,0x89,0xcb,0xad,0x1b,0xd2,0xd3,0xe0,0x7f, +0x7a,0x0f,0x47,0xfb,0x54,0xed,0xb1,0x43,0xf8,0xb2,0x78,0xbf,0x44,0xfc,0xc7,0x6c,0x5e,0x24,0xf3,0x59, +0xfd,0xe1,0x49,0xe1,0x07,0x82,0x5f,0x73,0x40,0xb3,0x7c,0x99,0xcd,0x6f,0xc6,0x80,0xf8,0xa3,0x2b,0xa0, +0x64,0x74,0x20,0xb5,0x66,0x0d,0x08,0x6a,0x45,0xe2,0x11,0x75,0xb0,0x37,0x75,0x56,0x47,0x4e,0x6f,0x5f, +0x4b,0x2b,0x60,0xe0,0xd7,0x0c,0xd2,0x33,0x97,0x8d,0x80,0x29,0x49,0xbd,0x67,0x93,0xa3,0xf6,0x2e,0xce, +0x83,0xdd,0xf3,0x91,0xba,0x2b,0xba,0x93,0xa0,0x77,0x8f,0x6d,0x59,0x88,0x49,0x73,0xce,0x5b,0x36,0x0e, +0x77,0xf9,0x68,0x56,0x3d,0xa4,0x68,0x70,0xa7,0xf3,0xbc,0xc8,0xf2,0xdd,0xca,0x49,0x0a,0x41,0xd7,0x2b, +0x7d,0x35,0x4f,0xb6,0xd8,0x4f,0xb6,0x6a,0xb4,0xef,0x98,0x07,0x17,0x28,0x79,0x13,0x4f,0x17,0x71,0x51, +0x87,0x3f,0x27,0x40,0xad,0xd4,0xee,0x16,0xc5,0xba,0x8d,0x76,0xbb,0xbb,0x5b,0xcc,0x20,0x29,0xda,0x3d, +0xc4,0x08,0x41,0x64,0xf1,0xba,0x0b,0x85,0x10,0x13,0x56,0xa1,0x15,0x67,0x80,0x60,0x18,0x8b,0x6a,0x6f, +0xd6,0xc4,0xff,0x1c,0x06,0xfd,0x26,0xf8,0x03,0xfc,0xe6,0xf8,0x9f,0x63,0xc4,0x40,0xe6,0x66,0x79,0x39, +0x19,0x00,0xf8,0x38,0x32,0x60,0xbf,0xd8,0x88,0x0c,0x80,0xdf,0x9c,0x0c,0xda,0x94,0x56,0x50,0x00,0x30, +0x8f,0xa3,0xe0,0x2c,0x19,0x6e,0x44,0x01,0xc0,0x6f,0x4e,0x01,0x14,0x5a,0x81,0x3f,0x40,0x3c,0x0e,0xff, +0x97,0x39,0xfa,0x70,0xdf,0x84,0x02,0x2a,0xb1,0x39,0x0d,0x54,0x6c,0x05,0x15,0x04,0xf3,0x38,0x3a,0x9e, +0x4f,0x36,0x9c,0xd1,0x58,0x60,0x73,0x2a,0x9e,0xaf,0x1e,0x4a,0x08,0xf2,0x38,0x1a,0x4e,0x26,0xb3,0x71, +0xbc,0x11,0x11,0x54,0x62,0x73,0x2a,0xa8,0xd8,0x0a,0x32,0x08,0xe6,0x71,0x74,0xbc,0x63,0x8a,0x18,0x4d, +0x48,0xf3,0xec,0xe7,0xd9,0x27,0x1b,0x9a,0xdd,0x6a,0xf9,0x21,0x0d,0x31,0x98,0x5f,0xb4,0xed,0xa8,0xe8, +0xb2,0x86,0xe9,0xff,0x95,0xe3,0xe3,0x5c,0x78,0xdc,0x53,0xf7,0x03,0x7f,0x2b,0xb0,0xf1,0xb3,0x4a,0x66, +0x34,0x19,0x60,0xd2,0x1f,0xc3,0x7c,0xca,0xd4,0xd4,0xd0,0xb5,0x1d,0xdc,0xc8,0xd0,0xa2,0x84,0x19,0x83, +0xb6,0x3f,0x66,0xff,0x69,0xa3,0x76,0x49,0x5b,0xe8,0xb1,0x31,0x8b,0x12,0x91,0x7d,0x97,0x0c,0x3e,0xa4, +0xe5,0x12,0x88,0xd5,0x65,0x69,0x9b,0x6f,0xa3,0x26,0x33,0x0b,0x1f,0xca,0x60,0x7c,0x7e,0x8a,0xc3,0x98, +0x21,0x9f,0x4a,0x54,0x21,0xb6,0x6c,0xe2,0x35,0x1d,0x49,0x52,0x7e,0xcc,0xab,0x13,0x08,0xba,0x35,0xb7, +0x94,0xd3,0x79,0xa7,0x1d,0x06,0x30,0xe1,0x5a,0x96,0x15,0x95,0x11,0x8e,0xa4,0xc1,0xff,0x25,0x6a,0x5b, +0x1f,0x35,0x36,0x2e,0x6b,0x55,0xb2,0xe4,0x3f,0x84,0xe6,0x86,0x35,0xaf,0x83,0xb2,0x70,0x3f,0x52,0x55, +0xc9,0x52,0x1e,0x89,0xe7,0xfa,0xd5,0xad,0x85,0xdc,0x4d,0x8d,0x60,0x56,0xdd,0x1f,0xe2,0xe5,0x46,0xb5, +0xb2,0x9b,0x85,0x79,0xbe,0x34,0x2e,0x10,0x16,0xeb,0x96,0x64,0xff,0xc0,0xcf,0xa3,0x12,0xae,0xc8,0xd2, +0xd5,0x08,0x3b,0x94,0x72,0x0f,0xfe,0x30,0x4b,0x68,0xbd,0x40,0xfd,0xc5,0x80,0x2d,0x34,0x89,0x9f,0x72, +0xcb,0xf1,0x28,0x91,0xce,0xcb,0x50,0x33,0x93,0x9c,0x07,0x4d,0x99,0xd3,0x95,0x03,0x34,0x63,0xe3,0x5e, +0x20,0xc9,0xfd,0xa3,0x00,0x44,0x73,0x87,0x0c,0xd2,0x32,0xe1,0x98,0x86,0x5f,0xe4,0x8b,0x7f,0xe7,0x25, +0x8b,0xb2,0x36,0xcb,0xee,0x5c,0xb8,0x94,0xa0,0xc9,0xb0,0xfc,0x8e,0xe9,0x9b,0xf9,0xd0,0x77,0xa7,0xc7, +0x65,0x4b,0xc4,0xa8,0x9a,0x44,0x2e,0x02,0x47,0x70,0x0f,0x8d,0x8f,0xf2,0xfe,0xb7,0x9d,0xf0,0xe0,0xeb, +0x4e,0x48,0xe5,0x80,0xe6,0xa9,0x0b,0xf7,0xfa,0xd8,0xdb,0x47,0x10,0xcf,0xdb,0xa7,0xe4,0x77,0xaf,0xf7, +0xba,0xdf,0x74,0xbc,0x96,0x9b,0x01,0x3c,0xfc,0x0a,0xe1,0x37,0xca,0xfd,0x9e,0xa0,0x8f,0x8f,0x61,0x34, +0xdd,0x2f,0xfd,0x71,0xc4,0x30,0x89,0x07,0x85,0x3b,0xa1,0xcc,0x16,0x07,0x38,0xea,0x1e,0x74,0xfa,0xdd, +0x70,0x72,0x7c,0xf0,0xb4,0xd3,0x77,0xe1,0xa3,0x5d,0x01,0xb6,0x49,0x7a,0xb8,0xff,0xac,0x13,0x4e,0x08, +0x8c,0xb2,0x27,0x94,0xd0,0xf1,0xe7,0x91,0x02,0x08,0x19,0xde,0xd1,0x33,0xac,0xc8,0x4c,0x94,0xe5,0x8c, +0x0c,0x5e,0xcb,0x8d,0x5a,0x0b,0xa0,0x50,0xaf,0x85,0x12,0x6d,0xb5,0x60,0x06,0xaf,0x65,0x66,0x6a,0x31, +0xb9,0x63,0x94,0xd4,0x8c,0x49,0x52,0x33,0xf4,0xe0,0x26,0x7f,0x5a,0x83,0x98,0x23,0xc4,0xbc,0x82,0xb8, +0xad,0x41,0xdc,0x20,0xc4,0x8d,0x84,0xe8,0x91,0xc2,0xf7,0xe4,0x9c,0xdd,0xa7,0x99,0xfa,0xd1,0x8c,0x14, +0x3f,0x4e,0xe9,0xff,0xb7,0xa8,0xfc,0xe1,0x33,0xa0,0x33,0x54,0x34,0xce,0xfc,0xd8,0xc7,0x17,0xfb,0x07, +0x29,0x2d,0x0b,0xca,0x8c,0x06,0x2e,0xea,0x1a,0x9b,0x23,0x9b,0x74,0x99,0xf1,0xc6,0x2b,0x25,0x22,0x16, +0x01,0x42,0x05,0xc4,0x84,0x31,0x4b,0x41,0x9a,0x45,0x14,0x15,0x0c,0x13,0xe3,0x2c,0x05,0x41,0x51,0x23, +0x1d,0x96,0x97,0x83,0x55,0xf2,0x19,0x45,0x76,0xc4,0x9f,0x23,0x0d,0xd9,0x4e,0xae,0x8b,0x7e,0x02,0x45, +0x9f,0x51,0xce,0xaa,0x94,0xe2,0x83,0x55,0x42,0x20,0x45,0x7a,0x34,0x8e,0x8b,0x13,0xd8,0x87,0xd3,0xc1, +0xbc,0x4c,0x98,0xd7,0xa6,0xf6,0xdd,0xcd,0xac,0x8d,0xfa,0x74,0x3b,0x3b,0x52,0x33,0x38,0xbf,0x4c,0xaf, +0x76,0x76,0x5c,0xfc,0x13,0x29,0x85,0x81,0x23,0x4d,0x85,0x7d,0x61,0xa2,0x8a,0x65,0xfa,0x54,0x70,0xbb, +0x13,0x3a,0xb7,0x31,0x46,0x0a,0xd5,0x2b,0xc4,0xb8,0x26,0x3d,0x0d,0x55,0x12,0xdd,0x4a,0x25,0x59,0x95, +0x3c,0x80,0x17,0xbe,0x25,0xd2,0x46,0x1d,0xee,0x54,0xea,0x70,0xf7,0x2c,0xfa,0xbf,0x58,0x1d,0x57,0x25, +0x2e,0xae,0xfa,0xda,0x17,0xe1,0xe3,0x85,0x46,0x83,0x84,0xac,0x18,0x76,0x98,0xd7,0x3c,0xda,0x2c,0x32, +0xa9,0xba,0xd0,0xc9,0xf5,0x7c,0x14,0x54,0x61,0x23,0x95,0x68,0x4a,0xf9,0x52,0x85,0x51,0x15,0xb3,0x49, +0xcf,0x1b,0x5d,0x48,0x3b,0x83,0x49,0x76,0xf3,0xc1,0x31,0x04,0x76,0x4c,0x65,0xb6,0xcf,0x0a,0xf0,0xc1, +0xda,0x2c,0x4d,0x70,0xb1,0xb6,0x44,0x05,0x46,0xd7,0xf8,0x76,0x25,0x71,0x52,0x20,0xf7,0xd1,0xb9,0x3c, +0x9c,0xa7,0xca,0x13,0x72,0xba,0xaa,0xa2,0xe5,0xa4,0xd3,0x49,0x3a,0xa5,0x4e,0xd5,0xbd,0x78,0x78,0xfd, +0xb4,0xee,0xd6,0x03,0x41,0xdb,0x8c,0x02,0x2f,0x34,0xf3,0xcd,0x0a,0x2a,0x7f,0xfd,0x5a,0x8b,0xb9,0xf0, +0xcb,0x23,0x86,0x48,0x6e,0x7a,0x98,0xc6,0xa6,0x4d,0xa7,0xd3,0x75,0x20,0x44,0xc0,0x84,0xea,0xf0,0xe9, +0xc4,0x43,0xb2,0x49,0x76,0xf1,0xc4,0x61,0x1e,0xdf,0xb1,0xcb,0x40,0x81,0x61,0x07,0x59,0x32,0xb3,0xf4, +0x12,0xc9,0x88,0x34,0x05,0x04,0x81,0x1d,0xb3,0x58,0x21,0xfe,0xc1,0xca,0xaf,0x09,0xf0,0x9a,0x78,0x22, +0xca,0x0e,0x26,0xf3,0x7c,0x9d,0xa2,0x08,0xc7,0x4b,0x7a,0x21,0x7f,0x9f,0xb5,0x89,0x56,0x51,0x8e,0x6b, +0x93,0xb8,0xae,0x1e,0x21,0x96,0x52,0x88,0x24,0xef,0x80,0x9a,0xa8,0x32,0x15,0x14,0x2c,0x3b,0x18,0xd5, +0xc8,0x90,0xc0,0xd7,0xa4,0xf1,0x2d,0x84,0xc5,0x56,0x24,0x59,0x22,0x3f,0x29,0xad,0xe6,0x31,0x0d,0x19, +0xce,0x62,0x56,0x39,0x2f,0xba,0x92,0xc5,0xac,0x24,0x71,0x58,0x60,0xc5,0x4a,0x7e,0x48,0x3e,0xaf,0x90, +0x6f,0xb2,0xa2,0x04,0x27,0x6f,0x13,0x64,0x80,0xb3,0x46,0x29,0x06,0x08,0xd3,0xca,0xb4,0xc4,0xd0,0xa6, +0x3b,0x6d,0x35,0x7c,0xb6,0x0b,0x7f,0x61,0x6e,0x1d,0xc2,0xd8,0x1b,0xd8,0x06,0xc5,0x66,0x8d,0x17,0xd6, +0xec,0x62,0xea,0xb0,0x42,0xfe,0xaf,0xbf,0x3b,0xac,0xdd,0x84,0x9e,0x25,0x2d,0x05,0xfa,0x39,0x77,0xf1, +0x7f,0x42,0x93,0x0f,0x63,0x0c,0x61,0x14,0x71,0x58,0x10,0xc4,0x1c,0x95,0x49,0xe8,0xa3,0xad,0x26,0x17, +0xad,0xd6,0xdb,0x61,0x02,0x34,0x64,0x9f,0x4d,0xe1,0x68,0x69,0xae,0x6d,0xc6,0x52,0xba,0x74,0x0d,0xa5, +0xb9,0x32,0x48,0x6e,0x31,0xb4,0x91,0xba,0xea,0x94,0x32,0x2e,0x01,0xfa,0x7a,0xe3,0x0e,0xc0,0xa0,0x73, +0x6f,0x6f,0x1b,0xc7,0xa1,0xcc,0xb7,0x0f,0x36,0x99,0xdd,0x30,0xa2,0x64,0x7e,0xd3,0xe0,0x41,0x00,0xfb, +0xa2,0x8d,0x4b,0x41,0x15,0xf5,0x79,0xe9,0x9e,0xa5,0xad,0x74,0x6b,0x70,0x52,0x65,0x19,0xac,0x11,0xdb, +0xdd,0x5e,0xc9,0x7b,0x8d,0x64,0x10,0xb0,0xca,0x6b,0xa2,0x68,0x74,0x4f,0x24,0xb8,0x9d,0x4b,0x16,0x97, +0x8a,0x7f,0x6f,0x06,0xce,0xf7,0x04,0x5f,0xc9,0xa1,0xed,0x80,0x7e,0x7a,0x3e,0xb7,0x56,0x4b,0xa7,0xd3, +0x24,0x27,0x63,0x8e,0x23,0xa8,0x4d,0xb1,0xed,0xd8,0xd9,0xe1,0xad,0x6c,0x2b,0xad,0x08,0x08,0x32,0x12, +0x80,0xe3,0x52,0xbd,0x55,0x96,0x4f,0xcf,0x53,0x8f,0x91,0x6d,0x08,0x41,0x8b,0x74,0x15,0xa7,0x34,0x00, +0x09,0xc3,0x64,0xaa,0x44,0x91,0xa6,0xe8,0xb6,0xe2,0x96,0x56,0x88,0x98,0x32,0xb4,0xa7,0x0b,0x03,0x10, +0xcb,0x5b,0x1b,0x59,0x58,0x91,0xfe,0xf3,0x9d,0x13,0xc6,0x91,0x15,0x4d,0x68,0x44,0xd5,0x93,0xb6,0xc1, +0xbd,0x9a,0x27,0x3a,0x54,0x61,0x83,0x3a,0x8f,0x4b,0x1d,0x6a,0x61,0x83,0xfa,0x39,0x36,0x5a,0xcc,0x6d, +0x50,0x67,0xe4,0x04,0x5f,0x81,0x1a,0xd9,0xa0,0x48,0x1e,0xa9,0xc3,0x0d,0x6c,0x70,0x28,0xf2,0xd3,0xc1, +0x62,0x1b,0x18,0x89,0xd4,0x74,0xb8,0x99,0x0d,0x4e,0xf6,0xdb,0x03,0xd3,0x3d,0x41,0x1f,0x25,0x4a,0x28, +0x13,0x6d,0xc8,0xc7,0x7c,0xb6,0xf3,0xf9,0x6f,0x74,0x2f,0xf3,0x22,0x90,0x45,0x87,0x9d,0xbd,0x3c,0xe0, +0x86,0x49,0x3d,0xa3,0x39,0x43,0xe4,0xc5,0xae,0xc7,0xe8,0xff,0x5f,0x44,0x9f,0xfb,0x83,0x63,0x6f,0x9a, +0xc1,0x9d,0x3a,0x90,0x03,0x0e,0xaf,0x09,0x41,0x65,0x7e,0xb5,0xb3,0xb3,0x9d,0x8a,0xeb,0x70,0xa7,0x37, +0xa5,0x33,0xd6,0x3d,0x5d,0xd6,0xd1,0xd6,0x8a,0x21,0x03,0xbf,0x30,0x22,0xb6,0x61,0xba,0xa8,0x2a,0x1e, +0xe0,0x2b,0xe4,0xa4,0xa5,0xea,0x30,0xf0,0xd3,0xdb,0xc7,0x38,0x1f,0xa5,0xd3,0x36,0x5a,0x3d,0x29,0x6e, +0x2d,0x9c,0x19,0x1c,0xa6,0xf0,0xdd,0xb7,0xd5,0x58,0x22,0xe7,0x5e,0x5b,0xeb,0x45,0xe0,0x08,0x81,0xf1, +0x90,0x69,0x62,0x93,0x5d,0x6e,0xa9,0x22,0x3d,0x69,0x21,0xe4,0x03,0xf7,0x6c,0x55,0xea,0xf4,0x3c,0x30, +0x9e,0x0e,0x9b,0x26,0x8a,0xc1,0x2b,0xb8,0xcc,0x5b,0xfb,0x6a,0x33,0x6e,0x0f,0x19,0x0e,0x9c,0x95,0xa5, +0xf4,0x9c,0x47,0x88,0xfa,0x0c,0xb5,0x2a,0x15,0x23,0xc3,0xe9,0x36,0xac,0x73,0x40,0xe2,0x8e,0x11,0xdb, +0x1e,0x6a,0xb4,0xb7,0x15,0xee,0x0d,0xd7,0xe2,0x77,0x73,0x89,0x46,0x7e,0x57,0x76,0xae,0x0a,0x22,0x48, +0xd7,0xd8,0x30,0xc2,0xbc,0x51,0xbb,0x7f,0xbc,0x71,0xf7,0x8f,0xd7,0x44,0x67,0xbc,0x06,0x3b,0xdd,0x79, +0x5b,0xa2,0xd7,0xee,0x7a,0x7b,0x37,0xde,0xbe,0xf8,0x14,0xc3,0x63,0xbd,0x2b,0x9b,0x76,0xa6,0x8f,0x54, +0x1f,0x19,0x52,0xe3,0x51,0x5d,0x0d,0x94,0x3a,0xf5,0x4b,0x1a,0xcf,0x67,0x0e,0x3b,0x8d,0x83,0x95,0x34, +0x13,0xbe,0xec,0x5c,0x91,0x33,0xdf,0x2a,0xa1,0x7b,0xc5,0x4e,0x49,0xb8,0x6d,0xd9,0x2d,0x83,0x6b,0x4d, +0xa6,0xfa,0x16,0x5c,0x44,0x95,0x0e,0x89,0x1f,0x47,0x5d,0x9f,0xd6,0xa2,0x54,0xac,0x45,0xfe,0x14,0x92, +0x60,0xe2,0xfb,0xe8,0x6b,0x64,0x8c,0xbe,0x4a,0x22,0x94,0x14,0xa1,0x9c,0xa7,0xdb,0x4b,0x03,0x34,0xe3, +0x64,0x86,0xc4,0x41,0x0c,0x60,0x86,0xd8,0x06,0xae,0x3c,0xe8,0x34,0xb0,0x96,0x3a,0xc2,0x89,0x53,0x4b, +0x1d,0x78,0x50,0x39,0x5c,0x63,0xa1,0x7a,0xd8,0xbe,0xa0,0x81,0x22,0x58,0xb0,0xe9,0x78,0x1a,0x99,0x4f, +0x07,0xd5,0x0b,0x05,0x8f,0x7d,0x79,0xaa,0xc4,0xac,0x93,0x6b,0x2b,0x8d,0xba,0xdb,0xe8,0x94,0x0b,0x30, +0x6b,0x32,0xc4,0xde,0xad,0x21,0x46,0x42,0xb3,0xa0,0x09,0x49,0x90,0x86,0xf4,0x7f,0x66,0x5c,0x34,0x25, +0x69,0xd2,0x6d,0x40,0x2e,0x24,0x48,0x9c,0xd4,0xf1,0x3b,0x24,0x4e,0xf2,0x6f,0x2b,0x11,0x93,0x48,0x7b, +0x20,0xb7,0xe1,0xda,0xc1,0x90,0x98,0xb4,0x5d,0xef,0xfd,0x51,0x8d,0x2e,0xe5,0xb9,0x88,0x13,0x36,0xb2, +0x10,0xf6,0xfb,0xef,0xdc,0xfc,0x73,0x11,0x8d,0x9a,0x68,0xf3,0xef,0xa2,0x05,0xbf,0x92,0x7d,0x0f,0x97, +0xe6,0x38,0x7f,0x89,0xde,0x0b,0x51,0xe8,0x8a,0x88,0x76,0x70,0xf7,0xb8,0xa3,0xe3,0x06,0x76,0xfc,0x79, +0x99,0xcd,0x20,0xbd,0x89,0x05,0x5d,0x0f,0xeb,0xd3,0xa1,0xbb,0x8d,0xd0,0x1d,0x84,0x5e,0x28,0x9c,0xbd, +0x83,0x2f,0x9d,0x77,0x31,0x34,0xcf,0x41,0xb4,0xb4,0x07,0xe6,0x97,0xcd,0xe4,0x8a,0x7c,0x92,0xe5,0x3c, +0x79,0xb7,0x8c,0x27,0xef,0xa3,0x77,0x8d,0x3c,0x19,0x44,0xef,0x57,0xf0,0x64,0x60,0xe3,0x09,0x0e,0x50, +0x95,0x44,0x24,0x70,0x60,0x63,0x07,0xc2,0xeb,0x60,0xef,0x15,0x3e,0x0c,0xf8,0x57,0x9d,0xe4,0xdf,0x6a, +0x24,0x2b,0x6f,0xb8,0x9c,0xe8,0xdf,0x96,0x11,0xfd,0x63,0xf4,0x5b,0x23,0xd1,0x1f,0xa2,0x1f,0x57,0x10, +0xfd,0xc1,0x4a,0x34,0xeb,0x59,0x46,0x3a,0xa7,0xe6,0x83,0x95,0x68,0x06,0xd8,0xa9,0xc0,0x7e,0x54,0x88, +0xfe,0xc0,0xbf,0xea,0x44,0x7f,0xae,0x11,0x5d,0xbd,0xf8,0x72,0x9a,0x3f,0x2f,0xa3,0xf9,0x63,0xf4,0xb9, +0x91,0xe6,0xf3,0xe8,0xe3,0x0a,0x9a,0xcf,0x97,0xd0,0xcc,0xfa,0x10,0x55,0xee,0xb1,0xaa,0x25,0x34,0x33, +0x40,0x1a,0xf0,0x1f,0x15,0x9a,0xcf,0xf9,0x57,0x9d,0xe6,0x37,0x35,0x9a,0x5f,0x19,0x24,0xbf,0x59,0x46, +0xf2,0xeb,0xe8,0x4d,0x23,0xc9,0x9f,0xa2,0xd7,0x2b,0x48,0xfe,0x54,0x23,0xf9,0x1f,0xb7,0x9d,0x0e,0x16, +0xd5,0x33,0x82,0xee,0x33,0xf6,0xdf,0xd7,0x08,0x71,0x6b,0x83,0xf8,0x4a,0xfc,0x07,0x10,0x1d,0x2b,0xc4, +0x21,0xe5,0xdc,0x5a,0x72,0x9e,0x29,0xb5,0x77,0x3a,0x36,0x88,0x6f,0x94,0xda,0x6f,0x6d,0x10,0x5d,0x89, +0xfa,0x6b,0x85,0xed,0x9f,0xf8,0x57,0x9d,0xed,0xaf,0x6a,0x6c,0x97,0xea,0x36,0x9c,0xed,0xaf,0x96,0xb1, +0xfd,0xda,0xee,0xe8,0x40,0x6a,0xdb,0xba,0x73,0x58,0xf9,0x67,0x5e,0xef,0x3a,0xc8,0xcd,0x6d,0xed,0x1a, +0xb7,0xc0,0xeb,0x60,0x54,0x4f,0x1f,0x61,0xfa,0xa0,0x9e,0x3e,0x60,0x7b,0xde,0x59,0xf4,0xaa,0xb1,0xab, +0x7f,0x88,0xce,0x56,0x74,0xf5,0x0f,0x0d,0xa3,0xfb,0x1a,0x2d,0x9e,0x7d,0xfc,0x3b,0xe2,0x7f,0x07,0x6c, +0xca,0xfe,0xd0,0x30,0xca,0x0d,0xf4,0x66,0x56,0xc3,0xeb,0xe6,0x54,0xac,0xfa,0x4c,0xe9,0xa2,0x1f,0xf8, +0x57,0xbd,0x8b,0xde,0xd6,0xba,0x48,0xaa,0x12,0xf1,0x2e,0x7a,0xbb,0xac,0x8b,0x4e,0x56,0x77,0xd1,0x0d, +0xec,0x63,0xbd,0x93,0x7a,0x17,0x9d,0x60,0x17,0x9d,0xd4,0xbb,0xe8,0x04,0xbb,0xe8,0xa4,0xde,0x45,0x27, +0xa2,0x8b,0x5e,0x46,0x6f,0x1b,0xbb,0xe8,0x22,0x7a,0xb9,0xa2,0x8b,0x2e,0x1a,0xba,0xe8,0x84,0x77,0xd1, +0x09,0xef,0xa2,0x13,0xd1,0x45,0x17,0xf5,0x39,0xd0,0xa1,0x39,0xf0,0x52,0x61,0xf0,0x05,0xff,0xd2,0x19, +0xbc,0xd6,0x51,0x56,0x93,0x43,0x1b,0xcf,0x10,0xab,0x4f,0xb2,0x4d,0xa2,0x1e,0x3a,0x58,0x92,0xf1,0x00, +0x1d,0x53,0xcb,0x0d,0x8e,0xa9,0x0d,0xb2,0x0a,0x1c,0x0b,0x69,0xe3,0x71,0xaf,0xb0,0x97,0xe3,0x5a,0x03, +0xf8,0x6c,0x6c,0xcd,0xe7,0xea,0x8b,0x8e,0x27,0xb4,0xc1,0x6f,0xb2,0xc2,0x3d,0xd8,0x13,0x8f,0xba,0x30, +0x90,0x3c,0xf8,0x5f,0x21,0x34,0xc3,0x8b,0x74,0x6a,0xcb,0x9d,0x44,0xa9,0xb8,0x00,0xed,0x1f,0xc0,0xc9, +0x37,0x95,0x97,0x8f,0xfd,0x83,0x5e,0xc1,0xee,0x2f,0x74,0xd5,0xf1,0x27,0xad,0x6c,0x4f,0x81,0xa5,0x4b, +0x07,0xc6,0xca,0xbd,0x61,0x21,0xeb,0x66,0x8e,0x3f,0x6c,0x4f,0xf7,0xd4,0xf2,0x1c,0xa4,0x6b,0x48,0x1d, +0x35,0x5f,0x28,0xc2,0xf3,0x4f,0x33,0xc4,0xce,0x4e,0xc7,0x14,0x5b,0xc2,0xe9,0xb4,0x1f,0xb3,0x86,0xb3, +0x59,0x7c,0x03,0x87,0x7e,0xdc,0xd2,0x42,0x33,0xa9,0xdb,0x76,0xf3,0x60,0x71,0x14,0x1c,0xf4,0x83,0x83, +0x10,0x7e,0x71,0xd1,0x45,0xed,0x06,0x5c,0xdb,0xd1,0xc6,0x8d,0x7d,0x35,0xb7,0x95,0x15,0x3d,0xd5,0x9b, +0x2b,0xcc,0x00,0x0e,0xef,0x8d,0xf5,0x9b,0x1c,0x6b,0xfe,0xc6,0x26,0x84,0xd2,0x9a,0xbf,0x69,0x6c,0x7e, +0x66,0x2b,0x2b,0x9b,0x9f,0x29,0xcd,0xbb,0xdd,0x36,0x74,0x2f,0x5c,0x13,0x6d,0x28,0x9c,0xda,0x24,0x5c, +0x1a,0x0a,0xcb,0x2e,0x27,0x96,0xb2,0x12,0x85,0x5b,0x13,0x85,0x85,0xb7,0x77,0x6a,0x43,0x61,0x64,0x13, +0x9f,0xad,0xbc,0x46,0x88,0x3b,0x84,0xa5,0xac,0x44,0x61,0x61,0xa2,0x90,0x7b,0x7b,0x23,0x1b,0x0a,0x77, +0x76,0xd9,0x9c,0x86,0xc4,0x5d,0x23,0x12,0xef,0xec,0xa5,0x25,0x1a,0xef,0x4c,0x34,0x46,0xde,0xde,0x9d, +0x0d,0x8d,0xf7,0x56,0xd1,0x9f,0x86,0xc5,0xfb,0x46,0x2c,0x06,0xd6,0xc2,0x12,0x89,0x81,0x89,0xc4,0xc0, +0xdb,0x7b,0x6f,0x43,0xe2,0x37,0xbb,0x60,0x71,0xe5,0x71,0x5e,0x9c,0xe5,0xad,0xa5,0x25,0x1a,0x3f,0x9a, +0x68,0xc4,0xde,0xde,0x6f,0x26,0x1a,0x9b,0xac,0xf8,0xa4,0xe3,0x06,0x6b,0x41,0x54,0xf7,0xdc,0x67,0x79, +0xb7,0x6c,0x78,0xb5,0x5c,0xa7,0xa5,0xd7,0xa4,0x28,0xb1,0xe9,0xce,0x62,0xbe,0xbe,0x98,0xc6,0x2b,0xfc, +0x31,0x5c,0x84,0xc6,0x43,0xff,0xda,0x35,0x03,0x17,0x13,0xc4,0x78,0x5b,0xe2,0x8e,0xa9,0x50,0xa5,0x80, +0x31,0xb7,0xb2,0x67,0x70,0x34,0x17,0x4c,0xae,0x22,0x2c,0x61,0xee,0x6b,0x44,0x55,0x94,0x16,0x2c,0x8e, +0x83,0xc3,0x3e,0xaf,0x83,0x87,0x23,0x73,0x06,0x93,0x98,0x9e,0xab,0x8d,0xe4,0x3b,0x0a,0x71,0xe3,0x2d, +0x51,0x3e,0x61,0x4c,0xc3,0xc8,0x5d,0x8b,0x04,0x4f,0x17,0x79,0x36,0xd1,0xf4,0x39,0x84,0x68,0xb5,0x7a, +0x46,0x55,0xf7,0xd6,0x58,0x2d,0xe7,0x30,0xf5,0xa6,0xce,0xb6,0xf4,0x7c,0x24,0x76,0x4b,0xd7,0x78,0xa6, +0x52,0xd8,0x42,0x9b,0xa5,0xb6,0x87,0x0b,0x8d,0x0e,0xc0,0x32,0x1e,0x25,0xff,0x83,0x4f,0x24,0xc2,0x0f, +0xf8,0x8b,0x05,0x45,0x92,0x22,0xf3,0x8b,0x42,0x8d,0x56,0xc0,0x61,0xa3,0x06,0x50,0xf4,0x00,0x49,0x00, +0x3e,0x03,0xfc,0x65,0x15,0xe0,0x2f,0xf4,0x80,0x2c,0xe7,0x8e,0x7e,0x38,0x10,0x01,0x2e,0xd3,0xa5,0x67, +0x80,0x69,0xe4,0x5a,0x01,0xaa,0x43,0x80,0xc0,0xba,0x9d,0xe2,0x13,0x5a,0x81,0x0f,0xda,0x01,0x6e,0xdc, +0x6d,0x65,0xcf,0xf6,0xf6,0x5d,0xf5,0x0b,0x6d,0xc4,0xda,0xbc,0xdc,0x2f,0x6a,0x39,0x98,0xa8,0x6d,0x75, +0x23,0xa7,0x72,0xca,0x27,0x1d,0x8e,0x1a,0x9d,0x83,0x79,0x4c,0xc6,0x2f,0x11,0x72,0x53,0xe5,0xcc,0xf9, +0x9c,0xbb,0x2c,0x3b,0x9d,0xe0,0xd9,0x92,0xce,0x7c,0x1c,0x4f,0xe1,0x4f,0x8c,0xbe,0xbc,0x25,0x68,0x6b, +0x58,0xaf,0xae,0x1c,0x89,0x91,0x75,0xc3,0x87,0xb7,0x9c,0x34,0x26,0x4c,0xb7,0xe8,0xe0,0x4d,0x35,0x0d, +0xbc,0x09,0xe9,0xdf,0x0d,0x8f,0xbb,0x30,0x5e,0x86,0x51,0x17,0x0f,0x42,0xe8,0x41,0x6d,0x67,0x67,0x78, +0xc4,0x7e,0x49,0x5f,0x6a,0x04,0x20,0x23,0x86,0x74,0xc8,0x13,0x3b,0xb7,0xbf,0xab,0xf4,0xf2,0x26,0xfb, +0x53,0xc0,0x44,0x9e,0xcf,0xbc,0xde,0xf8,0x08,0x47,0xe2,0xb8,0x15,0x05,0x87,0x40,0xb0,0xfa,0x21,0xde, +0xa7,0x5f,0x15,0x0b,0x77,0xec,0x0f,0xfd,0x18,0xf6,0xd8,0xca,0xf6,0xb2,0x36,0xce,0x74,0xf1,0x7e,0xe3, +0x78,0x13,0xda,0x95,0xc8,0xdd,0x86,0x21,0xe1,0xed,0x57,0x9c,0x5a,0x63,0x04,0x28,0xf5,0x3c,0xa2,0x93, +0xb4,0xc6,0x78,0xa8,0x96,0xa3,0x0e,0xf0,0x6c,0x72,0xdc,0x45,0x8d,0xc3,0x9e,0xe0,0xf7,0xdc,0xe4,0x77, +0x7f,0x1e,0x75,0x42,0x99,0x7b,0xdc,0x6d,0xd7,0xfb,0x63,0xae,0x76,0xd8,0x1c,0x16,0xc0,0x3a,0xcc,0xfc, +0x28,0x38,0x6c,0xd9,0x4a,0x62,0x17,0x64,0xca,0x7e,0x36,0x57,0x8e,0xbc,0xfc,0xc0,0x6b,0x99,0xec,0xf4, +0x36,0xb8,0xb3,0x23,0xfa,0x0e,0xaf,0x77,0xdd,0xf6,0x1c,0xfa,0x6e,0x04,0xff,0x06,0xd6,0x22,0xfc,0xa1, +0x50,0x2f,0x14,0x07,0xb9,0xcf,0x0a,0xda,0x0b,0xb1,0x57,0xc3,0x7a,0x19,0x6c,0x08,0x15,0x16,0x6d,0x65, +0x5e,0xe9,0x45,0x70,0x5c,0x61,0x03,0x05,0x8d,0x2c,0x5b,0x01,0x7a,0x34,0xd5,0x0b,0xc4,0x18,0x0e,0x93, +0xf0,0xb2,0x17,0xa1,0x17,0xd4,0x7a,0x11,0x6c,0xa5,0x09,0x2d,0xfe,0xb2,0x59,0x15,0xa2,0x04,0x52,0xbb, +0x7c,0x58,0xa2,0x21,0x21,0x42,0x76,0x36,0x1d,0x0d,0x68,0x67,0x58,0x5a,0x9c,0xa9,0x2b,0x9a,0xba,0xc1, +0xba,0x1e,0x80,0x30,0x10,0xe0,0x7e,0x05,0x30,0xe0,0x03,0x4a,0x03,0xc8,0x22,0x14,0x95,0x14,0x84,0x67, +0xc6,0xe3,0xa8,0x23,0xf6,0x76,0xb6,0xdd,0x6a,0x0e,0xf7,0xd4,0xf4,0x3d,0xb9,0xb4,0x74,0x3b,0x4a,0x05, +0x42,0x4d,0xd7,0x92,0xd1,0xb8,0xcd,0x27,0x4b,0x76,0xe8,0xa2,0x4e,0x5f,0xf5,0xe6,0xa9,0x7a,0x08,0x03, +0xba,0x05,0x91,0x69,0x5f,0x57,0xbb,0x49,0xa1,0x44,0xb8,0xfc,0xf4,0x54,0xd4,0x7a,0x81,0x1c,0x40,0xb2, +0x0a,0x6b,0xcf,0x45,0x89,0x6c,0x80,0x1d,0x76,0x10,0x36,0x14,0x3e,0x12,0xf2,0xbe,0x32,0x98,0x63,0x17, +0x12,0x7c,0xe8,0x26,0xf8,0x37,0x80,0x7f,0xb1,0x0a,0x39,0xee,0x2b,0xe3,0x0b,0x21,0xc7,0x3e,0x46,0x63, +0xc5,0xc0,0xab,0x06,0x64,0xdc,0xd7,0x07,0x15,0xcf,0x5e,0x49,0x13,0x62,0xa0,0x71,0xce,0x27,0x7b,0x6c, +0xe0,0x9f,0x50,0x1c,0xa5,0x77,0xf5,0x68,0xbb,0x23,0x1c,0x24,0x2a,0xa7,0x91,0x2c,0x80,0x73,0x21,0xac, +0x1d,0xa3,0x28,0x87,0xff,0x0f,0xa2,0xd4,0x67,0xe8,0xa0,0xd1,0x71,0x06,0x03,0xa3,0xa8,0x5e,0xc7,0x85, +0x09,0x38,0x6b,0x42,0x76,0x44,0x16,0x8c,0xa3,0x29,0x50,0x95,0x05,0x05,0xfc,0x2d,0xe0,0xef,0x02,0xfe, +0x2e,0x9a,0x8f,0xb7,0xb5,0x83,0x70,0xcc,0xa7,0x93,0x72,0xba,0x5d,0x79,0x12,0x66,0x74,0x1b,0xd6,0xe8, +0x68,0xd7,0xad,0x4e,0x2b,0xd9,0x3d,0x94,0x49,0xba,0xbe,0xe9,0xf2,0x61,0x88,0x7d,0xf4,0x07,0x78,0x39, +0x26,0x5e,0x16,0xc4,0xcb,0xc5,0x32,0x5e,0x4a,0x79,0x9a,0xc9,0xcb,0x1c,0x78,0x97,0x53,0x7f,0x4c,0x61, +0x3c,0x61,0x8f,0x4c,0x61,0x4c,0xfd,0xd7,0x79,0x59,0xb7,0xec,0xb7,0xf0,0x92,0x0d,0xe0,0xb5,0x79,0x49, +0xa3,0xd8,0x3a,0xd7,0xb6,0x24,0x37,0x49,0xcf,0x2b,0x92,0x3a,0x9c,0x62,0x39,0x4a,0x36,0xa0,0xb8,0x7c, +0x0c,0xc5,0xe3,0xec,0xce,0xee,0xe3,0x9a,0x1d,0xe0,0x7d,0xa6,0x6a,0x81,0x3e,0x1b,0x0c,0x2d,0x14,0x7d, +0xc1,0xc5,0x67,0x66,0xe6,0x1e,0x97,0xfc,0x91,0x0a,0xcd,0xb5,0x62,0xa9,0x12,0x2f,0xf0,0x12,0x05,0x8f, +0xdb,0x1d,0x54,0xab,0xe3,0xb2,0xaa,0x7b,0xf4,0x53,0x9b,0xaf,0x7d,0x12,0x11,0xba,0x19,0xaf,0xb4,0x37, +0x79,0x72,0x79,0xdb,0x5c,0x49,0xfd,0x40,0xcb,0xdf,0xe8,0xd7,0xd6,0xb5,0x5d,0x72,0x67,0x55,0x74,0xea, +0x73,0x76,0x57,0x44,0xbb,0x81,0x78,0x08,0x1d,0x82,0x2a,0x3d,0x8a,0xef,0x60,0x54,0xe5,0x51,0xdd,0xff, +0xa2,0x5a,0x58,0x80,0xaa,0x79,0xa4,0xc9,0x6a,0xb5,0xca,0xaf,0x42,0x7d,0x16,0xb5,0x2d,0x59,0xea,0x8e, +0x89,0x33,0x64,0x65,0x43,0x5e,0x85,0x5b,0xc4,0xbb,0xca,0xfa,0xdc,0xed,0x4d,0x8f,0xb2,0x7e,0x55,0x0d, +0x22,0x0f,0xf4,0xba,0xf7,0xb2,0xbe,0x70,0xfa,0x00,0xcb,0xb6,0xd9,0x09,0xc7,0x59,0x4b,0xd5,0x8f,0xe3, +0xc1,0x1c,0x0b,0x1d,0x68,0x67,0x67,0x79,0xc5,0x66,0xa5,0xed,0x7a,0x95,0x2d,0xa3,0xca,0x87,0x65,0xba, +0x99,0xc8,0x69,0x9b,0xd5,0xba,0xa6,0x2d,0x81,0x1f,0x51,0xa3,0xea,0x03,0x5d,0x3e,0xb1,0x2b,0xdf,0xc2, +0xcc,0xd2,0xee,0xfb,0x7a,0xb7,0x36,0x76,0x1e,0x53,0xca,0xa3,0xc5,0x82,0x6b,0xd9,0x46,0xf7,0x0f,0xcb, +0xb4,0x83,0x35,0x05,0x10,0x15,0xe3,0x46,0xbf,0xed,0x42,0x17,0x94,0x7b,0xd1,0x10,0xd0,0x86,0x1e,0x2b, +0x92,0xd2,0x90,0xc5,0xe6,0x62,0x52,0x62,0x90,0x13,0xe0,0xae,0xea,0x38,0x1e,0x56,0x02,0x7e,0xad,0x6f, +0x50,0x98,0x7d,0xf0,0xf8,0x42,0x3f,0x8d,0x17,0xe9,0x28,0x2e,0x61,0x09,0x43,0x2d,0xdb,0x93,0x11,0x5e, +0xbb,0xb9,0x37,0xa5,0x93,0xe9,0x30,0xc7,0x45,0x2f,0xd8,0xdb,0xfa,0x57,0x0a,0x53,0x2d,0xfb,0xb4,0x0f, +0xd8,0xac,0x6c,0xd0,0x86,0xa5,0x92,0x8d,0x81,0x96,0x48,0xad,0x55,0x33,0x85,0x5c,0x03,0xe1,0x07,0xad, +0x3b,0x6a,0x5a,0xd6,0x8f,0xe9,0x00,0x69,0xfa,0xa2,0xcc,0xed,0xdf,0x7f,0x77,0xa5,0x99,0x40,0x5e,0x2d, +0x11,0x5c,0xd4,0x44,0xcb,0x04,0x4e,0x08,0x56,0x33,0x9c,0xbf,0x46,0x23,0x0c,0xbd,0xcc,0x43,0x27,0xd8, +0x50,0x24,0x1d,0x5d,0xab,0xf4,0x66,0x19,0x76,0x7e,0xa1,0x9f,0x22,0xab,0xd6,0xbd,0x1e,0x6c,0xce,0x69, +0x75,0x8a,0x2c,0xfc,0xed,0xae,0xa5,0x59,0x86,0xd1,0x17,0x6d,0x37,0xad,0x66,0x91,0x74,0xca,0x0e,0x03, +0xa2,0xaf,0x23,0xd3,0x41,0xeb,0x08,0x01,0x28,0xfc,0xba,0xef,0xec,0x6c,0x03,0xd6,0x8e,0xa3,0xb3,0x51, +0xa9,0x9d,0xd9,0xf9,0x09,0x19,0x9d,0x4a,0x4e,0xdd,0xd8,0x61,0xe3,0xae,0x66,0x7b,0xa3,0x90,0x22,0xe6, +0xda,0xc2,0xaf,0x88,0x0a,0xe1,0xf6,0xc4,0x3b,0x94,0xb7,0xcd,0xf5,0xb3,0x1d,0x1b,0x3e,0x86,0xe9,0xc1, +0x1f,0xc4,0x89,0x44,0x0e,0xcb,0x35,0xc2,0xd3,0xe5,0x1a,0xe1,0xc2,0xa4,0x45,0x58,0xe3,0x24,0x28,0x41, +0x03,0xd4,0x3d,0x61,0xf4,0xa4,0x27,0xd3,0xf6,0x55,0x8f,0x53,0xc1,0x9d,0x99,0xdf,0x63,0x6e,0x78,0x79, +0xf5,0x50,0x89,0xfe,0xe0,0x4c,0x68,0x18,0x5b,0x0a,0x59,0x1f,0xd9,0x5c,0xc6,0x54,0x61,0x30,0x9b,0x17, +0x63,0xb7,0xb8,0xcc,0x30,0x06,0xb1,0x46,0x78,0x31,0x2f,0x50,0x45,0x36,0x19,0xbe,0x60,0x08,0xc0,0x01, +0xd5,0xc2,0xd4,0xca,0x2c,0xe5,0xcb,0xf5,0xf1,0xb6,0xde,0xc9,0x38,0x77,0x6a,0xd3,0xd6,0xd2,0xf3,0xb4, +0x44,0xe9,0x38,0xda,0x8c,0x8d,0x9b,0xf1,0x04,0x84,0x72,0x16,0x35,0xae,0x28,0x15,0x69,0xa3,0xd0,0x6d, +0xaf,0xba,0xa4,0x46,0x09,0x1c,0x26,0x5d,0x29,0xf3,0x5e,0x47,0xc4,0x4b,0x02,0x54,0x1e,0x2f,0x93,0x09, +0x88,0xf0,0xc4,0x22,0xa9,0x64,0xa2,0x2b,0xc4,0xd6,0x42,0xd0,0x5f,0x8f,0x94,0x0d,0x28,0x30,0xad,0xab, +0xff,0x2a,0x24,0x3c,0xa6,0x37,0xec,0x46,0xd8,0x7f,0x67,0x8a,0x54,0x67,0x4b,0x5f,0xfe,0xf9,0x22,0x5d, +0x42,0x3c,0x5c,0x5c,0x9b,0x88,0xc7,0xd3,0x76,0xac,0x2c,0xbb,0xca,0x65,0x48,0x37,0xe7,0xf1,0xee,0xe3, +0x86,0x03,0x42,0x56,0x91,0xce,0x56,0x6b,0x6a,0xe4,0xfa,0xbb,0xb7,0x6f,0x2e,0xae,0x2f,0xe0,0x48,0xfe, +0xf2,0xc5,0xd9,0xf5,0x8b,0x9f,0x5f,0xbc,0xb9,0x38,0xc7,0xf6,0x1e,0x6f,0x6f,0x96,0x3d,0xd2,0xde,0x8c, +0x5f,0xd9,0xb3,0xa5,0x0b,0xb0,0xa7,0x2e,0xed,0x53,0xb9,0xb4,0x4f,0xf0,0xf2,0x0e,0x55,0xa1,0xd6,0x6f, +0x6f,0x78,0x34,0x11,0x6b,0xfc,0x10,0xd6,0xf8,0x0a,0x1f,0xa7,0xe5,0x62,0xb8,0xdb,0xc9,0xe5,0xf0,0x8a, +0x82,0x6a,0x15,0xb3,0xf8,0x26,0xe9,0x3b,0x4e,0xe8,0x04,0x4e,0x4b,0x4f,0xf5,0x7c,0xfa,0x1e,0x33,0x64, +0xbd,0x07,0xa5,0x27,0xe1,0x00,0x50,0x19,0x62,0xf2,0x67,0xa5,0xd8,0xf6,0xf6,0x85,0xf7,0xda,0xb5,0xc6, +0x29,0xb3,0x5e,0xca,0xcc,0xa1,0x89,0x81,0xdc,0xd8,0x8d,0xc3,0xee,0x81,0xcb,0x3a,0xc9,0x36,0x1a,0x9c, +0xb9,0x1c,0x9c,0x25,0x3d,0x29,0x02,0x8b,0xbf,0x63,0x46,0xd3,0xae,0xf0,0xc1,0xf6,0x25,0x26,0xab,0xf0, +0x42,0x68,0x65,0x52,0x69,0x99,0x94,0x48,0x9d,0x43,0x01,0xd6,0xf4,0xdd,0x56,0x71,0x1f,0x66,0x25,0x9e, +0x48,0xdf,0xd2,0xf1,0x0c,0x34,0x7b,0x2b,0xd8,0x62,0x6d,0xe1,0xaa,0xca,0x55,0xa7,0xee,0xb2,0x7e,0x6b, +0x37,0xaf,0xec,0x0f,0xda,0x2a,0xa2,0xf9,0xc0,0x33,0xad,0xda,0xd9,0x25,0xc6,0x6a,0x6c,0x5a,0x1d,0x77, +0xad,0xa6,0xa8,0xcd,0x2c,0xaf,0xe2,0x36,0x48,0x5b,0x2b,0xa5,0x0b,0x0a,0xf5,0x64,0x51,0xe8,0x27,0x8b, +0xd8,0x72,0xb2,0x28,0xf8,0x65,0x02,0x65,0xed,0x89,0x12,0x70,0x0d,0xaf,0x36,0x9f,0xf5,0x2b,0x94,0x73, +0xc9,0x2c,0xe1,0x71,0xae,0x93,0x58,0x69,0x46,0x28,0x63,0xfc,0x3a,0x73,0xfe,0xbb,0xf7,0x7a,0xf8,0x21, +0xbc,0x1e,0xa9,0xf7,0x29,0x31,0xaf,0x92,0x80,0xc5,0xe9,0xcb,0xe1,0xce,0x22,0x7e,0x06,0x1f,0xb3,0xff, +0xa4,0x93,0x09,0x45,0x57,0xb6,0x6a,0xce,0x09,0x73,0x7f,0x61,0x09,0x10,0x05,0x07,0xde,0x4a,0xdc,0x75, +0x73,0x5e,0xe6,0x0b,0x31,0x1d,0x0a,0x47,0x88,0xef,0x60,0x76,0xb3,0x20,0xd7,0xd2,0x17,0xe2,0x2c,0x2b, +0x52,0x0a,0xcc,0xb4,0x15,0x0f,0x8a,0x6c,0x32,0x2f,0x93,0xde,0x16,0x8a,0x94,0xe0,0x10,0xba,0x45,0x62, +0x21,0xfc,0xc1,0x4d,0x39,0xf0,0x27,0x33,0xdf,0x80,0x5f,0x8a,0xdb,0x44,0x36,0x5c,0xa5,0x8b,0x11,0xe8, +0x58,0xee,0x5f,0xe4,0xf9,0xe7,0xd7,0x43,0xb7,0xde,0x76,0xe3,0xc3,0x59,0x4f,0x46,0x61,0xca,0x0d,0x6f, +0x7c,0x4c,0xd0,0xc1,0x97,0xf8,0xb3,0x64,0x12,0xe3,0x94,0xab,0xaa,0x7c,0x3e,0x1f,0xfd,0x2b,0xfd,0xa4, +0xdd,0x65,0x59,0x6c,0xc2,0x2f,0x8a,0x54,0xe2,0x77,0x98,0xfb,0xfe,0xdb,0x92,0x1e,0x3d,0x13,0x94,0xf9, +0xc0,0x4d,0x75,0x59,0x64,0xa9,0x0e,0x8b,0xae,0x0a,0x23,0xcf,0x65,0x21,0xbd,0x94,0xa8,0x7a,0xfb,0x38, +0x7a,0x8e,0xff,0x0f,0xcc,0x82,0xe1,0x80,0xc5,0x40,0x03,0x00 }; \ No newline at end of file diff --git a/code/espurna/static/index.sensor.html.gz.h b/code/espurna/static/index.sensor.html.gz.h index 9cea92a0..7eb1fa45 100644 --- a/code/espurna/static/index.sensor.html.gz.h +++ b/code/espurna/static/index.sensor.html.gz.h @@ -1,4 +1,4 @@ -#define webui_image_len 51993 +#define webui_image_len 51995 const uint8_t webui_image[] PROGMEM = { 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0xec,0xbd,0xe9,0x76,0xdb,0xc6,0xb2,0x30,0xfa,0x2a, 0x10,0x9c,0xad,0x10,0x11,0x38,0x6a,0xb0,0x4c,0x1a,0xd2,0xa1,0x26,0x4b,0x89,0x2d,0xc9,0x96,0x1c,0xc7, @@ -2303,301 +2303,301 @@ const uint8_t webui_image[] PROGMEM = { 0xcb,0x64,0x72,0x8f,0xae,0xbe,0x7f,0xf1,0xcb,0xdd,0xbf,0x20,0xfb,0x8b,0x67,0xff,0x38,0xf8,0x8e,0x7e, 0xdf,0x3c,0xff,0xf3,0x84,0xbf,0xf5,0xe6,0xd9,0xd1,0xbd,0x5f,0x06,0xcf,0xef,0x1e,0x22,0xd7,0xb3,0x83, 0x3f,0x7f,0x83,0x5c,0xaf,0xfe,0xf1,0xe4,0xc5,0x64,0x72,0x1f,0x15,0x7e,0xf4,0xe2,0xee,0xbd,0xbb,0x13, -0x95,0xe1,0x87,0xb7,0x3f,0x3f,0x7a,0x73,0x70,0xf7,0xcd,0x63,0xba,0x3e,0x7a,0xf1,0xea,0xde,0x2f,0xa8, -0xdd,0xe1,0xe8,0xcd,0xeb,0xc9,0x7d,0x14,0x45,0xed,0x4e,0x1f,0x65,0xe0,0xaa,0x7f,0xa0,0x13,0x94,0x28, -0xcc,0xec,0x04,0xc0,0xe9,0xea,0xee,0xf0,0xd5,0x0b,0xcf,0xb0,0x0e,0x07,0x0f,0x18,0x61,0xfd,0x81,0x09, -0x6c,0x44,0x87,0x49,0x3a,0x3a,0x58,0x88,0xf9,0xae,0xe9,0xca,0x8b,0xe4,0x8c,0xa6,0xfe,0x46,0x0e,0x0b, -0xbb,0x37,0x8f,0xd2,0x8b,0x35,0x22,0x18,0x6e,0x10,0xf0,0xd6,0x7b,0xb6,0xb9,0xc8,0x96,0x0c,0xc0,0xef, -0xbd,0x82,0x13,0xae,0xa4,0x1e,0x6e,0x4a,0x10,0x73,0xe8,0xb7,0x62,0x55,0xd3,0x30,0xa1,0x39,0x6c,0xd8, -0x38,0x78,0x05,0x93,0x51,0xdc,0xae,0x45,0xa3,0x6f,0x12,0x68,0x4f,0x73,0x73,0xf0,0xef,0xe0,0x69,0x82, -0x08,0x47,0xe8,0x5b,0x3a,0xee,0xce,0xbe,0x98,0x8b,0x01,0x91,0x26,0x54,0x74,0xf0,0xbb,0x03,0x71,0x30, -0xe6,0x7e,0x7d,0x71,0x77,0xfc,0x8d,0xdc,0xe3,0xf6,0xf0,0x25,0x06,0xf5,0xc7,0x0d,0x80,0xf2,0xde,0xfe, -0xcc,0xaf,0xd2,0xf2,0x64,0x7b,0x3c,0xea,0xd6,0x67,0x2f,0xf1,0x10,0x0e,0x3c,0x83,0xc7,0x05,0xcd,0xb7, -0xd7,0x09,0x0b,0x2f,0xda,0x29,0xff,0x76,0x97,0xf2,0x9a,0xb7,0xfb,0xf4,0xe5,0xdf,0xa8,0xf8,0x97,0x9b, -0x7a,0x40,0x1b,0xeb,0x6b,0xac,0x09,0xba,0x7d,0x97,0x94,0x17,0xd8,0x12,0xde,0x82,0x58,0x53,0xfa,0x3c, -0x24,0x97,0x05,0x25,0x3e,0x7f,0xcc,0x33,0xba,0x4e,0x06,0x5a,0x9a,0x42,0xd3,0xc4,0x5c,0xff,0xf0,0xea, -0xf9,0x4b,0x73,0x73,0x48,0x1b,0xc4,0xb1,0xda,0x18,0x44,0x63,0x62,0xea,0x3d,0x51,0xf5,0xb6,0xab,0xbd, -0x88,0xd4,0x96,0x04,0xba,0xc9,0x54,0xfd,0x63,0x9a,0xae,0x51,0x07,0x61,0xc9,0x6e,0xf9,0x5e,0xb5,0x4e, -0xf2,0x39,0x74,0xe9,0xf1,0xd7,0xc9,0x59,0xf1,0xf5,0xc2,0x0b,0x44,0x3a,0x45,0x37,0x41,0x48,0x7f,0x86, -0xc3,0x90,0x71,0x2a,0x8b,0xcb,0x46,0x76,0x7b,0x39,0x78,0x0c,0x7f,0xe2,0x83,0xf4,0xde,0x6d,0xa4,0x23, -0x7c,0x00,0xf1,0x2f,0xcf,0xdf,0xbc,0x54,0x0e,0xaa,0xc1,0xb8,0xda,0x1c,0x8b,0x20,0xd5,0x9f,0x84,0x07, -0xdf,0x35,0x66,0xcc,0xde,0x91,0x02,0x57,0xbb,0xa5,0xd0,0x93,0xd5,0xa7,0xa9,0x18,0xfe,0x34,0xd4,0x68, -0xb4,0xc7,0xbb,0xf5,0xd2,0x0f,0xb9,0x5e,0x70,0x45,0x2d,0x2e,0x87,0xc3,0xeb,0xa6,0x4d,0xbf,0xa5,0x65, -0xf1,0x2a,0x59,0xb6,0xb0,0x6e,0x10,0x56,0x56,0x22,0x2a,0xd7,0x12,0x50,0x79,0x18,0x7b,0x13,0x4f,0xf5, -0x98,0x9f,0x0f,0x89,0x9c,0x15,0xa9,0xe1,0x88,0x88,0x04,0x53,0x16,0xf6,0x23,0xf4,0xcf,0x3f,0x8a,0x9c, -0xcf,0x09,0x15,0xdf,0x7a,0xf4,0xe7,0xbb,0x93,0x70,0xf4,0xed,0xb7,0xf8,0x33,0xa1,0x3f,0xdf,0xfc,0x19, -0x7f,0xee,0xd3,0x9f,0xfb,0x7f,0xc1,0x1f,0x3c,0xbd,0x87,0xa7,0xf7,0xf0,0xf4,0x2e,0x1e,0xdc,0x3d,0xa0, -0x3f,0x07,0x78,0x7a,0xc0,0xef,0x4e,0xc2,0x49,0xf8,0x2d,0x2c,0x34,0xe8,0x1f,0xa5,0xe2,0x31,0xf2,0xdd, -0xa5,0x92,0xf0,0xd2,0xbd,0x7b,0xf4,0xef,0xfe,0x37,0x21,0x4a,0xb9,0xf7,0xdd,0x24,0x44,0x91,0x28,0xfb, -0x1b,0xca,0xf7,0xcd,0xdd,0x6f,0x42,0x7c,0x0c,0x5f,0xc5,0xe7,0xbf,0xa5,0xbc,0xa8,0x0b,0x2a,0xf5,0xe7, -0x6f,0xbf,0x09,0xff,0x4c,0xf9,0xfe,0x72,0x7f,0xb2,0x30,0xd1,0x61,0x94,0x25,0xbb,0xc6,0xea,0x85,0x29, -0x7b,0x12,0xe7,0x0f,0xe3,0xc9,0x2c,0x8f,0x46,0x39,0x82,0xbf,0xfd,0xf0,0xe2,0xc8,0x1b,0xfa,0x9c,0xe4, -0x0d,0x89,0xc4,0x1d,0x79,0xc1,0x50,0xf7,0xa3,0x41,0xf9,0x4c,0xee,0xa0,0xc2,0xc4,0x7f,0xde,0x0d,0x90, -0xc7,0x64,0x48,0xfe,0x44,0xe9,0x77,0x79,0x10,0xc5,0x7f,0x57,0x0f,0x54,0xbd,0x16,0x36,0x86,0x87,0x4b, -0x49,0x34,0x29,0xd3,0x03,0x01,0x07,0x7a,0xf8,0xe0,0x8e,0xba,0xc0,0x53,0xc6,0x07,0x14,0x50,0x1c,0xa2, -0x89,0x04,0xe2,0xa9,0x80,0xb6,0xdd,0x8c,0x05,0x9f,0x88,0x34,0xd1,0x9e,0x16,0xe5,0x45,0xb3,0xc8,0xe0, -0x47,0x18,0x8f,0x6f,0xcf,0x1f,0x8d,0xfe,0xf1,0x7e,0xb9,0x08,0xe4,0x26,0x19,0xfd,0xb6,0x08,0xe6,0xef, -0x2f,0xff,0x6b,0xef,0x3f,0xbe,0xba,0xf5,0xa7,0x7f,0xee,0xdf,0x7e,0xef,0xbf,0x0f,0x1e,0x3c,0x0c,0xc7, -0xef,0x67,0xd3,0xe8,0xea,0x1a,0x1e,0xcb,0xef,0xdf,0x6f,0x17,0x57,0xdf,0x84,0xd7,0xb7,0xee,0x84,0x79, -0xdc,0x9a,0x7e,0xc9,0x92,0x56,0x28,0x4e,0x42,0xaa,0x78,0x98,0x06,0x62,0x21,0xe6,0x6b,0x2f,0x4f,0xf0, -0x46,0x96,0x44,0x78,0xcf,0x70,0x45,0x9a,0x61,0x4a,0x56,0x29,0xf4,0xaf,0x38,0xdf,0xb5,0x39,0x0a,0x0e, -0xdd,0xc1,0x39,0x20,0x0f,0x18,0x15,0x20,0x5d,0xe2,0x04,0xc7,0xf1,0xca,0x8d,0x0a,0x07,0x19,0x1d,0xb4, -0x9b,0xaa,0x96,0x2c,0x09,0x51,0x02,0x74,0x1e,0xd6,0x83,0x6f,0xd8,0x01,0x90,0x36,0x4a,0x48,0x31,0x07, -0x07,0x34,0x1b,0x69,0xe7,0x3c,0xc1,0x49,0x99,0xe4,0x4b,0xba,0xdf,0xc0,0x36,0x9c,0xef,0x69,0x5d,0x8b, -0x11,0xc6,0x9e,0x17,0x84,0x7b,0x07,0x12,0xd3,0xfb,0xf7,0x9a,0x05,0xf3,0x64,0xa7,0x55,0x7b,0x40,0xa9, -0x72,0x1b,0xd1,0xd0,0x03,0xb4,0xab,0x0f,0x96,0xd9,0xe9,0x69,0x8a,0xdd,0xdd,0xfa,0x4c,0xd1,0x0a,0x16, -0x3e,0xdb,0x1b,0x05,0x18,0x0d,0x1a,0x83,0xc9,0xe8,0xbb,0xd1,0xe2,0x8a,0x26,0xf0,0xc1,0x75,0x93,0xb2, -0xb8,0xc5,0x4a,0x8c,0x56,0xdd,0x60,0xcf,0x8f,0x2b,0xa9,0x1a,0x4b,0x1f,0x65,0x4a,0xc0,0x74,0x81,0xc9, -0x09,0x0e,0x77,0x3a,0x31,0x5b,0x1c,0x18,0x0e,0x22,0xfb,0xf6,0xf6,0x0a,0xe9,0xfe,0x52,0x61,0xc4,0x01, -0x48,0x46,0xaa,0xfe,0x4c,0x15,0x39,0x38,0x49,0x72,0x74,0xf5,0x31,0x75,0x3e,0x62,0xbf,0x70,0xe7,0x5d, -0x24,0x5f,0x06,0x45,0xbe,0xfa,0xc2,0xb0,0x12,0x09,0xe4,0x86,0x34,0x5a,0x8f,0xde,0x1c,0x3e,0x7f,0x3e, -0x90,0xe0,0xc4,0xd5,0xc0,0xff,0xfa,0xd1,0xd7,0x03,0x58,0x44,0x6c,0xce,0xce,0x07,0x5f,0xff,0xe3,0x6b, -0x7e,0xef,0xeb,0xc4,0x4a,0xfb,0xed,0xeb,0x20,0xe4,0x17,0x97,0x38,0xa0,0xaa,0xc1,0xd7,0x13,0xeb,0xe1, -0x77,0x5f,0x87,0xfc,0x06,0x9e,0x9f,0x7f,0x59,0x9f,0xa7,0x39,0x95,0x38,0xfa,0x3a,0xd8,0x1b,0xd0,0xc4, -0xf8,0x82,0x4a,0x0d,0xf2,0x34,0xa3,0xa7,0xa5,0x50,0x90,0x18,0x43,0x5a,0x20,0x03,0x58,0x60,0xd1,0x8b, -0xea,0x9d,0x31,0x77,0x74,0x60,0x6d,0x49,0x67,0x69,0xcd,0xa8,0xdc,0x8d,0xc8,0xbb,0xc1,0xc5,0xa2,0x4e, -0xb9,0x05,0xc6,0x5c,0xba,0x4e,0x21,0x39,0x71,0x0a,0xeb,0xec,0x3d,0xe5,0xdf,0x4c,0x89,0x07,0xd1,0x24, -0x52,0xb8,0x5a,0x7b,0x3d,0x2f,0x6d,0xb7,0xbd,0x6f,0xdd,0x32,0xa0,0x58,0xad,0x23,0x90,0x18,0x76,0x55, -0xa9,0x46,0x4a,0x9e,0xd0,0x01,0x78,0x99,0x9d,0x66,0x0c,0xdb,0x1b,0xf2,0xe5,0x2b,0x81,0xff,0xc4,0xe5, -0x0f,0xef,0xd4,0xc5,0x8b,0xa4,0xfa,0xa8,0x2e,0x9f,0xbf,0x52,0x17,0x8f,0x7f,0x7a,0x83,0xd8,0x1c,0x27, -0xe7,0x4f,0x72,0x71,0xe3,0xe6,0x9b,0x37,0xd4,0x35,0x30,0x8b,0xc7,0xf5,0x23,0x61,0x5b,0xf8,0x5a,0x4c, -0xd8,0x71,0xf5,0x8c,0x48,0x5b,0xb9,0x7a,0x91,0xe5,0x1c,0x92,0x1a,0xd7,0xef,0x1e,0x57,0x72,0xf1,0xf6, -0x08,0x24,0x57,0xb9,0xfa,0xf2,0x3d,0xd1,0xc1,0x72,0xf5,0x6a,0xb3,0xaa,0x52,0xb9,0xc4,0x3e,0x2f,0x57, -0x2f,0x73,0x22,0x1b,0x4e,0x00,0xb0,0xfb,0x6b,0x5d,0xff,0xc0,0xc8,0x6b,0xd6,0xf5,0xf3,0xfc,0x13,0xdd, -0x2e,0x4f,0x7e,0x7b,0x8d,0xc0,0x0a,0xcf,0x97,0x9f,0xe5,0xee,0x85,0xa6,0x02,0xe8,0xb6,0xae,0xd6,0x1f, -0xf9,0xa9,0xba,0xb6,0x9f,0x51,0x73,0x5e,0x14,0x7c,0x65,0xd6,0xa3,0x87,0xe8,0xb5,0x9c,0xf4,0x31,0xe5, -0x57,0x8a,0x75,0x76,0x42,0xc7,0xb9,0xec,0xdb,0xb3,0x36,0xc2,0x00,0xe0,0x9b,0xc0,0xf1,0xb0,0x63,0x12, -0xfb,0x24,0x05,0xec,0x9a,0x24,0xba,0x5a,0x60,0xf1,0x25,0x36,0x12,0x24,0xed,0xe9,0x92,0x35,0x5f,0x28, -0xcc,0x68,0x67,0x32,0x81,0xda,0x68,0xb6,0xd3,0x2b,0x13,0xaa,0x48,0x2f,0x50,0x05,0xb1,0xc7,0x3b,0x46, -0x9f,0x2d,0x6a,0x4a,0xb3,0x47,0xa1,0xf0,0xf2,0x04,0xc2,0x92,0xe3,0x80,0x0c,0x66,0xa2,0x4a,0x44,0x16, -0x85,0x4c,0x9d,0xef,0xef,0x9b,0xc9,0xc2,0x0c,0x36,0x44,0x00,0x56,0x8a,0x3d,0xd0,0x77,0xbf,0xf9,0x26, -0xd0,0x4e,0x1f,0xc0,0x26,0xa1,0x4d,0x17,0x56,0x7e,0x26,0xa5,0x3c,0x3d,0x86,0x25,0x42,0x58,0x37,0x0d, -0x2a,0x61,0x73,0xa1,0x91,0x31,0x6c,0xe9,0xa0,0x37,0xb5,0x62,0x28,0x27,0x1a,0x45,0x0c,0x54,0x40,0x72, -0x7c,0x42,0x0c,0xee,0xd9,0x79,0xf6,0xaf,0x8f,0xab,0x8b,0xbc,0x58,0xff,0x4a,0x9b,0xfd,0xe6,0xd3,0xe5, -0xe7,0x2f,0xbf,0x31,0x88,0x97,0x79,0xe9,0x91,0xfd,0xd2,0xa3,0xef,0x0f,0x1f,0x3f,0x79,0xfa,0xc3,0xb3, -0xe7,0x7f,0xfd,0xdb,0x8f,0x2f,0x7e,0x7a,0xf9,0xea,0x3f,0x5f,0xbf,0x39,0x7a,0xfb,0xf3,0xbb,0x5f,0xfe, -0xfe,0x0f,0xf7,0xa5,0xaf,0xec,0x97,0x88,0xe5,0xa0,0x33,0xfd,0xdb,0x3f,0xff,0xe5,0x3b,0x37,0xd3,0x7f, -0x74,0x4b,0x76,0x33,0xec,0xd9,0x19,0xfe,0xeb,0x7f,0xeb,0x53,0xcd,0x0f,0x3e,0x0c,0x47,0x34,0x64,0xf3, -0x45,0xf4,0xde,0x9b,0x7e,0xfd,0xe0,0xe1,0x2c,0x1c,0xdf,0xd9,0xbe,0x7f,0xef,0x35,0x81,0xe1,0x12,0xd0, -0x3d,0x45,0x9c,0x4e,0x8b,0x87,0x93,0xe9,0x68,0x54,0x04,0xc9,0x30,0xce,0xe7,0x2c,0x0e,0xe2,0x18,0xd2, -0xbe,0x5c,0x72,0xaf,0xf9,0xc1,0x6d,0x73,0xb2,0x8d,0x68,0xcf,0x69,0xd0,0x3e,0xed,0x09,0x93,0x83,0x49, -0x48,0x1f,0xbd,0x7a,0xfe,0xb7,0xf4,0x8b,0x99,0x02,0x4e,0xb7,0x1f,0x7c,0x1b,0x7a,0xff,0xf1,0x55,0x23, -0x1f,0x6b,0x1f,0x43,0xeb,0x8c,0x5e,0x35,0xf4,0x5d,0x8a,0x0d,0xce,0x99,0x91,0x7f,0xad,0x94,0x7d,0x50, -0x63,0xf7,0xda,0x48,0x30,0x60,0x98,0x6b,0x0c,0x5e,0x1b,0x60,0x53,0x9b,0x55,0x5c,0x3e,0xb2,0x24,0x41, -0x97,0xe9,0x71,0x55,0x9c,0x7c,0x14,0x4b,0x38,0x2e,0x46,0x28,0xd1,0xec,0xf4,0x8b,0x80,0x02,0x70,0x50, -0x38,0xad,0xa9,0x0d,0xdc,0x82,0x0e,0x99,0xfd,0x46,0x5d,0x6e,0x2c,0x46,0xb8,0xf4,0x28,0x75,0xde,0x67, -0x9c,0x93,0x97,0x25,0x9d,0x0c,0xc4,0xc6,0x80,0x76,0x6c,0x2f,0xa8,0xee,0x72,0x72,0x17,0x52,0xa1,0xde, -0xf5,0xc2,0x5b,0x0e,0x0a,0x2a,0xec,0x9f,0x36,0x17,0xaf,0x99,0x99,0x8f,0xf9,0x8a,0xbe,0x9f,0x53,0x89, -0x72,0xc3,0x4a,0xf5,0x49,0x53,0x8f,0x65,0x21,0x69,0x68,0x45,0xbf,0x05,0xe1,0x25,0x4b,0x25,0x1b,0xa3, -0x01,0x61,0xc3,0x11,0xc7,0xc6,0x90,0x7e,0x29,0xe8,0x3e,0xab,0x71,0x7c,0x24,0x3c,0xcd,0xca,0x8b,0x4b, -0x22,0x0b,0xec,0x75,0x06,0x5a,0xe0,0x29,0x2d,0xd4,0xd7,0x6c,0x30,0x39,0xcd,0x95,0xa5,0x24,0xc2,0xc7, -0xb6,0xb4,0x6c,0x4d,0xae,0xf1,0xe3,0x97,0x3f,0x3d,0x11,0x73,0x2f,0x86,0x23,0xb2,0xcc,0x1e,0xe1,0xa8, -0x79,0xf7,0x9e,0x04,0x9f,0x37,0x0f,0x81,0xf2,0x35,0x06,0x65,0x04,0x0f,0xcf,0x47,0xb5,0x3f,0x41,0xac, -0x35,0x1f,0x46,0x72,0xbf,0x93,0xf1,0xae,0x89,0x57,0xa1,0x9a,0xcc,0x03,0x47,0xd4,0xa4,0xf7,0x3d,0x1b, -0x86,0x0e,0x18,0xa1,0x46,0x93,0x66,0xac,0x45,0x1c,0x3c,0x7e,0xf9,0xf6,0x68,0x70,0x4a,0xa4,0xd2,0xf9, -0xe0,0x02,0x30,0x9d,0x74,0x7a,0xd3,0xf3,0x0b,0x88,0xb3,0xe9,0x0c,0xdf,0xb0,0xd4,0x82,0xba,0xb5,0xc2, -0x56,0x5d,0x15,0x44,0x6d,0x2c,0xd3,0x4f,0xc4,0x46,0x54,0xe3,0x01,0xf3,0xcd,0x83,0x97,0x7f,0x1b,0xd4, -0x05,0x53,0x19,0x74,0x22,0xa5,0x63,0x58,0x66,0x22,0x0c,0x05,0x3b,0xce,0xd4,0x12,0x1b,0x4e,0xd6,0x69, -0x63,0xb5,0x70,0x0f,0x66,0xfc,0xe8,0x83,0x47,0x95,0xd4,0x4b,0xad,0xab,0x24,0xb0,0x47,0xf5,0xed,0xfa, -0x8c,0xce,0xef,0xd4,0xda,0x85,0x9d,0x55,0xb6,0x91,0xc7,0x58,0x66,0xf0,0xa0,0xc0,0xe6,0x69,0x29,0x1a, -0x7b,0x43,0xab,0xcc,0x34,0xe5,0xf4,0x14,0xf4,0x6e,0x43,0xb2,0x52,0xfd,0x15,0x42,0x57,0x22,0x02,0xab, -0xd3,0xb2,0xb8,0x10,0x31,0x12,0x7c,0x9f,0x20,0xba,0x56,0x64,0x0a,0x8c,0x01,0xb3,0xdf,0xd2,0x87,0xa7, -0x65,0x9a,0x7e,0xc0,0x95,0x29,0xf2,0xb9,0xf4,0x6c,0x4d,0x85,0x15,0x83,0x15,0x06,0x08,0xc5,0x9e,0x66, -0x7c,0xc4,0x81,0x44,0x4a,0x3e,0x25,0xd9,0x0a,0x87,0xfd,0x80,0x41,0x12,0xe1,0x81,0x3b,0x78,0x79,0xf4, -0x68,0x3c,0xa0,0x35,0x58,0x65,0x34,0x4b,0xa8,0xc9,0x18,0x8f,0x64,0x50,0x5f,0x16,0x23,0x44,0xfc,0x54, -0xf2,0x37,0xfd,0x69,0xbf,0x3d,0x27,0x6d,0xf9,0x22,0x23,0x2e,0x39,0x7a,0x5c,0x8b,0x48,0x77,0x85,0x70, -0x55,0x9a,0x5e,0xa0,0x6e,0xc7,0x8d,0x14,0xee,0x54,0x15,0x2a,0xf3,0x03,0x63,0x68,0x4d,0x76,0xe2,0x46, -0x70,0x84,0x4e,0x73,0xcd,0xe1,0x78,0xaa,0xeb,0xe9,0xc4,0x44,0xb8,0x56,0x80,0xcd,0x84,0xb7,0x2c,0xab, -0x11,0xfa,0x57,0x8d,0x55,0x1e,0x1b,0x60,0x84,0xad,0x4d,0xb4,0x8f,0x90,0xf2,0xd8,0x39,0x70,0x20,0x43, -0xe8,0xd6,0x41,0x16,0x39,0x30,0xae,0x44,0xae,0xf4,0x9b,0xa6,0xc2,0x57,0xea,0x03,0x23,0x7a,0xe1,0x0c, -0x13,0x11,0x0c,0x73,0x86,0xe9,0x12,0x42,0x2a,0xc1,0x4a,0x6c,0x6b,0xb8,0xad,0xe6,0x51,0xb7,0xf2,0x8a, -0x25,0xae,0x44,0x84,0x84,0x22,0x36,0x84,0x46,0x5d,0xe6,0x3e,0xc4,0x73,0x44,0xa5,0xae,0x56,0xe8,0x22, -0xaa,0x3e,0x95,0x7e,0x0e,0x86,0x26,0x27,0x7e,0xa5,0xc2,0x5e,0xb4,0xac,0x18,0x91,0x53,0xef,0x3b,0xdf, -0xa4,0xf7,0x40,0x92,0x98,0xfe,0xa6,0x0f,0xc1,0x12,0x2e,0x51,0x62,0x8b,0x01,0x6d,0xf3,0x18,0x58,0xea, -0x72,0xf9,0x32,0x4f,0x07,0x74,0x2d,0x57,0xc7,0x08,0x07,0x29,0xdb,0x20,0x39,0x03,0xa9,0xee,0x33,0x40, -0x76,0x30,0x86,0x9f,0xd8,0xe7,0x73,0x27,0xd2,0xf4,0x8e,0x96,0x4b,0x04,0xc9,0xa9,0x5a,0x28,0x7d,0x6e, -0x10,0x46,0x00,0x2d,0x75,0x80,0xd0,0x59,0xae,0xba,0x70,0x65,0x9e,0x29,0xd8,0x31,0xad,0xd5,0xa1,0x57, -0x0f,0x79,0x49,0x24,0x0c,0x85,0x79,0xcb,0xca,0xac,0xb6,0xf5,0x2b,0x8d,0xeb,0xa3,0x3a,0xf9,0x22,0xf9, -0x1c,0x41,0x5c,0x52,0x27,0x2b,0xd8,0x70,0xb3,0xa9,0xaf,0xe8,0x45,0x60,0x27,0xed,0xac,0x77,0xcc,0x76, -0xcd,0x8f,0xd9,0xcb,0xfe,0x2b,0xd8,0xb9,0xe9,0x07,0xcd,0xb1,0xdb,0xe2,0x97,0xf7,0xf7,0xad,0x13,0xad, -0xa1,0xfb,0xdc,0xd3,0x97,0xd7,0x90,0x92,0xee,0x8a,0x4c,0x88,0xce,0x14,0xc5,0x7f,0x3d,0x9c,0xe8,0x6f, -0xb6,0x77,0xcf,0x37,0xd8,0xf7,0xb4,0xd0,0x97,0xb7,0x0c,0xe1,0xb7,0x88,0xe5,0x61,0x09,0xf1,0xe0,0x4b, -0x5a,0x87,0x10,0x28,0x63,0x4b,0xb9,0x4c,0xf2,0x9a,0xb7,0x14,0xde,0x5a,0xce,0x69,0xb1,0x31,0x7b,0x3d, -0xa3,0x8a,0x43,0xed,0xa0,0xda,0xe9,0xdb,0x9c,0xff,0xb2,0xb0,0x4f,0x74,0x78,0x22,0x3a,0xd5,0x0c,0xd3, -0x1d,0xdb,0xba,0xc4,0x09,0xda,0x63,0xdc,0xf4,0xc0,0xd0,0x0a,0xda,0x7c,0xac,0x21,0x14,0xea,0xf0,0xea, -0xba,0x35,0x61,0x9d,0x5e,0xc1,0x13,0xac,0x81,0x86,0x4c,0xee,0xdd,0x3f,0xb7,0x5b,0xfe,0x54,0x2a,0x20, -0x0b,0xde,0x23,0x9a,0xe8,0x68,0x30,0x64,0xa7,0x4e,0xcb,0x95,0x1c,0x9e,0x19,0x47,0x3e,0x2c,0x66,0x5a, -0x0e,0xd5,0xb4,0xb4,0x46,0xa0,0x0f,0x64,0xf3,0x02,0xb7,0x1e,0xea,0xac,0xff,0x3f,0x54,0x95,0x25,0xf1, -0x39,0x52,0xa0,0x6c,0xea,0xa8,0xd3,0x89,0x08,0x79,0x07,0xef,0x9e,0x3f,0x7d,0x4e,0xeb,0x90,0xb6,0xdb, -0xf2,0xe3,0xae,0x1a,0xaa,0x97,0xbd,0x9e,0x99,0xda,0x99,0xa1,0x6f,0x92,0x4f,0xe9,0x0d,0xb3,0xd3,0xdf, -0x31,0x3d,0xe9,0xf5,0xf1,0xfa,0xb2,0x7c,0xf2,0x79,0x2d,0xba,0x04,0x21,0x83,0x26,0xfc,0xc0,0x3e,0xf0, -0x28,0xcf,0x6b,0x9c,0xc4,0x96,0x5c,0x94,0x69,0x4c,0x97,0x87,0xe5,0x05,0xb6,0xe3,0xcd,0x27,0xbb,0xf2, -0x37,0x6b,0x20,0x9e,0x84,0xfd,0x34,0x14,0x37,0x75,0x6a,0xe8,0xb2,0x87,0x93,0x99,0xdf,0x5d,0x27,0x7f, -0xb7,0x4e,0x54,0x6b,0x12,0xc8,0x36,0x8b,0x03,0x8f,0xbb,0x5f,0xad,0x23,0xca,0x53,0x27,0x1f,0xd3,0x41, -0x7a,0x7a,0x4a,0x0d,0xef,0x2c,0x1f,0xba,0xa5,0xc3,0x33,0x2f,0x2e,0x67,0x88,0x38,0x87,0x85,0xa3,0xe6, -0x28,0xa4,0x05,0x91,0x4d,0x16,0xfe,0x91,0xba,0xe8,0x49,0x80,0x8f,0x52,0x1d,0xde,0x65,0x4f,0xb3,0xff, -0x13,0x15,0xd2,0x93,0xb5,0xa9,0x13,0x16,0x18,0xfb,0x29,0xff,0x5e,0x8d,0xcc,0x49,0xc0,0xc7,0x0d,0x93, -0x20,0xbc,0x5d,0x0c,0x80,0x5d,0x49,0xd4,0x89,0xaa,0xd5,0x1f,0xaa,0x06,0xaf,0x6a,0x44,0x6f,0x6b,0xd3, -0xe4,0xd7,0xe1,0x01,0x0e,0xa7,0xd6,0x62,0xff,0x9e,0xd5,0x6c,0x8d,0x66,0xd3,0x68,0xe1,0x1b,0xf0,0xc4, -0xef,0x89,0xef,0xf7,0x3d,0x60,0x52,0xf2,0x36,0x0e,0xd4,0xc4,0xaa,0x3c,0x89,0xf9,0x68,0x17,0x6e,0x40, -0x4e,0x76,0xbb,0xe0,0x22,0x07,0xc9,0xfb,0x76,0xad,0x89,0x71,0x59,0xbe,0xac,0x12,0x66,0xea,0x8c,0x23, -0x67,0xf4,0x2c,0xe6,0x7a,0xbb,0x9d,0xb0,0x8a,0xdf,0xb1,0x46,0x53,0xd2,0xb7,0x3c,0x86,0xdf,0xc3,0xd4, -0x0a,0x1d,0x40,0x9c,0xae,0x10,0x94,0xed,0xfe,0x05,0xcc,0x6f,0x56,0x6c,0x2a,0xea,0x49,0x39,0xfa,0xcc, -0x21,0x0e,0x9f,0xb6,0xcb,0x32,0xab,0xe9,0x7c,0x1b,0x0f,0x6e,0xd8,0xb6,0x80,0xef,0x26,0x91,0xb5,0x4c, -0x19,0x33,0x4f,0x05,0x7f,0x71,0xab,0x55,0xb4,0x19,0x01,0x6d,0xdf,0xa6,0x3d,0xa7,0xfa,0xbc,0x4f,0x15, -0xe3,0xe7,0xd2,0xef,0x44,0x2f,0xcf,0xac,0xad,0xda,0x53,0xb5,0x40,0xc4,0x8e,0x48,0xb5,0x50,0x48,0x0b, -0x4b,0xb7,0x4a,0xe3,0x5a,0x28,0x02,0x1a,0xd6,0xad,0x08,0x14,0xd3,0xde,0xce,0xb9,0x10,0x33,0xc4,0x8d, -0x1e,0xdc,0x98,0x81,0xa8,0xb2,0x9b,0x26,0xcc,0xda,0x14,0x23,0xb1,0xc0,0xc4,0x2a,0xe4,0x5f,0x03,0xb8, -0x76,0x0d,0x97,0x1b,0x3a,0xe8,0x0a,0xb1,0x1e,0x18,0x1c,0xc3,0xa5,0x9a,0x68,0x56,0x3a,0xf8,0x80,0x89, -0x2e,0x64,0x89,0x99,0x2a,0x8c,0xa0,0xeb,0xb7,0x2b,0x25,0x1a,0xb1,0x2f,0xbc,0x15,0xf9,0xbb,0x8e,0xda, -0xdf,0x1f,0x1d,0xa2,0xaa,0xa5,0x20,0x67,0x8c,0xda,0x51,0x86,0xed,0x2e,0x55,0xf9,0x3f,0xf0,0xea,0xf0, -0x7a,0xcf,0x42,0x67,0x7f,0x97,0xc0,0xb0,0x8e,0xa1,0x85,0x3b,0x42,0x2c,0xf8,0xba,0xca,0x96,0xc4,0x58, -0x8b,0x03,0x5f,0x54,0x43,0xe0,0x78,0xdd,0x6e,0xf1,0x9b,0x93,0xc4,0x32,0x20,0x40,0x27,0x55,0x94,0xf2, -0x9a,0xc7,0x5d,0x2b,0x78,0x60,0xf2,0x4e,0x4f,0x96,0xd9,0xa7,0x31,0x1e,0x32,0xd9,0x04,0x53,0x4f,0x4d, -0xd4,0x85,0xf6,0xa7,0x91,0x43,0x1a,0xe0,0x7e,0xe8,0xd9,0x23,0x75,0xb0,0x38,0x1f,0x3b,0x4f,0x24,0xd5, -0xfe,0x94,0x5d,0xda,0x79,0x22,0x4b,0xb9,0xaf,0xc4,0xc7,0xe9,0xf1,0xe6,0x8c,0x48,0xbd,0x8b,0x24,0x5f, -0xee,0x62,0xc1,0x96,0xc7,0x67,0x27,0x17,0x4b,0x1c,0x2a,0xac,0x12,0x73,0x30,0x22,0xe5,0xb6,0xfd,0x45, -0x79,0x83,0xbe,0x77,0x22,0x25,0x43,0x24,0xd1,0xfb,0x61,0xc0,0xb9,0xb9,0x8d,0xb9,0x4c,0x8f,0xa1,0x2c, -0x55,0x9a,0x13,0xcf,0x73,0xdf,0x93,0xf8,0x3e,0x2f,0xd2,0x7c,0xa3,0x88,0x64,0x1a,0x22,0x86,0x80,0x70, -0x22,0xff,0x78,0xa2,0xa9,0x95,0x1e,0xff,0x8a,0x91,0x96,0x7f,0x2f,0xc3,0x8f,0x59,0xfe,0x71,0x57,0x26, -0x4b,0x96,0x42,0x43,0xf5,0x2a,0xc9,0xd3,0x95,0x7c,0x7d,0xbc,0xc6,0x75,0xc3,0x91,0x38,0x15,0x32,0xe1, -0x7f,0x4c,0x39,0xc4,0xdd,0x5b,0xd5,0xe7,0xdc,0xde,0xd0,0x95,0x95,0x88,0xd7,0x91,0x9e,0x13,0x16,0x3d, -0xcb,0x2e,0x0c,0x2c,0x8a,0x05,0xfd,0xee,0x8a,0xa7,0xa5,0xa0,0x7a,0xe8,0x0d,0x1e,0x12,0x21,0xf4,0xc9, -0x20,0xdf,0xf2,0x86,0xe6,0x27,0x44,0xef,0x2a,0x1b,0x2e,0x95,0x33,0xa7,0x9c,0xe3,0xf5,0xe8,0x8c,0x39, -0x6a,0x23,0x61,0x2b,0x2d,0xe5,0x5a,0x46,0x39,0x0b,0x0d,0x60,0xc0,0x0a,0x31,0x62,0x69,0xa9,0xa5,0x61, -0xa6,0xa7,0x98,0x88,0x36,0x07,0x54,0x5a,0xd9,0xd0,0x21,0xfc,0x5c,0x89,0xdf,0x75,0x98,0xbd,0xf0,0xfe, -0x84,0xb2,0x88,0x84,0x6c,0x5e,0x22,0x00,0xb7,0xe2,0x2f,0x8f,0x0a,0xa9,0x36,0x2c,0x3b,0x5b,0xed,0x34, -0x62,0xe6,0xff,0x77,0xda,0x8a,0x7a,0x85,0xd5,0xae,0x26,0x57,0xaa,0xc9,0xae,0xc1,0x81,0x04,0xb0,0x41, -0xb8,0x22,0xfa,0x88,0x11,0x2f,0x65,0x22,0xea,0x64,0x21,0x93,0x5e,0xed,0xe7,0x19,0x0c,0x0d,0x74,0x29, -0x99,0x66,0xa4,0x4d,0x97,0x55,0x37,0x75,0x19,0x15,0xb8,0xfc,0x4c,0x6b,0xeb,0xa6,0x3e,0x5b,0xa6,0xab, -0x9f,0x84,0xba,0xed,0x48,0xb2,0xc5,0x84,0xa1,0xc2,0x4c,0x45,0x17,0x4c,0x6f,0x35,0x8e,0x54,0xf6,0xec, -0xba,0xa0,0x0d,0xf7,0x8f,0x17,0xe1,0x8d,0x2f,0xf8,0xe0,0x4a,0xf5,0x72,0xb1,0x8b,0x22,0x2e,0xb3,0x5b, -0x92,0xf7,0x95,0x22,0xbf,0xab,0x9e,0x51,0x4b,0x1f,0xc6,0xc4,0x3b,0xaa,0x97,0xaa,0x96,0xda,0xee,0x45, -0xf2,0x59,0x29,0x04,0x61,0x7a,0x60,0x4a,0x29,0x21,0x71,0x64,0xd7,0x33,0x46,0x98,0x96,0x83,0xf7,0xee, -0x64,0x32,0x3c,0x98,0xdc,0x4e,0x45,0x0f,0xaa,0x3f,0x09,0x73,0x10,0x90,0x5a,0x38,0xae,0xe0,0xba,0x43, -0xad,0x61,0xef,0x80,0x5b,0x08,0x3c,0xa3,0x47,0xdb,0xec,0x3f,0x89,0xf2,0x4c,0xd1,0x71,0x61,0x7f,0x47, -0xb4,0xd9,0x0c,0x19,0x2c,0xbc,0x86,0xc3,0x6b,0x0c,0xac,0x29,0x63,0x2c,0x78,0xd1,0x23,0x1a,0xa0,0x91, -0xaa,0x8d,0x27,0xbe,0xa4,0x7c,0x70,0x22,0x8a,0xb2,0x1e,0xb9,0xde,0xf7,0xd0,0xcd,0xfd,0x2f,0x5a,0x03, -0x06,0xb7,0x1e,0x6b,0x72,0xe8,0x2e,0x82,0xbb,0x8f,0x33,0x45,0xde,0xa0,0xc3,0x36,0xab,0xf4,0x7f,0x32, -0x47,0xfe,0x1b,0x65,0xf0,0xd4,0xbf,0x79,0x9e,0x98,0xd2,0x0c,0xe9,0x24,0x27,0xa7,0xa4,0xf6,0x4d,0x95, -0x9a,0xa7,0x8a,0x7e,0xef,0xe6,0xb9,0xd2,0x94,0xd3,0x33,0x59,0x72,0x3d,0x59,0xea,0x30,0x71,0xbe,0xda, -0x3f,0x5b,0xb0,0x99,0x24,0x66,0xb6,0xa8,0x60,0x7d,0xa9,0xa0,0x83,0x29,0xbd,0xdd,0xcc,0xab,0x44,0xd9, -0x13,0x79,0x2b,0x36,0x11,0x9e,0xea,0xbd,0xaa,0x1c,0x7a,0x72,0x2c,0xf6,0x96,0x2d,0x28,0x91,0x71,0xd2, -0x9d,0x8a,0x85,0x9e,0x0e,0x5f,0x19,0x35,0xe1,0x63,0xee,0x0f,0x25,0x9e,0xcb,0x30,0x67,0x8a,0x7f,0x77, -0xbe,0x22,0xe2,0xaf,0x9a,0xaf,0x45,0xdf,0x7c,0xd5,0x1d,0xd2,0x99,0xb0,0xba,0xf7,0x7b,0xdf,0xe4,0x19, -0xdb,0xff,0xaa,0x3d,0x7f,0xba,0x35,0x57,0x94,0x86,0xe8,0x36,0x2d,0xf6,0x35,0x5b,0x36,0x1a,0xcf,0xa1, -0x5f,0x0f,0x89,0xff,0x1a,0xe7,0x20,0x0c,0x74,0x86,0xd3,0xa2,0xec,0xe4,0xb8,0xa1,0x74,0xa5,0x87,0xed, -0xf9,0x82,0xd6,0xd0,0xde,0xfc,0x95,0x56,0x2e,0x22,0xcf,0xad,0xb5,0x67,0xa6,0x9c,0xd7,0x53,0x05,0xf6, -0x72,0xff,0x5a,0x6b,0xb8,0x77,0x71,0xe8,0x45,0xb3,0x42,0x60,0xd9,0xc9,0x07,0x7e,0xe5,0x2e,0x10,0x26, -0x4b,0xfb,0x56,0xc7,0x1e,0xad,0x0f,0x3a,0x77,0x1a,0x4b,0x21,0x93,0x5b,0xcf,0xbc,0xe6,0x24,0x54,0x26, -0x44,0x5a,0xd6,0xc7,0x96,0x44,0xe6,0xdc,0xcc,0x9d,0x63,0x70,0x8c,0x1e,0x2a,0xb4,0xf9,0x14,0x9f,0x5c, -0x51,0x13,0x71,0xbe,0xe8,0x34,0x23,0x05,0x98,0x87,0x4d,0xce,0x84,0x89,0xd3,0xd7,0x42,0x56,0x0f,0x13, -0x35,0x3b,0xce,0xc5,0x9c,0xac,0xcb,0x47,0x99,0x43,0xf5,0x96,0x61,0xa5,0x5c,0x2a,0x89,0x4d,0x78,0xd0, -0xca,0xe6,0x71,0x4b,0xcf,0x3f,0x35,0x34,0x7e,0x2d,0xfa,0x59,0x7d,0xaa,0xab,0x0d,0xc9,0xaa,0xbe,0x8c, -0xb0,0xa9,0x9b,0x3b,0xb0,0xd2,0xe5,0x42,0x2d,0x8a,0x06,0x61,0x9c,0x55,0x92,0xf7,0xbf,0x65,0x0f,0x94, -0x68,0xaa,0xb6,0xa1,0x9e,0x12,0xc7,0x34,0x48,0xc8,0x9f,0x43,0xd5,0xbb,0xa9,0xad,0x6d,0xeb,0x9b,0x40, -0xbb,0x16,0xbb,0x34,0x49,0x14,0xd8,0x10,0xde,0xda,0xa9,0x18,0x83,0xbe,0x7c,0x41,0xe8,0x6e,0xe6,0xbe, -0x15,0x8d,0xd6,0x93,0xee,0x7a,0x57,0xa2,0xad,0xa5,0xd7,0x64,0x4d,0x4e,0xe1,0xe8,0xff,0xf5,0x03,0xee, -0x54,0x08,0x5a,0x62,0xef,0xeb,0x61,0x5f,0xe9,0xc3,0xaf,0xbd,0x01,0x87,0x93,0x8c,0x55,0x59,0xde,0xc3, -0x07,0x30,0x85,0x73,0x13,0x3f,0x7c,0x90,0x80,0x42,0x25,0x3d,0xbd,0x83,0xc7,0xf4,0xc3,0x45,0x3f,0xfc, -0x1a,0x4e,0x9d,0xdd,0xa5,0xd1,0xe8,0x35,0x5b,0xeb,0x43,0x1e,0xec,0x5e,0x24,0x57,0xad,0x15,0x22,0xf9, -0xfb,0x77,0x68,0xa3,0x82,0xb6,0x88,0x46,0x78,0xb5,0x27,0x0b,0x36,0xff,0x71,0x57,0x0b,0x6a,0x3d,0x3e, -0x5b,0x23,0xcc,0x5b,0xa9,0xd6,0x4c,0xc1,0xf7,0xc6,0xfa,0x8f,0xd7,0x53,0xe9,0xac,0x27,0xc7,0xda,0x4c, -0x99,0x75,0xc0,0x80,0x48,0x11,0x81,0x05,0x42,0xb0,0xd7,0xbd,0x39,0xd9,0xec,0xc3,0xc9,0xba,0x46,0x4a, -0x47,0x34,0xa8,0xcc,0x42,0xba,0x39,0x3f,0x5c,0x54,0x9d,0xcc,0xc6,0x42,0xc4,0xc9,0xce,0x91,0xfb,0xba, -0x95,0xb0,0xcd,0x49,0xba,0xf9,0x3f,0x64,0xf9,0xa7,0xde,0x8a,0x8b,0x69,0x8a,0xf3,0x42,0x91,0x7f,0x80, -0x18,0x17,0xfe,0xdf,0xed,0xb5,0xa7,0xf9,0x5b,0x9b,0xec,0x65,0xcb,0x77,0x4d,0x93,0xb7,0xf6,0x48,0x43, -0xab,0xdf,0xb0,0x4f,0x5a,0x53,0xa0,0x21,0xed,0xff,0xe7,0x13,0x40,0x71,0x0d,0x65,0x2f,0xd7,0x50,0xf4, -0x72,0x0d,0xc5,0x4e,0xae,0xa1,0x99,0x42,0xd4,0x14,0xb6,0xfc,0xa7,0x96,0xdb,0xcc,0x43,0xd9,0xde,0x69, -0xdd,0xce,0x6b,0xfa,0xc1,0xed,0x3b,0x4b,0xfb,0xa6,0xb4,0xd8,0x80,0xc9,0xf8,0xc0,0x6b,0xb5,0x69,0x23, -0x98,0x7d,0x9d,0x3c,0xe5,0x0c,0x9f,0xd2,0x12,0x06,0xef,0x9c,0x47,0xdc,0x62,0x87,0x1c,0xe6,0x75,0x6c, -0x3d,0x6c,0x99,0xb9,0xd6,0x59,0xbd,0x4a,0x6d,0x33,0x57,0x4f,0x9b,0xc8,0x35,0xa5,0xa4,0x63,0x9d,0x46, -0xc5,0x8d,0x24,0x30,0x8b,0x11,0x56,0x72,0x01,0x71,0x7d,0x2d,0xc0,0x82,0xe3,0x8f,0x29,0x1f,0x88,0x63, -0x1a,0x94,0x27,0x6d,0x97,0x55,0x41,0xec,0x4a,0xd8,0x32,0x94,0xa5,0x90,0x97,0xe9,0x31,0xdb,0x28,0x41, -0xec,0x08,0xaf,0x5b,0xa5,0x5b,0x62,0xfa,0x2d,0x71,0xd9,0x75,0x45,0xa2,0xee,0x35,0xc0,0x5b,0x78,0xbc, -0x36,0xda,0x28,0x9d,0xc1,0x3c,0xa7,0x96,0x24,0xda,0xe7,0x24,0x76,0x74,0xb2,0x2c,0x3a,0x2a,0x92,0xa5, -0x40,0xbf,0x48,0x26,0x4b,0x80,0xcb,0xa2,0x5a,0xae,0x9e,0x35,0x3c,0x08,0xa7,0x2a,0x03,0x61,0x31,0x43, -0xdd,0x92,0xad,0x87,0xcd,0x01,0x99,0xf0,0xcc,0x91,0x06,0x67,0xa7,0x99,0x55,0x96,0x25,0x86,0x52,0x5d, -0xd0,0x2f,0x82,0xb2,0xe4,0x17,0x8e,0xe4,0x4a,0xc4,0x10,0x18,0x33,0x2d,0x62,0x92,0x62,0x5a,0x52,0x27, -0x25,0xc1,0xf2,0x6c,0xe2,0xbc,0xb7,0xee,0xe6,0x69,0x6f,0xe5,0x0d,0xe1,0xc8,0x0d,0x40,0x0a,0x2f,0xfe, -0x37,0x2c,0x7a,0xb3,0x5a,0x65,0x6f,0x09,0xed,0xaf,0x74,0xce,0x86,0x44,0xca,0xd6,0x66,0x6e,0xdd,0x7a, -0x75,0x64,0x2b,0x49,0x68,0xe5,0x6e,0xae,0x9b,0xbd,0x41,0x17,0xd8,0xec,0x3e,0xbb,0x0a,0x75,0x05,0x19, -0x49,0xd8,0x7a,0xcb,0xbd,0x6f,0x7d,0xc0,0xd8,0xde,0xfd,0xb1,0x2a,0x5b,0xd9,0xad,0x9b,0x9e,0x32,0xff, -0x8d,0x5a,0xb7,0x5e,0x6b,0x25,0xb4,0xbe,0xa1,0xe4,0xd7,0xdd,0xc2,0xfb,0xa5,0xdc,0xc9,0x22,0xd0,0x4b, -0x15,0x72,0x3f,0xfb,0x2d,0x47,0x1c,0xa8,0xc8,0x2c,0x88,0xe3,0x59,0x16,0x4e,0x84,0x93,0xb8,0xa8,0x3a, -0xb9,0x8c,0xa7,0xad,0x6f,0x27,0xc3,0x70,0x44,0x9e,0x88,0x1f,0xe7,0xc8,0x79,0x47,0x7c,0x3a,0x11,0x5e, -0x50,0x36,0x76,0xcb,0x5e,0xed,0x67,0x01,0x4a,0x94,0x96,0x15,0xd0,0xf7,0x14,0x96,0x06,0x63,0xf4,0x67, -0x13,0xbe,0xcb,0xd8,0xbc,0x50,0xda,0xd4,0x6e,0xb4,0x88,0x4b,0x30,0xab,0x47,0x10,0x95,0xb1,0x5f,0x21, -0xad,0xc0,0x6a,0x2d,0x46,0x95,0x59,0x7e,0x9e,0x96,0x19,0xf4,0x8e,0x3c,0xa7,0x58,0x8b,0x9a,0x09,0xd0, -0x50,0x23,0x89,0xb3,0x9d,0x06,0x58,0xf6,0x25,0xdc,0x83,0x22,0xd3,0xa6,0x99,0xb6,0x30,0x2e,0xd3,0x53, -0x2a,0x12,0xb8,0xe2,0x09,0xc4,0x6c,0x8a,0x83,0x71,0x1e,0xd6,0xe9,0x2a,0x4f,0xeb,0x48,0xf2,0xf0,0x37, -0xe1,0x3a,0xd5,0x59,0xaa,0x94,0x18,0xab,0x85,0x63,0x4c,0x60,0xf4,0x0e,0x62,0x12,0xda,0x6b,0x58,0x4c, -0x4b,0xd5,0x6a,0x55,0x99,0x93,0x38,0x99,0x79,0x87,0x2f,0x7f,0xfa,0xe9,0xc9,0xe1,0xd1,0x93,0xc7,0xc4, -0x1c,0xff,0xf4,0xf2,0x68,0xd0,0xdc,0xd3,0x3b,0x79,0xbd,0xee,0x79,0xe5,0xcd,0xdf,0x7f,0x3a,0xfc,0x5a, -0xe7,0x57,0x37,0x40,0x47,0x58,0x03,0x0a,0x43,0x75,0x4f,0x72,0x86,0x90,0x97,0xe8,0xa4,0xf6,0x76,0x12, -0x9e,0xc4,0xd5,0x9f,0xbe,0x9d,0x4c,0xad,0xf4,0x4a,0xd9,0xfc,0x73,0xfe,0xe5,0xcd,0x8f,0x57,0xf4,0xf8, -0xee,0x7d,0xf7,0xf1,0xdd,0xfb,0xe6,0xf1,0x26,0xae,0x88,0xb9,0xdf,0x0c,0xbd,0xe5,0xa0,0xf1,0x1d,0x58, -0xb1,0x33,0xc1,0xb9,0x95,0xb2,0xe4,0x94,0x0b,0x2b,0xe5,0x84,0x53,0x2a,0xef,0x1a,0xa5,0xac,0xc3,0xf3, -0xf0,0xac,0x2d,0x69,0x37,0xa3,0x3b,0x3d,0xb3,0x2c,0xf3,0x7d,0xc7,0x30,0xfa,0xcc,0xb5,0x8a,0x3e,0x6b, -0xf3,0x5f,0x49,0xa0,0x0d,0xa2,0xfb,0x32,0x83,0xd4,0xc2,0x9a,0x8b,0xfc,0xb5,0x79,0xb8,0x2e,0x53,0x89, -0xef,0x8e,0xd0,0x14,0x3a,0x0d,0x48,0xc3,0x92,0x28,0x2f,0xad,0x87,0xc9,0xf0,0x3c,0x50,0x8b,0xe4,0x74, -0xd7,0xac,0x9c,0x9e,0xda,0xf5,0x5e,0xc7,0xa7,0x3d,0x9f,0x38,0xed,0x7e,0xe2,0x54,0xa8,0x03,0xf5,0x0d, -0xfe,0xc4,0x45,0xdc,0xa6,0x1a,0x9b,0x8f,0x5c,0x58,0x1f,0xb9,0xe0,0xda,0x25,0x62,0x89,0x76,0x65,0x31, -0xcd,0x89,0x10,0x6e,0x1c,0x6c,0x2c,0x09,0xda,0xf4,0x30,0xf2,0x7c,0xbd,0x98,0x33,0xce,0xfb,0xd7,0x2c, -0x26,0xee,0x63,0xc9,0x93,0x79,0xbe,0x50,0x36,0x6e,0x56,0x59,0xbc,0x30,0x3f,0xc5,0x78,0x18,0xd2,0x3a, -0xb1,0x24,0x59,0x57,0x6c,0xf5,0x74,0xa5,0x64,0x42,0xd1,0x27,0x2d,0x1d,0x02,0x66,0x9b,0x4d,0xbf,0x7c, -0xea,0xa1,0x5f,0x0c,0xd1,0xf5,0x69,0x9e,0x2e,0xda,0x8e,0x44,0x6c,0x29,0x04,0x6a,0xf9,0xd2,0x71,0x26, -0x72,0xbb,0xa7,0xc9,0x22,0xcd,0x50,0x5c,0x67,0x6d,0x11,0xf8,0x6d,0x26,0x72,0xe7,0xbb,0xa6,0x0b,0x80, -0xf5,0x71,0xdd,0xdf,0x05,0x5f,0xa4,0x0b,0x8e,0x63,0x5b,0xe8,0xeb,0xb4,0xf3,0x4b,0x7f,0x3b,0x77,0x35, -0xee,0x58,0x1a,0xf7,0x65,0x2e,0x20,0x3e,0xcd,0x90,0x5a,0x74,0xbe,0x3b,0xac,0x5c,0x8f,0x8f,0x52,0x8f, -0xc3,0xf8,0xa3,0x80,0x94,0x01,0xd8,0xe5,0x28,0x86,0xae,0xf9,0x70,0xf6,0x51,0xb4,0xc9,0xc3,0x8f,0xe3, -0x0d,0x95,0x50,0x45,0x2d,0x1f,0xb7,0xc3,0x20,0x7c,0xdd,0x5e,0x84,0x26,0x4b,0x77,0x7e,0x4c,0x5f,0x73, -0x05,0x8f,0x5a,0x64,0xfa,0xeb,0x86,0x67,0xd6,0x17,0x8a,0xde,0xfd,0xe8,0x10,0xee,0x8c,0xa2,0xe8,0x89, -0x77,0xc3,0x4d,0xa6,0xc4,0x01,0xf0,0x99,0x5c,0xfb,0xe4,0xae,0xca,0xdf,0x10,0xf3,0x8d,0x67,0x89,0x96, -0xcb,0x86,0xf5,0xb4,0xe5,0x4b,0xe1,0x08,0x01,0x65,0x2f,0xf0,0x2d,0xf1,0xad,0x2b,0x36,0x09,0x6b,0x62, -0xc8,0xcb,0x4d,0xda,0x7d,0xd5,0x98,0xf2,0x06,0x0c,0x45,0xe2,0xd8,0xf3,0x86,0xf5,0xee,0xcc,0x53,0xcd, -0x6b,0xd9,0xcf,0x5b,0x1e,0x31,0x2c,0x89,0xb5,0x9f,0x2b,0xea,0x3a,0x98,0x5a,0xc6,0x04,0x7b,0x16,0xb2, -0x15,0x1d,0x5d,0x39,0xd3,0x8a,0x88,0xb8,0x00,0x85,0x70,0xcd,0x68,0x04,0x00,0x95,0x1c,0x0e,0x1b,0x53, -0x17,0xdb,0xbc,0x27,0xe6,0xcc,0xfc,0xd4,0x18,0x75,0x18,0x03,0x25,0xe7,0x21,0x52,0x42,0x8b,0x8e,0x6f, -0x9e,0x20,0x25,0xdc,0xd9,0x92,0x10,0x16,0x22,0x07,0xaa,0x1a,0xa3,0xd1,0x4d,0xd5,0xe0,0xa7,0xbb,0xaa, -0xa1,0x1e,0xf6,0x54,0x43,0x3d,0xf9,0x9d,0x6a,0x20,0x68,0x93,0xcb,0x2b,0xbf,0x2d,0x57,0x16,0x97,0x3c, -0xf7,0x2e,0x41,0xc8,0x19,0x13,0x4f,0x4f,0xab,0x88,0x01,0xaa,0x74,0xee,0x2d,0xa6,0x6c,0x02,0x52,0xc2, -0x34,0x1b,0x70,0xc4,0x7d,0xdc,0x16,0x72,0xb0,0x1b,0x06,0x91,0x64,0x6f,0x5f,0xff,0xc8,0x20,0x57,0xa1, -0x4a,0x34,0x71,0x4e,0xe2,0xd4,0x5c,0x62,0xee,0x9f,0xd7,0xf5,0xba,0x8a,0xbc,0xd8,0x4a,0x9e,0xf1,0x97, -0x2e,0xab,0xe6,0x15,0xaa,0x1a,0xe5,0x89,0xfa,0xd2,0x23,0xcb,0x99,0x5a,0x75,0xdc,0x51,0x81,0x8f,0x83, -0x8b,0x6d,0x1a,0x69,0xec,0x54,0x25,0x5e,0x8c,0xc2,0x93,0xb7,0xf0,0x42,0x81,0x21,0x6f,0x6c,0x58,0xd1, -0x62,0x31,0x73,0x31,0x18,0xca,0xd1,0x55,0x0b,0x40,0x9a,0xc3,0xa7,0xf5,0x00,0xa0,0x29,0x7b,0xfa,0xfd, -0x7d,0x6d,0x58,0x7f,0xb2,0x2a,0x38,0xc6,0x89,0xba,0xe7,0xde,0x79,0x97,0x1e,0xbf,0xa1,0xeb,0xb4,0xf6, -0x75,0x9b,0x38,0x12,0x8e,0xce,0x33,0x2e,0x72,0x45,0x0e,0xdf,0x68,0x4e,0xe2,0x04,0x23,0xb9,0xc3,0xf1, -0x49,0xbd,0xf7,0x08,0x8e,0x68,0x25,0x96,0x92,0x58,0x3a,0x89,0xb5,0x24,0xd6,0x58,0x88,0xb4,0x6e,0x6c, -0xe6,0x9f,0x83,0x02,0x4b,0x6c,0x07,0x4b,0x8e,0x68,0xcb,0xda,0x2c,0x3b,0x3d,0xe0,0x60,0x24,0x65,0x5d, -0x31,0x68,0x39,0x0f,0x65,0xe4,0x71,0x94,0xd0,0x76,0x72,0xc5,0xe9,0xb4,0x41,0x48,0x26,0x50,0x9b,0x34, -0x26,0xce,0x78,0xe9,0x49,0x93,0x06,0xdd,0x6f,0x1d,0x15,0xca,0x3f,0x1b,0x19,0x82,0xab,0xde,0xf7,0x5a, -0xb6,0xfe,0x2d,0xc7,0xb2,0x57,0x88,0x7b,0x93,0xd6,0x69,0xf9,0xfd,0x17,0xd7,0xd9,0x5e,0xbb,0xf7,0x21, -0x4a,0x24,0x1f,0x3b,0xb1,0xcf,0x91,0x22,0x03,0x48,0x53,0x01,0x1e,0xd8,0xf6,0x21,0xa8,0xd2,0xa4,0x3c, -0x39,0x6f,0x20,0xe4,0x01,0x22,0xd1,0x89,0xa5,0xca,0x91,0xac,0x9a,0xfe,0x1e,0xa2,0xbf,0x07,0xd4,0xdb, -0x4c,0xe8,0xa9,0x41,0x0e,0x8d,0xf0,0x61,0xef,0x20,0xb4,0xd8,0xf8,0xd0,0x66,0x8b,0x0d,0xbe,0x00,0xa0, -0x5d,0x1b,0x42,0x9b,0xe7,0x2a,0x62,0x68,0xb9,0x16,0x7c,0x8d,0xf7,0x84,0xba,0xd6,0xfe,0x13,0xea,0x56, -0x3c,0x28,0xc2,0x55,0x56,0xbf,0x3b,0xcf,0x6a,0xc0,0xef,0xe2,0xfa,0xf0,0xf0,0x08,0x57,0x20,0xf1,0x27, -0xa1,0xd0,0xd0,0xb7,0x18,0xb8,0x04,0x0e,0x9d,0x74,0xd6,0xec,0xc4,0xb1,0xdb,0x25,0x6d,0xd6,0xf1,0xad, -0xbb,0xa2,0x98,0x86,0x80,0x66,0x7a,0x00,0xde,0x0b,0x33,0x73,0x15,0xd5,0xe3,0xcb,0xf3,0xec,0xe4,0x9c, -0xe9,0x6a,0xe2,0x34,0x0e,0xee,0x59,0xe6,0xad,0x03,0x37,0x88,0xc0,0x35,0xe3,0x42,0xdf,0xb2,0xbf,0xee, -0x02,0x5f,0x84,0x2d,0x07,0xe7,0xb0,0x2b,0x49,0x87,0xc1,0xe3,0x73,0xb4,0x11,0xa7,0x95,0x55,0x50,0xe3, -0x3a,0x2e,0x56,0x74,0x6d,0x93,0x10,0x4b,0x87,0xd5,0x98,0x6f,0x28,0x73,0xce,0x11,0xf2,0x8d,0x56,0x9d, -0x8c,0xc6,0x4e,0x84,0xf3,0xed,0x30,0x9d,0x9e,0xb0,0xcd,0xf4,0xc1,0x64,0x22,0x8a,0x09,0xad,0x43,0x13, -0x6f,0x80,0x96,0xde,0x4d,0xd9,0xa2,0xf6,0x64,0x1c,0x59,0x22,0xaa,0x9e,0x37,0x5e,0xd9,0xe2,0x2c,0xfd, -0xa6,0xb6,0xc8,0x75,0x5f,0x90,0xb9,0xd4,0xca,0x68,0x0c,0x63,0xdb,0x79,0xd5,0x03,0x27,0x3b,0xa4,0x4f, -0x23,0xb6,0x5d,0x6a,0x65,0x87,0x81,0x94,0x93,0xf3,0x3c,0x19,0x9d,0x68,0xe9,0x91,0x93,0x53,0x5b,0x38, -0x39,0xb9,0x95,0x39,0x51,0x2b,0xab,0x6d,0xba,0xd4,0x91,0x61,0x37,0x36,0x4b,0x66,0x62,0xfb,0x3d,0xaf, -0x58,0x5f,0x18,0x71,0x6c,0xc9,0xfe,0x8f,0xe0,0x89,0x93,0x5f,0x9b,0xa4,0x8d,0x04,0xca,0xa4,0xfd,0x96, -0x58,0x5e,0xf6,0xbf,0xa1,0x0d,0xff,0x3a,0x3d,0xca,0xc9,0xfd,0xef,0x28,0xcb,0xb6,0xf6,0x3b,0xb6,0xa5, -0x9d,0xcc,0x5b,0xcb,0x38,0xcf,0xd6,0xae,0xd9,0x26,0x9b,0xad,0x39,0x24,0xe7,0x7f,0x67,0xee,0x70,0xb2, -0x93,0x95,0x68,0x54,0x78,0x75,0x3a,0x39,0x5d,0x2a,0xb5,0xaf,0xe4,0x91,0x58,0x10,0xba,0xaf,0x75,0x41, -0x77,0x6e,0x76,0xfa,0xb1,0xec,0x0c,0x3b,0x03,0x6d,0x65,0x1d,0x4b,0x73,0x77,0x04,0x5c,0x36,0x9e,0x43, -0xad,0x02,0xb4,0x3b,0x66,0xe3,0xc8,0x27,0x26,0x3a,0xee,0xaa,0x24,0x16,0xa7,0xdf,0x14,0xc3,0x75,0xda, -0x50,0x26,0x0f,0x36,0x43,0x64,0x59,0x3f,0x74,0x4a,0x14,0x9b,0x81,0x1d,0x1a,0x73,0xc3,0x46,0x1e,0x5c, -0x87,0x16,0x93,0x89,0x42,0x96,0x26,0xd2,0x8c,0x3d,0xca,0x5a,0x29,0xd0,0xd0,0x81,0x37,0xe4,0xd5,0xde, -0xb0,0x76,0x66,0x0f,0x7d,0x11,0x81,0xa4,0x6e,0x1f,0x83,0x9a,0x06,0x23,0xa2,0xd6,0x87,0xac,0x3e,0xee, -0x39,0x64,0x59,0xb0,0x4f,0xa7,0xde,0x4c,0x93,0x0c,0xb8,0x0f,0xa2,0xde,0x43,0x3d,0xb0,0x31,0x8d,0x38, -0xc4,0xef,0xc3,0xff,0x07,0xec,0x3c,0xef,0x44,0x37,0xa5,0x02,0x00 +0x95,0xe1,0x87,0xb7,0x3f,0x3f,0x7a,0x73,0x70,0xf7,0xcd,0x63,0xba,0x3e,0x7a,0xf1,0xea,0xde,0x2f,0x28, +0xa0,0xc8,0x13,0x30,0xd2,0xc4,0x36,0x57,0xe9,0xa3,0x0c,0x97,0x3f,0xd0,0xf9,0x49,0xf4,0x65,0x76,0x02, +0xd8,0x74,0x75,0x77,0xf8,0xea,0x85,0x67,0x18,0x87,0x83,0x07,0x8c,0xaf,0xfe,0xc0,0x84,0x35,0xa2,0xa3, +0x24,0x1d,0x1d,0x2c,0xc4,0x78,0xd7,0x74,0xe4,0x45,0x72,0x46,0x13,0x7f,0x23,0x47,0x85,0xdd,0x97,0x47, +0xe9,0xc5,0x1a,0xf1,0x0b,0x37,0x08,0x77,0xeb,0x3d,0xdb,0x5c,0x64,0x4b,0x86,0xdf,0xf7,0x5e,0xc1,0x05, +0x57,0x52,0x0f,0x37,0x25,0x48,0x39,0xf4,0x5a,0xb1,0xaa,0x69,0x90,0xd0,0x18,0x36,0x6b,0x1c,0xbc,0x82, +0xc1,0x28,0x6e,0xd7,0xa2,0xcf,0x37,0x09,0xb4,0xa3,0xb9,0x39,0xf8,0x77,0xf0,0x34,0x41,0x7c,0x23,0xf4, +0x2c,0x1d,0x76,0x67,0x5f,0xcc,0xc5,0x80,0x08,0x13,0x2a,0x3a,0xb8,0x61,0x18,0x78,0x14,0x0e,0xc6,0xdc, +0xa9,0x2f,0xee,0x8e,0xbf,0x91,0x7b,0xdc,0x1e,0xbe,0xc4,0x88,0xfe,0xb8,0x01,0x4a,0xde,0xdb,0x9f,0xf9, +0x4d,0x5a,0x9b,0x6c,0x8c,0xe7,0x3d,0x3b,0x7c,0xf6,0x12,0x0f,0xe1,0xbd,0x33,0x78,0x5c,0xd0,0x64,0x7b, +0x9d,0xb0,0xe4,0xa2,0x9b,0xc2,0x01,0x1b,0xff,0xfd,0x9e,0xe5,0x85,0x6f,0x77,0xed,0xcb,0xbf,0x51,0xa1, +0x2f,0x37,0xf5,0x80,0x76,0xd7,0xd7,0x58,0x18,0x74,0xfb,0x2e,0x29,0x2f,0xb0,0x2f,0xbc,0x05,0xc5,0xa6, +0x94,0x7a,0x48,0x2e,0x0b,0x4a,0x7c,0xfe,0x98,0xa7,0x75,0x9d,0x0c,0xb4,0x48,0x85,0xe6,0x8a,0xb9,0xfe, +0xe1,0xd5,0xf3,0x97,0xe6,0xe6,0x90,0x76,0x89,0x63,0xb5,0x3b,0x88,0xda,0xc4,0xd4,0x7b,0xa2,0xea,0x6d, +0x57,0x7b,0x11,0xa9,0x7d,0x09,0xc4,0x93,0xa9,0xfa,0xc7,0x34,0x5d,0xa3,0x0e,0xc2,0x97,0xdd,0xf2,0xbd, +0x6a,0x9d,0xe4,0x73,0x28,0xd4,0xe3,0xaf,0x93,0xb3,0xe2,0xeb,0x85,0x17,0x88,0x88,0x8a,0x6e,0x82,0x90, +0xfe,0x0c,0x87,0x21,0x83,0x55,0x16,0x97,0x8d,0x00,0xf7,0x72,0xf0,0x18,0x4e,0xc5,0x07,0xe9,0xbd,0xdb, +0x48,0x47,0x0c,0x01,0x62,0x62,0x9e,0xbf,0x79,0xa9,0xbc,0x54,0x83,0x71,0xb5,0x39,0x16,0x69,0xaa,0x3f, +0x09,0x0f,0xbe,0x6b,0x6c,0x99,0xbd,0x23,0x85,0xb0,0x76,0x4b,0x41,0x28,0xab,0x4f,0x53,0x31,0xfc,0x69, +0xe8,0xd2,0x68,0xa3,0x77,0xeb,0xa5,0x1f,0x72,0xbd,0xe0,0x8f,0x5a,0x5c,0x0e,0x87,0xd7,0x4d,0x9b,0x7e, +0x4b,0xcb,0xe2,0x55,0xb2,0x6c,0x01,0xde,0x20,0xb6,0xac,0x84,0x55,0xae,0x25,0xaa,0xf2,0x30,0xf6,0x26, +0x9e,0xea,0x31,0x3f,0x1f,0x12,0x4d,0x2b,0xa2,0xc3,0x11,0x51,0x0a,0xa6,0x2c,0x6c,0x4a,0xe8,0x9f,0x7f, +0x14,0x39,0x1f,0x16,0x2a,0xc8,0xf5,0xe8,0xcf,0x77,0x27,0xe1,0xe8,0xdb,0x6f,0xf1,0x67,0x42,0x7f,0xbe, +0xf9,0x33,0xfe,0xdc,0xa7,0x3f,0xf7,0xff,0x82,0x3f,0x78,0x7a,0x0f,0x4f,0xef,0xe1,0xe9,0x5d,0x3c,0xb8, +0x7b,0x40,0x7f,0x0e,0xf0,0xf4,0x80,0xdf,0x9d,0x84,0x93,0xf0,0x5b,0x98,0x69,0xd0,0x3f,0x4a,0xc5,0x63, +0xe4,0xbb,0x4b,0x25,0xe1,0xa5,0x7b,0xf7,0xe8,0xdf,0xfd,0x6f,0x42,0x94,0x72,0xef,0xbb,0x49,0x88,0x22, +0x51,0xf6,0x37,0x94,0xef,0x9b,0xbb,0xdf,0x84,0xf8,0x18,0xbe,0x8a,0xcf,0x7f,0x4b,0x79,0x51,0x17,0x54, +0xea,0xcf,0xdf,0x7e,0x13,0xfe,0x99,0xf2,0xfd,0xe5,0xfe,0x64,0x61,0x42,0xc4,0x28,0x73,0x76,0x0d,0xd8, +0x0b,0x7b,0xf6,0x24,0xce,0x1f,0xc6,0x93,0x59,0x1e,0x8d,0x72,0x44,0x80,0xfb,0xe1,0xc5,0x91,0x37,0xf4, +0x39,0xc9,0x1b,0x12,0x9d,0x3b,0xf2,0x82,0xa1,0xee,0x47,0x03,0xf5,0x99,0xdc,0x41,0x85,0x89,0x09,0xbd, +0x1b,0x20,0x8f,0xc9,0x90,0xfc,0x89,0xd2,0xef,0xf2,0x20,0x8a,0x13,0xaf,0x1e,0xa8,0x7a,0x2d,0xbc,0x0c, +0x0f,0x97,0x12,0x6b,0x52,0xa6,0x07,0x82,0x10,0xf4,0xf0,0xc1,0x1d,0x75,0x81,0xa7,0x0c,0x12,0x28,0xc8, +0x38,0x44,0x18,0x09,0xce,0x53,0x01,0x95,0xbb,0x19,0x0b,0x3e,0x16,0x69,0xa2,0x3d,0x2d,0xca,0x8b,0x66, +0x91,0xc1,0x99,0x30,0x1e,0xdf,0x9e,0x3f,0x1a,0xfd,0xe3,0xfd,0x72,0x11,0xc8,0x4d,0x32,0xfa,0x6d,0x11, +0xcc,0xdf,0x5f,0xfe,0xd7,0xde,0x7f,0x7c,0x75,0xeb,0x4f,0xff,0xdc,0xbf,0xfd,0xde,0x7f,0x1f,0x3c,0x78, +0x18,0x8e,0xdf,0xcf,0xa6,0xd1,0xd5,0x35,0xdc,0x96,0xdf,0xbf,0xdf,0x2e,0xae,0xbe,0x09,0xaf,0x6f,0xdd, +0x09,0xf3,0xb8,0x35,0xfd,0x92,0x25,0xad,0x50,0x1c,0x87,0x54,0xf1,0x30,0x0d,0xc4,0x4c,0xcc,0xd7,0xae, +0x9e,0x60,0x90,0x2c,0xb1,0xf0,0x9e,0x61,0x8d,0x34,0xd7,0x94,0xac,0x52,0x28,0x61,0x71,0xc8,0x6b,0x9b, +0x14,0x9c,0xbc,0x83,0x73,0xe0,0x1e,0x30,0x34,0x40,0xba,0xc4,0x31,0x8e,0x33,0x96,0x1b,0x15,0x0e,0x32, +0x3a,0x6d,0x37,0x55,0x2d,0x59,0x12,0x22,0x07,0xe8,0x50,0xac,0x07,0xdf,0xb0,0x17,0x20,0xed,0x97,0x10, +0x65,0x0e,0x0e,0x68,0x36,0xd2,0x06,0x7a,0x82,0xe3,0x32,0xc9,0x97,0x74,0xbf,0x81,0x81,0x38,0xdf,0xd3, +0xba,0x16,0x4b,0x8c,0x3d,0x2f,0x08,0xf7,0x0e,0x24,0xb0,0xf7,0xef,0x35,0x0b,0x36,0xca,0x4e,0xab,0xf6, +0x00,0x55,0xe5,0x36,0xa2,0x21,0x0a,0x68,0x73,0x1f,0x2c,0xb3,0xd3,0xd3,0x14,0x9b,0xbc,0xf5,0x99,0xa2, +0x15,0x31,0x7c,0xb6,0x37,0x0a,0x30,0x1a,0x34,0x06,0x93,0xd1,0x77,0xa3,0xc5,0x15,0x4d,0xe0,0x83,0xeb, +0x26,0x65,0x71,0x8b,0x35,0x19,0xad,0xba,0xc1,0xa8,0x1f,0x57,0x52,0x35,0x16,0x41,0xca,0x94,0x80,0xfd, +0x02,0xd3,0x14,0x1c,0xf3,0x74,0x62,0xb6,0x38,0x70,0x1d,0x44,0xfb,0xed,0xed,0x15,0xd2,0xfd,0xa5,0x02, +0x8a,0x03,0x9a,0x8c,0x54,0xfd,0x99,0x2a,0x72,0x70,0x92,0xe4,0xe8,0xea,0x63,0xea,0x7c,0x04,0x80,0xe1, +0xce,0xbb,0x48,0xbe,0x0c,0x8a,0x7c,0xf5,0x85,0xb1,0x25,0x12,0x08,0x0f,0x69,0xb4,0x1e,0xbd,0x39,0x7c, +0xfe,0x7c,0x20,0x11,0x8a,0xab,0x81,0xff,0xf5,0xa3,0xaf,0x07,0x30,0x8b,0xd8,0x9c,0x9d,0x0f,0xbe,0xfe, +0xc7,0xd7,0xfc,0xde,0xd7,0x89,0x95,0xf6,0xdb,0xd7,0x41,0xc8,0x2f,0x2e,0x71,0x4e,0x55,0x83,0xaf,0x27, +0xd6,0xc3,0xef,0xbe,0x0e,0xf9,0x0d,0x3c,0x3f,0xff,0xb2,0x3e,0x4f,0x73,0x2a,0x71,0xf4,0x75,0xb0,0x37, +0xa0,0x89,0xf1,0x05,0x95,0x1a,0xe4,0x69,0x46,0x4f,0x4b,0x21,0x23,0x31,0x86,0xb4,0x40,0x06,0x30,0xc3, +0xa2,0x17,0xd5,0x3b,0x63,0xee,0xe8,0xc0,0xda,0x92,0xce,0xd2,0x9a,0xa1,0xb9,0x1b,0xb9,0x77,0x03,0x8e, +0x45,0x9d,0x72,0x0b,0xdc,0xb9,0x74,0x9d,0x82,0x73,0xe2,0x14,0x56,0xdc,0x7b,0xca,0xc9,0x99,0x12,0x0f, +0xa2,0x49,0xa4,0xc0,0xb5,0xf6,0x7a,0x5e,0xda,0x6e,0x7b,0xdf,0xba,0x65,0x90,0xb1,0x5a,0x47,0x20,0x71, +0xed,0xaa,0x52,0x8d,0xa8,0x3c,0xa1,0x03,0xf0,0x32,0x3b,0xcd,0x18,0xbb,0x37,0xe4,0xcb,0x57,0x82,0x01, +0x8a,0xcb,0x1f,0xde,0xa9,0x8b,0x17,0x49,0xf5,0x51,0x5d,0x3e,0x7f,0xa5,0x2e,0x1e,0xff,0xf4,0x06,0x01, +0x3a,0x4e,0xce,0x9f,0xe4,0xe2,0xcb,0xcd,0x37,0x6f,0xa8,0x6b,0x60,0x1b,0x8f,0xeb,0x47,0xc2,0xbb,0xf0, +0xb5,0xd8,0xb1,0xe3,0xea,0x19,0xd1,0xb7,0x72,0xf5,0x22,0xcb,0x39,0x2e,0x35,0xae,0xdf,0x3d,0xae,0xe4, +0xe2,0xed,0x11,0xe8,0xae,0x72,0xf5,0xe5,0x7b,0x22,0x86,0xe5,0xea,0xd5,0x66,0x55,0xa5,0x72,0x89,0x7d, +0x5e,0xae,0x5e,0xe6,0x44,0x3e,0x9c,0x00,0x65,0xf7,0xd7,0xba,0xfe,0x81,0xe1,0xd7,0xac,0xeb,0xe7,0xf9, +0x27,0xba,0x5d,0x9e,0xfc,0xf6,0x1a,0xd1,0x15,0x9e,0x2f,0x3f,0xcb,0xdd,0x0b,0x4d,0x05,0xd0,0x6d,0x5d, +0xad,0x3f,0xf2,0x53,0x75,0x6d,0x3f,0xa3,0xe6,0xbc,0x28,0xf8,0xca,0xac,0x47,0x0f,0x21,0x6c,0x39,0xe9, +0x63,0xca,0xaf,0x14,0xeb,0xec,0x84,0x8e,0x73,0xd9,0xb7,0x67,0x6d,0x98,0x01,0x60,0x38,0x81,0xed,0x61, +0xef,0x24,0x76,0x4c,0x0a,0xd8,0x3f,0x49,0x14,0xb6,0x00,0xe4,0x4b,0x6c,0x38,0x48,0xda,0xd3,0x25,0x6b, +0xbe,0x50,0xc0,0xd1,0xce,0x64,0x02,0xb5,0xd1,0x6c,0xa7,0x57,0x26,0x5e,0x91,0x5e,0xa0,0x0a,0x67,0x8f, +0x77,0x8c,0x3e,0x83,0xd4,0x94,0x66,0x8f,0x82,0xe2,0xe5,0x09,0x84,0x25,0xc7,0x51,0x19,0xcc,0x44,0x95, +0xb0,0x2c,0x0a,0x9e,0x3a,0xdf,0xdf,0x37,0x93,0x85,0xb9,0x6c,0xc8,0x01,0xac,0x14,0x7b,0xa0,0xef,0x7e, +0xf3,0x4d,0xa0,0x3d,0x3f,0x00,0x50,0x42,0x9b,0x2e,0x4c,0xfd,0x4c,0x4a,0x79,0x7a,0x0c,0x73,0x84,0xb0, +0x6e,0x1a,0x54,0xc2,0xf0,0x42,0xc3,0x63,0xd8,0x22,0x42,0x6f,0x6a,0x05,0x52,0x4e,0x34,0x94,0x18,0xa8, +0x80,0xe4,0xf8,0x84,0xb8,0xdc,0xb3,0xf3,0xec,0x5f,0x1f,0x57,0x17,0x79,0xb1,0xfe,0x95,0x36,0xfb,0xcd, +0xa7,0xcb,0xcf,0x5f,0x7e,0x63,0x24,0x2f,0xf3,0xd2,0x23,0xfb,0xa5,0x47,0xdf,0x1f,0x3e,0x7e,0xf2,0xf4, +0x87,0x67,0xcf,0xff,0xfa,0xb7,0x1f,0x5f,0xfc,0xf4,0xf2,0xd5,0x7f,0xbe,0x7e,0x73,0xf4,0xf6,0xe7,0x77, +0xbf,0xfc,0xfd,0x1f,0xee,0x4b,0x5f,0xd9,0x2f,0x11,0xdf,0x41,0x67,0xfa,0xb7,0x7f,0xfe,0xcb,0x77,0x6e, +0xa6,0xff,0xe8,0x96,0xec,0x66,0xd8,0xb3,0x33,0xfc,0xd7,0xff,0xd6,0xa7,0x9a,0x1f,0x7c,0x18,0x8e,0x68, +0xc8,0xe6,0x8b,0xe8,0xbd,0x37,0xfd,0xfa,0xc1,0xc3,0x59,0x38,0xbe,0xb3,0x7d,0xff,0xde,0x6b,0xa2,0xc3, +0x25,0xa0,0x7b,0x8a,0x38,0x9d,0x16,0x0f,0x27,0xd3,0xd1,0xa8,0x08,0x92,0x61,0x9c,0xcf,0x59,0x26,0xc4, +0x81,0xa4,0x7d,0xb9,0xe4,0x5e,0xf3,0x83,0xdb,0xe6,0x64,0x1b,0xd1,0x9e,0xd3,0x40,0x7e,0xda,0x13,0x26, +0x07,0xaf,0x90,0x3e,0x7a,0xf5,0xfc,0x6f,0xe9,0x17,0x33,0x05,0x9c,0x6e,0x3f,0xf8,0x36,0xf4,0xfe,0xe3, +0xab,0x46,0x48,0xd6,0x3e,0x86,0xd6,0x19,0xbd,0x6a,0xe8,0xbb,0x14,0x1b,0x9c,0x33,0x23,0xff,0x5a,0x29, +0x23,0xa1,0xc6,0xf8,0xb5,0x11,0x63,0xc0,0x3a,0xd7,0x58,0xbd,0x36,0xe8,0xa6,0x36,0xbf,0xb8,0x7c,0x64, +0x89,0x83,0x2e,0xd3,0xe3,0xaa,0x38,0xf9,0x28,0xe6,0x70,0x5c,0x8c,0x50,0xa2,0xd9,0xe9,0x17,0x41,0x06, +0xe0,0xc8,0x70,0x5a,0x5d,0x1b,0xb8,0x05,0x1d,0x32,0x0f,0x8e,0xba,0xdc,0x58,0x8c,0xb0,0xea,0x51,0xea, +0xbc,0xcf,0x60,0x27,0x2f,0x4b,0x3a,0x19,0x88,0x9b,0x01,0xed,0xd8,0x5e,0x50,0xdd,0xe5,0xe4,0x2e,0xa4, +0x42,0xbd,0xeb,0x85,0xb7,0x1c,0x28,0x54,0x18,0x41,0x6d,0x2e,0x5e,0x33,0x47,0x1f,0xf3,0x15,0x7d,0x3f, +0xa7,0x12,0xe5,0x86,0x35,0xeb,0x93,0xa6,0x1e,0xcb,0x42,0xd2,0xd0,0x8a,0x7e,0x33,0xc2,0x4b,0x16,0x4d, +0x36,0x96,0x03,0xc2,0x8b,0x23,0x98,0x8d,0x21,0xfd,0x52,0xd0,0x7d,0x56,0xe3,0xf8,0x48,0x78,0x9a,0x95, +0x17,0x97,0x44,0x16,0xd8,0xeb,0x0c,0xb4,0xc0,0x53,0x5a,0xa8,0xaf,0xd9,0x6a,0x72,0x9a,0x2b,0x73,0x49, +0xc4,0x90,0x6d,0xa9,0xda,0x9a,0x5c,0xe3,0xc7,0x2f,0x7f,0x7a,0x22,0x36,0x5f,0x8c,0x49,0x64,0xd9,0x3e, +0xc2,0x5b,0xf3,0xee,0x3d,0x89,0x40,0x6f,0x1e,0x02,0xea,0x6b,0x0c,0xca,0x08,0x6e,0x9e,0x8f,0x6a,0x7f, +0x82,0x80,0x6b,0x3e,0x2c,0xe5,0x7e,0x27,0xe3,0x5d,0x13,0xb4,0x42,0x35,0x99,0x07,0x8e,0xa8,0x49,0xef, +0x7b,0xb6,0x0e,0x1d,0x30,0x4c,0x8d,0x26,0xcd,0x58,0x95,0x38,0x78,0xfc,0xf2,0xed,0xd1,0xe0,0x94,0x48, +0xa5,0xf3,0xc1,0x05,0xb0,0x3a,0xe9,0xf4,0xa6,0xe7,0x17,0x90,0x69,0xd3,0x19,0xbe,0x61,0xd1,0x05,0x75, +0x6b,0x85,0xad,0xba,0x2a,0x88,0xda,0x58,0xa6,0x9f,0x88,0x8d,0xa8,0xc6,0x03,0x66,0x9f,0x07,0x2f,0xff, +0x36,0xa8,0x0b,0xa6,0x32,0xe8,0x44,0x4a,0xc7,0x30,0xcf,0x44,0x2c,0x0a,0xf6,0x9e,0xa9,0x25,0x40,0x9c, +0xac,0xd3,0xc6,0x74,0xe1,0x1e,0x6c,0xf9,0xd1,0x07,0x8f,0x2a,0xa9,0x97,0x5a,0x57,0x49,0x60,0x8f,0xea, +0xdb,0xf5,0x19,0x9d,0xdf,0xa9,0xb5,0x0b,0x3b,0xab,0x6c,0x23,0x8f,0xb1,0xcc,0xe0,0x46,0x81,0xcd,0xd3, +0xd2,0x36,0xf6,0xc6,0x57,0x99,0x69,0xca,0xe9,0x29,0xe8,0xdd,0x86,0x64,0xa5,0xfa,0x2b,0x98,0xae,0x44, +0xa4,0x56,0xa7,0x65,0x71,0x21,0xb2,0x24,0x38,0x40,0x41,0x7e,0xad,0xc8,0x14,0x58,0x04,0x66,0xbf,0xa5, +0x0f,0x4f,0xcb,0x34,0xfd,0x80,0x2b,0x53,0xe4,0x73,0xe9,0xd9,0x9a,0x0a,0x2b,0x06,0x2b,0x0c,0x10,0x8a, +0x3d,0xcd,0xf8,0x88,0x03,0x89,0x94,0x7c,0x4a,0xb2,0x15,0x0e,0xfb,0x01,0x23,0x25,0xc2,0x0d,0x77,0xf0, +0xf2,0xe8,0xd1,0x78,0x40,0x6b,0xb0,0xca,0x68,0x96,0x50,0x93,0x31,0x1e,0xc9,0xa0,0xbe,0x2c,0x46,0x08, +0xfb,0xa9,0x84,0x70,0xfa,0xd3,0x7e,0x7b,0x4e,0xda,0x42,0x46,0x86,0x5d,0x72,0x94,0xb9,0x16,0x91,0xee, +0x4a,0xe2,0xaa,0x34,0xbd,0x40,0xdd,0x8e,0x1b,0x51,0xdc,0xa9,0x2a,0x54,0xe6,0x07,0xc6,0xd0,0x9a,0xec, +0xc4,0x8d,0xe0,0x08,0x9d,0xe6,0x9a,0xc3,0xf1,0x54,0xd7,0xd3,0x89,0x89,0x98,0xad,0x40,0x9c,0x09,0x6f, +0x59,0xa6,0x23,0xf4,0xaf,0x1a,0xab,0x3c,0x36,0xca,0x08,0x9b,0x9c,0x68,0x47,0x21,0xe5,0xb6,0x73,0xe0, +0xe0,0x86,0xd0,0xad,0x03,0x2f,0x72,0x60,0xfc,0x89,0x5c,0x11,0x38,0x4d,0x85,0xaf,0xd4,0x07,0x46,0xf4, +0xc2,0x19,0x26,0x22,0x18,0xe6,0x0c,0xd3,0x25,0x84,0x54,0x82,0x35,0xd9,0xd6,0x70,0x5b,0xcd,0xa3,0x6e, +0xe5,0x15,0x4b,0x5c,0x89,0x48,0x0a,0x45,0x76,0x08,0xb5,0xba,0xcc,0x7d,0xc8,0xe8,0x88,0x4a,0x5d,0xad, +0xd0,0x45,0x54,0x7d,0x2a,0xfd,0x1c,0x0c,0x4d,0x4e,0xfc,0x4a,0x85,0xbd,0x68,0x59,0x31,0x2c,0xa7,0xde, +0x77,0xbe,0x49,0xef,0x81,0x24,0x31,0xfd,0x4d,0x1f,0x82,0x39,0x5c,0xa2,0xc4,0x16,0x03,0xda,0xe6,0x31, +0xb0,0xd4,0xe5,0xf2,0x65,0x9e,0x0e,0xe8,0x5a,0xae,0x8e,0x91,0x10,0x52,0xb6,0x41,0x72,0x06,0x52,0xdd, +0x67,0x94,0xec,0x60,0x0c,0x67,0xb1,0xcf,0xe7,0x4e,0xb8,0xe9,0x1d,0x2d,0x97,0x30,0x92,0x53,0xb5,0x50, +0xfa,0x7c,0x21,0x8c,0x14,0x5a,0xea,0x00,0xc9,0xb3,0x5c,0x75,0x31,0xcb,0x3c,0x53,0xb0,0x63,0x5f,0xab, +0xe3,0xaf,0x1e,0xf2,0x92,0x48,0x18,0x0f,0xf3,0x96,0x95,0x59,0x6d,0xeb,0x57,0x1a,0xdc,0x47,0x75,0xf2, +0x45,0xf2,0x39,0x82,0xb8,0xa4,0x4e,0x56,0x30,0xe4,0x66,0x7b,0x5f,0x51,0x8e,0xc0,0x58,0xda,0x59,0xef, +0x98,0xed,0x9a,0x1f,0xb3,0x97,0xfd,0x57,0x30,0x76,0xd3,0x0f,0x9a,0x63,0xb7,0xc5,0x2f,0xef,0xef,0x5b, +0x27,0x5a,0x43,0xf7,0xb9,0xa7,0x2f,0xaf,0x21,0x25,0xe2,0x15,0x99,0x10,0x9d,0x29,0x8a,0xff,0x7a,0x38, +0xd1,0xdf,0x6c,0xef,0x9e,0x6f,0xb0,0xef,0x69,0xc9,0x2f,0x6f,0x19,0xc2,0x6f,0x11,0xcb,0xc3,0x62,0xe2, +0xc1,0x97,0xb4,0x0e,0x21,0x55,0xc6,0x96,0x72,0x99,0xe4,0x35,0x6f,0x29,0xbc,0xb5,0x9c,0xd3,0x62,0x63, +0xf6,0x7a,0x46,0x15,0x87,0xee,0x41,0xb5,0xd3,0xb7,0x39,0xff,0x65,0x61,0x9f,0xe8,0x70,0x47,0x74,0xaa, +0x19,0xa6,0x3b,0xb6,0x75,0x09,0x16,0xb4,0xc7,0xe0,0xe9,0x81,0xa1,0x15,0xb4,0x0d,0x59,0x43,0x28,0xd4, +0xe1,0xd5,0x75,0x6b,0xc2,0x3a,0xbd,0x82,0x27,0x58,0x03,0x0d,0x99,0xdc,0xbb,0x7f,0x6e,0xb7,0xfc,0xa9, +0x54,0x90,0x16,0xbc,0x47,0x34,0xd1,0xd1,0x60,0x88,0x50,0x9d,0x96,0x2b,0x61,0x3c,0x33,0x8e,0x7c,0x58, +0xcc,0xb4,0x1c,0xaa,0x69,0x69,0x8d,0x68,0x1f,0xc8,0xe6,0x05,0x6e,0x3d,0xd4,0x59,0xff,0x7f,0xa8,0x2a, +0x4b,0xe2,0x73,0xa4,0x40,0xd9,0xd4,0x51,0xa7,0x13,0x91,0xf5,0x0e,0xde,0x3d,0x7f,0xfa,0x9c,0xd6,0x21, +0x6d,0xb7,0xe5,0xc7,0x5d,0x35,0x54,0x2f,0x7b,0x3d,0x33,0xb5,0x33,0x43,0xdf,0x24,0x9f,0xd2,0x1b,0x66, +0xa7,0xbf,0x63,0x7a,0xd2,0xeb,0xe3,0xf5,0x65,0xf9,0xe4,0xf3,0x5a,0x14,0x0a,0x42,0x06,0x4d,0xf8,0x81, +0x7d,0xe0,0x51,0x9e,0xd7,0x38,0x89,0x2d,0xb9,0x28,0xd3,0x98,0x2e,0x0f,0xcb,0x0b,0x6c,0xc7,0x9b,0x4f, +0x76,0xe5,0x6f,0xd6,0x40,0x3c,0x09,0xfb,0x69,0x28,0x6e,0xea,0xd4,0xd0,0x65,0x0f,0x27,0x33,0xbf,0xbb, +0x4e,0xfe,0x6e,0x9d,0xa8,0xd6,0x24,0x90,0x6d,0x16,0x07,0x1e,0x77,0xbf,0x5a,0x47,0x94,0xa7,0x4e,0x3e, +0xa6,0x83,0xf4,0xf4,0x94,0x1a,0xde,0x59,0x3e,0x74,0x4b,0x87,0x67,0x5e,0x5c,0xce,0x10,0x76,0x0e,0x0b, +0x47,0xcd,0x51,0x48,0x0b,0x22,0x9b,0x2c,0xfc,0x23,0x75,0xd1,0x93,0x00,0x1f,0xa5,0x3a,0xbc,0xcb,0x9e, +0x66,0xff,0x27,0x2a,0xa4,0x27,0x6b,0x53,0x27,0x2c,0x30,0x76,0x56,0xfe,0xbd,0x1a,0x99,0x93,0x80,0x8f, +0x1b,0x26,0x41,0x78,0xbb,0x18,0x00,0xc0,0x92,0xa8,0x13,0x55,0xab,0x3f,0x54,0x0d,0x5e,0xd5,0x08,0xe1, +0xd6,0xa6,0xc9,0xaf,0xc3,0x03,0x1c,0x4e,0xad,0xc5,0xfe,0x3d,0xeb,0xda,0x1a,0xf5,0xa6,0x51,0xc5,0x37, +0x08,0x8a,0xdf,0x13,0xdf,0xef,0x7b,0x00,0xa6,0xe4,0x6d,0x1c,0xd0,0x89,0x55,0x79,0x12,0xf3,0xd1,0x2e, +0xdc,0x80,0x9c,0xec,0x76,0xc1,0x45,0x0e,0x92,0xf7,0xed,0x5a,0x13,0xe3,0xb2,0x7c,0x59,0x2f,0xcc,0xd4, +0x19,0x87,0xcf,0xe8,0x59,0xcc,0xf5,0x76,0x3b,0x61,0x3d,0xbf,0x63,0x92,0xa6,0xa4,0x6f,0x79,0x0c,0xe7, +0x87,0xa9,0x15,0x3f,0x80,0x38,0x5d,0x21,0x28,0xdb,0xfd,0x0b,0xac,0xdf,0xac,0xd8,0x54,0xd4,0x93,0x72, +0xf4,0x99,0x43,0x1c,0x8e,0x6d,0x97,0x65,0x56,0xd3,0xf9,0x36,0x1e,0xdc,0xb0,0x6d,0x01,0xe4,0x4d,0xc2, +0x6b,0x99,0x32,0x66,0x9e,0x8a,0x00,0xe3,0x56,0xab,0x68,0x33,0x02,0xda,0xc8,0x4d,0xbb,0x4f,0xf5,0xb9, +0xa0,0x2a,0xc6,0xcf,0xa5,0xdf,0x89,0x5e,0x9e,0x59,0x5b,0xb5,0xa7,0x6a,0x81,0xb0,0x1d,0x91,0x6a,0xa1, +0x90,0x16,0x96,0x82,0x95,0xc6,0xb5,0x50,0x04,0x34,0x4c,0x5c,0x11,0x2d,0xa6,0xbd,0x9d,0x73,0x21,0x66, +0x88,0x1b,0x65,0xb8,0xb1,0x05,0x51,0x65,0x37,0x4d,0x98,0xb5,0x29,0x46,0x62,0x81,0x89,0x55,0xc8,0xbf, +0x06,0x7a,0xed,0x1a,0x7e,0x37,0x74,0xd0,0x15,0x62,0x42,0x30,0x38,0x86,0x5f,0x35,0xd1,0xac,0x74,0xf0, +0x01,0x18,0x5d,0xc8,0x12,0x33,0x55,0x18,0x46,0xd7,0x6f,0x57,0x4a,0x14,0x63,0x5f,0x78,0x2b,0xf2,0x77, +0x1d,0xb5,0xbf,0x3f,0x3a,0x44,0x55,0x4b,0x41,0xce,0x18,0xb5,0x43,0x0d,0xdb,0x5d,0xaa,0xf2,0x7f,0xe0, +0xd5,0xe1,0xf5,0x9e,0x85,0xce,0xfe,0x2e,0xd1,0x61,0x1d,0x6b,0x0b,0x77,0x84,0x58,0xf0,0x75,0x95,0x2d, +0x89,0xb1,0x16,0x2f,0xbe,0xa8,0x86,0xc0,0xf1,0xba,0xdd,0xe2,0x37,0x27,0x89,0x65,0x45,0x80,0x4e,0xaa, +0x28,0xe5,0x35,0x8f,0xbb,0x56,0xf0,0xc0,0xee,0x9d,0x9e,0x2c,0xb3,0x4f,0x63,0x3c,0x64,0xb2,0x09,0xf6, +0x9e,0x9a,0xa8,0x0b,0xed,0x4f,0x23,0x87,0x34,0xc0,0xfd,0xd0,0xb3,0x47,0xea,0x60,0x71,0x3e,0x76,0x9e, +0x48,0xaa,0xfd,0x29,0xbb,0xb4,0xf3,0x44,0x96,0x72,0x5f,0x89,0x8f,0xd3,0xe3,0xcd,0x19,0x91,0x7a,0x17, +0x49,0xbe,0xdc,0xc5,0x82,0x2d,0x8f,0xcf,0x4e,0x2e,0x96,0x38,0x54,0x58,0x25,0xe6,0x00,0x45,0xca,0x6d, +0xfb,0x8b,0xf2,0x06,0x7d,0xef,0x44,0x4a,0x86,0x48,0xa2,0xf7,0xc3,0xc0,0x74,0x73,0x1b,0x73,0x99,0x1e, +0x43,0x67,0xaa,0x34,0x27,0x9e,0xe7,0xbe,0x27,0x41,0x7e,0x5e,0xa4,0xf9,0x46,0x11,0xc9,0x34,0x44,0x8c, +0x03,0xe1,0x84,0xff,0xf1,0x44,0x61,0x2b,0x3d,0xfe,0x15,0xc3,0x2d,0xff,0x5e,0x86,0x1f,0xb3,0xfc,0xe3, +0xae,0x4c,0x96,0x2c,0x85,0x86,0xea,0x55,0x92,0xa7,0x2b,0xf9,0xfa,0x78,0x8d,0xeb,0x86,0x23,0x71,0x2a, +0x64,0x62,0x00,0x99,0x72,0x88,0xbb,0xb7,0xaa,0xcf,0xb9,0xbd,0xa1,0x2b,0x2b,0x11,0xd7,0x23,0x3d,0x27, +0x2c,0x7a,0x96,0xfd,0x18,0x58,0x14,0x0b,0xfa,0xdd,0x15,0x4f,0x4b,0x41,0xf5,0xd0,0x1b,0x3c,0x24,0x42, +0xe8,0x93,0x81,0xbf,0xe5,0x0d,0xcd,0x4f,0x88,0xde,0x55,0x86,0x5c,0x2a,0x67,0x4e,0x39,0xc7,0xeb,0xd1, +0x19,0x73,0xd4,0x46,0xc2,0x56,0x5a,0xca,0xb5,0x8c,0x72,0x16,0x1a,0xc5,0x80,0x15,0x62,0xc4,0xd2,0x52, +0x4b,0xc3,0x4c,0x4f,0x31,0x11,0x6d,0x0e,0xa8,0xb4,0xb2,0xa1,0x43,0xf8,0xb9,0x12,0xbf,0xeb,0x58,0x7b, +0xe1,0xfd,0x09,0x65,0x11,0x09,0xd9,0xbc,0x44,0x14,0x6e,0xc5,0x5f,0x1e,0x15,0x52,0x6d,0x98,0x77,0xb6, +0xda,0x69,0xc4,0xcc,0xff,0xef,0xb4,0x15,0xf5,0x0a,0xab,0x5d,0x4d,0xae,0x54,0x93,0x5d,0xbb,0x03,0x89, +0x62,0x83,0x98,0x45,0xf4,0x11,0x23,0x5e,0xca,0x44,0xd4,0xc9,0x42,0x26,0xbd,0xda,0xcf,0x33,0x28,0xfc, +0x75,0x29,0x99,0x66,0xa4,0x4d,0x97,0x55,0x37,0x75,0x19,0x15,0xb8,0xfc,0x4c,0x6b,0xeb,0xa6,0x3e,0x5b, +0xa6,0xab,0x9f,0x84,0xba,0xed,0x48,0xb2,0xc5,0x92,0xa1,0xc2,0x4c,0x45,0x17,0x4c,0x6f,0x35,0xde,0x54, +0xf6,0xec,0xba,0xa0,0x0d,0xf7,0x8f,0x17,0xe1,0x8d,0x2f,0xf8,0xe0,0x4a,0xf5,0x72,0xb1,0x8b,0x22,0x2e, +0xb3,0x5b,0x92,0xf7,0x95,0x22,0xbf,0xab,0x9e,0x51,0x4b,0x1f,0xc6,0xc4,0x3b,0xaa,0x97,0xaa,0x96,0xda, +0xee,0x45,0xf2,0x59,0x29,0x04,0x61,0x7a,0x60,0x4a,0x29,0x21,0x71,0x64,0xff,0x33,0x86,0x99,0x96,0x83, +0xf7,0xee,0x64,0x32,0x3c,0x98,0xdc,0x4e,0x45,0x0f,0xaa,0x3f,0x09,0xab,0x10,0x90,0x5a,0x38,0xae,0xe0, +0xbf,0x43,0xad,0x61,0x17,0x81,0x5b,0x88,0x3e,0xa3,0x47,0xdb,0xec,0x3f,0x89,0x72,0x4f,0xd1,0xc1,0x61, +0x7f,0x47,0xb4,0xd9,0x0c,0x19,0xcc,0xbc,0x86,0xc3,0x6b,0x0c,0xac,0x29,0x63,0x2c,0xa0,0xd1,0x23,0x1a, +0xa0,0x91,0xaa,0x8d,0x27,0x0e,0xa5,0x7c,0x70,0x22,0x94,0xb2,0x1e,0xb9,0xde,0xf7,0xd0,0xcd,0xfd,0x2f, +0x5a,0x03,0x06,0xdf,0x1e,0x6b,0x72,0xe8,0x2e,0x82,0xcf,0x8f,0x33,0x45,0xde,0xa0,0xc3,0x36,0xab,0xf4, +0x7f,0x32,0x47,0xfe,0x1b,0x65,0xf0,0xd4,0xbf,0x79,0x9e,0x98,0xd2,0x0c,0xe9,0x24,0x27,0xa7,0xa4,0xf6, +0x4d,0x95,0x9a,0xa7,0x8a,0x7e,0xef,0xe6,0xb9,0xd2,0x94,0xd3,0x33,0x59,0x72,0x3d,0x59,0xea,0x30,0x71, +0xbe,0xda,0x3f,0x5b,0xb0,0x99,0x24,0x66,0xb6,0xa8,0x88,0x7d,0xa9,0x40,0x84,0x29,0xbd,0xdd,0xcc,0xab, +0x44,0xd9,0x13,0x79,0x2b,0xb6,0x13,0x9e,0xea,0xbd,0xaa,0x1c,0x7a,0x72,0x2c,0xf6,0x96,0x2d,0x50,0x91, +0x71,0xd2,0x9d,0x8a,0x85,0x9e,0x0e,0x5f,0x19,0x35,0xe1,0x63,0xee,0x0f,0x25,0x9e,0xcb,0x30,0x67,0x8a, +0x7f,0x77,0xbe,0x22,0xec,0xaf,0x9a,0xaf,0x45,0xdf,0x7c,0xd5,0x1d,0xd2,0x99,0xb0,0xba,0xf7,0x7b,0xdf, +0xe4,0x19,0xdb,0xff,0xaa,0x3d,0x7f,0xba,0x35,0x57,0x94,0x86,0xe8,0x36,0x2d,0xf6,0x35,0x5b,0x36,0x1a, +0xcf,0xa1,0x5f,0x0f,0x89,0xff,0x1a,0xe7,0x20,0x0c,0x74,0x86,0xd3,0xa2,0xec,0xe4,0xb8,0xa1,0x74,0xa5, +0x87,0xed,0xf9,0x82,0xd6,0xd0,0xde,0xfc,0x95,0x56,0x2e,0x22,0xcf,0xad,0xb5,0x67,0xa6,0x9c,0xd7,0x53, +0x05,0x76,0x75,0xff,0x5a,0x6b,0xb8,0x77,0x71,0xe8,0x45,0xb3,0x42,0x60,0xde,0xc9,0x07,0x7e,0xe5,0x2e, +0x10,0x26,0x4b,0xfb,0x56,0xc7,0x1e,0xad,0x0f,0x3a,0x77,0x1a,0x4b,0x21,0x93,0x5b,0xcf,0xbc,0xe6,0x24, +0x54,0x26,0x44,0x5a,0xd6,0xc7,0x96,0x44,0xe6,0xdc,0xcc,0x9d,0x63,0x70,0x8c,0x1e,0x2a,0xb4,0xf9,0x14, +0x9f,0x5c,0x51,0x13,0x76,0xbe,0xe8,0x34,0x23,0x05,0xa2,0x87,0x4d,0xce,0x84,0x89,0xd3,0xd7,0x42,0x56, +0x0f,0x13,0x35,0x3b,0xce,0xc5,0x9c,0xac,0xcb,0x47,0x99,0x43,0xf5,0x96,0x61,0xa5,0x5c,0x2a,0x89,0x4d, +0x78,0xd0,0xca,0xe6,0x71,0x4b,0xcf,0x3f,0x35,0x34,0x7e,0x2d,0xfa,0x59,0x7d,0xaa,0xab,0x0d,0xc9,0xaa, +0xbe,0x8c,0xb0,0xa9,0x9b,0x3b,0xb0,0xd2,0xe5,0x42,0x2d,0x8a,0x06,0x61,0x9c,0x55,0x92,0xf7,0xbf,0x65, +0x0f,0x94,0x68,0xaa,0xb6,0xa1,0x9e,0x12,0xc7,0x34,0x48,0xc8,0x9f,0x43,0xd5,0xbb,0xa9,0xad,0x6d,0xeb, +0x9b,0x40,0xbb,0x16,0xbb,0x34,0x49,0x14,0xd8,0x10,0xde,0xda,0xa9,0x18,0x83,0xbe,0x7c,0x41,0xe8,0x6e, +0xe6,0xbe,0x15,0x92,0xd6,0x93,0xee,0x7a,0x57,0xa2,0xad,0xa5,0xd7,0x64,0x4d,0x4e,0xe1,0xed,0xff,0xf5, +0x03,0xee,0x54,0x08,0x5a,0x62,0xef,0xeb,0x61,0x5f,0xe9,0xc3,0xaf,0xbd,0x01,0xc7,0x94,0x8c,0x55,0x59, +0xde,0xc3,0x07,0x30,0x85,0x73,0x13,0x3f,0x7c,0x90,0xa8,0x42,0x25,0x3d,0xbd,0x83,0xc7,0xf4,0xc3,0x45, +0x3f,0xfc,0x1a,0x9e,0x9d,0xdd,0xa5,0xd1,0xe8,0x35,0x5b,0xeb,0x43,0x1e,0xec,0x5e,0x24,0x57,0xad,0x15, +0x22,0xf9,0xfb,0x77,0x68,0xa3,0x82,0xb6,0x88,0x46,0xb8,0xb6,0x27,0x0b,0x36,0xff,0x71,0x57,0x0b,0x6a, +0x3d,0x3e,0x5b,0x23,0xd6,0x5b,0xa9,0xd6,0x4c,0xc1,0xf7,0xc6,0xfa,0x8f,0xd7,0x53,0xe9,0xac,0x27,0xc7, +0xda,0x4c,0x99,0x75,0xc0,0x80,0x48,0x11,0x81,0x05,0xe2,0xb0,0xd7,0xbd,0x39,0xd9,0xec,0xc3,0xc9,0xba, +0x46,0x4a,0x47,0x34,0xa8,0xcc,0x42,0xba,0x39,0x3f,0x5c,0x54,0x9d,0xcc,0xc6,0x42,0xc4,0xc9,0xce,0xe1, +0xfb,0xba,0x95,0xb0,0xcd,0x49,0xba,0xf9,0x3f,0x64,0xf9,0xa7,0xde,0x8a,0x8b,0x69,0x8a,0xf3,0x42,0x91, +0x7f,0x80,0x18,0x17,0x4e,0xe0,0xed,0xb5,0xa7,0xf9,0x5b,0x9b,0xec,0x65,0xf3,0x77,0x4d,0x93,0xb7,0xf6, +0x48,0x43,0xab,0xdf,0xb0,0x4f,0x5a,0x53,0xa0,0x21,0xed,0xff,0xe7,0x13,0x40,0x71,0x0d,0x65,0x2f,0xd7, +0x50,0xf4,0x72,0x0d,0xc5,0x4e,0xae,0xa1,0x99,0x42,0xd4,0x14,0x36,0xff,0xa7,0x96,0xdb,0xcc,0x43,0xd9, +0xde,0x69,0xdd,0xce,0x6b,0xfa,0xc1,0xed,0x3b,0x4b,0xfb,0xa6,0xb4,0xd8,0xc0,0xca,0xf8,0xc0,0x6b,0xb5, +0x69,0x23,0x98,0x7d,0x9d,0x3c,0xe5,0x0c,0x9f,0xd2,0x12,0x56,0xef,0x9c,0x47,0x7c,0x63,0x87,0x1c,0xeb, +0x75,0x6c,0x3d,0x6c,0x99,0xb9,0xd6,0x59,0xbd,0x4a,0x6d,0x33,0x57,0x4f,0x9b,0xc8,0x35,0xa5,0xa4,0x63, +0x9d,0x46,0xc5,0x8d,0x24,0x3a,0x8b,0x11,0x56,0x72,0x01,0x71,0x7d,0x2d,0xe8,0x82,0xe3,0x8f,0x29,0x1f, +0x88,0x63,0x1a,0x94,0x27,0x6d,0xbf,0x55,0x81,0xed,0x4a,0xd8,0x32,0x94,0xa5,0x90,0x97,0xe9,0x31,0xdb, +0x28,0x41,0xec,0x08,0xd7,0x5b,0xa5,0x5b,0x62,0xfa,0x2d,0x71,0xd9,0x75,0x45,0xa2,0xee,0x35,0xe8,0x5b, +0x78,0xbc,0x36,0xda,0x28,0x9d,0xc1,0x3c,0xa7,0x96,0x24,0xda,0xf1,0x24,0x76,0x74,0xb2,0x2c,0x3a,0x2a, +0x92,0xa5,0xe0,0xbf,0x48,0x26,0x4b,0x80,0xcb,0xa2,0x5a,0xae,0x9e,0x35,0x3c,0x88,0xa9,0x2a,0x03,0x61, +0x31,0x43,0xdd,0x92,0xad,0x87,0xcd,0x01,0x99,0xf0,0xcc,0x91,0x06,0x67,0xa7,0x99,0x55,0x96,0x25,0x86, +0x52,0x5d,0xd0,0x2f,0x82,0xb2,0xe4,0x17,0x8e,0xe4,0x4a,0xc4,0x10,0x18,0x33,0x2d,0x62,0x92,0x62,0x5a, +0x52,0x27,0x25,0xc1,0xf2,0x6c,0xe2,0xbc,0xb7,0xee,0xe6,0x69,0x6f,0xe5,0x0d,0xe1,0xc8,0x0d,0x40,0x0a, +0x2f,0xfe,0x37,0x2c,0x7a,0xb3,0x5a,0x65,0x6f,0x09,0xed,0xaf,0x74,0xce,0x86,0x44,0xca,0xd6,0x66,0x6e, +0xdd,0x7a,0x75,0x64,0x2b,0x49,0x68,0xe5,0x6e,0xae,0x9b,0xbd,0x41,0x17,0xd8,0xec,0x3e,0xbb,0x0a,0x75, +0x05,0x19,0x49,0xd8,0x7a,0xcb,0xbd,0x6f,0x7d,0xc0,0xd8,0xde,0xfd,0xb1,0x2a,0x5b,0xd9,0xad,0x9b,0x9e, +0x32,0xff,0x8d,0x5a,0xb7,0x5e,0x6b,0x25,0xb4,0xbe,0xa1,0xe4,0xd7,0xdd,0xc2,0xfb,0xa5,0xdc,0xc9,0x22, +0xd0,0x4b,0x15,0x72,0x3f,0xfb,0x2d,0x47,0x1c,0xa8,0xc8,0x2c,0x88,0xe3,0x59,0x16,0x4e,0x84,0x93,0xf8, +0xa9,0x3a,0xb9,0x8c,0xbb,0xad,0x6f,0x27,0xc3,0x70,0x44,0x9e,0x88,0x33,0xe7,0xc8,0x79,0x47,0x1c,0x3b, +0x11,0x63,0x50,0x36,0x76,0xcb,0x5e,0xed,0x67,0x41,0x4b,0x94,0x96,0x15,0xd0,0xf7,0x14,0x96,0x06,0x63, +0xf4,0x67,0x13,0xc3,0xcb,0xd8,0xbc,0x50,0xda,0xd4,0x6e,0xb4,0x88,0x4b,0x30,0xab,0x47,0x10,0x95,0xb1, +0x73,0x21,0xad,0xc0,0x6a,0x2d,0x46,0x95,0x59,0x7e,0x9e,0x96,0x19,0xf4,0x8e,0x3c,0xa7,0x58,0x8b,0x9a, +0x09,0xda,0x50,0x23,0x89,0xb3,0x9d,0x06,0x58,0xf6,0x25,0xdc,0x83,0x22,0xd3,0xa6,0x99,0xb6,0x30,0x2e, +0xd3,0x53,0x2a,0x12,0xe0,0xe2,0x09,0xc4,0x6c,0x8a,0x83,0x71,0x1e,0xd6,0xe9,0x2a,0x4f,0xeb,0x48,0xf2, +0xf0,0x37,0xe1,0x3f,0xd5,0x59,0xaa,0x94,0x18,0xab,0x85,0x63,0x4c,0x60,0xf4,0x0e,0x62,0x12,0xda,0x6b, +0x58,0x4c,0x4b,0xd5,0x6a,0x55,0x99,0x93,0x38,0x99,0x79,0x87,0x2f,0x7f,0xfa,0xe9,0xc9,0xe1,0xd1,0x93, +0xc7,0xc4,0x1c,0xff,0xf4,0xf2,0x68,0xd0,0xdc,0xd3,0x3b,0x79,0xbd,0xee,0x79,0xe5,0xcd,0xdf,0x7f,0x3a, +0xfc,0x5a,0xe7,0x57,0x37,0x80,0x48,0x58,0x03,0x0f,0x43,0x75,0x4f,0x72,0x86,0xb8,0x97,0xe8,0xa4,0xf6, +0x76,0x12,0x9e,0xc4,0xd5,0x9f,0xbe,0x9d,0x4c,0xad,0xf4,0x4a,0xd9,0xfc,0x73,0xfe,0xe5,0xcd,0x8f,0x57, +0xf4,0xf8,0xee,0x7d,0xf7,0xf1,0xdd,0xfb,0xe6,0xf1,0x26,0xae,0x88,0xb9,0xdf,0x0c,0xbd,0xe5,0xa0,0xf1, +0x1d,0x58,0xb1,0x33,0xc1,0xb9,0x95,0xb2,0xe4,0x94,0x0b,0x2b,0xe5,0x84,0x53,0x2a,0xef,0x1a,0xa5,0xac, +0xc3,0xf3,0xf0,0xac,0x2d,0x69,0x37,0xa3,0x3b,0x3d,0xb3,0x2c,0xf3,0x7d,0xc7,0x30,0xfa,0xcc,0xb5,0x8a, +0x3e,0x6b,0xf3,0x5f,0x49,0xa0,0x0d,0xa2,0xfb,0x32,0x83,0xd4,0xc2,0x9a,0x8b,0xfc,0xb5,0x79,0xb8,0x2e, +0x53,0x09,0xf2,0x8e,0xf8,0x14,0x3a,0x0d,0x70,0xc3,0x92,0x28,0x2f,0xad,0x87,0xc9,0xf0,0x3c,0x50,0x8b, +0xe4,0x74,0xd7,0xac,0x9c,0x9e,0xda,0xf5,0x5e,0xc7,0xa7,0x3d,0x9f,0x38,0xed,0x7e,0xe2,0x54,0xa8,0x03, +0xf5,0x0d,0xfe,0xc4,0x45,0xdc,0xa6,0x1a,0x9b,0x8f,0x5c,0x58,0x1f,0xb9,0xe0,0xda,0x25,0x62,0x89,0x76, +0x65,0x31,0xcd,0x89,0x10,0x6e,0x1c,0x71,0x2c,0x09,0xda,0xf4,0x30,0xf2,0x7c,0xbd,0x98,0x33,0xd8,0xfb, +0xd7,0x2c,0x26,0xee,0x63,0xc9,0x93,0x79,0xbe,0x50,0x36,0x6e,0x56,0x59,0xbc,0x30,0x3f,0xc5,0x78,0x18, +0xd2,0x3a,0xb1,0x24,0x59,0x57,0x6c,0xf5,0x74,0xa5,0x64,0x42,0xd1,0x27,0x2d,0x1d,0x02,0x70,0x9b,0x4d, +0xbf,0x7c,0xea,0xa1,0x5f,0x0c,0xd1,0xf5,0x69,0x9e,0x2e,0xda,0x8e,0x44,0x6c,0x29,0x04,0x6a,0xf9,0xd2, +0x71,0x26,0x72,0xbb,0xa7,0xc9,0x22,0xcd,0x50,0x5c,0x67,0x6d,0x11,0xf8,0x6d,0x26,0x72,0xe7,0xbb,0xa6, +0x0b,0x00,0xf8,0x71,0xdd,0xdf,0x05,0x5f,0xa4,0x0b,0x8e,0x63,0x5b,0xe8,0xeb,0xb4,0xf3,0x4b,0x7f,0x3b, +0x77,0x35,0xee,0x58,0x1a,0xf7,0x65,0x2e,0x48,0x3e,0xcd,0x90,0x5a,0x74,0xbe,0x3b,0xac,0x5c,0x8f,0x8f, +0x52,0x8f,0xc3,0xf8,0xa3,0x20,0x95,0x01,0xdd,0xe5,0x28,0x86,0xae,0xf9,0x70,0xf6,0x51,0xb4,0xc9,0xc3, +0x8f,0xe3,0x0d,0x95,0x50,0x45,0x2d,0x1f,0xb7,0xc3,0x20,0x7c,0xdd,0x5e,0x84,0x26,0x4b,0x77,0x7e,0x4c, +0x5f,0x73,0x05,0x8f,0x5a,0x64,0xfa,0xeb,0x86,0x67,0xd6,0x17,0x8a,0xde,0xfd,0xe8,0x10,0xee,0x0c,0xa5, +0xe8,0x89,0x77,0xc3,0x4d,0xa6,0xc4,0x01,0x40,0x9a,0x5c,0xfb,0xe4,0xae,0xca,0xdf,0x10,0xf3,0x8d,0x67, +0x89,0x96,0xcb,0x86,0xf5,0xb4,0xe5,0x4b,0xe1,0x08,0x01,0x65,0x2f,0xf0,0x2d,0xf1,0xad,0x2b,0x36,0x09, +0x6b,0x62,0xc8,0xcb,0x4d,0xda,0x7d,0xd5,0x98,0xf2,0x06,0x8c,0x47,0xe2,0xd8,0xf3,0x86,0xf5,0xee,0xcc, +0x53,0xcd,0x6b,0xd9,0xcf,0x5b,0x1e,0x31,0x2c,0x89,0xb5,0x9f,0x2b,0xea,0x3a,0x98,0x5a,0xc6,0x04,0x7b, +0x16,0xbc,0x15,0x1d,0x5d,0x39,0xd3,0x8a,0x08,0xbb,0x00,0x85,0x70,0xcd,0x90,0x04,0x40,0x96,0x1c,0x0e, +0x1b,0x53,0x17,0xdb,0xbc,0x27,0xe6,0xcc,0xfc,0xd4,0x18,0x75,0x18,0x03,0x25,0xe7,0x21,0x52,0x42,0x8b, +0x8e,0x6f,0x9e,0x20,0x25,0xdc,0xd9,0x92,0x10,0x16,0x22,0x07,0xaa,0x1a,0xa3,0xd1,0x4d,0xd5,0xe0,0xa7, +0xbb,0xaa,0xa1,0x1e,0xf6,0x54,0x43,0x3d,0xf9,0x9d,0x6a,0x20,0x72,0x93,0xcb,0x2b,0xbf,0x2d,0x57,0x16, +0x97,0x3c,0xf7,0x2e,0x41,0xc8,0x19,0x13,0x4f,0x4f,0xab,0x88,0x81,0xac,0x74,0xee,0x2d,0xa6,0x6c,0x02, +0x52,0xc2,0x34,0x1b,0x98,0xc4,0x7d,0xdc,0x16,0x72,0xb0,0x1b,0x06,0x91,0x64,0x6f,0x5f,0xff,0xc8,0x48, +0x57,0xa1,0x4a,0x34,0xc1,0x4e,0xe2,0xd4,0x5c,0x62,0xee,0x9f,0xd7,0xf5,0xba,0x8a,0xbc,0xd8,0x4a,0x9e, +0xf1,0x97,0x2e,0xab,0xe6,0x15,0xaa,0x1a,0xe5,0x89,0xfa,0xd2,0x23,0xcb,0xa3,0x5a,0x75,0xdc,0x51,0x81, +0x8f,0x83,0x8b,0x6d,0x1a,0x69,0xec,0x54,0x25,0x68,0x8c,0x02,0x95,0xb7,0x40,0x43,0x01,0x24,0x6f,0x6c, +0x58,0xd1,0x62,0x31,0x73,0x31,0x40,0xca,0xd1,0x55,0x0b,0x45,0x9a,0x63,0xa8,0xf5,0xa0,0xa0,0x29,0x7b, +0xfa,0xfd,0x7d,0x6d,0x58,0x7f,0xb2,0x2a,0x38,0xd0,0x89,0xba,0xe7,0xde,0x79,0x97,0x1e,0xbf,0xa1,0xeb, +0xb4,0xf6,0x75,0x9b,0x38,0x1c,0x8e,0xce,0x33,0x2e,0x72,0x45,0x0e,0xdf,0x68,0x4e,0xe2,0x44,0x24,0xb9, +0xc3,0x41,0x4a,0xbd,0xf7,0x88,0x90,0x68,0x25,0x96,0x92,0x58,0x3a,0x89,0xb5,0x24,0xd6,0x58,0x88,0xb4, +0x6e,0x6c,0xe6,0x9f,0x23,0x03,0x4b,0x80,0x07,0x4b,0x8e,0x68,0xcb,0xda,0x2c,0x3b,0x3d,0x80,0x61,0x24, +0x65,0x5d,0x31,0x72,0x39,0x0f,0x65,0xe4,0x71,0xa8,0xd0,0x76,0x72,0xc5,0xe9,0xb4,0x41,0x48,0x26,0x50, +0x9b,0x34,0x26,0xce,0x78,0xe9,0x49,0x93,0x06,0xdd,0x6f,0x1d,0x15,0xca,0x4d,0x1b,0x19,0x82,0xab,0xde, +0xf7,0x5a,0xb6,0xfe,0x2d,0xc7,0xb2,0x57,0x08,0x7e,0x93,0xd6,0x69,0xf9,0xfd,0x17,0xd7,0xe3,0x5e,0xbb, +0xf7,0x21,0x54,0x24,0x1f,0x3b,0xb1,0xcf,0xe1,0x22,0x03,0x48,0x53,0x81,0x20,0xd8,0xf6,0x21,0xa8,0xd2, +0xa4,0x3c,0x39,0x6f,0x70,0xe4,0x81,0x24,0xd1,0x09,0xa8,0xca,0xe1,0xac,0x9a,0xfe,0x1e,0xa2,0xbf,0x07, +0xd4,0xdb,0x4c,0xe8,0xa9,0x41,0x0e,0x8d,0xf0,0x61,0xef,0x20,0xb4,0xd8,0xf8,0xd0,0x66,0x8b,0x0d,0xc8, +0x00,0xf0,0x5d,0x1b,0x42,0x9b,0xe7,0x2a,0x02,0x69,0xb9,0x16,0x7c,0x8d,0xf7,0x84,0xba,0xd6,0xfe,0x13, +0xea,0x56,0x3c,0x28,0xc2,0x55,0x56,0xbf,0x3b,0xcf,0x6a,0x60,0xf0,0xe2,0xfa,0xf0,0xf0,0x08,0x57,0x20, +0xf1,0x27,0xa1,0xd0,0xd0,0xb7,0x18,0xbd,0x04,0x0e,0x9d,0x74,0xd6,0xec,0x04,0xb3,0xdb,0x25,0x6d,0xd6, +0x41,0xae,0xbb,0xa2,0x98,0x86,0x80,0x66,0x7a,0x00,0xde,0x0b,0x33,0x73,0x15,0xd5,0xe3,0xcb,0xf3,0xec, +0xe4,0x9c,0xe9,0x6a,0xe2,0x34,0x0e,0xee,0x59,0xe6,0xad,0x03,0x37,0x92,0xc0,0x35,0x83,0x43,0xdf,0xb2, +0xbf,0xee,0xa2,0x5f,0x84,0x2d,0x07,0xe7,0xb0,0x2b,0x49,0x87,0xc1,0xe3,0x73,0xb4,0x11,0xa7,0x95,0x55, +0x50,0xe3,0x3a,0x2e,0x56,0x74,0x6d,0x93,0x10,0x4b,0x87,0xd5,0x98,0x6f,0x28,0x73,0xce,0x11,0xf2,0x8d, +0x56,0x9d,0x8c,0xc6,0x4e,0x84,0xf3,0xed,0x30,0x9d,0x9e,0xb0,0xcd,0xf4,0xc1,0x64,0x22,0x8a,0x09,0xad, +0x43,0x13,0x6f,0x80,0x96,0xde,0x4d,0xd9,0xa2,0xf6,0x64,0x1c,0x59,0x22,0xaa,0x9e,0x37,0x5e,0xd9,0xe2, +0x2c,0xfd,0xa6,0xb6,0xc8,0x75,0x5f,0x90,0xb9,0xd4,0xca,0x68,0x0c,0x63,0xdb,0x79,0xd5,0x03,0x27,0x3b, +0xa4,0x4f,0x23,0xb6,0x5d,0x6a,0x65,0x87,0x81,0x94,0x93,0xf3,0x3c,0x19,0x9d,0x68,0xe9,0x91,0x93,0x53, +0x5b,0x38,0x39,0xb9,0x95,0x39,0x51,0x2b,0xab,0x6d,0xba,0xd4,0x91,0x61,0x37,0x36,0x4b,0x66,0x62,0xfb, +0x3d,0xaf,0x58,0x5f,0x18,0x71,0x80,0xc9,0xfe,0x8f,0xe0,0x89,0x93,0x5f,0x9b,0xa4,0x8d,0x04,0xcf,0xa4, +0xfd,0x96,0x58,0x5e,0xf6,0xbf,0xa1,0x0d,0xff,0x3a,0x3d,0xca,0xc9,0xfd,0xef,0x28,0xcb,0xb6,0xf6,0x3b, +0xb6,0xa5,0x9d,0xcc,0x5b,0xcb,0x38,0xcf,0xd6,0xae,0xd9,0x26,0x9b,0xad,0x39,0x24,0xe7,0x7f,0x67,0xee, +0x70,0xb2,0x93,0x95,0x68,0x54,0x78,0x75,0x3a,0x39,0x5d,0x2a,0xb5,0xaf,0xe4,0x91,0x58,0x10,0xba,0xaf, +0x75,0x91,0x77,0x6e,0x76,0xfa,0xb1,0xec,0x0c,0x3b,0x03,0x6d,0x65,0x1d,0x4b,0x73,0x77,0x44,0x5d,0x36, +0x9e,0x43,0xad,0x02,0xb4,0x3b,0x66,0xe3,0xc8,0x27,0x26,0x3a,0xee,0xaa,0x24,0x16,0xa7,0xdf,0x14,0xc3, +0x75,0xda,0x50,0x26,0x0f,0x36,0x43,0x64,0x59,0x3f,0x74,0x4a,0x14,0x9b,0x81,0x1d,0x1a,0x73,0xc3,0x46, +0x1e,0x5c,0x87,0x16,0x93,0x89,0x42,0x96,0x26,0xdc,0x8c,0x3d,0xca,0x5a,0x29,0xd0,0xd0,0x81,0x37,0xe4, +0xd5,0xde,0xb0,0x76,0x66,0x0f,0x7d,0x11,0x81,0xa4,0x6e,0x1f,0x83,0x9a,0x06,0x23,0xa2,0xd6,0x87,0xac, +0x3e,0xee,0x39,0x64,0x59,0xb0,0x4f,0xa7,0xde,0x4c,0x93,0x0c,0xb8,0x0f,0xa2,0xde,0x43,0x3d,0xb0,0x81, +0x8d,0x38,0xce,0xef,0xc3,0xff,0x07,0x26,0xfc,0xcc,0x99,0x3c,0xa5,0x02,0x00 }; \ No newline at end of file diff --git a/code/espurna/web.ino b/code/espurna/web.ino index 9582818c..2fa50771 100644 --- a/code/espurna/web.ino +++ b/code/espurna/web.ino @@ -47,6 +47,8 @@ char _last_modified[50]; std::vector * _webConfigBuffer; bool _webConfigSuccess = false; +std::vector _web_request_callbacks; + // ----------------------------------------------------------------------------- // HOOKS // ----------------------------------------------------------------------------- @@ -93,7 +95,9 @@ void _onGetConfig(AsyncWebServerRequest *request) { response->printf("{\n\"app\": \"%s\"", APP_NAME); response->printf(",\n\"version\": \"%s\"", APP_VERSION); response->printf(",\n\"backup\": \"1\""); - response->printf(",\n\"timestamp\": \"%s\"", ntpDateTime().c_str()); + #if NTP_SUPPORT + response->printf(",\n\"timestamp\": \"%s\"", ntpDateTime().c_str()); + #endif // Write the keys line by line (not sorted) unsigned long count = settingsKeyCount(); @@ -330,6 +334,19 @@ bool _webKeyCheck(const char * key) { return (strncmp(key, "web", 3) == 0); } +void _onRequest(AsyncWebServerRequest *request){ + + // Send request to subscribers + for (unsigned char i = 0; i < _web_request_callbacks.size(); i++) { + bool response = (_web_request_callbacks[i])(request); + if (response) return; + } + + // No subscriber handled the request, return a 404 + request->send(404); + +} + // ----------------------------------------------------------------------------- bool webAuthenticate(AsyncWebServerRequest *request) { @@ -349,6 +366,10 @@ AsyncWebServer * webServer() { return _server; } +void webRequestRegister(web_request_callback_f callback) { + _web_request_callbacks.push_back(callback); +} + unsigned int webPort() { #if ASYNC_TCP_SSL_ENABLED & WEB_SSL_ENABLED return 443; @@ -385,6 +406,8 @@ void webSetup() { #if WEB_EMBEDDED _server->on("/index.html", HTTP_GET, _onHome); #endif + + // Other entry points _server->on("/reset", HTTP_GET, _onReset); _server->on("/config", HTTP_GET, _onGetConfig); _server->on("/config", HTTP_POST | HTTP_PUT, _onPostConfig, _onPostConfigData); @@ -401,10 +424,8 @@ void webSetup() { }); #endif - // 404 - _server->onNotFound([](AsyncWebServerRequest *request){ - request->send(404); - }); + // Handle other requests, including 404 + _server->onNotFound(_onRequest); // Run server #if ASYNC_TCP_SSL_ENABLED & WEB_SSL_ENABLED @@ -413,6 +434,7 @@ void webSetup() { #else _server->begin(); #endif + DEBUG_MSG_P(PSTR("[WEBSERVER] Webserver running on port %u\n"), port); // Websocket Callbacks diff --git a/code/extra_scripts.py b/code/extra_scripts.py index 75fd5f9a..c4946f25 100644 --- a/code/extra_scripts.py +++ b/code/extra_scripts.py @@ -10,7 +10,7 @@ from platformio import util import distutils.spawn -Import("env") +Import("env", "projenv") # ------------------------------------------------------------------------------ # Utils @@ -86,6 +86,9 @@ def check_size(source, target, env): # Hooks # ------------------------------------------------------------------------------ +# Always show warnings for project code +projenv.ProcessUnFlags("-w") + remove_float_support() env.AddPostAction("$BUILD_DIR/${PROGNAME}.bin", check_size) diff --git a/code/html/custom.js b/code/html/custom.js index 6dbc0ece..4ac8d07d 100644 --- a/code/html/custom.js +++ b/code/html/custom.js @@ -46,7 +46,7 @@ function sensorName(id) { "HLW8012", "V9261F", "ECH1560", "Analog", "Digital", "Events", "PMSX003", "BMX280", "MHZ19", "SI7021", "SHT3X I2C", "BH1750", "PZEM004T", "AM2320 I2C", "GUVAS12SD", - "TMP3X", "HC-SR04", "SenseAir", "GeigerTicks", "GeigerCPM" + "TMP3X", "Sonar", "SenseAir", "GeigerTicks", "GeigerCPM" ]; if (1 <= id && id <= names.length) { return names[id - 1]; @@ -59,9 +59,10 @@ function magnitudeType(type) { "Temperature", "Humidity", "Pressure", "Current", "Voltage", "Active Power", "Apparent Power", "Reactive Power", "Power Factor", "Energy", "Energy (delta)", - "Analog", "Digital", "Events", + "Analog", "Digital", "Event", "PM1.0", "PM2.5", "PM10", "CO2", "Lux", "UV", "Distance" , "HCHO", - "Local Dose Rate", "Local Dose Rate" + "Local Dose Rate", "Local Dose Rate", + "Count" ]; if (1 <= type && type <= types.length) { return types[type - 1]; diff --git a/code/memanalyzer.py b/code/memanalyzer.py index c2f236b1..4cec1c64 100644 --- a/code/memanalyzer.py +++ b/code/memanalyzer.py @@ -55,7 +55,7 @@ def file_size(file): def analyse_memory(elf_file): - command = "%s -t '%s' " % (objdump_binary, elf_file) + command = "%s -t '%s'" % (objdump_binary, elf_file) response = subprocess.check_output(shlex.split(command)) if isinstance(response, bytes): response = response.decode('utf-8') @@ -102,7 +102,7 @@ def run(env_, modules_): flags = "" for item in modules_.items(): flags += "-D%s_SUPPORT=%d " % item - command = "export ESPURNA_BOARD=\"WEMOS_D1_MINI_RELAYSHIELD\"; export ESPURNA_FLAGS=\"%s\"; platformio run --silent --environment %s" % (flags, env_) + command = "ESPURNA_BOARD=\"WEMOS_D1_MINI_RELAYSHIELD\" ESPURNA_FLAGS=\"%s\" platformio run --silent --environment %s 2>/dev/null" % (flags, env_) subprocess.check_call(command, shell=True) @@ -251,6 +251,4 @@ try: except: raise -subprocess.check_call("export ESPURNA_BOARD=\"\"; export ESPURNA_FLAGS=\"\"", shell=True) - print("\n") diff --git a/code/platformio.ini b/code/platformio.ini index dbfc1c22..c4bc87aa 100644 --- a/code/platformio.ini +++ b/code/platformio.ini @@ -38,7 +38,7 @@ debug_flags = -DDEBUG_ESP_CORE -DDEBUG_ESP_SSL -DDEBUG_ESP_WIFI -DDEBUG_ESP_HTTP # -DPIO_FRAMEWORK_ARDUINO_LWIP2_LOW_MEMORY = v2 Lower Memory # -DPIO_FRAMEWORK_ARDUINO_LWIP2_HIGHER_BANDWIDTH = v2 Higher Bandwidth # ------------------------------------------------------------------------------ -build_flags = -g -w -DMQTT_MAX_PACKET_SIZE=400 -DNO_GLOBAL_EEPROM ${env.ESPURNA_FLAGS} -DPIO_FRAMEWORK_ARDUINO_LWIP_HIGHER_BANDWIDTH +build_flags = -g -w -DMQTT_MAX_PACKET_SIZE=400 -DNO_GLOBAL_EEPROM ${sysenv.ESPURNA_FLAGS} -DPIO_FRAMEWORK_ARDUINO_LWIP_HIGHER_BANDWIDTH build_flags_512k = ${common.build_flags} -Wl,-Teagle.flash.512k0m1s.ld build_flags_1m0m = ${common.build_flags} -Wl,-Teagle.flash.1m0m1s.ld build_flags_4m1m = ${common.build_flags} -Wl,-Teagle.flash.4m1m4s.ld @@ -47,8 +47,8 @@ build_flags_4m3m = ${common.build_flags} -Wl,-Teagle.flash.4m3m4s.ld # ------------------------------------------------------------------------------ # OTA: # ------------------------------------------------------------------------------ -upload_port = "${env.ESPURNA_IP}" -upload_flags = --auth=${env.ESPURNA_AUTH} --port 8266 +upload_port = "${sysenv.ESPURNA_IP}" +upload_flags = --auth="${sysenv.ESPURNA_AUTH}" # ------------------------------------------------------------------------------ # OTHER SETTINGS: @@ -90,6 +90,7 @@ lib_deps = rc-switch https://github.com/LowPowerLab/RFM69#1.1.3 https://github.com/xoseperez/Time + NewPing lib_ignore = # ------------------------------------------------------------------------------ @@ -129,7 +130,7 @@ board = ${common.board_1m} board_build.flash_mode = ${common.flash_mode} lib_deps = ${common.lib_deps} lib_ignore = ${common.lib_ignore} -build_flags = ${common.build_flags_1m0m} -D${env.ESPURNA_BOARD} +build_flags = ${common.build_flags_1m0m} -D${sysenv.ESPURNA_BOARD} upload_speed = ${common.upload_speed} upload_port = ${common.upload_port} upload_flags = ${common.upload_flags} @@ -142,7 +143,7 @@ board = ${common.board_4m} board_build.flash_mode = ${common.flash_mode} lib_deps = ${common.lib_deps} lib_ignore = ${common.lib_ignore} -build_flags = ${common.build_flags_4m1m} -D${env.ESPURNA_BOARD} +build_flags = ${common.build_flags_4m1m} -D${sysenv.ESPURNA_BOARD} upload_speed = ${common.upload_speed} upload_port = ${common.upload_port} upload_flags = ${common.upload_flags} @@ -188,6 +189,18 @@ extra_scripts = ${common.extra_scripts} # DEVELOPMENT BOARDS # ------------------------------------------------------------------------------ +[env:wemos-d1mini] +platform = ${common.platform} +framework = ${common.framework} +board = d1_mini +board_build.flash_mode = ${common.flash_mode} +lib_deps = ${common.lib_deps} +lib_ignore = ${common.lib_ignore} +build_flags = ${common.build_flags} -DWEMOS_D1_MINI -DDEBUG_FAUXMO=Serial -DNOWSAUTH +upload_speed = ${common.upload_speed_fast} +monitor_speed = ${common.monitor_speed} +extra_scripts = ${common.extra_scripts} + [env:wemos-d1mini-relayshield] platform = ${common.platform} framework = ${common.framework} @@ -535,7 +548,7 @@ lib_ignore = ${common.lib_ignore} build_flags = ${common.build_flags_1m0m} -DITEAD_SONOFF_DUAL_R2 extra_scripts = ${common.extra_scripts} -[env:itead-sonoff-dual-ota-r2] +[env:itead-sonoff-dual-r2-ota] platform = ${common.platform} framework = ${common.framework} board = ${common.board_1m} @@ -2348,6 +2361,32 @@ upload_port = ${common.upload_port} upload_flags = ${common.upload_flags} extra_scripts = ${common.extra_scripts} +[env:homecube-16a] +platform = ${common.platform} +framework = ${common.framework} +board = ${common.board_1m} +board_build.flash_mode = ${common.flash_mode} +lib_deps = ${common.lib_deps} +lib_ignore = ${common.lib_ignore} +build_flags = ${common.build_flags_1m0m} -DHOMECUBE_16A +upload_speed = ${common.upload_speed} +monitor_speed = ${common.monitor_speed} +extra_scripts = ${common.extra_scripts} + +[env:homecube-16a-ota] +platform = ${common.platform} +framework = ${common.framework} +board = ${common.board_1m} +board_build.flash_mode = ${common.flash_mode} +lib_deps = ${common.lib_deps} +lib_ignore = ${common.lib_ignore} +build_flags = ${common.build_flags_1m0m} -DHOMECUBE_16A +upload_speed = ${common.upload_speed} +monitor_speed = ${common.monitor_speed} +upload_port = ${common.upload_port} +upload_flags = ${common.upload_flags} +extra_scripts = ${common.extra_scripts} + [env:bh-onofre] platform = ${common.platform} framework = ${common.framework}