diff --git a/code/espurna/alexa.ino b/code/espurna/alexa.ino index 17ac7a66..cfbdf25b 100644 --- a/code/espurna/alexa.ino +++ b/code/espurna/alexa.ino @@ -20,30 +20,31 @@ bool _alexa_change = false; unsigned int _alexa_device_id = 0; bool _alexa_state = false; -#if WEB_SUPPORT - void _alexaWSSend(JsonObject& root) { - root["alexaVisible"] = 1; - root["alexaEnabled"] = getSetting("alexaEnabled", ALEXA_ENABLED).toInt() == 1; - } -#endif - -// ----------------------------------------------------------------------------- +void _alexaWebSocketOnSend(JsonObject& root) { + root["alexaVisible"] = 1; + root["alexaEnabled"] = getSetting("alexaEnabled", ALEXA_ENABLED).toInt() == 1; +} -void alexaConfigure() { +void _alexaConfigure() { alexa.enable(getSetting("alexaEnabled", ALEXA_ENABLED).toInt() == 1); } +// ----------------------------------------------------------------------------- + void alexaSetup() { // Backwards compatibility moveSetting("fauxmoEnabled", "alexaEnabled"); // Load & cache settings - alexaConfigure(); + _alexaConfigure(); #if WEB_SUPPORT + // Websockets - wsRegister(_alexaWSSend); + wsOnSendRegister(_alexaWebSocketOnSend); + wsOnAfterParseRegister(_alexaConfigure); + #endif unsigned int relays = relayCount(); diff --git a/code/espurna/analog.ino b/code/espurna/analog.ino index ce21e7a4..cfc54d66 100644 --- a/code/espurna/analog.ino +++ b/code/espurna/analog.ino @@ -12,7 +12,7 @@ Copyright (C) 2016-2017 by Xose Pérez // ANALOG // ----------------------------------------------------------------------------- -void _analogWSSend(JsonObject& root) { +void _analogWebSocketOnSend(JsonObject& root) { root["analogVisible"] = 1; root["analogValue"] = getAnalog(); } @@ -30,7 +30,7 @@ void analogSetup() { #if WEB_SUPPORT // Websocket register - wsRegister(_analogWSSend); + wsOnSendRegister(_analogWebSocketOnSend); // API register apiRegister(ANALOG_TOPIC, ANALOG_TOPIC, [](char * buffer, size_t len) { @@ -69,7 +69,7 @@ void analogLoop() { // Update websocket clients #if WEB_SUPPORT - wsSend(_analogWSSend); + wsSend(_analogWebSocketOnSend); #endif } diff --git a/code/espurna/api.ino b/code/espurna/api.ino index 52474480..32d35fde 100644 --- a/code/espurna/api.ino +++ b/code/espurna/api.ino @@ -21,6 +21,14 @@ typedef struct { } web_api_t; std::vector _apis; +// ----------------------------------------------------------------------------- + +void _apiWebSocketOnSend(JsonObject& root) { + root["apiEnabled"] = getSetting("apiEnabled", API_ENABLED).toInt() == 1; + root["apiKey"] = getSetting("apiKey"); + root["apiRealTime"] = getSetting("apiRealTime", API_REAL_TIME_VALUES).toInt() == 1; +} + // ----------------------------------------------------------------------------- // API // ----------------------------------------------------------------------------- @@ -176,6 +184,7 @@ void apiRegister(const char * url, const char * key, api_get_callback_f getFn, a void apiSetup() { webServer()->on("/apis", HTTP_GET, _onAPIs); webServer()->on("/rpc", HTTP_GET, _onRPC); + wsOnSendRegister(_apiWebSocketOnSend); } #endif // WEB_SUPPORT diff --git a/code/espurna/config/hardware.h b/code/espurna/config/hardware.h index abdd3ec7..55ba8abe 100644 --- a/code/espurna/config/hardware.h +++ b/code/espurna/config/hardware.h @@ -63,6 +63,20 @@ #define LED1_PIN 2 #define LED1_PIN_INVERSE 1 + + #define RELAY_PROVIDER RELAY_PROVIDER_LIGHT + #define LIGHT_PROVIDER LIGHT_PROVIDER_DIMMER + #define DUMMY_RELAY_COUNT 1 + #define LIGHT_CHANNELS 4 + #define LIGHT_CH1_PIN 14 // RED + #define LIGHT_CH2_PIN 5 // GREEN + #define LIGHT_CH3_PIN 12 // BLUE + #define LIGHT_CH4_PIN 13 // WHITE + #define LIGHT_CH1_INVERSE 0 + #define LIGHT_CH2_INVERSE 0 + #define LIGHT_CH3_INVERSE 0 + #define LIGHT_CH4_INVERSE 0 + // ----------------------------------------------------------------------------- // ESPurna // ----------------------------------------------------------------------------- diff --git a/code/espurna/config/prototypes.h b/code/espurna/config/prototypes.h index 185d1a9b..4dfe0207 100644 --- a/code/espurna/config/prototypes.h +++ b/code/espurna/config/prototypes.h @@ -1,32 +1,70 @@ #include #include -#include -#include #include #include +#if WEB_SUPPORT + +// ----------------------------------------------------------------------------- +// WebServer +// ----------------------------------------------------------------------------- +#include AsyncWebServer * webServer(); +// ----------------------------------------------------------------------------- +// API +// ----------------------------------------------------------------------------- typedef std::function api_get_callback_f; typedef std::function api_put_callback_f; void apiRegister(const char * url, const char * key, api_get_callback_f getFn, api_put_callback_f putFn = NULL); +// ----------------------------------------------------------------------------- +// WebSockets +// ----------------------------------------------------------------------------- +typedef std::function ws_on_send_callback_f; +void wsOnSendRegister(ws_on_send_callback_f callback); +void wsSend(ws_on_send_callback_f sender); + +typedef std::function ws_on_action_callback_f; +void wsOnActionRegister(ws_on_action_callback_f callback); + +typedef std::function ws_on_after_parse_callback_f; +void wsOnAfterParseRegister(ws_on_after_parse_callback_f callback); + +#endif // WEB_SUPPORT + +// ----------------------------------------------------------------------------- +// MQTT +// ----------------------------------------------------------------------------- +#include typedef std::function mqtt_callback_f; void mqttRegister(mqtt_callback_f callback); String mqttSubtopic(char * topic); -typedef std::function ws_callback_f; -void wsRegister(ws_callback_f sender, ws_callback_f receiver = NULL); -void wsSend(ws_callback_f sender); - +// ----------------------------------------------------------------------------- +// Settings +// ----------------------------------------------------------------------------- template bool setSetting(const String& key, T value); template bool setSetting(const String& key, unsigned int index, T value); template String getSetting(const String& key, T defaultValue); template String getSetting(const String& key, unsigned int index, T defaultValue); +// ----------------------------------------------------------------------------- +// Domoticz +// ----------------------------------------------------------------------------- +#if DOMOTICZ_SUPPORT template void domoticzSend(const char * key, T value); template void domoticzSend(const char * key, T nvalue, const char * svalue); +#endif +// ----------------------------------------------------------------------------- +// InfluxDB +// ----------------------------------------------------------------------------- +#if INFLUXDB_SUPPORT template bool idbSend(const char * topic, T payload); +#endif +// ----------------------------------------------------------------------------- +// Utils +// ----------------------------------------------------------------------------- char * ltrim(char * s); diff --git a/code/espurna/counter.ino b/code/espurna/counter.ino index 5a4d1c08..354637b0 100644 --- a/code/espurna/counter.ino +++ b/code/espurna/counter.ino @@ -26,12 +26,12 @@ void ICACHE_RAM_ATTR _counterISR() { } } -#if WEB_SUPPORT -void _counterWSSend(JsonObject& root) { +void _counterWebSocketOnSend(JsonObject& root) { root["counterVisible"] = 1; root["counterValue"] = getCounter(); } -#endif + +// ----------------------------------------------------------------------------- unsigned long getCounter() { return _counterValue; @@ -45,7 +45,7 @@ void counterSetup() { #if WEB_SUPPORT // Websockets - wsRegister(_counterWSSend); + wsOnSendRegister(_counterWebSocketOnSend); // API apiRegister(COUNTER_TOPIC, COUNTER_TOPIC, [](char * buffer, size_t len) { @@ -75,7 +75,7 @@ void counterLoop() { // Update websocket clients #if WEB_SUPPORT - wsSend(_counterWSSend); + wsSend(_counterWebSocketOnSend); #endif // Do we have to report? diff --git a/code/espurna/data/index.html.gz b/code/espurna/data/index.html.gz index e3694613..ce317450 100644 Binary files a/code/espurna/data/index.html.gz and b/code/espurna/data/index.html.gz differ diff --git a/code/espurna/dht.ino b/code/espurna/dht.ino index 5be5f113..24cfb6be 100644 --- a/code/espurna/dht.ino +++ b/code/espurna/dht.ino @@ -131,6 +131,16 @@ int readDHT() { return readDHT(DHT_PIN, DHT_TYPE); } +// ----------------------------------------------------------------------------- +// Private +// ----------------------------------------------------------------------------- + +void _dhtWebSocketOnSend(JsonObject& root) { + root["dhtVisible"] = 1; + root["dhtTmp"] = getDHTTemperature(); + root["dhtHum"] = getDHTHumidity(); +} + // ----------------------------------------------------------------------------- // Values // ----------------------------------------------------------------------------- @@ -151,12 +161,17 @@ unsigned int getDHTHumidity() { void dhtSetup() { #if WEB_SUPPORT + + // Websockets + wsOnSendRegister(_dhtWebSocketOnSend); + apiRegister(DHT_TEMPERATURE_TOPIC, DHT_TEMPERATURE_TOPIC, [](char * buffer, size_t len) { dtostrf(_dhtTemperature, 1-len, 1, buffer); }); apiRegister(DHT_HUMIDITY_TOPIC, DHT_HUMIDITY_TOPIC, [](char * buffer, size_t len) { snprintf_P(buffer, len, PSTR("%d"), _dhtHumidity); }); + #endif } diff --git a/code/espurna/domoticz.ino b/code/espurna/domoticz.ino index 991bafb8..054e15b0 100644 --- a/code/espurna/domoticz.ino +++ b/code/espurna/domoticz.ino @@ -78,6 +78,48 @@ void _domoticzMqtt(unsigned int type, const char * topic, const char * payload) }; +void _domoticzWebSocketOnSend(JsonObject& root) { + + root["dczVisible"] = 1; + root["dczEnabled"] = getSetting("dczEnabled", DOMOTICZ_ENABLED).toInt() == 1; + root["dczSkip"] = getSetting("dczSkip", DOMOTICZ_SKIP_TIME); + root["dczTopicIn"] = getSetting("dczTopicIn", DOMOTICZ_IN_TOPIC); + root["dczTopicOut"] = getSetting("dczTopicOut", DOMOTICZ_OUT_TOPIC); + + JsonArray& dczRelayIdx = root.createNestedArray("dczRelayIdx"); + for (byte i=0; i= DS18B20_UPDATE_ON_CHANGE) { last_temperature = t; @@ -125,7 +138,7 @@ void dsLoop() { snprintf_P(buffer, sizeof(buffer), PSTR("{\"dsVisible\": 1, \"dsTmp\": %s, \"tmpUnits\": %d}"), getDSTemperatureStr(), tmpUnits); wsSend(buffer); #endif - + } } diff --git a/code/espurna/homeassitant.ino b/code/espurna/homeassitant.ino index 2784582c..24e9ed82 100644 --- a/code/espurna/homeassitant.ino +++ b/code/espurna/homeassitant.ino @@ -12,6 +12,21 @@ Copyright (C) 2017 by Xose Pérez bool _haEnabled = false; +// ----------------------------------------------------------------------------- + +void _haWebSocketOnSend(JsonObject& root) { + root["haVisible"] = 1; + root["haPrefix"] = getSetting("haPrefix", HOMEASSISTANT_PREFIX); +} + +void _haConfigure() { + bool enabled = getSetting("haEnabled", HOMEASSISTANT_ENABLED).toInt() == 1; + if (enabled != _haEnabled) haSend(enabled); + _haEnabled = enabled; +} + +// ----------------------------------------------------------------------------- + void haSend(bool add) { DEBUG_MSG_P(PSTR("[HA] Sending autodiscovery MQTT message\n")); @@ -72,14 +87,12 @@ void haSend(bool add) { } -void haConfigure() { - bool enabled = getSetting("haEnabled", HOMEASSISTANT_ENABLED).toInt() == 1; - if (enabled != _haEnabled) haSend(enabled); - _haEnabled = enabled; -} - void haSetup() { - haConfigure(); + _haConfigure(); + #if WEB_SUPPORT + wsOnSendRegister(_haWebSocketOnSend); + wsOnAfterParseRegister(_haConfigure); + #endif mqttRegister([](unsigned int type, const char * topic, const char * payload) { if (type == MQTT_CONNECT_EVENT) haSend(_haEnabled); }); diff --git a/code/espurna/influxdb.ino b/code/espurna/influxdb.ino index a6669936..f386b299 100644 --- a/code/espurna/influxdb.ino +++ b/code/espurna/influxdb.ino @@ -16,8 +16,7 @@ SyncClient _idb_client; // ----------------------------------------------------------------------------- -#if WEB_SUPPORT -void _idbWSSend(JsonObject& root) { +void _idbWebSocketOnSend(JsonObject& root) { root["idbVisible"] = 1; root["idbHost"] = getSetting("idbHost"); root["idbPort"] = getSetting("idbPort", INFLUXDB_PORT).toInt(); @@ -25,7 +24,10 @@ void _idbWSSend(JsonObject& root) { root["idbUsername"] = getSetting("idbUsername"); root["idbPassword"] = getSetting("idbPassword"); } -#endif + +void _idbConfigure() { + _idb_enabled = getSetting("idbHost").length() > 0; +} // ----------------------------------------------------------------------------- @@ -70,14 +72,11 @@ bool idbEnabled() { return _idb_enabled; } -void idbConfigure() { - _idb_enabled = getSetting("idbHost").length() > 0; -} - void idbSetup() { - idbConfigure(); + _idbConfigure(); #if WEB_SUPPORT - wsRegister(_idbWSSend); + wsOnSendRegister(_idbWebSocketOnSend); + wsOnAfterParseRegister(_idbConfigure); #endif } diff --git a/code/espurna/light.ino b/code/espurna/light.ino index cecdf03c..03286d72 100644 --- a/code/espurna/light.ino +++ b/code/espurna/light.ino @@ -665,104 +665,158 @@ void lightBrightnessStep(int steps) { // SETUP // ----------------------------------------------------------------------------- -void _lightAPISetup() { +#if WEB_SUPPORT + +void _lightWebSocketOnSend(JsonObject& root) { + root["colorVisible"] = 1; + root["useColor"] = getSetting("useColor", LIGHT_USE_COLOR).toInt() == 1; + root["useWhite"] = getSetting("useWhite", LIGHT_USE_WHITE).toInt() == 1; + root["useGamma"] = getSetting("useGamma", LIGHT_USE_GAMMA).toInt() == 1; + root["useCSS"] = getSetting("useCSS", LIGHT_USE_CSS).toInt() == 1; + bool useRGB = getSetting("useRGB", LIGHT_USE_RGB).toInt() == 1; + root["useRGB"] = useRGB; + if (lightHasColor()) { + if (useRGB) { + root["rgb"] = lightColor(true); + root["brightness"] = lightBrightness(); + } else { + root["hsv"] = lightColor(false); + } + } + JsonArray& channels = root.createNestedArray("channels"); + for (unsigned char id=0; id < lightChannels(); id++) { + channels.add(lightChannel(id)); + } +} - #if WEB_SUPPORT +void _lightWebSocketOnAction(const char * action, JsonObject& data) { - // API entry points (protected with apikey) - if (lightHasColor()) { + if (lightHasColor()) { - // DEPRECATE - apiRegister(MQTT_TOPIC_COLOR, MQTT_TOPIC_COLOR, - [](char * buffer, size_t len) { - if (getSetting("useCSS", LIGHT_USE_CSS).toInt() == 1) { - _toRGB(buffer, len, false); - } else { - _toLong(buffer, len, false); - } - }, - [](const char * payload) { - lightColor(payload, true); - lightUpdate(true, true); - } - ); - - apiRegister(MQTT_TOPIC_COLOR_RGB, MQTT_TOPIC_COLOR_RGB, - [](char * buffer, size_t len) { - if (getSetting("useCSS", LIGHT_USE_CSS).toInt() == 1) { - _toRGB(buffer, len, false); - } else { - _toLong(buffer, len, false); - } - }, - [](const char * payload) { - lightColor(payload, true); - lightUpdate(true, true); - } - ); - - apiRegister(MQTT_TOPIC_COLOR_HSV, MQTT_TOPIC_COLOR_HSV, - [](char * buffer, size_t len) { - _toHSV(buffer, len); - }, - [](const char * payload) { - lightColor(payload, false); - lightUpdate(true, true); - } - ); - - apiRegister(MQTT_TOPIC_BRIGHTNESS, MQTT_TOPIC_BRIGHTNESS, - [](char * buffer, size_t len) { - snprintf_P(buffer, len, PSTR("%d"), _brightness); - }, - [](const char * payload) { - lightBrightness(atoi(payload)); - lightUpdate(true, true); - } - ); + if (strcmp(action, "color") == 0) { + if (data.containsKey("rgb")) { + Serial.printf(data["rgb"]); + lightColor(data["rgb"], true); + lightUpdate(true, true); + } + if (data.containsKey("hsv")) { + lightColor(data["hsv"], false); + lightUpdate(true, true); + } + if (data.containsKey("brightness")) { + lightBrightness(data["brightness"]); + lightUpdate(true, true); + } + } + + } + + if (strcmp(action, "channel") == 0) { + if (data.containsKey("id") && data.containsKey("value")) { + lightChannel(data["id"], data["value"]); + lightUpdate(true, true); + } + } + +} - apiRegister(MQTT_TOPIC_KELVIN, MQTT_TOPIC_KELVIN, - [](char * buffer, size_t len) {}, - [](const char * payload) { - _fromKelvin(atol(payload)); - lightUpdate(true, true); +void _lightAPISetup() { + + // API entry points (protected with apikey) + if (lightHasColor()) { + + // DEPRECATE + apiRegister(MQTT_TOPIC_COLOR, MQTT_TOPIC_COLOR, + [](char * buffer, size_t len) { + if (getSetting("useCSS", LIGHT_USE_CSS).toInt() == 1) { + _toRGB(buffer, len, false); + } else { + _toLong(buffer, len, false); } - ); + }, + [](const char * payload) { + lightColor(payload, true); + lightUpdate(true, true); + } + ); - apiRegister(MQTT_TOPIC_MIRED, MQTT_TOPIC_MIRED, - [](char * buffer, size_t len) {}, - [](const char * payload) { - _fromMireds(atol(payload)); - lightUpdate(true, true); + apiRegister(MQTT_TOPIC_COLOR_RGB, MQTT_TOPIC_COLOR_RGB, + [](char * buffer, size_t len) { + if (getSetting("useCSS", LIGHT_USE_CSS).toInt() == 1) { + _toRGB(buffer, len, false); + } else { + _toLong(buffer, len, false); } - ); + }, + [](const char * payload) { + lightColor(payload, true); + lightUpdate(true, true); + } + ); + + apiRegister(MQTT_TOPIC_COLOR_HSV, MQTT_TOPIC_COLOR_HSV, + [](char * buffer, size_t len) { + _toHSV(buffer, len); + }, + [](const char * payload) { + lightColor(payload, false); + lightUpdate(true, true); + } + ); + + apiRegister(MQTT_TOPIC_BRIGHTNESS, MQTT_TOPIC_BRIGHTNESS, + [](char * buffer, size_t len) { + snprintf_P(buffer, len, PSTR("%d"), _brightness); + }, + [](const char * payload) { + lightBrightness(atoi(payload)); + lightUpdate(true, true); + } + ); - } + apiRegister(MQTT_TOPIC_KELVIN, MQTT_TOPIC_KELVIN, + [](char * buffer, size_t len) {}, + [](const char * payload) { + _fromKelvin(atol(payload)); + lightUpdate(true, true); + } + ); - for (unsigned int id=0; id 1) { + root["multirelayVisible"] = 1; + root["relaySync"] = getSetting("relaySync", RELAY_SYNC); + } +} + +void _relayWebSocketOnAction(const char * action, JsonObject& data) { + + if (strcmp(action, "relay") != 0) return; + + if (data.containsKey("status")) { + + unsigned char value = relayParsePayload(data["status"]); + + if (value == 3) { + + relayWS(); + + } else if (value < 3) { + + unsigned int relayID = 0; + if (data.containsKey("id")) { + String value = data["id"]; + relayID = value.toInt(); + } + + // Action to perform + if (value == 0) { + relayStatus(relayID, false); + } else if (value == 1) { + relayStatus(relayID, true); + } else if (value == 2) { + relayToggle(relayID); + } + + } + + } + +} + void relaySetupAPI() { // API entry points (protected with apikey) @@ -541,6 +590,8 @@ void relaySetup() { #if WEB_SUPPORT relaySetupAPI(); + wsOnSendRegister(_relayWebSocketOnSend); + wsOnActionRegister(_relayWebSocketOnAction); #endif relaySetupMQTT(); diff --git a/code/espurna/rf.ino b/code/espurna/rf.ino index ca2d2fff..384fca8d 100644 --- a/code/espurna/rf.ino +++ b/code/espurna/rf.ino @@ -18,16 +18,13 @@ unsigned long rfCodeOFF = 0; // RF // ----------------------------------------------------------------------------- -void rfLoop() { - return; - if (rfCode == 0) return; - DEBUG_MSG_P(PSTR("[RF] Received code: %lu\n"), rfCode); - if (rfCode == rfCodeON) relayStatus(0, true); - if (rfCode == rfCodeOFF) relayStatus(0, false); - rfCode = 0; +void _rfWebSocketOnSend(JsonObject& root) { + root["rfVisible"] = 1; + root["rfChannel"] = getSetting("rfChannel", RF_CHANNEL); + root["rfDevice"] = getSetting("rfDevice", RF_DEVICE); } -void rfBuildCodes() { +void _rfBuildCodes() { unsigned long code = 0; @@ -56,6 +53,17 @@ void rfBuildCodes() { } +// ----------------------------------------------------------------------------- + +void rfLoop() { + return; + if (rfCode == 0) return; + DEBUG_MSG_P(PSTR("[RF] Received code: %lu\n"), rfCode); + if (rfCode == rfCodeON) relayStatus(0, true); + if (rfCode == rfCodeOFF) relayStatus(0, false); + rfCode = 0; +} + void rfCallback(unsigned long code, unsigned int period) { rfCode = code; } @@ -63,7 +71,7 @@ void rfCallback(unsigned long code, unsigned int period) { void rfSetup() { pinMode(RF_PIN, INPUT_PULLUP); - rfBuildCodes(); + _rfBuildCodes(); RemoteReceiver::init(RF_PIN, 3, rfCallback); RemoteReceiver::disable(); DEBUG_MSG_P(PSTR("[RF] Disabled\n")); @@ -88,6 +96,11 @@ void rfSetup() { DEBUG_MSG_P(PSTR("[RF] Enabled\n")); }); + #if WEB_SUPPORT + wsOnSendRegister(_rfWebSocketOnSend); + wsOnAfterParseRegister(_rfBuildCodes); + #endif + } #endif diff --git a/code/espurna/rfbridge.ino b/code/espurna/rfbridge.ino index 699e651a..56b853fe 100644 --- a/code/espurna/rfbridge.ino +++ b/code/espurna/rfbridge.ino @@ -36,6 +36,26 @@ bool _rfbin = false; // PRIVATES // ----------------------------------------------------------------------------- +void _rfbWebSocketOnSend(JsonObject& root) { + root["rfbVisible"] = 1; + root["rfbCount"] = relayCount(); + JsonArray& rfb = root.createNestedArray("rfb"); + for (byte id=0; id()); +} + void _rfbAck() { DEBUG_MSG_P(PSTR("[RFBRIDGE] Sending ACK\n")); Serial.println(); @@ -324,6 +344,10 @@ void rfbForget(unsigned char id, bool status) { void rfbSetup() { mqttRegister(_rfbMqttCallback); + #if WEB_SUPPORT + wsOnSendRegister(_rfbWebSocketOnSend); + wsOnActionRegister(_rfbWebSocketOnAction); + #endif } void rfbLoop() { diff --git a/code/espurna/static/index.html.gz.h b/code/espurna/static/index.html.gz.h index 69409b1e..96be6cd8 100644 --- a/code/espurna/static/index.html.gz.h +++ b/code/espurna/static/index.html.gz.h @@ -1,4 +1,4 @@ -#define index_html_gz_len 60805 +#define index_html_gz_len 60808 const uint8_t index_html_gz[] PROGMEM = { 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0xec,0xbd,0xe9,0x7a,0xda,0x4a,0xb6,0x30,0xfc,0xff, 0x5c,0x85,0xc2,0xee,0xf6,0x81,0xb6,0x98,0x8d,0x8d,0x71,0x48,0x5e,0x3c,0x93,0x78,0xc4,0x73,0x72,0xfc, @@ -2570,475 +2570,475 @@ const uint8_t index_html_gz[] PROGMEM = { 0xf6,0xd9,0x86,0x69,0x67,0x7b,0xf1,0x60,0x87,0x32,0x4c,0x6a,0x7b,0x33,0xd3,0x2f,0xfe,0xdd,0x0d,0xed, 0x63,0x77,0x92,0xde,0x05,0x2d,0xb4,0x54,0x79,0x87,0xf7,0x6f,0xe4,0x40,0x69,0x6c,0xb6,0x06,0x4d,0xbb, 0xea,0x0e,0xed,0x7a,0x53,0x5c,0x36,0x54,0x93,0x17,0x30,0x98,0xea,0xd3,0x34,0xcd,0xe5,0x8c,0xb3,0xf7, -0xff,0x76,0xf7,0xac,0xcd,0x6d,0xdb,0xca,0xfe,0x15,0x9b,0x6d,0x1c,0xd1,0xa2,0x64,0xc9,0x8d,0xd3,0x1e, -0xc9,0xb4,0xc6,0x71,0xd3,0x24,0x33,0xcd,0xa3,0x8e,0xdb,0xdc,0x8e,0xe3,0xe3,0xa1,0x2c,0x5a,0x62,0x23, -0x8b,0x3a,0x24,0x25,0x27,0xc7,0xd5,0x1f,0x3b,0x1f,0xcf,0x2f,0xbb,0xfb,0x00,0x40,0x80,0x04,0xf5,0x70, +0xff,0x76,0xf7,0xac,0xcd,0x6d,0xdb,0xca,0xfe,0x15,0x9b,0x69,0x1c,0xd1,0xa2,0x64,0xc9,0x8d,0xd3,0x1e, +0xc9,0xb4,0xc6,0x71,0xd3,0xc4,0x33,0xcd,0xa3,0xb6,0xdb,0xdc,0x8e,0xeb,0xe3,0xa1,0x2c,0x5a,0x62,0x23, +0x8b,0x3a,0x24,0x25,0x27,0xc7,0xf5,0x1f,0x3b,0x1f,0xcf,0x2f,0xbb,0xfb,0x00,0x40,0x80,0x04,0xf5,0x70, 0xd2,0xde,0xf6,0x66,0x26,0x89,0x08,0x2c,0x80,0xdd,0xc5,0x7b,0xb1,0x8f,0x4f,0x61,0x79,0xf9,0x4c,0x69, -0xa2,0x8f,0xc2,0x9b,0x2d,0x72,0xc5,0xd3,0x63,0xe2,0xdb,0xda,0x01,0x35,0xdf,0xfc,0x17,0xe4,0xbe,0xb1, -0xa2,0xf5,0x63,0x18,0x91,0x58,0x71,0x3a,0x13,0x3f,0x64,0x0b,0xf9,0x4a,0x3f,0x08,0xe7,0x70,0x07,0x11, -0x4d,0xb4,0xf2,0x26,0x80,0x23,0xa2,0xad,0xa5,0xac,0x0c,0x88,0x67,0xe4,0x99,0x18,0x0d,0x11,0xdc,0xc2, -0xec,0xf0,0x8a,0x8c,0x95,0x5b,0xc0,0xff,0x67,0xe6,0x0e,0xa2,0x54,0x90,0xc9,0x8b,0x33,0x6d,0x9c,0x2c, -0x85,0xdd,0x7a,0xf7,0xe2,0x87,0x17,0xb0,0x04,0x64,0x30,0xa6,0x3f,0x7c,0x01,0xa6,0x8b,0x76,0x56,0x32, -0xfe,0x09,0x5d,0xf0,0xf3,0xe7,0x27,0xa5,0x47,0x9f,0x87,0x3f,0x78,0xf2,0xe9,0x05,0xac,0xed,0xf8,0xde, -0x44,0xf3,0x17,0xe3,0x1e,0xa4,0xc9,0x95,0xaf,0x96,0x74,0x9e,0x34,0x8e,0x51,0x71,0x3c,0xf9,0x01,0xb6, -0xa0,0x9f,0xa7,0xf2,0xd4,0xcb,0x8c,0x92,0xe2,0xb4,0x90,0x94,0x17,0xa4,0x3a,0x7c,0xf6,0xfb,0xef,0xf8, -0xaf,0x69,0x42,0xa6,0xae,0x82,0xe8,0xac,0x80,0x35,0x3f,0xf9,0xc6,0x05,0x97,0x26,0xbe,0x43,0x14,0xb9, -0x8e,0xb1,0x79,0xa2,0x78,0x96,0xc2,0x82,0xcc,0xcb,0x9c,0x5a,0xb0,0xd1,0x11,0xcd,0x6d,0x12,0x65,0xb0, -0x96,0x35,0xb7,0x96,0x8d,0xfc,0x2c,0x4e,0x38,0x1c,0xb6,0xaa,0x23,0xef,0x89,0xc0,0x44,0x2c,0xe1,0xad, -0x10,0x68,0x39,0x25,0x87,0x27,0x79,0x74,0x01,0xe1,0xf0,0xc4,0xe6,0x34,0x4a,0xdc,0x22,0x44,0x2c,0x11, -0x11,0x85,0xc7,0xed,0x66,0xbd,0x75,0x67,0x12,0x22,0x98,0x1b,0xcb,0xca,0x1d,0x46,0x93,0xf1,0x60,0x20, -0x70,0xd2,0x7a,0x3f,0x26,0x57,0x30,0x18,0xf8,0xb5,0xb4,0x82,0x61,0x25,0xaa,0xc3,0xf3,0x37,0x7e,0x65, -0xd6,0x21,0x18,0x9b,0xd3,0xd6,0xd3,0xc4,0x02,0x74,0xb2,0x80,0x8b,0xd6,0x56,0x94,0x4e,0x1e,0x62,0x20, -0x9a,0x29,0xba,0xd0,0x80,0x19,0x15,0xb3,0x1c,0x72,0x4b,0xbc,0x90,0xe1,0x0c,0xc3,0x18,0x67,0xbc,0x3b, -0xa9,0x81,0x43,0x11,0x71,0x6a,0x45,0xa4,0xce,0x28,0xa6,0xaa,0x7e,0x35,0xce,0xef,0x42,0xe2,0xd6,0xc0, -0xce,0x12,0xd4,0xa6,0xb5,0x26,0xc3,0xc6,0xc1,0x27,0xc1,0xae,0xbb,0x68,0x80,0xfe,0xe4,0xc8,0x49,0x4e, -0x27,0xc3,0x6b,0xc5,0x02,0xa7,0x86,0x8e,0x07,0xee,0x98,0x6f,0x82,0x49,0x38,0xe6,0x4d,0x15,0xae,0x76, -0xf0,0x3b,0x3f,0x42,0x20,0x25,0x4e,0xdd,0xbc,0xcb,0x08,0xac,0xc4,0x66,0x4b,0x20,0xd0,0x24,0x79,0x0c, -0xcc,0x83,0xb3,0x3a,0xec,0xd0,0x14,0x9d,0x40,0x70,0xf0,0xd8,0x97,0xe1,0x64,0x56,0x73,0x97,0x5e,0xa4, -0x8c,0x3b,0x87,0x45,0xb5,0xb8,0x08,0xa2,0xae,0x25,0x39,0x39,0x7a,0x5b,0x77,0x06,0x66,0x7a,0x08,0x5b, -0x85,0x1c,0x21,0x4f,0x21,0x83,0x56,0x01,0xfc,0x18,0x4d,0x3e,0x54,0x01,0x69,0x02,0x34,0x32,0x89,0x3f, -0xc5,0x2e,0x48,0x0d,0x71,0xd5,0x57,0xd4,0x2d,0xe9,0xd6,0x11,0x2c,0x87,0x73,0x15,0x43,0x85,0x9e,0xe6, -0x6a,0x78,0x1d,0x71,0x55,0xd0,0xc5,0x1c,0xfa,0x2c,0xbc,0x99,0x22,0x03,0xb6,0x9a,0x53,0x98,0xb6,0x8d, -0x21,0x1d,0x98,0x3d,0x0c,0x57,0x1c,0x1c,0x86,0xdd,0xa0,0x5e,0x97,0x51,0x6e,0xbe,0xc6,0x60,0x8f,0xec, -0x15,0xcf,0xed,0x7e,0x5d,0x4b,0x84,0x19,0x38,0x33,0xda,0x72,0x41,0xb5,0x74,0x27,0x5a,0xdb,0xc0,0x81, -0x04,0x35,0x9d,0x70,0x14,0x50,0xfb,0x97,0x11,0xdc,0x05,0xa1,0x32,0x32,0x3f,0xc7,0x58,0xb2,0xb5,0xa0, -0xde,0x46,0x33,0xc7,0x5c,0x05,0x53,0xd2,0xc5,0x8c,0xca,0xdf,0x0a,0xb0,0x98,0xde,0x55,0x77,0xea,0xf9, -0x44,0x8e,0x7b,0xdb,0x0b,0x56,0xf1,0x91,0x6b,0xbd,0xb7,0x31,0xb4,0x16,0x2c,0x74,0xc0,0x8b,0xc1,0xc7, -0x02,0xfb,0x23,0x48,0x59,0x97,0xf9,0x00,0xfb,0x27,0xb3,0x5e,0x7c,0xc2,0x61,0x32,0xe2,0x28,0xee,0x8f, -0x5a,0x75,0x95,0x2a,0x1f,0x1e,0x29,0x2e,0xb6,0xde,0x49,0xc5,0xee,0x09,0x0a,0x5d,0x83,0x34,0x3b,0x3a, -0x73,0x06,0xe1,0xf8,0x15,0xef,0xb5,0x25,0x29,0x05,0x2b,0x95,0xa7,0xb8,0x00,0x08,0x82,0x81,0x9a,0x30, -0xf7,0xd6,0x90,0x57,0x72,0x03,0x0b,0xe9,0x46,0xb5,0x38,0xc0,0xf4,0xe6,0x0d,0xad,0xe1,0xa1,0x9c,0x40, -0x7a,0x85,0x70,0xee,0x2e,0xd7,0xe7,0x7c,0x25,0x4e,0x05,0xb6,0x5e,0x0b,0x8f,0x7c,0x38,0x4d,0x8b,0x42, -0xa9,0x61,0x7e,0x2d,0x16,0xed,0x97,0xc1,0x47,0x21,0x61,0xdd,0xc2,0xe0,0xb4,0xb2,0xaa,0x04,0xbb,0x03, -0xe5,0x23,0xe2,0x36,0xb8,0xdf,0x6a,0xd5,0xdb,0xad,0x5d,0x38,0x5e,0xe9,0x4d,0xca,0xce,0xc7,0x95,0x5b, -0xea,0x5b,0xbb,0xf4,0xbc,0xa5,0xf5,0xb5,0x92,0xa8,0x05,0x9b,0x75,0x79,0xde,0xc7,0x19,0x8c,0xa2,0x8a, -0x2e,0xd6,0x6a,0x6d,0x72,0x70,0xa4,0x06,0xf4,0x5d,0x43,0xe0,0xe7,0xb0,0xe3,0x24,0xda,0x55,0x1c,0x2f, -0xef,0x54,0x6b,0x39,0x64,0xbc,0xbd,0xa0,0xd6,0x91,0xe8,0xc3,0x42,0x1b,0x38,0x92,0x5f,0xe8,0xdb,0x22, -0xef,0x27,0x7c,0xca,0x39,0x89,0xc7,0x71,0x72,0xfa,0xec,0x89,0xd1,0x53,0x57,0x98,0x68,0x9f,0x5d,0x21, -0xce,0x2e,0x6d,0x1a,0x5e,0x89,0xf2,0x76,0x16,0x4f,0xf8,0x05,0x51,0xb2,0x78,0xa2,0xe3,0xc4,0x8d,0xd0, -0x3a,0x63,0xc8,0x30,0x29,0x9d,0x44,0x98,0xb7,0xa3,0x30,0x1c,0x13,0x82,0x6f,0x80,0x3e,0xb8,0xbf,0xdd, -0xa5,0x70,0x3d,0x42,0xcf,0x5c,0xce,0x6d,0x32,0xec,0x4f,0x1d,0xe1,0x70,0x8a,0x53,0x67,0xba,0xf3,0xa4, -0xe2,0x38,0x2e,0x55,0x85,0x7e,0x62,0x7f,0xa1,0x88,0xac,0x9e,0x73,0x85,0x77,0xbc,0xe5,0x37,0x2a,0xb5, -0x17,0x0f,0xfb,0x62,0x27,0x46,0xcd,0x8f,0x05,0xef,0x26,0x7d,0xd2,0x06,0x99,0xf0,0x55,0x91,0xfa,0x83, -0x56,0xc6,0x25,0xe8,0x88,0x30,0xb3,0x2b,0xa6,0x19,0xe9,0x55,0xc3,0x61,0x82,0x17,0x84,0x70,0x85,0xf8, -0x50,0xa2,0xa8,0x61,0xa3,0x63,0xba,0xb0,0xf4,0xfb,0xf3,0xb7,0xbf,0x7c,0x56,0xbf,0x43,0xf9,0x3f,0xbb, -0xdf,0x47,0xe9,0xfc,0xb3,0xfb,0x9d,0xbe,0x49,0x61,0x5d,0x9d,0xcf,0xbe,0x79,0x0c,0x8b,0x46,0x73,0xe4, -0xd6,0x61,0x38,0xd4,0x55,0x6a,0xbb,0x85,0xa9,0xa9,0x35,0x75,0xbe,0xe6,0x88,0x01,0x84,0xb5,0xa3,0x6e, -0xb9,0x1f,0x60,0xa8,0xc0,0xf9,0xac,0xb0,0xb9,0x5d,0x89,0xd4,0x42,0x57,0x1c,0xb5,0x58,0xf5,0x47,0x1e, -0x2f,0x2b,0xfb,0xec,0x08,0xe3,0xbc,0x84,0x5d,0x74,0x1b,0x07,0xff,0x3f,0xf8,0xc6,0x0b,0x8e,0x5a,0x3b, -0xb3,0x34,0x7c,0x37,0x8a,0xd0,0xb3,0x60,0xd0,0x68,0xe4,0xcf,0x18,0x89,0x1f,0x36,0x02,0x2f,0xd6,0xdb, -0xb5,0x77,0x6a,0x04,0x9b,0x65,0x74,0x18,0x74,0x23,0xb9,0x59,0xa6,0x7e,0x52,0x8f,0xbc,0x01,0x94,0x8c, -0xf5,0x2d,0x93,0xc6,0x6d,0x93,0x3b,0x07,0x48,0x37,0xb7,0xc6,0x34,0x3f,0x30,0x56,0x83,0xac,0x37,0x89, -0xf4,0xb3,0xab,0x36,0x97,0x78,0x6e,0x4d,0xd6,0x9a,0x5b,0x13,0x31,0xb7,0xb2,0x35,0xe7,0x96,0xe0,0x8f, -0x76,0x18,0x97,0xb1,0xb8,0xb2,0x85,0x5a,0x0f,0x48,0x07,0x80,0xa8,0xe2,0x8d,0x5c,0x74,0x31,0x1e,0xb7, -0x52,0x3a,0x6e,0x0d,0x8c,0xe9,0x20,0xba,0x1a,0xf7,0x75,0x63,0x0b,0x3d,0xbd,0xee,0xa3,0xf7,0x24,0x63, -0x82,0x26,0x9c,0x86,0xdd,0x7d,0x4d,0x2e,0x4c,0xc3,0x4c,0xf5,0xb9,0x97,0xe9,0x20,0xeb,0xcc,0x4b,0x18, -0x23,0xdb,0xad,0x7c,0xdf,0x2b,0xf0,0x24,0x04,0x5c,0x3d,0xda,0x21,0x37,0x3d,0x00,0xd1,0x31,0x93,0x94, -0x2d,0x4b,0x39,0x7c,0x73,0x81,0x13,0x12,0xbd,0x88,0x20,0x02,0xc1,0xc2,0x68,0x45,0xee,0x72,0x40,0x46, -0x03,0x43,0x18,0x4d,0xcc,0x2d,0x0e,0x92,0x7f,0xc4,0xd4,0xca,0x32,0x30,0xaa,0x87,0xc4,0x14,0xb3,0xd0, -0x0f,0x94,0x5c,0x59,0x0a,0x3b,0xbd,0x54,0x06,0x9d,0x18,0x01,0xcb,0x8c,0xb3,0xb1,0xe0,0x3f,0xbe,0x9b, -0x68,0x0f,0xa3,0x02,0xa9,0x35,0x4e,0x4f,0x5e,0x2e,0xb0,0x46,0x16,0xad,0xb9,0xe9,0x5c,0xf7,0x99,0x15, -0xf9,0xb0,0xcb,0x0a,0xec,0x76,0xd5,0x9d,0xd0,0xc2,0x6d,0x97,0xc6,0xa6,0x8e,0x2e,0xb3,0xe3,0x0f,0xc4, -0x57,0x74,0xc3,0x17,0x43,0x18,0xfb,0xe2,0x0f,0x44,0x97,0xfa,0xff,0xbe,0xc8,0x8a,0xd5,0x9d,0x17,0x1e, -0x13,0x73,0x4d,0xe4,0x2f,0x24,0x82,0xe8,0x65,0xf1,0x92,0xde,0x0e,0xe9,0x7d,0x5e,0x09,0x78,0x65,0x72, -0x97,0x00,0x84,0x5e,0x2e,0xc1,0xb0,0x57,0xa5,0x3a,0xde,0x07,0x18,0x4c,0x59,0x3a,0x7f,0x2d,0x29,0xc7, -0xeb,0x6c,0x03,0x5d,0xbe,0xa1,0x4b,0xa4,0x7c,0x49,0x73,0x50,0xb0,0xa5,0xda,0xa2,0x7a,0xc2,0xa6,0x4c, -0x83,0x0a,0x1b,0x1c,0xd9,0x53,0xc9,0xca,0xb2,0x28,0x43,0x6d,0xb7,0x05,0x7b,0xa6,0x6f,0x7e,0x08,0xe9, -0xca,0xdb,0x84,0xbe,0x7c,0x5a,0xf4,0x79,0x84,0x94,0x00,0x73,0x5f,0xc2,0x64,0x40,0xb9,0x26,0x3a,0x6a, -0x12,0x82,0x6c,0x1f,0x9f,0x9e,0x9a,0x22,0xcf,0x14,0x25,0x88,0x9b,0x42,0x4b,0x03,0xe0,0x03,0xd4,0x54, -0x09,0xc1,0x25,0x8c,0x5e,0x09,0xac,0x98,0x4e,0xa0,0x0c,0x38,0xc4,0xe5,0xc0,0xe1,0x87,0x32,0x7c,0x0d, -0x69,0x72,0xa6,0xf6,0xdc,0x85,0x2f,0x59,0x9e,0x23,0xa7,0xa5,0x06,0x43,0xbe,0x5a,0x6a,0x98,0x23,0x9e, -0x39,0xb5,0x3c,0x92,0x90,0x61,0xd6,0x49,0x3c,0x9b,0xa0,0xdf,0xe1,0xcc,0x15,0x09,0xf4,0x9b,0x48,0xc6, -0xe3,0x9f,0x26,0x48,0x35,0x0f,0xd0,0xec,0x08,0xa6,0xf0,0x1e,0x45,0xdb,0x33,0xc9,0x42,0xca,0x47,0x91, -0x54,0x1d,0x41,0x31,0x30,0x01,0xfa,0xee,0x21,0x14,0xf0,0xc4,0xe0,0x53,0x8b,0xc6,0x39,0x4d,0x08,0x12, -0x11,0x54,0xbe,0x69,0x79,0x78,0x9e,0x47,0x6f,0x63,0xf2,0x45,0xad,0x39,0xf2,0x27,0x70,0xaf,0xdd,0x83, -0xe3,0x0c,0x5c,0x00,0x52,0xf8,0x68,0x5f,0xec,0xc1,0x79,0x05,0x3e,0xe6,0xf0,0xb1,0xcf,0x1f,0xf7,0xc0, -0x93,0x8f,0x4c,0x28,0x53,0x40,0x0c,0xb5,0x23,0x26,0x21,0x2a,0x6f,0xce,0xe6,0x51,0xb8,0x9b,0x28,0xc7, -0x2b,0x09,0xab,0x23,0x60,0x18,0xfa,0xd2,0x05,0x89,0x52,0x89,0x38,0x3a,0x83,0xd0,0xe1,0xc1,0xac,0x46, -0xd3,0x59,0xc9,0x7d,0x0f,0xc6,0x62,0x97,0xc2,0xd2,0x8c,0x95,0xda,0x49,0x55,0x77,0xcd,0xa6,0xe8,0x10, -0x2e,0xc7,0x31,0xd2,0x04,0x72,0x58,0xce,0x4b,0xfd,0xe8,0xc1,0x63,0x38,0xd5,0xe4,0xe9,0xd1,0xde,0xe3, -0x16,0x63,0x33,0x58,0x92,0x77,0x05,0x79,0xfb,0x8f,0xcc,0xbc,0xfd,0x47,0x9c,0x37,0xf6,0xa3,0x2e,0x05, -0x9a,0x18,0xd7,0x9d,0x01,0xcc,0x30,0xa9,0x28,0x75,0xe5,0xed,0xc3,0x41,0x72,0xa4,0xa5,0x0c,0x28,0xe5, -0x46,0x4b,0x49,0x29,0x25,0x75,0x88,0x1e,0x79,0x5e,0x13,0x13,0x4c,0x7e,0xfa,0x8c,0xba,0xa3,0x5d,0x98, -0x9d,0xa2,0x6a,0x8f,0x96,0xa7,0xcb,0x20,0xf5,0x3b,0x36,0x8f,0x35,0x7c,0x07,0xcf,0x87,0x3a,0x4a,0x7e, -0xde,0xf2,0xaa,0x26,0xd3,0x06,0x57,0xff,0x26,0xe1,0xd7,0x8b,0xc1,0xc7,0x9c,0xaf,0x42,0x52,0x5b,0x6c, -0x56,0x8a,0x5c,0x0b,0xe2,0x5c,0xf4,0x0a,0x49,0x3f,0x2f,0x84,0x06,0x17,0x2c,0xb6,0x29,0xf9,0xf3,0x77, -0x7e,0x61,0xff,0xfa,0x8e,0xb8,0x5a,0xcc,0xfc,0x4c,0x79,0x72,0x6c,0x7c,0x6b,0xf4,0x3c,0x8e,0xd7,0xe6, -0x4d,0x3c,0x98,0x8d,0xc3,0x86,0x83,0xbe,0xed,0x58,0x56,0xb9,0x70,0xe4,0x4d,0x98,0x99,0x14,0x36,0xc5, -0xb7,0xaf,0x7e,0x99,0x21,0x95,0x90,0x71,0xff,0xca,0x32,0x41,0xa5,0x2c,0x94,0x27,0xf9,0xfa,0x47,0xcf, -0x39,0x79,0xfd,0xea,0xd5,0xd3,0x93,0xb3,0xa7,0xdf,0x3b,0x1d,0xe7,0xd5,0xeb,0xb3,0xad,0xfc,0x1b,0x2a, -0x9a,0x64,0xd3,0x42,0x3d,0x2a,0xc5,0xd7,0x7e,0xf7,0x9c,0xb7,0xbf,0xbe,0x3a,0x79,0x28,0xab,0x10,0x1f, -0x50,0x3e,0xbb,0x99,0xfe,0x0c,0x53,0x5c,0x14,0x17,0x63,0xff,0x2b,0x91,0x2a,0xd7,0x71,0x5c,0x09,0xa1, -0xc3,0x7b,0xce,0x7f,0xff,0xf3,0x03,0xd4,0xf0,0xdf,0xff,0x9c,0x08,0x61,0xc7,0xa8,0xf0,0xf4,0x0d,0x6b, -0x79,0xdd,0xb9,0x60,0x41,0xff,0x76,0x6d,0xa4,0x6e,0x02,0x82,0xb7,0x23,0x39,0xb9,0xca,0xd0,0x1a,0x2c, -0x81,0x62,0xe8,0x2e,0x9e,0xa5,0xd3,0x24,0x24,0x37,0xeb,0x8e,0x37,0xcd,0xd3,0x30,0xb4,0x0a,0x25,0x1a, -0xfd,0x33,0x62,0x74,0xaf,0xeb,0x88,0x6d,0x7d,0xea,0x2e,0xf2,0x46,0xe9,0x39,0xbf,0xd0,0xac,0x28,0x9a, -0x37,0xdd,0x13,0xb5,0xac,0x58,0x28,0xa4,0x93,0x39,0x9e,0xf0,0x42,0x38,0xe9,0x2b,0xe4,0x50,0x06,0x0d, -0xa3,0x69,0x54,0x54,0x80,0xe1,0x1a,0xed,0xb2,0xe6,0xae,0x54,0xd5,0x70,0x30,0xea,0x57,0x6c,0xab,0x0d, -0x91,0x3a,0xa7,0x60,0x70,0x0c,0xbd,0x19,0x9b,0xb8,0xbc,0xe2,0x8c,0x9d,0x30,0x0e,0xad,0x43,0x15,0x0f, -0xd1,0xc3,0x58,0x3e,0xef,0xba,0x9a,0x08,0x74,0x28,0x9f,0x97,0xd4,0xf5,0x6d,0x8e,0xcf,0xf7,0x43,0xad, -0x8f,0xf5,0xa2,0xe7,0x14,0x9e,0xcb,0xa9,0xcf,0x99,0xe9,0x23,0x4d,0x79,0x92,0x91,0x1a,0x9e,0xcf,0x2d, -0x9c,0xa6,0x54,0x0d,0xa1,0x1b,0x3f,0x6c,0x6a,0x8b,0x43,0xd7,0x10,0x8a,0xdf,0x94,0x50,0xba,0x45,0x94, -0x6e,0x74,0x94,0xb4,0xc2,0x12,0xa5,0x5b,0x1b,0x4a,0x85,0x5e,0xbb,0x39,0xbf,0xad,0xec,0x35,0x0d,0xbd, -0x3e,0x9e,0x15,0x60,0x21,0x33,0x79,0xd2,0x67,0x04,0x3e,0xf8,0xba,0x38,0xd2,0xfb,0x24,0x60,0x81,0xc2, -0xae,0x7e,0xce,0xf9,0x64,0x39,0xe7,0x54,0x68,0xa7,0x92,0x0e,0xc3,0x85,0xe3,0x7d,0x70,0xbb,0x99,0xda, -0x8e,0xf8,0xf8,0xf7,0xe9,0x3c,0xb4,0xb0,0x93,0x52,0xf1,0xe6,0x9f,0xa3,0x7c,0xc2,0xfb,0xb8,0x94,0xb0, -0xe8,0x82,0x80,0x13,0xad,0x6f,0xe1,0xc6,0x3d,0x3f,0x3c,0xe9,0xce,0x75,0xf1,0xb4,0x71,0x79,0x2e,0x74, -0xb0,0x6d,0xc7,0xb5,0xf6,0xb0,0xcc,0x28,0xec,0xbb,0xd6,0x4a,0xad,0x7b,0x2e,0x8f,0x90,0x9c,0xa0,0xb7, -0x38,0x44,0xae,0xfb,0x66,0x17,0xbc,0x65,0xac,0x4f,0xfd,0xb7,0x00,0xee,0x15,0x17,0x2c,0x00,0x47,0xb7, -0xe2,0x17,0xe7,0xe2,0x98,0x0d,0x2d,0x9e,0x36,0xa3,0x01,0x34,0x7a,0xae,0x9d,0xaf,0x29,0x95,0x7f,0x9a, -0x23,0x46,0x0e,0xe1,0x53,0xf6,0x44,0x5e,0x22,0x51,0xa4,0x8b,0x90,0x55,0x26,0x4b,0x09,0x57,0x3a,0xe7, -0x11,0x6f,0xf5,0xdb,0x36,0xba,0xb3,0x86,0x25,0xa0,0xa8,0xba,0x4b,0x8a,0x95,0xb9,0x56,0x11,0xfa,0x05, -0x36,0xb5,0x35,0xf3,0x43,0x3f,0xbe,0x98,0xf1,0xcb,0xbe,0xb2,0x0f,0xcc,0xba,0xfa,0x62,0x55,0x90,0x1f, -0xd3,0x22,0xd3,0xab,0x69,0xf7,0x1a,0xd3,0xc8,0x16,0x2e,0x35,0x4e,0x96,0xcc,0xc2,0x52,0x49,0x45,0xab, -0x4b,0xfe,0x2e,0xab,0x84,0x8b,0x25,0x60,0xa5,0x9d,0xac,0xe7,0xe7,0x58,0x3b,0xe4,0xf0,0x35,0x28,0xe4, -0x8b,0x13,0xb8,0xdb,0xd5,0x34,0x1a,0xb6,0x35,0xf7,0xc9,0xce,0x04,0x26,0x29,0xa4,0x60,0x54,0xbf,0x10, -0x32,0xd0,0xe1,0x1d,0xca,0x9f,0xea,0xf5,0x5c,0xd3,0xc1,0xd3,0x5e,0xf4,0x7d,0x84,0xa4,0x4c,0xa5,0x34, -0xe1,0x09,0x2d,0x0b,0x3d,0x0b,0x03,0x0c,0xe4,0x67,0xfd,0x3c,0x1d,0x13,0xbc,0x4a,0x0a,0xbc,0x36,0xb0, -0xa4,0xcd,0x08,0x34,0x1a,0x4b,0x10,0xa0,0x4c,0x3b,0x02,0x22,0xab,0x84,0x80,0x48,0x5f,0x81,0x00,0xc6, -0x02,0xd6,0x1e,0xb1,0x72,0xad,0x10,0xbb,0xda,0xac,0x52,0x0a,0x34,0x1c,0x79,0x2b,0x7f,0xf6,0xce,0x57, -0xf4,0x90,0x80,0xa1,0x17,0xd0,0x66,0x42,0x9c,0x9e,0x46,0x59,0x36,0x25,0xa7,0xa5,0xb0,0x26,0xe1,0xef, -0x0e,0x46,0xca,0x84,0xb5,0x09,0x43,0x83,0xda,0x20,0x31,0x2e,0x33,0x6b,0x3b,0xf8,0xa1,0x77,0x9b,0xf2, -0x8f,0xbc,0x0d,0x02,0xf2,0x9c,0xdb,0x14,0xc3,0x25,0xc2,0xbf,0x52,0x24,0xb6,0xb3,0x23,0xaf,0xd1,0x57, -0xe3,0x98,0xbc,0x99,0x89,0x6f,0xd2,0x1d,0x78,0x17,0xf6,0xdf,0xc2,0xef,0x30,0xab,0x71,0x8d,0xb9,0x24, -0x2d,0x9e,0x60,0x08,0x1f,0x43,0x83,0x00,0xf8,0x90,0xc6,0x63,0xd4,0xa0,0x1a,0x52,0x40,0xc2,0x89,0xd0, -0x6e,0x5d,0x68,0x85,0xa8,0x91,0xea,0x52,0xdf,0x2b,0xe5,0x93,0x62,0x41,0x8e,0xc8,0x52,0x59,0x90,0xec, -0x4a,0x3a,0x5b,0x0e,0x45,0xe3,0xce,0x4b,0x89,0xb3,0xe9,0x52,0x45,0x07,0x5a,0x48,0xba,0x30,0xc8,0xf5, -0xfb,0x3c,0xfa,0xf6,0x35,0x65,0xb9,0x35,0xbe,0xb2,0xe5,0xd6,0x31,0xc5,0xb7,0x66,0x4d,0xbe,0x94,0x3f, -0x6b,0x17,0xef,0xf1,0xe3,0x12,0xac,0x7a,0xd1,0x27,0xd0,0x0a,0xb5,0xb4,0x16,0xe9,0xa3,0xc1,0xf5,0x8e, -0x85,0x90,0x52,0xba,0xc5,0xa6,0x36,0x85,0x07,0x26,0xa1,0xff,0x63,0x01,0x6c,0x68,0x57,0x71,0x4b,0x09, -0xa9,0xad,0x66,0x94,0xe4,0x39,0x53,0x80,0xa7,0x89,0x53,0x00,0x93,0x33,0xaf,0x04,0x2a,0x32,0x0c,0x70, -0xa9,0xba,0xd2,0x60,0xdb,0x9d,0x62,0x21,0x56,0xf8,0xb1,0x97,0x90,0x1a,0x26,0x65,0x94,0x30,0x99,0x7b, -0x45,0x53,0xe6,0xd0,0x85,0xcd,0xba,0xc2,0x4f,0x81,0x3d,0xac,0xf0,0x59,0x62,0x0b,0x25,0x1b,0xa0,0xb0, -0x57,0xc0,0x91,0xc2,0x84,0x34,0x77,0x0b,0x5b,0xcd,0x0d,0xd6,0x38,0x31,0x8b,0x95,0xed,0xea,0x97,0xeb, -0xde,0x6a,0x7a,0x29,0x25,0x55,0x71,0x5d,0x33,0xb6,0x6c,0xb6,0x6f,0x79,0x9f,0xea,0x16,0x2a,0x90,0xaa, -0xf3,0x6a,0x17,0xcc,0xd7,0x8e,0xbd,0x7f,0x36,0x77,0xcf,0xdf,0xbf,0x7f,0xbf,0x77,0xb1,0x87,0xeb,0x94, -0x6b,0x8e,0x41,0xd8,0x5e,0xed,0x0f,0x96,0xa6,0xfa,0x67,0xfe,0xaa,0xac,0x9f,0xd8,0xb4,0x07,0x66,0xd3, -0x7c,0x5f,0xef,0x36,0x29,0xf2,0xcb,0x57,0xe0,0x25,0xb0,0x7c,0x1f,0x31,0x81,0xe5,0x02,0xcd,0xd7,0x16, -0xb1,0x3a,0x78,0x4a,0xa6,0xb5,0xdd,0xf6,0xb4,0xbb,0xb3,0x32,0xca,0xc2,0xb8,0x32,0x62,0x45,0x35,0xf5, -0xe8,0x95,0xb6,0xb5,0xf8,0x29,0xf5,0xad,0xc5,0x27,0x6b,0x5c,0x7b,0xea,0x46,0xbf,0xdd,0x06,0x5e,0xe3, -0xd2,0x51,0xb6,0xbb,0xdb,0x36,0x15,0x55,0xaf,0x27,0x25,0xf9,0x4c,0xd1,0xf4,0x94,0x3d,0xcb,0x75,0x2d, -0x6e,0xcd,0xe1,0x7e,0xc7,0x52,0x10,0x74,0x7e,0x39,0x8a,0xae,0x33,0x94,0x7f,0x48,0xbb,0xcc,0xdc,0x9b, -0x02,0x1c,0xfd,0x8a,0x31,0x64,0xd2,0x1e,0x7a,0x69,0x0b,0x92,0xe3,0x0c,0xc3,0x35,0x1a,0x17,0xea,0x7a, -0x2a,0xae,0xec,0x6d,0xb7,0x93,0xf2,0x55,0x8a,0xdf,0x86,0xa4,0xd3,0x57,0xf1,0x43,0x9c,0x34,0x55,0x3b, -0x4b,0x62,0x0d,0x4a,0x61,0x8d,0x0c,0x01,0x48,0x06,0xa8,0xce,0x6f,0x3f,0xbd,0x3b,0x79,0x83,0xa1,0x20, -0x33,0x8c,0xb8,0x2e,0xf4,0x65,0x85,0xee,0x5d,0xc4,0xd1,0xad,0xe0,0x87,0x7c,0x1a,0x43,0x17,0xfc,0xc5, -0x20,0x0f,0x29,0x45,0xeb,0x48,0xf1,0x25,0x0b,0x77,0xae,0xac,0xa9,0x4b,0xb9,0xc8,0x37,0xc7,0x04,0x36, -0xce,0x65,0x8d,0xa2,0x6f,0x08,0xad,0x59,0x1f,0x23,0xde,0x94,0x5a,0xd1,0x2e,0x94,0x65,0xcf,0x33,0xd1, -0x79,0x2a,0x3c,0xa0,0x8f,0x7d,0xfc,0x2d,0xd8,0x8f,0x6e,0x8b,0x91,0xa0,0xf1,0x36,0xd2,0x20,0x95,0xf0, -0xfc,0x31,0xce,0xe4,0xa5,0xb5,0x39,0xe4,0xa5,0x37,0xb8,0xc8,0xc3,0x72,0xc8,0x5b,0x3c,0xd6,0x2f,0x73, -0x3f,0xbb,0x95,0x21,0xd7,0xa3,0xd5,0x3c,0xdc,0xb8,0x66,0x15,0x20,0x2d,0x12,0xbe,0xcd,0x52,0xa0,0xdf, -0xc0,0x5b,0xcf,0xf0,0x63,0xd4,0x98,0xa4,0xfb,0x45,0x55,0xd9,0xbc,0x1d,0x3d,0x15,0x4d,0x03,0x64,0x10, -0x1e,0xe7,0x25,0x85,0x41,0xdf,0xe3,0xdc,0x2d,0x5c,0xbd,0x50,0x24,0x07,0x37,0x89,0xdc,0x76,0x34,0xfc, -0x18,0xa5,0x19,0xea,0xfd,0x09,0x07,0xa1,0xc5,0xf9,0xc5,0x01,0x66,0x93,0x45,0x57,0x8a,0xea,0x2d,0x73, -0xb0,0x9b,0x69,0xde,0x00,0x50,0xad,0x3b,0x20,0x17,0xd8,0x1f,0x1d,0x0f,0x5d,0x10,0x44,0xe1,0x2d,0x2a, -0xfc,0x8f,0xa3,0x39,0x29,0x41,0xa1,0x4f,0x59,0x5a,0xaf,0xf0,0x43,0x6a,0x7c,0x53,0xac,0xd6,0x59,0x16, -0xb3,0xaf,0x37,0xf9,0xf5,0x03,0x57,0x05,0x5f,0x53,0xdc,0x65,0x93,0x39,0x2c,0x18,0xd0,0x72,0x87,0xfc, -0x1a,0x5d,0xa5,0xa9,0x30,0xfe,0x45,0xbb,0x63,0x94,0xb1,0x77,0x9c,0x69,0x3c,0xc5,0xf7,0x70,0x74,0x6b, -0xf3,0xbd,0xee,0x94,0xe0,0x5f,0x33,0x68,0x27,0xfb,0xd4,0x69,0x7b,0xf2,0x29,0x9d,0xaa,0x48,0x84,0xeb, -0xfc,0xce,0xbe,0x77,0x13,0xf7,0x23,0x56,0xd2,0xe2,0x5f,0xec,0xb8,0xfb,0xd1,0x77,0x2d,0x0f,0x15,0x07, -0x61,0xd3,0x22,0x93,0x02,0xa4,0x03,0xef,0x80,0xaf,0x99,0xdd,0x08,0x9e,0x4e,0x82,0x29,0xd9,0x33,0xc0, -0xff,0x67,0x70,0xda,0x4a,0x70,0xa6,0x74,0x9a,0xad,0x03,0x0c,0x74,0xf4,0xe4,0xe7,0x67,0x97,0xa7,0x4f, -0x7f,0x3c,0x3e,0x7b,0xf1,0xcb,0xd3,0xcb,0x37,0xc7,0xcf,0x9e,0x5e,0xbe,0x3e,0x7d,0xf1,0xec,0xc5,0x2b, -0x5c,0x51,0xb3,0xa6,0xf8,0xcd,0xee,0x40,0x5a,0x1e,0x85,0x00,0x58,0x50,0xcc,0x25,0xe0,0xec,0x59,0xfc, -0x36,0xd3,0x8f,0x73,0x9e,0x12,0x34,0x3b,0x4e,0x37,0xbd,0x8d,0x84,0x9d,0x1a,0x5a,0x60,0x92,0x06,0x47, -0x07,0x32,0xbe,0x72,0xba,0xf4,0x8d,0xac,0xef,0xf0,0x22,0xa2,0xd9,0xe3,0xed,0x1f,0x1c,0xec,0xc2,0x9e, -0x85,0x0b,0x98,0x32,0xa7,0x23,0x53,0x99,0x48,0x5d,0x29,0x31,0x08,0x4c,0x0b,0x23,0x3f,0x75,0x79,0x11, -0x2b,0x95,0x1e,0x96,0x4b,0x6b,0xfe,0xc5,0x53,0x2a,0x9d,0xba,0x42,0xb7,0xb7,0x54,0xba,0x5f,0x2e,0x1d, -0xe4,0xa5,0x03,0x2a,0x8d,0x4a,0x5f,0x75,0x3f,0x82,0x41,0x1a,0x74,0xfb,0x49,0x18,0x7c,0xe8,0x4a,0x12, -0x83,0x22,0x8d,0xc1,0xdf,0x98,0x48,0xb1,0x1f,0x94,0x4a,0x07,0xe5,0xd2,0xb9,0x00,0xa2,0x16,0x53,0xe9, -0x38,0x67,0x51,0x3d,0xd6,0x99,0x84,0xef,0x33,0xc8,0x23,0xf8,0xbf,0xe6,0xd4,0x2d,0x5c,0x21,0x4d,0x0e, -0x0b,0xbd,0xf6,0xf4,0x3e,0xa4,0xbb,0x4e,0xa1,0x81,0x07,0x5a,0x0b,0xac,0x0a,0x92,0xd4,0x9d,0x07,0x9e, -0xfc,0x18,0xea,0x1f,0x7d,0xf8,0x28,0x55,0x10,0xc8,0x0a,0x82,0x2f,0x85,0xa3,0x47,0x4f,0x83,0x16,0x5c, -0x83,0x07,0x7a,0x5b,0xeb,0x60,0xab,0x3e,0x82,0x12,0xea,0xf8,0x2e,0x85,0xb5,0xc1,0xff,0x50,0x99,0xd0, -0x98,0x11,0x8d,0xa7,0xe2,0xff,0x79,0x11,0x09,0x00,0x7e,0xa0,0x95,0xe2,0xba,0x47,0x7a,0x43,0xa9,0xfe, -0x31,0xb7,0xb5,0x1a,0xc8,0x0a,0x82,0x65,0xed,0xda,0x99,0x80,0xa5,0x1e,0xe8,0xe5,0xd7,0xc1,0x60,0x29, -0x13,0xfa,0xa2,0x36,0xec,0xff,0xb5,0x18,0xd0,0x7f,0xa0,0x95,0xb8,0x0f,0x03,0xfa,0x92,0x01,0xd4,0x8b, -0x1b,0x11,0xdf,0x57,0xc4,0xf7,0xef,0x49,0xbc,0x34,0xd8,0x48,0x70,0x61,0x86,0x73,0xe1,0x59,0x4c,0xfb, -0x5e,0xf9,0xbe,0x8c,0xe1,0x34,0xfc,0xbb,0xa0,0xd3,0x5e,0x74,0xc9,0xec,0x11,0xfd,0x7f,0xe0,0x93,0x13, -0xae,0xd3,0x7b,0xff,0xfc,0xea,0xbc,0xd5,0xf8,0x47,0xd0,0xb8,0xbe,0xb8,0xfb,0x66,0xf1,0xf5,0x5e,0x44, -0x5e,0xc8,0xcb,0x79,0x8f,0x28,0x8f,0x1e,0x99,0xa2,0xf4,0x55,0xf0,0xaa,0x16,0x35,0x13,0xbf,0xfd,0xed, -0xae,0xf6,0x86,0x95,0xce,0xfa,0x80,0x45,0xad,0xed,0xb5,0x5d,0x0f,0xd6,0x87,0x3d,0x98,0x05,0x6e,0x6e, -0xd3,0xa0,0x15,0x1c,0xda,0x0b,0xee,0xaf,0x2c,0xd8,0xb7,0x17,0xfc,0xa6,0xb2,0xe0,0x01,0x3e,0x22,0xcb, -0x25,0x4a,0xd6,0x12,0xd8,0x6b,0x79,0x64,0xad,0x45,0xb3,0x16,0x35,0xd9,0x56,0xe2,0x5a,0x25,0xc0,0xfa, -0xac,0x6b,0xdd,0x97,0x75,0xab,0x79,0x5e,0xc1,0xba,0x6a,0x9e,0x3f,0xda,0x80,0x75,0xf6,0x0e,0xa8,0x64, -0x5d,0x3e,0xaa,0x1e,0x57,0xf0,0x2e,0x87,0xf8,0xce,0xc6,0x3c,0x1b,0x03,0xf6,0x57,0x72,0xce,0x86,0xf7, -0xaa,0x52,0x7d,0x4b,0xa9,0x83,0xca,0x52,0xff,0xb0,0xf3,0xac,0x5c,0xc5,0xb7,0xd6,0x2a,0x56,0x8f,0xb5, -0x2a,0x7e,0x6d,0xca,0xae,0xd6,0xbd,0xd8,0xb5,0x7f,0x2f,0x76,0x3d,0xaa,0x2c,0xf5,0xdd,0xba,0xec,0x7a, -0xbc,0x19,0xbb,0x70,0x53,0x7d,0x9f,0xee,0xbe,0xaf,0xc1,0x3f,0x35,0x64,0xcd,0xfb,0xe6,0x45,0xfd,0xc1, -0xef,0xe7,0xad,0xf6,0x45,0xef,0x7d,0xb3,0x87,0x29,0x17,0xbb,0x2e,0x64,0x7a,0x7f,0x3c,0xc0,0x7b,0xd7, -0xde,0x63,0x80,0xe3,0x9f,0x84,0x22,0x63,0x40,0x43,0x22,0xf1,0x0b,0x68,0x04,0x7b,0x18,0x49,0xd5,0x97, -0x8c,0x26,0xf7,0x21,0xb9,0x03,0x8e,0x9a,0xe3,0xd6,0xdb,0x9e,0x96,0xe0,0xa1,0x7f,0x55,0xe7,0x01,0xde, -0x3f,0xa5,0xd0,0x41,0xbe,0xb3,0xa1,0xeb,0x0c,0xcb,0xa8,0xe3,0xa8,0x74,0x99,0x8b,0xda,0x2d,0x96,0x9e, -0xb3,0x8c,0xd1,0xcc,0x32,0x50,0x2a,0x31,0xf4,0xca,0x18,0x7a,0xc5,0xec,0xb5,0x51,0x1e,0x6e,0x84,0xf2, -0x70,0x15,0xca,0x49,0xaf,0x12,0xe9,0x32,0x8e,0x44,0x05,0x5c,0x19,0xb3,0x17,0x3a,0xaf,0x3b,0x66,0x0d, -0xc5,0xfc,0x72,0x21,0x77,0xfd,0x0e,0xea,0x6f,0x44,0x6d,0x7f,0x39,0xb5,0x89,0x6b,0xe9,0xa5,0x2f,0x8a, -0x6e,0xb0,0x11,0xba,0x05,0xe8,0x02,0xe4,0x9d,0x58,0x33,0x7c,0x6d,0x3e,0xe2,0x19,0xf4,0xaf,0xb5,0x66, -0xec,0xec,0x58,0x70,0xfc,0x53,0xd7,0x0c,0x1b,0x06,0x7f,0xb5,0x95,0xd5,0x8a,0xe3,0x9f,0xbb,0xb2,0x1a, -0x13,0xe1,0xcf,0x5b,0x61,0x47,0x1b,0xcd,0x88,0x22,0x34,0x5c,0xd6,0xfe,0x2f,0xd6,0xd8,0x74,0x23,0xa4, -0xd3,0xaa,0x69,0xfc,0xb7,0x58,0x61,0xe7,0x1b,0xd1,0x3a,0x5f,0x46,0xeb,0xdf,0x67,0x7d,0x95,0xfa,0xb7, -0x78,0x27,0x85,0xf5,0xea,0x2c,0x3e,0x1d,0xf6,0xcd,0xb8,0xd2,0x89,0x7a,0x44,0x38,0xf4,0xdb,0x7b,0x8f, -0xe1,0xba,0x79,0xe4,0x1f,0xec,0x3d,0xee,0xb5,0x3b,0xe1,0x61,0x7b,0xef,0x9b,0x5e,0xbb,0xf1,0x78,0xb7, -0x16,0x36,0x20,0x0b,0x7a,0xe7,0xe8,0x11,0xe4,0xd0,0xf7,0x23,0xfc,0x6e,0x61,0x04,0xea,0x23,0x2c,0xb6, -0xb3,0x03,0xc5,0x9b,0x07,0xa2,0x14,0xc2,0x84,0xf0,0x0b,0xa1,0x45,0xf9,0xe6,0x01,0x82,0x07,0x08,0xde, -0x3c,0x20,0x68,0xd1,0xc8,0xd1,0x3e,0x97,0x86,0xc2,0x04,0xb8,0xcf,0x0d,0x1d,0xe4,0x45,0x0f,0xb8,0xa9, -0xd8,0xaf,0x45,0xf5,0x5a,0xbb,0x11,0xb9,0xbb,0xf0,0x2f,0x50,0xb9,0x9b,0x78,0x13,0xbf,0x96,0xd6,0xd9, -0xfd,0xbf,0x4a,0x1b,0xfb,0xb5,0x00,0xd3,0x82,0x3c,0x4d,0x3c,0xa1,0xdc,0x25,0x9d,0xd8,0x1b,0x76,0x26, -0x5e,0xbf,0x33,0x5e,0x20,0x47,0xe0,0xd4,0x77,0x16,0x3f,0x4f,0xe7,0x76,0x8e,0x90,0x5f,0x52,0x21,0x78, -0xc3,0x00,0x81,0x9c,0x07,0x6d,0x72,0x4a,0x24,0xa1,0xa1,0xc5,0xb8,0x31,0x51,0xb1,0xb7,0xfd,0xd6,0xb6, -0x1f,0xf7,0xc6,0x7b,0x71,0x07,0x83,0x01,0xb7,0x7c,0x7f,0xdc,0x6b,0x75,0x42,0x8c,0x3a,0x5f,0x7b,0x5c, -0xaf,0x65,0x8d,0xc4,0xdd,0x1b,0xbb,0x0f,0x1e,0x77,0x32,0x4c,0xda,0xaf,0xd7,0x92,0x46,0x08,0x29,0x9d, -0x04,0x3f,0x1f,0xd5,0x81,0xde,0x0c,0x3f,0xa1,0xec,0x9e,0xff,0x18,0xa3,0xc7,0x7b,0x77,0xa3,0x0e,0xe0, -0xd2,0x49,0xbd,0x79,0x27,0x20,0xb4,0xad,0x6f,0x5a,0x14,0xa3,0x93,0xdd,0x55,0xa2,0xc8,0xdc,0x4f,0xa4, -0x2f,0x71,0x94,0x41,0x40,0x15,0xd0,0x57,0xf0,0x77,0xde,0x69,0x7b,0x09,0xfc,0x1d,0xc2,0xdf,0x3e,0xfc, -0x45,0x29,0x04,0x03,0x4a,0x1d,0xeb,0x5a,0x5e,0x07,0x7b,0x60,0x90,0xce,0x87,0x59,0x90,0xed,0xab,0x50, -0xc5,0xdb,0x2d,0xef,0x0e,0xb1,0x91,0xf2,0x7c,0x57,0xd5,0x23,0x64,0xde,0x18,0xfa,0x8b,0x77,0x03,0xbd, -0x02,0xa1,0x3a,0x85,0x4f,0x4c,0xb6,0x64,0xdf,0xb9,0x9d,0x4f,0x9d,0xba,0x99,0xc7,0x0f,0x05,0xa6,0xeb, -0x3c,0xbf,0xd5,0x83,0xff,0x3b,0x8e,0x8a,0x31,0xc0,0x8a,0x05,0x05,0xfe,0x34,0x6f,0xa3,0xc1,0x90,0x9c, -0x39,0x61,0x8c,0x43,0x23,0x07,0xbd,0x44,0x8c,0x83,0x4f,0xb6,0x2c,0xac,0xaa,0x10,0x31,0xa7,0x8d,0xa1, -0x96,0x8b,0x30,0x68,0xf3,0xff,0x02,0x5f,0x23,0xef,0xaa,0xf3,0xd0,0x72,0x48,0x58,0x8f,0xd5,0x1e,0x6a, -0x01,0x7f,0xf8,0xc5,0xac,0x21,0xb0,0x70,0xb6,0x28,0x20,0xa4,0xef,0x0c,0xa2,0x74,0x0a,0xdf,0x9d,0x2d, -0xd4,0x12,0xea,0x3a,0x22,0xf6,0xcf,0x43,0xd4,0x58,0xd3,0x95,0x22,0x9a,0x6c,0x2a,0xae,0xa8,0xb8,0xa4, -0x0c,0xb7,0x82,0xc4,0x04,0xbd,0x7b,0xa0,0x53,0xb4,0xb0,0xe6,0x60,0x0c,0xcb,0x3c,0x8a,0x7a,0xc2,0xe2, -0xe5,0xa8,0x40,0x1c,0x80,0xd3,0xfb,0x09,0xea,0x6f,0xfc,0x9c,0x8c,0x6b,0xfb,0xb0,0xfc,0x74,0x51,0xf3, -0x25,0x0c,0x06,0x79,0xe1,0x87,0x87,0x84,0xf4,0x16,0xf9,0x33,0x70,0x32,0x18,0x17,0x7b,0xf8,0xbe,0x70, -0xd4,0x64,0xd2,0x6e,0xa9,0x8a,0xad,0x3b,0xd4,0x4b,0x18,0x92,0x24,0xb6,0xb3,0x35,0x83,0xca,0x1e,0xd6, -0xa3,0xba,0xe3,0x02,0x81,0x0d,0x76,0x81,0xb9,0x75,0x45,0x9e,0x26,0xc5,0x7f,0xdd,0xc5,0xe1,0x1e,0x55, -0x8b,0x91,0xc0,0x48,0xd9,0x06,0x03,0x0e,0x13,0xf1,0xc2,0x03,0x7d,0xf9,0xe1,0x49,0xe3,0x07,0x82,0x5f, -0x0a,0xc0,0x62,0x79,0xe9,0xb9,0xfe,0xde,0x15,0x28,0x67,0xf9,0x6b,0xd6,0x80,0xa0,0x56,0x24,0xee,0x51, -0x07,0xab,0x3d,0x71,0x1d,0xec,0x2d,0x60,0x69,0x05,0x0c,0x7e,0xc9,0x90,0x6e,0x71,0xd9,0x68,0xb2,0x62, -0xea,0x3b,0x9e,0x1c,0xa5,0x77,0xf1,0xd0,0x0c,0x4d,0x25,0xbb,0x93,0xa0,0x1f,0x1e,0xd9,0xb2,0x10,0x93, -0xea,0x9c,0xd7,0x3c,0x0e,0x65,0x24,0x2b,0x8a,0x69,0x66,0x83,0x3b,0x99,0x25,0x69,0x9c,0x20,0x18,0x45, -0x36,0x13,0xd0,0xe5,0x4a,0x9f,0xcf,0xc2,0x2d,0xfe,0xc9,0xab,0x46,0x03,0x23,0xcc,0x4d,0x43,0x2c,0x79, -0x15,0x4c,0xe6,0x41,0x5a,0x86,0x7f,0x4b,0x80,0x46,0xa9,0x87,0x5b,0xe4,0xc8,0xde,0x7f,0xd8,0x7e,0xb8, -0xc5,0x51,0x78,0xfd,0x87,0x07,0xad,0x87,0x5b,0x6c,0xdd,0xf3,0x10,0x0a,0x21,0x26,0x5c,0xa1,0x15,0x67, -0x80,0x60,0x8c,0x65,0xb5,0x57,0x6b,0xe2,0xff,0x16,0x06,0xfd,0x26,0xf8,0x03,0xfc,0xe6,0xf8,0x43,0x21, -0xf1,0xb0,0xb9,0x82,0x0c,0x00,0xbc,0x1f,0x19,0xb0,0x5f,0x6c,0x44,0x06,0xc0,0x6f,0x4e,0x06,0x6d,0x4a, -0x2b,0x28,0x00,0x98,0xfb,0x51,0x70,0x1a,0x0e,0x36,0xa2,0x00,0xe0,0x37,0xa7,0x00,0x0a,0xad,0xc0,0x1f, -0x20,0xee,0x87,0xff,0xb3,0x04,0x5d,0x5c,0x6d,0x42,0x01,0x95,0xd8,0x9c,0x06,0x2a,0xb6,0x82,0x0a,0x82, -0xb9,0x1f,0x1d,0x4f,0xc6,0x1b,0xce,0x68,0x2c,0xb0,0x39,0x15,0x4f,0x56,0x0f,0x25,0x04,0xb9,0x1f,0x0d, -0xc7,0xe3,0xe9,0x28,0xd8,0x88,0x08,0x2a,0xb1,0x39,0x15,0x54,0x6c,0x05,0x19,0x04,0x73,0x3f,0x3a,0xde, -0xb0,0x22,0x46,0x15,0xd2,0x22,0xfb,0x49,0xfc,0xd1,0x86,0x66,0x3b,0x5f,0x7e,0x48,0x79,0x0c,0xe6,0x17, -0x6d,0x3b,0x3a,0xba,0xdc,0xb0,0x88,0x69,0x98,0xfb,0xd1,0x12,0xc6,0xc6,0xfa,0x7e,0xe0,0x6d,0x35,0x6d, -0xfc,0xcc,0x93,0x99,0xa6,0x02,0x98,0xd4,0xf7,0xb4,0x85,0x23,0xe4,0x28,0x6c,0x8d,0x9b,0xf8,0xdf,0x0d, -0xd4,0x2e,0x69,0x48,0x15,0x37,0x56,0xca,0x96,0xd9,0x1c,0x0a,0x77,0x09,0xc4,0xea,0xb2,0xb4,0xcd,0x37, -0xd0,0x4f,0x3c,0x1a,0x4f,0x4a,0x18,0x4f,0x9c,0xe2,0xd0,0xdf,0xe5,0xc7,0x0c,0xb5,0x58,0x2d,0x9b,0x78, -0x49,0x97,0x91,0x94,0x14,0x93,0xfc,0x04,0x82,0xae,0xd9,0x2c,0xe5,0x4c,0xde,0x19,0x87,0x01,0x4c,0xb8, -0x54,0x65,0x65,0x65,0x79,0x34,0xa1,0x2f,0x51,0xdb,0xfa,0xa8,0xf1,0xb8,0x2c,0x55,0xc9,0xc9,0x9f,0x85, -0xe6,0x86,0x35,0xaf,0x83,0xb2,0xf4,0xbd,0x90,0x57,0xc9,0x29,0xf7,0xc4,0x73,0xfd,0xea,0xd6,0x42,0xee, -0xaa,0x44,0x30,0x57,0xf7,0x59,0xbc,0xdc,0xa8,0x56,0xbe,0x59,0x14,0xcf,0x97,0x85,0x0b,0x84,0x45,0x69, -0x3c,0xdc,0xdb,0xf7,0x12,0x3f,0x83,0x2b,0xb2,0x32,0xab,0xe6,0x43,0xa9,0xf0,0x42,0x88,0x6e,0xd0,0x70, -0xbd,0x40,0xfd,0xc5,0x26,0x2f,0x34,0xa1,0x17,0x35,0xc5,0x42,0x13,0x2a,0xfb,0x19,0xd4,0xcc,0x24,0x57, -0x25,0x34,0xa5,0x6a,0xce,0xfe,0x80,0x6c,0x7d,0x73,0x77,0x55,0x12,0x30,0x86,0xb4,0x18,0xd2,0x62,0x69, -0x23,0x24,0x2e,0xf2,0xe9,0xbf,0x92,0x8c,0x3d,0x90,0x4f,0xe3,0xdb,0x1a,0x5c,0x4a,0xd0,0xb4,0x54,0x7d, -0x07,0xf4,0x2d,0x6c,0x05,0x27,0x47,0x59,0x7d,0xdf,0x95,0xba,0x7d,0x35,0x04,0xf6,0xe1,0x1e,0x1a,0x1c, -0x26,0xbd,0x7f,0xb4,0x3a,0xfb,0xdf,0xb6,0x3a,0x1c,0xeb,0x27,0x0b,0x26,0x35,0xb8,0xd7,0x07,0xee,0x1e, -0x82,0xb8,0xee,0x1e,0x25,0xbf,0x79,0xb1,0xdb,0xfe,0xae,0xe5,0xd6,0x6b,0x31,0xc0,0xc3,0xaf,0x0e,0xfc, -0x46,0xb9,0xdf,0x03,0x34,0x42,0x1e,0xf8,0x93,0xbd,0xcc,0x1b,0xf9,0x35,0x15,0x2d,0x68,0x4c,0x99,0x75, -0x01,0x70,0xd8,0xde,0x6f,0xf5,0xda,0x9d,0xf1,0xd1,0xfe,0xa3,0x56,0xaf,0x06,0x1f,0x8d,0x1c,0xb0,0x41, -0xd2,0xc3,0xbd,0xc7,0xad,0xce,0x98,0xc0,0x28,0x7b,0x4c,0x09,0x2d,0x6f,0xe6,0x6b,0x80,0x90,0xe1,0x1e, -0x3e,0xc6,0x8a,0x8a,0x89,0xaa,0x5c,0x21,0x43,0xd4,0x72,0xa5,0xd7,0x02,0x28,0x94,0x6b,0xa1,0x44,0x5b, -0x2d,0x98,0x21,0x6a,0x99,0x16,0xb5,0x98,0x6a,0x23,0x94,0xd4,0x8c,0x48,0x52,0x33,0x70,0xe1,0x26,0x7f, -0x52,0x82,0x98,0x21,0xc4,0x2c,0x87,0xb8,0x2e,0x41,0x5c,0x21,0xc4,0x95,0x82,0xe8,0x92,0xcb,0xc9,0x31, -0x47,0x9b,0x11,0xea,0x47,0x53,0x52,0xfc,0x38,0xa1,0x7f,0xaf,0x51,0xf9,0xc3,0x63,0xa0,0x53,0x54,0x65, -0x8e,0xbd,0xc0,0xc3,0x17,0xfb,0x85,0x92,0x96,0x35,0xb3,0x98,0x06,0xee,0xe9,0x8f,0x65,0x81,0x42,0x31, -0xee,0x6c,0x6a,0x13,0x20,0xe8,0x11,0xd1,0x50,0x18,0xb3,0x14,0xa4,0x5a,0x44,0xa1,0x45,0x1b,0x27,0x31, -0xce,0x52,0x10,0x14,0x35,0xfe,0xc2,0x41,0x0a,0x96,0x81,0xe5,0xf2,0x19,0x4d,0x76,0x24,0x9e,0x23,0x0b, -0xb2,0x9d,0xc4,0x14,0xfd,0x34,0x35,0x7d,0x46,0x35,0xab,0x22,0x34,0x5f,0xd3,0x84,0x40,0x9a,0xf4,0x68, -0x14,0xa4,0xc7,0xb0,0x0f,0x47,0xfd,0x59,0x16,0xb2,0x27,0x88,0xc6,0xed,0xd5,0xb4,0x81,0xfa,0x74,0x3b, -0x3b,0x4a,0x33,0x38,0x39,0x8f,0x2e,0x76,0x76,0x6a,0xf8,0x9f,0xaf,0x15,0x06,0x8e,0x54,0x15,0xf6,0xa4, -0x91,0x17,0x96,0xe9,0x51,0xc1,0xed,0x56,0xc7,0xb9,0x0e,0xc6,0xa9,0x4c,0x95,0x15,0x6e,0xb7,0xdd,0xdc, -0x48,0x90,0x50,0x25,0xd1,0xad,0x52,0x92,0xd5,0xc9,0x03,0x78,0xe9,0xad,0x27,0xaa,0xd4,0xe1,0x8e,0x94, -0x0e,0x77,0xb7,0x22,0x5a,0xa6,0x50,0x25,0x4e,0x2f,0x7a,0xc6,0x17,0xe1,0x23,0x22,0x79,0xe6,0x0d,0x12, -0xb2,0x72,0xd8,0x71,0x58,0x9f,0xea,0x81,0x54,0x92,0x49,0x95,0x85,0x4e,0x35,0xd7,0x43,0x41,0x15,0xc7, -0x7d,0x93,0xa2,0x29,0xed,0x4b,0x17,0x46,0xe5,0xcc,0x26,0x3d,0x6f,0x18,0x33,0x5d,0xa7,0x3f,0x8e,0xaf, -0xc8,0x42,0x5c,0xef,0x76,0x56,0x99,0x15,0xc1,0xe9,0xc4,0x60,0xad,0x96,0x26,0x90,0xff,0xa3,0x50,0x07, -0x86,0x84,0x0a,0x25,0x71,0x52,0x20,0x87,0x5c,0x48,0x09,0x93,0xec,0xf8,0x3a,0x13,0xea,0xe5,0x12,0x2d, -0x27,0x9a,0x8c,0xa3,0x09,0x75,0x2a,0x9f,0xae,0x84,0x74,0xcc,0x71,0x7b,0x91,0x99,0x20,0x41,0x1b,0x4c, -0x81,0xdb,0x29,0xe6,0x17,0x2b,0xc0,0x66,0x85,0x18,0x4b,0x6f,0x31,0x91,0xde,0x3f,0xe5,0x10,0x49,0x8a, -0xce,0xeb,0xb0,0xe9,0xa2,0x3f,0xbb,0x32,0x10,0x22,0x50,0x84,0x92,0x61,0xdc,0x84,0x65,0xae,0x62,0x97, -0x48,0x1c,0x24,0xc1,0x2d,0x5f,0x06,0xd2,0x9a,0x0a,0xf9,0xc6,0xc6,0x46,0x32,0x19,0x91,0xc6,0x5d,0xfc, -0x1a,0x76,0xcc,0x74,0x85,0xf8,0x07,0x2b,0xbf,0x24,0xc0,0x4b,0xe2,0x89,0x2c,0xdb,0x1f,0xcf,0x92,0x75, -0x8a,0x22,0x9c,0x28,0xe9,0x76,0xc4,0xfb,0xac,0x4d,0xb4,0x8a,0x72,0x5c,0x9b,0xc4,0x75,0xf5,0x08,0xb1, -0x94,0x42,0x24,0x45,0x07,0x94,0x44,0x95,0x91,0xa4,0x60,0xd9,0xc1,0xa8,0x44,0x86,0x02,0xbe,0x24,0x8d, -0x6f,0x29,0x2c,0xb6,0x22,0xc9,0x89,0xe2,0xa4,0xb4,0x9a,0xc7,0x34,0x64,0x04,0x8b,0xb9,0x72,0x51,0x74, -0x25,0x8b,0xb9,0x24,0x71,0x58,0x62,0xc5,0x25,0x3f,0x84,0x9f,0x56,0xc8,0x37,0xb9,0x28,0xc1,0xa9,0xdb, -0x04,0x59,0xd3,0xac,0x51,0x8a,0x01,0x61,0x5a,0x15,0x2d,0x31,0x8c,0xe9,0x4e,0x5b,0x8d,0x98,0xed,0xd2, -0xa1,0x49,0xad,0x0c,0x51,0xd8,0x1b,0x78,0x83,0x12,0xf1,0xd5,0x3a,0x25,0xbb,0x98,0x32,0xac,0x94,0xff, -0x9b,0xef,0x0e,0x6b,0x37,0x61,0x66,0x29,0x4b,0x81,0x9e,0x8c,0xd2,0x7b,0x4c,0x93,0x0f,0x3d,0x23,0xc7, -0x93,0x31,0x8c,0xa2,0x8e,0x9c,0xa3,0x2a,0x09,0xdd,0xc8,0x94,0xe4,0xa2,0x5a,0x84,0xe1,0x10,0x68,0x88, -0x3f,0x15,0x85,0xa3,0x59,0x71,0x6d,0x2b,0x2c,0xa5,0x4b,0xd7,0x50,0x9a,0x2b,0xfd,0xf0,0x1a,0x1d,0x32, -0xeb,0xab,0x4e,0xa6,0x9c,0x8d,0x42,0x97,0xb2,0xbf,0x0e,0xea,0xdc,0xeb,0xeb,0xca,0x71,0xa8,0xf2,0xed, -0x83,0x4d,0x65,0x57,0x8c,0x28,0x95,0x5f,0x35,0x78,0x10,0xc0,0xbe,0x68,0xe3,0x52,0xe0,0x7a,0x32,0x4e, -0xcc,0xd2,0x3d,0xcb,0x58,0xe9,0xd6,0xe0,0xa4,0xce,0x32,0x58,0x23,0xb6,0xdb,0x5d,0xe9,0x47,0x8a,0x64, -0x10,0xb0,0xca,0x1b,0xa2,0x68,0x74,0x0d,0x22,0xb9,0x9d,0x28,0x16,0x67,0x79,0xf8,0x50,0x01,0x2e,0xf6, -0x04,0x4f,0xcb,0xa1,0xed,0x40,0x84,0x6d,0x16,0x06,0xc5,0xd1,0x64,0x12,0x26,0x64,0xcc,0x71,0x08,0xb5, -0x69,0xb6,0x1d,0x3b,0x3b,0xa2,0x95,0x6d,0xad,0x15,0x09,0x41,0x46,0x02,0x70,0x5c,0x2a,0xb7,0xca,0xf9, -0xf4,0x3c,0x75,0x1f,0xd9,0x86,0x14,0xb4,0x28,0x87,0xd4,0x5a,0x03,0x90,0x30,0x08,0x27,0x5a,0x84,0xa5, -0x94,0x8e,0x36,0xf2,0x0d,0x8d,0xf9,0x1b,0xf0,0x9e,0x2e,0x0d,0x40,0x2c,0x6f,0x6d,0x64,0x61,0x45,0xfa, -0xcf,0xb7,0x4e,0x27,0xf0,0xad,0x68,0x42,0x23,0xba,0x9e,0xb4,0x0d,0xee,0xf9,0x2c,0x34,0xa1,0x52,0x1b, -0xd4,0xdb,0x20,0x33,0xa1,0xe6,0x36,0xa8,0x5f,0x82,0x42,0x8b,0x89,0x0d,0xea,0x94,0x1c,0xd9,0x6a,0x50, -0x43,0x1b,0x14,0xc9,0x23,0x4d,0xb8,0xbe,0x0d,0x0e,0x45,0x7e,0x26,0x58,0x60,0x03,0x23,0x91,0x9a,0x09, -0x37,0xb5,0xc1,0xa9,0x7e,0x5b,0x88,0x38,0x90,0x68,0xcb,0x91,0xfb,0xc6,0x33,0x86,0x7c,0x20,0x66,0xbb, -0x11,0x5a,0x5c,0x75,0x2f,0xdb,0x58,0xc6,0xfe,0x41,0x6b,0x37,0x69,0x0a,0xc3,0xa4,0x6e,0xa1,0xb9,0x82, -0xc8,0x8b,0xaf,0xc7,0x0e,0x1a,0x99,0x09,0x77,0xfa,0x9f,0x39,0xf6,0x26,0x31,0xdc,0xa9,0x9b,0x6a,0xc0, -0xe1,0x35,0xa1,0x99,0x9b,0x5f,0xed,0xec,0x6c,0x47,0xf2,0x3a,0xdc,0xea,0x4e,0xf4,0xf0,0xc0,0x8e,0xe3, -0x31,0x32,0xf0,0x6b,0x81,0xde,0x01,0x4d,0xd3,0x45,0x5d,0xf1,0x00,0x5f,0x21,0xc7,0x75,0x5d,0x87,0x41, -0x9c,0xde,0x38,0x9a,0x70,0x03,0xad,0x9e,0x1c,0x37,0xb7,0xbf,0x9f,0x7e,0x24,0x23,0x7f,0xb7,0x5e,0x59, -0x82,0xbc,0x62,0x59,0x8b,0xc0,0x11,0x02,0x23,0xe3,0xd0,0xc4,0xe6,0x88,0xdb,0x3a,0xd2,0xe3,0x3a,0x42, -0x2e,0x38,0x28,0xd1,0x5d,0x66,0xd2,0xb3,0x90,0xee,0xae,0x2a,0x26,0x4a,0x81,0x57,0x70,0x99,0xb7,0xf6, -0xd5,0x66,0xdc,0x1e,0x30,0x0e,0x82,0x95,0x99,0x90,0x7f,0xc0,0x4d,0x84,0x48,0x12,0x61,0x9f,0x55,0xea, -0x02,0x7d,0x66,0x1a,0x36,0xac,0xe8,0x29,0xea,0x96,0x89,0x6d,0x0c,0x0c,0xda,0x1b,0x1a,0xf7,0x06,0x6b, -0xf1,0xbb,0xba,0x44,0x25,0xbf,0x73,0x3b,0x57,0x0d,0x11,0x9b,0x2b,0xa5,0x2b,0xbd,0xfb,0x47,0x1b,0x77, -0xff,0x68,0x4d,0x74,0x46,0x6b,0xb0,0xb3,0x36,0x6b,0x28,0xf4,0x1a,0x6d,0x77,0xf7,0xca,0xdd,0x93,0x9f, -0x72,0x78,0xac,0x77,0x65,0x33,0xce,0xf4,0xf9,0xf6,0x97,0xb9,0xb9,0xc6,0xa3,0xbe,0x1a,0x68,0x75,0x9a, -0x97,0x34,0x91,0x4f,0x7e,0xc8,0x8a,0x07,0x2b,0x65,0x26,0x7c,0xde,0xba,0x20,0xc7,0x85,0x79,0x42,0xfb, -0x82,0x4f,0x49,0xb8,0x6d,0xd9,0x2d,0x83,0x4b,0x4d,0x46,0xe6,0x16,0x9c,0xca,0x40,0xe9,0x40,0x9d,0x17, -0xf8,0x6d,0x8f,0xd6,0xa2,0x48,0xae,0x45,0xde,0x04,0x92,0x60,0xe2,0x7b,0x68,0xa3,0x3d,0x42,0x3b,0x6d, -0x1f,0x25,0x45,0x28,0xe7,0x69,0x77,0xa3,0x26,0x9a,0x71,0xb2,0x21,0x71,0x33,0x00,0xb0,0x82,0xd8,0x06, -0xae,0x3c,0x30,0x58,0xcb,0xa9,0x43,0x9c,0x38,0xa5,0xd4,0xbe,0x0b,0x95,0xc3,0x35,0x16,0xaa,0x87,0xed, -0x0b,0x1a,0x48,0xd1,0xaf,0x30,0x3b,0x08,0x2a,0x3e,0x1d,0xe4,0x2f,0x14,0xc2,0xc7,0xd7,0x89,0x16,0x9b, -0x41,0xad,0xad,0xc2,0x33,0xd5,0x89,0x10,0x60,0x96,0x64,0x88,0xdd,0xeb,0x82,0x18,0x09,0xcd,0x82,0xc6, -0x24,0x41,0x1a,0xd0,0xbf,0x6c,0x5c,0x34,0x21,0x69,0xd2,0x75,0xf3,0x0a,0x1d,0x8f,0x92,0x38,0xa9,0xe5, -0xb5,0x48,0x9c,0xe4,0x5d,0xe7,0x22,0x26,0x99,0xb6,0x50,0x01,0xc9,0xd5,0xc1,0x90,0x98,0xb4,0x5d,0xee, -0xfd,0x61,0x89,0x2e,0xed,0xb9,0x48,0x10,0x36,0xb4,0x10,0xf6,0xfb,0xef,0xc2,0xfc,0x73,0xee,0x0f,0xab, -0x68,0xf3,0x6e,0xfd,0xb9,0xb8,0x92,0xfd,0x08,0x97,0xe6,0x20,0x79,0x86,0x0e,0xbd,0x50,0xe8,0x8a,0x88, -0xb6,0x70,0xf7,0xb8,0xa5,0xe3,0x06,0x76,0xfc,0xdb,0x2c,0x9e,0x42,0x7a,0x15,0x0b,0xda,0x2e,0xd6,0x67, -0x42,0xb7,0x2b,0xa1,0x5b,0x08,0x3d,0xd7,0x38,0x7b,0x0b,0x5f,0x26,0xef,0x30,0xf0,0xb1,0x00,0x31,0xd2, -0x68,0x33,0x7c,0x53,0xe2,0x8a,0x7a,0x92,0x15,0x3c,0x79,0xb3,0x8c,0x27,0xef,0xfc,0x37,0x95,0x3c,0xe9, -0xfb,0xef,0x56,0xf0,0xa4,0x6f,0xe3,0x09,0x0e,0x50,0x9d,0x44,0x24,0xb0,0x6f,0x63,0x07,0xc2,0x9b,0x60, -0xef,0x34,0x3e,0xf4,0xc5,0x57,0x99,0xe4,0xdf,0x4a,0x24,0x6b,0x6f,0xb8,0x82,0xe8,0xdf,0x96,0x11,0xfd, -0x93,0xff,0x5b,0x25,0xd1,0x1f,0xfc,0x9f,0x56,0x10,0xfd,0xc1,0x4a,0x34,0xf7,0x2c,0x93,0x2e,0xa8,0xf9, -0x60,0x25,0x9a,0x01,0x5b,0x39,0xd8,0x4f,0x1a,0xd1,0x1f,0xc4,0x57,0x99,0xe8,0x4f,0x25,0xa2,0xf3,0x17, -0x5f,0x41,0xf3,0xa7,0x65,0x34,0xdf,0xf8,0x9f,0x2a,0x69,0x7e,0xeb,0xdf,0xac,0xa0,0xf9,0xed,0x12,0x9a, -0xb9,0x0f,0x51,0xe5,0x1e,0xab,0x5a,0x42,0x33,0x03,0xd2,0x80,0xbf,0xd1,0x68,0x7e,0x2b,0xbe,0xca,0x34, -0xbf,0x2a,0xd1,0xfc,0xbc,0x40,0xf2,0xab,0x65,0x24,0xbf,0xf0,0x5f,0x55,0x92,0xfc,0xd1,0x7f,0xb1,0x82, -0xe4,0x8f,0x25,0x92,0xbf,0xba,0x6e,0xb5,0xb0,0xa8,0x99,0xd1,0x6c,0x3f,0xe6,0x3f,0xdf,0x22,0xc4,0xb5, -0x0d,0xe2,0x1b,0xf9,0x07,0x20,0x5a,0x56,0x88,0x03,0xca,0xb9,0xb6,0xe4,0x3c,0xd6,0x6a,0x6f,0xb5,0x6c, -0x10,0xdf,0x69,0xb5,0x5f,0xdb,0x20,0xda,0x0a,0xf5,0x17,0x1a,0xdb,0x3f,0x8a,0xaf,0x32,0xdb,0x9f,0x97, -0xd8,0xae,0xd4,0x6d,0x04,0xdb,0x9f,0x2f,0x63,0xfb,0xa5,0xdd,0xd1,0x81,0xd2,0xb6,0xad,0xcd,0x60,0xe5, -0x9f,0xba,0xdd,0xcb,0x66,0x52,0xdc,0xd6,0x2e,0x71,0x0b,0xbc,0x6c,0x0e,0xcb,0xe9,0x43,0x4c,0xef,0x97, -0xd3,0xfb,0xbc,0xe7,0x9d,0xfa,0xcf,0x2b,0xbb,0xfa,0xa5,0x7f,0xba,0xa2,0xab,0x5f,0x56,0x8c,0xee,0x4b, -0xb4,0x78,0xf6,0xf0,0xff,0xa1,0xf8,0xbf,0xcf,0x53,0xf6,0x65,0xc5,0x28,0x2f,0xa0,0x37,0xb5,0x1a,0x5e, -0x57,0xa7,0x62,0xd5,0xa7,0x5a,0x17,0xbd,0x14,0x5f,0xe5,0x2e,0x7a,0x5d,0xea,0x22,0xa5,0x4a,0x24,0xba, -0xe8,0xf5,0xb2,0x2e,0x3a,0x5e,0xdd,0x45,0x57,0xb0,0x8f,0x75,0x8f,0xcb,0x5d,0x74,0x8c,0x5d,0x74,0x5c, -0xee,0xa2,0x63,0xec,0xa2,0xe3,0x72,0x17,0x1d,0xcb,0x2e,0x7a,0xe6,0xbf,0xae,0xec,0xa2,0x33,0xff,0xd9, -0x8a,0x2e,0x3a,0xab,0xe8,0xa2,0x63,0xd1,0x45,0xc7,0xa2,0x8b,0x8e,0x65,0x17,0x9d,0x95,0xe7,0x40,0x8b, -0xe6,0xc0,0x33,0x8d,0xc1,0x67,0xe2,0xcb,0x64,0xf0,0x5a,0x47,0x59,0x43,0x0e,0x5d,0x78,0x86,0x58,0x7d, -0x92,0xad,0x12,0xf5,0xd0,0xc1,0x92,0x8c,0x07,0xe8,0x98,0x9a,0x6d,0x70,0x4c,0xad,0x90,0x55,0xe0,0x58, -0x88,0x2a,0x8f,0x7b,0xa9,0xbd,0x9c,0xd0,0x1a,0xc0,0x67,0x63,0x6b,0xbe,0x50,0x5f,0x04,0x00,0xa1,0x0d, -0x7e,0x15,0xa7,0xb5,0xfd,0x5d,0xf9,0xa8,0x0b,0x03,0xc9,0x85,0x7f,0x52,0xa9,0x19,0x9e,0x46,0x13,0x5b, -0xee,0xd8,0x8f,0xe4,0x05,0x68,0x6f,0x1f,0x4e,0xbe,0x91,0xba,0x7c,0xec,0xed,0x77,0x53,0xbe,0xbf,0xd0, -0x55,0xc7,0x1b,0xd7,0xe3,0x5d,0x0d,0x96,0x2e,0x1d,0xae,0x27,0x40,0xa0,0x7b,0x1d,0x6f,0xd0,0x98,0xec, -0xea,0xe5,0x05,0x48,0xbb,0x20,0x75,0x34,0x7c,0xa1,0x48,0xcf,0x3f,0xd5,0x10,0x3b,0x3b,0xad,0xa2,0xd8, -0x12,0x4e,0xa7,0xbd,0x80,0x1b,0x8e,0xa7,0xc1,0x15,0x1c,0xfa,0x71,0x4b,0xeb,0x14,0x93,0xda,0x8d,0x5a, -0xd2,0x9c,0x1f,0x36,0xf7,0x7b,0xcd,0xfd,0x0e,0xfc,0x72,0xa5,0x57,0x5b,0x8b,0xac,0xc8,0x98,0xb7,0xa3, -0xca,0xbe,0x9a,0xd9,0xca,0xca,0x9e,0xea,0xce,0x34,0x66,0x00,0x87,0x77,0x47,0xe6,0x4d,0x8e,0x9b,0xbf, -0xb2,0x09,0xa1,0x8c,0xe6,0xaf,0x2a,0x9b,0x9f,0xda,0xca,0xaa,0xe6,0xa7,0x5a,0xf3,0xb5,0x76,0x03,0xba, -0x17,0xae,0x89,0x36,0x14,0x4e,0x6c,0x12,0x2e,0x03,0x85,0x65,0x97,0x13,0x4b,0x59,0x85,0xc2,0x75,0x11, -0x85,0xb9,0xbb,0x7b,0x62,0x43,0x61,0x68,0x13,0x9f,0xad,0xbc,0x46,0xc8,0x3b,0x84,0xa5,0xac,0x42,0x61, -0x5e,0x44,0x21,0x71,0x77,0x87,0x36,0x14,0x6e,0xed,0xb2,0x39,0x03,0x89,0xdb,0x4a,0x24,0xde,0xd8,0x4b, -0x2b,0x34,0xde,0x14,0xd1,0x18,0xba,0xbb,0xb7,0x36,0x34,0xde,0x59,0x45,0x7f,0x06,0x16,0xef,0x2a,0xb1, -0xe8,0x5b,0x0b,0x2b,0x24,0xfa,0x45,0x24,0xfa,0xee,0xee,0x3b,0x1b,0x12,0xbf,0xd9,0x05,0x8b,0x2b,0x8f, -0xf3,0xf2,0x2c,0x6f,0x2d,0xad,0xd0,0xf8,0xa9,0x88,0x46,0xe0,0xee,0xfe,0x56,0x44,0x63,0x93,0x15,0x9f, -0x74,0xdc,0x60,0x2d,0xf0,0xcb,0x1e,0xf6,0x2c,0xef,0x96,0x15,0xaf,0x96,0xeb,0xb4,0xf4,0x82,0x14,0x25, -0x36,0xdd,0x59,0x8a,0xaf,0x2f,0x45,0xe3,0x15,0xf1,0x18,0x2e,0x63,0x58,0xa1,0x3f,0xda,0x92,0x81,0x4b, -0x11,0xa4,0xf0,0xb6,0x24,0x1c,0x53,0xa1,0x4a,0x01,0x33,0x37,0xb7,0x67,0x70,0x0c,0x17,0x4c,0x35,0x4d, -0x58,0xc2,0xee,0x6b,0x64,0x55,0x94,0xd6,0x9c,0x1f,0x35,0x0f,0x7a,0xa2,0x0e,0x8e,0xe1,0x84,0xcf,0x17, -0x01,0x3d,0x57,0x17,0x92,0x6f,0xc9,0x9d,0xbd,0xbb,0x44,0xf9,0x84,0x99,0x76,0x4c,0x61,0x18,0xf1,0x74, -0x91,0xc4,0x63,0x43,0x9f,0x43,0x8a,0x56,0xf3,0x67,0x54,0x7d,0x6f,0x0d,0xf4,0x72,0x0e,0xab,0x37,0xb5, -0xb6,0x95,0xe7,0x23,0xb9,0x5b,0xd6,0x0a,0xcf,0x54,0x1a,0x5b,0x68,0xb3,0x34,0xf6,0x70,0xa9,0xd1,0x01, -0x58,0x06,0xc3,0xf0,0x7f,0xf0,0x89,0x44,0xba,0xd2,0xa5,0xe0,0xd2,0x4d,0x36,0xbf,0xc8,0x7d,0xec,0x11, -0x47,0x09,0xd6,0xaf,0x00,0x45,0x4f,0x8d,0x04,0xe0,0x31,0xe0,0xaf,0xab,0x00,0x7f,0xa5,0x07,0x64,0x35, -0x77,0xcc,0xc3,0x01,0x53,0x15,0x03,0x95,0xcb,0xce,0x00,0x13,0xbf,0x66,0x05,0xc8,0x0f,0x01,0x12,0xeb, -0x46,0x84,0x4f,0x68,0x18,0x20,0x1a,0x23,0x0b,0x5d,0x67,0x0d,0x6d,0xcf,0x76,0xf7,0x6a,0xfa,0x17,0xda, -0x88,0x35,0x44,0xb9,0x5f,0xf5,0x72,0x30,0x51,0x1b,0xfa,0x46,0x4e,0xe5,0xb4,0x4f,0x8e,0x03,0x50,0xe5, -0x1c,0xcc,0x65,0x19,0xbf,0x42,0xa8,0x16,0x69,0x67,0xce,0x27,0xc2,0x65,0xd9,0xc9,0x18,0xcf,0x96,0x74, -0xe6,0x13,0x78,0x4a,0x7f,0x62,0xf4,0xe5,0x2e,0x41,0xdb,0xc0,0x7a,0x75,0xe5,0x48,0x8c,0xaa,0x1b,0x3e, -0xdc,0xe5,0xa4,0xb1,0x30,0xdd,0xa2,0x83,0x37,0x31,0x34,0xf0,0xc6,0xa4,0x7f,0x37,0xc0,0xd0,0x8f,0xb5, -0x81,0xdf,0xc6,0x83,0x10,0x7a,0x50,0xdb,0xd9,0x19,0x1c,0xf2,0x2f,0xe5,0x4b,0x8d,0x00,0x5a,0xd2,0xe9, -0x3f,0xbb,0x55,0x16,0xf6,0x77,0xb9,0x5e,0xde,0x78,0x6f,0x02,0x98,0xa8,0xf3,0x99,0xdb,0x1d,0x1d,0xe2, -0x48,0x1c,0xd5,0xfd,0xe6,0x01,0x10,0xac,0x7f,0xc8,0xf7,0xe9,0xe7,0xe9,0xbc,0x36,0xf2,0x06,0x18,0x1b, -0xc4,0xcd,0x6d,0x2f,0x4b,0xe3,0xcc,0x14,0xef,0x57,0x8e,0x37,0xa9,0x5d,0x89,0xdc,0xad,0x18,0x12,0xee, -0x5e,0xce,0xa9,0x35,0x46,0x80,0x56,0xcf,0x3d,0x3a,0xc9,0x68,0x8c,0x4f,0x5e,0xc0,0x05,0xe0,0xd9,0xf8, -0xa8,0x8d,0x1a,0x87,0x5d,0xc9,0xef,0x59,0x91,0xdf,0xbd,0x99,0xdf,0xea,0xa8,0xdc,0xa3,0x76,0xa3,0xdc, -0x1f,0x33,0xbd,0xc3,0x66,0xb0,0x00,0x96,0x61,0x66,0x87,0xcd,0x83,0xba,0xad,0x24,0x76,0x41,0xac,0xed, -0x67,0x33,0xed,0xc8,0x2b,0x0e,0xbc,0x96,0xc9,0x4e,0x6f,0x83,0x3b,0x3b,0xb2,0xef,0xf0,0x7a,0xd7,0x6e, -0xcc,0xa0,0xef,0x86,0xf0,0xb7,0x6f,0x2d,0x22,0x1e,0x0a,0xcd,0x42,0x41,0x33,0xf1,0xb8,0xa0,0xbd,0x10, -0xbf,0x1a,0x96,0xcb,0x60,0x43,0xa8,0xb0,0x68,0x2b,0xf3,0xdc,0x2c,0x82,0xe3,0x0a,0x1b,0x48,0x69,0x64, -0xd9,0x0a,0xd0,0xa3,0xa9,0x59,0x20,0x68,0x8e,0x04,0x5e,0xf6,0x22,0xf4,0x82,0x5a,0x2e,0x82,0xad,0x54, -0xa1,0x25,0x5e,0x36,0xf3,0x42,0x94,0x40,0x6a,0x97,0x8b,0x25,0x1a,0x12,0x32,0x40,0x60,0xd5,0xd1,0x80, -0x76,0x86,0xa5,0xc5,0x59,0x5d,0xb1,0xa8,0x1b,0x6c,0xea,0x01,0x48,0x03,0x01,0xe1,0x57,0x00,0x9d,0xa6, -0xa3,0x34,0x80,0x2c,0x42,0x51,0x49,0x41,0x7a,0x66,0x3c,0xf2,0x5b,0x72,0x6f,0xe7,0xed,0xd6,0x70,0xb8, -0xa7,0xa7,0xef,0xaa,0xa5,0xa5,0xdd,0xd2,0x2a,0x90,0x6a,0xba,0x96,0x8c,0xca,0x6d,0x3e,0x5c,0xb2,0x43, -0xa7,0x65,0xfa,0xf2,0x37,0x4f,0xdd,0x43,0x18,0xd0,0x2d,0x89,0x8c,0x7a,0xa6,0xda,0x4d,0x04,0x25,0x3a, -0xcb,0x4f,0x4f,0x69,0xa9,0x17,0xc8,0x01,0xa4,0x08,0xfe,0x54,0x7c,0x2e,0x0a,0x55,0x03,0x7c,0xd8,0x41, -0xd8,0x8e,0xf4,0x91,0x90,0xf4,0xb4,0xc1,0x1c,0xa0,0xd7,0x62,0x0f,0xba,0x09,0xfe,0xf6,0xe1,0x6f,0xa0, -0x43,0x8e,0x7a,0xda,0xf8,0x42,0xc8,0x11,0xfa,0x51,0x87,0xbf,0xf3,0x22,0x64,0xd0,0x33,0x07,0x95,0xc8, -0x5e,0x49,0x13,0x62,0x60,0x70,0xce,0x23,0x7b,0x6c,0xe0,0x9f,0x54,0x1c,0xa5,0x77,0x75,0x7f,0xbb,0x25, -0x1d,0x24,0x6a,0xa7,0x91,0xb8,0x09,0xe7,0x42,0x58,0x3b,0x86,0x7e,0x02,0xff,0xf6,0xfd,0xc8,0x63,0x74, -0xd0,0xe8,0x38,0x86,0x81,0x91,0xe6,0xaf,0xe3,0xd2,0x04,0x9c,0x9b,0x50,0x1d,0x11,0x63,0x80,0x28,0xa0, -0x2a,0xc6,0xd8,0x50,0x40,0x59,0x8c,0x61,0xa1,0x80,0xba,0xca,0xe3,0x6d,0xe9,0x20,0x1c,0x88,0xe9,0xa4, -0x9d,0x6e,0x57,0x9e,0x84,0x99,0xee,0x82,0x35,0x3a,0xda,0x75,0xeb,0xd3,0x4a,0x75,0x0f,0x65,0x92,0xae, -0x6f,0xb4,0x7c,0x18,0x62,0x1f,0x7d,0x06,0x2f,0x47,0xc4,0xcb,0x94,0x78,0x39,0x5f,0xc6,0x4b,0x25,0x4f, -0x2b,0xf2,0x32,0x01,0xde,0x25,0xd4,0x1f,0x13,0x18,0x4f,0xd8,0x23,0x13,0x18,0x53,0x7f,0x38,0x2f,0xcb, -0x96,0xfd,0x16,0x5e,0xf2,0x00,0x5e,0x9b,0x97,0x34,0x8a,0xad,0x73,0x6d,0x4b,0x71,0x93,0xf4,0xbc,0x7c, -0xa5,0xc3,0x29,0x97,0xa3,0x70,0x03,0x8a,0xb3,0xfb,0x50,0x3c,0x8a,0x6f,0xed,0x3e,0xae,0xf9,0x00,0xef, -0xb1,0xaa,0x05,0xfa,0x6c,0x28,0x68,0xa1,0x98,0x0b,0x2e,0x3e,0x33,0xb3,0x7b,0x5c,0xf2,0x47,0x2a,0x35, -0xd7,0xd2,0xa5,0x4a,0xbc,0xc0,0x4b,0x14,0x3c,0x6e,0xb7,0x50,0xad,0x4e,0xc8,0xaa,0xee,0xd0,0x4f,0x6d, -0xb2,0xf6,0x49,0x44,0xea,0x66,0x3c,0x37,0xde,0xe4,0xc9,0xe5,0x6d,0x75,0x25,0xe5,0x03,0xad,0x78,0xa3, -0x5f,0x5b,0xd7,0x76,0xc9,0x9d,0x55,0xd3,0xa9,0x4f,0xf8,0xae,0x88,0x76,0x03,0xc1,0x00,0x3a,0x04,0x55, -0x7a,0x34,0xdf,0xc1,0xa8,0xca,0xa3,0xbb,0xff,0x45,0xb5,0xb0,0x26,0xaa,0xe6,0x91,0x26,0xab,0xd5,0x2a, -0xdf,0x55,0x9a,0x7e,0x69,0x69,0x4b,0x56,0xba,0x63,0xf2,0x0c,0x99,0xdb,0x90,0xa7,0x57,0x70,0x65,0x1b, -0x9f,0x01,0xaf,0xf1,0xae,0xb2,0x3e,0x77,0xbb,0x93,0xc3,0xb8,0x97,0x57,0x83,0xc8,0x03,0xbd,0xb5,0x3b, -0x55,0x5f,0x67,0xb2,0x80,0x65,0xbb,0xd8,0x09,0x47,0x71,0x5d,0xd7,0x8f,0xe3,0x64,0x38,0xc4,0x19,0x40, -0x3b,0x3b,0xcb,0x2b,0x2e,0x56,0xda,0x28,0x57,0x59,0x2f,0x54,0xb9,0x58,0xa6,0x9b,0x89,0x9c,0xb6,0x59, -0xad,0x1b,0xda,0x12,0xf8,0xe1,0x57,0xaa,0x3e,0xd0,0xe5,0x13,0xbb,0xf2,0x35,0xcc,0x2c,0xe3,0xbe,0x6f, -0x76,0x6b,0x65,0xe7,0xb1,0x52,0x1e,0x2d,0x16,0x42,0xcb,0xd6,0xbf,0x5b,0x2c,0xd3,0x0e,0x36,0x14,0x40, -0x74,0x8c,0x2b,0xfd,0xb6,0x4b,0x5d,0x50,0xe1,0x45,0x43,0x42,0x17,0xf4,0x58,0x91,0x94,0x8a,0x2c,0x9e, -0x8b,0x61,0x26,0x62,0x38,0xea,0x8e,0xe3,0x61,0x25,0x10,0xd7,0xfa,0x0a,0x85,0xd9,0x85,0x2b,0x16,0xfa, -0x49,0x30,0x8f,0x86,0x41,0x06,0x4b,0x18,0x6a,0xd9,0x1e,0x0f,0xf1,0xda,0x2d,0xbc,0x29,0x1d,0x4f,0x06, -0x09,0x2e,0x7a,0xcd,0xdd,0xad,0x1f,0x22,0x98,0x6a,0xf1,0xc7,0x3d,0xc0,0x66,0x65,0x83,0x36,0x2c,0xb5, -0x6c,0x0c,0xb9,0x4b,0x6a,0xad,0x86,0x29,0xe4,0x1a,0x08,0x2f,0x8c,0xee,0x28,0x69,0x59,0xdf,0xa7,0x03, -0x94,0xe9,0x8b,0x36,0xb7,0x7f,0xff,0xbd,0xa6,0xcc,0x04,0x92,0x7c,0x89,0x10,0xa2,0x26,0x5a,0x26,0x70, -0x42,0x70,0xcd,0x70,0xfe,0x1a,0x0e,0x31,0x36,0xa4,0x88,0xaa,0x60,0x43,0x91,0x74,0x74,0xad,0xd2,0x9b, -0x65,0xd8,0xa1,0x76,0x8e,0x7e,0x8a,0xcc,0x5b,0x77,0xbb,0xb0,0x39,0x47,0xf9,0x29,0x32,0xf5,0xb6,0xdb, -0x96,0x66,0x19,0xa3,0x2f,0xda,0x6e,0x94,0xcf,0x22,0xe5,0x94,0x1d,0x06,0x44,0xcf,0x44,0xa6,0x85,0xd6, -0x11,0x12,0x50,0xfa,0x75,0xdf,0xd9,0xd9,0x06,0xac,0x1d,0xc7,0x64,0xa3,0x56,0x3b,0xdb,0xf9,0x49,0x19, -0x9d,0x4e,0x4e,0xd9,0xd8,0x61,0xe3,0xae,0xe6,0xbd,0x51,0x4a,0x11,0x13,0x63,0xe1,0xd7,0x44,0x85,0x70, -0x7b,0x12,0x1d,0x2a,0xda,0x16,0xfa,0xd9,0x8e,0x0d,0x9f,0x82,0xe9,0xc1,0x67,0xe2,0x44,0x22,0x87,0xe5, -0x1a,0xe1,0xd1,0x72,0x8d,0x70,0x69,0xd2,0x22,0xad,0x71,0x42,0x94,0xa0,0x01,0xea,0xae,0x34,0x7a,0x32, -0x93,0x69,0xfb,0x2a,0xc7,0xa9,0x10,0xce,0xcc,0xef,0x30,0xb7,0x73,0x7e,0xb1,0xc8,0x45,0x7f,0x70,0x26, -0x2c,0x18,0x5b,0x4a,0x59,0x1f,0xd9,0x5c,0x06,0x54,0x61,0x73,0x3a,0x4b,0x47,0xb5,0xf4,0x3c,0xc6,0x18, -0x97,0x06,0xe1,0xe9,0x2c,0x45,0x15,0xd9,0x70,0xf0,0x94,0x11,0xc0,0x18,0xaa,0xcb,0xcc,0x52,0xbe,0x5c, -0x1f,0x6f,0x9b,0x9d,0x8c,0x73,0xa7,0x34,0x6d,0x2d,0x3d,0x4f,0x4b,0x94,0x89,0xa3,0xcd,0xd8,0xb8,0x1a, -0x4f,0x40,0x28,0xe1,0x50,0x51,0x69,0xa6,0x49,0x1b,0xa5,0x6e,0x7b,0xde,0x25,0x25,0x4a,0xe0,0x30,0x59, -0x53,0x32,0xef,0x75,0x44,0xbc,0x24,0x40,0xc5,0x20,0xd0,0x35,0x57,0x08,0x88,0xf0,0xc4,0xa2,0xa8,0x64, -0xd1,0x15,0x62,0x6b,0x21,0xe8,0xaf,0x47,0xca,0x06,0x14,0x14,0xad,0xab,0xff,0x2a,0x24,0xdc,0xa7,0x37, -0xec,0x46,0xd8,0x7f,0x67,0x8a,0x74,0x67,0x4b,0x5f,0xfe,0xf9,0x22,0x5a,0x42,0x3c,0x5c,0x5c,0xab,0x88, -0xc7,0xd3,0x76,0xa0,0x2d,0xbb,0xda,0x65,0xc8,0x34,0xe7,0x71,0xef,0x82,0x8a,0x03,0x42,0x9c,0x93,0xce, -0xab,0x35,0x35,0x72,0xf9,0xfd,0xeb,0x57,0x67,0x97,0x67,0x70,0x24,0x7f,0xf6,0xf4,0xf4,0xf2,0xe9,0x2f, -0x4f,0x5f,0x9d,0xbd,0xc5,0xf6,0xee,0x6f,0x6f,0x16,0xdf,0xd3,0xde,0x4c,0x5c,0xd9,0xe3,0xa5,0x0b,0xb0, -0xab,0x2f,0xed,0x13,0xb5,0xb4,0x8f,0xf1,0xf2,0x0e,0x55,0xa1,0xd6,0x6f,0x77,0x70,0x38,0x96,0x6b,0xfc, -0x00,0xd6,0xf8,0x1c,0x1f,0xa7,0x5e,0xc3,0xe8,0x90,0xe3,0xf3,0xc1,0x45,0x13,0xa3,0xc9,0xa4,0xd3,0xe0, -0x2a,0xec,0x39,0x4e,0xc7,0x69,0x3a,0x75,0x33,0xd5,0xf5,0xe8,0x7b,0xc4,0xc8,0xba,0x0b,0xad,0x27,0xe1, -0x00,0x90,0x1b,0x62,0x8a,0x67,0xa5,0xc0,0xf6,0xf6,0x85,0xf7,0xda,0xb5,0xc6,0x29,0x5b,0x2f,0xc5,0xc5, -0xa1,0x89,0x71,0xd3,0xf8,0xc6,0x61,0xf7,0xc0,0x65,0x9d,0x64,0x1b,0x0d,0xce,0x44,0x0d,0xce,0x8c,0x9e, -0x14,0x81,0xc5,0xdf,0xb3,0xd1,0x74,0x4d,0xfa,0x60,0xfb,0x12,0x93,0x55,0x7a,0x21,0xb4,0x32,0x29,0xb3, -0x4c,0x4a,0xa4,0xce,0xa1,0x40,0x68,0xe6,0x6e,0xab,0xb9,0x0f,0xb3,0x12,0x4f,0xa4,0x6f,0x99,0x78,0x36, -0x0d,0x7b,0x2b,0xd8,0x62,0x6d,0xe1,0xaa,0xb2,0x55,0xa7,0xee,0xac,0x7c,0x6b,0x2f,0x5e,0xd9,0x17,0xc6, -0x2a,0x62,0xf8,0xc0,0x2b,0x5a,0xb5,0xf3,0x25,0xc6,0x6a,0x6c,0x9a,0x1f,0x77,0xad,0xa6,0xa8,0xd5,0x2c, -0xcf,0xe3,0x36,0x28,0x5b,0x2b,0xad,0x0b,0x52,0xfd,0x64,0x91,0x9a,0x27,0x8b,0xc0,0x72,0xb2,0x48,0xc5, -0x65,0x02,0x65,0xed,0xa1,0x16,0x8b,0x0d,0xaf,0x36,0x9f,0xcc,0x2b,0x94,0x73,0xce,0x96,0xf0,0x38,0xd7, -0x49,0xac,0x34,0x25,0x94,0xad,0xd1,0xe8,0xef,0xcc,0xf0,0x43,0x78,0x3d,0xd2,0xef,0x53,0x72,0x5e,0x85, -0x4d,0x8e,0xa7,0x97,0xc0,0x9d,0x45,0xfe,0x6c,0xde,0xc4,0xff,0x8e,0xc6,0x63,0x8a,0x50,0x6a,0xd5,0x9c, -0x93,0xe6,0xfe,0xd2,0x12,0xc0,0x6f,0xee,0xbb,0x2b,0x71,0x37,0xcd,0x79,0xd9,0x17,0x22,0x06,0xb3,0xe5, -0x41,0xf3,0x06,0x66,0xf7,0x6b,0x7a,0xdb,0x55,0xbe,0x10,0xa7,0x71,0x1a,0x51,0x60,0xa6,0xad,0xa0,0x9f, -0xc6,0xe3,0x59,0x16,0x76,0xb7,0x50,0xa4,0x04,0x87,0xd0,0x2d,0x12,0x0b,0xe1,0x0f,0x61,0xca,0x81,0x3f, -0xd9,0x7c,0x03,0x7e,0x69,0x6e,0x13,0x79,0xb8,0x2a,0x17,0x23,0xd0,0xb1,0xc2,0xbf,0xc8,0x93,0x4f,0x2f, -0x06,0xb5,0x72,0xdb,0x95,0x0f,0x67,0x5d,0x15,0x85,0x29,0x29,0x78,0xe3,0x63,0x41,0x87,0x58,0xe2,0x31, -0xd6,0x33,0x4e,0xb9,0xbc,0xca,0x27,0xb3,0xe1,0x0f,0xd1,0x47,0xe3,0x2e,0x8b,0x48,0x85,0x5f,0x16,0xa9, -0xd0,0x6b,0xb1,0xfb,0xfe,0xeb,0x8c,0x1e,0x3d,0x43,0x94,0xf9,0xc0,0x4d,0x75,0x59,0x64,0xa9,0x16,0xdd, -0x99,0x17,0x30,0xf2,0x6a,0x1c,0xd2,0x4b,0x8b,0xaa,0xb7,0x87,0xa3,0xe7,0xe8,0x7f,0x01,0x1d,0xb5,0x8f, -0x14,0x0a,0x52,0x03,0x00 +0xa2,0x8f,0xc2,0x9b,0x0d,0x72,0xc5,0xd3,0x63,0xe2,0xdb,0xda,0x01,0x35,0xdf,0xfc,0xef,0xc9,0x7d,0x63, +0x45,0xeb,0x87,0x30,0x22,0xb1,0xe2,0x74,0x26,0x7e,0xc8,0x16,0xf2,0x95,0x7e,0x10,0xce,0xe1,0x0e,0x22, +0x9a,0x68,0xe5,0x4d,0x00,0x47,0x44,0x5b,0x0b,0x59,0x19,0x10,0xcf,0xc8,0x33,0x31,0x1a,0x22,0xb8,0x85, +0xd9,0xe1,0x15,0x19,0x2b,0xb7,0x80,0xff,0xcf,0xcc,0x1d,0x44,0xa9,0x20,0x93,0x17,0x67,0xda,0x38,0x59, +0x0a,0xbb,0xf1,0xfe,0xf8,0xfb,0x63,0x58,0x02,0x32,0x18,0xd3,0x1f,0xbe,0x00,0xd3,0x45,0x3b,0x4b,0x19, +0xff,0x9c,0x2e,0xf8,0xf9,0xf3,0x93,0xd2,0xa3,0xcf,0xc3,0x1f,0x3c,0xff,0x74,0x0c,0x6b,0x3b,0xbe,0x37, +0xd1,0xfc,0xc5,0xb8,0x07,0x69,0x72,0xe5,0xab,0x25,0x9d,0x27,0x8d,0x63,0x54,0x1c,0x4f,0xbe,0x87,0x2d, +0xe8,0xa7,0xa9,0x3c,0xf5,0x32,0xa3,0xa4,0x38,0x2d,0x24,0xe5,0x05,0xa9,0x0e,0x9f,0xfd,0xfe,0x3b,0xfe, +0x6b,0x9a,0x90,0xa9,0xab,0x20,0x3a,0x2b,0x60,0xcd,0x4f,0xbe,0x71,0xc1,0xa5,0x89,0xef,0x10,0x45,0xae, +0x63,0x6c,0x9e,0x28,0x9e,0xa5,0xb0,0x20,0xf3,0x32,0xa7,0x16,0x6c,0x74,0x44,0x73,0x9b,0x44,0x19,0xac, +0x65,0xcd,0x8d,0x45,0x23,0x3f,0x8b,0x13,0x0e,0x87,0xad,0xea,0xc8,0x7b,0x22,0x30,0x11,0x4b,0x78,0x2b, +0x04,0x5a,0x4e,0xc8,0xe1,0x49,0x1e,0x5d,0x40,0x38,0x3c,0xb1,0x39,0x8d,0x12,0xb7,0x08,0x11,0x4b,0x44, +0x44,0xe1,0x71,0xbb,0x59,0x6f,0xd5,0x99,0x84,0x08,0xe6,0xc6,0xb2,0x72,0x87,0xd1,0x64,0x3c,0x18,0x08, +0x9c,0xb4,0xde,0x0f,0xc9,0x15,0x0c,0x06,0x7e,0x2d,0xad,0x60,0x58,0x89,0xea,0xf0,0xfc,0x8d,0x5f,0x99, +0x75,0x08,0xc6,0xe6,0xb4,0xf5,0x34,0xb1,0x00,0x9d,0x2c,0xe0,0xa2,0xb5,0x11,0xa5,0x93,0x27,0x18,0x88, +0x66,0x8a,0x2e,0x34,0x60,0x46,0xc5,0x2c,0x87,0xdc,0x10,0x2f,0x64,0x38,0xc3,0x30,0xc6,0x19,0xef,0x4e, +0x6a,0xe0,0x50,0x44,0x9c,0x5a,0x11,0xa9,0x33,0x8a,0xa9,0xaa,0x5f,0x8d,0xf3,0xbb,0x90,0xb8,0x35,0xb0, +0xb3,0x04,0xb5,0x69,0xad,0xc8,0xb0,0x71,0xf0,0x49,0xb0,0xeb,0x2e,0x1a,0xa0,0x3f,0x39,0x72,0x92,0xd3, +0xc9,0xf0,0x5a,0x71,0x8f,0x53,0x43,0xc7,0x03,0x77,0xcc,0x77,0xc1,0x24,0x1c,0xf3,0xa6,0x0a,0x57,0x3b, +0xf8,0x9d,0x1f,0x21,0x90,0x12,0xa7,0x6e,0xde,0x65,0x04,0x56,0x62,0xb3,0x25,0x10,0x68,0x92,0x3c,0x06, +0xe6,0xc1,0x59,0x1d,0x76,0x68,0x8a,0x4e,0x20,0x38,0x78,0xec,0xeb,0x70,0x32,0xab,0xb9,0x0b,0x2f,0x52, +0xc6,0x9d,0xc3,0xa2,0x5a,0x5c,0x04,0x51,0xd7,0x92,0x9c,0x1c,0xbd,0xad,0x3b,0x03,0x33,0x3d,0x84,0xad, +0x42,0x8e,0x90,0xa7,0x90,0x41,0xcb,0x00,0x7e,0x88,0x26,0x1f,0xaa,0x80,0x34,0x01,0x1a,0x99,0xc4,0x9f, +0x60,0x17,0xa4,0x86,0xb8,0xea,0x11,0x75,0x4b,0xba,0x71,0x00,0xcb,0xe1,0x5c,0xc5,0x50,0xa1,0xa7,0xb9, +0x1a,0x5e,0x47,0x5c,0x15,0x74,0x31,0x87,0x3e,0x0b,0x6f,0xa6,0xc8,0x80,0x8d,0xe6,0x14,0xa6,0x6d,0x63, +0x48,0x07,0x66,0x0f,0xc3,0x15,0x07,0xfb,0x61,0x37,0xa8,0xd7,0x65,0x94,0x9b,0xaf,0x30,0xd8,0x23,0x7b, +0xc5,0x73,0xbb,0x5f,0xd5,0x12,0x61,0x06,0xce,0x8c,0xb6,0x5c,0x50,0x2d,0xdd,0x89,0xd6,0x36,0x70,0x20, +0x41,0x4d,0x27,0x1c,0x05,0xd4,0xfe,0x65,0x04,0x77,0x41,0xa8,0x8c,0xcc,0xcf,0x31,0x96,0x6c,0x2d,0xa8, +0xb7,0xd1,0xcc,0x31,0x57,0xc1,0x94,0x74,0x31,0xa3,0xf2,0xb7,0x02,0x2c,0xa6,0x77,0xd5,0x9d,0x7a,0x3e, +0x91,0xe3,0xde,0xf6,0x82,0x55,0x7c,0xe4,0x5a,0xed,0x6d,0x0c,0xad,0x05,0x0b,0x1d,0x70,0x3c,0xf8,0x58, +0x60,0x7f,0x04,0x29,0xab,0x32,0x1f,0x60,0xff,0x64,0xd6,0x8b,0x4f,0x38,0x4c,0x46,0x1c,0xc5,0xfd,0x69, +0xab,0xae,0x52,0xe5,0xc3,0x23,0xc5,0xc5,0xd6,0x3b,0xa9,0xd8,0x3d,0x41,0xa1,0x6b,0x90,0x66,0x47,0x67, +0xce,0x20,0x1c,0xbf,0xe1,0xbd,0xb6,0x24,0xa5,0x60,0xa5,0xf2,0x14,0x17,0x00,0x41,0x30,0x50,0x13,0xe6, +0xde,0x1a,0xf2,0x4a,0x6e,0x60,0x21,0x5d,0xab,0x16,0x07,0x98,0xde,0xbc,0xa1,0x35,0x3c,0x94,0x13,0x48, +0xaf,0x10,0xce,0xdd,0xe5,0xfa,0x9c,0x47,0xe2,0x54,0x60,0xeb,0xb5,0xf0,0xc0,0x87,0xd3,0xb4,0x28,0x94, +0x1a,0xe6,0xd7,0x62,0xd1,0x7e,0x1d,0x7c,0x14,0x12,0xd6,0x0d,0x0c,0x4e,0x2b,0xab,0x4a,0xb0,0x3b,0x50, +0x3e,0x22,0x6e,0x83,0xbb,0xad,0x56,0xbd,0xdd,0xda,0x86,0xe3,0x95,0xde,0xa4,0xec,0x7c,0x5c,0xb9,0xa5, +0xbe,0xb5,0x4b,0xcf,0x5b,0x5a,0x5f,0x2b,0x89,0x5a,0xb0,0x5e,0x97,0xe7,0x7d,0x9c,0xc1,0x28,0xaa,0xe8, +0x62,0xad,0xd6,0x26,0x07,0x47,0x6a,0x40,0xdf,0x35,0x04,0x7e,0x0e,0x3b,0x4e,0xa2,0x5d,0xc5,0xf1,0xf2, +0x4e,0xb5,0x96,0x43,0xc6,0xdb,0x0b,0x6a,0x1d,0x89,0x3e,0x2c,0xb4,0x81,0x23,0xf9,0x85,0xbe,0x2d,0xf2, +0x7e,0xc2,0xa7,0x9c,0xa3,0x78,0x1c,0x27,0x27,0x2f,0x9f,0x1b,0x3d,0x75,0x85,0x89,0xf6,0xd9,0x15,0xe2, +0xec,0xd2,0xa6,0xe1,0x95,0x28,0x6f,0x67,0xf1,0x84,0x5f,0x10,0x25,0x8b,0x27,0x3a,0x4e,0xdc,0x08,0xad, +0x33,0x86,0x0c,0x93,0xd2,0x49,0x84,0x79,0x3b,0x0a,0xc3,0x31,0x21,0xf8,0x0e,0xe8,0x83,0xfb,0xdb,0x5d, +0x0a,0xd7,0x23,0xf4,0xcc,0xe5,0xdc,0x26,0xc3,0xfe,0xd4,0x11,0x0e,0xa7,0x38,0x75,0xa6,0x3b,0x4f,0x2a, +0x8e,0xe3,0x52,0x55,0xe8,0x27,0xf6,0x67,0x8a,0xc8,0xea,0x39,0x57,0x78,0xc7,0x5b,0x7c,0xa3,0x92,0x7b, +0x31,0x23,0x27,0xf6,0x62,0xc0,0xa1,0x83,0x37,0x3e,0xee,0x60,0xe7,0x51,0x9f,0xb4,0x42,0x26,0x7c,0x65, +0xa4,0x7e,0xa1,0x15,0x72,0x01,0x5a,0x22,0xdc,0xec,0x92,0xe9,0x46,0xfa,0xd5,0x70,0xa8,0xe0,0x85,0x21, +0x5c,0x22,0x46,0xb4,0xa2,0x9a,0xa3,0x26,0x31,0xbe,0xb7,0x8c,0x83,0x57,0xa7,0x3f,0x7f,0xd6,0x38,0x80, +0xf2,0x7f,0xf6,0x38,0x18,0xa5,0xf3,0xcf,0x1e,0x07,0xf4,0x4d,0x0a,0xec,0xea,0xbc,0xf6,0xf5,0x33,0x58, +0x44,0x9a,0x23,0xb7,0x0e,0xc3,0xa3,0xae,0x52,0xdb,0x2d,0x4c,0x4d,0xad,0xa9,0xf3,0x87,0x8c,0x20,0xc0, +0x1e,0x4e,0xc0,0xd6,0xfe,0x80,0xa1,0x03,0xe7,0xb6,0xc2,0xa6,0x77,0x25,0x52,0x0b,0x5d,0x72,0xd0,0x62, +0x95,0x20,0x79,0xec,0xac,0xec,0xbb,0x03,0x8c,0xff,0x12,0x76,0xd1,0x9d,0x1c,0xfc,0xff,0xf8,0x6b,0x2f, +0x38,0x68,0x6d,0xcd,0xd2,0xf0,0xfd,0x28,0x42,0x8f,0x83,0x41,0xa3,0x91,0x3f,0x6f,0x24,0x7e,0xd8,0x08, +0xbc,0x58,0x6f,0xd7,0xde,0xb9,0x11,0x6c,0xa2,0xd1,0x7e,0xd0,0x8d,0xe4,0x26,0x9a,0xfa,0x49,0x3d,0xf2, +0x06,0x50,0x32,0xd6,0xb7,0x52,0x1a,0xc7,0x4d,0xee,0x24,0x60,0x80,0xb9,0x65,0xa6,0xf9,0x41,0xb2,0x1a, +0x64,0xb5,0x49,0xa5,0x9f,0x69,0xb5,0xb9,0xc5,0x73,0x6d,0xb2,0xd2,0x5c,0x9b,0x88,0xb9,0x96,0xad,0x3a, +0xd7,0x98,0x3f,0xda,0x21,0x5d,0xc6,0xe8,0xca,0xf2,0xf5,0x81,0x74,0x03,0x88,0x2a,0xde,0xe0,0x45,0x17, +0xe3,0x31,0x2c,0xa5,0x63,0xd8,0xc0,0x98,0x16,0xa2,0xab,0x71,0xbf,0x37,0xb6,0xd6,0x93,0xeb,0x3e,0x7a, +0x55,0x32,0x26,0x6a,0xc2,0x69,0xd8,0xdd,0xd7,0xe4,0xda,0x34,0xcc,0x54,0x9f,0x7b,0x99,0x0e,0xb2,0xca, +0xfc,0x84,0x31,0xb2,0xd9,0xca,0xf7,0xc3,0x02,0x4f,0x42,0xc0,0xd5,0xa3,0x9d,0x73,0xdd,0x83,0x11,0x1d, +0x3f,0x49,0x09,0xb3,0x94,0xc3,0x37,0x1a,0x38,0x39,0xd1,0x4b,0x09,0x22,0x10,0xdc,0x1b,0xad,0xc8,0xdd, +0x0f,0xc8,0x68,0x60,0x68,0xa3,0x89,0xb9,0xf5,0x41,0xf2,0x0f,0x98,0x5a,0x59,0x06,0x46,0xf5,0x90,0x98, +0x62,0x16,0xfa,0x9e,0x92,0x2b,0x4b,0x61,0xa7,0x97,0xca,0xa0,0x73,0x23,0x60,0x99,0x71,0x66,0x16,0xfc, +0xc7,0xf7,0x14,0xed,0xc1,0x54,0x20,0xb5,0xc2,0xa9,0xca,0xcb,0x05,0xd9,0xc8,0xa2,0xd5,0x96,0x12,0xa8, +0x9f,0x59,0x91,0x0f,0xbb,0xac,0xc0,0x6e,0x57,0xdd,0x15,0x2d,0xdc,0x76,0x69,0x6c,0xea,0xe8,0x32,0x3b, +0xfe,0x40,0x7c,0x45,0x37,0x7c,0x31,0x84,0xb1,0x2f,0xfe,0x40,0x74,0xa9,0xff,0x1f,0x8a,0xac,0x10,0x70, +0xf0,0xc2,0x63,0x62,0xae,0x3d,0x05,0x08,0x49,0x21,0x7a,0x5f,0xbc,0xa4,0x37,0x45,0x7a,0xb7,0x57,0x82, +0x5f,0x99,0xdc,0x25,0x00,0xa1,0xaf,0x4b,0x30,0xec,0x6d,0xa9,0x8e,0xf7,0x04,0x06,0x53,0x16,0xd0,0x5f, +0x49,0xca,0xf1,0x9a,0xdb,0x40,0x57,0x70,0xe8,0x2a,0x29,0x5f,0xd2,0x1c,0x14,0x78,0xa9,0xb6,0xa8,0x9e, +0xb0,0x29,0xd3,0xa0,0xc2,0x06,0x47,0xfc,0x54,0x32,0xb4,0x2c,0xca,0x50,0x0b,0xee,0x9e,0x3d,0xd6,0x37, +0x3f,0x84,0x74,0x15,0x6e,0x42,0x5f,0xbe,0x28,0xfa,0x42,0x42,0x4a,0x80,0xb9,0xaf,0x61,0x32,0xa0,0xbc, +0x13,0x1d,0x38,0x09,0x01,0xb7,0x8f,0x4f,0x52,0x4d,0x91,0x67,0x8a,0x18,0xc4,0x0d,0xa2,0xa5,0x01,0xf0, +0x81,0x6a,0xaa,0x84,0xe3,0x12,0x46,0xaf,0x04,0x56,0x4c,0x27,0x50,0x86,0x1d,0xe2,0xd2,0xe0,0xf0,0x03, +0x1a,0xbe,0x92,0x34,0x39,0x53,0x7b,0x06,0xc3,0x17,0x2e,0xcf,0x91,0xd3,0x52,0x83,0x21,0x1f,0x2e,0x35, +0xcc,0x11,0xcf,0x9f,0x5a,0x1e,0x49,0xce,0x30,0xeb,0x28,0x9e,0x4d,0xd0,0x1f,0x71,0xe6,0x8a,0x04,0xfa, +0x4d,0x24,0xc3,0x49,0x50,0xc3,0xa1,0x70,0xb0,0x66,0x07,0x31,0x85,0x77,0x2a,0xda,0x9e,0x49,0x46,0x52, +0x3e,0x92,0xa4,0xea,0x68,0x8a,0x01,0x0b,0xd0,0xa7,0x0f,0xa1,0x00,0x87,0x05,0x6a,0xe4,0xce,0x3c,0xaf, +0x09,0x01,0x23,0x82,0xca,0xb7,0x2e,0x0f,0xcf,0xf9,0xe8,0x85,0x4c,0xbe,0xb4,0x35,0x47,0xfe,0x04,0xee, +0xbb,0x3b,0x70,0xac,0x81,0x8b,0x41,0x0a,0x1f,0xed,0x8b,0x1d,0x38,0xb7,0xc0,0xc7,0x1c,0x3e,0x76,0xf9, +0xe3,0x01,0x78,0xf2,0xd1,0x09,0x65,0x0d,0x88,0xa1,0x76,0x00,0x26,0x44,0xe5,0x8d,0xda,0x3c,0x1a,0x77, +0x13,0xe5,0x90,0x25,0x61,0x35,0x05,0x0c,0x4f,0x5f,0xba,0x38,0x51,0x2a,0x11,0x47,0x67,0x10,0x3a,0x3c, +0x98,0xd5,0x68,0xba,0x2c,0xb9,0x4f,0xc2,0x58,0xec,0x52,0x58,0x9a,0xb1,0x52,0x3b,0xa9,0xea,0xae,0xd9, +0x14,0x1d,0xc5,0xe5,0x38,0x46,0x9a,0xa0,0x0e,0xcb,0x79,0xa9,0x1f,0x3d,0x7e,0x06,0xa7,0x9a,0x3c,0x3d, +0xda,0x79,0xd6,0x62,0x6c,0x06,0x0b,0xf2,0xae,0x20,0x6f,0xf7,0xa9,0x99,0xb7,0xfb,0x94,0xf3,0xc6,0x7e, +0xd4,0xa5,0x00,0x14,0xe3,0xba,0x33,0x80,0x19,0x26,0x15,0xa8,0xae,0xbc,0x5d,0x38,0x50,0x8e,0xb4,0x94, +0x01,0xa5,0xdc,0x68,0x29,0x29,0xa5,0xa4,0x0e,0xd1,0x23,0xcf,0x6b,0x62,0x82,0xc9,0x4f,0x9f,0x51,0x77, +0xb4,0x8b,0xb4,0x53,0x54,0xf9,0xd1,0xf2,0x74,0xd9,0xa4,0x7e,0xf7,0xe6,0xb1,0x86,0xef,0xe3,0xf9,0x50, +0x47,0x89,0xd0,0x29,0xaf,0x6a,0x32,0x6d,0x70,0xf5,0x6f,0x12,0x8a,0x1d,0x0f,0x3e,0xe6,0x7c,0x15,0x12, +0xdc,0x62,0xb3,0x52,0x14,0x5b,0x10,0xf3,0xa2,0xb7,0x48,0xfa,0x79,0x21,0x34,0xbb,0x60,0xb1,0x4d,0xc9, +0xcf,0xbf,0xf3,0x33,0xfb,0xdd,0x77,0xc4,0x15,0x63,0xe6,0x67,0xca,0xc3,0x63,0xe3,0x1b,0xa3,0xe7,0x71, +0xbc,0x36,0x6f,0xe2,0xc1,0x6c,0x1c,0x36,0x1c,0xf4,0x79,0xc7,0x32,0xcc,0x7b,0x47,0xde,0x90,0x99,0x49, +0x61,0x53,0x7c,0xfb,0xea,0x97,0x19,0x6a,0x09,0x19,0xf7,0xaf,0x2c,0x13,0x54,0xca,0x42,0x79,0x92,0xaf, +0x7f,0xf4,0x9c,0xa3,0xb7,0x6f,0xde,0xbc,0x38,0x3a,0x7b,0xf1,0x9d,0xd3,0x71,0xde,0xbc,0x3d,0xdb,0xc8, +0xbf,0xa1,0xa2,0x49,0x36,0x2d,0xd4,0xa3,0x52,0x7c,0xed,0x77,0xcf,0x39,0xfd,0xe5,0xcd,0xd1,0x13,0x59, +0x85,0xf8,0x80,0xf2,0xd9,0xcd,0xf4,0x27,0x98,0xe2,0xa2,0xb8,0x18,0xfb,0x8f,0x44,0xaa,0x5c,0xc7,0x71, +0x25,0x84,0x0e,0xef,0x39,0xff,0xfd,0xcf,0xf7,0x50,0xc3,0x7f,0xff,0x73,0x24,0x84,0x20,0xa3,0xc2,0x93, +0x38,0xac,0xe5,0x75,0xe7,0x82,0x1f,0x00,0x36,0x6b,0x23,0x75,0x13,0x10,0xbc,0x1d,0xc9,0xc9,0x55,0x86, +0xd6,0x60,0x09,0x14,0x43,0x7a,0xf1,0x2c,0x9d,0x26,0x21,0xb9,0x5f,0x77,0xbc,0x69,0x9e,0x86,0x21,0x57, +0x28,0xd1,0xe8,0x9f,0x11,0xa3,0x7b,0x5d,0x47,0x6c,0xeb,0x53,0xf7,0x3e,0x6f,0x94,0x9e,0xf9,0x0b,0xcd, +0x8a,0xa2,0x79,0xd3,0x3d,0x51,0xcb,0x92,0x85,0x42,0x3a,0x9f,0xe3,0x09,0x2f,0x84,0x96,0xbe,0x42,0x0e, +0x65,0xd3,0x30,0x9a,0x46,0x45,0xc5,0x18,0xae,0xd1,0x2e,0x83,0xee,0x4a,0x15,0x0e,0x07,0xa3,0x81,0xc5, +0xb6,0xda,0x10,0xa9,0x73,0x0a,0x12,0xc7,0xd0,0xeb,0xb1,0x89,0xcb,0x2b,0xce,0xd8,0x09,0xe3,0x90,0x3b, +0x54,0xf1,0x10,0x3d,0x8f,0xe5,0xf3,0xae,0xab,0x89,0x46,0x87,0xf2,0xd9,0x49,0x5d,0xdf,0xe6,0xf8,0xac, +0x3f,0xd4,0xfa,0x58,0x2f,0x7a,0x4e,0x61,0xbb,0x9c,0xfa,0x9c,0x99,0x3e,0xd2,0x94,0x2a,0x19,0xa9,0xe1, +0xf9,0xdc,0xc2,0x69,0x4a,0xd5,0x10,0xba,0xf1,0xc3,0xa6,0xb6,0x38,0x74,0x0d,0x61,0xf9,0x4d,0x09,0xa5, +0x5b,0x44,0xe9,0x46,0x47,0x49,0x2b,0x2c,0x51,0xba,0xb5,0xa1,0x54,0xe8,0xb5,0x9b,0xf3,0xdb,0xca,0x5e, +0xd3,0xd0,0xeb,0xe3,0x59,0x01,0x16,0x32,0x93,0x27,0x7d,0x46,0xe0,0x83,0xaf,0x8b,0x29,0xbd,0x4f,0x02, +0x16,0x28,0xec,0xea,0xe7,0x9c,0x4f,0x96,0x73,0x4e,0x85,0xd6,0x2a,0xe9,0x36,0x5c,0x38,0xde,0x07,0xb7, +0x9b,0xa9,0xed,0x88,0x8f,0x7f,0x9f,0xce,0x43,0x0b,0x3b,0x29,0x15,0x6f,0xfe,0x39,0xca,0x47,0xbc,0x8f, +0x4b,0x49,0x8b,0x2e,0x08,0x38,0xd2,0xfa,0x16,0x6e,0xdc,0xf3,0xfd,0xa3,0xee,0x5c,0x17,0x5b,0x1b,0x97, +0xe7,0x42,0x07,0xdb,0x76,0x5c,0x6b,0x0f,0xcb,0x8c,0xc2,0xbe,0x6b,0xad,0xd4,0xba,0xe7,0xf2,0x08,0xc9, +0x09,0x3a,0xc5,0x21,0x72,0xdd,0x37,0xbb,0xe0,0x94,0xb1,0x3e,0xf1,0x4f,0x01,0xdc,0x2b,0x2e,0x58,0x00, +0x8e,0xee,0xc6,0x2f,0xce,0xc5,0x31,0x1b,0x5a,0x3c,0x69,0x46,0x03,0x68,0xf4,0x5c,0x3b,0x5f,0x53,0x2a, +0xff,0x34,0x47,0x8c,0x1c,0xc2,0x27,0xec,0xa1,0xbc,0x44,0xa2,0x48,0x17,0xa1,0xac,0x4c,0x96,0x12,0xae, +0x74,0xce,0x23,0xde,0xea,0xb7,0x6d,0x74,0x73,0x0d,0x4b,0x40,0x51,0xa5,0x97,0x14,0x2e,0x73,0x6d,0x23, +0xf4,0x17,0x6c,0x6a,0x71,0xe6,0x87,0x7e,0x7c,0x49,0xe3,0x17,0x7f,0x65,0x37,0x98,0x75,0xf5,0xc5,0xaa, +0x20,0x57,0xa6,0x45,0xa6,0x57,0xd3,0xee,0x35,0xa6,0xf1,0x2d,0x5c,0x6a,0x9c,0x2c,0x99,0x85,0xa5,0x92, +0x8a,0x56,0x97,0xfc,0x60,0x56,0x09,0x1b,0x4b,0xc0,0x4a,0x6b,0x59,0xcf,0xcf,0xb1,0x76,0xc8,0x11,0x6c, +0x50,0xc8,0x17,0x27,0x70,0xb7,0xab,0x69,0x3a,0x6c,0x6a,0x6e,0x95,0x9d,0x09,0x4c,0x52,0x48,0xc1,0x68, +0x7f,0x21,0x64,0xa0,0x23,0x3c,0x94,0x3f,0xd5,0xeb,0xb9,0x06,0x84,0xa7,0xbd,0xf4,0xfb,0x08,0x49,0x99, +0x4a,0x99,0xc2,0x13,0xda,0x17,0x7a,0x16,0x06,0x1e,0xc8,0xcf,0xfa,0x79,0x3a,0x26,0x78,0x95,0x14,0x78, +0x6d,0x60,0x49,0x9b,0x11,0x68,0x34,0x16,0x20,0x40,0x99,0x76,0x04,0x44,0x56,0x09,0x01,0x91,0xbe,0x04, +0x01,0x8c,0x11,0xac,0x3d,0x6e,0xe5,0xda,0x22,0x76,0x75,0x5a,0xa5,0x2c,0x68,0x38,0xf8,0x56,0x7e,0xee, +0x9d,0x47,0xf4,0xc0,0x80,0x21,0x19,0xd0,0x96,0x42,0x9c,0x9e,0x46,0x59,0x36,0x25,0x67,0xa6,0xb0,0x26, +0xe1,0xef,0x0e,0x46,0xd0,0x84,0xb5,0x09,0x43,0x86,0xda,0x20,0x31,0x5e,0x33,0x6b,0x41,0xf8,0xa1,0x77, +0x9b,0xf2,0x8f,0xbc,0x0d,0x02,0xf2,0x9c,0xdb,0x14,0xc3,0x28,0xc2,0xbf,0x52,0x24,0xb6,0xb5,0x25,0xaf, +0xd1,0x57,0xe3,0x98,0xbc,0x9c,0x89,0x6f,0xd2,0x29,0x78,0x1f,0xf6,0x4f,0xe1,0x77,0x98,0xd5,0xb8,0xc6, +0x5c,0x92,0x16,0x4f,0x30,0xb4,0x8f,0xa1,0x59,0x00,0x7c,0x48,0xe3,0x31,0x6a,0x56,0x0d,0x29,0x50,0xe1, +0x44,0x68,0xbd,0xde,0x6b,0x85,0xa8,0x91,0xea,0x52,0xdf,0x29,0xa5,0x94,0x62,0x41,0x8e,0xd4,0x52,0x59, +0x90,0xec,0x4d,0x3a,0x1b,0x0e,0x45,0xe9,0xce,0x4b,0x89,0xb3,0xe9,0x42,0x05,0x08,0x5a,0x48,0xba,0x30, +0xc8,0xf5,0xfb,0x3c,0xfa,0xfc,0x35,0x65,0xb9,0x35,0xbe,0xb2,0xe5,0x56,0x33,0xc5,0x37,0x68,0x4d,0xbe, +0x94,0x3f,0x77,0x17,0xef,0xf1,0xe3,0x12,0xac,0x7a,0xe9,0x27,0xd0,0x0a,0x75,0xb5,0x16,0xe9,0xa9,0xc1, +0xf5,0x8e,0x85,0x90,0x52,0xba,0xc5,0x26,0x38,0x85,0x87,0x27,0xa1,0x17,0x64,0x01,0x6c,0x68,0x57,0x71, +0x4b,0x09,0xa9,0xc5,0x66,0x94,0xe4,0x39,0x53,0x80,0xa7,0x89,0x53,0x00,0x93,0x33,0xaf,0x04,0x2a,0x32, +0x0c,0x70,0xa9,0xd2,0xd2,0x60,0x9b,0x9e,0x62,0x21,0x56,0x04,0xb2,0x97,0x90,0x9a,0x27,0x65,0x94,0x30, +0x99,0x7b,0x45,0x53,0xf2,0xd0,0x85,0xcd,0xba,0x22,0x50,0x81,0x3d,0xac,0x08,0x5a,0x62,0x0b,0x25,0x1b, +0xa0,0xb0,0x57,0xc0,0x91,0xc2,0x84,0x34,0x77,0x0b,0x5b,0xcd,0x0d,0xd6,0x44,0x31,0x8b,0x95,0xed,0xed, +0x17,0xeb,0xe4,0x6a,0xfa,0x2a,0x25,0x15,0x72,0x5d,0x63,0xb6,0x6c,0xce,0x6f,0x79,0xaf,0xea,0x16,0x2a, +0x90,0x2a,0xf5,0x6a,0x17,0xcc,0xd7,0x8e,0x9d,0x7f,0x36,0xb7,0xcf,0x7f,0xfd,0xf5,0xd7,0x9d,0x8b,0x1d, +0x5c,0xa7,0x5c,0x73,0x0c,0xc2,0xf6,0x6a,0x7f,0xc8,0x34,0xd5,0x42,0xf3,0xd7,0x66,0xfd,0xc4,0xa6,0x3d, +0x3c,0x9b,0x66,0xfd,0x7a,0xb7,0x49,0x91,0x5f,0xbe,0x02,0x2f,0x80,0xe5,0xfb,0x88,0x09,0x2c,0x17,0x68, +0xbe,0xb6,0x88,0xd5,0xc1,0x53,0x32,0xad,0xcd,0xb6,0xa7,0xdd,0x9d,0x95,0xb1,0x16,0xc6,0x9b,0x11,0x2b, +0xaa,0xa9,0x5f,0xaf,0xb4,0xb0,0xc5,0x4f,0xa9,0x87,0x2d,0x3e,0x59,0x13,0xdb,0x53,0x37,0xfa,0xcd,0x36, +0xf0,0x1a,0x97,0x8e,0xb2,0x3d,0xde,0xa6,0xa9,0xc0,0x7a,0x3d,0x29,0xc9,0x67,0x8a,0x26,0xa9,0xec,0x71, +0xae,0x6b,0x71,0x77,0x0e,0xf7,0x3b,0x96,0x82,0xa0,0x53,0xcc,0x51,0x74,0x9d,0xa1,0xfc,0x43,0xda,0x6b, +0xe6,0x5e,0x16,0xe0,0xe8,0x57,0x8c,0x2d,0x93,0xf6,0xd0,0x7b,0x5b,0x90,0x1c,0x66,0x18,0xc6,0xd1,0xb8, +0x50,0xd7,0x53,0x71,0x65,0x6f,0xbb,0x9d,0x94,0xaf,0x52,0xfc,0x36,0x24,0x9d,0xc1,0x8a,0x1f,0xe2,0xa4, +0xa9,0xda,0x59,0x10,0x83,0x50,0x0a,0x6b,0x64,0x68,0x40,0x32,0x4c,0x75,0x7e,0xfb,0xf1,0xfd,0xd1,0x3b, +0x0c,0x11,0x99,0x61,0x24,0x76,0xa1,0x47,0x2b,0x74,0xf2,0x22,0x8e,0x7a,0x05,0x3f,0xe4,0xd3,0x18,0xba, +0xe6,0x2f,0x06,0x7f,0x48,0x29,0x8a,0x47,0x8a,0x2f,0x59,0xb8,0x73,0x65,0x4d,0x5d,0xca,0x45,0x3e,0x3b, +0x26,0xb0,0x71,0x2e,0x6a,0x14,0x7d,0x46,0x68,0xcd,0xfa,0x18,0x09,0xa7,0xd4,0x8a,0x76,0xa1,0x2c,0x7b, +0xa4,0x89,0xce,0x53,0xe1,0x19,0x7d,0xec,0xe3,0x6f,0xc1,0x7e,0x74,0x67,0x8c,0x04,0x8d,0x37,0x91,0x06, +0xa9,0x9c,0xe7,0x8f,0x71,0x26,0x2f,0xac,0xcd,0x21,0xef,0xbd,0xc1,0x45,0x1e,0xae,0x43,0xde,0xe2,0xb1, +0x7e,0x99,0xfb,0xd9,0xad,0x0c,0xb9,0x1e,0xad,0xe6,0xe1,0xda,0x35,0xab,0xc0,0x69,0x91,0xf0,0x79,0x96, +0x02,0xfd,0x06,0xde,0x7a,0x86,0x1f,0xa3,0x26,0x25,0xdd,0x2f,0xaa,0xca,0xe6,0xed,0xe8,0xa9,0x68,0x32, +0x20,0x83,0xf3,0x38,0xaf,0x29,0x3c,0xfa,0x0e,0xe7,0x6e,0xe0,0xea,0x85,0x22,0x39,0xb8,0x49,0xe4,0x36, +0xa5,0xe1,0xc7,0x28,0xcd,0x50,0x1f,0x50,0x38,0x0e,0x2d,0xce,0x2f,0x0e,0x3c,0x9b,0xdc,0x77,0xa5,0xa8, +0xde,0x32,0x07,0xbb,0x99,0xe6,0x25,0x00,0xd5,0xbd,0x03,0x72,0x8d,0xfd,0xd1,0xf1,0xd0,0x35,0x41,0x14, +0xde,0xa2,0x21,0xc0,0x38,0x9a,0x93,0x72,0x14,0xfa,0x9a,0xa5,0xf5,0x0a,0x3f,0xa4,0x26,0x38,0xc5,0x70, +0x9d,0x65,0x31,0xfb,0x80,0x93,0x5f,0xdf,0x73,0x55,0xf0,0x35,0xc5,0x5d,0x36,0x99,0xc3,0x82,0x01,0x2d, +0x77,0xc8,0xdf,0xd1,0x55,0x9a,0x0a,0xa3,0x60,0xb4,0x47,0x46,0x19,0x7b,0xc7,0x99,0xc6,0x53,0x7c,0x17, +0x47,0x77,0x37,0xdf,0xe9,0xce,0x0a,0xfe,0x35,0x83,0x76,0xb2,0x4f,0x9d,0xb6,0x27,0x9f,0xd4,0xa9,0x8a, +0x44,0xb8,0xd4,0xef,0xec,0x7a,0x37,0x71,0x3f,0x62,0xe5,0x2d,0xfe,0xc5,0x0e,0xbd,0x9f,0x7e,0xdb,0xf2, +0x50,0xa1,0x10,0x36,0x2d,0x32,0x35,0x40,0x3a,0xf0,0x0e,0xf8,0x96,0xd9,0x8d,0xe0,0xe9,0x24,0x98,0x92, +0x9d,0x03,0xfc,0x7f,0x06,0xa7,0xad,0x04,0x67,0x4a,0xa7,0xd9,0xda,0xc3,0x00,0x48,0xcf,0x7f,0x7a,0x79, +0x79,0xf2,0xe2,0x87,0xc3,0xb3,0xe3,0x9f,0x5f,0x5c,0xbe,0x3b,0x7c,0xf9,0xe2,0xf2,0xed,0xc9,0xf1,0xcb, +0xe3,0x37,0xb8,0xa2,0x66,0x4d,0xf1,0x9b,0xdd,0x84,0xb4,0x3c,0x0a,0x0d,0x70,0x4f,0xb1,0x98,0x80,0xb3, +0x67,0xf1,0x69,0xa6,0x1f,0xe7,0x3c,0x25,0x68,0x76,0x9c,0x6e,0x7a,0x1b,0x09,0xfb,0x35,0xb4,0xcc,0x24, +0xcd,0x8e,0x0e,0x64,0x3c,0x72,0xba,0xf4,0x8d,0xac,0xef,0xf0,0x22,0xa2,0xd9,0xe9,0xed,0xee,0xed,0x6d, +0xc3,0x9e,0x85,0x0b,0x98,0x32,0xb3,0x23,0x13,0x9a,0x48,0x5d,0x29,0x31,0x38,0x4c,0x0b,0x23,0x42,0x75, +0x79,0x11,0x2b,0x95,0x1e,0x96,0x4b,0x6b,0x7e,0xc7,0x53,0x2a,0x9d,0xba,0x42,0xe7,0xb7,0x54,0xba,0x5f, +0x2e,0x1d,0xe4,0xa5,0x03,0x2a,0x8d,0xca,0x60,0x75,0x3f,0x82,0x41,0x1a,0x74,0xfb,0x49,0x18,0x7c,0xe8, +0x4a,0x12,0x83,0x22,0x8d,0xc1,0xdf,0x98,0x48,0xb1,0x1f,0x94,0x4a,0x07,0xe5,0xd2,0xb9,0x00,0xa2,0x16, +0x53,0xe9,0x38,0x67,0x51,0x3d,0xd6,0x99,0x84,0xef,0x33,0xc8,0x23,0xf8,0xbf,0xe6,0xd4,0x2d,0x5c,0x21, +0x8d,0x0e,0x0b,0xbd,0xf6,0xf4,0x3e,0xa4,0xbb,0x4e,0xa1,0x81,0xc7,0x5a,0x0b,0xac,0x12,0x92,0xd4,0x9d, +0xc7,0x9e,0xfc,0x18,0xea,0x1f,0x7d,0xf8,0x28,0x55,0x10,0xc8,0x0a,0x82,0x2f,0x85,0xa3,0x47,0x4f,0x83, +0x16,0x5c,0x83,0xc7,0x7a,0x5b,0xab,0x60,0xab,0x3e,0x82,0x12,0xea,0xf8,0x2e,0x85,0xb5,0xc1,0xff,0x50, +0x99,0xd0,0x9c,0x11,0x8d,0xa7,0xe2,0xff,0x79,0x11,0x09,0x00,0x7e,0xac,0x95,0xe2,0xba,0x47,0x7a,0x43, +0xa9,0xfe,0x31,0xb7,0xb5,0x1a,0xc8,0x0a,0x82,0x45,0xed,0xda,0x99,0x80,0xa5,0x1e,0xeb,0xe5,0x57,0xc1, +0x60,0x21,0x13,0xfa,0xa2,0x36,0xec,0xff,0x95,0x18,0xd0,0x7f,0xac,0x95,0x78,0x08,0x03,0xfa,0x92,0x01, +0xd4,0x8b,0x6b,0x11,0xdf,0x57,0xc4,0xf7,0x1f,0x48,0xbc,0x34,0xe4,0x48,0x70,0x61,0x86,0x73,0xe1,0x59, +0x4c,0xfb,0x5e,0xf9,0xbe,0x8c,0x61,0x36,0xfc,0xbb,0xa0,0xd3,0xbe,0xef,0x92,0x39,0x24,0xfa,0x05,0xc1, +0x27,0x27,0x5c,0xa7,0x77,0xfe,0xf9,0xe8,0xbc,0xd5,0xf8,0x47,0xd0,0xb8,0xbe,0xb8,0xfb,0xfa,0xfe,0xab, +0x9d,0x88,0xbc,0x93,0x97,0xf3,0x9e,0x52,0x1e,0x3d,0x32,0x45,0xe9,0x9b,0xe0,0x4d,0x2d,0x6a,0x26,0x7e, +0xfb,0x9b,0x6d,0xed,0x0d,0x2b,0x9d,0xf5,0x01,0x8b,0x5a,0xdb,0x6b,0xbb,0x1e,0xac,0x0f,0x3b,0x30,0x0b, +0xdc,0xdc,0xd6,0x41,0x2b,0x38,0xb4,0x17,0xdc,0x5d,0x5a,0xb0,0x6f,0x2f,0xf8,0x75,0x65,0xc1,0x3d,0x7c, +0x44,0x96,0x4b,0x94,0xac,0x25,0xb0,0xd7,0xf2,0xd4,0x5a,0x8b,0x66,0x45,0x6a,0xb2,0xad,0xc4,0xb5,0x4a, +0x80,0xd5,0x59,0xd7,0x7a,0x28,0xeb,0x96,0xf3,0xbc,0x82,0x75,0xd5,0x3c,0x7f,0xba,0x06,0xeb,0xec,0x1d, +0x50,0xc9,0xba,0x7c,0x54,0x3d,0xab,0xe0,0x5d,0x0e,0xf1,0xad,0x8d,0x79,0x36,0x06,0xec,0x2e,0xe5,0x9c, +0x0d,0xef,0x65,0xa5,0xfa,0x96,0x52,0x7b,0x95,0xa5,0xfe,0x61,0xe7,0x59,0xb9,0x8a,0x6f,0xac,0x55,0x2c, +0x1f,0x6b,0x55,0xfc,0x5a,0x97,0x5d,0xad,0x07,0xb1,0x6b,0xf7,0x41,0xec,0x7a,0x5a,0x59,0xea,0xdb,0x55, +0xd9,0xf5,0x6c,0x3d,0x76,0xe1,0xa6,0xfa,0x6b,0xba,0xfd,0x6b,0x0d,0xfe,0xa9,0x21,0x6b,0x7e,0x6d,0x5e, +0xd4,0x1f,0xff,0x7e,0xde,0x6a,0x5f,0xf4,0x7e,0x6d,0xf6,0x30,0xe5,0x62,0xdb,0x85,0x4c,0xef,0x8f,0x07, +0xf8,0xd5,0xb5,0xf7,0x18,0xe0,0xf8,0x27,0xa1,0xc8,0x18,0xd0,0x90,0x48,0xfc,0x02,0x1a,0xc1,0x0e,0x46, +0x58,0xf5,0x25,0xa3,0xc9,0xad,0x48,0xee,0x98,0xa3,0xe6,0xb8,0xf5,0xb6,0xa7,0x25,0x78,0xe8,0x77,0xd5, +0x79,0x8c,0xf7,0x4f,0x29,0x74,0x90,0xef,0x6c,0xe8,0x52,0xc3,0x32,0xea,0x38,0x5a,0x5d,0xe6,0xa2,0x76, +0x8b,0xa5,0xe7,0x2c,0x63,0x34,0xb3,0x0c,0x94,0x4a,0x0c,0xbd,0x32,0x86,0x5e,0x31,0x7b,0x65,0x94,0x87, +0x6b,0xa1,0x3c,0x5c,0x86,0x72,0xd2,0xab,0x44,0xba,0x8c,0x23,0x51,0x01,0x57,0xc6,0xec,0x58,0xe7,0x75, +0xc7,0xac,0xa1,0x98,0x5f,0x2e,0xe4,0xae,0xde,0x41,0xfd,0xb5,0xa8,0xed,0x2f,0xa6,0x36,0x71,0x2d,0xbd, +0xf4,0x45,0xd1,0x0d,0xd6,0x42,0xb7,0x00,0x5d,0x80,0xbc,0x13,0x6b,0x86,0xaf,0xcd,0x47,0x3c,0x83,0xfe, +0xb5,0xd6,0x8c,0xad,0x2d,0x0b,0x8e,0x7f,0xea,0x9a,0x61,0xc3,0xe0,0xaf,0xb6,0xb2,0x5a,0x71,0xfc,0x73, +0x57,0x56,0x63,0x22,0xfc,0x79,0x2b,0xec,0x68,0xad,0x19,0x51,0x84,0x86,0xcb,0xda,0xff,0xc5,0x1a,0x9b, +0xae,0x85,0x74,0x5a,0x35,0x8d,0xff,0x16,0x2b,0xec,0x7c,0x2d,0x5a,0xe7,0x8b,0x68,0xfd,0xfb,0xac,0xaf, +0x52,0xff,0x16,0xef,0xa4,0xb0,0x5e,0x9d,0xc5,0x27,0xc3,0xbe,0x19,0x6f,0x3a,0x51,0x8f,0x08,0xfb,0x7e, +0x7b,0xe7,0x19,0x5c,0x37,0x0f,0xfc,0xbd,0x9d,0x67,0xbd,0x76,0x27,0xdc,0x6f,0xef,0x7c,0xdd,0x6b,0x37, +0x9e,0x6d,0xd7,0xc2,0x06,0x64,0x41,0xef,0x1c,0x3c,0x85,0x1c,0xfa,0x7e,0x8a,0xdf,0x2d,0x8c,0x4c,0x7d, +0x80,0xc5,0xb6,0xb6,0xa0,0x78,0x73,0x4f,0x94,0x42,0x98,0x10,0x7e,0x21,0xb4,0x28,0xdf,0xdc,0x43,0xf0, +0x00,0xc1,0x9b,0x7b,0x04,0x2d,0x1a,0x39,0xd8,0xe5,0xd2,0x50,0x98,0x00,0x77,0xb9,0xa1,0xbd,0xbc,0xe8, +0x1e,0x37,0x15,0xfb,0xb5,0xa8,0x5e,0x6b,0x37,0x22,0x77,0x1b,0xfe,0x05,0x2a,0xb7,0x13,0x6f,0xe2,0xd7, +0xd2,0x3a,0x87,0x05,0x50,0x69,0x63,0xbf,0x16,0x60,0x5a,0x90,0xa7,0x89,0x27,0x94,0xbb,0xa4,0x13,0x7b, +0xc3,0xce,0xc4,0xeb,0x77,0xc6,0xf7,0xc8,0x11,0x38,0xf5,0x9d,0xc5,0xaf,0xd2,0xb9,0x9d,0x23,0xe4,0xaf, +0x54,0x08,0xde,0x30,0x70,0x20,0xe7,0x41,0x9b,0x9c,0x12,0x49,0x68,0x68,0x31,0x6e,0x4c,0x54,0x4c,0x6e, +0xbf,0xb5,0xe9,0xc7,0xbd,0xf1,0x4e,0xdc,0xc1,0x20,0xc1,0x2d,0xdf,0x1f,0xf7,0x5a,0x9d,0x10,0xa3,0xd1, +0xd7,0x9e,0xd5,0x6b,0x59,0x23,0x71,0x77,0xc6,0xee,0xe3,0x67,0x9d,0x0c,0x93,0x76,0xeb,0xb5,0xa4,0x11, +0x42,0x4a,0x27,0xc1,0xcf,0xa7,0x75,0xa0,0x37,0xc3,0x4f,0x28,0xbb,0xe3,0x3f,0xc3,0xa8,0xf2,0xde,0xdd, +0xa8,0x03,0xb8,0x74,0x52,0x6f,0xde,0x09,0x08,0x6d,0xeb,0x9b,0x16,0xc5,0xee,0x64,0x37,0x96,0x28,0x32, +0xf7,0x13,0xe9,0x63,0x1c,0x65,0x10,0x50,0x05,0xf4,0x15,0xfc,0x9d,0x77,0xda,0x5e,0x02,0x7f,0x87,0xf0, +0xb7,0x0f,0x7f,0x51,0x0a,0xc1,0x80,0x52,0xc7,0xba,0x96,0xd7,0xc1,0x9e,0x19,0xa4,0x53,0x62,0x16,0x64, +0xfb,0x2a,0x84,0xf1,0x66,0xcb,0xbb,0x43,0x6c,0xa4,0x3c,0xdf,0x55,0xf5,0x08,0x99,0x37,0x86,0x04,0xe3, +0xdd,0x40,0xaf,0x40,0xa8,0x4e,0xe1,0x13,0x93,0x2d,0xd9,0x77,0x6e,0xe7,0x53,0xa7,0x6e,0xe6,0xf1,0x43, +0x81,0xe9,0x52,0xcf,0x6f,0xf5,0xe0,0xff,0x8e,0xa3,0x62,0x0f,0xb0,0x62,0x41,0x81,0x3f,0xcd,0xdb,0x68, +0x30,0x24,0x27,0x4f,0x18,0xfb,0xd0,0xc8,0x41,0xef,0x11,0xe3,0xe0,0x93,0x2d,0x0b,0xab,0x2a,0x44,0xd2, +0x69,0x63,0x08,0xe6,0x22,0x0c,0xfa,0x02,0x38,0xc6,0xd7,0xc8,0xbb,0xea,0x3c,0xb4,0x1c,0x12,0xd6,0x63, +0xb5,0x27,0x5a,0x20,0x20,0x7e,0x31,0x6b,0x08,0x2c,0x9c,0x0d,0x0a,0x14,0xe9,0x3b,0x83,0x28,0x9d,0xc2, +0x77,0x67,0x03,0xb5,0x84,0xba,0x8e,0x88,0x09,0xf4,0x04,0x35,0xd6,0x74,0xa5,0x88,0x26,0x9b,0x90,0x2b, +0x2a,0x2e,0x29,0xc3,0xad,0x20,0x31,0x41,0xaf,0x1f,0xe8,0x2c,0x2d,0xac,0x39,0x18,0xdb,0x32,0x8f,0xae, +0x9e,0xb0,0x78,0x39,0x2a,0x10,0x07,0xe0,0xf4,0x7e,0x82,0xfa,0x1b,0x3f,0x25,0xe3,0xda,0x2e,0x2c,0x3f, +0x5d,0xd4,0x7c,0x09,0x83,0x41,0x5e,0xf8,0xc9,0x3e,0x21,0xbd,0x41,0x7e,0x0e,0x9c,0x0c,0xc6,0xc5,0x0e, +0xbe,0x2f,0x1c,0x34,0x99,0xb4,0x5b,0xaa,0x62,0xe3,0x0e,0xf5,0x12,0x86,0x24,0x89,0xed,0x6c,0xcc,0xa0, +0xb2,0x27,0xf5,0xa8,0xee,0xb8,0x40,0x60,0x83,0x5d,0x63,0x6e,0x5c,0x91,0x07,0x4a,0xf1,0x5f,0xf7,0x7e, +0x7f,0x87,0xaa,0xc5,0x08,0x61,0xa4,0x6c,0x83,0x81,0x88,0x89,0x78,0xe1,0x99,0xbe,0xfc,0xf0,0xa4,0xf1, +0x03,0xc1,0x2f,0x05,0x60,0xb1,0xbc,0xf4,0x68,0xff,0xe0,0x0a,0x94,0x13,0xfd,0x15,0x6b,0x40,0x50,0x2b, +0x12,0x0f,0xa8,0x83,0xd5,0x9e,0xb8,0x0e,0xf6,0x22,0xb0,0xb0,0x02,0x06,0xbf,0x64,0x48,0xb7,0xb8,0x6c, +0x34,0x59,0x31,0xf5,0x3d,0x4f,0x8e,0xd2,0xbb,0x78,0x68,0x86,0xac,0x92,0xdd,0x49,0xd0,0x4f,0x0e,0x6c, +0x59,0x88,0x49,0x75,0xce,0x5b,0x1e,0x87,0x32,0xc2,0x15,0xc5,0x3a,0xb3,0xc1,0x1d,0xcd,0x92,0x34,0x4e, +0x10,0x8c,0x22,0x9e,0x09,0xe8,0x72,0xa5,0xaf,0x66,0xe1,0x06,0xff,0xe4,0x55,0xa3,0x81,0x91,0xe7,0xa6, +0x21,0x96,0xbc,0x0a,0x26,0xf3,0x20,0x2d,0xc3,0x9f,0x12,0xa0,0x51,0xea,0xc9,0x06,0x39,0xb8,0xf7,0x9f, +0xb4,0x9f,0x6c,0x70,0x74,0x5e,0xff,0xc9,0x5e,0xeb,0xc9,0x06,0x5b,0xf7,0x3c,0x81,0x42,0x88,0x09,0x57, +0x68,0xc5,0x19,0x20,0x18,0x63,0x59,0xed,0xd5,0x8a,0xf8,0x9f,0xc2,0xa0,0x5f,0x07,0x7f,0x80,0x5f,0x1f, +0x7f,0x28,0x24,0x1e,0x36,0x97,0x90,0x01,0x80,0x0f,0x23,0x03,0xf6,0x8b,0xb5,0xc8,0x00,0xf8,0xf5,0xc9, +0xa0,0x4d,0x69,0x09,0x05,0x00,0xf3,0x30,0x0a,0x4e,0xc2,0xc1,0x5a,0x14,0x00,0xfc,0xfa,0x14,0x40,0xa1, +0x25,0xf8,0x03,0xc4,0xc3,0xf0,0x7f,0x99,0xa0,0xeb,0xab,0x75,0x28,0xa0,0x12,0xeb,0xd3,0x40,0xc5,0x96, +0x50,0x41,0x30,0x0f,0xa3,0xe3,0xf9,0x78,0xcd,0x19,0x8d,0x05,0xd6,0xa7,0xe2,0xf9,0xf2,0xa1,0x84,0x20, +0x0f,0xa3,0xe1,0x70,0x3c,0x1d,0x05,0x6b,0x11,0x41,0x25,0xd6,0xa7,0x82,0x8a,0x2d,0x21,0x83,0x60,0x1e, +0x46,0xc7,0x3b,0x56,0xc4,0xa8,0x42,0x5a,0x64,0x3f,0x8f,0x3f,0xda,0xd0,0x6c,0xe7,0xcb,0x0f,0x29,0x8f, +0xc1,0xfc,0xa2,0x6d,0x47,0x47,0x97,0x1b,0x16,0xb1,0x0e,0x73,0xff,0x5a,0xc2,0xd8,0x58,0xdf,0x0f,0xbc, +0x8d,0xa6,0x8d,0x9f,0x79,0x32,0xd3,0x54,0x00,0x93,0xfa,0x9e,0xb6,0x30,0x85,0x1c,0x9d,0xad,0x71,0x13, +0xff,0xbb,0x81,0xda,0x25,0x0d,0xa9,0xe2,0xc6,0x4a,0xd9,0x32,0x9b,0x43,0xe4,0x2e,0x80,0x58,0x5e,0x96, +0xb6,0xf9,0x06,0xfa,0x8f,0x47,0xe3,0x49,0x09,0xe3,0x89,0x53,0x1c,0xfa,0xc1,0xfc,0x98,0xa1,0x16,0xab, +0x65,0x13,0x2f,0xe9,0x32,0x92,0x92,0x62,0x92,0x9f,0x40,0xd0,0x65,0x9b,0xa5,0x9c,0xc9,0x3b,0xe3,0x30, +0x80,0x09,0x97,0xaa,0xac,0xac,0x2c,0x8f,0x32,0xf4,0x25,0x6a,0x5b,0x1d,0x35,0x1e,0x97,0xa5,0x2a,0x39, +0xf9,0xb3,0xd0,0x5c,0xb3,0xe6,0x55,0x50,0x96,0xbe,0x17,0xf2,0x2a,0x39,0xe5,0x81,0x78,0xae,0x5e,0xdd, +0x4a,0xc8,0x5d,0x95,0x08,0xe6,0xea,0x3e,0x8b,0x97,0x6b,0xd5,0xca,0x37,0x8b,0xe2,0xf9,0xb2,0x70,0x81, +0xb0,0x28,0x8d,0x87,0x3b,0xbb,0x5e,0xe2,0x67,0x70,0x45,0x56,0x66,0xd5,0x7c,0x28,0x15,0xde,0x09,0xd1, +0x3d,0x1a,0xae,0x17,0xa8,0xbf,0xd8,0xe4,0x85,0x26,0xf4,0xa2,0xa6,0x58,0x68,0x42,0x65,0x3f,0x83,0x9a, +0x99,0xe4,0xb2,0x84,0xa6,0x54,0xcd,0xd9,0x1d,0x90,0xad,0x6f,0xee,0xc6,0x4a,0x02,0xc6,0x90,0x16,0x43, +0x5a,0x2c,0x6d,0x84,0xc4,0x45,0x3e,0xfd,0x57,0x92,0xb1,0x67,0xf2,0x69,0x7c,0x5b,0x83,0x4b,0x09,0x9a, +0x96,0xaa,0xef,0x80,0xbe,0x85,0xad,0xe0,0xe4,0x20,0xab,0xef,0xba,0x52,0xb7,0xaf,0x86,0xc0,0x3e,0xdc, +0x43,0x83,0xfd,0xa4,0xf7,0x8f,0x56,0x67,0xf7,0x9b,0x56,0x87,0x63,0x00,0x65,0xc1,0xa4,0x06,0xf7,0xfa, +0xc0,0xdd,0x41,0x10,0xd7,0xdd,0xa1,0xe4,0x77,0xc7,0xdb,0xed,0x6f,0x5b,0x6e,0xbd,0x16,0x03,0x3c,0xfc, +0xea,0xc0,0x6f,0x94,0xfb,0x3d,0x46,0x23,0xe4,0x81,0x3f,0xd9,0xc9,0xbc,0x91,0x5f,0x53,0x51,0x84,0xc6, +0x94,0x59,0x17,0x00,0xfb,0xed,0xdd,0x56,0xaf,0xdd,0x19,0x1f,0xec,0x3e,0x6d,0xf5,0x6a,0xf0,0xd1,0xc8, +0x01,0x1b,0x24,0x3d,0xdc,0x79,0xd6,0xea,0x8c,0x09,0x8c,0xb2,0xc7,0x94,0xd0,0xf2,0x66,0xbe,0x06,0x08, +0x19,0xee,0xfe,0x33,0xac,0xa8,0x98,0xa8,0xca,0x15,0x32,0x44,0x2d,0x57,0x7a,0x2d,0x80,0x42,0xb9,0x16, +0x4a,0xb4,0xd5,0x82,0x19,0xa2,0x96,0x69,0x51,0x8b,0xa9,0x36,0x42,0x49,0xcd,0x88,0x24,0x35,0x03,0x17, +0x6e,0xf2,0x47,0x25,0x88,0x19,0x42,0xcc,0x72,0x88,0xeb,0x12,0xc4,0x15,0x42,0x5c,0x29,0x88,0x2e,0xb9, +0xa2,0x1c,0x73,0x14,0x1a,0xa1,0x7e,0x34,0x25,0xc5,0x8f,0x23,0xfa,0xf7,0x1a,0x95,0x3f,0x3c,0x06,0x3a, +0x41,0x55,0xe6,0xd8,0x0b,0x3c,0x7c,0xb1,0xbf,0x57,0xd2,0xb2,0x66,0x16,0xd3,0xc0,0x3d,0xf9,0xa1,0x2c, +0x50,0x28,0xc6,0xa3,0x4d,0x6d,0x02,0x04,0x3d,0x52,0x1a,0x0a,0x63,0x16,0x82,0x54,0x8b,0x28,0xb4,0x28, +0xe4,0x24,0xc6,0x59,0x08,0x82,0xa2,0xc6,0x9f,0x39,0x78,0xc1,0x22,0xb0,0x5c,0x3e,0xa3,0xc9,0x8e,0xc4, +0x73,0x64,0x41,0xb6,0x93,0x98,0xa2,0x9f,0xa6,0xa6,0xcf,0xa8,0x66,0x55,0x84,0xe6,0x6b,0x9a,0x10,0x48, +0x93,0x1e,0x8d,0x82,0xf4,0x10,0xf6,0xe1,0xa8,0x3f,0xcb,0x42,0xf6,0x04,0xd1,0xb8,0xbd,0x9a,0x36,0x50, +0x9f,0x6e,0x6b,0x4b,0x69,0x06,0x27,0xe7,0xd1,0xc5,0xd6,0x56,0x0d,0xff,0xf3,0xb5,0xc2,0xc0,0x91,0xaa, +0xc2,0x9e,0x34,0xf2,0xc2,0x32,0x3d,0x2a,0xb8,0xd9,0xea,0x38,0xd7,0xc1,0x38,0x95,0xa9,0xb2,0xc2,0xcd, +0xb6,0x9b,0x1b,0x09,0x12,0xaa,0x24,0xba,0x55,0x4a,0xb2,0x3a,0x79,0x00,0x2f,0xbd,0xf5,0x44,0x95,0x3a, +0xdc,0x91,0xd2,0xe1,0xee,0x56,0x44,0xd1,0x14,0xaa,0xc4,0xe9,0x45,0xcf,0xf8,0x22,0x7c,0x44,0x84,0xcf, +0xbc,0x41,0x42,0x56,0x0e,0x3b,0x0e,0xf7,0x53,0x3d,0x90,0x4a,0x32,0xa9,0xb2,0xd0,0xa9,0xe6,0x7a,0x28, +0xa8,0xe2,0x78,0x70,0x52,0x34,0xa5,0x7d,0xe9,0xc2,0xa8,0x9c,0xd9,0xa4,0xe7,0x0d,0x63,0xa6,0xeb,0xf4, +0xc7,0xf1,0x15,0x59,0x88,0xeb,0xdd,0xce,0x2a,0xb3,0x22,0x68,0x9d,0x18,0xac,0xd5,0xd2,0x04,0xf2,0x7f, +0x14,0xea,0xc0,0x90,0x50,0xa1,0x24,0x4e,0x0a,0xe4,0x90,0x0b,0x29,0x61,0x92,0x1d,0x5e,0x67,0x42,0xbd, +0x5c,0xa2,0xe5,0x44,0x93,0x71,0x34,0xa1,0x4e,0xe5,0xd3,0x95,0x90,0x8e,0x39,0x6e,0x2f,0x32,0x13,0x24, +0x68,0x83,0x29,0x70,0x3b,0xc5,0xfc,0x62,0x05,0xd8,0xac,0x10,0x63,0xe9,0x2d,0x26,0xd2,0x2b,0xa8,0x1c, +0x22,0x49,0xd1,0xa9,0x1d,0x36,0x5d,0xf4,0x73,0x57,0x06,0x42,0x04,0x8a,0x50,0x32,0xbc,0x9b,0xb0,0xcc, +0x55,0xec,0x12,0x89,0x83,0x24,0xb8,0xe5,0xcb,0x40,0x5a,0x53,0xa1,0xe0,0xd8,0xd8,0x48,0x26,0x23,0xd2, +0xb8,0x8b,0x5f,0xc3,0x8e,0x99,0x2e,0x11,0xff,0x60,0xe5,0x97,0x04,0x78,0x49,0x3c,0x91,0x65,0xfb,0xe3, +0x59,0xb2,0x4a,0x51,0x84,0x13,0x25,0xdd,0x8e,0x78,0x9f,0xb5,0x89,0x56,0x51,0x8e,0x6b,0x93,0xb8,0x2e, +0x1f,0x21,0x96,0x52,0x88,0xa4,0xe8,0x80,0x92,0xa8,0x32,0x92,0x14,0x2c,0x3a,0x18,0x95,0xc8,0x50,0xc0, +0x97,0xa4,0xf1,0x2d,0x85,0xc5,0x56,0x24,0x39,0x51,0x9c,0x94,0x96,0xf3,0x98,0x86,0x8c,0x60,0x31,0x57, +0x2e,0x8a,0x2e,0x65,0x31,0x97,0x24,0x0e,0x4b,0xac,0xb8,0xe4,0x87,0xf0,0xd3,0x12,0xf9,0x26,0x17,0x25, +0x38,0x75,0x9b,0x20,0x6b,0x9a,0x15,0x4a,0x31,0x20,0x4c,0xab,0xa2,0x25,0x86,0x31,0xdd,0x69,0xab,0x11, +0xb3,0x5d,0x3a,0x34,0xa9,0x95,0x21,0x0a,0x7b,0x03,0x6f,0x50,0x22,0xee,0x5a,0xa7,0x64,0x17,0x53,0x86, +0x95,0xf2,0x7f,0xf3,0xdd,0x61,0xe5,0x26,0xcc,0x2c,0x65,0x29,0xd0,0x93,0xd1,0x7b,0x0f,0x69,0xf2,0xa1, +0xc7,0xe4,0x78,0x32,0x86,0x51,0xd4,0x91,0x73,0x54,0x25,0xa1,0x1b,0x99,0x92,0x5c,0x54,0x8b,0x3c,0x1c, +0x02,0x0d,0xf1,0xa7,0xa2,0x70,0x34,0x2b,0xae,0x6d,0x85,0xa5,0x74,0xe1,0x1a,0x4a,0x73,0xa5,0x1f,0x5e, +0xa3,0xa3,0x66,0x7d,0xd5,0xc9,0x94,0x13,0x52,0xe8,0x52,0xf6,0xd7,0x41,0x9d,0x7b,0x7d,0x5d,0x39,0x0e, +0x55,0xbe,0x7d,0xb0,0xa9,0xec,0x8a,0x11,0xa5,0xf2,0xab,0x06,0x0f,0x02,0xd8,0x17,0x6d,0x5c,0x0a,0x5c, +0x4f,0xc6,0x8f,0x59,0xb8,0x67,0x19,0x2b,0xdd,0x0a,0x9c,0xd4,0x59,0x06,0x6b,0xc4,0x66,0xbb,0x2b,0xfd, +0x48,0x91,0x0c,0x02,0x56,0x79,0x43,0x14,0x8d,0xae,0x41,0x24,0xb7,0x13,0xc5,0xe2,0x2c,0x0f,0x2b,0x2a, +0xc0,0xc5,0x9e,0xe0,0x69,0x39,0xb4,0x1d,0x88,0x70,0xce,0xc2,0xa0,0x38,0x9a,0x4c,0xc2,0x84,0x8c,0x39, +0xf6,0xa1,0x36,0xcd,0xb6,0x63,0x6b,0x4b,0xb4,0xb2,0xa9,0xb5,0x22,0x21,0xc8,0x48,0x00,0x8e,0x4b,0xe5, +0x56,0x39,0x9f,0x9e,0xa7,0x1e,0x22,0xdb,0x90,0x82,0x16,0xe5,0xa8,0x5a,0x6b,0x00,0x12,0x06,0xe1,0x44, +0x8b,0xbc,0x94,0xd2,0xd1,0x46,0xbe,0xa1,0x31,0x7f,0x03,0xde,0xd3,0xa5,0x01,0x88,0xe5,0xad,0x8d,0x2c, +0xac,0x48,0xff,0xf9,0xd6,0xe9,0x04,0xbe,0x15,0x4d,0x68,0x44,0xd7,0x93,0xb6,0xc1,0xbd,0x9a,0x85,0x26, +0x54,0x6a,0x83,0x3a,0x0d,0x32,0x13,0x6a,0x6e,0x83,0xfa,0x39,0x28,0xb4,0x98,0xd8,0xa0,0x4e,0xc8,0xc1, +0xad,0x06,0x35,0xb4,0x41,0x91,0x3c,0xd2,0x84,0xeb,0xdb,0xe0,0x50,0xe4,0x67,0x82,0x05,0x36,0x30,0x12, +0xa9,0x99,0x70,0x53,0x1b,0x9c,0xea,0xb7,0x7b,0x11,0x1f,0x12,0x6d,0x39,0x72,0xdf,0x78,0xc6,0x90,0x0f, +0xc4,0x6c,0x37,0x42,0x8e,0xab,0xee,0x65,0x1b,0xcb,0xd8,0xdf,0x6b,0x6d,0x27,0x4d,0x61,0x98,0xd4,0x2d, +0x34,0x57,0x10,0x79,0xf1,0xf5,0xd8,0x41,0x23,0x33,0xe1,0x66,0xff,0x33,0xc7,0xde,0x24,0x86,0x3b,0x75, +0x53,0x0d,0x38,0xbc,0x26,0x34,0x73,0xf3,0xab,0xad,0xad,0xcd,0x48,0x5e,0x87,0x5b,0xdd,0x89,0x1e,0x36, +0xd8,0x71,0x3c,0x46,0x06,0x7e,0xdd,0xa3,0x77,0x40,0xd3,0x74,0x51,0x57,0x3c,0xc0,0x57,0xc8,0x71,0x5d, +0xd7,0x61,0x10,0xa7,0x37,0x8e,0x32,0xdc,0x40,0xab,0x27,0xc7,0xcd,0xed,0xef,0xa7,0x1f,0xc9,0xc8,0xdf, +0xad,0x57,0x96,0x20,0xaf,0x58,0xd6,0x22,0x70,0x84,0xc0,0x88,0x39,0x34,0xb1,0x39,0x12,0xb7,0x8e,0xf4, +0xb8,0x8e,0x90,0xf7,0x1c,0xac,0xe8,0x2e,0x33,0xe9,0xb9,0x97,0xee,0xae,0x2a,0x26,0x4a,0x81,0x57,0x70, +0x99,0xb7,0xf6,0xd5,0x7a,0xdc,0x1e,0x30,0x0e,0x82,0x95,0x99,0x90,0x7f,0xc0,0x4d,0x84,0x48,0x12,0xe1, +0xa0,0x55,0xea,0x3d,0xfa,0xcc,0x34,0x6c,0x58,0xd1,0x53,0xd4,0x2d,0x13,0xdb,0x18,0x18,0xb4,0x37,0x34, +0xee,0x0d,0x56,0xe2,0x77,0x75,0x89,0x4a,0x7e,0xe7,0x76,0xae,0x1a,0x22,0x36,0x57,0x4a,0x57,0x7a,0xf7, +0x8f,0xd6,0xee,0xfe,0xd1,0x8a,0xe8,0x8c,0x56,0x60,0x67,0x6d,0xd6,0x50,0xe8,0x35,0xda,0xee,0xf6,0x95, +0xbb,0x23,0x3f,0xe5,0xf0,0x58,0xed,0xca,0x66,0x9c,0xe9,0xf3,0xed,0x2f,0x73,0x73,0x8d,0x47,0x7d,0x35, +0xd0,0xea,0x34,0x2f,0x69,0x22,0x9f,0xfc,0x90,0x15,0x0f,0x56,0xca,0x4c,0xf8,0xbc,0x75,0x41,0x8e,0x0b, +0xf3,0x84,0xf6,0x05,0x9f,0x92,0x70,0xdb,0xb2,0x5b,0x06,0x97,0x9a,0x8c,0xcc,0x2d,0x38,0x95,0x01,0xd4, +0x81,0x3a,0x2f,0xf0,0xdb,0x1e,0xad,0x45,0x91,0x5c,0x8b,0xbc,0x09,0x24,0xc1,0xc4,0xf7,0xd0,0x46,0x7b, +0x84,0x76,0xda,0x3e,0x4a,0x8a,0x50,0xce,0xd3,0xee,0x46,0x4d,0x34,0xe3,0x64,0x43,0xe2,0x66,0x00,0x60, +0x05,0xb1,0x0d,0x5c,0x79,0x60,0xb0,0x96,0x53,0x87,0x38,0x71,0x4a,0xa9,0x7d,0x17,0x2a,0x87,0x6b,0x2c, +0x54,0x0f,0xdb,0x17,0x34,0x90,0xa2,0x7f,0x61,0x76,0x10,0x54,0x7c,0x3a,0xc8,0x5f,0x28,0x84,0x8f,0xaf, +0x23,0x2d,0x66,0x83,0x5a,0x5b,0x85,0x67,0xaa,0x23,0x21,0xc0,0x2c,0xc9,0x10,0xbb,0xd7,0x05,0x31,0x12, +0x9a,0x05,0x8d,0x49,0x82,0x34,0xa0,0x7f,0xd9,0xb8,0x68,0x42,0xd2,0xa4,0xeb,0xe6,0x15,0x3a,0x1e,0x25, +0x71,0x52,0xcb,0x6b,0x91,0x38,0xc9,0xbb,0xce,0x45,0x4c,0x32,0xed,0x5e,0x05,0x2a,0x57,0x07,0x43,0x62, +0xd2,0x66,0xb9,0xf7,0x87,0x25,0xba,0xb4,0xe7,0x22,0x41,0xd8,0xd0,0x42,0xd8,0xef,0xbf,0x0b,0xf3,0xcf, +0xb9,0x3f,0xac,0xa2,0xcd,0xbb,0xf5,0xe7,0xe2,0x4a,0xf6,0x03,0x5c,0x9a,0x83,0xe4,0x25,0x3a,0xf4,0x42, +0xa1,0x2b,0x22,0xda,0xc2,0xdd,0xe3,0x96,0x8e,0x1b,0xd8,0xf1,0xa7,0x59,0x3c,0x85,0xf4,0x2a,0x16,0xb4, +0x5d,0xac,0xcf,0x84,0x6e,0x57,0x42,0xb7,0x10,0x7a,0xae,0x71,0xf6,0x16,0xbe,0x4c,0xde,0x61,0x40,0x64, +0x01,0x62,0xa4,0xd1,0x66,0xf8,0xae,0xc4,0x15,0xf5,0x24,0x2b,0x78,0xf2,0x6e,0x11,0x4f,0xde,0xfb,0xef, +0x2a,0x79,0xd2,0xf7,0xdf,0x2f,0xe1,0x49,0xdf,0xc6,0x13,0x1c,0xa0,0x3a,0x89,0x48,0x60,0xdf,0xc6,0x0e, +0x84,0x37,0xc1,0xde,0x6b,0x7c,0xe8,0x8b,0xaf,0x32,0xc9,0xbf,0x95,0x48,0xd6,0xde,0x70,0x05,0xd1,0xbf, +0x2d,0x22,0xfa,0x47,0xff,0xb7,0x4a,0xa2,0x3f,0xf8,0x3f,0x2e,0x21,0xfa,0x83,0x95,0x68,0xee,0x59,0x26, +0x5d,0x50,0xf3,0xc1,0x4a,0x34,0x03,0xb6,0x72,0xb0,0x1f,0x35,0xa2,0x3f,0x88,0xaf,0x32,0xd1,0x9f,0x4a, +0x44,0xe7,0x2f,0xbe,0x82,0xe6,0x4f,0x8b,0x68,0xbe,0xf1,0x3f,0x55,0xd2,0x7c,0xea,0xdf,0x2c,0xa1,0xf9, +0x74,0x01,0xcd,0xdc,0x87,0xa8,0x72,0x8f,0x55,0x2d,0xa0,0x99,0x01,0x69,0xc0,0xdf,0x68,0x34,0x9f,0x8a, +0xaf,0x32,0xcd,0x6f,0x4a,0x34,0xbf,0x2a,0x90,0xfc,0x66,0x11,0xc9,0xc7,0xfe,0x9b,0x4a,0x92,0x3f,0xfa, +0xc7,0x4b,0x48,0xfe,0x58,0x22,0xf9,0xd1,0x75,0xab,0x85,0x45,0xcd,0x8c,0x66,0xfb,0x19,0xff,0xf9,0x06, +0x21,0xae,0x6d,0x10,0x5f,0xcb,0x3f,0x00,0xd1,0xb2,0x42,0xec,0x51,0xce,0xb5,0x25,0xe7,0x99,0x56,0x7b, +0xab,0x65,0x83,0xf8,0x56,0xab,0xfd,0xda,0x06,0xd1,0x56,0xa8,0x1f,0x6b,0x6c,0xff,0x28,0xbe,0xca,0x6c, +0x7f,0x55,0x62,0xbb,0x52,0xb7,0x11,0x6c,0x7f,0xb5,0x88,0xed,0x97,0x76,0x47,0x07,0x4a,0xdb,0xb6,0x36, +0x83,0x95,0x7f,0xea,0x76,0x2f,0x9b,0x49,0x71,0x5b,0xbb,0xc4,0x2d,0xf0,0xb2,0x39,0x2c,0xa7,0x0f,0x31, +0xbd,0x5f,0x4e,0xef,0xf3,0x9e,0x77,0xe2,0xbf,0xaa,0xec,0xea,0xd7,0xfe,0xc9,0x92,0xae,0x7e,0x5d,0x31, +0xba,0x2f,0xd1,0xe2,0xd9,0xc3,0xff,0x87,0xe2,0xff,0x3e,0x4f,0xd9,0xd7,0x15,0xa3,0xbc,0x80,0xde,0xd4, +0x6a,0x78,0x5d,0x9d,0x8a,0x55,0x9f,0x68,0x5d,0xf4,0x5a,0x7c,0x95,0xbb,0xe8,0x6d,0xa9,0x8b,0x94,0x2a, +0x91,0xe8,0xa2,0xb7,0x8b,0xba,0xe8,0x70,0x79,0x17,0x5d,0xc1,0x3e,0xd6,0x3d,0x2c,0x77,0xd1,0x21,0x76, +0xd1,0x61,0xb9,0x8b,0x0e,0xb1,0x8b,0x0e,0xcb,0x5d,0x74,0x28,0xbb,0xe8,0xa5,0xff,0xb6,0xb2,0x8b,0xce, +0xfc,0x97,0x4b,0xba,0xe8,0xac,0xa2,0x8b,0x0e,0x45,0x17,0x1d,0x8a,0x2e,0x3a,0x94,0x5d,0x74,0x56,0x9e, +0x03,0x2d,0x9a,0x03,0x2f,0x35,0x06,0x9f,0x89,0x2f,0x93,0xc1,0x2b,0x1d,0x65,0x0d,0x39,0x74,0xe1,0x19, +0x62,0xf9,0x49,0xb6,0x4a,0xd4,0x43,0x07,0x4b,0x32,0x1e,0xa0,0x63,0x6a,0xb6,0xc6,0x31,0xb5,0x42,0x56, +0x81,0x63,0x21,0xaa,0x3c,0xee,0xa5,0xf6,0x72,0x42,0x6b,0x00,0x9f,0x8d,0xad,0xf9,0x42,0x7d,0x11,0x00, +0x84,0x36,0xf8,0x55,0x9c,0xd6,0x76,0xb7,0xe5,0xa3,0x2e,0x0c,0x24,0x17,0xfe,0x49,0xa5,0x66,0x78,0x1a, +0x4d,0x6c,0xb9,0x63,0x3f,0x92,0x17,0xa0,0x9d,0x5d,0x38,0xf9,0x46,0xea,0xf2,0xb1,0xb3,0xdb,0x4d,0xf9, +0xfe,0x42,0x57,0x1d,0x6f,0x5c,0x8f,0xb7,0x35,0x58,0xba,0x74,0xb8,0x9e,0x00,0x81,0xee,0x75,0xbc,0x41, +0x63,0xb2,0xad,0x97,0x17,0x20,0xed,0x82,0xd4,0xd1,0xf0,0x85,0x22,0x3d,0xff,0x54,0x43,0x6c,0x6d,0xb5, +0x8a,0x62,0x4b,0x38,0x9d,0xf6,0x02,0x6e,0x38,0x9e,0x06,0x57,0x70,0xe8,0xc7,0x2d,0xad,0x53,0x4c,0x6a, +0x37,0x6a,0x49,0x73,0xbe,0xdf,0xdc,0xed,0x35,0x77,0x3b,0xf0,0xcb,0x95,0x5e,0x6d,0x2d,0xb2,0x22,0x63, +0xde,0x8e,0x2a,0xfb,0x6a,0x66,0x2b,0x2b,0x7b,0xaa,0x3b,0xd3,0x98,0x01,0x1c,0xde,0x1e,0x99,0x37,0x39, +0x6e,0xfe,0xca,0x26,0x84,0x32,0x9a,0xbf,0xaa,0x6c,0x7e,0x6a,0x2b,0xab,0x9a,0x9f,0x6a,0xcd,0xd7,0xda, +0x0d,0xe8,0x5e,0xb8,0x26,0xda,0x50,0x38,0xb2,0x49,0xb8,0x0c,0x14,0x16,0x5d,0x4e,0x2c,0x65,0x15,0x0a, +0xd7,0x45,0x14,0xe6,0xee,0xf6,0x91,0x0d,0x85,0xa1,0x4d,0x7c,0xb6,0xf4,0x1a,0x21,0xef,0x10,0x96,0xb2, +0x0a,0x85,0x79,0x11,0x85,0xc4,0xdd,0x1e,0xda,0x50,0xb8,0xb5,0xcb,0xe6,0x0c,0x24,0x6e,0x2b,0x91,0x78, +0x67,0x2f,0xad,0xd0,0x78,0x57,0x44,0x63,0xe8,0x6e,0xdf,0xda,0xd0,0x78,0x6f,0x15,0xfd,0x19,0x58,0xbc, +0xaf,0xc4,0xa2,0x6f,0x2d,0xac,0x90,0xe8,0x17,0x91,0xe8,0xbb,0xdb,0xef,0x6d,0x48,0xfc,0x66,0x17,0x2c, +0x2e,0x3d,0xce,0xcb,0xb3,0xbc,0xb5,0xb4,0x42,0xe3,0xc7,0x22,0x1a,0x81,0xbb,0xfd,0x5b,0x11,0x8d,0x75, +0x56,0x7c,0xd2,0x71,0x83,0xb5,0xc0,0x2f,0x7b,0xd8,0xb3,0xbc,0x5b,0x56,0xbc,0x5a,0xae,0xd2,0xd2,0x31, +0x29,0x4a,0xac,0xbb,0xb3,0x14,0x5f,0x5f,0x8a,0xc6,0x2b,0xe2,0x31,0x5c,0xc6,0xb6,0x42,0x7f,0xb4,0x25, +0x03,0x97,0x22,0x48,0xe1,0x6d,0x49,0x38,0xa6,0x42,0x95,0x02,0x66,0x6e,0x6e,0xcf,0xe0,0x18,0x2e,0x98, +0x6a,0x9a,0xb0,0x84,0xdd,0xd7,0xc8,0xaa,0x28,0xad,0x39,0x3f,0x68,0xee,0xf5,0x44,0x1d,0x22,0xe8,0x91, +0xd3,0x1f,0x07,0xf4,0x5c,0x5d,0x48,0xbe,0x25,0x77,0xf6,0xee,0x02,0xe5,0x13,0x66,0xda,0x21,0x85,0x67, +0xc4,0xd3,0x45,0x12,0x8f,0x0d,0x7d,0x0e,0x29,0x5a,0xcd,0x9f,0x51,0xf5,0xbd,0x35,0xd0,0xcb,0x39,0xac, +0xde,0xd4,0xda,0x54,0x9e,0x8f,0xe4,0x6e,0x59,0x2b,0x3c,0x53,0x69,0x6c,0xa1,0xcd,0xd2,0xd8,0xc3,0xa5, +0x46,0x07,0x60,0x19,0x0c,0xc3,0xff,0xc1,0x27,0x12,0xe9,0x4a,0x97,0x82,0x4e,0x37,0xd9,0xfc,0x22,0xf7, +0xb1,0x47,0x1c,0x25,0x58,0xbf,0x02,0x14,0x3d,0x35,0x12,0x80,0xc7,0x80,0xbf,0x2c,0x03,0xfc,0x85,0x1e, +0x90,0xd5,0xdc,0x31,0x0f,0x07,0x4c,0x55,0x0c,0x54,0x2e,0x3a,0x03,0x4c,0xfc,0x9a,0x15,0x20,0x3f,0x04, +0x48,0xac,0x1b,0x11,0x3e,0xa1,0x61,0xe0,0x68,0x8c,0x2c,0x74,0x9d,0x35,0xb4,0x3d,0xdb,0xdd,0xa9,0xe9, +0x5f,0x68,0x23,0xd6,0x10,0xe5,0x7e,0xd1,0xcb,0xc1,0x44,0x6d,0xe8,0x1b,0x39,0x95,0xd3,0x3e,0x39,0x0e, +0x40,0x95,0x73,0x30,0x97,0x65,0xfc,0x0a,0xa1,0x5a,0xa4,0x9d,0x39,0x9f,0x0b,0x97,0x65,0x47,0x63,0x3c, +0x5b,0xd2,0x99,0x4f,0xe0,0x29,0xfd,0x89,0xd1,0x97,0xbb,0x00,0x6d,0x03,0xeb,0xe5,0x95,0x23,0x31,0xaa, +0x6e,0xf8,0x70,0x17,0x93,0xc6,0xc2,0x74,0x8b,0x0e,0xde,0xc4,0xd0,0xc0,0x1b,0x93,0xfe,0xdd,0x00,0x43, +0x42,0xd6,0x06,0x7e,0x1b,0x0f,0x42,0xe8,0x41,0x6d,0x6b,0x6b,0xb0,0xcf,0xbf,0x94,0x2f,0x35,0x02,0x68, +0x49,0xa7,0xff,0xec,0x56,0x59,0xd8,0xdf,0xe5,0x7a,0x79,0xe3,0x9d,0x09,0x60,0xa2,0xce,0x67,0x6e,0x77, +0xb4,0x8f,0x23,0x71,0x54,0xf7,0x9b,0x7b,0x40,0xb0,0xfe,0x21,0xdf,0xa7,0x5f,0xa5,0xf3,0xda,0xc8,0x1b, +0x60,0x6c,0x10,0x37,0xb7,0xbd,0x2c,0x8d,0x33,0x53,0xbc,0x5f,0x39,0xde,0xa4,0x76,0x25,0x72,0xb7,0x62, +0x48,0xb8,0x3b,0x39,0xa7,0x56,0x18,0x01,0x5a,0x3d,0x0f,0xe8,0x24,0xa3,0x31,0x3e,0x79,0x01,0x17,0x80, +0x67,0xe3,0x83,0x36,0x6a,0x1c,0x76,0x25,0xbf,0x67,0x45,0x7e,0xf7,0x66,0x7e,0xab,0xa3,0x72,0x0f,0xda, +0x8d,0x72,0x7f,0xcc,0xf4,0x0e,0x9b,0xc1,0x02,0x58,0x86,0x99,0xed,0x37,0xf7,0xea,0xb6,0x92,0xd8,0x05, +0xb1,0xb6,0x9f,0xcd,0xb4,0x23,0xaf,0x38,0xf0,0x5a,0x26,0x3b,0xbd,0x0d,0x6e,0x6d,0xc9,0xbe,0xc3,0xeb, +0x5d,0xbb,0x31,0x83,0xbe,0x1b,0xc2,0xdf,0xbe,0xb5,0x88,0x78,0x28,0x34,0x0b,0x05,0xcd,0xc4,0xe3,0x82, +0xf6,0x42,0xfc,0x6a,0x58,0x2e,0x83,0x0d,0xa1,0xc2,0xa2,0xad,0xcc,0x2b,0xb3,0x08,0x8e,0x2b,0x6c,0x20, +0xa5,0x91,0x65,0x2b,0x40,0x8f,0xa6,0x66,0x81,0xa0,0x39,0x12,0x78,0xd9,0x8b,0xd0,0x0b,0x6a,0xb9,0x08, +0xb6,0x52,0x85,0x96,0x78,0xd9,0xcc,0x0b,0x51,0x02,0xa9,0x5d,0xde,0x2f,0xd0,0x90,0x90,0x81,0x02,0xab, +0x8e,0x06,0xb4,0x33,0x2c,0x2c,0xce,0xea,0x8a,0x45,0xdd,0x60,0x53,0x0f,0x40,0x1a,0x08,0x08,0xbf,0x02, +0xe8,0x34,0x1d,0xa5,0x01,0x64,0x11,0x8a,0x4a,0x0a,0xd2,0x33,0xe3,0x81,0xdf,0x92,0x7b,0x3b,0x6f,0xb7, +0x86,0xc3,0x3d,0x3d,0x7d,0x5b,0x2d,0x2d,0xed,0x96,0x56,0x81,0x54,0xd3,0xb5,0x64,0x54,0x6e,0xf3,0xe1, +0x82,0x1d,0x3a,0x2d,0xd3,0x97,0xbf,0x79,0xea,0x1e,0xc2,0x80,0x6e,0x49,0x64,0xd4,0x33,0xd5,0x6e,0x22, +0x28,0xd1,0x59,0x7c,0x7a,0x4a,0x4b,0xbd,0x40,0x0e,0x20,0x45,0xf0,0xa7,0xe2,0x73,0x51,0xa8,0x1a,0xe0, +0xc3,0x0e,0xc2,0x76,0xa4,0x8f,0x84,0xa4,0xa7,0x0d,0xe6,0x00,0xbd,0x16,0x7b,0xd0,0x4d,0xf0,0xb7,0x0f, +0x7f,0x03,0x1d,0x72,0xd4,0xd3,0xc6,0x17,0x42,0x8e,0xd0,0x8f,0x3a,0xfc,0x9d,0x17,0x21,0x83,0x9e,0x39, +0xa8,0x44,0xf6,0x52,0x9a,0x10,0x03,0x83,0x73,0x1e,0xd9,0x63,0x03,0xff,0xa4,0xe2,0x28,0xbd,0xab,0xfb, +0x9b,0x2d,0xe9,0x20,0x51,0x3b,0x8d,0xc4,0x4d,0x38,0x17,0xc2,0xda,0x31,0xf4,0x13,0xf8,0xb7,0xef,0x47, +0x1e,0xa3,0x83,0x46,0xc7,0x31,0x0c,0x8c,0x34,0x7f,0x1d,0x97,0x26,0xe0,0xdc,0x84,0xea,0x88,0x18,0x03, +0x44,0x01,0x55,0x31,0xc6,0x86,0x02,0xca,0x62,0x0c,0x0b,0x05,0xd4,0x55,0x1e,0x6f,0x4b,0x07,0xe1,0x40, +0x4c,0x27,0xed,0x74,0xbb,0xf4,0x24,0xcc,0x74,0x17,0xac,0xd1,0xd1,0xae,0x5b,0x9f,0x56,0xaa,0x7b,0x28, +0x93,0x74,0x7d,0xa3,0xc5,0xc3,0x10,0xfb,0xe8,0x33,0x78,0x39,0x22,0x5e,0xa6,0xc4,0xcb,0xf9,0x22,0x5e, +0x2a,0x79,0x5a,0x91,0x97,0x09,0xf0,0x2e,0xa1,0xfe,0x98,0xc0,0x78,0xc2,0x1e,0x99,0xc0,0x98,0xfa,0xc3, +0x79,0x59,0xb6,0xec,0xb7,0xf0,0x92,0x07,0xf0,0xca,0xbc,0xa4,0x51,0x6c,0x9d,0x6b,0x1b,0x8a,0x9b,0xa4, +0xe7,0xe5,0x2b,0x1d,0x4e,0xb9,0x1c,0x85,0x6b,0x50,0x9c,0x3d,0x84,0xe2,0x51,0x7c,0x6b,0xf7,0x71,0xcd, +0x07,0x78,0x8f,0x55,0x2d,0xd0,0x67,0x43,0x41,0x0b,0xc5,0x5c,0x70,0xf1,0x99,0x99,0xdd,0xe3,0x92,0x3f, +0x52,0xa9,0xb9,0x96,0x2e,0x54,0xe2,0x05,0x5e,0xa2,0xe0,0x71,0xb3,0x85,0x6a,0x75,0x42,0x56,0x75,0x87, +0x7e,0x6a,0x93,0x95,0x4f,0x22,0x52,0x37,0xe3,0x95,0xf1,0x26,0x4f,0x2e,0x6f,0xab,0x2b,0x29,0x1f,0x68, +0xc5,0x1b,0xfd,0xca,0xba,0xb6,0x0b,0xee,0xac,0x9a,0x4e,0x7d,0xc2,0x77,0x45,0xb4,0x1b,0x08,0x06,0xd0, +0x21,0xa8,0xd2,0xa3,0xf9,0x0e,0x46,0x55,0x1e,0xdd,0xfd,0x2f,0xaa,0x85,0x35,0x51,0x35,0x8f,0x34,0x59, +0xad,0x56,0xf9,0xae,0xd2,0xf4,0x4b,0x4b,0x5b,0xb2,0xd2,0x1d,0x93,0x67,0xc8,0xdc,0x86,0x3c,0xbd,0x82, +0x2b,0xdb,0xf8,0x0c,0x78,0x8d,0x77,0x95,0xd5,0xb9,0xdb,0x9d,0xec,0xc7,0xbd,0xbc,0x1a,0x44,0x1e,0xe8, +0xad,0xdd,0xa9,0xfa,0x3a,0x93,0x7b,0x58,0xb6,0x8b,0x9d,0x70,0x10,0xd7,0x75,0xfd,0x38,0x4e,0x86,0x43, +0x9c,0x01,0xb4,0xb5,0xb5,0xb8,0xe2,0x62,0xa5,0x8d,0x72,0x95,0xf5,0x42,0x95,0xf7,0x8b,0x74,0x33,0x91, +0xd3,0x36,0xab,0x75,0x43,0x5b,0x02,0x3f,0xfc,0x4a,0xd5,0x07,0xba,0x7c,0x62,0x57,0xbe,0x85,0x99,0x65, +0xdc,0xf7,0xcd,0x6e,0xad,0xec,0x3c,0x56,0xca,0xa3,0xc5,0x42,0x68,0xd9,0xfa,0x77,0xf7,0x8b,0xb4,0x83, +0x0d,0x05,0x10,0x1d,0xe3,0x4a,0xbf,0xed,0x52,0x17,0x54,0x78,0xd1,0x90,0xd0,0x05,0x3d,0x56,0x24,0xa5, +0x22,0x8b,0xe7,0x62,0x98,0x89,0x18,0x8e,0xba,0xe3,0x78,0x58,0x09,0xc4,0xb5,0xbe,0x42,0x61,0xf6,0xde, +0x15,0x0b,0xfd,0x24,0x98,0x47,0xc3,0x20,0x83,0x25,0x0c,0xb5,0x6c,0x0f,0x87,0x78,0xed,0x16,0xde,0x94, +0x0e,0x27,0x83,0x04,0x17,0xbd,0xe6,0xf6,0xc6,0xf7,0x11,0x4c,0xb5,0xf8,0xe3,0x0e,0x60,0xb3,0xb4,0x41, +0x1b,0x96,0x5a,0x36,0x86,0xdc,0x25,0xb5,0x56,0xc3,0x14,0x72,0x05,0x84,0xef,0x8d,0xee,0x28,0x69,0x59, +0x3f,0xa4,0x03,0x94,0xe9,0x8b,0x36,0xb7,0x7f,0xff,0xbd,0xa6,0xcc,0x04,0x92,0x7c,0x89,0x10,0xa2,0x26, +0x5a,0x26,0x70,0x42,0x70,0xcd,0x70,0xfe,0x1a,0x0e,0x31,0x36,0xa4,0x88,0xaa,0x60,0x43,0x91,0x74,0x74, +0xad,0xd2,0x9b,0x45,0xd8,0xa1,0x76,0x8e,0x7e,0x8a,0xcc,0x5b,0x77,0xbb,0xb0,0x39,0x47,0xf9,0x29,0x32, +0xf5,0x36,0xdb,0x96,0x66,0x19,0xa3,0x2f,0xda,0x6e,0x94,0xcf,0x22,0xe5,0x94,0x1d,0x06,0x44,0xcf,0x44, +0xa6,0x85,0xd6,0x11,0x12,0x50,0xfa,0x75,0xdf,0xda,0xda,0x04,0xac,0x1d,0xc7,0x64,0xa3,0x56,0x3b,0xdb, +0xf9,0x49,0x19,0x9d,0x4e,0x4e,0xd9,0xd8,0x61,0xed,0xae,0xe6,0xbd,0x51,0x4a,0x11,0x13,0x63,0xe1,0xd7, +0x44,0x85,0x70,0x7b,0x12,0x1d,0x2a,0xda,0x16,0xfa,0xd9,0x8e,0x0d,0x9f,0x82,0xe9,0xc1,0x67,0xe2,0x44, +0x22,0x87,0xc5,0x1a,0xe1,0xd1,0x62,0x8d,0x70,0x69,0xd2,0x22,0xad,0x71,0x42,0x94,0xa0,0x01,0xea,0xae, +0x34,0x7a,0x32,0x93,0x69,0xfb,0x2a,0xc7,0xa9,0x10,0xce,0xcc,0xef,0x30,0xb7,0x73,0x7e,0x71,0x9f,0x8b, +0xfe,0xe0,0x4c,0x58,0x30,0xb6,0x94,0xb2,0x3e,0xb2,0xb9,0x0c,0xa8,0xc2,0xe6,0x74,0x96,0x8e,0x6a,0xe9, +0x79,0x8c,0x31,0x2e,0x0d,0xc2,0xd3,0x59,0x8a,0x2a,0xb2,0xe1,0xe0,0x05,0x23,0x80,0x31,0x54,0x17,0x99, +0xa5,0x7c,0xb9,0x3e,0xde,0x34,0x3b,0x19,0xe7,0x4e,0x69,0xda,0x5a,0x7a,0x9e,0x96,0x28,0x13,0x47,0x9b, +0xb1,0x71,0x35,0x9e,0x80,0x50,0xc2,0xa1,0xa2,0xd2,0x4c,0x93,0x36,0x4a,0xdd,0xf6,0xbc,0x4b,0x4a,0x94, +0xc0,0x61,0xb2,0xa6,0x64,0xde,0xab,0x88,0x78,0x49,0x80,0x8a,0x41,0xa0,0x6b,0xae,0x10,0x10,0xe1,0x89, +0x45,0x51,0xc9,0xa2,0x2b,0xc4,0xd6,0x42,0xd0,0x5f,0x8f,0x94,0x35,0x28,0x28,0x5a,0x57,0xff,0x55,0x48, +0x78,0x48,0x6f,0xd8,0x8d,0xb0,0xff,0xce,0x14,0xe9,0xce,0x96,0xbe,0xfc,0xf3,0x45,0xb4,0x80,0x78,0xb8, +0xb8,0x56,0x11,0x8f,0xa7,0xed,0x40,0x5b,0x76,0xb5,0xcb,0x90,0x69,0xce,0xe3,0xde,0x05,0x15,0x07,0x84, +0x38,0x27,0x9d,0x57,0x6b,0x6a,0xe4,0xf2,0xbb,0xb7,0x6f,0xce,0x2e,0xcf,0xe0,0x48,0xfe,0xf2,0xc5,0xc9, +0xe5,0x8b,0x9f,0x5f,0xbc,0x39,0x3b,0xc5,0xf6,0x1e,0x6e,0x6f,0x16,0x3f,0xd0,0xde,0x4c,0x5c,0xd9,0xe3, +0x85,0x0b,0xb0,0xab,0x2f,0xed,0x13,0xb5,0xb4,0x8f,0xf1,0xf2,0x0e,0x55,0xa1,0xd6,0x6f,0x77,0xb0,0x3f, +0x96,0x6b,0xfc,0x00,0xd6,0xf8,0x1c,0x1f,0xa7,0x5e,0xc3,0xe8,0x90,0xe3,0xf3,0xc1,0x45,0x13,0xa3,0xc9, +0xa4,0xd3,0xe0,0x2a,0xec,0x39,0x4e,0xc7,0x69,0x3a,0x75,0x33,0xd5,0xf5,0xe8,0x7b,0xc4,0xc8,0xba,0xf7, +0x5a,0x4f,0xc2,0x01,0x20,0x37,0xc4,0x14,0xcf,0x4a,0x81,0xed,0xed,0x0b,0xef,0xb5,0x2b,0x8d,0x53,0xb6, +0x5e,0x8a,0x8b,0x43,0x13,0xe3,0xa6,0xf1,0x8d,0xc3,0xee,0x81,0xcb,0x3a,0xc9,0xd6,0x1a,0x9c,0x89,0x1a, +0x9c,0x19,0x3d,0x29,0x02,0x8b,0xbf,0x63,0xa3,0xe9,0x9a,0xf4,0xc1,0xf6,0x25,0x26,0xab,0xf4,0x42,0x68, +0x65,0x52,0x66,0x99,0x94,0x48,0x9d,0x43,0x81,0xd0,0xcc,0xdd,0x56,0x73,0x1f,0x66,0x25,0x9e,0x48,0xdf, +0x30,0xf1,0x6c,0x1a,0xf6,0x56,0xb0,0xc5,0xda,0xc2,0x55,0x65,0xcb,0x4e,0xdd,0x59,0xf9,0xd6,0x5e,0xbc, +0xb2,0xdf,0x1b,0xab,0x88,0xe1,0x03,0xaf,0x68,0xd5,0xce,0x97,0x18,0xab,0xb1,0x69,0x7e,0xdc,0xb5,0x9a, +0xa2,0x56,0xb3,0x3c,0x8f,0xdb,0xa0,0x6c,0xad,0xb4,0x2e,0x48,0xf5,0x93,0x45,0x6a,0x9e,0x2c,0x02,0xcb, +0xc9,0x22,0x15,0x97,0x09,0x94,0xb5,0x87,0x5a,0x2c,0x36,0xbc,0xda,0x7c,0x32,0xaf,0x50,0xce,0x39,0x5b, +0xc2,0xe3,0x5c,0x27,0xb1,0xd2,0x94,0x50,0xb6,0x46,0xa3,0xbf,0x33,0xc3,0x0f,0xe1,0xf5,0x48,0xbf,0x4f, +0xc9,0x79,0x15,0x36,0x39,0x9e,0x5e,0x02,0x77,0x16,0xf9,0xb3,0x79,0x13,0xff,0x3b,0x1a,0x8f,0x29,0x42, +0xa9,0x55,0x73,0x4e,0x9a,0xfb,0x4b,0x4b,0x00,0xbf,0xb9,0xeb,0x2e,0xc5,0xdd,0x34,0xe7,0x65,0x5f,0x88, +0x18,0xcc,0x96,0x07,0xcd,0x3b,0x98,0xdd,0x6f,0xe9,0x6d,0x57,0xf9,0x42,0x9c,0xc6,0x69,0x44,0x81,0x99, +0x36,0x82,0x7e,0x1a,0x8f,0x67,0x59,0xd8,0xdd,0x40,0x91,0x12,0x1c,0x42,0x37,0x48,0x2c,0x84,0x3f,0x84, +0x29,0x07,0xfe,0x64,0xf3,0x0d,0xf8,0xa5,0xb9,0x4d,0xe4,0xe1,0xaa,0x5c,0x8c,0x40,0xc7,0x0a,0xff,0x22, +0xcf,0x3f,0x1d,0x0f,0x6a,0xe5,0xb6,0x2b,0x1f,0xce,0xba,0x2a,0x0a,0x53,0x52,0xf0,0xc6,0xc7,0x82,0x0e, +0xb1,0xc4,0x63,0xac,0x67,0x9c,0x72,0x79,0x95,0xcf,0x67,0xc3,0xef,0xa3,0x8f,0xc6,0x5d,0x16,0x91,0x0a, +0xbf,0x2c,0x52,0xa1,0xd7,0x62,0xf7,0xfd,0xd7,0x19,0x3d,0x7a,0x86,0x28,0xf3,0x81,0x9b,0xea,0xa2,0xc8, +0x52,0x2d,0xba,0x33,0xdf,0xc3,0xc8,0xab,0x71,0x48,0x2f,0x2d,0xaa,0xde,0x0e,0x8e,0x9e,0x83,0xff,0x05, +0xd5,0x7e,0x1e,0x1f,0x22,0x52,0x03,0x00 }; \ No newline at end of file diff --git a/code/espurna/telnet.ino b/code/espurna/telnet.ino index 461710d6..c0b2f1b9 100644 --- a/code/espurna/telnet.ino +++ b/code/espurna/telnet.ino @@ -19,6 +19,11 @@ AsyncClient * _telnetClients[TELNET_MAX_CLIENTS]; // Private methods // ----------------------------------------------------------------------------- +void _telnetWebSocketOnSend(JsonObject& root) { + root["telnetVisible"] = 1; + root["telnetSTA"] = getSetting("telnetSTA", TELNET_STA).toInt() == 1; +} + void _telnetDisconnect(unsigned char clientId) { _telnetClients[clientId]->free(); _telnetClients[clientId] = NULL; @@ -137,6 +142,10 @@ void telnetSetup() { }, 0); _telnetServer->begin(); + #if WEB_SUPPORT + wsOnSendRegister(_telnetWebSocketOnSend); + #endif + DEBUG_MSG_P(PSTR("[TELNET] Listening on port %d\n"), TELNET_PORT); } diff --git a/code/espurna/wifi.ino b/code/espurna/wifi.ino index 376b2f7c..f5f15643 100644 --- a/code/espurna/wifi.ino +++ b/code/espurna/wifi.ino @@ -12,6 +12,21 @@ Copyright (C) 2016-2017 by Xose Pérez // WIFI // ----------------------------------------------------------------------------- +void _wifiWebSocketOnSend(JsonObject& root) { + root["maxNetworks"] = WIFI_MAX_NETWORKS; + JsonArray& wifi = root.createNestedArray("wifi"); + for (byte i=0; i AsyncWebSocket _ws("/ws"); Ticker _web_defer; -std::vector _ws_sender_callbacks; -std::vector _ws_receiver_callbacks; +std::vector _ws_on_send_callbacks; +std::vector _ws_on_action_callbacks; +std::vector _ws_on_after_parse_callbacks; // ----------------------------------------------------------------------------- // Private methods // ----------------------------------------------------------------------------- void _wsMQTTCallback(unsigned int type, const char * topic, const char * payload) { - - if (type == MQTT_CONNECT_EVENT) { - wsSend_P(PSTR("{\"mqttStatus\": true}")); - } - - if (type == MQTT_DISCONNECT_EVENT) { - wsSend_P(PSTR("{\"mqttStatus\": false}")); - } - + if (type == MQTT_CONNECT_EVENT) wsSend_P(PSTR("{\"mqttStatus\": true}")); + if (type == MQTT_DISCONNECT_EVENT) wsSend_P(PSTR("{\"mqttStatus\": false}")); } void _wsParse(AsyncWebSocketClient *client, uint8_t * payload, size_t length) { @@ -53,35 +47,25 @@ void _wsParse(AsyncWebSocketClient *client, uint8_t * payload, size_t length) { return; } - // Check actions + // Check actions ----------------------------------------------------------- + if (root.containsKey("action")) { String action = root["action"]; + JsonObject& data = root.containsKey("data") ? root["data"] : jsonBuffer.createObject(); DEBUG_MSG_P(PSTR("[WEBSOCKET] Requested action: %s\n"), action.c_str()); - if (action.equals("reset")) { - deferredReset(100, CUSTOM_RESET_WEB); + // Callbacks + for (unsigned char i = 0; i < _ws_on_action_callbacks.size(); i++) { + (_ws_on_action_callbacks[i])(action.c_str(), data); } - #ifdef ITEAD_SONOFF_RFBRIDGE - if (action.equals("rfblearn") && root.containsKey("data")) { - JsonObject& data = root["data"]; - rfbLearn(data["id"], data["status"]); - } - if (action.equals("rfbforget") && root.containsKey("data")) { - JsonObject& data = root["data"]; - rfbForget(data["id"], data["status"]); - } - if (action.equals("rfbsend") && root.containsKey("data")) { - JsonObject& data = root["data"]; - rfbStore(data["id"], data["status"], data["data"].as()); - } - #endif + if (action.equals("reset")) deferredReset(100, CUSTOM_RESET_WEB); + if (action.equals("reconnect")) _web_defer.once_ms(100, wifiDisconnect); - if (action.equals("restore") && root.containsKey("data")) { + if (action.equals("restore")) { - JsonObject& data = root["data"]; if (!data.containsKey("app") || (data["app"] != APP_NAME)) { wsSend_P(client_id, PSTR("{\"message\": 4}")); return; @@ -103,82 +87,10 @@ void _wsParse(AsyncWebSocketClient *client, uint8_t * payload, size_t length) { } - if (action.equals("reconnect")) { - - // Let the HTTP request return and disconnect after 100ms - _web_defer.once_ms(100, wifiDisconnect); - - } - - if (action.equals("relay") && root.containsKey("data")) { - - JsonObject& data = root["data"]; - - if (data.containsKey("status")) { - - unsigned char value = relayParsePayload(data["status"]); - - if (value == 3) { - - relayWS(); - - } else if (value < 3) { - - unsigned int relayID = 0; - if (data.containsKey("id")) { - String value = data["id"]; - relayID = value.toInt(); - } - - // Action to perform - if (value == 0) { - relayStatus(relayID, false); - } else if (value == 1) { - relayStatus(relayID, true); - } else if (value == 2) { - relayToggle(relayID); - } - - } - - } - - } - - #if LIGHT_PROVIDER != LIGHT_PROVIDER_NONE - - if (lightHasColor()) { - - if (action.equals("rgb") && root.containsKey("data")) { - lightColor((const char *) root["data"], true); - lightUpdate(true, true); - } - - if (action.equals("brightness") && root.containsKey("data")) { - lightBrightness(root["data"]); - lightUpdate(true, true); - } - - if (action.equals("hsv") && root.containsKey("data")) { - lightColor((const char *) root["data"], false); - lightUpdate(true, true); - } - - } - - if (action.equals("channel") && root.containsKey("data")) { - JsonObject& data = root["data"]; - if (data.containsKey("id") && data.containsKey("value")) { - lightChannel(data["id"], data["value"]); - lightUpdate(true, true); - } - } - - #endif //LIGHT_PROVIDER != LIGHT_PROVIDER_NONE - }; - // Check config + // Check configuration ----------------------------------------------------- + if (root.containsKey("config") && root["config"].is()) { JsonArray& config = root["config"]; @@ -189,7 +101,6 @@ void _wsParse(AsyncWebSocketClient *client, uint8_t * payload, size_t length) { bool save = false; bool changed = false; bool changedMQTT = false; - bool changedNTP = false; unsigned int network = 0; unsigned int dczRelayIdx = 0; @@ -307,9 +218,6 @@ void _wsParse(AsyncWebSocketClient *client, uint8_t * payload, size_t length) { setSetting(key, value); save = changed = true; if (key.startsWith("mqtt")) changedMQTT = true; - #if NTP_SUPPORT - if (key.startsWith("ntp")) changedNTP = true; - #endif } } @@ -348,44 +256,18 @@ void _wsParse(AsyncWebSocketClient *client, uint8_t * payload, size_t length) { // Save settings if (save) { - wsConfigure(); - saveSettings(); + // Callbacks + for (unsigned char i = 0; i < _ws_on_after_parse_callbacks.size(); i++) { + (_ws_on_after_parse_callbacks[i])(); + } + wifiConfigure(); otaConfigure(); if (changedMQTT) { mqttConfigure(); mqttDisconnect(); } - - #if ALEXA_SUPPORT - alexaConfigure(); - #endif - #if INFLUXDB_SUPPORT - idbConfigure(); - #endif - #if DOMOTICZ_SUPPORT - domoticzConfigure(); - #endif - #if NOFUSS_SUPPORT - nofussConfigure(); - #endif - #if RF_SUPPORT - rfBuildCodes(); - #endif - #if POWER_PROVIDER != POWER_PROVIDER_NONE - powerConfigure(); - #endif - #if LIGHT_PROVIDER != LIGHT_PROVIDER_NONE - #if LIGHT_SAVE_ENABLED == 0 - lightSave(); - #endif - #endif - #if NTP_SUPPORT - if (changedNTP) ntpConfigure(); - #endif - #if HOMEASSISTANT_SUPPORT - haConfigure(); - #endif + saveSettings(); } @@ -401,9 +283,6 @@ void _wsParse(AsyncWebSocketClient *client, uint8_t * payload, size_t length) { void _wsStart(uint32_t client_id) { - char chipid[7]; - snprintf_P(chipid, sizeof(chipid), PSTR("%06X"), ESP.getChipId()); - DynamicJsonBuffer jsonBuffer; JsonObject& root = jsonBuffer.createObject(); @@ -419,6 +298,9 @@ void _wsStart(uint32_t client_id) { } else { + char chipid[7]; + snprintf_P(chipid, sizeof(chipid), PSTR("%06X"), ESP.getChipId()); + root["webMode"] = WEB_MODE_NORMAL; root["app_name"] = APP_NAME; @@ -436,206 +318,15 @@ void _wsStart(uint32_t client_id) { root["sketch_size"] = ESP.getSketchSize(); root["free_size"] = ESP.getFreeSketchSpace(); - #if NTP_SUPPORT - root["time"] = ntpDateTime(); - root["ntpVisible"] = 1; - root["ntpStatus"] = ntpConnected(); - root["ntpServer1"] = getSetting("ntpServer1", NTP_SERVER); - root["ntpServer2"] = getSetting("ntpServer2"); - root["ntpServer3"] = getSetting("ntpServer3"); - root["ntpOffset"] = getSetting("ntpOffset", NTP_TIME_OFFSET).toInt(); - root["ntpDST"] = getSetting("ntpDST", NTP_DAY_LIGHT).toInt() == 1; - #endif - - root["mqttStatus"] = mqttConnected(); - root["mqttEnabled"] = mqttEnabled(); - root["mqttServer"] = getSetting("mqttServer", MQTT_SERVER); - root["mqttPort"] = getSetting("mqttPort", MQTT_PORT); - root["mqttUser"] = getSetting("mqttUser"); - root["mqttPassword"] = getSetting("mqttPassword"); - #if ASYNC_TCP_SSL_ENABLED - root["mqttsslVisible"] = 1; - root["mqttUseSSL"] = getSetting("mqttUseSSL", 0).toInt() == 1; - root["mqttFP"] = getSetting("mqttFP"); - #endif - root["mqttTopic"] = getSetting("mqttTopic", MQTT_TOPIC); - root["mqttUseJson"] = getSetting("mqttUseJson", MQTT_USE_JSON).toInt() == 1; - - JsonArray& relay = root.createNestedArray("relayStatus"); - for (unsigned char relayID=0; relayID 1) { - root["multirelayVisible"] = 1; - root["relaySync"] = getSetting("relaySync", RELAY_SYNC); - } - root["btnDelay"] = getSetting("btnDelay", BUTTON_DBLCLICK_DELAY).toInt(); - root["webPort"] = getSetting("webPort", WEB_PORT).toInt(); - - root["apiEnabled"] = getSetting("apiEnabled", API_ENABLED).toInt() == 1; - root["apiKey"] = getSetting("apiKey"); - root["apiRealTime"] = getSetting("apiRealTime", API_REAL_TIME_VALUES).toInt() == 1; - root["tmpUnits"] = getSetting("tmpUnits", TMP_UNITS).toInt(); - #if HOMEASSISTANT_SUPPORT - root["haVisible"] = 1; - root["haPrefix"] = getSetting("haPrefix", HOMEASSISTANT_PREFIX); - #endif // HOMEASSISTANT_SUPPORT - - #if DOMOTICZ_SUPPORT - - root["dczVisible"] = 1; - root["dczEnabled"] = getSetting("dczEnabled", DOMOTICZ_ENABLED).toInt() == 1; - root["dczSkip"] = getSetting("dczSkip", DOMOTICZ_SKIP_TIME); - root["dczTopicIn"] = getSetting("dczTopicIn", DOMOTICZ_IN_TOPIC); - root["dczTopicOut"] = getSetting("dczTopicOut", DOMOTICZ_OUT_TOPIC); - - JsonArray& dczRelayIdx = root.createNestedArray("dczRelayIdx"); - for (byte i=0; i 0); } -void wsRegister(ws_callback_f sender, ws_callback_f receiver) { - _ws_sender_callbacks.push_back(sender); - if (receiver) _ws_receiver_callbacks.push_back(receiver); +void wsOnSendRegister(ws_on_send_callback_f callback) { + _ws_on_send_callbacks.push_back(callback); +} + +void wsOnActionRegister(ws_on_action_callback_f callback) { + _ws_on_action_callbacks.push_back(callback); +} + +void wsOnAfterParseRegister(ws_on_after_parse_callback_f callback) { + _ws_on_after_parse_callbacks.push_back(callback); } -void wsSend(ws_callback_f sender) { +void wsSend(ws_on_send_callback_f callback) { if (_ws.count() > 0) { DynamicJsonBuffer jsonBuffer; JsonObject& root = jsonBuffer.createObject(); - sender(root); + callback(root); String output; root.printTo(output); wsSend((char *) output.c_str()); @@ -734,6 +431,7 @@ void wsSetup() { wsConfigure(); webServer()->addHandler(&_ws); mqttRegister(_wsMQTTCallback); + wsOnAfterParseRegister(wsConfigure); } #endif // WEB_SUPPORT diff --git a/code/html/custom.js b/code/html/custom.js index 69127aa8..b744046f 100644 --- a/code/html/custom.js +++ b/code/html/custom.js @@ -418,7 +418,7 @@ function initColorRGB() { sliders: 'wrgbp' }).on('sliderup', function() { var value = $(this).wheelColorPicker('getValue', 'css'); - websock.send(JSON.stringify({'action': 'rgb', 'data' : value})); + websock.send(JSON.stringify({'action': 'color', 'data' : {'rgb': value}})); }); // init bright slider @@ -426,7 +426,7 @@ function initColorRGB() { var value = $(this).val(); var parent = $(this).parents(".pure-g"); $("span", parent).html(value); - websock.send(JSON.stringify({'action': 'brightness', 'data' : value})); + websock.send(JSON.stringify({'action': 'color', 'data' : {'brightness': value}})); }); } @@ -448,7 +448,7 @@ function initColorHSV() { }).on('sliderup', function() { var color = $(this).wheelColorPicker('getColor'); var value = parseInt(color.h * 360) + "," + parseInt(color.s * 100) + "," + parseInt(color.v * 100); - websock.send(JSON.stringify({'action': 'hsv', 'data': value})); + websock.send(JSON.stringify({'action': 'color', 'data' : {'hsv': value}})); }); }