Browse Source

sensor: Add PZEM004T V3.0 (#2283)

Add new V3.0 version of PZEM004T, not tested. Default to factory default address 0xf8, configurable through pzemv30Addr 8-bit number
Add 'frequency' measurement & 'hz' unit
Add pz.address that configures address
Implemented energy reset

Right now we only support a single device. No way to test this properly (mostly, how exactly we need to connect this stuff), so left as not implemented.
mcspr-patch-1
Max Prokhorov 4 years ago
committed by GitHub
parent
commit
7b57274d1f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
19 changed files with 2434 additions and 1739 deletions
  1. +36
    -4
      code/espurna/config/sensors.h
  2. +3
    -1
      code/espurna/config/types.h
  3. BIN
      code/espurna/data/index.all.html.gz
  4. BIN
      code/espurna/data/index.sensor.html.gz
  5. +7
    -55
      code/espurna/rfbridge.cpp
  6. +68
    -7
      code/espurna/sensor.cpp
  7. +1
    -0
      code/espurna/sensor.h
  8. +3
    -1
      code/espurna/sensors/BaseSensor.h
  9. +1
    -1
      code/espurna/sensors/CSE7766Sensor.h
  10. +4
    -0
      code/espurna/sensors/PZEM004TSensor.h
  11. +573
    -0
      code/espurna/sensors/PZEM004TV30Sensor.h
  12. +1
    -1
      code/espurna/sensors/T6613Sensor.h
  13. +1
    -1
      code/espurna/sensors/V9261FSensor.h
  14. +452
    -448
      code/espurna/static/index.all.html.gz.h
  15. +1223
    -1220
      code/espurna/static/index.sensor.html.gz.h
  16. +49
    -0
      code/espurna/utils.cpp
  17. +3
    -0
      code/espurna/utils.h
  18. +8
    -0
      code/html/custom.js
  19. +1
    -0
      code/test/build/emon.h

+ 36
- 4
code/espurna/config/sensors.h View File

@ -977,19 +977,20 @@
#endif
#ifndef PZEM004T_USE_SOFT
#define PZEM004T_USE_SOFT 0 // Software serial is not working atm, use hardware serial
#define PZEM004T_USE_SOFT 0 // By default, use Hardware serial with GPIO15 (TX) and GPIO13 (RX)
#endif
#ifndef PZEM004T_RX_PIN
#define PZEM004T_RX_PIN 13 // Software serial RX GPIO (if PZEM004T_USE_SOFT == 1)
#define PZEM004T_RX_PIN 13 // Serial RX GPIO (if PZEM004T_USE_SOFT == 1, creates a SoftwareSerial object)
#endif
#ifndef PZEM004T_TX_PIN
#define PZEM004T_TX_PIN 15 // Software serial TX GPIO (if PZEM004T_USE_SOFT == 1)
#define PZEM004T_TX_PIN 15 // Serial TX GPIO (if PZEM004T_USE_SOFT == 1, creates a SoftwareSerial object)
#endif
#ifndef PZEM004T_HW_PORT
#define PZEM004T_HW_PORT Serial // Hardware serial port (if PZEM004T_USE_SOFT == 0)
// ESP8266: Serial1 does not allow receiving data, no point in changing this setting
#endif
#ifndef PZEM004T_ADDRESSES
@ -1004,6 +1005,36 @@
#define PZEM004T_MAX_DEVICES 3
#endif
//------------------------------------------------------------------------------
// PZEM004T **V3.0** based power monitor
// Enable support by passing PZEM004TV30_SUPPORT=1 build flag
//------------------------------------------------------------------------------
#ifndef PZEM004TV30_SUPPORT
#define PZEM004TV30_SUPPORT 0
#endif
#ifndef PZEM004TV30_ADDRESS
#define PZEM004TV30_ADDRESS 0xF8 // Default: factory value
#endif
#ifndef PZEM004TV30_USE_SOFT
#define PZEM004TV30_USE_SOFT 0 // By default, use Hardware serial with GPIO15 (TX) and GPIO13 (RX)
// (but, make sure that DEBUG_SERIAL_SUPPORT is set to 0)
#endif
#ifndef PZEM004TV30_RX_PIN
#define PZEM004TV30_RX_PIN 13 // Serial RX GPIO (if PZEM004T_USE_SOFT == 1, creates a SoftwareSerial object)
#endif
#ifndef PZEM004TV30_TX_PIN
#define PZEM004TV30_TX_PIN 15 // Serial TX GPIO (if PZEM004T_USE_SOFT == 1, creates a SoftwareSerial object)
#endif
#ifndef PZEM004TV30_DEBUG
#define PZEM004TV30_DEBUG 0
#endif
//------------------------------------------------------------------------------
// SDS011 particulates sensor
// Enable support by passing SDS011_SUPPORT=1 build flag
@ -1394,7 +1425,8 @@
V9261F_SUPPORT || \
VEML6075_SUPPORT || \
VL53L1X_SUPPORT || \
HDC1080_SUPPORT \
HDC1080_SUPPORT || \
PZEM004TV30_SUPPORT \
)
#endif

+ 3
- 1
code/espurna/config/types.h View File

@ -333,6 +333,7 @@
#define SENSOR_T6613_ID 38
#define SENSOR_SI1145_ID 39
#define SENSOR_HDC1080_ID 40
#define SENSOR_PZEM004TV30_ID 41
//--------------------------------------------------------------------------------
// Magnitudes
@ -371,8 +372,9 @@
#define MAGNITUDE_CO 29
#define MAGNITUDE_RESISTANCE 30
#define MAGNITUDE_PH 31
#define MAGNITUDE_FREQUENCY 32
#define MAGNITUDE_MAX 32
#define MAGNITUDE_MAX 33
#define SENSOR_ERROR_OK 0 // No error
#define SENSOR_ERROR_OUT_OF_RANGE 1 // Result out of sensor range


BIN
code/espurna/data/index.all.html.gz View File


BIN
code/espurna/data/index.sensor.html.gz View File


+ 7
- 55
code/espurna/rfbridge.cpp View File

@ -17,6 +17,7 @@ Copyright (C) 2016-2019 by Xose Pérez <xose dot perez at gmail dot com>
#include "terminal.h"
#include "mqtt.h"
#include "ws.h"
#include "utils.h"
// -----------------------------------------------------------------------------
// DEFINITIONS
@ -122,55 +123,6 @@ void _rfbWebSocketOnData(JsonObject& root) {
#endif // WEB_SUPPORT
// From a byte array to an hexa char array ("A220EE...", double the size)
static size_t _rfbHexFromBytearray(uint8_t * in, size_t in_size, char * out, size_t out_size) {
if ((2 * in_size + 1) > (out_size)) return 0;
static const char base16[] = "0123456789ABCDEF";
unsigned char index = 0;
while (index < in_size) {
out[(index*2)] = base16[(in[index] & 0xf0) >> 4];
out[(index*2)+1] = base16[(in[index] & 0xf)];
++index;
}
out[2*index] = '\0';
return index ? (1 + (2 * index)) : 0;
}
// From an hexa char array ("A220EE...") to a byte array (half the size)
static size_t _rfbBytearrayFromHex(const char* in, size_t in_size, uint8_t* out, uint8_t out_size) {
if (out_size < (in_size / 2)) return 0;
unsigned char index = 0;
unsigned char out_index = 0;
auto char2byte = [](char ch) -> uint8_t {
if ((ch >= '0') && (ch <= '9')) {
return (ch - '0');
} else if ((ch >= 'a') && (ch <= 'f')) {
return 10 + (ch - 'a');
} else if ((ch >= 'A') && (ch <= 'F')) {
return 10 + (ch - 'A');
} else {
return 0;
}
};
while (index < in_size) {
out[out_index] = char2byte(in[index]) << 4;
out[out_index] += char2byte(in[index + 1]);
index += 2;
out_index += 1;
}
return out_index ? (1 + out_index) : 0;
}
void _rfbAckImpl();
void _rfbLearnImpl();
void _rfbSendImpl(uint8_t * message);
@ -232,7 +184,7 @@ void _rfbDecode() {
if (action == RF_CODE_LEARN_OK || action == RF_CODE_RFIN) {
_rfbAckImpl();
if (_rfbHexFromBytearray(&_uartbuf[1], RF_MESSAGE_SIZE, buffer, sizeof(buffer))) {
if (hexEncode(&_uartbuf[1], RF_MESSAGE_SIZE, buffer, sizeof(buffer))) {
DEBUG_MSG_P(PSTR("[RF] Received message '%s'\n"), buffer);
}
@ -358,7 +310,7 @@ void _rfbParseRaw(char * raw) {
DEBUG_MSG_P(PSTR("[RF] Sending RAW MESSAGE '%s'\n"), raw);
uint8_t message[RF_MAX_MESSAGE_SIZE];
size_t bytes = _rfbBytearrayFromHex(raw, (size_t)rawlen, message, sizeof(message));
size_t bytes = hexDecode(raw, (size_t)rawlen, message, sizeof(message));
_rfbSendRaw(message, bytes);
}
@ -459,7 +411,7 @@ void _rfbEnqueue(uint8_t * code, unsigned char times) {
#endif
char buffer[RF_MESSAGE_SIZE];
_rfbHexFromBytearray(code, RF_MESSAGE_SIZE, buffer, sizeof(buffer));
hexEncode(code, RF_MESSAGE_SIZE, buffer, sizeof(buffer));
DEBUG_MSG_P(PSTR("[RF] Enqueuing MESSAGE '%s' %d time(s)\n"), buffer, times);
rfb_message_t message;
@ -522,7 +474,7 @@ void _rfbParseCode(char * code) {
}
uint8_t message[RF_MESSAGE_SIZE];
if (_rfbBytearrayFromHex(tok, strlen(tok), message, sizeof(message))) {
if (hexDecode(tok, strlen(tok), message, sizeof(message))) {
tok = strtok(nullptr, ",");
uint8_t times = (tok != nullptr) ? atoi(tok) : 1;
_rfbEnqueue(message, times);
@ -684,7 +636,7 @@ void _rfbInitCommands() {
terminalRegisterCommand(F("RFB.WRITE"), [](const terminal::CommandContext& ctx) {
if (ctx.argc != 2) return;
uint8_t data[RF_MAX_MESSAGE_SIZE];
size_t bytes = _rfbBytearrayFromHex(ctx.argv[1].c_str(), ctx.argv[1].length(), data, sizeof(data));
size_t bytes = hexDecode(ctx.argv[1].c_str(), ctx.argv[1].length(), data, sizeof(data));
if (bytes) {
_rfbSendRaw(data, bytes);
}
@ -722,7 +674,7 @@ void rfbStatus(unsigned char id, bool status) {
if (value.length() && !(value.length() & 1)) {
uint8_t message[RF_MAX_MESSAGE_SIZE];
size_t bytes = _rfbBytearrayFromHex(value.c_str(), value.length(), message, sizeof(message));
size_t bytes = hexDecode(value.c_str(), value.length(), message, sizeof(message));
if (bytes && !_rfbin) {
if (value.length() == (RF_MESSAGE_SIZE * 2)) {
_rfbEnqueue(message, _rfbSameOnOff(id) ? 1 : _rfb_repeat);


+ 68
- 7
code/espurna/sensor.cpp View File

@ -199,6 +199,12 @@ Copyright (C) 2016-2019 by Xose Pérez <xose dot perez at gmail dot com>
#include "sensors/HDC1080Sensor.h"
#endif
#if PZEM004TV30_SUPPORT
// TODO: this is temporary, until we have external API giving us swserial stream objects
#include <SoftwareSerial.h>
#include "sensors/PZEM004TV30Sensor.h"
#endif
//--------------------------------------------------------------------------------
struct sensor_magnitude_t {
@ -564,6 +570,8 @@ unsigned char _sensorUnitDecimals(sensor::Unit unit) {
return 4;
case sensor::Unit::Meter:
return 3;
case sensor::Unit::Hertz:
return 1;
case sensor::Unit::UltravioletIndex:
return 3;
case sensor::Unit::None:
@ -670,6 +678,9 @@ String magnitudeTopic(unsigned char type) {
case MAGNITUDE_PH:
result = F("ph");
break;
case MAGNITUDE_FREQUENCY:
result = F("frequency");
break;
case MAGNITUDE_NONE:
default:
result = F("unknown");
@ -756,6 +767,9 @@ String _magnitudeUnits(const sensor_magnitude_t& magnitude) {
case sensor::Unit::Meter:
result = F("m");
break;
case sensor::Unit::Hertz:
result = F("Hz");
break;
case sensor::Unit::None:
default:
result = F("");
@ -924,6 +938,7 @@ const char * const _magnitudeSettingsPrefix(unsigned char type) {
case MAGNITUDE_CO: return "co";
case MAGNITUDE_RESISTANCE: return "res";
case MAGNITUDE_PH: return "ph";
case MAGNITUDE_FREQUENCY: return "freq";
default: return nullptr;
}
}
@ -1175,11 +1190,13 @@ String magnitudeName(unsigned char type) {
case MAGNITUDE_PH:
result = F("pH");
break;
case MAGNITUDE_FREQUENCY:
result = F("Frequency");
break;
case MAGNITUDE_NONE:
default:
break;
}
return String(result);
}
@ -1306,9 +1323,14 @@ void _sensorWebSocketOnConnected(JsonObject& root) {
}
#endif
#if PZEM004T_SUPPORT
if (sensor->getID() == SENSOR_PZEM004T_ID) {
#if PZEM004T_SUPPORT || PZEM004TV30_SUPPORT
switch (sensor->getID()) {
case SENSOR_PZEM004T_ID:
case SENSOR_PZEM004TV30_ID:
root["pzemVisible"] = 1;
break;
default:
break;
}
#endif
@ -1914,11 +1936,10 @@ void _sensorLoad() {
PZEM004TSensor * sensor = PZEM004TSensor::create();
sensor->setAddresses(addresses.c_str());
sensor->setRX(getSetting("pzemRX", PZEM004T_RX_PIN));
sensor->setTX(getSetting("pzemTX", PZEM004T_TX_PIN));
if (getSetting("pzemSoft", 1 == PZEM004T_USE_SOFT)) {
sensor->setRX(getSetting("pzemRX", PZEM004T_RX_PIN));
sensor->setTX(getSetting("pzemTX", PZEM004T_TX_PIN));
} else {
if (!getSetting("pzemSoft", 1 == PZEM004T_USE_SOFT)) {
sensor->setSerial(& PZEM004T_HW_PORT);
}
@ -2052,6 +2073,46 @@ void _sensorLoad() {
}
#endif
#if PZEM004TV30_SUPPORT
{
PZEM004TV30Sensor * sensor = PZEM004TV30Sensor::create();
// TODO: we need an equivalent to the `pzem.address` command
sensor->setAddress(getSetting("pzemv30Addr", PZEM004TV30Sensor::DefaultAddress));
sensor->setReadTimeout(getSetting("pzemv30ReadTimeout", PZEM004TV30Sensor::DefaultReadTimeout));
sensor->setDebug(getSetting("pzemv30Debug", 1 == PZEM004TV30_DEBUG));
bool soft = getSetting("pzemv30Soft", 1 == PZEM004TV30_USE_SOFT);
int tx = getSetting("pzemv30TX", PZEM004TV30_TX_PIN);
int rx = getSetting("pzemv30RX", PZEM004TV30_RX_PIN);
// we operate only with Serial, as Serial1 cannot not receive any data
if (!soft) {
sensor->setStream(&Serial);
sensor->setDescription("HwSerial");
Serial.begin(PZEM004TV30Sensor::Baudrate);
// Core does not allow us to begin(baud, cfg, rx, tx) / pins(rx, tx) before begin(baud)
// b/c internal UART handler does not exist yet
// Also see https://github.com/esp8266/Arduino/issues/2380 as to why there is flush()
if ((tx == 15) && (rx == 13)) {
Serial.flush();
Serial.swap();
}
} else {
auto* ptr = new SoftwareSerial(rx, tx);
sensor->setDescription("SwSerial");
sensor->setStream(ptr); // we don't care about lifetime
ptr->begin(PZEM004TV30Sensor::Baudrate);
}
//TODO: getSetting("pzemv30*Cfg", (SW)SERIAL_8N1); ?
// may not be relevant, but some sources claim we need 8N2
_sensors.push_back(sensor);
}
#endif
}
void _sensorReport(unsigned char index, double value) {


+ 1
- 0
code/espurna/sensor.h View File

@ -56,6 +56,7 @@ enum class Unit : int {
CountsPerMinute, // Unit of local dose rate (Geiger counting)
MicrosievertPerHour, // 2nd unit of local dose rate (Geiger counting)
Meter,
Hertz,
Max_
};


+ 3
- 1
code/espurna/sensors/BaseSensor.h View File

@ -22,7 +22,7 @@ class BaseSensor {
BaseSensor() {}
// Destructor
~BaseSensor() {}
virtual ~BaseSensor() {}
// Initialization method, must be idempotent
virtual void begin() {}
@ -133,6 +133,8 @@ class BaseSensor {
return sensor::Unit::MicrosievertPerHour;
case MAGNITUDE_DISTANCE:
return sensor::Unit::Meter;
case MAGNITUDE_FREQUENCY:
return sensor::Unit::Hertz;
default:
return sensor::Unit::None;
}


+ 1
- 1
code/espurna/sensors/CSE7766Sensor.h View File

@ -135,7 +135,7 @@ class CSE7766Sensor : public BaseEmonSensor {
if (1 == _pin_rx) {
Serial.begin(CSE7766_BAUDRATE);
} else {
_serial = new SoftwareSerial(_pin_rx, SW_SERIAL_UNUSED_PIN, _inverted, 32);
_serial = new SoftwareSerial(_pin_rx, -1, _inverted);
_serial->enableIntTx(false);
_serial->begin(CSE7766_BAUDRATE);
}


+ 4
- 0
code/espurna/sensors/PZEM004TSensor.h View File

@ -191,6 +191,10 @@ class PZEM004TSensor : public BaseEmonSensor {
if (_pzem) delete _pzem;
if (_serial) {
_pzem = new PZEM004T(_serial);
if ((_pin_tx == 15) && (_pin_rx == 13)) {
_serial->flush();
_serial->swap();
}
} else {
_pzem = new PZEM004T(_pin_rx, _pin_tx);
}


+ 573
- 0
code/espurna/sensors/PZEM004TV30Sensor.h View File

@ -0,0 +1,573 @@
/*
PZEM004T V3 Sensor
Adapted for ESPurna based on:
- https://github.com/mandulaj/PZEM-004T-v30 by Jakub Mandula
- https://innovatorsguru.com/wp-content/uploads/2019/06/PZEM-004T-V3.0-Datasheet-User-Manual.pdf
- http://www.modbus.org/docs/Modbus_Application_Protocol_V1_1b3.pdf
Copyright (C) 2020 by Maxim Prokhorov <prokhorov dot max at outlook dot com>
*/
#include "BaseEmonSensor.h"
#include "../debug.h"
#include "../utils.h"
#include "../terminal.h"
#include <cstdint>
#include <array>
#define PZEM_DEBUG_MSG_P(...) if (_debug) DEBUG_MSG_P(__VA_ARGS__)
class PZEM004TV30Sensor : public BaseEmonSensor {
private:
PZEM004TV30Sensor() : BaseEmonSensor(0) {
_sensor_id = SENSOR_PZEM004TV30_ID;
_error = SENSOR_ERROR_OK;
_count = 6;
}
~PZEM004TV30Sensor() {
PZEM004TV30Sensor::instance = nullptr;
}
public:
static PZEM004TV30Sensor* instance;
static PZEM004TV30Sensor* create() {
if (PZEM004TV30Sensor::instance) return PZEM004TV30Sensor::instance;
PZEM004TV30Sensor::instance = new PZEM004TV30Sensor();
return PZEM004TV30Sensor::instance;
}
static constexpr unsigned long Baudrate = 9600u;
// per MODBUS application protocol specification
// > 4.1 Protocol description
// > ...
// > The size of the MODBUS PDU is limited by the size constraint inherited from the first
// > MODBUS implementation on Serial Line network (max. RS485 ADU = 256 bytes).
// > Therefore:
// > MODBUS PDU for serial line communication = 256 - Server address (1 byte) - CRC (2
// > bytes) = 253 bytes.
// However, we only ever expect very small payloads. Maximum being 10 registers at the same time.
static constexpr size_t BufferSize = 25u;
// stock address, cannot be used with multiple devices on the line
static constexpr uint8_t DefaultAddress = 0xf8;
// XXX: pzem manual does not specify anything, these are arbitrary values (ms)
static constexpr unsigned long DefaultReadTimeout = 200u;
static constexpr unsigned long DefaultUpdateInterval = 200u;
// Device uses Modbus-RTU protocol and implements the following function codes:
// - 0x03 (Read Holding Register) (NOT IMPLEMENTED)
// - 0x04 (Read Input Register) (measurements readout)
// - 0x06 (Write Single Register) (set device address, set alarm is NOT IMPLEMENTED)
// - 0x41 (Calibration) (NOT IMPLEMENTED)
// - 0x42 (Reset energy) (can only reset to 0)
static constexpr uint8_t ReadInputCode = 0x04;
static constexpr uint8_t WriteCode = 0x06;
static constexpr uint8_t ResetEnergyCode = 0x42;
static constexpr uint8_t ErrorMask = 0x80;
// We **can** reset PZEM energy, unlike the original PZEM004T
// However, we can't set it to a specific value, we can only start from 0
void resetEnergy(unsigned char, sensor::Energy) override {}
void resetEnergy() override {
_reset_energy = true;
}
void resetEnergy(unsigned char) override {
_reset_energy = true;
}
double getEnergy(unsigned char index) override {
return _energy;
}
sensor::Energy totalEnergy(unsigned char index) override {
return getEnergy(index);
}
size_t countDevices() override {
return 1;
}
// ---------------------------------------------------------------------
using buffer_type = std::array<uint8_t, BufferSize>;
// - PZEM manual "2.7 CRC check":
// > CRC check use 16bits format, occupy two bytes, the generator polynomial is X16 + X15 + X2 +1,
// > the polynomial value used for calculation is 0xA001.
// - Note that we use a simple function instead of a table to save space and RAM.
static uint16_t crc16modbus(uint8_t* data, size_t size) {
auto crc16_update = [](uint16_t crc, uint8_t value) {
crc ^= static_cast<uint16_t>(value);
for (size_t index = 0; index < 8; ++index) {
if (crc & 1) {
crc = (crc >> 1) ^ 0xa001;
} else {
crc = (crc >> 1);
}
}
return crc;
};
uint16_t crc = 0xffff;
for (size_t index = 0; index < size; ++index) {
crc = crc16_update(crc, data[index]);
}
return crc;
}
struct adu_builder {
adu_builder(uint8_t device_address, uint8_t fcode) :
buffer({device_address, fcode}),
size(2)
{}
adu_builder& add(uint8_t value) {
if (!locked && (size < buffer.size())) {
buffer[size] = value;
size += 1;
}
return *this;
}
adu_builder& add(uint16_t value) {
if (!locked && ((size + 1) < buffer.size())) {
buffer[size] = static_cast<uint8_t>((value >> 8) & 0xff);
buffer[size + 1] = static_cast<uint8_t>(value & 0xff);
size += 2;
}
return *this;
}
// Note that CRC order is reversed in comparison to every other value
adu_builder& end() {
static_assert(BufferSize >= 4, "Cannot fit the minimal request");
if (!locked) {
uint16_t value = crc16modbus(buffer.data(), size);
buffer[size] = static_cast<uint8_t>(value & 0xff);
buffer[size + 1] = static_cast<uint8_t>((value >> 8) & 0xff);
size += 2;
locked = true;
}
return *this;
}
buffer_type buffer;
size_t size { 0 };
bool locked { false };
};
void modbusDebugBuffer(const String& message, buffer_type& buffer, size_t size) {
hexEncode(buffer.data(), size, _debug_buffer, sizeof(_debug_buffer));
PZEM_DEBUG_MSG_P(PSTR("[PZEM004TV3] %s: %s (%u bytes)\n"), message.c_str(), _debug_buffer, size);
}
static size_t modbusExpect(const adu_builder& builder) {
if (!builder.locked) {
return 0;
}
switch (builder.buffer[1]) {
case ReadInputCode:
if (builder.size >= 6) {
return 3 + (2 * ((builder.buffer[4] << 8) | (builder.buffer[5]))) + 2;
}
return 0;
case WriteCode:
return builder.size;
case ResetEnergyCode:
return builder.size;
default:
return 0;
}
}
template <typename Callback>
void modbusProcess(const adu_builder& builder, Callback callback) {
if (!builder.locked) {
return;
}
_stream->write(builder.buffer.data(), builder.size);
size_t expect = modbusExpect(builder);
if (!expect) {
return;
}
uint8_t code = builder.buffer[1];
uint8_t error_code = ErrorMask | code;
size_t bytes = 0;
buffer_type buffer;
// In case we need multiple devices, we need to manually set each one with an unique address **and** also provide
// a way to distinguish between bus messages based on addresses received. Multiple instances **could** work,
// based on the idea that we never receive replies from unknown addresses i.e. we never NOT read responses fully
// and leave something in the serial buffers.
// TODO: testing is much easier, b/c we can just grab any modbus simulator and set up multiple devices
auto ts = millis();
while ((bytes < expect) && (millis() - ts <= _read_timeout)) {
int c = _stream->read();
if (c < 0) {
continue;
}
if ((0 == bytes) && (_address != c)) {
continue;
}
if (1 == bytes) {
if (error_code == c) {
expect = 5;
} else if (code != c) {
bytes = 0;
continue;
}
}
buffer[bytes++] = static_cast<uint8_t>(c);
}
if (bytes && _debug) {
modbusDebugBuffer(F("Received"), buffer, bytes);
}
if (bytes != expect) {
PZEM_DEBUG_MSG_P(PSTR("[PZEM004TV3] ERROR: Expected %u bytes, got %u\n"), expect, bytes);
_error = SENSOR_ERROR_OTHER; // TODO: more error codes
return;
}
uint16_t received_crc = static_cast<uint16_t>(buffer[bytes - 1] << 8) | static_cast<uint16_t>(buffer[bytes - 2]);
uint16_t crc = crc16modbus(buffer.data(), bytes - 2);
if (received_crc != crc) {
PZEM_DEBUG_MSG_P(PSTR("[PZEM004TV3] ERROR: CRC invalid: expected %04X expected, received %04X\n"), crc, received_crc);
_error = SENSOR_ERROR_CRC;
return;
}
if (buffer[1] & ErrorMask) {
PZEM_DEBUG_MSG_P(PSTR("[PZEM004TV3] ERROR: %s (0x%02X)\n"),
errorToString(buffer[2]).c_str(), buffer[2]);
return;
}
callback(std::move(buffer), bytes);
}
// Energy reset is a 'custom' function, and it does not take any function params
bool modbusResetEnergy() {
auto request = adu_builder(_address, ResetEnergyCode)
.end();
// quoting pzem user manual: "Set up correctly, the slave return to the data which is sent from the master.",
bool result = false;
modbusProcess(request, [&](buffer_type&& buffer, size_t size) {
result = std::equal(request.buffer.begin(), request.buffer.begin() + size, buffer.begin());
});
return result;
}
// Address setter is only needed when we are using multiple devices.
// Note that we would no longer be able to receive replies without changing _address member too
bool modbusChangeAddress(uint8_t to) {
if (_address == to) {
return true;
}
auto request = adu_builder(_address, WriteCode)
.add(static_cast<uint16_t>(2))
.add(static_cast<uint16_t>(to))
.end();
// same as for resetEnergy, we receive echo
bool result = false;
modbusProcess(request, [&](buffer_type&& buffer, size_t size) {
result = std::equal(request.buffer.begin(), request.buffer.begin() + size, buffer.begin());
});
return result;
}
// For more, see MODBUS application protocol specification, 7 MODBUS Exception Responses
String errorToString(uint8_t error) {
const __FlashStringHelper *ptr = nullptr;
switch (error) {
case 0x01:
ptr = F("Illegal function");
break;
case 0x02:
ptr = F("Illegal data address");
break;
case 0x03:
ptr = F("Illegal data value");
break;
case 0x04:
ptr = F("Device failure");
break;
case 0x05:
ptr = F("Acknowledged");
break;
case 0x06:
ptr = F("Busy");
break;
case 0x08:
ptr = F("Memory parity error");
break;
default:
ptr = F("Unknown");
break;
}
return ptr;
}
// Quoting the README.md of the original library repo and datasheet, we have:
// (name, measuring range, resolution, accuracy)
// 1. Voltage 80~260V 0.1V 0.5%
// 2. Current 0~10A or 0~100A* 0.01A or 0.02A* 0.5%
// 3. Active power 0~2.3kW or 0~23kW* 0.1W 0.5%
// 4. Active energy 0~9999.99kWh 1Wh 0.5%
// 5. Frequency 45~65Hz 0.1Hz 0.5%
// 6. Power factor 0.00~1.00 0.01 1%
void parseMeasurements(buffer_type&& buffer, size_t size) {
if (25 != size) {
PZEM_DEBUG_MSG_P(PSTR("[PZEM004TV3] Expected measurements ADU size to be at least 25 bytes, but got only %u\n"), size);
return;
}
auto it = buffer.begin() + 3;
auto end = buffer.end();
auto take_2 = [&]() -> double {
double value = 0.0;
if (std::distance(it, end) >= 2) {
value = (static_cast<uint32_t>(*(it)) << 8)
| static_cast<uint32_t>(*(it + 1));
}
it += 2;
return value;
};
auto take_4 = [&]() -> double {
double value = 0.0;
if (std::distance(it, end) >= 4) {
value = (
((static_cast<uint32_t>(*(it + 2)) << 24)
| (static_cast<uint32_t>(*(it + 3)) << 16))
| ((static_cast<uint32_t>(*it) << 8)
| static_cast<uint32_t>(*(it + 1))));
}
it += 4;
return value;
};
// - Voltage: 2 bytes, in 0.1V (we return V)
_voltage = take_2();
_voltage /= 10.0;
// - Current: 4 bytes, in 0.001A (we return A)
_current = take_4();
_current /= 1000.0;
// - Power: 4 bytes, in 0.1W (we return W)
_power = take_4();
_power /= 10.0;
// - Energy: 4 bytes, in Wh (we return kWh)
_energy = take_4();
_energy /= 1000.0;
// - Frequency: 2 bytes, in 0.1Hz (we return Hz)
_frequency = take_2();
_frequency /= 10.0;
// - Power Factor: 2 bytes in 0.1% (we return %)
_power_factor = take_2();
_power_factor /= 10.0;
// - Alarms: 2 bytes, (NOT IMPLEMENTED)
// XXX: it seems it can only be either 0xffff or 0 for ON and OFF respectively
// XXX: what this does, exactly?
_alarm = (0xff == *it) && (0xff == *(it + 1));
}
// Reading measurements is a standard modbus function:
// - addr, 0x04, rhigh, rlow, rnumhigh, rnumlow, crchigh, crclow
// ReadInput reply can be one of:
// - addr, 0x04, nbytes, rndatahigh, rndatalow, rndata..., crchigh, crclow (on success)
// - addr, 0x84, error_code, crchigh, crclow (on error. modbus rtu sets high bit to 1 i.e. 0b00000100 becomes 0b10000100)
void modbusReadValues() {
_error = SENSOR_ERROR_OK;
auto request = adu_builder(_address, ReadInputCode)
.add(static_cast<uint16_t>(0))
.add(static_cast<uint16_t>(10))
.end();
modbusProcess(request, [this](buffer_type&& buffer, size_t size) {
parseMeasurements(std::move(buffer), size);
});
}
void flush() {
while (_stream->read() >= 0) {
}
}
// ---------------------------------------------------------------------
// Note that the device (aka slave) address needs be changed first via
// - some external tool. For example, using USB2TTL adapter and a PC app
// - `pzem.address` with **only** one device on the line
// (because we would change all 0xf8-addressed devices at the same time)
void setAddress(uint8_t address) {
_address = address;
}
void setDebug(bool debug) {
_debug = debug;
}
void setStream(Stream* stream) {
_stream = stream;
_stream->setTimeout(_read_timeout);
}
void setReadTimeout(unsigned long value) {
_read_timeout = value;
}
void setUpdateInterval(unsigned long value) {
_update_interval = value;
}
template <typename T>
void setDescription(T&& description) {
_description = std::forward<T>(description);
}
// ---------------------------------------------------------------------
void begin() override {
_ready = (_stream != nullptr);
_last_reading = millis() - _update_interval;
#if TERMINAL_SUPPORT
terminalRegisterCommand(F("PZ.ADDRESS"), [](const terminal::CommandContext& ctx) {
if (ctx.argc != 2) {
terminalError(ctx.output, F("PZ.ADDRESS <ADDRESS>"));
return;
}
uint8_t updated = settings::internal::convert<uint8_t>(ctx.argv[1]);
PZEM004TV30Sensor::instance->flush();
if (PZEM004TV30Sensor::instance->modbusChangeAddress(updated)) {
PZEM004TV30Sensor::instance->setAddress(updated);
setSetting("pzemv30Addr", updated);
terminalOK(ctx.output);
return;
}
terminalError(ctx.output, F("Could not change the address"));
});
#endif
}
String description() override {
static const String base(F("PZEM004T V3.0"));
return base + " @ " + _description + ", 0x" + String(_address, 16);
}
String description(unsigned char) override {
return description();
}
String address(unsigned char) override {
return String(_address, 16);
}
unsigned char type(unsigned char index) override {
switch (index) {
case 0: return MAGNITUDE_VOLTAGE;
case 1: return MAGNITUDE_CURRENT;
case 2: return MAGNITUDE_POWER_ACTIVE;
case 3: return MAGNITUDE_ENERGY;
case 4: return MAGNITUDE_FREQUENCY;
case 5: return MAGNITUDE_POWER_FACTOR;
}
return MAGNITUDE_NONE;
}
double value(unsigned char index) override {
switch (index) {
case 0: return _voltage;
case 1: return _current;
case 2: return _power;
case 3: return _energy;
case 4: return _frequency;
case 5: return _power_factor;
}
return 0.0;
}
void pre() override {
flush();
if (_reset_energy) {
if (!modbusResetEnergy()) {
PZEM_DEBUG_MSG_P(PSTR("[PZEM004TV3] Energy reset failed\n"));
}
_reset_energy = false;
flush();
}
if (millis() - _last_reading >= _update_interval) {
modbusReadValues();
_last_reading = millis();
}
}
private:
String _description;
bool _debug { false };
char _debug_buffer[(BufferSize * 2) + 1];
Stream* _stream { nullptr };
uint8_t _address { DefaultAddress };
bool _reset_energy { false };
unsigned long _read_timeout { DefaultReadTimeout };
unsigned long _update_interval { DefaultUpdateInterval };
unsigned long _last_reading { 0 };
double _voltage { 0.0 };
double _current { 0.0 };
double _power { 0.0 };
double _energy { 0.0 };
double _frequency { 0.0 };
double _power_factor { 0.0 };
bool _alarm { false };
};
PZEM004TV30Sensor* PZEM004TV30Sensor::instance = nullptr;
#undef PZEM_DEBUG_MSG_P

+ 1
- 1
code/espurna/sensors/T6613Sensor.h View File

@ -72,7 +72,7 @@ class T6613Sensor : public BaseSensor {
if (_serial) delete _serial;
_serial = new SoftwareSerial(_pin_rx, _pin_tx, false, 32);
_serial = new SoftwareSerial(_pin_rx, _pin_tx, false);
_serial->enableIntTx(false);
_serial->begin(19200);


+ 1
- 1
code/espurna/sensors/V9261FSensor.h View File

@ -67,7 +67,7 @@ class V9261FSensor : public BaseEmonSensor {
if (_serial) delete _serial;
_serial = new SoftwareSerial(_pin_rx, SW_SERIAL_UNUSED_PIN, _inverted, 32);
_serial = new SoftwareSerial(_pin_rx, -1, _inverted);
_serial->enableIntTx(false);
_serial->begin(V9261F_BAUDRATE);


+ 452
- 448
code/espurna/static/index.all.html.gz.h View File

@ -1,4 +1,4 @@
#define webui_image_len 61852
#define webui_image_len 61924
const uint8_t webui_image[] PROGMEM = {
0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x02,0x03,0xec,0xbd,0xe9,0x72,0xe3,0xc6,0xb2,0x30,0xf8,0x2a,
0x68,0xb6,0x4f,0x9b,0xb4,0xc0,0x55,0xa2,0x5a,0xa2,0x9a,0xea,0x4b,0x6d,0x2d,0xd9,0xad,0xa5,0xb5,0xf4,
@ -2646,451 +2646,455 @@ const uint8_t webui_image[] PROGMEM = {
0x19,0x8a,0x0f,0x48,0xba,0xad,0x38,0xbb,0xc2,0x1c,0x4f,0x8b,0xd9,0xcc,0x16,0x1c,0x27,0xae,0x96,0x24,
0x35,0x1b,0xfe,0x41,0x93,0x3a,0x04,0xa3,0x4b,0x3a,0x25,0xc4,0xc3,0xb9,0x99,0x5c,0xa5,0xdd,0x9b,0xdd,
0xc8,0x22,0xde,0x9e,0xba,0x7c,0x8a,0xaa,0xbc,0x92,0xa8,0xce,0xcd,0xe5,0x45,0x45,0x8d,0xac,0xbc,0x29,
0x6e,0x64,0xd2,0x4a,0x3f,0xd1,0xf1,0xc6,0x02,0xc5,0xeb,0xec,0x3c,0x73,0x00,0xd1,0xb2,0x81,0x6b,0xc2,
0x71,0x20,0x13,0xdd,0x0d,0x4b,0xf3,0xff,0xbf,0xee,0xae,0xbd,0xbb,0x6d,0x1b,0xd9,0x7f,0x15,0x9b,0xbb,
0x71,0x48,0x8b,0xa2,0x25,0x27,0x76,0xbb,0x92,0x19,0x1d,0xc7,0x4d,0x1c,0x9f,0xdb,0xc4,0xa9,0x93,0x36,
0xb7,0x27,0xf1,0xf5,0xa1,0x2c,0x4a,0x62,0x2b,0x8b,0x5a,0x92,0x7e,0xa4,0x8e,0xbe,0xd8,0xfe,0xb9,0x9f,
0xec,0xce,0x0c,0x1e,0x04,0x08,0x50,0x0f,0x27,0xbb,0x77,0x7b,0x7b,0x4e,0x63,0x11,0x18,0x00,0x83,0x37,
0x30,0x98,0xf9,0x0d,0x31,0x5e,0x04,0x42,0xe3,0xc9,0xdc,0xf3,0xa7,0x12,0x74,0x06,0xdf,0xa4,0xe2,0xab,
0x08,0x07,0x97,0xe8,0xf9,0xcd,0x12,0xc1,0xd4,0x43,0xa4,0xc9,0x5b,0x87,0x6c,0xaf,0x18,0xe1,0xc6,0x55,
0x92,0x73,0xec,0x64,0x6e,0xe8,0x71,0x3f,0xef,0xc6,0x35,0x90,0x40,0x11,0x62,0x37,0xa1,0x63,0x92,0x39,
0xc1,0x5a,0x09,0xdd,0xbe,0x08,0xa1,0xef,0x18,0x40,0x8b,0x54,0xfd,0xe7,0x83,0xd6,0xae,0xf6,0xaf,0xe8,
0x77,0x6b,0xd6,0x02,0x4c,0x4d,0x1b,0x8f,0x46,0x42,0xad,0x5f,0x6d,0x24,0x32,0xcd,0x74,0xee,0xe7,0x0a,
0x9e,0x8b,0xaa,0xff,0x2f,0x1c,0xd5,0xc5,0xb7,0x1b,0x64,0x24,0x52,0x78,0xd2,0x14,0x40,0xa7,0x44,0x23,
0x6d,0xe6,0xaf,0x81,0x79,0xfd,0x10,0xbc,0x0b,0x75,0x88,0xb2,0x9f,0xe8,0x5d,0x49,0x39,0x72,0x28,0xeb,
0x1e,0x7f,0x96,0x2f,0xf8,0x6b,0x38,0x67,0x49,0x7b,0xb2,0xe7,0x19,0xab,0xcf,0x56,0x72,0x58,0x68,0xc2,
0xde,0x32,0x78,0xc2,0x34,0xe8,0xd8,0x87,0x40,0xd3,0xcb,0xb5,0x20,0xdb,0xf0,0x93,0xd0,0x7a,0x95,0xb0,
0xd7,0xb6,0xc1,0x17,0xcd,0x12,0x3e,0xfa,0x45,0x27,0x49,0x94,0x34,0x3c,0xbf,0x22,0x08,0xd3,0xd6,0x96,
0xe3,0x28,0x9f,0x5f,0xbe,0x54,0x21,0x9e,0xa0,0x8b,0xb8,0x79,0x8e,0xd6,0x30,0xdf,0x33,0xac,0x2e,0x1b,
0xa4,0x83,0x18,0xc5,0x76,0x13,0x9f,0xe2,0xdc,0x13,0x27,0x55,0x34,0x78,0x60,0xcc,0x4a,0x97,0x36,0xd5,
0x55,0x4e,0xb0,0x6f,0x2c,0x71,0xdf,0x79,0xf7,0x15,0xe0,0x20,0xb9,0x5a,0x41,0x1c,0xc3,0x02,0xa0,0x36,
0x60,0xc6,0x9f,0xc9,0x8c,0x9f,0x24,0x85,0x66,0xba,0x8a,0x8d,0x2d,0x30,0x36,0x15,0x23,0x8a,0x44,0x40,
0x5d,0xc0,0x2a,0x06,0xbb,0xef,0xce,0x0e,0x6a,0x78,0xfb,0x89,0xfe,0x7e,0xcb,0x23,0x8b,0x78,0x02,0xd3,
0xb5,0xc3,0x68,0x68,0x35,0x41,0x10,0xf3,0xb2,0x17,0xa4,0x19,0xbf,0xe8,0x84,0x12,0xd6,0xbe,0x5c,0x00,
0x98,0x6a,0x3b,0x81,0x2e,0xbe,0x63,0xb7,0x4a,0x4e,0x5c,0xa0,0xa7,0x97,0xa3,0xd3,0x37,0x6f,0x5e,0x1c,
0xbd,0x7f,0xf1,0x83,0xd3,0x71,0xde,0x9c,0xbe,0xdf,0x28,0xbf,0x21,0xcd,0xb4,0x98,0x59,0x92,0xbc,0xfb,
0xf5,0xcd,0xd1,0x63,0x41,0xcf,0x3f,0x70,0xa3,0x99,0xe1,0xab,0x38,0x6f,0x0c,0x42,0xb9,0xe7,0xba,0x58,
0x3a,0x2b,0xfe,0x65,0x98,0x23,0x64,0xf5,0x20,0x74,0x95,0xa8,0x9c,0xa3,0x5b,0x7b,0x18,0x75,0x5d,0x13,
0xb5,0xfb,0xb4,0xab,0x85,0xef,0x3e,0xe5,0x90,0x47,0x79,0xc3,0x19,0x6c,0x94,0x90,0xd8,0xd7,0x84,0x91,
0x3d,0x56,0x42,0x06,0x14,0x72,0xa5,0x84,0x5c,0x52,0x48,0xee,0xcc,0x9d,0xe2,0x6a,0xf6,0x33,0x3e,0x70,
0x3a,0x54,0x45,0xb1,0xdd,0xf2,0x50,0xb1,0xdf,0x3e,0x09,0xe9,0x26,0xd4,0x73,0xfe,0xf9,0x8f,0x97,0x50,
0xf3,0x7f,0xfe,0xe3,0x88,0x43,0xa8,0x4d,0xfc,0x19,0x22,0xf8,0x8f,0x43,0x43,0x49,0x8b,0xf7,0x7c,0xb7,
0x75,0x30,0x2e,0xdd,0xf0,0x68,0x48,0x2d,0x63,0x1d,0xa3,0x65,0x5c,0xd5,0x0d,0x28,0x3c,0x01,0x0b,0x69,
0x23,0xc6,0x9d,0x0d,0xc7,0x7c,0xc7,0xbd,0x91,0x91,0xb3,0x8c,0xf0,0x22,0x1d,0xc7,0x9f,0x94,0x61,0x70,
0x1b,0xe4,0x81,0x2c,0xd1,0x4d,0xa3,0x68,0x4c,0x60,0x48,0xcc,0xd8,0x33,0xed,0x98,0x3b,0x0b,0x1c,0xd5,
0x8d,0x5d,0xa8,0xc1,0xa8,0xac,0x81,0x8e,0x22,0x89,0xce,0x89,0xad,0xb7,0xc7,0x91,0x58,0x4a,0xe1,0x1c,
0x23,0x7f,0x3b,0x07,0x3b,0xfd,0xec,0x99,0x23,0x8b,0x1e,0xa1,0x97,0x51,0x60,0x7f,0x64,0x61,0x7f,0x64,
0xb2,0x3f,0x62,0x7d,0xc1,0xf8,0x2f,0xf3,0xe0,0xfc,0x0f,0x43,0x53,0x0b,0xae,0xac,0xc1,0xb0,0xac,0xc1,
0x50,0x1c,0x0a,0x78,0x0e,0x43,0x6f,0xc1,0xf9,0x60,0xc6,0x67,0x3c,0xda,0xeb,0x86,0xc5,0x9c,0xcd,0xfe,
0x72,0x13,0xa1,0x92,0xaf,0x60,0xc7,0xbc,0xca,0x47,0xfe,0x0d,0xfc,0x85,0x2a,0x90,0x40,0xf5,0x14,0x86,
0xff,0xe9,0xc1,0x95,0xd0,0x55,0x6b,0x34,0x4e,0xbd,0x9b,0x8f,0xa7,0xe7,0x0c,0xcd,0x4a,0x9a,0x64,0x55,
0xb7,0x1b,0x24,0x61,0x76,0x28,0xf5,0x34,0x57,0x44,0xd3,0xd5,0x68,0xa4,0xa7,0x30,0x57,0x0d,0xae,0xee,
0x51,0x4d,0x2d,0x0d,0xdf,0xd6,0x50,0x5f,0x81,0x2a,0x68,0xb3,0xe4,0x29,0xfc,0xea,0x16,0x50,0x09,0x28,
0xe5,0x48,0x5d,0x25,0x93,0xd2,0x26,0xaa,0xf0,0xd5,0x7d,0x45,0xf9,0xb0,0x27,0x34,0x4a,0xd7,0xf7,0x2a,
0xfd,0x7b,0x85,0xb2,0xcb,0xdd,0xaf,0xfc,0x5d,0x49,0x76,0x4f,0x7b,0x03,0xc9,0x2f,0xe2,0x81,0x7c,0x37,
0xd5,0x9e,0x0a,0x38,0x2a,0x25,0xb9,0x44,0x29,0x0f,0x47,0x45,0x30,0x81,0x52,0x2c,0xc7,0x28,0x9f,0xad,
0xce,0xfd,0xda,0x93,0xd3,0x8f,0x2f,0x7e,0x58,0x74,0x70,0xea,0x2f,0x3f,0x38,0x75,0xc5,0xab,0xa4,0xc6,
0xb7,0x55,0xa8,0x67,0xd7,0xbb,0x2a,0x54,0x51,0x9e,0x23,0xb4,0x65,0x74,0x4d,0x45,0x5f,0xd3,0xc9,0xb0,
0xc6,0x69,0xd3,0x8d,0xe3,0xef,0xa2,0xce,0x4e,0xc1,0x0e,0xde,0x51,0x80,0x01,0x56,0x4a,0x94,0x25,0x69,
0x94,0x18,0x60,0xbc,0xb5,0x09,0xf8,0x5e,0x8d,0x92,0x42,0x56,0x57,0x01,0x32,0x8c,0x65,0x64,0x7b,0x91,
0xa0,0x97,0xb9,0x78,0x37,0x5e,0xd4,0x0b,0xe1,0xfc,0xbd,0xa2,0x4b,0x57,0xf0,0x03,0xc0,0xaa,0x1a,0xfd,
0xe4,0x0a,0xfa,0xce,0x53,0xd6,0x84,0x82,0x34,0x7a,0x68,0x45,0xa0,0x33,0xc3,0x2d,0xf6,0xb9,0x2a,0x8f,
0x2b,0xec,0xf2,0x38,0x87,0x36,0xfa,0x4d,0xf2,0xb2,0x80,0x39,0xd3,0x2f,0xf7,0x16,0x07,0x45,0x01,0xff,
0xe0,0xaa,0xc0,0x4e,0xd4,0x52,0x03,0xff,0x16,0x2d,0xf5,0xa4,0xe3,0x75,0x7b,0xe9,0xbf,0x57,0x37,0x2e,
0x79,0xd7,0x50,0x34,0x3e,0x4f,0xd9,0x32,0xea,0x7f,0x0e,0x7f,0x37,0xcd,0x42,0xb9,0x94,0x55,0x53,0xbb,
0xf1,0xfc,0x23,0x98,0x28,0x04,0x7f,0x03,0x7c,0xa1,0x8f,0xd5,0xf7,0x21,0x2a,0xea,0x1f,0xf5,0xf8,0xc5,
0x15,0x42,0x1b,0x8a,0x61,0xdd,0xe9,0x39,0x53,0x32,0xea,0x54,0x3c,0xe1,0x7c,0x3c,0x22,0xe1,0xe3,0xef,
0xd4,0xf3,0xef,0x05,0x70,0x30,0x9a,0x87,0x04,0x58,0x0e,0xab,0xc2,0x19,0xff,0x62,0x25,0x75,0x3f,0x0b,
0xf1,0x22,0xd0,0x9d,0x01,0xcf,0xec,0x59,0xe7,0x4c,0x2c,0x73,0x15,0x95,0xac,0x42,0x71,0x4d,0x8f,0x99,
0xbd,0xe3,0x40,0x75,0x77,0xd0,0xa8,0xef,0xce,0x99,0x1d,0x22,0xfd,0x6a,0x9f,0xfb,0x6f,0xd9,0xaf,0xdd,
0xf3,0x6e,0xe5,0x6a,0x7a,0x77,0x1e,0xbe,0xb5,0xfb,0xe7,0xc1,0xa8,0xd4,0xaf,0xb9,0xba,0x86,0x77,0xbe,
0x7e,0xd2,0x4c,0xbd,0xb9,0x95,0x19,0xfc,0x5d,0x32,0xf4,0x56,0x30,0xd4,0xad,0xb6,0x16,0xf2,0xc1,0xb7,
0x28,0x4c,0xf2,0x5a,0xc2,0x02,0xb0,0xe1,0x47,0xf0,0xc0,0xea,0x4b,0xe9,0x6b,0x4f,0xc0,0x35,0x1f,0x42,
0x9e,0xa7,0xa5,0xa6,0x39,0x7f,0xbe,0x63,0x03,0x80,0xfa,0x5f,0x20,0xaa,0x1e,0x96,0x8a,0x9a,0x56,0x1a,
0x5a,0x55,0x0e,0x71,0xe0,0xe9,0x55,0xa1,0xc2,0x7f,0x0e,0xa4,0x98,0x16,0x96,0x33,0xd5,0x6c,0xaf,0x7b,
0x52,0x31,0xc1,0xe3,0x5a,0xdf,0xc0,0x13,0xa6,0x7e,0x13,0x2a,0x49,0x21,0x10,0xda,0x80,0x02,0x58,0xf3,
0x9f,0x1a,0x2a,0xf2,0x82,0x16,0xd7,0x8d,0x13,0xc6,0xf8,0x1b,0x53,0xc1,0x93,0xa5,0x57,0x68,0xde,0xae,
0x20,0x28,0x38,0xf1,0xbc,0xba,0x9a,0x91,0x44,0x5a,0x54,0x8c,0xd9,0x68,0x12,0xf7,0x27,0xba,0xd1,0xa5,
0xac,0x9a,0xff,0x22,0x2c,0xd3,0xa9,0xb5,0x90,0x0c,0xbd,0x78,0x08,0x43,0x2f,0x31,0xd7,0x61,0xdf,0xff,
0x25,0x7c,0xc9,0x94,0x07,0x2f,0xf0,0x07,0x69,0xf0,0xfe,0x10,0xca,0x19,0xf4,0x32,0x40,0xc9,0x67,0xeb,
0x00,0xff,0x8a,0x27,0xa2,0x1f,0xb5,0xe8,0xe1,0x90,0xc7,0x0f,0xc5,0xe1,0xc9,0x67,0x6b,0xc8,0x2f,0xb4,
0x7c,0xfc,0x60,0x6a,0xbb,0x0e,0xfb,0x97,0xa9,0x5c,0x38,0x9a,0xc9,0x00,0xd7,0x0e,0xf7,0xb4,0x71,0xe1,
0xe1,0xfa,0xf1,0x51,0x79,0xd8,0x0a,0x1f,0xb7,0x25,0x46,0x2f,0x32,0x80,0x8b,0x97,0xff,0xe3,0x57,0x65,
0xd8,0x52,0x33,0x1c,0x0e,0x31,0xc7,0x6e,0x65,0xed,0xa3,0x66,0xa1,0x57,0x85,0xee,0x69,0xa3,0xe1,0xa9,
0x4f,0x68,0x44,0xea,0x30,0x4c,0x17,0x3c,0x6d,0xc3,0xad,0x95,0x16,0x5e,0x05,0x9f,0x05,0x71,0x53,0x4a,
0x6c,0xfe,0x3f,0x84,0x76,0xd1,0x43,0x45,0xf6,0x74,0x38,0x55,0x44,0xf6,0x55,0x61,0x3d,0x97,0xbc,0xab,
0x6f,0x7e,0x25,0x06,0xa3,0x2b,0xdd,0x15,0x77,0x8b,0x15,0xd0,0x1f,0x5d,0xe5,0xd9,0x52,0x37,0x36,0xf0,
0x6b,0xd0,0xbd,0x25,0xf6,0xa3,0x07,0x07,0xf4,0xea,0x4b,0x74,0x2d,0xa9,0xc0,0xca,0x5e,0x01,0xf6,0x3c,
0xaa,0x44,0xf2,0xf7,0x1f,0x1d,0x6d,0x9d,0x59,0x62,0x31,0xaf,0x31,0x6e,0x4c,0x56,0x81,0xee,0xf4,0xcb,
0x17,0xb7,0xd1,0x28,0x41,0x5a,0x54,0xac,0xa3,0x90,0x28,0x29,0x56,0xa2,0xfa,0x48,0x68,0x26,0x2d,0x12,
0x43,0x7c,0xa5,0xbf,0xcb,0x18,0x0c,0xa9,0x56,0x51,0x75,0xd5,0x80,0xde,0x8a,0x3b,0x2e,0x3e,0x1a,0x34,
0x9b,0x8b,0xb8,0xa0,0xd8,0x3a,0x2e,0x78,0xa4,0x85,0x0b,0x1e,0xb3,0x94,0x8b,0xb6,0x57,0xd5,0x7f,0xf9,
0x39,0x9b,0xe0,0x76,0x76,0x4f,0xd8,0x32,0x19,0xc2,0x65,0x16,0xfe,0x47,0xe7,0x16,0x8f,0xbe,0x12,0x40,
0xcf,0x11,0xb8,0x15,0xe8,0x2e,0x7d,0xec,0x9c,0x5b,0x0f,0x1a,0x98,0x01,0x1d,0x35,0x11,0x1b,0xfc,0xec,
0x47,0x1a,0xe8,0x3e,0x0f,0xc4,0xf1,0x53,0xa4,0x97,0xe9,0x84,0xae,0x3a,0xec,0xe7,0x1c,0x65,0x6d,0x45,
0x31,0xcb,0x3b,0xa8,0xa6,0x25,0x83,0x7b,0xc4,0xc8,0x6d,0x5e,0x26,0x01,0x66,0x80,0xa6,0x63,0x0b,0xef,
0x28,0x0e,0xd0,0x78,0x93,0xbd,0x4f,0xa9,0x70,0x38,0x4b,0x8b,0xca,0xa1,0xe7,0xf9,0x18,0x5f,0xeb,0x28,
0x07,0xac,0x01,0x03,0xcf,0xb9,0xbf,0x8a,0x8b,0x71,0x3a,0xe8,0x38,0xc7,0x2f,0xde,0x3b,0xfe,0x65,0xca,
0x40,0xdc,0xe1,0x3a,0x30,0x80,0x89,0x96,0xc0,0xba,0xd9,0x71,0x72,0x58,0x4f,0x9a,0x6c,0xa4,0xa2,0x32,
0x56,0x31,0x86,0xa3,0xb1,0x5a,0xe7,0xdd,0x56,0x2b,0x0c,0x85,0x55,0x4a,0xcf,0xe5,0xc0,0xb1,0x5b,0x5b,
0x02,0x41,0x96,0x5e,0x70,0x60,0xe8,0x8b,0x18,0x6a,0x9c,0x0f,0x71,0xff,0x1d,0xfc,0x8e,0x0b,0x57,0x54,
0x89,0x00,0xe0,0xf0,0x79,0x99,0x0b,0xa5,0x16,0x22,0xda,0xe0,0xf2,0x25,0x5d,0xaf,0xed,0x7c,0x9a,0xee,
0x8c,0x7c,0xe7,0xd3,0x27,0x7c,0xa4,0x29,0x03,0x33,0x16,0x98,0x69,0x81,0x05,0x0b,0x44,0x50,0xd8,0x2e,
0xcc,0x12,0xf5,0x55,0x1a,0xd1,0xf3,0x04,0xcf,0xe9,0x94,0xb8,0xd6,0x78,0xb8,0xc4,0xa7,0xf6,0x13,0x84,
0x26,0xc6,0xa9,0xac,0xb8,0x4c,0xf4,0xfc,0x2a,0xa6,0xcc,0x11,0xeb,0x06,0xe6,0x88,0x2d,0xe7,0x58,0x9f,
0x25,0xe8,0x99,0xcf,0xfd,0xd4,0x9e,0xfe,0x17,0xc3,0x99,0x21,0x74,0x40,0x09,0x87,0xe5,0x30,0x9f,0x29,
0x96,0x47,0xe1,0xb6,0x2c,0xc9,0x00,0x5b,0xd5,0x78,0xc7,0x97,0x37,0x8d,0x75,0x85,0xd9,0x10,0x36,0x45,
0x59,0x89,0x1a,0x55,0x3a,0xa4,0x25,0x7c,0x96,0xb9,0x8f,0xd8,0x35,0x73,0xaf,0xa3,0x61,0xd9,0xc0,0x20,
0x60,0xd0,0xe1,0x5a,0xeb,0xe8,0xf0,0xc1,0x95,0x04,0xc6,0x08,0x65,0xae,0x6a,0x68,0x67,0xcd,0x3f,0x40,
0xeb,0xb8,0x34,0x0d,0x3a,0xcc,0x8f,0x4c,0x35,0x38,0xa7,0x70,0x58,0x4b,0x19,0x11,0xca,0xf4,0xa0,0x08,
0x6d,0xac,0xcb,0x09,0xe7,0x79,0x96,0xd9,0x70,0xc4,0xa0,0xde,0x90,0x80,0x38,0x35,0xd3,0x55,0xda,0x15,
0x72,0xf9,0x6b,0xc5,0x97,0x83,0xee,0x09,0xd2,0xaf,0x38,0xd8,0xf3,0x4d,0xfb,0x2a,0xbf,0xa6,0xa5,0x4b,
0x27,0x85,0x73,0x02,0x14,0xb3,0x9a,0xa7,0xaf,0x66,0x9c,0xae,0x61,0xbd,0x18,0x09,0x10,0x97,0x85,0xe7,
0xde,0x44,0xba,0xe6,0xc4,0x20,0x94,0x00,0x30,0x44,0x57,0x83,0xe8,0xd8,0x22,0x28,0x47,0xd4,0x39,0x66,
0xb9,0xf1,0xc7,0x55,0x26,0x6b,0xaf,0xd8,0xb7,0x72,0x48,0x34,0x0b,0x61,0x53,0x51,0x62,0xb0,0xa4,0xd0,
0xaa,0x25,0x52,0x0a,0xb1,0x77,0x6d,0xda,0x2a,0xfe,0xbe,0x96,0x5a,0xe0,0x0a,0xea,0x49,0xd8,0xd6,0x51,
0x21,0x94,0x88,0x7f,0x55,0x5a,0x1e,0xa1,0x91,0xe3,0xeb,0x51,0x93,0x60,0x92,0x2a,0xe4,0x88,0xc5,0xa4,
0x51,0x8e,0xa3,0xe6,0xa5,0x78,0x1e,0xd1,0x28,0x05,0x98,0x92,0x46,0xcd,0x81,0x8a,0x2a,0xa4,0x2a,0x28,
0x92,0x71,0x0e,0x2f,0xd1,0x90,0xa4,0x53,0x30,0xd7,0x92,0x44,0x29,0xa1,0x49,0xcb,0x98,0xbd,0x10,0x8c,
0xd1,0xe8,0xe5,0x75,0x9c,0x79,0x14,0xad,0xa6,0x62,0x20,0x6e,0xf6,0x14,0x02,0x56,0xcc,0x68,0x51,0x0a,
0xb6,0xa7,0xe1,0x20,0x5a,0xd5,0x34,0x2a,0x8e,0x17,0x1b,0xf5,0x0a,0xf4,0x97,0xaa,0x05,0xa8,0xa2,0xbf,
0x55,0x46,0x20,0xdb,0xc4,0x8d,0x91,0x47,0xc1,0x1a,0x69,0x09,0x47,0xdf,0x24,0x2c,0xaf,0x66,0x09,0x47,
0x6f,0xd4,0xc4,0x06,0x97,0xaf,0x65,0x16,0xcd,0x12,0xf4,0x93,0xa4,0xa5,0xd4,0x9f,0x72,0x6c,0x6c,0x36,
0x19,0xd8,0x59,0xad,0x0d,0x87,0xdd,0x7d,0x47,0x05,0x05,0x59,0x81,0x44,0x33,0x46,0x8d,0x42,0x1a,0xb0,
0xb6,0x33,0x90,0xd1,0x15,0xcc,0x3c,0x04,0x57,0xaa,0x64,0x80,0xe1,0xdc,0xeb,0x9f,0xb0,0x30,0x23,0x3b,
0x24,0x7d,0x81,0x80,0x4b,0x82,0x1d,0xf0,0x42,0xb3,0x2b,0x15,0x00,0x26,0xca,0x7b,0xa6,0xa7,0xe0,0x23,
0x18,0x39,0x32,0xad,0xa3,0x1a,0x23,0x79,0x25,0x67,0x55,0x9a,0x73,0xcf,0x71,0x08,0x3a,0x6d,0x5f,0xba,
0xf2,0xea,0x34,0xdb,0x73,0x4b,0xf6,0xa4,0xfe,0xfa,0xc0,0xdc,0x77,0x97,0xe6,0x2e,0x74,0x4a,0x1e,0x96,
0xff,0x93,0xa5,0xf9,0xc3,0x8d,0x38,0x33,0xb2,0x2d,0x2f,0xd5,0x36,0x7a,0xe6,0xc2,0xcb,0x92,0x80,0xa4,
0x00,0xfa,0xf2,0x11,0x4f,0x9a,0x4c,0x74,0x55,0x8b,0xbf,0x43,0x00,0xf5,0xb3,0x24,0x6d,0x0a,0xec,0xfd,
0x8a,0x6e,0x23,0x33,0xa8,0xd0,0xbd,0x39,0x14,0xac,0x22,0x42,0xd1,0x4e,0x9f,0xd3,0xe2,0xaa,0x5e,0x9e,
0xe0,0x17,0xd0,0x0a,0xb9,0xa5,0x4e,0x4c,0x0e,0x52,0x80,0xbf,0x88,0x73,0x3d,0xe8,0x4f,0xcc,0x06,0xa7,
0xf1,0xce,0xd2,0xd3,0xa8,0xab,0xe2,0x89,0xfa,0x2b,0xf9,0x7c,0xb2,0xfa,0x3e,0x0c,0x52,0xf6,0x83,0xb9,
0x4a,0xbc,0x27,0xf9,0x32,0x4a,0xd9,0x49,0x61,0x07,0x6f,0x00,0x38,0x9d,0x3a,0x78,0x57,0xab,0x9e,0xee,
0xc4,0x31,0x5f,0x75,0x4e,0x0c,0xa7,0x95,0x77,0xb0,0x4e,0x5f,0x8e,0xa1,0xc9,0xa3,0xab,0xbc,0x7a,0x72,
0x81,0x3a,0x60,0xa4,0x87,0x4a,0x68,0x2e,0xa9,0x38,0x3a,0xd2,0x09,0x61,0xdc,0x2b,0x4f,0x5f,0x1d,0xeb,
0xe1,0x88,0x49,0x43,0xd4,0x53,0xf1,0x3d,0x57,0x5e,0xec,0x10,0xaf,0x86,0x47,0xf1,0x4d,0x59,0xf9,0x63,
0xef,0xfe,0x18,0x9d,0x53,0x56,0x2d,0x3b,0xaa,0x4a,0xfd,0x09,0x2d,0x2d,0xec,0x59,0x59,0x3a,0xb0,0x17,
0x42,0x7e,0x81,0x40,0xa1,0x7b,0xc2,0x75,0xa3,0xf0,0xe3,0x79,0x90,0x8f,0x93,0x21,0x09,0xa3,0x27,0x9f,
0x5d,0x99,0xd0,0xf3,0x7a,0x11,0xa1,0xe2,0x13,0x94,0x3f,0x2c,0x1b,0x3f,0xa3,0x1d,0x39,0x7a,0x95,0x77,
0xbd,0x46,0xc4,0x5f,0x9f,0xdb,0x5e,0x27,0xea,0x4a,0xd1,0x5e,0xc4,0x25,0x35,0xdd,0x9c,0xff,0x98,0x33,
0x7b,0x4f,0x99,0x67,0x77,0x91,0x2b,0x4d,0xd6,0x11,0xc7,0xfc,0x76,0x89,0xf7,0x10,0xd7,0xf9,0xed,0xa7,
0x0f,0x47,0x6f,0x83,0x64,0x0a,0xfb,0xc0,0xf4,0x12,0x1f,0x47,0xb8,0x3f,0x33,0x02,0x28,0xe6,0x3f,0xc4,
0x1d,0xe6,0x7e,0xde,0x35,0x0c,0x73,0x22,0x7a,0x1e,0x8e,0x3c,0x9f,0xf5,0xf0,0x38,0x50,0x0d,0x63,0x68,
0xd0,0xc0,0xcc,0x5a,0x58,0x24,0x3a,0xe0,0x54,0xa1,0x4d,0xa3,0x2f,0x5f,0xcc,0x52,0x84,0x58,0x1e,0x5f,
0xbf,0x0d,0x8f,0xf7,0x68,0xd3,0xca,0x60,0xa5,0xb3,0x10,0x7f,0xf3,0x86,0x46,0xdf,0x0c,0xde,0xa6,0xaa,
0x7b,0x11,0x66,0xb8,0xa7,0x2c,0xcc,0x09,0xed,0x9d,0x9c,0x46,0x7e,0x8e,0x32,0xb0,0x54,0x3a,0x34,0x13,
0x79,0x8b,0xd8,0xaf,0x2a,0x61,0xc4,0xf2,0x50,0x94,0x14,0x58,0xde,0xa3,0xb5,0xf2,0x2e,0xdd,0x2f,0x07,
0xcc,0xb4,0x01,0x4d,0x75,0x35,0xae,0xd5,0x88,0x30,0xc5,0xad,0x50,0x3c,0x7c,0x59,0xd3,0x96,0xe5,0xa8,
0xa1,0x50,0x64,0xf7,0x98,0x89,0xf4,0x5d,0xe7,0x35,0x5d,0xb8,0xb9,0x29,0xc5,0x06,0x6e,0x9b,0xf8,0xfe,
0x8e,0xe8,0xf8,0xd2,0x41,0x44,0x7c,0x07,0xab,0x03,0x42,0x9f,0xfe,0xf6,0xd3,0x75,0x9c,0x7d,0x36,0xa6,
0x14,0xc9,0xb6,0xfc,0x84,0xb9,0x53,0x18,0x87,0xd6,0x69,0xd7,0x1d,0x0b,0x3f,0xa3,0x79,0x88,0xc8,0x15,
0x57,0x51,0xd1,0x71,0xc6,0x88,0x5c,0x43,0x2e,0xb1,0xe2,0x5b,0x04,0x97,0x98,0x24,0x37,0xcc,0x99,0x1b,
0xac,0x4f,0xb4,0xce,0xe2,0x87,0x80,0x2a,0xc6,0xdf,0xd1,0x75,0x81,0x07,0x9d,0xe4,0x0f,0xf9,0xf5,0x92,
0x65,0x05,0x5f,0xe8,0x49,0x16,0x97,0xb5,0x0f,0x58,0x32,0xf9,0x51,0xf4,0x2f,0x73,0x86,0x11,0xd9,0xc1,
0x67,0x68,0xba,0xbd,0x76,0x9c,0x59,0x3a,0x43,0xab,0xad,0x68,0x9a,0x5c,0xfd,0xc0,0x55,0x52,0x3a,0xbb,
0xad,0x96,0xff,0xf7,0x6b,0x28,0xa7,0xf8,0x8c,0x5b,0x32,0xb7,0xfc,0xa2,0x2c,0x48,0xe6,0x07,0x93,0x1f,
0x36,0xd3,0xab,0xb4,0x8f,0x0b,0x23,0x14,0xc5,0x7e,0x7d,0x48,0x06,0xc5,0xb8,0x83,0xce,0xc4,0x51,0x7f,
0x09,0x0e,0x4f,0x04,0xa7,0x8d,0xf5,0x40,0xc9,0xf9,0x29,0x6b,0x6e,0xf2,0x41,0x37,0x8d,0x66,0x18,0x8c,
0x7f,0xdf,0xc3,0xa5,0x34,0xc3,0x39,0xd2,0x09,0x5a,0x7b,0x73,0x7f,0x1c,0x3c,0xff,0xf9,0xf8,0xe2,0xec,
0xc5,0x8f,0x87,0xef,0x4f,0x7e,0x79,0x71,0xf1,0xf6,0xf0,0xf8,0xc5,0xc5,0xe9,0xd9,0xc9,0xf1,0xc9,0x9b,
0x10,0xf3,0x09,0xf8,0xef,0xfb,0x49,0x3c,0x2c,0xe0,0xe2,0x03,0x9b,0x23,0x2c,0x7c,0x10,0xce,0x8c,0xe0,
0x10,0x8d,0x3f,0xd4,0xf7,0x32,0x66,0xa6,0xed,0x48,0xcc,0xa3,0x82,0xab,0x3e,0xa3,0x71,0x25,0xe2,0x17,
0xfd,0xc5,0x61,0x3a,0xca,0xd8,0xf4,0x9d,0x76,0x18,0xba,0x49,0xa8,0xd8,0x73,0xee,0xee,0xed,0x6d,0xc7,
0x41,0xe6,0x95,0x40,0xff,0xe4,0x58,0x4d,0xbe,0xb7,0x27,0xa1,0xd3,0x22,0x4b,0x1e,0x4c,0x99,0x9b,0x29,
0x47,0xb5,0x29,0x73,0x4a,0x99,0xb3,0x94,0x91,0x99,0xb2,0x5f,0x9b,0x32,0xa2,0x94,0xb0,0x1a,0x65,0x8d,
0x30,0x69,0xe4,0x8d,0x48,0x55,0xb5,0x86,0x6a,0x45,0xd5,0x7a,0x41,0x00,0x2d,0xec,0x7e,0xee,0x47,0xdd,
0x3f,0x55,0x15,0x39,0xd2,0x8a,0x91,0x32,0xd2,0x53,0x62,0xa5,0xd2,0x32,0x75,0x4a,0xa9,0xd3,0xb2,0x81,
0x1a,0xa9,0xda,0x44,0xa8,0xfb,0x8b,0x2d,0x84,0xca,0xc1,0x4e,0xc3,0xd2,0x12,0x64,0x96,0x6a,0xa9,0xa7,
0x3d,0xbc,0x0f,0xe1,0x9e,0x53,0x29,0xe0,0x91,0x52,0x02,0xd9,0x04,0x07,0x19,0x0a,0xc1,0xc5,0xc7,0x48,
0xfd,0xe8,0x93,0x38,0xbc,0x92,0x41,0x24,0x32,0x88,0xbe,0x15,0x8f,0x3e,0x3a,0xf4,0x88,0x2c,0xbc,0x46,
0x8f,0xd4,0xb2,0x56,0xe1,0x56,0x7e,0x44,0x06,0xeb,0xa8,0x02,0x8d,0xb9,0xc1,0x5f,0xc8,0x0c,0x0d,0x84,
0xe3,0x60,0xcc,0x0b,0xcf,0xf9,0xdf,0x9b,0x2a,0x13,0x40,0xfc,0x48,0x49,0xc5,0xf2,0x1e,0xab,0x05,0xe5,
0xea,0xc7,0x8d,0xad,0xd4,0x48,0x64,0x10,0x2d,0x2a,0xd7,0xde,0x08,0x98,0xea,0x91,0x9a,0x7e,0x15,0x0e,
0x16,0x36,0x42,0x9f,0xe7,0x86,0xfd,0xbf,0x52,0x03,0xf4,0x1f,0x29,0x29,0x1e,0xd2,0x00,0x7d,0xd1,0x00,
0xd4,0x8b,0x6b,0x55,0xbe,0x2f,0x2b,0xdf,0x7f,0x60,0xe5,0x85,0x11,0x45,0x86,0x4b,0x31,0x1c,0x0e,0xe1,
0xd0,0x8a,0xeb,0xb1,0x29,0x22,0xf6,0x33,0x3f,0x09,0xef,0xa3,0x4e,0x7b,0x5e,0xfa,0x94,0x8d,0x03,0x52,
0x13,0x71,0x77,0xfe,0xe7,0x2f,0x1f,0x5b,0xcd,0xbf,0x45,0xcd,0xe1,0xf9,0xfd,0x93,0xf9,0x5f,0x77,0x12,
0x92,0x35,0x9a,0x71,0x4f,0x29,0x8e,0xc9,0xfc,0xf2,0x37,0xd1,0x1b,0x37,0x09,0xb2,0xb0,0xfd,0xdd,0xb6,
0x02,0xf5,0x91,0x5f,0xf7,0x81,0x0b,0xb7,0xed,0xb7,0x61,0xf1,0xd9,0xf7,0x76,0x60,0x16,0x28,0x78,0xed,
0x4a,0xc2,0x91,0x3d,0xe1,0xee,0xd2,0x84,0x7d,0x7b,0xc2,0x27,0xb5,0x09,0xf7,0x4a,0x35,0xcc,0xad,0x2d,
0x91,0x4b,0x64,0xcf,0xe5,0xa9,0x35,0x17,0x79,0x2a,0xaa,0x36,0x9b,0xd1,0x6a,0xb5,0x04,0xab,0x37,0x5d,
0xeb,0xa1,0x4d,0xd7,0x7e,0x68,0xd3,0xd5,0xb7,0xf9,0xd3,0x35,0x9a,0xee,0xc9,0x7a,0x4d,0x57,0x8e,0xaa,
0xfd,0x9a,0xb6,0x2b,0x29,0xbe,0xb7,0x35,0x9e,0xad,0x01,0x76,0x97,0xb6,0x9c,0x8d,0xef,0xdd,0xa5,0xcd,
0x66,0xa6,0xda,0xab,0x4d,0xf5,0x37,0x7b,0x9b,0x99,0x59,0x7c,0x67,0xcd,0x62,0xf9,0x58,0xdb,0x5f,0x36,
0xd6,0x56,0x6c,0xae,0xd6,0x83,0x9a,0x6b,0xf7,0x41,0xcd,0xf5,0xb4,0x36,0xd5,0xf7,0xab,0x36,0xd7,0xfe,
0x7a,0xcd,0x85,0x9b,0xea,0xa7,0x7c,0xfb,0x93,0x0b,0xff,0xb8,0xd8,0x34,0x9f,0x82,0xf3,0xc6,0xa3,0x2f,
0x1f,0x5b,0xed,0xf3,0xde,0xa7,0xa0,0x87,0x21,0xe7,0xdb,0x1e,0x44,0xfa,0xff,0x7a,0x82,0x4f,0x9e,0xbd,
0xc7,0x80,0xc7,0x7f,0x13,0x8b,0x8c,0x03,0x1a,0x12,0x59,0x58,0x61,0x23,0x82,0x18,0xdf,0x79,0x04,0x97,
0x48,0xc2,0xc0,0x60,0xcd,0x4d,0xae,0xae,0x4b,0xbd,0x76,0xd7,0xf1,0x1a,0x6d,0x5f,0x09,0xf0,0x1d,0xcf,
0xf3,0x84,0x78,0xa1,0x90,0x86,0x3c,0xd6,0x51,0xf7,0x72,0x92,0x46,0x68,0xf4,0x40,0x08,0x1d,0x66,0xcf,
0x59,0xc6,0x68,0x61,0x19,0x28,0x4b,0x38,0xf4,0x4d,0x0e,0xfd,0x6a,0xf4,0x0a,0x2c,0x8f,0xd6,0x62,0x79,
0xb4,0x1a,0xcb,0x59,0xaf,0x96,0x69,0x93,0x47,0xaa,0x05,0x42,0xb7,0x9d,0xa8,0x6d,0xdd,0xd1,0x73,0xa8,
0xc6,0x9b,0x89,0xbc,0x55,0x3a,0xa8,0xbf,0x56,0x6d,0xfb,0x8b,0x6b,0x9b,0x79,0xb5,0xbd,0xf4,0x8d,0xd8,
0x8d,0xd6,0x62,0xb7,0x42,0x5d,0xa1,0xbc,0x2f,0x25,0x51,0x72,0x3e,0xe2,0x19,0xf4,0x3f,0x6b,0xcd,0xd8,
0xda,0xb2,0xf0,0xf8,0x6f,0x5d,0x33,0x6c,0x1c,0xf4,0xff,0x04,0xad,0xf4,0x6f,0x5e,0x59,0xb5,0x89,0xf0,
0xef,0x5b,0x61,0xc7,0x6b,0xcd,0x88,0x2a,0x35,0xe2,0x2b,0xfd,0x1f,0xac,0xb1,0xf9,0x5a,0x4c,0xe7,0x75,
0xd3,0xf8,0x4f,0xb1,0xc2,0xde,0xac,0x55,0xd7,0x9b,0x45,0x75,0xfd,0xf3,0xac,0xaf,0x42,0xd4,0x8b,0x77,
0x52,0x58,0xaf,0xde,0xa7,0x67,0xa3,0xbe,0x26,0x1c,0xf4,0xa5,0xcf,0x95,0xf8,0x20,0x6c,0xef,0xec,0x7f,
0xf9,0xb2,0xb7,0xb3,0x7f,0x10,0xc6,0xbd,0x76,0x27,0x3e,0x68,0xef,0x3c,0xe9,0xb5,0x9b,0xfb,0xdb,0x6e,
0xdc,0x84,0x28,0xaf,0xf3,0x14,0xa2,0xe2,0x1e,0x7d,0x3f,0xc5,0xef,0x96,0x9f,0x63,0x9a,0x03,0xd4,0x54,
0x87,0xe4,0xc1,0x1e,0x4f,0xb5,0x0f,0x34,0x31,0xfc,0x02,0x22,0x91,0x3e,0xd8,0x43,0xf2,0x08,0x68,0x04,
0xf5,0x1e,0x46,0x76,0x76,0x31,0x4b,0xfc,0x86,0xc4,0x44,0xb8,0x8b,0x19,0xef,0x51,0x41,0x3c,0xe9,0x1e,
0x15,0xc5,0x1f,0x3c,0xee,0xb3,0x8e,0x9b,0x34,0xdc,0x76,0x33,0xf1,0xb6,0xe1,0x5f,0xa8,0xec,0x76,0xe6,
0x8f,0x3a,0x6e,0x8e,0x61,0xb9,0x12,0xd6,0xef,0xb8,0x11,0x86,0x45,0x65,0xd8,0x1c,0x5b,0x01,0x4e,0x7a,
0xef,0xd3,0x57,0xf9,0x8d,0xbd,0x15,0x7c,0x2e,0xdc,0xbb,0x8a,0xee,0x78,0x38,0xf0,0x9c,0x37,0x59,0x58,
0x22,0x68,0xbb,0x52,0x82,0xde,0x0a,0xc3,0x08,0x81,0xfb,0xc3,0x30,0xef,0xb9,0xfb,0x0d,0xb7,0x68,0x66,
0xde,0x4e,0xe4,0x3d,0xda,0xef,0x14,0x18,0xb4,0xdb,0x70,0xb3,0x66,0x0c,0x21,0x9d,0x0c,0x3f,0x9f,0x36,
0xa0,0x3a,0x05,0x7e,0xb6,0x10,0x64,0x2d,0xd9,0x09,0xf7,0xfd,0xbc,0xd3,0xda,0x84,0xa8,0x68,0x07,0x7e,
0xf8,0x37,0x9d,0x9c,0x98,0xb4,0x3e,0x4d,0x91,0x28,0x97,0xde,0x7b,0x48,0x0c,0x1e,0xc2,0x37,0x7e,0x90,
0xd4,0x37,0x84,0xec,0x5a,0x3e,0xcb,0xa2,0xed,0x67,0xf0,0xff,0x08,0xfe,0xef,0xc3,0xff,0x28,0x67,0xf0,
0xf9,0xc3,0x21,0x83,0xc4,0x73,0xcb,0x3c,0x84,0x25,0x3a,0x85,0xf0,0xb7,0x80,0xf0,0x38,0x88,0xef,0x0a,
0x34,0x49,0xda,0x04,0x2e,0x91,0x1b,0x21,0xa3,0xf7,0x64,0x3e,0x5c,0x8e,0x8d,0x46,0x56,0x6c,0xbd,0x57,
0x33,0xe0,0x8a,0xe3,0x39,0x3e,0x18,0x59,0x82,0x43,0xe7,0xf6,0x66,0xe6,0x34,0xdc,0xd6,0x81,0x9e,0x8a,
0xc9,0xff,0xcb,0x15,0x22,0x72,0xbc,0x1e,0xfc,0xd3,0x71,0x10,0x9c,0x99,0xb3,0x9c,0xe0,0xbb,0xa7,0xde,
0x3e,0xc1,0x6d,0x32,0x18,0xc5,0x05,0x2d,0xf4,0x95,0x18,0xf4,0x6d,0x37,0x89,0x3e,0xdb,0xa2,0x30,0xab,
0x50,0xd7,0x9d,0x6a,0x6f,0x86,0x26,0x0d,0x7a,0x94,0x3a,0x81,0xbf,0xde,0x7d,0x7d,0x5c,0xb8,0xc9,0x2c,
0x21,0xf1,0xc5,0xed,0xf1,0xc1,0x20,0xb9,0x11,0xa8,0xce,0xf4,0xfe,0xd5,0xe4,0x5c,0x38,0x1b,0x79,0xf1,
0x79,0x12,0x87,0x08,0x83,0x3d,0x83,0xef,0xce,0x06,0x2a,0xbf,0x76,0x11,0xea,0x19,0x92,0x3c,0x7b,0xec,
0x75,0x63,0xf5,0xb9,0x7a,0x1c,0xbc,0x62,0x58,0xd0,0xa2,0x16,0x17,0x14,0xe1,0xd5,0x54,0x31,0xa6,0xa7,
0xd4,0x16,0xbe,0xc0,0x39,0xfd,0x74,0xa0,0xe0,0xdc,0xc6,0xc2,0x98,0x48,0x4f,0x08,0xe4,0xf4,0x26,0x82,
0xef,0xa7,0x3f,0x67,0x13,0x77,0x17,0x16,0x98,0x2e,0x24,0x1e,0xc7,0xd1,0xa0,0x4c,0xfc,0xf8,0x80,0x98,
0xde,0x20,0xf0,0x6d,0x7a,0xa2,0xde,0xc1,0x37,0x83,0x67,0x01,0xab,0xda,0x2d,0x65,0xb1,0x71,0x5f,0x2a,
0x42,0x37,0xc9,0xf3,0x70,0x67,0xe3,0x1a,0xb2,0x7c,0x8c,0x4a,0xce,0x5e,0x77,0x7e,0xb0,0x43,0x99,0xa0,
0x5d,0x20,0x16,0x50,0x5c,0x09,0xcd,0xb1,0xab,0xf4,0x3a,0x8f,0xaf,0x67,0xe6,0xd3,0x91,0x52,0x7b,0x24,
0xbf,0xe0,0x84,0xd5,0xf4,0x45,0x7a,0x7d,0x39,0x06,0x36,0x1f,0x9c,0x01,0x05,0xa3,0xcb,0x8c,0x15,0x73,
0x40,0x52,0x2b,0x13,0x0f,0xc8,0x83,0x3d,0x89,0xb3,0x3c,0x32,0x7a,0xbd,0x5a,0x98,0x01,0x23,0xbf,0x60,
0x94,0x5e,0x75,0x91,0x08,0x98,0x66,0xdf,0x07,0x36,0x15,0x2c,0x2f,0xc1,0x8e,0x32,0x2e,0x1f,0x8b,0xce,
0x23,0xea,0xc7,0xcf,0x6c,0x51,0xc8,0x49,0x7d,0xcc,0x29,0x1b,0x75,0x8f,0xf9,0xd8,0x55,0xa1,0xcc,0x35,
0xba,0xa3,0xeb,0x2c,0x4f,0xb3,0xc7,0x25,0x9a,0x39,0x51,0x9b,0x99,0xbe,0xba,0x8e,0x37,0xd8,0x4f,0xb6,
0x46,0x34,0x6f,0x19,0xd4,0x3a,0xa4,0xbc,0x8c,0xa6,0x37,0x51,0x6e,0xd2,0xbf,0x23,0x42,0x2d,0xd5,0xe3,
0x8d,0x5b,0x7c,0x7c,0x43,0xdb,0x83,0x0d,0x66,0xfc,0x18,0x3e,0xde,0x6b,0x3d,0xde,0x60,0x98,0x48,0x8f,
0x21,0x11,0x72,0xc2,0x32,0xb4,0xf2,0x0c,0x14,0x8c,0x63,0x91,0xed,0xe5,0x8a,0xfc,0xbf,0x8b,0x8a,0xb5,
0xf8,0x07,0xfa,0xf5,0xf9,0x87,0x44,0xfc,0x69,0x72,0x49,0x35,0x80,0xf0,0x61,0xd5,0x80,0xdd,0x61,0xad,
0x6a,0x00,0xfd,0xfa,0xd5,0xa0,0x2d,0x68,0x49,0x0d,0x80,0xe6,0x61,0x35,0x38,0x8b,0x07,0x6b,0xd5,0x00,
0xe8,0xd7,0xaf,0x01,0x24,0x5a,0xc2,0x3f,0x50,0x3c,0x8c,0xff,0xe3,0x0c,0x1d,0x71,0xaf,0x53,0x03,0x4a,
0xb1,0x7e,0x1d,0x28,0xd9,0x92,0x5a,0x10,0xcd,0xc3,0xea,0xf1,0x7c,0xb2,0xe6,0x8c,0xc6,0x04,0xeb,0xd7,
0xe2,0xf9,0xf2,0xa1,0x84,0x24,0x0f,0xab,0xc3,0xe1,0x64,0x36,0x8e,0xd6,0xaa,0x04,0xa5,0x58,0xbf,0x16,
0x94,0x6c,0x49,0x35,0x88,0xe6,0x61,0xf5,0x78,0xcb,0x54,0x29,0xea,0x98,0xe6,0xd1,0xcf,0xd3,0x3b,0x1b,
0x9b,0xed,0x72,0xf9,0x21,0xb5,0x33,0x98,0x5f,0xb4,0xed,0xa8,0xec,0xb2,0x82,0xe9,0x5f,0x47,0x71,0x73,
0xca,0xc1,0xf9,0xd4,0xfd,0xc0,0xdf,0x08,0x6c,0xed,0x59,0x06,0xb3,0x3a,0x55,0xc8,0xa4,0xf5,0xed,0xf5,
0x94,0xe9,0xbe,0xa1,0x17,0x11,0x07,0xbd,0x0c,0x08,0x43,0xac,0xe6,0x55,0xfa,0x47,0x13,0xf5,0x43,0x84,
0x46,0x9f,0xcf,0x2c,0x8b,0x44,0xf4,0x6d,0xdc,0xff,0x3d,0x29,0x16,0x50,0x2c,0x4f,0x4b,0xdb,0x7c,0xf3,
0x32,0x9a,0x4c,0xd0,0xdc,0x41,0xd0,0xf8,0xfc,0xcc,0x96,0x4e,0xf1,0x6c,0x84,0xfa,0xeb,0x96,0x4d,0xdc,
0xd0,0x8a,0x25,0x75,0xd7,0xb8,0x3c,0x81,0xa0,0xfb,0x68,0x4b,0x3a,0xbd,0xed,0xb4,0xc3,0x00,0x06,0x5c,
0xc8,0xb4,0x22,0x33,0xe2,0x91,0xec,0x12,0xbe,0x45,0x6e,0xab,0xb3,0xc6,0xc6,0xa5,0x91,0x25,0x0b,0xfe,
0x2a,0x36,0xd7,0xcc,0x79,0x15,0x96,0x05,0x70,0x6d,0x99,0x25,0x0b,0x79,0x20,0x9f,0xab,0x67,0xb7,0x12,
0x73,0x97,0x46,0x85,0x59,0x76,0x5f,0xd5,0x96,0x6b,0xe5,0xca,0xee,0x11,0xd5,0xf3,0x65,0xe5,0xba,0x60,
0xb1,0x7b,0x8a,0x77,0x76,0xfd,0x2c,0x2c,0xfc,0x24,0x94,0x60,0x94,0xec,0x50,0xca,0x3d,0xa5,0xc3,0x2c,
0xa1,0xf5,0x02,0x35,0x0f,0x03,0xb6,0xd0,0xc4,0x7e,0xc2,0x51,0x2a,0xc2,0x58,0xba,0xc6,0xcd,0xc3,0x24,
0x20,0xd8,0xf5,0x29,0x83,0xeb,0xdd,0x65,0xd6,0x84,0xe8,0xf9,0x22,0xee,0x46,0x8d,0x86,0xf4,0x9d,0xa1,
0x62,0x03,0x73,0xcc,0x32,0xba,0xa6,0xe7,0x7f,0xcf,0x0a,0x86,0xa4,0x3e,0x4b,0x6f,0xdd,0xb4,0x99,0x21,
0x12,0x8c,0xfc,0x8e,0xe8,0x9b,0xb4,0x1f,0x37,0xdd,0xdd,0x46,0x71,0x30,0xe5,0x48,0xd1,0x93,0xd0,0x45,
0xe2,0x30,0x6c,0xf5,0xa2,0x83,0xac,0xf7,0xb7,0x56,0x67,0xf7,0xbb,0x56,0x87,0xd2,0x41,0x9d,0xa7,0x2e,
0x5c,0xe4,0x23,0x6f,0x07,0x49,0x3c,0x6f,0x87,0x82,0xdf,0x9e,0x6c,0xb7,0xbf,0x6f,0x79,0x0d,0x37,0x05,
0x7a,0xf8,0xd5,0x81,0xdf,0x28,0xc7,0x7b,0xf4,0x84,0xe0,0x6f,0xa6,0x3b,0x85,0x3f,0x0e,0x19,0x27,0x51,
0x3f,0x47,0xa0,0xf8,0xc6,0xc4,0x6b,0x70,0x82,0x83,0xf6,0x6e,0x0b,0xc5,0x1f,0x4f,0x5b,0x07,0x93,0x9e,
0x0b,0x1f,0x4d,0x49,0x38,0x69,0x92,0x34,0x70,0x67,0xbf,0xd5,0x99,0x10,0x19,0x45,0x4f,0x28,0x00,0xc1,
0x73,0x14,0x42,0x88,0xf0,0x0e,0xf6,0x31,0xa3,0x6a,0xa0,0x4c,0x57,0x89,0xe0,0xb9,0x5c,0xaa,0xb9,0x00,
0x13,0x66,0x2e,0x14,0x68,0xcb,0x05,0x23,0x78,0x2e,0xb3,0xaa,0x56,0x92,0x3b,0x46,0x91,0xcb,0x98,0x44,
0x2e,0x03,0xcf,0x43,0x98,0x80,0x2a,0xc5,0x35,0x52,0x5c,0x97,0x14,0x43,0x83,0xe2,0x12,0x29,0x2e,0x25,
0x45,0x97,0x54,0xfc,0x27,0xef,0xd8,0xed,0x99,0xa9,0x13,0xcd,0x48,0x91,0xe3,0x88,0xfe,0x1d,0xa2,0x32,
0x87,0xcf,0x88,0xce,0x50,0x6f,0x38,0xf5,0x23,0x1f,0x5f,0xe0,0xe7,0x52,0xfa,0x15,0x14,0x29,0x0d,0x5c,
0xd2,0x1e,0xae,0x8c,0x6c,0x52,0x5f,0xc6,0xfb,0xad,0x94,0x7f,0x58,0xc4,0x05,0x25,0x11,0x13,0xbd,0x2c,
0x24,0xa9,0x17,0x48,0x94,0x34,0x4c,0x68,0xb3,0x90,0x04,0x85,0x86,0x74,0x58,0x5e,0x4c,0x56,0x4a,0x63,
0xb4,0x49,0x89,0xd0,0x6e,0x55,0x49,0x4e,0x45,0xd0,0x13,0x28,0x1a,0x89,0xa5,0x47,0x1a,0xb4,0x76,0x57,
0x44,0x3e,0x8a,0xac,0x68,0x1c,0xe5,0x87,0xb0,0x0f,0x27,0xfd,0xeb,0x22,0xe6,0x50,0x18,0xb7,0x97,0xb3,
0x26,0x62,0x57,0x6d,0x6d,0x95,0xbe,0x1a,0x3f,0x16,0xe7,0x68,0xcd,0x0b,0x7f,0x42,0x25,0x31,0xb4,0x48,
0x5d,0x62,0x69,0xa3,0x8c,0x69,0x7a,0x94,0x70,0xb3,0xd5,0x71,0x86,0x11,0x9a,0x6c,0xeb,0x19,0xa2,0x59,
0x6c,0x57,0x63,0x95,0x70,0xcc,0x4a,0x9b,0x62,0xa5,0x7a,0x88,0x9d,0xc4,0x35,0x1f,0x8b,0x5a,0xed,0xeb,
0x42,0x6a,0x5f,0x77,0x2d,0x3a,0xbc,0x98,0x1d,0x57,0x05,0xce,0xce,0x7b,0xda,0x17,0xf1,0xe3,0x75,0x2a,
0x05,0x12,0xb3,0x73,0x45,0x35,0x7b,0xbe,0x60,0x20,0x19,0x12,0x28,0x53,0xc4,0xe4,0x7a,0x7e,0x7b,0x93,
0xd5,0x4a,0x0a,0xa2,0xd4,0x2f,0x55,0xf4,0x54,0x36,0x36,0x42,0x66,0x91,0x03,0x4d,0xa7,0x8f,0x5e,0xd6,
0x9c,0x8a,0x78,0x8e,0x29,0xbd,0xf6,0x58,0x02,0x3e,0x58,0xeb,0xa5,0x09,0x68,0x14,0x5b,0x88,0xec,0x19,
0xb5,0x57,0xa7,0xe0,0x4d,0xca,0xdf,0x3e,0xca,0xf0,0xe0,0x3c,0x55,0x1c,0x92,0x77,0x34,0x95,0x2d,0x27,
0x99,0xa2,0x99,0x3c,0x76,0x2a,0x3b,0x5d,0x71,0x59,0x98,0x83,0x28,0x53,0x5a,0x80,0x20,0x6d,0xb2,0x1a,
0x40,0x43,0x57,0xe2,0xab,0x19,0x94,0x18,0x30,0x5a,0x89,0xb1,0x80,0x11,0x14,0xef,0x40,0x15,0x17,0x99,
0x58,0x70,0xd5,0x6b,0xa6,0x49,0xe4,0x75,0x4c,0xaa,0x16,0x9f,0x4c,0xdc,0x32,0x56,0x36,0x16,0x0f,0x1c,
0x64,0xd1,0x2d,0xbb,0x0a,0xe4,0xee,0xa6,0xa0,0x65,0x46,0x86,0x22,0x18,0x59,0xc6,0x3d,0x7c,0x08,0xfb,
0x65,0xbe,0x44,0xf8,0x83,0x99,0x5f,0x10,0xe1,0x05,0xb5,0x88,0x48,0xdb,0x9f,0x5c,0x67,0xab,0x24,0x45,
0x3a,0x9e,0x12,0xad,0xdb,0x49,0x66,0x6b,0x13,0xa3,0xc2,0x44,0xb3,0x4a,0x57,0x97,0x8f,0x0f,0x5b,0x32,
0x4f,0xa2,0x38,0x1a,0x62,0xc9,0x42,0xd4,0x60,0xd1,0xb1,0xc8,0xa8,0x86,0x24,0xbe,0x20,0x8d,0x6d,0x21,
0x18,0xb6,0x32,0xc9,0x02,0xf9,0x39,0x69,0x79,0x1b,0xd3,0x80,0xe1,0x4d,0xcc,0x32,0xe7,0x49,0x97,0x36,
0x31,0x4b,0x49,0x2d,0x2c,0xb8,0x62,0x29,0x7f,0x8f,0x3f,0x2f,0x91,0x6e,0xb2,0xa4,0x44,0x27,0xef,0x12,
0x64,0x13,0xb4,0x42,0x2a,0x46,0x88,0xde,0xd6,0x2a,0x36,0x14,0xda,0x64,0xa7,0x8d,0x86,0xcf,0x75,0xe1,
0xe1,0xc5,0x35,0x29,0x2a,0x3b,0x03,0xdb,0x9e,0xd8,0xb2,0xea,0x75,0xaa,0xa6,0x2e,0x96,0x12,0x84,0xac,
0x5f,0x7f,0x63,0x58,0xb9,0x08,0x3d,0x4a,0x6a,0xfa,0xf7,0x62,0xee,0xd2,0xf8,0x90,0x26,0x1f,0x8c,0xba,
0x41,0x3a,0x9d,0xc0,0x28,0xea,0x88,0x39,0x2a,0x83,0xc8,0xc9,0x4f,0xfd,0x6a,0x3b,0x88,0xa1,0x0e,0xe9,
0xe7,0xb0,0xc6,0x48,0x46,0x8c,0x57,0xbf,0xd0,0x17,0x52,0x86,0x3d,0x5c,0xbf,0x88,0x8a,0x0d,0xe6,0xd8,
0x2d,0x07,0xb8,0xba,0x34,0x22,0xea,0xc5,0x4d,0x8c,0x67,0xd9,0x2c,0x25,0x00,0x0d,0x7c,0x3c,0x94,0xc6,
0x26,0xec,0xdd,0x2d,0x63,0xe0,0x03,0x79,0xa1,0x5c,0x96,0x89,0x1b,0x04,0x30,0x0b,0x92,0xdc,0xc5,0x57,
0xf5,0x55,0xb2,0xa7,0x35,0xce,0x9b,0xc7,0x41,0x3f,0x86,0x2d,0x32,0xae,0xac,0x83,0xc2,0x37,0x34,0x4c,
0x3b,0x86,0xa0,0x3a,0x2f,0x10,0x47,0xa5,0x76,0x6a,0xd0,0xfc,0x1c,0x0e,0xeb,0xc6,0xbf,0x8c,0xae,0x19,
0xe4,0x32,0xbe,0x6e,0x3c,0x23,0x81,0x7d,0x17,0x61,0xd5,0xa8,0xed,0x4a,0x6d,0xc1,0x5d,0xa1,0x43,0xd5,
0x6e,0x83,0x1b,0xca,0x66,0x5b,0x1e,0x20,0x12,0x3a,0x40,0xf0,0x91,0x44,0x52,0x11,0xd8,0x77,0x2a,0x5d,
0xe0,0x97,0xdd,0xcf,0xfb,0x7c,0x6b,0x2b,0x56,0x5c,0x83,0x32,0x72,0xbe,0x4b,0xf9,0x4a,0x0c,0x6d,0x58,
0xf4,0x53,0x02,0x22,0x24,0xd3,0x69,0x9c,0x91,0x81,0xc8,0x01,0x22,0x0a,0x96,0xf6,0x22,0x5b,0x5b,0xbc,
0x94,0x4d,0xa5,0x14,0x41,0x01,0x53,0x0b,0xb8,0x6e,0xf9,0x66,0xa9,0x2c,0xde,0xa1,0xf5,0xe6,0x01,0xd2,
0x16,0x21,0xfa,0x91,0x58,0xbb,0x4a,0x01,0x10,0x30,0x40,0x64,0x74,0x5f,0x40,0x45,0xe5,0xac,0x7d,0xd9,
0xe9,0x58,0xda,0x91,0x58,0x9e,0xf7,0x3e,0x26,0xe7,0xdc,0xba,0xe4,0xd6,0xe9,0xe4,0xa1,0x95,0x33,0x47,
0x43,0xc6,0x1f,0xdb,0xe8,0x5e,0x5d,0xc7,0x3a,0x55,0x6e,0xa3,0x7a,0x17,0x15,0x3a,0xd5,0x8d,0x8d,0xea,
0x97,0xa8,0x52,0x62,0x66,0xa3,0x3a,0x43,0xdc,0x1a,0x95,0x6a,0x64,0xa3,0x22,0xa1,0xa8,0x4e,0xd7,0xb7,
0xd1,0xa1,0xdc,0x51,0x27,0x8b,0x6c,0x64,0x24,0xd7,0xd3,0xe9,0x66,0x36,0x3a,0xd9,0x55,0x73,0x76,0x90,
0xc1,0xc7,0x55,0xc5,0x71,0x8e,0x36,0xe4,0x73,0x3e,0xc1,0xf9,0x94,0xaf,0xf4,0xa8,0x37,0x67,0xf6,0x85,
0x7b,0xad,0xed,0x22,0xe0,0xf6,0x4d,0xdd,0x4a,0x71,0x15,0xb9,0x1b,0xbb,0xa3,0x23,0x86,0x36,0xb7,0x45,
0xf9,0xda,0xe1,0x36,0x4d,0x71,0xb1,0x13,0x1c,0x91,0xc7,0xf8,0xa0,0xb4,0xe2,0xda,0xda,0xda,0xcc,0xc4,
0x8d,0x1e,0xae,0xf8,0x74,0xd0,0xbb,0x27,0x89,0x01,0x9a,0x6c,0x31,0x66,0xe0,0x17,0xb9,0xaa,0xb6,0x18,
0xee,0x8a,0x15,0x19,0x56,0xef,0x69,0x43,0x55,0x8c,0xc8,0xd8,0x91,0xf1,0x2a,0xca,0x46,0xc9,0xb4,0x89,
0xc6,0x53,0x0a,0xea,0x8a,0x33,0x83,0x33,0x1d,0x3e,0x35,0x37,0x6a,0x53,0x64,0xdc,0xe9,0x90,0x99,0x24,
0x0b,0x60,0xc6,0xf2,0xa9,0x4d,0x86,0xb9,0xb1,0xca,0xf4,0xb4,0x81,0x94,0x1c,0x8a,0xf0,0x3e,0xd6,0xeb,
0xc3,0xb1,0x1e,0x27,0x75,0x13,0xa5,0xd2,0x56,0xfe,0x20,0xb4,0xf6,0xd5,0x7a,0xad,0x3d,0x61,0x3c,0xf0,
0xa6,0x8c,0x25,0x54,0x28,0x31,0xea,0x33,0xd6,0xca,0xd0,0x39,0x42,0xc8,0x4f,0x54,0xeb,0xd7,0x71,0x18,
0x33,0x11,0x8e,0xeb,0x35,0x27,0x5a,0xdd,0x9b,0x4a,0xeb,0x4d,0x56,0x6a,0xef,0xfa,0x14,0xb5,0xed,0xcd,
0x4c,0x44,0x15,0x26,0x98,0xa1,0xee,0x40,0xdb,0x58,0xaf,0xd5,0xae,0x1f,0xac,0xdd,0xf5,0x83,0x15,0x59,
0x19,0xac,0xd0,0x94,0xee,0xb8,0xe9,0x0e,0x4a,0x45,0x9f,0xed,0x6b,0x6f,0x47,0x7c,0x8a,0xa1,0xb1,0xda,
0x9d,0x51,0xbb,0x56,0x54,0xaf,0xfb,0x8a,0x22,0x06,0x5f,0x09,0x94,0x3c,0xb9,0x0e,0x80,0xbe,0x39,0x32,
0x48,0xf3,0xca,0xd9,0x2e,0x26,0x27,0x33,0xd2,0xce,0xf8,0x63,0xfb,0x9c,0x9d,0xce,0x70,0x6b,0xb2,0x5b,
0x12,0x1b,0xe5,0x64,0xfa,0x9e,0xcb,0x8c,0xa9,0xd9,0x81,0xcf,0xcf,0x71,0xe1,0xc9,0xc4,0xc2,0xe3,0x47,
0x61,0x9b,0xdc,0x98,0xc1,0x4c,0xf7,0x27,0x21,0x8a,0xcd,0x5a,0xfe,0x38,0x44,0x29,0x57,0xbb,0x0b,0x07,
0x25,0x38,0xdd,0x90,0x25,0x5c,0x12,0x44,0xbe,0x61,0x02,0x97,0x04,0x19,0xba,0x34,0x32,0x42,0x47,0x1e,
0x64,0x65,0x84,0xf6,0x71,0xee,0x24,0xc1,0x18,0xb2,0x4f,0x82,0x1c,0x0a,0x48,0x82,0x1b,0x36,0xf7,0x2e,
0xa1,0x66,0xd6,0xd5,0xf6,0x79,0x7a,0xc7,0xe6,0xcb,0xe6,0x25,0x5e,0xb8,0xab,0x0b,0x29,0x0d,0xb3,0x59,
0x78,0xc9,0x45,0xa6,0x86,0xd4,0xb2,0x3b,0xab,0x08,0xae,0xd0,0xb0,0x28,0x25,0x99,0xd5,0x94,0xfe,0x9d,
0xd0,0xbf,0x64,0x8c,0xe4,0xcf,0x02,0xc2,0x3c,0x21,0x01,0x56,0xcb,0x6f,0x91,0x00,0xcb,0x9f,0x95,0x42,
0x2d,0x11,0x86,0x16,0xd4,0x9b,0xfa,0x49,0x94,0x1a,0x69,0x33,0x36,0xba,0xe1,0xc8,0xa8,0x97,0xf2,0x40,
0xc5,0x2b,0x76,0x64,0xa9,0xd8,0x97,0x2f,0x5c,0xa8,0x3b,0x0c,0x8f,0xea,0xea,0xe6,0x8f,0xc2,0x21,0xbf,
0x06,0xfe,0x48,0xc0,0x77,0xc7,0x02,0xf7,0x0e,0x19,0x6d,0xf9,0xb9,0xd7,0x1d,0xd1,0x71,0x02,0x3b,0xfd,
0x5d,0x91,0xce,0x20,0xbc,0xae,0x09,0xc8,0xb7,0x4a,0x85,0xba,0x5d,0x4b,0x8d,0x0e,0x50,0xfc,0xa1,0xd2,
0xb2,0x23,0xf8,0xaa,0xb6,0x5d,0x2e,0x48,0xb4,0x30,0xda,0xf9,0x6e,0x8c,0x56,0x91,0x8f,0xc0,0xbc,0x4d,
0x6e,0x16,0xb5,0xc9,0x6d,0x78,0x53,0xdb,0x26,0x6f,0xc3,0xdb,0x25,0x6d,0xf2,0xd6,0xd6,0x26,0x38,0x40,
0xd5,0x2a,0x62,0x05,0xdf,0xda,0x9a,0x03,0xe9,0x75,0xb2,0x5b,0xa5,0x1d,0xde,0xf2,0x2f,0xb3,0xca,0x1f,
0x8c,0x2a,0x2b,0xaf,0xc6,0xbc,0xd2,0x1f,0x16,0x55,0xba,0x1f,0x7e,0xa8,0xad,0xf4,0x6f,0x61,0x7f,0x49,
0xa5,0x7f,0xb3,0x56,0x9a,0xf5,0x2c,0xab,0x3a,0xaf,0xcd,0x6f,0xd6,0x4a,0x33,0xc2,0x56,0x49,0xd6,0x57,
0x2a,0xfd,0x1b,0xff,0x32,0x2b,0xfd,0x93,0x51,0xe9,0xf2,0x8d,0x99,0xd7,0xf9,0xa7,0x45,0x75,0xfe,0x3d,
0xfc,0xa9,0xb6,0xce,0x88,0x93,0xbb,0xb8,0xce,0x9f,0x17,0xd4,0x99,0xf5,0x21,0x2a,0xed,0x63,0x56,0x0b,
0xea,0xcc,0x08,0x69,0xc0,0xff,0xae,0xd4,0xf9,0x33,0xff,0x32,0xeb,0x7c,0x65,0xd4,0xf9,0x55,0xa5,0xca,
0x57,0x8b,0xaa,0xfc,0x2e,0xbc,0xaa,0xad,0xf2,0x9b,0xf0,0xdd,0x92,0x2a,0xbf,0x31,0xaa,0xfc,0x97,0x61,
0xab,0x85,0x49,0xf5,0x88,0xa0,0xbd,0xcf,0xfe,0xfb,0x0e,0x29,0x86,0x36,0x8a,0x27,0xe2,0x3f,0xa0,0x68,
0x59,0x29,0xf6,0x28,0x66,0x68,0x89,0xd9,0x57,0x72,0x6f,0xb5,0x6c,0x14,0xdf,0x2b,0xb9,0x0f,0x6d,0x14,
0x6d,0xc9,0xfa,0x3b,0xa5,0xd9,0xdf,0xf0,0x2f,0xb3,0xd9,0x4f,0x8c,0x66,0x97,0x0a,0x3e,0xbc,0xd9,0x4f,
0x16,0x35,0xfb,0x9d,0x1d,0x1c,0x41,0xea,0xeb,0xba,0x03,0x28,0xea,0xda,0xeb,0xde,0x05,0x59,0x75,0x5b,
0xbb,0xc3,0x2d,0xf0,0x2e,0x18,0x99,0xe1,0x23,0x0c,0xef,0x9b,0xe1,0x7d,0xb6,0xe7,0xbd,0x0a,0x4f,0x6a,
0xbb,0xfa,0x22,0x7c,0xb5,0xa4,0xab,0x2f,0x6a,0x46,0xf7,0x1d,0xda,0x4c,0xfb,0xf8,0x77,0xc4,0xff,0xf6,
0xd9,0x94,0xbd,0xa8,0x19,0xe5,0x15,0xf6,0xae,0xad,0xa6,0xdb,0xf5,0xa1,0x98,0xf5,0x2b,0xa5,0x8b,0x2e,
0xf8,0x97,0xd9,0x45,0x67,0x46,0x17,0x49,0xe5,0x25,0xde,0x45,0x67,0x8b,0xba,0xe8,0xf5,0xf2,0x2e,0x1a,
0xc3,0x3e,0xd6,0x7d,0x6d,0x76,0xd1,0x6b,0xec,0xa2,0xd7,0x66,0x17,0xbd,0xc6,0x2e,0x7a,0x6d,0x76,0xd1,
0x6b,0xd1,0x45,0xa7,0xe1,0x59,0x6d,0x17,0x1d,0x86,0xa7,0x4b,0xba,0xe8,0xb0,0xa6,0x8b,0x5e,0xf3,0x2e,
0x7a,0xcd,0xbb,0xe8,0xb5,0xe8,0xa2,0x43,0x73,0x0e,0xb4,0x68,0x0e,0x9c,0x2a,0x0d,0x7c,0xc8,0xbf,0xf4,
0x06,0x5e,0xe9,0xec,0xaa,0xc9,0xbe,0x2b,0x0f,0x1f,0xcb,0x8f,0xae,0x75,0x72,0x1d,0x3a,0x54,0xd2,0x05,
0x92,0x8e,0xa8,0xf1,0xea,0x47,0xd4,0x3a,0xc1,0x04,0x8e,0x85,0xac,0xf6,0xb8,0x97,0xd8,0xd3,0x71,0x3d,
0x05,0xb8,0x7b,0xdb,0xe3,0xb9,0xc2,0x24,0xbd,0x64,0x33,0x27,0xdf,0x69,0xee,0xee,0x6e,0x8b,0x67,0x64,
0x74,0x1a,0x0e,0xff,0xe4,0xe2,0x8c,0x9b,0x27,0x53,0x5b,0xec,0x34,0xcc,0xc4,0x8d,0x67,0x67,0x17,0xce,
0xb8,0x99,0xbc,0x6d,0xec,0xec,0x76,0x13,0x76,0x61,0xa1,0xbb,0x8d,0x3f,0x6d,0x44,0xdb,0x0a,0x2d,0xdd,
0x32,0xd0,0x09,0x0d,0x91,0x40,0xf7,0x3a,0xfe,0xa4,0x99,0x6e,0xab,0xe9,0x39,0x49,0xbb,0x22,0xe6,0xd4,
0xf0,0x53,0x04,0x4e,0x50,0x3d,0xc5,0xd6,0x56,0xab,0x2a,0x27,0x85,0xd3,0x69,0x2f,0x67,0x05,0xa7,0xb3,
0xe8,0x12,0x0e,0xfd,0xb8,0xa5,0x75,0xaa,0x41,0xed,0x26,0xfa,0x3c,0x3b,0x08,0x76,0x7b,0xc1,0x6e,0x87,
0xdc,0x9d,0xd3,0xbc,0x1d,0xd8,0x04,0x43,0x72,0xde,0x0e,0xec,0x73,0xd6,0x4c,0x21,0xfa,0x47,0x69,0x00,
0x68,0xd5,0xed,0x81,0x7e,0x5d,0xf3,0xba,0xe2,0x72,0x5b,0xbf,0x9a,0x8f,0x57,0x2a,0x52,0xaa,0x60,0x6a,
0x45,0xa2,0x1d,0x42,0x90,0x7b,0xdb,0x63,0x5b,0xb1,0xd7,0x36,0xb1,0x95,0x2c,0xf6,0x7a,0xa5,0x62,0xa5,
0xde,0xa4,0x59,0xec,0x0d,0x5c,0x3b,0x6d,0xc5,0x5e,0xda,0xe4,0x60,0xb2,0xd8,0xcb,0x95,0x8a,0x95,0xea,
0x8e,0x66,0xb1,0x99,0xb7,0x7d,0x69,0x2b,0x76,0x66,0x17,0xac,0xc9,0x82,0x67,0x2b,0x15,0xac,0x68,0x28,
0x9a,0x45,0x8f,0xbc,0xed,0x99,0xad,0xe8,0x23,0xab,0xac,0x4e,0x96,0x7c,0xb4,0x52,0xc9,0xa5,0x5a,0xa1,
0x59,0x70,0xdf,0xdb,0x3e,0xb2,0x15,0x3c,0xb4,0x4b,0xff,0x64,0xc9,0x7c,0x8d,0x1a,0xae,0xc4,0x80,0xa2,
0x10,0x68,0x72,0x10,0x79,0xdb,0xc3,0x0a,0x07,0xfe,0x4a,0xab,0x33,0x69,0xc0,0xc1,0xbc,0x0d,0x4d,0x24,
0x47,0xcb,0xbb,0x66,0xdd,0xab,0xe6,0x0a,0x25,0x9d,0x90,0x1a,0xc5,0x83,0x77,0x01,0xfe,0x3a,0x53,0x35,
0x64,0xe1,0x4f,0xe5,0x23,0xf1,0x08,0x85,0x20,0xc5,0xb1,0xee,0x06,0xbc,0x42,0x20,0x2d,0x4b,0x64,0x1e,
0xa1,0x41,0x11,0x07,0x45,0x96,0x8c,0x46,0x31,0x3e,0x12,0x60,0x95,0x38,0x92,0x5f,0xe5,0xd1,0x8a,0x23,
0x56,0x51,0x89,0x06,0x3a,0xbc,0x8a,0xcd,0xe4,0x2a,0xd2,0x10,0x86,0x72,0x03,0x65,0x04,0x7b,0x07,0x65,
0x70,0x70,0xd3,0xe3,0x79,0xd0,0xa7,0x83,0x6f,0x10,0x11,0xbd,0x82,0x57,0x82,0x6f,0xc9,0x2b,0xa4,0xe7,
0x2d,0x6b,0xed,0x43,0xf5,0x9d,0xc8,0xa2,0xbb,0xb5,0xce,0xf3,0x55,0x6b,0x53,0x7a,0x9d,0xf0,0xee,0xf5,
0xee,0x58,0x22,0xfb,0x61,0xee,0x06,0x05,0x9c,0xfc,0x8b,0x1b,0xf2,0x57,0x4c,0x26,0x1c,0x39,0xc2,0x99,
0xd5,0x44,0x95,0x90,0x46,0x71,0x80,0xc8,0xd3,0xff,0x1d,0xd6,0x10,0x22,0xa0,0x28,0x11,0xf8,0x8c,0xf0,
0xd7,0x65,0x84,0xbf,0xe2,0xeb,0x46,0x39,0xd7,0xf4,0x73,0x80,0x78,0xee,0x28,0x16,0x6e,0xf7,0x51,0xe8,
0x16,0x8b,0xf7,0x7b,0xc1,0x75,0x93,0x9e,0xc3,0x72,0x7c,0x2f,0x0f,0x70,0x8f,0x86,0x6f,0xb9,0x3d,0x7b,
0x3b,0xae,0xfa,0x85,0x1e,0x34,0x9b,0x3c,0xdd,0xaf,0x6a,0x3a,0x98,0xe0,0xf0,0x59,0xee,0xd9,0x94,0x4e,
0xf9,0xec,0xd6,0x03,0x87,0x91,0x14,0x4d,0xf2,0xe2,0x16,0xca,0xc9,0xf2,0x39,0x07,0x33,0x3b,0x9a,0xe0,
0x09,0x92,0x4e,0x76,0x9c,0x45,0x81,0x34,0x46,0x5f,0xde,0x02,0x8e,0x35,0x86,0x97,0x67,0x8e,0xf5,0x90,
0x79,0xc3,0x87,0xb7,0xb0,0x56,0xc2,0xeb,0x80,0x45,0xb9,0x2f,0xd2,0x54,0xfb,0x52,0x52,0xec,0x6b,0x1f,
0x20,0x76,0xff,0x34,0x6c,0x7b,0x7e,0x16,0x20,0xb8,0xda,0xd6,0xd6,0xf4,0x80,0xfd,0x92,0x30,0x6b,0x44,
0xd0,0x12,0x92,0xf7,0x16,0x01,0xf3,0xc3,0xbf,0x69,0x4f,0x55,0xf8,0x4b,0x77,0x50,0xdf,0x4f,0x1e,0xc3,
0xbc,0x6e,0x74,0xd0,0x62,0x64,0x90,0x7c,0x12,0x06,0x7b,0x9e,0x3f,0xc1,0x10,0x77,0xd2,0xa0,0x8f,0x54,
0xfd,0x10,0x8f,0xe1,0xaf,0xf2,0x1b,0x77,0xe2,0x4f,0x7d,0x14,0x36,0x4a,0xb3,0x4d,0x73,0xd4,0xe9,0x42,
0x7c,0x1c,0x7d,0xc6,0xc8,0x13,0x4a,0x9c,0xd8,0xd8,0x35,0x83,0xc3,0xdb,0x29,0x1b,0xce,0x5f,0x38,0x16,
0x94,0x2c,0x1e,0xd0,0x5d,0x6a,0x39,0xac,0x11,0x07,0x21,0xd4,0x1e,0x5a,0xaf,0x7d,0x90,0xf6,0xda,0x9d,
0xb4,0x2b,0x5a,0x7e,0x50,0x6d,0xf9,0xde,0x20,0x6c,0x75,0x64,0xec,0xb3,0x76,0xd3,0xec,0x99,0x81,0xda,
0x75,0x83,0x67,0xc1,0x9e,0x49,0x33,0x38,0x08,0xf6,0x1a,0xb6,0x94,0xd8,0xf4,0xb9,0xb2,0x1b,0x0e,0xb6,
0x0b,0x63,0x1f,0x34,0xa7,0x3c,0xbd,0xfc,0x6d,0x6d,0x89,0x3e,0xc3,0xfb,0x5c,0xbb,0x39,0x80,0x3e,0x1b,
0xf9,0x24,0x37,0xb6,0x24,0xe1,0xcf,0x80,0x7a,0xa2,0x24,0xc8,0x7c,0x96,0xd0,0x9e,0x88,0xbd,0x09,0x9a,
0x69,0xb0,0x20,0xd4,0x75,0xb4,0xa5,0x79,0xa5,0x27,0xc1,0xf1,0x84,0x05,0xe4,0x34,0xa2,0x6c,0x09,0xe8,
0x49,0x54,0x4f,0x80,0x52,0x6f,0xc6,0x97,0x3d,0x09,0xbd,0x8f,0x9a,0x49,0xb0,0x94,0x3a,0xb6,0xf8,0xbb,
0x65,0x99,0x88,0x02,0x48,0x63,0x73,0xbe,0x40,0x0d,0x63,0xc4,0x35,0x50,0xea,0xce,0x17,0xb4,0x4f,0x2c,
0x4c,0xce,0x34,0x22,0xcd,0x2d,0x4c,0xdd,0x75,0xc4,0x49,0x8a,0x43,0x11,0xd0,0x83,0x46,0xc1,0xed,0x4b,
0xf1,0x2d,0x0b,0x3e,0x04,0x82,0xa3,0xd0,0x5b,0x61,0xfb,0xae,0x86,0xcf,0xa7,0x86,0x6f,0xcb,0x45,0xa6,
0xdd,0xf2,0xcb,0xd4,0x42,0x13,0xd8,0x12,0x51,0xbb,0xe5,0xc7,0x0b,0x76,0xeb,0xdc,0xac,0x5f,0xf9,0xa2,
0xa9,0x82,0x8a,0xa1,0x55,0xa7,0x80,0x1b,0xeb,0xe9,0xba,0x3d,0x19,0xba,0x95,0x5c,0x7c,0x04,0xcb,0x8d,
0x5e,0xa0,0x62,0x58,0x86,0xe6,0x83,0x50,0x4f,0xd7,0xec,0x41,0xda,0x8e,0x50,0xa7,0x2b,0x4b,0x3f,0x43,
0x71,0x3d,0x04,0xa0,0x0a,0x39,0xfc,0xdf,0x47,0x7d,0x05,0x95,0x72,0xdc,0x53,0xc6,0x17,0x52,0x8e,0x81,
0x22,0x87,0xff,0x6f,0xaa,0x94,0x51,0x4f,0x1f,0x54,0x3c,0x7a,0x69,0x9d,0x90,0x83,0x8a,0x55,0xb7,0x9f,
0xf8,0xa8,0xb8,0x20,0x74,0x53,0xe9,0xd5,0x1c,0xdd,0xcc,0x72,0x67,0x7c,0xca,0xd9,0x24,0x0a,0xb2,0x30,
0xf6,0xa3,0x60,0x14,0x16,0xf0,0x6f,0x3f,0xcc,0xb8,0xc6,0x60,0x82,0x3b,0x27,0x0c,0x8c,0x44,0xbc,0x7d,
0x97,0x16,0xe4,0x15,0x63,0xf0,0x28,0x18,0x87,0x29,0xd4,0x2a,0x0a,0x72,0xf8,0x9b,0xc3,0xdf,0x1b,0xf8,
0x7b,0x53,0x7f,0x46,0x36,0x4e,0xd3,0x39,0x9f,0x4e,0xca,0x11,0x79,0xe9,0x71,0x9a,0xd5,0xdb,0xa8,0xb6,
0x3e,0xad,0x64,0xf7,0x50,0x24,0xa9,0x13,0x27,0x8b,0x87,0x21,0xf6,0xd1,0x57,0xb4,0xe5,0x98,0xda,0x32,
0xa7,0xb6,0xbc,0x59,0xd4,0x96,0x52,0x80,0x56,0x6d,0xcb,0x0c,0xda,0x2e,0xa3,0xfe,0x48,0x61,0x3c,0x61,
0x8f,0xa4,0x30,0xa6,0xfe,0xe5,0x6d,0x69,0x02,0x03,0x58,0xda,0x92,0x0d,0xe0,0x95,0xdb,0x92,0x46,0xb1,
0x75,0xae,0x6d,0xc8,0xd6,0x2c,0x08,0x5d,0x59,0x2a,0x8a,0x8a,0xe5,0x28,0x5e,0xa3,0xc6,0xc5,0x43,0x6a,
0x3c,0x4e,0x6f,0x43,0x3b,0xac,0x3e,0x73,0xb2,0x88,0x77,0x83,0x18,0xb6,0xe3,0xaa,0xf8,0x2d,0xd1,0x17,
0x5c,0x7c,0x48,0x66,0x18,0xba,0x61,0x98,0x48,0x0d,0x26,0x37,0x5b,0xa8,0x27,0x0c,0x1b,0x38,0x4a,0x1a,
0x37,0x5b,0xa8,0xbb,0xe7,0x33,0x5d,0x8b,0x7b,0x04,0xb3,0x8d,0x57,0x3e,0x8a,0x34,0x0a,0xa6,0x7d,0xf0,
0x4a,0x7b,0x75,0x27,0x5c,0xdc,0x78,0x8d,0xb3,0x2d,0x7f,0x85,0x5f,0x59,0xa1,0x97,0x07,0x96,0x1a,0xfa,
0x31,0xbb,0x3b,0x42,0x25,0x86,0xd1,0x00,0xda,0x1e,0x31,0x39,0x14,0x2c,0xe1,0x9a,0x8b,0x72,0x12,0xa8,
0x18,0xc1,0x38,0x02,0x02,0x54,0xb6,0x23,0x75,0x59,0xab,0x99,0x7f,0xe9,0xfc,0x3c,0x33,0xb6,0x64,0xa9,
0x0c,0x26,0x6e,0x2e,0xa5,0x99,0x7a,0xe9,0x3d,0x16,0x6f,0x2c,0xab,0xb7,0x2e,0x9c,0x78,0xf3,0x5e,0x99,
0x0d,0xd6,0x08,0xf8,0x47,0xa8,0x7f,0x9e,0x5f,0x27,0x9a,0x7b,0x9d,0xa8,0xda,0x09,0xcf,0xf2,0x86,0xaa,
0xf0,0xc6,0x7d,0xd3,0x66,0x3a,0x11,0xa9,0x34,0x2e,0xc8,0xb8,0x9a,0x69,0xd3,0xcc,0xb2,0x51,0xc9,0x72,
0xbe,0x48,0x01,0x14,0x5b,0x7a,0x99,0xb2,0x20,0xc9,0x13,0xc2,0x5a,0x21,0x32,0x5d,0x41,0xb1,0x7f,0x4f,
0x61,0x66,0x69,0x77,0x7f,0xbd,0xaf,0x6b,0x3b,0x8f,0x69,0xd9,0xd1,0x62,0xc1,0x55,0x79,0xc3,0xfb,0xf9,
0x22,0x15,0x64,0xeb,0x55,0x7d,0x21,0xa8,0xbb,0x50,0xee,0xe4,0xb0,0x1c,0xc7,0x9a,0x83,0xb1,0x52,0x7f,
0x16,0xaa,0x52,0x13,0x45,0x73,0x11,0x9d,0x86,0x24,0x57,0x31,0xb4,0xae,0x8a,0x2a,0x0f,0x29,0xf8,0x4d,
0xbf,0x46,0x2b,0x77,0x2e,0xd4,0xec,0xa7,0xd1,0x4d,0x32,0x8a,0x0a,0x58,0xc2,0x50,0x95,0xf7,0x70,0x84,
0x97,0x6f,0x0e,0xc0,0x74,0x38,0x1d,0x64,0xb8,0xe8,0x05,0xdb,0x1b,0x2f,0x13,0x98,0x6a,0xe9,0xdd,0x0e,
0x70,0xb3,0xb4,0x40,0x1b,0x97,0x4a,0x34,0x3a,0xc0,0x25,0x45,0x55,0xcd,0xda,0x72,0x05,0x86,0xe7,0x5a,
0x77,0x18,0xaa,0xdc,0x0f,0xe9,0x00,0x69,0x5d,0xa3,0xcc,0xed,0x2f,0x5f,0xf0,0xd2,0xc7,0x54,0xe1,0x8b,
0x72,0xdd,0xe0,0xf2,0x2a,0x5a,0x3b,0x70,0x42,0xb0,0x9c,0x4b,0x69,0x13,0x17,0x34,0x59,0x58,0x24,0xad,
0xdb,0xb5,0xb9,0xf3,0x2b,0xa7,0xc8,0xb2,0x74,0xd8,0x79,0x51,0xe3,0x54,0x39,0x45,0x6e,0xb6,0x2d,0xc5,
0x32,0x8e,0xbe,0x69,0xb9,0x65,0x83,0x95,0xc8,0xed,0x5b,0x5b,0x70,0xae,0xd4,0x98,0x69,0xa1,0x09,0x86,
0x20,0x14,0xe0,0xef,0xa8,0x28,0xb8,0xb5,0xe5,0x38,0x7a,0x33,0x2a,0xb9,0x87,0x85,0x2a,0xc8,0x9b,0x2f,
0xb4,0xa8,0x78,0x48,0xa5,0xca,0x01,0xd6,0x55,0x7a,0x35,0x2c,0x54,0x79,0x22,0x2c,0xd5,0xbc,0x43,0x79,
0xd9,0x5c,0xe3,0xda,0xb1,0xf1,0x53,0xb1,0x6f,0xd0,0x78,0x8a,0x49,0xc4,0x08,0x53,0xe9,0x07,0x66,0x9b,
0xe5,0x7a,0xdd,0xf5,0xd9,0x24,0xfd,0xf3,0xc5,0x6a,0xdf,0xd9,0x62,0xb5,0x6f,0x36,0xc3,0xc5,0xce,0x4e,
0x0c,0x41,0x5d,0x3c,0xa1,0xcb,0xae,0x07,0xd3,0x7e,0xc6,0x3d,0x3a,0x08,0x8f,0x16,0x6c,0x77,0xba,0xc7,
0x98,0xce,0xc7,0x73,0x05,0x03,0x39,0x91,0x46,0x68,0xcc,0xdc,0x33,0x11,0xce,0x6d,0xd1,0xea,0x33,0xa7,
0xac,0x98,0x43,0xf7,0x04,0x9d,0x18,0x74,0xf5,0xc3,0x45,0x7e,0x9d,0xa3,0x2e,0x6c,0x3c,0x78,0xc1,0x8a,
0xc6,0x77,0xc9,0x45,0x66,0x30,0xdf,0xae,0xbb,0x37,0xf5,0xfe,0x86,0xb1,0x6b,0xce,0x60,0xcb,0x20,0xa0,
0xd5,0x4a,0xe7,0xd1,0x66,0xda,0xbc,0xd6,0x10,0xf0,0xc9,0xd4,0xad,0xce,0x9a,0xa0,0xae,0x62,0x09,0x24,
0xcf,0x44,0xc5,0x56,0x32,0x34,0x28,0x4a,0xe7,0xd0,0x4c,0x76,0x84,0x67,0x19,0x59,0x69,0x26,0xcc,0x42,
0xe6,0x2d,0xf5,0xfb,0x8f,0xaf,0xd9,0x92,0x0a,0x41,0x4f,0x5a,0x64,0xea,0x6e,0xac,0xd5,0xb4,0x6a,0x02,
0xfe,0x27,0xef,0xc4,0x35,0xea,0xfc,0xff,0x78,0xf8,0xaa,0x40,0x52,0xdf,0xf2,0x0d,0x45,0x9a,0xa8,0x7e,
0x55,0xc5,0xd5,0x1b,0x58,0x66,0x58,0x29,0x65,0x35,0xa7,0x12,0xa5,0xda,0x6c,0x3f,0xa0,0x42,0x2e,0x7e,
0x38,0x7d,0xf3,0xfe,0xe2,0x3d,0xdc,0x03,0x8e,0x5f,0x9c,0x5d,0xbc,0xf8,0xe5,0xc5,0x9b,0xf7,0xef,0x48,
0x7d,0xe0,0xc1,0x96,0x74,0xc9,0x03,0x2d,0xe9,0xba,0x02,0x11,0x60,0xd1,0x52,0xef,0x95,0x5b,0x48,0xae,
0x6c,0x21,0x6c,0xc7,0xf0,0x19,0x4c,0x40,0x24,0xf6,0x12,0x44,0x0b,0x28,0xb9,0x71,0x1a,0xae,0x03,0x0d,
0x16,0x7d,0x4c,0xcf,0xc9,0x39,0x5c,0x3e,0x8b,0x2e,0xe3,0x9e,0xe3,0x74,0x9c,0xc0,0x69,0xe8,0xa1,0x70,
0x75,0xc2,0xef,0x31,0x63,0xd5,0x9b,0x2b,0x7d,0x08,0x67,0x0e,0x89,0x45,0xe6,0xa0,0x04,0x0b,0x6f,0x1c,
0xb8,0x0f,0xd8,0x67,0x8d,0xbf,0xba,0x31,0x97,0x39,0x2e,0xd1,0xc1,0x21,0xbb,0xe7,0xd8,0xa1,0xc5,0xbe,
0xe5,0xc8,0xac,0x99,0xaf,0x5f,0x3f,0x58,0x85,0xe8,0xb2,0xae,0x81,0x8c,0x5a,0x63,0xcd,0x1c,0xf2,0x13,
0x38,0xaf,0xc3,0x44,0xd3,0x2a,0xce,0x2b,0xbc,0xa1,0x73,0x17,0x68,0xc6,0x5a,0x0f,0xf3,0x9a,0x15,0x1b,
0xf2,0x81,0xb8,0x2a,0x1c,0x98,0x6b,0xcb,0x86,0x06,0xdf,0x67,0xd3,0xd9,0xdf,0xb4,0xda,0xad,0x96,0x9d,
0x67,0x8d,0x5d,0xe2,0xd4,0x0b,0x7a,0x51,0x31,0x84,0x79,0xe8,0xa1,0x45,0x5c,0x59,0x50,0xa2,0x7f,0xac,
0xb8,0xb3,0xc3,0x0b,0xd4,0x67,0xfd,0xa2,0xe6,0x30,0x67,0xed,0x34,0xb9,0x49,0x78,0x35,0x23,0x76,0xd1,
0xf5,0x62,0x75,0xc2,0xbb,0xf7,0xba,0x27,0xa4,0x79,0x79,0x6f,0x3c,0x0e,0x98,0x57,0x49,0x38,0xd5,0xcb,
0x9f,0xc1,0x55,0xfa,0x47,0x32,0x99,0xa0,0xfb,0x31,0xbb,0x0e,0x9e,0x80,0x2a,0x10,0x36,0x05,0x61,0xb0,
0xeb,0x2d,0x65,0x57,0x37,0x46,0x66,0xa8,0x8d,0xc9,0x40,0x40,0x36,0xbe,0x8d,0x46,0x31,0x73,0xab,0x27,
0x51,0x1b,0x67,0x69,0x9e,0x90,0x5b,0xa8,0x8d,0xa8,0x9f,0xa7,0x93,0xeb,0x22,0xee,0x6e,0xa0,0xac,0x0a,
0x0e,0xb4,0x1b,0x24,0x6f,0xc2,0x1f,0xdc,0x0a,0x04,0x7f,0x32,0xcb,0x0f,0xf8,0xa5,0x00,0x3c,0xb2,0x01,
0x26,0xe1,0x51,0xa0,0x1f,0x39,0x36,0xca,0xf3,0xcf,0x27,0x03,0xd7,0x2c,0xbb,0xf6,0x49,0xae,0x2b,0x7d,
0x40,0xc5,0x15,0x24,0x41,0x26,0x41,0xe1,0xcb,0xf8,0x59,0x3c,0x89,0x70,0x66,0x95,0x59,0x3e,0xbf,0x1e,
0xbd,0x4c,0xee,0xb4,0x4b,0xf2,0xb7,0x63,0xaa,0x15,0x86,0x6e,0xc9,0x18,0x93,0xb3,0xd1,0x83,0x69,0x8c,
0xc2,0x24,0xb8,0x02,0x2f,0xf2,0x6b,0xd5,0xa2,0xcb,0xf8,0xdc,0x65,0xde,0xc4,0x14,0x1f,0x7e,0x3b,0x38,
0x5a,0x9e,0xfd,0x2f,0xbd,0x84,0x44,0xe4,0x56,0x87,0x03,0x00
0x6e,0x64,0xd2,0x4a,0x3f,0xd1,0xf1,0xc6,0x02,0xc5,0xd5,0x6f,0xe9,0x95,0x1a,0x41,0x1b,0x1e,0x5b,0x3e,
0x36,0xf0,0x5e,0xb1,0x6c,0x12,0x1a,0x3d,0xeb,0xff,0xd7,0xdd,0xb5,0x77,0xb7,0x6d,0x23,0xfb,0xaf,0x62,
0x73,0x37,0x36,0x69,0x51,0xb4,0xe4,0xc4,0x69,0x57,0x32,0xa3,0xe3,0xb8,0x8e,0x93,0x73,0x9b,0x38,0x75,
0xd2,0xe6,0xf6,0x26,0xbe,0x3e,0x94,0x45,0x49,0x6c,0x65,0x51,0x4b,0xd2,0x8f,0xd4,0xd1,0x17,0xdb,0x3f,
0xf7,0x93,0xdd,0x99,0xc1,0x83,0x00,0x01,0xea,0xe1,0x64,0xf7,0xde,0xde,0x9e,0xd3,0x58,0x04,0x06,0xc0,
0xe0,0x0d,0x0c,0x66,0x7e,0x23,0xb1,0xb8,0x16,0xa5,0xa9,0xaa,0x81,0x8b,0x53,0x15,0x69,0xc9,0x8a,0x4b,
0xd3,0xdb,0xff,0x3a,0x7e,0xdd,0x6a,0x3d,0xe1,0x0d,0x43,0x06,0x81,0x39,0xd9,0x42,0xa1,0xc5,0xe6,0xe8,
0x33,0x61,0x42,0xa3,0x1d,0x44,0x52,0x6c,0xe7,0x1b,0xe9,0x2d,0xba,0x48,0xa1,0x43,0x45,0x32,0x4c,0x34,
0xe6,0x15,0x3d,0xbe,0x12,0x52,0x04,0xbd,0xe9,0xdd,0xd1,0x8b,0x04,0x31,0x5b,0x04,0x42,0x6b,0xcb,0x3c,
0xb7,0x4c,0x25,0x70,0x0e,0xbe,0xab,0xc5,0x57,0x11,0x16,0x23,0x46,0xef,0x66,0x89,0xc2,0xea,0x21,0x5a,
0xe6,0xad,0x43,0xf6,0x63,0x8c,0x70,0xe3,0x2a,0xc9,0x39,0xfe,0x33,0x37,0x56,0xb9,0x9f,0x77,0xe3,0x1a,
0x58,0xa3,0x08,0xf1,0xa7,0xd0,0xb9,0xca,0x9c,0xa0,0xb9,0x84,0x7e,0x62,0x84,0xf0,0x7d,0x0c,0x64,0x46,
0x9a,0x2f,0xf0,0x89,0x67,0x37,0x5d,0x50,0x74,0xd4,0x35,0x8b,0x07,0xa6,0x6a,0x8e,0xc7,0x3b,0x61,0x9a,
0xa0,0x36,0x12,0x99,0x97,0x3a,0xf7,0x73,0x05,0x93,0x46,0xb5,0x61,0x10,0xce,0xf6,0xe2,0xdb,0x0d,0x32,
0x74,0x29,0x3c,0x69,0xce,0xa0,0x53,0xa2,0xa1,0x39,0xf3,0x39,0xc1,0x3c,0x97,0x08,0xde,0x85,0x4a,0x47,
0x39,0xd6,0xe8,0x6d,0x4c,0x39,0x36,0x29,0x6b,0x37,0x57,0x2d,0x28,0xf8,0x8b,0x3e,0x67,0x49,0x53,0x3b,
0xe0,0x19,0xab,0x4f,0x6f,0x72,0x68,0x6b,0x02,0xeb,0x32,0x78,0xc2,0xb4,0x00,0xd9,0x87,0x40,0x04,0xcc,
0xb5,0x20,0xdb,0x14,0x92,0xf0,0x80,0x95,0xb0,0xd7,0xb6,0x09,0x14,0xcd,0x12,0x75,0xfe,0x40,0x27,0x49,
0xa4,0x37,0x3c,0x83,0x23,0x90,0xd4,0xd6,0x96,0xe3,0x28,0x9f,0x5f,0xbe,0x54,0x61,0xaa,0xa0,0x8b,0xb8,
0x89,0x91,0xd6,0x30,0xdf,0x33,0xbc,0x31,0x1b,0x2c,0x85,0x18,0xc5,0x76,0x33,0xa5,0xe2,0xdc,0x13,0xa7,
0x6d,0x34,0xda,0x60,0xcc,0x4a,0xb7,0x3c,0xd5,0x95,0x5a,0xb0,0x6f,0x2c,0xd3,0xdf,0x79,0xf7,0x15,0xf0,
0x23,0xb9,0xe2,0x42,0x1c,0xc3,0x33,0xa0,0x36,0x60,0x06,0xac,0xc9,0x8c,0x9f,0x86,0x85,0x76,0xbd,0x8a,
0xef,0x2d,0x70,0x42,0x15,0x43,0x90,0x44,0xc0,0x75,0xc0,0x4a,0x0c,0x27,0x88,0xdd,0x5d,0xd4,0x52,0xf7,
0x13,0xfd,0x0d,0x9a,0x47,0x16,0xf1,0x04,0xa6,0x6b,0x87,0xd1,0xd0,0x8a,0x88,0x40,0xec,0x65,0x2f,0x48,
0x28,0x02,0xd1,0x09,0x25,0x34,0x7f,0xb9,0x00,0x30,0xf5,0x7c,0x02,0x8e,0x7c,0xc7,0x6e,0xc6,0x9c,0xb8,
0x40,0x6f,0x35,0x47,0xa7,0x6f,0xde,0x1c,0x1f,0xbd,0x3f,0xfe,0xc1,0xe9,0x38,0x6f,0x4e,0xdf,0x6f,0x94,
0xdf,0x90,0x66,0x5a,0xcc,0x2c,0x49,0xde,0xfd,0xfa,0xe6,0x68,0x5b,0xd0,0xf3,0x0f,0xdc,0x2c,0x67,0xf8,
0xb2,0xcf,0x1b,0x83,0x90,0xfa,0xb9,0x3e,0x99,0xce,0x8a,0x7f,0x19,0xe6,0x08,0xbb,0x3d,0x08,0x5d,0x25,
0x2a,0xe7,0x08,0xdd,0x1e,0x46,0x5d,0xd7,0x44,0xed,0x3d,0xe9,0x6a,0xe1,0x7b,0x4f,0x38,0x6c,0x53,0xde,
0x70,0x06,0x1b,0x25,0xac,0xf7,0x35,0xe1,0x7c,0x8f,0x95,0x90,0x01,0x85,0x5c,0x29,0x21,0x97,0x14,0x92,
0x3b,0x73,0xa7,0xb8,0x9a,0xfd,0x8c,0x8f,0xb4,0x0e,0x55,0x51,0x1c,0x19,0x78,0xa8,0x38,0x33,0x3c,0x0e,
0xe9,0x36,0xd7,0x73,0xfe,0xf9,0x8f,0x17,0x50,0xf3,0x7f,0xfe,0xe3,0x88,0xc3,0xc0,0x4d,0xfc,0x19,0x7a,
0x21,0x18,0x87,0x86,0xa2,0x19,0xef,0xf9,0x6e,0xeb,0x60,0x5c,0xba,0x12,0xd2,0xd0,0x66,0xc6,0x3a,0xce,
0xcc,0xb8,0xaa,0xdf,0x50,0x78,0x02,0xda,0xd2,0x46,0x8c,0xbb,0x33,0x8e,0xf9,0x8e,0x7b,0x23,0x23,0x67,
0x19,0x61,0x5e,0x3a,0x8e,0x3f,0x29,0xc3,0xe0,0x46,0xcb,0x03,0x59,0xa2,0x9b,0x46,0xd1,0x98,0xc0,0x90,
0x98,0xb1,0xa7,0xe6,0x31,0x77,0x78,0x38,0xaa,0x1b,0xbb,0x50,0x83,0x51,0x59,0x03,0x1d,0x09,0x13,0x1d,
0x2c,0x5b,0x6f,0xc0,0x23,0xb1,0x94,0xc2,0x59,0x4c,0xfe,0x76,0x0e,0x76,0xfb,0xd9,0x33,0x47,0x16,0x3d,
0x42,0x4f,0xa9,0xc0,0xfe,0xc8,0xc2,0xfe,0xc8,0x64,0x7f,0xc4,0xfa,0x82,0xf1,0x5f,0xe6,0xc1,0xf9,0x1f,
0x86,0xa6,0x26,0x5f,0x59,0x83,0x61,0x59,0x83,0xa1,0x38,0xd8,0xf0,0x1c,0x86,0xde,0x82,0x33,0xce,0x8c,
0xcf,0x78,0xb4,0x39,0x0e,0x8b,0x39,0x9b,0xfd,0xe5,0x26,0x42,0x25,0x5f,0xc1,0x8e,0x79,0x95,0x8f,0xfc,
0x1b,0xf8,0x0b,0x55,0x20,0xa1,0xf0,0x29,0x0c,0xff,0xd3,0x83,0x2b,0xa1,0x6f,0xd7,0x68,0x9c,0x7a,0x37,
0x1f,0x4f,0xcf,0x19,0x22,0x97,0x34,0x2b,0xab,0x6e,0x37,0x48,0xc2,0x6c,0x69,0xea,0x69,0xae,0x88,0xa6,
0xab,0xd1,0x48,0x6f,0x67,0xae,0x1a,0x5c,0xdd,0xa3,0x9a,0x5a,0x1a,0xbe,0xad,0xa1,0xce,0x05,0x55,0xd0,
0x66,0x8d,0x54,0xf8,0xd5,0x2d,0xa0,0x12,0x50,0xca,0xc2,0xba,0x4a,0x26,0xa5,0x5d,0x57,0xe1,0xab,0xfb,
0x8a,0xf2,0x61,0x4f,0x68,0x94,0xae,0xef,0x55,0xfa,0xf7,0x0a,0x65,0x97,0xbb,0x5f,0xf9,0xbb,0x92,0xec,
0x9e,0xf6,0x06,0x92,0xc1,0xc4,0x03,0xf9,0xf6,0xab,0x3d,0x77,0x70,0x64,0x4d,0x72,0xeb,0x52,0x1e,0x8e,
0x8a,0x60,0x02,0xa5,0x58,0x8e,0x51,0x3e,0x5b,0x9d,0xfb,0xb5,0x27,0xa7,0x1f,0x8f,0x7f,0x58,0x74,0x70,
0xea,0x2f,0x3f,0x38,0x75,0xc5,0xcb,0xaa,0xc6,0xb7,0x55,0x30,0x69,0xd7,0x1d,0x2b,0x54,0x71,0xa4,0x23,
0x34,0x7e,0x74,0x6d,0x4b,0x5f,0xd3,0x2b,0xb1,0xc6,0x69,0xd3,0x8d,0x63,0x08,0xa3,0xde,0x51,0xc1,0x2e,
0x0f,0x51,0x80,0x01,0x56,0x4a,0x94,0x87,0x69,0x94,0x18,0x60,0xbc,0x17,0x0a,0x08,0x62,0x8d,0x92,0x42,
0x56,0x57,0x63,0x32,0x0c,0x7e,0x64,0x7b,0x91,0xb0,0x9a,0xb9,0xa9,0x37,0xb4,0x02,0x0a,0xe1,0xc0,0xbe,
0xa2,0x0f,0x58,0xf0,0x03,0xc0,0xaa,0x56,0x09,0xe4,0xce,0xfa,0xce,0x53,0xd6,0x84,0x82,0xb4,0x92,0x68,
0x45,0xa0,0x33,0xc3,0x2d,0xf6,0xb9,0x2a,0x53,0x2c,0xec,0x32,0x45,0x87,0x36,0xfa,0x4d,0xf2,0x14,0x81,
0x39,0xd3,0x2f,0xf7,0x16,0x07,0x45,0x01,0xff,0xe0,0xaa,0xc0,0x4e,0xd4,0xd2,0x8a,0xe0,0x16,0xad,0x0d,
0xa5,0xf3,0x78,0x7b,0xe9,0xbf,0x57,0x37,0x2e,0x79,0x5f,0x52,0xb4,0x56,0x4f,0xd9,0x32,0xea,0x7f,0x0e,
0x7f,0xaf,0xbd,0xd3,0x68,0xaa,0x43,0x9e,0x7f,0x04,0x13,0x85,0x20,0x7c,0x80,0x2f,0xf4,0x13,0xfb,0x3e,
0x44,0x63,0x83,0xa3,0x1e,0xbf,0x7c,0x43,0x68,0x43,0x31,0x0e,0x3c,0x3d,0x67,0x8a,0x52,0x9d,0x8a,0x37,
0x9f,0x8f,0x47,0x24,0x40,0xfd,0x9d,0x7a,0xfe,0xbd,0x00,0x3f,0x46,0x13,0x97,0x00,0xcb,0x61,0x55,0x38,
0xe3,0x5f,0xac,0xa4,0xee,0x67,0x21,0x22,0x05,0xba,0x33,0xe0,0x99,0xdd,0xb2,0xce,0xc4,0x32,0x57,0x51,
0x2b,0x13,0xfd,0x2c,0xb4,0xc6,0xde,0x71,0xb0,0xbd,0x3b,0x68,0xd4,0x77,0xe7,0xcc,0x96,0x92,0x7e,0xb5,
0xcf,0xfd,0xb7,0xec,0xd7,0xde,0x79,0xb7,0x72,0xbd,0xbe,0x3b,0x0f,0xdf,0xda,0x7d,0x0c,0x61,0x54,0xea,
0xd7,0x5c,0xbf,0xc3,0x3b,0x5f,0x3f,0x69,0xa6,0xde,0xdc,0xca,0x0c,0xfe,0x2e,0x19,0x7a,0x2b,0x18,0xea,
0x56,0x5b,0x0b,0xf9,0xe0,0x5b,0x14,0x26,0x79,0x2d,0xa1,0x0d,0xd8,0xf0,0x23,0x88,0x63,0xf5,0xb5,0xf7,
0xb5,0x27,0x20,0xa7,0x0f,0x21,0xcf,0xd3,0x52,0x5b,0x9e,0x3f,0x41,0xb2,0x01,0x40,0xfd,0x2f,0x50,0x61,
0x0f,0x4b,0x65,0x53,0x2b,0x0d,0xad,0x2a,0x87,0x38,0xf0,0xf4,0xaa,0x50,0xe1,0x3f,0x07,0x52,0xd4,0x0c,
0xcb,0x99,0x6a,0x7a,0xd8,0x3d,0xae,0x98,0x11,0x72,0xcd,0x75,0xe0,0x09,0x53,0xbf,0x09,0x95,0xa4,0x10,
0x08,0x6d,0x40,0x01,0xac,0xf9,0x4f,0x0d,0x35,0x7f,0x41,0x8b,0xeb,0xc6,0x31,0x63,0xfc,0x8d,0xa9,0xa4,
0xca,0xd2,0x2b,0x34,0x6f,0x57,0x10,0x76,0x1c,0x7b,0x5e,0x5d,0xcd,0x48,0xaa,0x2e,0x2a,0xc6,0xec,0x4c,
0x89,0xfb,0x63,0xdd,0x70,0x54,0x56,0xcd,0x7f,0x15,0x96,0xe9,0xd4,0x5a,0x48,0x86,0x5e,0x3d,0x84,0xa1,
0x17,0x98,0xeb,0xb0,0xef,0xff,0x12,0xbe,0x60,0x0a,0x90,0x17,0xf8,0x83,0xb4,0x90,0x7f,0x08,0xe5,0x0c,
0x7a,0x11,0xa0,0xf4,0xb6,0x75,0x80,0x7f,0xc5,0x33,0xd7,0x8f,0x5a,0xf4,0x70,0xc8,0xe3,0x87,0xe2,0xf0,
0xe4,0xb3,0x35,0xe4,0x17,0x5a,0x3e,0x7e,0x30,0x35,0x76,0x87,0xfd,0xcb,0x54,0x2e,0x1c,0xcd,0x64,0x80,
0x6b,0x87,0x7b,0xda,0xb8,0xf0,0x70,0xfd,0xf8,0xa8,0x3c,0xce,0x85,0xdb,0x6d,0x89,0x33,0x8c,0x0c,0xe0,
0xe2,0xe5,0xff,0xf8,0x55,0x19,0xb6,0xd4,0x0c,0x87,0x43,0xcc,0xb1,0x5b,0x59,0xfb,0xa8,0x59,0xe8,0x65,
0xa4,0x7b,0xda,0x68,0x78,0xea,0x33,0x20,0x91,0x3a,0x0c,0x97,0x06,0x4f,0xdb,0x70,0x6b,0xa5,0x85,0x57,
0xc1,0x98,0x41,0xec,0x97,0xd2,0xbf,0xc0,0x1f,0x42,0x43,0xea,0xa1,0xcf,0x0e,0x74,0x38,0x55,0x9e,0x1d,
0xaa,0x0f,0x0e,0xfc,0xf5,0x40,0x7d,0xb7,0x2c,0x71,0x24,0x5d,0xe9,0x72,0xb9,0x5b,0xac,0x80,0x60,0xe9,
0x2a,0x4f,0xaf,0xba,0xc1,0x84,0x5f,0x83,0x50,0x2e,0xf1,0x2b,0x3d,0x38,0xa0,0x57,0x5f,0xd3,0x6b,0x49,
0x05,0xde,0xf7,0x0a,0xd0,0xed,0x51,0x25,0x92,0xbf,0x61,0xe9,0x88,0xf1,0xcc,0x9a,0x8c,0x79,0xbe,0x71,
0x63,0xb2,0x6c,0x74,0xa7,0x5f,0xbe,0xb8,0x8d,0x46,0x09,0x34,0xa3,0xe2,0x35,0x85,0x44,0x49,0xb1,0x12,
0x99,0x48,0xc2,0x4b,0x69,0x91,0x18,0xe2,0x2b,0xfd,0x5d,0xc6,0x60,0x48,0xb5,0x8a,0xaa,0xbb,0x09,0xf4,
0xb8,0xdc,0x71,0xf1,0xe1,0xa3,0xd9,0x5c,0xc4,0x05,0xc5,0xd6,0x71,0xc1,0x23,0x2d,0x5c,0xf0,0x98,0xa5,
0x5c,0xb4,0xbd,0xaa,0x0e,0xcf,0xcf,0xd9,0x04,0xb7,0xb3,0x7b,0xc2,0xc7,0xc9,0x10,0xf2,0xb3,0xf0,0x3f,
0x3a,0xb7,0x78,0xf4,0x95,0x20,0x80,0x8e,0xc0,0xde,0x40,0x97,0xef,0x63,0xe7,0xdc,0x7a,0xd0,0xc0,0x0c,
0xe8,0xa8,0x89,0xf8,0xe6,0x67,0x3f,0xd2,0x40,0xf7,0x79,0x20,0x8e,0x9f,0x22,0xbd,0x4c,0x27,0x74,0xd5,
0x61,0x3f,0xe7,0x28,0x6b,0x2b,0x8a,0x59,0xde,0x41,0x55,0x33,0x19,0xdc,0x23,0x46,0x6e,0xf3,0x32,0x09,
0x30,0x03,0x34,0x1d,0x5b,0x78,0x47,0x71,0xe2,0xc6,0x9b,0xec,0x7d,0x4a,0x85,0xc3,0x59,0x5a,0x54,0x0e,
0xce,0x87,0xc3,0x18,0x5f,0x1c,0x29,0x07,0xac,0x01,0x03,0x00,0xba,0xbf,0x8a,0x8b,0x71,0x3a,0xe8,0x38,
0x27,0xc7,0xef,0x1d,0xff,0x32,0x65,0x40,0xf4,0x70,0x1d,0x18,0xc0,0x44,0x4b,0x60,0xdd,0xec,0x38,0x39,
0xac,0x27,0x4d,0x36,0x52,0x51,0xa1,0xac,0x18,0xc3,0xd1,0x58,0xad,0xf3,0x5e,0xab,0x15,0x86,0xc2,0xb2,
0xa6,0xe7,0x72,0xf0,0xdb,0xad,0x2d,0x81,0x82,0x4b,0xaf,0x50,0x30,0xf4,0x45,0x0c,0x35,0xce,0x87,0xb8,
0xff,0x0e,0x7e,0xc7,0x85,0x2b,0xaa,0x44,0x20,0x76,0xf8,0x44,0xce,0x85,0x52,0x0b,0x51,0x79,0x70,0xf9,
0x92,0xee,0xe3,0x76,0x3f,0x4d,0x77,0x47,0xbe,0xf3,0xe9,0x13,0x3e,0x34,0x95,0x81,0x19,0x0b,0xcc,0xb4,
0xc0,0x82,0x05,0x22,0xb0,0x6d,0x17,0x66,0x89,0xfa,0xb2,0x8e,0x08,0x80,0x82,0xe7,0x74,0x4a,0x5c,0x6b,
0x3c,0x5c,0xa2,0xba,0xc0,0x2b,0x84,0x57,0xc6,0xa9,0xac,0xb8,0x7d,0xf4,0xfc,0x2a,0x2e,0xce,0x11,0xeb,
0x06,0xe6,0x4c,0x2e,0xe7,0x78,0xa5,0x25,0x70,0x9b,0xcf,0x7d,0xed,0x9e,0xfe,0x07,0xc3,0xca,0x21,0x84,
0x43,0x09,0xe9,0xe5,0x30,0xbf,0x2f,0x96,0x87,0xed,0xb6,0x2c,0xc9,0x00,0x8c,0xd5,0x78,0xc7,0xd7,0x43,
0x8d,0x75,0x85,0xd9,0x10,0x36,0x45,0x59,0x89,0x1a,0x75,0x40,0xa4,0x25,0x8c,0x99,0xb9,0x8f,0xf8,0x3b,
0x73,0xaf,0xa3,0xe1,0xf1,0xc0,0x20,0x60,0xf0,0xe7,0x5a,0xeb,0xe8,0x10,0xc8,0x95,0x04,0xc6,0x08,0x65,
0xee,0x76,0x68,0x67,0xcd,0x3f,0x40,0xeb,0xb8,0x34,0x0d,0x3a,0xcc,0x17,0x4e,0x35,0x38,0xa7,0x70,0x58,
0x4b,0x19,0x11,0xca,0xf4,0xa0,0x08,0x6d,0xac,0xcb,0x09,0xe7,0x79,0x96,0xd9,0x70,0xc4,0xe0,0xea,0x90,
0x80,0x38,0x35,0xd3,0x55,0xda,0x15,0x72,0xf9,0x6b,0xc5,0x1f,0x85,0xee,0xcd,0xd2,0xaf,0x38,0x09,0xf4,
0x4d,0x1b,0x31,0xbf,0xa6,0xa5,0x4b,0x47,0x8b,0x73,0x02,0x45,0xb3,0x9a,0xd8,0xaf,0x66,0x60,0xaf,0xe1,
0xd5,0x18,0x09,0x10,0x5b,0x86,0xe7,0xde,0x44,0xba,0xe6,0xc4,0x20,0x94,0x20,0x36,0x44,0x57,0x83,0x4a,
0xd9,0x22,0x38,0x4a,0xd4,0x9b,0x66,0xb9,0xf1,0x07,0x62,0x26,0x6b,0xaf,0xd8,0xe8,0x72,0x58,0x37,0x0b,
0x61,0x53,0x51,0xc4,0xb0,0xa4,0xd0,0xaa,0x25,0x52,0x0a,0xb1,0x77,0x6d,0xda,0xaa,0x0f,0x01,0x2d,0xb5,
0xc0,0x46,0xd4,0x93,0xb0,0xad,0xa3,0x42,0x28,0x51,0x0b,0xab,0xb4,0x3c,0x42,0x23,0xc7,0xd7,0xa3,0x26,
0x41,0x3d,0x55,0xc8,0x11,0x4f,0x4a,0xa3,0x1c,0x47,0xcd,0x4b,0xf1,0x3c,0xa2,0x51,0x0a,0x40,0x28,0x8d,
0x9a,0x83,0x2d,0x55,0x48,0x55,0x60,0x27,0xe3,0x1c,0x5e,0x22,0x3a,0x49,0xc7,0x66,0xae,0x25,0x89,0x52,
0x42,0x93,0x96,0x31,0x7b,0x21,0x18,0xa3,0xd1,0xcb,0xeb,0x38,0xf3,0x8a,0x5a,0x4d,0xc5,0x80,0xe8,0xec,
0x29,0x04,0x34,0x9a,0xd1,0xa2,0x14,0x6c,0x4f,0xc3,0x81,0xc0,0xaa,0x69,0x54,0x2c,0x32,0x36,0xea,0x15,
0xf8,0x32,0x55,0x93,0x51,0x45,0xb0,0xab,0x8c,0x40,0xb6,0x89,0x1b,0x23,0x8f,0x82,0x35,0xd2,0x12,0x52,
0xbf,0x49,0x78,0x64,0xcd,0x12,0x52,0xdf,0xa8,0x89,0x0d,0xf2,0x5f,0xcb,0x2c,0x9a,0x25,0xe8,0xeb,0x49,
0x4b,0xa9,0x3f,0xe5,0xd8,0xd8,0x6c,0x32,0xc0,0xb6,0x5a,0x3b,0x14,0xfb,0x83,0x6b,0x05,0xc9,0x59,0x81,
0x75,0x33,0x46,0x8d,0x42,0x1a,0xb0,0xb6,0x33,0xd0,0xdd,0x15,0xdc,0x3f,0x04,0x88,0xaa,0x64,0x80,0xe1,
0xdc,0x73,0xa1,0xb0,0x92,0x23,0x5b,0x2a,0x7d,0x81,0x80,0x4b,0x82,0x1d,0xb4,0x43,0xb3,0x8d,0x15,0x20,
0x2c,0xca,0x7b,0xa6,0xa7,0x60,0x3c,0x18,0x39,0x32,0xcd,0xa9,0x1a,0x43,0x7f,0x25,0x67,0x55,0x9a,0x73,
0xcf,0xb1,0x14,0x3a,0x6d,0x5f,0xba,0x23,0xeb,0x34,0xdb,0x73,0x4b,0xf6,0xa4,0xc2,0xfb,0xc0,0xdc,0xf7,
0x96,0xe6,0x2e,0xf4,0x62,0x1e,0x96,0xff,0xe3,0xa5,0xf9,0xc3,0x8d,0x38,0x33,0xb2,0x2d,0x2f,0xd5,0x36,
0x7a,0xe6,0x86,0xcc,0x92,0x80,0xa4,0x00,0xfa,0xf2,0x11,0x4f,0x9a,0x4c,0x74,0x55,0x8b,0x21,0x44,0x20,
0xfb,0xb3,0x24,0x6d,0x0a,0xff,0x01,0x15,0xfd,0x4c,0x66,0x14,0xa2,0x7b,0xa4,0x28,0x58,0x45,0x84,0xb2,
0xa0,0x3e,0xa7,0xc5,0x55,0xbd,0x3c,0xc1,0x2f,0xa0,0x15,0x72,0x4b,0x9d,0x98,0x9c,0xbc,0x00,0x7f,0x11,
0xe7,0x7a,0xd0,0x9f,0x98,0x0d,0x4e,0xe3,0x9d,0xa5,0xa7,0x51,0x57,0xc5,0x44,0xf5,0x57,0xf2,0x5b,0x65,
0xf5,0xdf,0x18,0xa4,0xec,0x07,0x73,0xf7,0x78,0x4f,0xf2,0x65,0x94,0xb2,0x93,0xd2,0x11,0xde,0x00,0x70,
0x3a,0x75,0xf0,0xae,0x56,0x3d,0xdd,0x89,0x63,0xbe,0xea,0x60,0x19,0x4e,0x2b,0xef,0x60,0x9d,0xbe,0x1c,
0x43,0x93,0x47,0x57,0x79,0xf5,0xe4,0x02,0x75,0xc0,0x48,0x0f,0x15,0xe9,0x5c,0x52,0xd3,0x74,0xa4,0x23,
0xc5,0xb8,0x57,0x9e,0xbe,0x3a,0xd6,0xc3,0x11,0x93,0x86,0xa8,0xa7,0xe2,0x7b,0xae,0x80,0xd9,0x21,0x5e,
0x0d,0xaf,0xe8,0x9b,0xb2,0xf2,0x27,0xde,0xfd,0x09,0x3a,0xd8,0xac,0x5a,0xa7,0x54,0x0d,0x13,0x12,0x5a,
0x5a,0xd8,0xb3,0x72,0x94,0x8d,0xa8,0x1b,0xa5,0xc7,0x43,0x81,0xa2,0xa1,0x7b,0xf3,0x75,0xa3,0xf0,0xe3,
0x79,0x90,0x8f,0x93,0x21,0x09,0xa3,0x27,0x9f,0x5d,0x99,0xd0,0xf3,0x7a,0x11,0x21,0xfb,0x93,0x3b,0x02,
0x58,0x36,0x7e,0x46,0x5b,0xf8,0xa3,0x08,0x6f,0x1c,0x8d,0x88,0xbf,0x3e,0xb7,0xbd,0x4e,0xd4,0x95,0xa2,
0xbd,0x88,0x4b,0x6a,0xba,0x39,0xff,0x31,0x67,0x36,0xab,0x32,0xcf,0xee,0x22,0x77,0xa0,0xac,0x23,0x4e,
0xf8,0xed,0x12,0xef,0x21,0xae,0xf3,0xdb,0x4f,0x1f,0x8e,0xde,0x06,0xc9,0x14,0xf6,0x81,0xe9,0x65,0xec,
0x48,0x9f,0x6c,0x04,0xb2,0xcc,0x7f,0x88,0x3b,0xcc,0xfd,0xbc,0x6b,0x18,0x17,0x45,0xf4,0x3c,0x1c,0x79,
0x3e,0xeb,0xe1,0x71,0xa0,0x1a,0xf7,0xd0,0xa0,0x81,0x99,0xb5,0xb0,0x48,0x74,0x22,0xaa,0xc2,0xb3,0x46,
0x5f,0xbe,0x98,0xa5,0x08,0xb1,0x3c,0xbe,0x7e,0x0b,0x88,0xd1,0xd2,0xc0,0x09,0xdd,0xb4,0x11,0x34,0x76,
0x16,0xe2,0x6f,0xde,0xd0,0xe8,0x5f,0xc2,0xdb,0x54,0x75,0x2f,0xc2,0x0c,0xf7,0x94,0x85,0x39,0xa1,0xcd,
0x96,0xd3,0xc8,0xcf,0x51,0x06,0x96,0x4a,0xa7,0x6c,0x22,0x6f,0x11,0xfb,0x55,0x25,0x8c,0x58,0x1e,0x8a,
0x92,0x02,0xcb,0x7b,0xb4,0x56,0xde,0xa5,0x0b,0xe9,0x80,0x99,0x67,0xa0,0xb9,0xb1,0xc6,0xb5,0x1a,0x11,
0xa6,0xb8,0x15,0x8a,0x87,0x2f,0x6b,0xda,0xb2,0x1c,0x35,0x14,0x8a,0xec,0x9e,0x30,0x91,0xbe,0xeb,0xbc,
0xa6,0x0b,0x37,0x37,0x07,0xd9,0xc0,0x6d,0x13,0xdf,0xdf,0x11,0xe1,0x5f,0x3a,0xb9,0x88,0xef,0x60,0x75,
0x40,0xb5,0xa5,0xdf,0x7e,0xba,0x8e,0xb3,0xcf,0xc6,0x94,0x22,0xd9,0x96,0x9f,0x30,0x97,0x10,0xe3,0xd0,
0x3a,0xed,0xba,0x63,0xe1,0x2b,0x35,0x0f,0x11,0x7d,0xe3,0x2a,0x2a,0x3a,0xce,0x18,0xd1,0x77,0xc8,0xad,
0x57,0x7c,0x8b,0x00,0x19,0x93,0xe4,0x86,0x39,0xa4,0x83,0xf5,0x89,0xd6,0x59,0xfc,0x10,0x70,0xcb,0xf8,
0x3b,0xba,0x2e,0xf0,0xa0,0x93,0xfc,0x21,0xbf,0x5e,0xb0,0xac,0xe0,0x0b,0xbd,0xe1,0xe2,0xb2,0xf6,0x01,
0x4b,0x26,0x5f,0x90,0xfe,0x65,0xce,0x70,0x2e,0x3b,0xf8,0x0c,0x4d,0xb7,0xd7,0x8e,0x33,0x4b,0x67,0x68,
0x79,0x16,0x4d,0x93,0xab,0x1f,0xb8,0x4a,0x4a,0x67,0xaf,0xd5,0xf2,0xff,0x7e,0x0d,0xe5,0x14,0x9f,0x71,
0x4b,0xe6,0xd6,0x6b,0x94,0x05,0xc9,0xfc,0x60,0xf2,0xc3,0x66,0x7a,0x95,0xf6,0x71,0x61,0x84,0xa2,0xd8,
0xaf,0x0f,0xc9,0xa0,0x18,0x77,0xd0,0x21,0x3a,0xea,0x2f,0xc1,0xe1,0x89,0x20,0xc1,0xb1,0x1e,0x28,0x39,
0x3f,0x65,0xcd,0x4d,0x7e,0xf4,0xa6,0xd1,0x0c,0x83,0xf1,0xef,0x7b,0xb8,0x94,0x66,0x38,0x47,0x3a,0x41,
0x6b,0x7f,0xee,0x8f,0x83,0xe7,0x3f,0x9f,0x5c,0x9c,0x1d,0xff,0x78,0xf8,0xfe,0xd5,0x2f,0xc7,0x17,0x6f,
0x0f,0x4f,0x8e,0x2f,0x4e,0xcf,0x5e,0x9d,0xbc,0x7a,0x13,0x62,0x3e,0x01,0xff,0x7d,0x3f,0x89,0x87,0x05,
0x5c,0x7c,0x60,0x73,0x84,0x85,0x0f,0xc2,0x99,0x21,0x1f,0x7a,0x14,0x08,0xf5,0xbd,0x8c,0x99,0x9a,0x3b,
0x12,0xb7,0xa9,0xe0,0xea,0xdb,0x68,0x20,0x8a,0x18,0x4c,0x7f,0x71,0x98,0x9e,0x35,0x36,0x7d,0xa7,0x1d,
0x86,0x6e,0x12,0x2a,0x36,0xa9,0x7b,0xfb,0xfb,0x3b,0x71,0x90,0x79,0xa5,0xb3,0x02,0x72,0x0e,0x27,0xdf,
0xdb,0x93,0xd0,0x69,0x91,0x35,0x12,0xa6,0xcc,0xcd,0x94,0xa3,0xda,0x94,0x39,0xa5,0xcc,0x59,0xca,0xc8,
0x4c,0xd9,0xaf,0x4d,0x19,0x51,0x4a,0x58,0x8d,0xb2,0x46,0x98,0x34,0xf2,0x46,0xa4,0xaa,0x8b,0x43,0xb5,
0xa2,0x6a,0xbd,0x20,0x80,0x16,0x76,0x3f,0xf7,0xa3,0xee,0x9f,0xaa,0x8a,0x1c,0x2d,0xc6,0x48,0x19,0xe9,
0x29,0xb1,0x52,0x69,0x99,0x3a,0xa5,0xd4,0x69,0xd9,0x40,0x8d,0x54,0x6d,0x22,0xd4,0x5f,0xc6,0x16,0x42,
0x05,0x67,0xa7,0x61,0x69,0x09,0x32,0xad,0xb5,0xd4,0xd3,0x1e,0xde,0x87,0x70,0xcf,0xa9,0x14,0xf0,0x48,
0x29,0x81,0xec,0x9a,0x83,0x0c,0x85,0xe0,0xe2,0x63,0xa4,0x7e,0xf4,0x49,0x1c,0x5e,0xc9,0x20,0x12,0x19,
0x44,0xdf,0x8a,0x47,0x1f,0x9d,0x92,0x44,0x16,0x5e,0xa3,0x47,0x6a,0x59,0xab,0x70,0x2b,0x3f,0x22,0x83,
0x75,0x54,0xe3,0xc6,0xdc,0xe0,0x2f,0x64,0x86,0x46,0xce,0x71,0x30,0xe6,0x85,0xe7,0xfc,0xef,0x4d,0x95,
0x09,0x20,0x7e,0xa4,0xa4,0x62,0x79,0x8f,0xd5,0x82,0x72,0xf5,0xe3,0xc6,0x56,0x6a,0x24,0x32,0x88,0x16,
0x95,0x6b,0x6f,0x04,0x4c,0xf5,0x48,0x4d,0xbf,0x0a,0x07,0x0b,0x1b,0xa1,0xcf,0x73,0xc3,0xfe,0x5f,0xa9,
0x01,0xfa,0x8f,0x94,0x14,0x0f,0x69,0x80,0xbe,0x68,0x00,0xea,0xc5,0xb5,0x2a,0xdf,0x97,0x95,0xef,0x3f,
0xb0,0xf2,0xc2,0x10,0x24,0xc3,0xa5,0x18,0x0e,0x87,0x70,0x68,0xc5,0xf5,0xd8,0x14,0x11,0xfb,0x99,0x9f,
0x84,0xf7,0x51,0xa7,0x3d,0x2f,0xfd,0xe2,0xc6,0x01,0xa9,0x89,0xb8,0xbb,0xff,0xfd,0x97,0x8f,0xad,0xe6,
0xdf,0xa2,0xe6,0xf0,0xfc,0xfe,0xf1,0xfc,0xaf,0xbb,0x09,0xc9,0x1a,0xcd,0xb8,0x27,0x14,0xc7,0x64,0x7e,
0xf9,0x9b,0xe8,0x8d,0x9b,0x04,0x59,0xd8,0xfe,0x6e,0x47,0x81,0x2b,0xc9,0xaf,0xfb,0xc0,0x85,0xdb,0xf6,
0xdb,0xb0,0xf8,0x3c,0xf5,0x76,0x61,0x16,0x28,0x98,0xf3,0x4a,0xc2,0x91,0x3d,0xe1,0xde,0xd2,0x84,0x7d,
0x7b,0xc2,0xc7,0xb5,0x09,0xf7,0x4b,0x35,0xcc,0xad,0x2d,0x91,0x4b,0x64,0xcf,0xe5,0x89,0x35,0x17,0x79,
0x2a,0xaa,0x36,0x9b,0xd1,0x6a,0xb5,0x04,0xab,0x37,0x5d,0xeb,0xa1,0x4d,0xd7,0x7e,0x68,0xd3,0xd5,0xb7,
0xf9,0x93,0x35,0x9a,0xee,0xf1,0x7a,0x4d,0x57,0x8e,0xaa,0xa7,0x35,0x6d,0x57,0x52,0x7c,0x6f,0x6b,0x3c,
0x5b,0x03,0xec,0x2d,0x6d,0x39,0x1b,0xdf,0x7b,0x4b,0x9b,0xcd,0x4c,0xb5,0x5f,0x9b,0xea,0x6f,0xf6,0x36,
0x33,0xb3,0xf8,0xce,0x9a,0xc5,0xf2,0xb1,0xf6,0x74,0xd9,0x58,0x5b,0xb1,0xb9,0x5a,0x0f,0x6a,0xae,0xbd,
0x07,0x35,0xd7,0x93,0xda,0x54,0xdf,0xaf,0xda,0x5c,0x4f,0xd7,0x6b,0x2e,0xdc,0x54,0x3f,0xe5,0x3b,0x9f,
0x5c,0xf8,0xc7,0xc5,0xa6,0xf9,0x14,0x9c,0x37,0x1e,0x7d,0xf9,0xd8,0x6a,0x9f,0xf7,0x3e,0x05,0x3d,0x0c,
0x39,0xdf,0xf1,0x20,0xd2,0xff,0xd7,0x13,0x7c,0xf2,0xec,0x3d,0x06,0x3c,0xfe,0x9b,0x58,0x64,0x1c,0xd0,
0x90,0xc8,0xc2,0x0a,0x1b,0x11,0xc4,0xf8,0xce,0x23,0xb8,0x44,0x12,0x8e,0x07,0x6b,0x6e,0x72,0xd7,0x5d,
0xea,0xb5,0xbb,0x8e,0xd7,0x68,0xfb,0x4a,0x80,0xef,0x78,0x9e,0x27,0xc4,0x0b,0x85,0x34,0x46,0xb2,0x8e,
0xba,0x17,0x93,0x34,0x42,0xa3,0x07,0x42,0x19,0x31,0x7b,0xce,0x32,0x46,0x0b,0xcb,0x40,0x59,0xc2,0xa1,
0x6f,0x72,0xe8,0x57,0xa3,0x57,0x60,0x79,0xb4,0x16,0xcb,0xa3,0xd5,0x58,0xce,0x7a,0xb5,0x4c,0x9b,0x3c,
0x52,0x2d,0x10,0x7e,0xee,0x95,0xda,0xd6,0x1d,0x3d,0x87,0x6a,0xbc,0x99,0xc8,0x5b,0xa5,0x83,0xfa,0x6b,
0xd5,0xb6,0xbf,0xb8,0xb6,0x99,0x57,0xdb,0x4b,0xdf,0x88,0xdd,0x68,0x2d,0x76,0x2b,0xd4,0x15,0xca,0xfb,
0x52,0x12,0x25,0xe7,0x23,0x9e,0x41,0xff,0x6f,0xad,0x19,0x5b,0x5b,0x16,0x1e,0xff,0xad,0x6b,0x86,0x8d,
0x83,0xfe,0x9f,0xa0,0x95,0xfe,0xcd,0x2b,0xab,0x36,0x11,0xfe,0x7d,0x2b,0xec,0x78,0xad,0x19,0x51,0xa5,
0x46,0x8c,0xa8,0xff,0x85,0x35,0x36,0x5f,0x8b,0xe9,0xbc,0x6e,0x1a,0xff,0x29,0x56,0xd8,0x9b,0xb5,0xea,
0x7a,0xb3,0xa8,0xae,0x7f,0x9e,0xf5,0x55,0x88,0x7a,0xf1,0x4e,0x0a,0xeb,0xd5,0xfb,0xf4,0x6c,0xd4,0xd7,
0x84,0x83,0xbe,0xf4,0x1b,0x13,0x1f,0x84,0xed,0xdd,0xa7,0x5f,0xbe,0xec,0xef,0x3e,0x3d,0x08,0xe3,0x5e,
0xbb,0x13,0x1f,0xb4,0x77,0x1f,0xf7,0xda,0xcd,0xa7,0x3b,0x6e,0xdc,0x84,0x28,0xaf,0xf3,0x04,0xa2,0xe2,
0x1e,0x7d,0x3f,0xc1,0xef,0x96,0x9f,0x63,0x9a,0x03,0xd4,0x54,0x87,0xe4,0xc1,0x3e,0x4f,0xf5,0x14,0x68,
0x62,0xf8,0x05,0x44,0x22,0x7d,0xb0,0x8f,0xe4,0x11,0xd0,0x08,0xea,0x7d,0x8c,0xec,0xec,0x61,0x96,0xf8,
0x0d,0x89,0x89,0x70,0x0f,0x33,0xde,0xa7,0x82,0x78,0xd2,0x7d,0x2a,0x8a,0x3f,0x78,0xdc,0x67,0x1d,0x37,
0x69,0xb8,0xed,0x66,0xe2,0xed,0xc0,0xbf,0x50,0xd9,0x9d,0xcc,0x1f,0x75,0xdc,0x1c,0xc3,0x72,0x25,0xac,
0xdf,0x71,0x23,0x0c,0x8b,0xca,0xb0,0x39,0xb6,0x02,0x9c,0xf4,0xde,0xa7,0x2f,0xf3,0x1b,0x7b,0x2b,0xf8,
0x5c,0xb8,0x77,0x15,0xdd,0xf1,0x70,0xe0,0x39,0x6f,0xb2,0xb0,0x44,0xd0,0x76,0xa5,0x04,0xbd,0x15,0x86,
0x11,0x3a,0x1f,0x08,0xc3,0xbc,0xe7,0x3e,0x6d,0xb8,0x45,0x33,0xf3,0x76,0x23,0xef,0xd1,0xd3,0x4e,0x81,
0x41,0x7b,0x0d,0x37,0x6b,0xc6,0x10,0xd2,0xc9,0xf0,0xf3,0x49,0x03,0xaa,0x53,0xe0,0x67,0x0b,0x81,0xe2,
0x92,0xdd,0xf0,0xa9,0x9f,0x77,0x5a,0x9b,0x10,0x15,0xed,0xc2,0x0f,0xff,0xa6,0x93,0x13,0x93,0xd6,0xa7,
0x29,0x12,0xe5,0xd2,0x7b,0x0f,0x89,0xc1,0x43,0xf8,0xc6,0x0f,0x92,0xfa,0x86,0x90,0x5d,0xcb,0x67,0x59,
0xb4,0xfd,0x0c,0xfe,0x1f,0xc1,0xff,0x7d,0xf8,0x1f,0xe5,0x0c,0x3e,0x7f,0x38,0x64,0xb0,0x7e,0x6e,0x99,
0x87,0xb0,0xa6,0xa7,0x10,0xfe,0x16,0x10,0x9e,0x04,0xf1,0x5d,0x81,0x26,0x49,0x9b,0xc0,0x25,0x72,0x23,
0x64,0xf4,0x9e,0xcc,0x87,0xcb,0xb1,0xd1,0xc8,0x8a,0xad,0xf7,0x6a,0x06,0x5c,0x71,0x3c,0xc7,0x07,0x23,
0x4b,0x70,0xe8,0xdc,0xde,0xcc,0x9c,0x86,0xdb,0x3a,0xd0,0x53,0x31,0xf9,0x7f,0xb9,0x42,0x44,0x8e,0xd7,
0x83,0x7f,0x3a,0x0e,0x02,0x4c,0x73,0x96,0x13,0x7c,0xf7,0xd4,0xdb,0x27,0xb8,0x4d,0x06,0xa3,0xb8,0xa0,
0x85,0xbe,0x12,0x83,0xfe,0xf9,0x26,0xd1,0x67,0x5b,0x14,0x66,0x15,0xea,0xba,0x53,0xed,0xcd,0xd0,0xa4,
0x41,0xaf,0x58,0xaf,0xe0,0xaf,0x77,0x5f,0x1f,0x17,0x6e,0x32,0x4b,0x48,0x7c,0x71,0xdb,0x3e,0x18,0x24,
0x37,0x02,0x99,0x9a,0xde,0xbf,0x9a,0x9c,0x0b,0x67,0x23,0x2f,0x3e,0x4f,0xe2,0x10,0x4d,0xcc,0x67,0xf0,
0xdd,0xd9,0x40,0xe5,0xd7,0x2e,0xc2,0x55,0x43,0x92,0x67,0xdb,0x5e,0x37,0x56,0x9f,0xab,0xc7,0xc1,0x4b,
0x86,0x67,0x2d,0x6a,0x71,0x41,0x11,0x5e,0x4d,0x15,0x63,0x7a,0x4a,0x6d,0xe1,0x0b,0x9c,0xd3,0x4f,0x07,
0x0a,0x56,0x6f,0x2c,0x8c,0x89,0xf4,0x84,0x40,0x4e,0x6f,0x22,0xf8,0x7e,0xfa,0x73,0x36,0x71,0xf7,0x60,
0x81,0xe9,0x42,0xe2,0x71,0x1c,0x0d,0xca,0xc4,0xdb,0x07,0xc4,0xf4,0x06,0x01,0x88,0xd3,0x13,0xf5,0x2e,
0xbe,0x19,0x3c,0x0b,0x58,0xd5,0x6e,0x29,0x8b,0x8d,0xfb,0x52,0x11,0xba,0x49,0xde,0x93,0x3b,0x1b,0xd7,
0x90,0xe5,0x36,0x2a,0x39,0x7b,0xdd,0xf9,0xc1,0x2e,0x65,0x82,0x76,0x81,0x58,0x40,0x71,0x25,0x34,0xc7,
0xae,0xd2,0xeb,0x3c,0xbe,0x9e,0x99,0x4f,0x47,0x4a,0xed,0x91,0xfc,0x82,0x13,0x56,0xd3,0x17,0xe9,0xf5,
0xe5,0x18,0xd8,0x7c,0x70,0x06,0x14,0x8c,0x6e,0x3f,0x56,0xcc,0x01,0x49,0xad,0x4c,0x3c,0x20,0x0f,0xf6,
0x24,0xce,0xf2,0xc8,0xe8,0xf5,0x6a,0x61,0x06,0x8c,0xfc,0x82,0x51,0x7a,0xd5,0x45,0x22,0x60,0x9a,0x7d,
0x1f,0xd8,0x54,0xb0,0xbc,0x04,0x3b,0xca,0xb8,0xdc,0x16,0x9d,0x47,0xd4,0xdb,0xcf,0x6c,0x51,0xc8,0x49,
0x7d,0xcc,0x29,0x1b,0x75,0xdb,0x7c,0xec,0xaa,0x70,0xec,0x1a,0xdd,0xd1,0x75,0x96,0xa7,0xd9,0x76,0x89,
0xc8,0x4e,0xd4,0x66,0xa6,0x2f,0xaf,0xe3,0x0d,0xf6,0x93,0xad,0x11,0xcd,0x5b,0x06,0x17,0x0f,0x29,0x2f,
0xa3,0xe9,0x4d,0x94,0x9b,0xf4,0xef,0x88,0x50,0x4b,0xb5,0xbd,0x71,0x8b,0x8f,0x6f,0x68,0x7b,0xb0,0xc1,
0x8c,0x1f,0xc3,0xed,0xfd,0xd6,0xf6,0x06,0xc3,0x75,0xda,0x86,0x44,0xc8,0x09,0xcb,0xd0,0xca,0x33,0x50,
0x30,0x8e,0x45,0xb6,0x97,0x2b,0xf2,0xff,0x2e,0x2a,0xd6,0xe2,0x1f,0xe8,0xd7,0xe7,0x1f,0x12,0xf1,0xa7,
0xc9,0x25,0xd5,0x00,0xc2,0x87,0x55,0x03,0x76,0x87,0xb5,0xaa,0x01,0xf4,0xeb,0x57,0x83,0xb6,0xa0,0x25,
0x35,0x00,0x9a,0x87,0xd5,0xe0,0x2c,0x1e,0xac,0x55,0x03,0xa0,0x5f,0xbf,0x06,0x90,0x68,0x09,0xff,0x40,
0xf1,0x30,0xfe,0x4f,0x32,0x74,0x26,0xbe,0x4e,0x0d,0x28,0xc5,0xfa,0x75,0xa0,0x64,0x4b,0x6a,0x41,0x34,
0x0f,0xab,0xc7,0xf3,0xc9,0x9a,0x33,0x1a,0x13,0xac,0x5f,0x8b,0xe7,0xcb,0x87,0x12,0x92,0x3c,0xac,0x0e,
0x87,0x93,0xd9,0x38,0x5a,0xab,0x12,0x94,0x62,0xfd,0x5a,0x50,0xb2,0x25,0xd5,0x20,0x9a,0x87,0xd5,0xe3,
0x2d,0x53,0xa5,0xa8,0x63,0x9a,0x47,0x3f,0x4f,0xef,0x6c,0x6c,0xb6,0xcb,0xe5,0x87,0xd4,0xce,0x60,0x7e,
0xd1,0xb6,0xa3,0xb2,0xcb,0x0a,0xa6,0x7f,0x1d,0xc5,0x55,0x2b,0x87,0xc2,0x51,0xf7,0x03,0x7f,0x23,0xb0,
0xb5,0x67,0x19,0xcc,0xea,0x54,0x21,0x93,0xd6,0xb7,0xd7,0x53,0xa6,0xfb,0x86,0x08,0x3d,0x0e,0x7a,0x4a,
0x10,0x86,0x58,0xcd,0xab,0xf4,0x8f,0x26,0xea,0x87,0x08,0x8d,0x3e,0x9f,0x59,0x16,0x89,0xe8,0xdb,0xb8,
0xff,0x7b,0x52,0x2c,0xa0,0x58,0x9e,0x96,0xb6,0xf9,0xe6,0x65,0x34,0x99,0xa0,0xb9,0x83,0xa0,0xf1,0xf9,
0x99,0x2d,0x9d,0xe2,0xd9,0x08,0xf5,0xd7,0x2d,0x9b,0xb8,0xa1,0x15,0x4b,0xea,0xae,0x71,0x79,0x02,0x41,
0x17,0xd8,0x96,0x74,0x7a,0xdb,0x69,0x87,0x01,0x0c,0xb8,0x90,0x69,0x45,0x66,0xc4,0x23,0xd9,0x25,0x7c,
0x8b,0xdc,0x56,0x67,0x8d,0x8d,0x4b,0x23,0x4b,0x16,0xfc,0x55,0x6c,0xae,0x99,0xf3,0x2a,0x2c,0x0b,0xf0,
0xdd,0x32,0x4b,0x16,0xf2,0x40,0x3e,0x57,0xcf,0x6e,0x25,0xe6,0x2e,0x8d,0x0a,0xb3,0xec,0xbe,0xaa,0x2d,
0xd7,0xca,0x95,0xdd,0x23,0xaa,0xe7,0xcb,0xca,0x75,0xc1,0x62,0xf7,0x14,0xef,0xee,0xf9,0x59,0x58,0xf8,
0x49,0x28,0x01,0x35,0xd9,0xa1,0x94,0x7b,0x7b,0x87,0x59,0x42,0xeb,0x05,0x6a,0x1e,0x06,0x6c,0xa1,0x89,
0xfd,0x84,0xa3,0x54,0x84,0xb1,0x74,0xef,0x9b,0x87,0x49,0x40,0xd0,0xf1,0x53,0x86,0x9e,0xb5,0xc7,0xac,
0x09,0xd1,0x7b,0x47,0xdc,0x8d,0x1a,0x0d,0xe9,0xff,0x43,0xc5,0x37,0xe6,0xb8,0x6b,0x74,0x4d,0xcf,0xff,
0x9e,0x15,0x0c,0x0d,0x7e,0x96,0xde,0xba,0x69,0x33,0x43,0x24,0x18,0xf9,0x1d,0xd1,0x37,0x69,0x3f,0x6e,
0xba,0x7b,0x8d,0xe2,0x60,0xca,0xd1,0xae,0x27,0xa1,0x8b,0xc4,0x61,0xd8,0xea,0x45,0x07,0x59,0xef,0x6f,
0xad,0xce,0xde,0x77,0xad,0x0e,0xa5,0x83,0x3a,0x4f,0x5d,0xb8,0xc8,0x47,0xde,0x2e,0x92,0x78,0xde,0x2e,
0x05,0xbf,0x7d,0xb5,0xd3,0xfe,0xbe,0xe5,0x35,0xdc,0x14,0xe8,0xe1,0x57,0x07,0x7e,0xa3,0x1c,0xef,0xd1,
0x63,0x82,0xbf,0x99,0xee,0x16,0xfe,0x38,0x64,0x9c,0x44,0xfd,0x1c,0xc1,0xee,0x1b,0x13,0xaf,0xc1,0x09,
0x0e,0xda,0x7b,0x2d,0x14,0x7f,0x3c,0x69,0x1d,0x4c,0x7a,0x2e,0x7c,0x34,0x25,0xe1,0xa4,0x49,0xd2,0xc0,
0xdd,0xa7,0xad,0xce,0x84,0xc8,0x28,0x7a,0x42,0x01,0x08,0x9e,0xa3,0x10,0x42,0x84,0x77,0xf0,0x14,0x33,
0xaa,0x06,0xca,0x74,0x95,0x08,0x9e,0xcb,0xa5,0x9a,0x0b,0x30,0x61,0xe6,0x42,0x81,0xb6,0x5c,0x30,0x82,
0xe7,0x32,0xab,0x6a,0x25,0xb9,0x63,0x14,0xb9,0x8c,0x49,0xe4,0x32,0xf0,0x3c,0x84,0x09,0xa8,0x52,0x5c,
0x23,0xc5,0x75,0x49,0x31,0x34,0x28,0x2e,0x91,0xe2,0x52,0x52,0x74,0x49,0xc5,0x7f,0xf2,0x8e,0xdd,0x9e,
0x99,0x3a,0xd1,0x8c,0x14,0x39,0x8e,0xe8,0xdf,0x21,0x2a,0x73,0xf8,0x8c,0xe8,0x0c,0xf5,0x86,0x53,0x3f,
0xf2,0xf1,0x05,0x7e,0x2e,0xa5,0x5f,0x41,0x91,0xd2,0xc0,0x25,0xed,0xe1,0xca,0xc8,0x26,0xf5,0x65,0xbc,
0xdf,0x4a,0xf9,0x87,0x45,0x5c,0x50,0x12,0x31,0xd1,0xcb,0x42,0x92,0x7a,0x81,0x44,0x49,0xc3,0x84,0x36,
0x0b,0x49,0x50,0x68,0x48,0x87,0xe5,0xc5,0x64,0xa5,0x34,0x46,0x9b,0x94,0x08,0xed,0x56,0x95,0xe4,0x54,
0x04,0x3d,0x81,0xa2,0x91,0x58,0x7a,0xd5,0x41,0x6b,0x77,0x45,0xe4,0xa3,0xc8,0x8a,0xc6,0x51,0x7e,0x08,
0xfb,0x70,0xd2,0xbf,0x2e,0x62,0x0e,0x85,0x71,0x7b,0x39,0x6b,0x22,0x76,0xd5,0xd6,0x56,0xe9,0x6f,0xf2,
0x63,0x71,0x8e,0xd6,0xbc,0xf0,0x27,0x54,0x12,0x43,0x8b,0xd4,0x25,0x96,0x36,0xca,0x98,0xa6,0x47,0x09,
0x37,0x5b,0x1d,0x67,0x18,0xa1,0xc9,0xb6,0x9e,0x21,0x9a,0xc5,0x76,0x35,0x56,0x09,0xc7,0xac,0xb4,0x29,
0x56,0xaa,0x87,0xd8,0x49,0x5c,0xf3,0xb1,0xa8,0xd5,0xbe,0x2e,0xa4,0xf6,0x75,0xd7,0xa2,0xc3,0x8b,0xd9,
0x71,0x55,0xe0,0xec,0xbc,0xa7,0x7d,0x11,0x3f,0x5e,0xa7,0x52,0x20,0x31,0x3b,0x57,0x54,0xb3,0xe7,0x0b,
0x06,0x92,0x21,0x81,0x32,0x45,0x4c,0xae,0xe7,0xb7,0x37,0x59,0xad,0xa4,0x20,0x4a,0xfd,0x52,0x45,0x4f,
0x65,0x63,0x23,0x64,0x16,0x39,0x01,0x75,0xfa,0xe8,0x29,0xce,0xa9,0x88,0xe7,0x98,0xd2,0x6b,0x8f,0x25,
0xe0,0x83,0xb5,0x5e,0x9a,0x80,0x46,0xb1,0x85,0xc8,0x9e,0x51,0x7b,0x75,0x0a,0xde,0xa4,0xfc,0xed,0xa3,
0x0c,0x0f,0xce,0x53,0xc5,0x21,0x79,0x78,0x53,0xd9,0x72,0x92,0x29,0x9a,0xc9,0x63,0xa7,0xb2,0xd3,0x15,
0x97,0x85,0x39,0x88,0x32,0xa5,0x05,0x08,0xd2,0x26,0xab,0x01,0x34,0x74,0x25,0xbe,0x9a,0x41,0x89,0x01,
0xa3,0x95,0x18,0x0b,0x18,0x41,0xf1,0x0e,0x54,0x71,0xf3,0x89,0x05,0x57,0x3d,0x7f,0x9a,0x44,0x5e,0xc7,
0xa4,0x6a,0xf1,0xc9,0xc4,0x2d,0x63,0x65,0x63,0xf1,0xc0,0x41,0x16,0xdd,0xb2,0xab,0x40,0xee,0x6e,0x0a,
0x5a,0x66,0x64,0x28,0x82,0x91,0x65,0xdc,0xc3,0x87,0xb0,0x5f,0xe6,0x4b,0x84,0x3f,0x98,0xf9,0x05,0x11,
0x5e,0x50,0x8b,0x88,0xb4,0xfd,0xc9,0x75,0xb6,0x4a,0x52,0xa4,0xe3,0x29,0xd1,0xba,0x9d,0x64,0xb6,0x36,
0x31,0x2a,0x4c,0x34,0xab,0x74,0x75,0xf9,0xf8,0xb0,0x25,0xf3,0x24,0x8a,0xa3,0x21,0x96,0x2c,0x44,0x0d,
0x16,0x1d,0x8b,0x8c,0x6a,0x48,0xe2,0x0b,0xd2,0xd8,0x16,0x82,0x61,0x2b,0x93,0x2c,0x90,0x9f,0x93,0x96,
0xb7,0x31,0x0d,0x18,0xde,0xc4,0x2c,0x73,0x9e,0x74,0x69,0x13,0xb3,0x94,0xd4,0xc2,0x82,0x2b,0x96,0xf2,
0xf7,0xf8,0xf3,0x12,0xe9,0x26,0x4b,0x4a,0x74,0xf2,0x2e,0x41,0x36,0x41,0x2b,0xa4,0x62,0x84,0xe8,0x31,
0xae,0x62,0x43,0xa1,0x4d,0x76,0xda,0x68,0xf8,0x5c,0x17,0x5e,0x6a,0x5c,0x93,0xa2,0xb2,0x33,0xb0,0xed,
0x89,0x2d,0xab,0x5e,0xa7,0x6a,0xea,0x62,0x29,0x41,0xc8,0xfa,0xf5,0x37,0x86,0x95,0x8b,0xd0,0xa3,0xa4,
0xa6,0x7f,0x2f,0xe6,0x6e,0x99,0x0f,0x69,0xf2,0xc1,0xa8,0x1b,0xa4,0xd3,0x09,0x8c,0xa2,0x8e,0x98,0xa3,
0x32,0x88,0x1c,0x15,0xd5,0xaf,0xb6,0x83,0x18,0xea,0x90,0x7e,0x0e,0x6b,0x8c,0x64,0xc4,0x78,0xf5,0x0b,
0x7d,0x21,0x65,0xf8,0xc9,0xf5,0x8b,0xa8,0xd8,0x60,0x4e,0xdc,0x72,0x80,0xab,0x4b,0x23,0xa2,0x5e,0xdc,
0xc4,0x78,0x96,0xcd,0x52,0x02,0xd0,0xc0,0xc7,0x43,0x69,0x6c,0xc2,0xde,0xdd,0x32,0x06,0x3e,0x90,0x17,
0xca,0x65,0x99,0xb8,0x41,0x00,0xb3,0x20,0xc9,0x5d,0x7c,0x55,0x5f,0x25,0x7b,0x5a,0xe3,0xbc,0x79,0x1c,
0xf4,0x63,0xd8,0x22,0xe3,0xca,0x3a,0x28,0xfc,0x5b,0xc3,0xb4,0x63,0x08,0xaa,0xf3,0x02,0x71,0x54,0x6a,
0xa7,0x06,0xcd,0xcf,0xe1,0xb0,0x6e,0xfc,0xcb,0xe8,0x9a,0x41,0x2e,0xe3,0xeb,0xc6,0x33,0x12,0xd8,0x77,
0x11,0x56,0x8d,0xda,0xae,0xd4,0x16,0xdc,0x15,0x3a,0x54,0xed,0x36,0xb8,0xa1,0x6c,0xb6,0xe5,0x01,0x22,
0xa1,0x03,0x04,0x1f,0x49,0x24,0x15,0x81,0x7d,0xa7,0xd2,0x05,0x7e,0xd9,0xfd,0xbc,0xcf,0xb7,0xb6,0x62,
0xc5,0xbd,0x29,0x23,0xe7,0xbb,0x94,0xaf,0xc4,0xd0,0x86,0x45,0x3f,0x25,0x20,0x42,0x32,0x9d,0xc6,0x19,
0x19,0x88,0x1c,0x20,0xa2,0x60,0x69,0x2f,0xb2,0xb5,0xc5,0x4b,0xd9,0x54,0x4a,0x11,0x14,0x30,0xb5,0x80,
0xeb,0x96,0x6f,0x96,0xca,0xe2,0x1d,0x5a,0x6f,0x1e,0x20,0x6d,0x11,0xa2,0x1f,0x89,0xb5,0xab,0x14,0x00,
0x01,0x03,0x44,0x77,0xf7,0x05,0x54,0x54,0xce,0xda,0x97,0x9d,0x8e,0xa5,0x1d,0x89,0xe5,0x79,0xef,0x63,
0x72,0xce,0xad,0x4b,0x6e,0x9d,0x4e,0x1e,0x5a,0x39,0x73,0x34,0x74,0xff,0xb1,0x8d,0xee,0xe5,0x75,0xac,
0x53,0xe5,0x36,0xaa,0x77,0x51,0xa1,0x53,0xdd,0xd8,0xa8,0x7e,0x89,0x2a,0x25,0x66,0x36,0xaa,0x33,0xc4,
0xad,0x51,0xa9,0x46,0x36,0x2a,0x12,0x8a,0xea,0x74,0x7d,0x1b,0x1d,0xca,0x1d,0x75,0xb2,0xc8,0x46,0x46,
0x72,0x3d,0x9d,0x6e,0x66,0xa3,0x93,0x5d,0x35,0x67,0x07,0x19,0x7c,0x5c,0x55,0x9c,0xff,0x68,0x43,0x3e,
0xe7,0x13,0x9c,0x4f,0xf9,0x4a,0x8f,0x7a,0x73,0x66,0x5f,0xb8,0xdf,0xda,0x29,0x02,0x6e,0xdf,0xd4,0xad,
0x14,0x57,0x91,0xbb,0xb1,0x3b,0x3a,0xe2,0x80,0x73,0x5b,0x94,0xaf,0x1d,0x6e,0xd3,0xb4,0x20,0x90,0x6c,
0xc6,0x11,0x79,0xbd,0x0f,0x4a,0x2b,0xae,0xad,0xad,0xcd,0x4c,0xdc,0xe8,0xe1,0x8a,0x4f,0x07,0xbd,0x7b,
0x92,0x18,0xa0,0xc9,0x16,0x63,0x06,0x7e,0x91,0xbb,0x6d,0x8b,0xe1,0xae,0x58,0x91,0x61,0xf5,0x9e,0x36,
0x54,0xc5,0x88,0x8c,0x1d,0x19,0xaf,0xa2,0x6c,0x94,0x4c,0x9b,0x68,0x3c,0xa5,0xa0,0xae,0x38,0x33,0x38,
0xd3,0xe1,0x53,0x73,0xa3,0x36,0x45,0xc6,0x1d,0x27,0x99,0x49,0xb2,0x00,0x66,0x2c,0x9f,0xda,0x64,0x98,
0x1b,0xab,0x4c,0x4f,0x1b,0x48,0xc9,0xa1,0x08,0xef,0x63,0xbd,0x3e,0x1c,0xeb,0x71,0x52,0x37,0x51,0x2a,
0x6d,0xe5,0x0f,0x42,0x6b,0x5f,0xad,0xd7,0xda,0x13,0xc6,0x03,0x6f,0xca,0x58,0x42,0x85,0x12,0xa3,0x3e,
0x63,0xad,0x0c,0x9d,0x23,0x0c,0xfe,0x44,0xb5,0x7e,0x1d,0x87,0x31,0x13,0xe1,0xb8,0x5e,0x73,0xa2,0xd5,
0xbd,0xa9,0xb4,0xde,0x64,0xa5,0xf6,0xae,0x4f,0x51,0xdb,0xde,0xcc,0x44,0x54,0x61,0x82,0x19,0xea,0x0e,
0xb4,0x8d,0xf5,0x5a,0xed,0xfa,0xc1,0xda,0x5d,0x3f,0x58,0x91,0x95,0xc1,0x0a,0x4d,0xe9,0x8e,0x9b,0xee,
0xa0,0x54,0xf4,0xd9,0xb9,0xf6,0x76,0xc5,0xa7,0x18,0x1a,0xab,0xdd,0x19,0xb5,0x6b,0x45,0xf5,0xba,0xaf,
0x28,0x62,0xf0,0x95,0x40,0xc9,0x93,0xeb,0x00,0xe8,0x9b,0x23,0x83,0x34,0xaf,0x9c,0xed,0x62,0x72,0x94,
0x23,0xed,0x8c,0x3f,0xb6,0xcf,0xd9,0xe9,0x0c,0xb7,0x26,0xbb,0x25,0xb1,0x51,0x4e,0xa6,0xef,0xb9,0xcc,
0x98,0x9a,0x1d,0xf8,0xfc,0x1c,0x17,0x9e,0x4c,0x2c,0x3c,0x7e,0x14,0xb6,0xc9,0x15,0x1b,0xcc,0x74,0x7f,
0x12,0xa2,0xd8,0xac,0xe5,0x8f,0x43,0x94,0x72,0xb5,0xbb,0x70,0x50,0x82,0xd3,0x0d,0x59,0xc2,0x25,0x41,
0xe4,0x1b,0x26,0x70,0x49,0x90,0xa1,0x5b,0x26,0x23,0x74,0xe4,0x41,0x56,0x46,0x68,0x1f,0xe7,0x4e,0x12,
0x8c,0x21,0xfb,0x24,0xc8,0xa1,0x80,0x24,0xb8,0x61,0x73,0xef,0x12,0x6a,0x66,0x5d,0x6d,0x9f,0xa7,0x77,
0x6c,0xbe,0x6c,0x5e,0xe2,0x85,0xbb,0xba,0x90,0xd2,0x30,0x9b,0x85,0x97,0x5c,0x64,0x6a,0x48,0x2d,0xbb,
0xb3,0x8a,0xe0,0x0a,0x0d,0x8b,0x52,0x92,0x59,0x4d,0xe9,0xdf,0x09,0xfd,0x4b,0xc6,0x48,0xfe,0x2c,0x20,
0xcc,0x13,0x12,0x60,0xb5,0xfc,0x16,0x09,0xb0,0xfc,0x59,0x29,0xd4,0x12,0x61,0x68,0x41,0xbd,0xa9,0x9f,
0x44,0xa9,0x91,0x36,0x63,0xa3,0x1b,0x8e,0x8c,0x7a,0x29,0x0f,0x54,0xbc,0x62,0x47,0x96,0x8a,0x7d,0xf9,
0xc2,0x85,0xba,0xc3,0xf0,0xa8,0xae,0x6e,0xfe,0x28,0x1c,0xf2,0x6b,0xe0,0x8f,0x04,0x7c,0x77,0x22,0x70,
0xef,0x90,0xd1,0x96,0x9f,0x7b,0xdd,0x11,0x1d,0x27,0xb0,0xd3,0xdf,0x15,0xe9,0x0c,0xc2,0xeb,0x9a,0x80,
0xfc,0xc3,0x54,0xa8,0xdb,0xb5,0xd4,0xe8,0xc4,0xc5,0x1f,0x2a,0x2d,0x3b,0x82,0xaf,0x6a,0xdb,0xe5,0x82,
0x44,0x0b,0xa3,0x9d,0xef,0xc6,0x68,0x15,0xf9,0x08,0xcc,0xdb,0xe4,0x66,0x51,0x9b,0xdc,0x86,0x37,0xb5,
0x6d,0xf2,0x36,0xbc,0x5d,0xd2,0x26,0x6f,0x6d,0x6d,0x82,0x03,0x54,0xad,0x22,0x56,0xf0,0xad,0xad,0x39,
0x90,0x5e,0x27,0xbb,0x55,0xda,0xe1,0x2d,0xff,0x32,0xab,0xfc,0xc1,0xa8,0xb2,0xf2,0x6a,0xcc,0x2b,0xfd,
0x61,0x51,0xa5,0xfb,0xe1,0x87,0xda,0x4a,0xff,0x16,0xf6,0x97,0x54,0xfa,0x37,0x6b,0xa5,0x59,0xcf,0xb2,
0xaa,0xf3,0xda,0xfc,0x66,0xad,0x34,0x23,0x6c,0x95,0x64,0x7d,0xa5,0xd2,0xbf,0xf1,0x2f,0xb3,0xd2,0x3f,
0x19,0x95,0x2e,0xdf,0x98,0x79,0x9d,0x7f,0x5a,0x54,0xe7,0xdf,0xc3,0x9f,0x6a,0xeb,0x8c,0x38,0xb9,0x8b,
0xeb,0xfc,0x79,0x41,0x9d,0x59,0x1f,0xa2,0xd2,0x3e,0x66,0xb5,0xa0,0xce,0x8c,0x90,0x06,0xfc,0xef,0x4a,
0x9d,0x3f,0xf3,0x2f,0xb3,0xce,0x57,0x46,0x9d,0x5f,0x56,0xaa,0x7c,0xb5,0xa8,0xca,0xef,0xc2,0xab,0xda,
0x2a,0xbf,0x09,0xdf,0x2d,0xa9,0xf2,0x1b,0xa3,0xca,0x7f,0x19,0xb6,0x5a,0x98,0x54,0x8f,0x08,0xda,0x4f,
0xd9,0x7f,0xdf,0x21,0xc5,0xd0,0x46,0xf1,0x58,0xfc,0x07,0x14,0x2d,0x2b,0xc5,0x3e,0xc5,0x0c,0x2d,0x31,
0x4f,0x95,0xdc,0x5b,0x2d,0x1b,0xc5,0xf7,0x4a,0xee,0x43,0x1b,0x45,0x5b,0xb2,0xfe,0x4e,0x69,0xf6,0x37,
0xfc,0xcb,0x6c,0xf6,0x57,0x46,0xb3,0x4b,0x05,0x1f,0xde,0xec,0xaf,0x16,0x35,0xfb,0x9d,0x1d,0x1c,0x41,
0xea,0xeb,0xba,0x03,0x28,0xea,0xda,0xeb,0xde,0x05,0x59,0x75,0x5b,0xbb,0xc3,0x2d,0xf0,0x2e,0x18,0x99,
0xe1,0x23,0x0c,0xef,0x9b,0xe1,0x7d,0xb6,0xe7,0xbd,0x0c,0x5f,0xd5,0x76,0xf5,0x45,0xf8,0x72,0x49,0x57,
0x5f,0xd4,0x8c,0xee,0x3b,0xb4,0x99,0xf6,0xf1,0xef,0x88,0xff,0xed,0xb3,0x29,0x7b,0x51,0x33,0xca,0x2b,
0xec,0x5d,0x5b,0x4d,0xb7,0xeb,0x43,0x31,0xeb,0x97,0x4a,0x17,0x5d,0xf0,0x2f,0xb3,0x8b,0xce,0x8c,0x2e,
0x92,0xca,0x4b,0xbc,0x8b,0xce,0x16,0x75,0xd1,0xeb,0xe5,0x5d,0x34,0x86,0x7d,0xac,0xfb,0xda,0xec,0xa2,
0xd7,0xd8,0x45,0xaf,0xcd,0x2e,0x7a,0x8d,0x5d,0xf4,0xda,0xec,0xa2,0xd7,0xa2,0x8b,0x4e,0xc3,0xb3,0xda,
0x2e,0x3a,0x0c,0x4f,0x97,0x74,0xd1,0x61,0x4d,0x17,0xbd,0xe6,0x5d,0xf4,0x9a,0x77,0xd1,0x6b,0xd1,0x45,
0x87,0xe6,0x1c,0x68,0xd1,0x1c,0x38,0x55,0x1a,0xf8,0x90,0x7f,0xe9,0x0d,0xbc,0xd2,0xd9,0x55,0x93,0x7d,
0x57,0x1e,0x3e,0x96,0x1f,0x5d,0xeb,0xe4,0x3a,0x74,0xa8,0xa4,0x0b,0x24,0x1d,0x51,0xe3,0xd5,0x8f,0xa8,
0x75,0x82,0x09,0x1c,0x0b,0x59,0xed,0x71,0x2f,0xb1,0xa7,0xe3,0x7a,0x0a,0x70,0xf7,0xb6,0xc7,0x73,0x85,
0x49,0x7a,0xc9,0x66,0x8e,0xca,0xd3,0xdc,0xdd,0xdb,0x11,0xcf,0xc8,0xe8,0xf8,0x1c,0xfe,0xc9,0xc5,0x19,
0x37,0x4f,0xa6,0xb6,0xd8,0x69,0x98,0x89,0x1b,0xcf,0xee,0x1e,0x9c,0x71,0x33,0x79,0xdb,0xd8,0xdd,0xeb,
0x26,0xec,0xc2,0x42,0x77,0x1b,0x7f,0xda,0x88,0x76,0x14,0x5a,0xba,0x65,0xa0,0x13,0x1a,0x22,0x81,0xee,
0x75,0xfc,0x49,0x33,0xdd,0x51,0xd3,0x73,0x92,0x76,0x45,0xcc,0xa9,0xe1,0xa7,0x08,0x9c,0xa0,0x7a,0x8a,
0xad,0xad,0x56,0x55,0x4e,0x0a,0xa7,0xd3,0x5e,0xce,0x0a,0x4e,0x67,0xd1,0x25,0x1c,0xfa,0x71,0x4b,0xeb,
0x54,0x83,0xda,0x4d,0xf4,0xdb,0x76,0x10,0xec,0xf5,0x82,0xbd,0x0e,0xb9,0x6c,0xa7,0x79,0x3b,0xb0,0x09,
0x86,0xe4,0xbc,0x1d,0xd8,0xe7,0xac,0x99,0x42,0xf4,0x8f,0xd2,0x00,0xd0,0xaa,0x3b,0x03,0xfd,0xba,0xe6,
0x75,0xc5,0xe5,0xb6,0x7e,0x35,0x1f,0xaf,0x54,0xa4,0x54,0xc1,0xd4,0x8a,0x44,0x3b,0x84,0x20,0xf7,0x76,
0xc6,0xb6,0x62,0xaf,0x6d,0x62,0x2b,0x59,0xec,0xf5,0x4a,0xc5,0x4a,0xbd,0x49,0xb3,0xd8,0x1b,0xb8,0x76,
0xda,0x8a,0xbd,0xb4,0xc9,0xc1,0x64,0xb1,0x97,0x2b,0x15,0x2b,0xd5,0x1d,0xcd,0x62,0x33,0x6f,0xe7,0xd2,
0x56,0xec,0xcc,0x2e,0x58,0x93,0x05,0xcf,0x56,0x2a,0x58,0xd1,0x50,0x34,0x8b,0x1e,0x79,0x3b,0x33,0x5b,
0xd1,0x47,0x56,0x59,0x9d,0x2c,0xf9,0x68,0xa5,0x92,0x4b,0xb5,0x42,0xb3,0xe0,0xbe,0xb7,0x73,0x64,0x2b,
0x78,0x68,0x97,0xfe,0xc9,0x92,0xf9,0x1a,0x35,0x5c,0x89,0x01,0x45,0x21,0xd0,0xe4,0x20,0xf2,0x76,0x86,
0x15,0x0e,0xfc,0x95,0x56,0x67,0xd2,0x80,0x83,0x79,0x1b,0x9a,0x48,0x8e,0x96,0x77,0xcd,0xba,0x57,0xcd,
0x15,0x4a,0x7a,0x45,0x6a,0x14,0x0f,0xde,0x05,0xf8,0xeb,0x4c,0xd5,0x90,0x85,0x3f,0x95,0x8f,0xc4,0x23,
0x14,0x82,0x14,0xc7,0xba,0x2b,0xf3,0x0a,0x81,0xb4,0x2c,0x91,0x79,0x84,0x06,0x45,0x1c,0x14,0x59,0x32,
0x1a,0xc5,0xf8,0x48,0x80,0x55,0xe2,0x48,0x7e,0x95,0x47,0x2b,0x8e,0x58,0x45,0x25,0x1a,0xe8,0xf0,0x2a,
0x36,0x93,0xab,0x48,0x43,0x18,0xca,0x0d,0x94,0x11,0xec,0x1f,0x94,0xc1,0xc1,0x4d,0x8f,0xe7,0x41,0x9f,
0x0e,0xbe,0x41,0x44,0xf4,0x0a,0x5e,0x09,0xbe,0x25,0xcf,0x96,0x9e,0xb7,0xac,0xb5,0x0f,0xd5,0x77,0x22,
0x8b,0xee,0xd6,0x3a,0xcf,0x57,0xad,0x4d,0xe9,0x75,0xc2,0xbb,0xd7,0xbb,0x63,0x89,0xec,0x87,0xb9,0x1b,
0x14,0x70,0xf2,0xc7,0x37,0xe4,0x73,0x99,0x4c,0x38,0x72,0x84,0x33,0xab,0x89,0x2a,0x21,0x8d,0xe2,0x00,
0x91,0xa7,0xff,0x33,0xac,0x21,0x44,0x40,0x51,0x22,0xf0,0x19,0xe1,0xaf,0xcb,0x08,0x7f,0xc5,0xd7,0x8d,
0x72,0xae,0xe9,0xe7,0x00,0xf1,0xdc,0x51,0x2c,0xdc,0xee,0xa3,0xd0,0x2d,0x16,0xef,0xf7,0x82,0xeb,0x26,
0x3d,0x87,0xe5,0xf8,0x5e,0x1e,0xe0,0x1e,0x0d,0xdf,0x72,0x7b,0xf6,0x76,0x5d,0xf5,0x0b,0xbd,0x80,0x36,
0x79,0xba,0x5f,0xd5,0x74,0x30,0xc1,0xe1,0xb3,0xdc,0xb3,0x29,0x9d,0xf2,0xd9,0xad,0x07,0x0e,0x23,0x29,
0x9a,0xe4,0xc5,0x2d,0x94,0x93,0xe5,0x73,0x0e,0x66,0x76,0x34,0xc1,0x13,0x24,0x9d,0xec,0x38,0x8b,0x02,
0x69,0x8c,0xbe,0xbc,0x05,0x1c,0x6b,0x0c,0x2f,0xcf,0x1c,0xeb,0x21,0xf3,0x86,0x0f,0x6f,0x61,0xad,0x84,
0xd7,0x01,0x8b,0x72,0x5f,0xa4,0xa9,0xf6,0xa5,0xa4,0xd8,0xd7,0x3e,0x40,0xec,0xfe,0x69,0xd8,0xf6,0xfc,
0x2c,0x40,0x70,0xb5,0xad,0xad,0xe9,0x01,0xfb,0x25,0x61,0xd6,0x88,0xa0,0x25,0x24,0xef,0x2d,0x02,0xe6,
0x87,0x7f,0xd3,0x9e,0xaa,0xf0,0x97,0xee,0xa2,0xbe,0x9f,0x3c,0x86,0x79,0xdd,0xe8,0xa0,0xc5,0xc8,0x20,
0xf9,0x24,0x0c,0xf6,0x3d,0x7f,0x82,0x21,0xee,0xa4,0x41,0x1f,0xa9,0xfa,0x21,0x1e,0xc3,0x5f,0xe6,0x37,
0xee,0xc4,0x9f,0xfa,0x28,0x6c,0x94,0x66,0x9b,0xe6,0xa8,0xd3,0x85,0xf8,0x38,0xfa,0x8c,0x91,0x27,0x94,
0x38,0xb1,0xb1,0x6b,0x06,0x87,0xb7,0x5b,0x36,0x9c,0xbf,0x70,0x2c,0x28,0x59,0x3c,0xa0,0xbb,0xd4,0x72,
0x58,0x23,0x0e,0x42,0xa8,0x3d,0xb4,0x5e,0xfb,0x20,0xed,0xb5,0x3b,0x69,0x57,0xb4,0xfc,0xa0,0xda,0xf2,
0xbd,0x41,0xd8,0xea,0xc8,0xd8,0x67,0xed,0xa6,0xd9,0x33,0x03,0xb5,0xeb,0x06,0xcf,0x82,0x7d,0x93,0x66,
0x70,0x10,0xec,0x37,0x6c,0x29,0xb1,0xe9,0x73,0x65,0x37,0x1c,0xec,0x14,0xc6,0x3e,0x68,0x4e,0x79,0x7a,
0xf9,0xdb,0xda,0x12,0x7d,0x86,0xf7,0xb9,0x76,0x73,0x00,0x7d,0x36,0xf2,0x49,0x6e,0x6c,0x49,0xc2,0x9f,
0x01,0xf5,0x44,0x49,0x90,0xf9,0x2c,0xa1,0x3d,0x11,0x7b,0x13,0x34,0xd3,0x60,0x41,0xa8,0xeb,0x68,0x4b,
0xf3,0x52,0x4f,0x82,0xe3,0x09,0x0b,0xc8,0x69,0x44,0xd9,0x12,0xd0,0x93,0xa8,0x9e,0x00,0xa5,0xde,0x8c,
0x2f,0x7b,0x12,0x7a,0x1f,0x35,0x93,0x60,0x29,0x75,0x6c,0xf1,0x77,0xcb,0x32,0x11,0x05,0x90,0xc6,0xe6,
0x7c,0x81,0x1a,0xc6,0x88,0x6b,0xa0,0xd4,0x9d,0x2f,0x68,0x9f,0x58,0x98,0x9c,0x69,0x44,0x9a,0x5b,0x98,
0xba,0xeb,0x88,0x93,0x14,0x87,0x22,0xa0,0x07,0x8d,0x82,0xdb,0x97,0xe2,0x5b,0x16,0x7c,0x08,0x04,0x47,
0xa1,0xb7,0xc2,0xf6,0x5d,0x0d,0x9f,0x4f,0x0d,0xdf,0x91,0x8b,0x4c,0xbb,0xe5,0x97,0xa9,0x85,0x26,0xb0,
0x25,0xa2,0x76,0xcb,0x8f,0x17,0xec,0xd6,0xb9,0x59,0xbf,0xf2,0x45,0x53,0x05,0x15,0x43,0xab,0x4e,0x01,
0x37,0xd6,0xd3,0x75,0x7b,0x32,0x74,0x2b,0xb9,0xf8,0x08,0x96,0x1b,0xbd,0x40,0xc5,0xb0,0x0c,0xcd,0x07,
0xa1,0x9e,0xae,0xd9,0x83,0xb4,0x1d,0xa1,0x4e,0x57,0x96,0x7e,0x86,0xe2,0x7a,0x08,0x40,0x15,0x72,0xf8,
0xbf,0x8f,0xfa,0x0a,0x2a,0xe5,0xb8,0xa7,0x8c,0x2f,0xa4,0x1c,0x03,0x45,0x0e,0xff,0xdf,0x54,0x29,0xa3,
0x9e,0x3e,0xa8,0x78,0xf4,0xd2,0x3a,0x21,0x07,0x15,0xab,0x6e,0x3f,0xf1,0x51,0x71,0x41,0xe8,0xa6,0xd2,
0xab,0x39,0xba,0x99,0xe5,0xce,0xf8,0x94,0xb3,0x49,0x14,0x64,0x61,0xec,0x47,0xc1,0x28,0x2c,0xe0,0xdf,
0x7e,0x98,0x71,0x8d,0xc1,0x04,0x77,0x4e,0x18,0x18,0x89,0x78,0xfb,0x2e,0x2d,0xc8,0x2b,0xc6,0xe0,0x51,
0x30,0x0e,0x53,0xa8,0x55,0x14,0xe4,0xf0,0x37,0x87,0xbf,0x37,0xf0,0xf7,0xa6,0xfe,0x8c,0x6c,0x9c,0xa6,
0x73,0x3e,0x9d,0x94,0x23,0xf2,0xd2,0xe3,0x34,0xab,0xb7,0x51,0x6d,0x7d,0x5a,0xc9,0xee,0xa1,0x48,0x52,
0x27,0x4e,0x16,0x0f,0x43,0xec,0xa3,0xaf,0x68,0xcb,0x31,0xb5,0x65,0x4e,0x6d,0x79,0xb3,0xa8,0x2d,0xa5,
0x00,0xad,0xda,0x96,0x19,0xb4,0x5d,0x46,0xfd,0x91,0xc2,0x78,0xc2,0x1e,0x49,0x61,0x4c,0xfd,0xcb,0xdb,
0xd2,0x04,0x06,0xb0,0xb4,0x25,0x1b,0xc0,0x2b,0xb7,0x25,0x8d,0x62,0xeb,0x5c,0xdb,0x90,0xad,0x59,0x10,
0xba,0xb2,0x54,0x14,0x15,0xcb,0x51,0xbc,0x46,0x8d,0x8b,0x87,0xd4,0x78,0x9c,0xde,0x86,0x76,0x58,0x7d,
0xe6,0x64,0x11,0xef,0x06,0x31,0x6c,0xc7,0x55,0xf1,0x5b,0xa2,0x2f,0xb8,0xe4,0x73,0x9d,0x30,0x74,0xc3,
0x30,0x91,0x1a,0x4c,0x6e,0xb6,0x50,0x4f,0x18,0x36,0x70,0x94,0x34,0x6e,0xb6,0xc8,0xd7,0x3a,0xd3,0xb5,
0xb8,0x47,0x30,0xdb,0x78,0xe5,0xa3,0x48,0xa3,0x60,0xda,0x07,0x2f,0xb5,0x57,0x77,0xc2,0xc5,0x8d,0xd7,
0x38,0xdb,0xf2,0x57,0xf8,0x95,0x15,0x7a,0x79,0x60,0xa9,0xa1,0x1f,0xb3,0xbb,0x23,0x54,0x62,0x18,0x0d,
0xa0,0xed,0x11,0x93,0x43,0xc1,0x12,0xae,0xb9,0x28,0x27,0x81,0x8a,0x11,0x8c,0x23,0x20,0x40,0x65,0x3b,
0x52,0x97,0xb5,0x9a,0xf9,0x97,0xce,0xcf,0x33,0x63,0x4b,0x96,0xca,0x60,0xe2,0xe6,0x52,0x9a,0xa9,0x97,
0xde,0x63,0xf1,0xc6,0xb2,0x7a,0xeb,0xc2,0x89,0x37,0xef,0x95,0xd9,0x60,0x8d,0x80,0x7f,0x84,0xfa,0xe7,
0xf9,0x75,0xa2,0xb9,0xd7,0x89,0xaa,0x9d,0xf0,0x2c,0x6f,0xa8,0x0a,0x6f,0xdc,0x37,0x6d,0xa6,0x13,0x91,
0x4a,0xe3,0x82,0x8c,0xab,0x99,0x36,0xcd,0x2c,0x1b,0x95,0x2c,0xe7,0x8b,0x14,0x40,0xb1,0xa5,0x97,0x29,
0x0b,0x92,0x3c,0x21,0xac,0x15,0x22,0xd3,0x15,0x14,0xfb,0xf7,0x14,0x66,0x96,0x76,0xf7,0xd7,0xfb,0xba,
0xb6,0xf3,0x98,0x96,0x1d,0x2d,0x16,0x5c,0x95,0x37,0xbc,0x9f,0x2f,0x52,0x41,0xb6,0x5e,0xd5,0x17,0x82,
0xba,0x0b,0xe5,0x4e,0x0e,0xcb,0x71,0xa2,0x39,0x18,0x2b,0xf5,0x67,0xa1,0x2a,0x35,0x51,0x34,0x17,0xd1,
0x69,0x48,0x72,0x15,0x43,0xeb,0xaa,0xa8,0xf2,0x90,0x82,0xdf,0xf4,0x6b,0xb4,0x72,0xe7,0x42,0xcd,0x7e,
0x1a,0xdd,0x24,0xa3,0xa8,0x80,0x25,0x0c,0x55,0x79,0x0f,0x47,0x78,0xf9,0xe6,0x00,0x4c,0x87,0xd3,0x41,
0x86,0x8b,0x5e,0xb0,0xb3,0xf1,0x22,0x81,0xa9,0x96,0xde,0xed,0x02,0x37,0x4b,0x0b,0xb4,0x71,0xa9,0x44,
0xa3,0x03,0x5c,0x52,0x54,0xd5,0xac,0x2d,0x57,0x60,0x78,0xae,0x75,0x87,0xa1,0xca,0xfd,0x90,0x0e,0x90,
0xd6,0x35,0xca,0xdc,0xfe,0xf2,0x05,0x2f,0x7d,0x4c,0x15,0xbe,0x28,0xd7,0x0d,0x2e,0xaf,0xa2,0xb5,0x03,
0x27,0x04,0xcb,0xb9,0x94,0x36,0x71,0x41,0x93,0x85,0x45,0xd2,0xba,0x5d,0x9b,0x3b,0xbf,0x72,0x8a,0x2c,
0x4b,0x87,0x9d,0x17,0x35,0x4e,0x95,0x53,0xe4,0x66,0xdb,0x52,0x2c,0xe3,0xe8,0x9b,0x96,0x5b,0x36,0x58,
0x89,0xdc,0xbe,0xb5,0x05,0xe7,0x4a,0x8d,0x99,0x16,0x9a,0x60,0x08,0x42,0x01,0xfe,0x8e,0x8a,0x82,0x5b,
0x5b,0x8e,0xa3,0x37,0xa3,0x92,0x7b,0x58,0xa8,0x82,0xbc,0xf9,0x42,0x8b,0x8a,0x87,0x54,0xaa,0x1c,0x60,
0x5d,0xa5,0x57,0xc3,0x42,0x95,0x27,0xc2,0x52,0xcd,0x3b,0x94,0x97,0xcd,0x35,0xae,0x1d,0x1b,0x3f,0x15,
0xfb,0x06,0x8d,0xa7,0x98,0x44,0x8c,0x30,0x95,0x7e,0x60,0xb6,0x59,0xae,0xd7,0x5d,0x9f,0x4d,0xd2,0x3f,
0x5f,0xac,0xf6,0x9d,0x2d,0x56,0xfb,0x66,0x33,0x5c,0xec,0xec,0xc4,0x10,0xd4,0xc5,0x13,0xba,0xec,0x7a,
0x30,0xed,0x67,0xdc,0xa3,0x83,0xf0,0x68,0xc1,0x76,0xa7,0x7b,0x8c,0xe9,0x7c,0x3c,0x57,0x30,0x90,0x13,
0x69,0x84,0xc6,0xcc,0x3d,0x13,0xe1,0xdc,0x16,0xad,0x3e,0x73,0xca,0x8a,0x39,0x74,0x4f,0xd0,0x89,0x41,
0x57,0x3f,0x5c,0xe4,0xd7,0x39,0xea,0xc2,0xc6,0x83,0x63,0x56,0x34,0xbe,0x4b,0x2e,0x32,0x83,0xf9,0x76,
0xdd,0xbd,0xa9,0xf7,0x37,0x8c,0x5d,0x73,0x06,0x5b,0x06,0x01,0xad,0x56,0x3a,0x8f,0x36,0xd3,0xe6,0xb5,
0x86,0x80,0x4f,0xa6,0x6e,0x75,0xd6,0x04,0x75,0x15,0x4b,0x20,0x79,0x26,0x2a,0xb6,0x92,0xa1,0x41,0x51,
0x3a,0x87,0x66,0xb2,0x23,0x3c,0xcb,0xc8,0x4a,0x33,0x61,0x16,0x32,0x6f,0xa9,0xdf,0xff,0xf9,0x9a,0x2d,
0xa9,0x10,0xf4,0xa4,0x45,0xa6,0xee,0xc6,0x5a,0x4d,0xab,0x26,0xe0,0x7f,0xf2,0x4e,0x5c,0xa3,0xce,0xff,
0x8f,0x87,0xaf,0x0a,0x24,0xf5,0x2d,0xdf,0x50,0xa4,0x89,0xea,0x57,0x55,0x5c,0xbd,0x81,0x65,0x86,0x95,
0x52,0x56,0x73,0x2a,0x51,0xaa,0xcd,0xf6,0x03,0x2a,0xe4,0xe2,0x87,0xd3,0x37,0xef,0x2f,0xde,0xc3,0x3d,
0xe0,0xe4,0xf8,0xec,0xe2,0xf8,0x97,0xe3,0x37,0xef,0xdf,0x91,0xfa,0xc0,0x83,0x2d,0xe9,0x92,0x07,0x5a,
0xd2,0x75,0x05,0x22,0xc0,0xa2,0xa5,0xde,0x2b,0xb7,0x90,0x5c,0xd9,0x42,0xd8,0x8e,0xe1,0x33,0x98,0x80,
0x48,0xec,0x25,0x88,0x16,0x50,0x72,0xe3,0x34,0x5c,0x07,0x1a,0x2c,0xfa,0x98,0x9e,0x93,0x73,0xb8,0x7c,
0x16,0x5d,0xc6,0x3d,0xc7,0xe9,0x38,0x81,0xd3,0xd0,0x43,0xe1,0xea,0x84,0xdf,0x63,0xc6,0xaa,0x37,0x57,
0xfa,0x10,0xce,0x1c,0x12,0x8b,0xcc,0x41,0x09,0x16,0xde,0x38,0x70,0x1f,0xb0,0xcf,0x1a,0x7f,0x75,0x63,
0x2e,0x73,0x5c,0xa2,0x83,0x43,0x76,0xcf,0xb1,0x43,0x8b,0x7d,0xcb,0x91,0x59,0x33,0x5f,0xbf,0x7e,0xb0,
0x0a,0xd1,0x65,0x5d,0x03,0x19,0xb5,0xc6,0x9a,0x39,0xe4,0x27,0x70,0x5e,0x87,0x89,0xa6,0x55,0x9c,0x57,
0x78,0x43,0xe7,0x2e,0xd0,0x8c,0xb5,0x1e,0xe6,0x35,0x2b,0x36,0xe4,0x03,0x71,0x55,0x38,0x30,0xd7,0x96,
0x0d,0x0d,0xbe,0xcf,0xa6,0xb3,0xbf,0x69,0xb5,0x5b,0x2d,0x3b,0xcf,0x1a,0xbb,0xc4,0xa9,0x17,0xf4,0xa2,
0x62,0x08,0xf3,0xd0,0x43,0x8b,0xb8,0xb2,0xa0,0x44,0xff,0x44,0x71,0x67,0x87,0x17,0xa8,0xcf,0xfa,0x45,
0xcd,0x61,0xce,0xda,0x69,0x72,0x93,0xf0,0x6a,0x46,0xec,0xa2,0xeb,0xc5,0xea,0x84,0x77,0xef,0x75,0x4f,
0x48,0xf3,0xf2,0xde,0x78,0x12,0x30,0xaf,0x92,0x70,0xaa,0x97,0x3f,0x83,0xab,0xf4,0x8f,0x64,0x32,0x41,
0xf7,0x63,0x76,0x1d,0x3c,0x01,0x55,0x20,0x6c,0x0a,0xc2,0x60,0xcf,0x5b,0xca,0xae,0x6e,0x8c,0xcc,0x50,
0x1b,0x93,0x81,0x80,0x6c,0x7c,0x1b,0x8d,0x62,0xe6,0x56,0x4f,0xa2,0x36,0xce,0xd2,0x3c,0x21,0xb7,0x50,
0x1b,0x51,0x3f,0x4f,0x27,0xd7,0x45,0xdc,0xdd,0x40,0x59,0x15,0x1c,0x68,0x37,0x48,0xde,0x84,0x3f,0xb8,
0x15,0x08,0xfe,0x64,0x96,0x1f,0xf0,0x4b,0x01,0x78,0x64,0x03,0x4c,0xc2,0xa3,0x40,0x3f,0x72,0x6c,0x94,
0xe7,0x9f,0x5f,0x0d,0x5c,0xb3,0xec,0xda,0x27,0xb9,0xae,0xf4,0x01,0x15,0x57,0x90,0x04,0x99,0x04,0x85,
0x2f,0xe3,0x67,0xf1,0x24,0xc2,0x99,0x55,0x66,0xf9,0xfc,0x7a,0xf4,0x22,0xb9,0xd3,0x2e,0xc9,0xdf,0x8e,
0xa9,0x56,0x18,0xba,0x25,0x63,0x4c,0xce,0x46,0x0f,0xa6,0x31,0x0a,0x93,0xe0,0x0a,0xbc,0xc8,0xaf,0x55,
0x8b,0x2e,0xe3,0x73,0x97,0x79,0x13,0x53,0x7c,0xf8,0xed,0xe2,0x68,0x79,0xf6,0x3f,0x00,0x6c,0xb8,0x74,
0x1a,0x88,0x03,0x00
};

+ 1223
- 1220
code/espurna/static/index.sensor.html.gz.h
File diff suppressed because it is too large
View File


+ 49
- 0
code/espurna/utils.cpp View File

@ -790,3 +790,52 @@ char* strnstr(const char* buffer, const char* token, size_t n) {
return nullptr;
}
// From a byte array to an hexa char array ("A220EE...", double the size)
size_t hexEncode(uint8_t * in, size_t in_size, char * out, size_t out_size) {
if ((2 * in_size + 1) > (out_size)) return 0;
static const char base16[] = "0123456789ABCDEF";
unsigned char index = 0;
while (index < in_size) {
out[(index*2)] = base16[(in[index] & 0xf0) >> 4];
out[(index*2)+1] = base16[(in[index] & 0xf)];
++index;
}
out[2*index] = '\0';
return index ? (1 + (2 * index)) : 0;
}
// From an hexa char array ("A220EE...") to a byte array (half the size)
size_t hexDecode(const char* in, size_t in_size, uint8_t* out, uint8_t out_size) {
if (out_size < (in_size / 2)) return 0;
unsigned char index = 0;
unsigned char out_index = 0;
auto char2byte = [](char ch) -> uint8_t {
if ((ch >= '0') && (ch <= '9')) {
return (ch - '0');
} else if ((ch >= 'a') && (ch <= 'f')) {
return 10 + (ch - 'a');
} else if ((ch >= 'A') && (ch <= 'F')) {
return 10 + (ch - 'A');
} else {
return 0;
}
};
while (index < in_size) {
out[out_index] = char2byte(in[index]) << 4;
out[out_index] += char2byte(in[index + 1]);
index += 2;
out_index += 1;
}
return out_index ? (1 + out_index) : 0;
}

+ 3
- 0
code/espurna/utils.h View File

@ -68,3 +68,6 @@ bool isNumber(const char * s);
void nice_delay(unsigned long ms);
double roundTo(double num, unsigned char positions);
size_t hexEncode(uint8_t* in, size_t in_size, char* out, size_t out_size);
size_t hexDecode(const char* in, size_t in_size, uint8_t* out, uint8_t out_size);

+ 8
- 0
code/html/custom.js View File

@ -1897,6 +1897,14 @@ function processData(data) {
return;
}
if ("pzemVisible" === key) {
$("input[name='snsSave']").prop("disabled", true);
$("input[name='snsSave']")
.parent().parent().find(".hint")
.text("PZEM004 module saves the energy data on it's own")
return;
}
<!-- endRemoveIf(!sensor)-->
// ---------------------------------------------------------------------


+ 1
- 0
code/test/build/emon.h View File

@ -7,4 +7,5 @@
#define HLW8012_SUPPORT 1
#define PULSEMETER_SUPPORT 1
#define PZEM004T_SUPPORT 1
#define PZEM004TV30_SUPPORT 1
#define V9261F_SUPPORT 1

Loading…
Cancel
Save