diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..c9b6db1 --- /dev/null +++ b/AUTHORS @@ -0,0 +1 @@ +Denis Kozadaev (denis@tambov.ru) diff --git a/CMakeL10n.txt b/CMakeL10n.txt new file mode 100644 index 0000000..b585ce4 --- /dev/null +++ b/CMakeL10n.txt @@ -0,0 +1,3 @@ +##### create translation templates ############## + +tde_l10n_auto_add_subdirectories( ) diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..3223dca --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,41 @@ +########################################### +# # +# (C) 2025 Denis Kozadaev # +# denis@tambov.ru # +# # +# This file is released under GPL >= 2 # +# # +########################################### + + +##### set project version ######################## + +include( TDEVersion ) +cmake_minimum_required( VERSION ${TDE_CMAKE_MINIMUM_VERSION} ) +tde_set_project_version( ) + + +##### general package setup + +project( knighttour ) + + +##### include essential cmake modules + +include( FindPkgConfig ) + +##### include our cmake modules + +include( TDEMacros ) + + +##### setup install paths + +include( TDESetupPaths ) +tde_setup_paths( ) + +##### configure checks + +include( ConfigureChecks.cmake ) + +tde_auto_add_subdirectories() diff --git a/COPYRIGHT b/COPYRIGHT new file mode 100644 index 0000000..26d9390 --- /dev/null +++ b/COPYRIGHT @@ -0,0 +1,15 @@ +Copyright (c) 2025 Denis Kozadaev + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake new file mode 100644 index 0000000..3b05b8e --- /dev/null +++ b/ConfigureChecks.cmake @@ -0,0 +1,17 @@ +################################################# +# +# (C) 2010-2012 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# (C) 2014 Timothy Pearson +# kb9vqf (AT) pearsoncomputing (DOT) net +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +find_package( TQt ) +find_package( TDE ) + diff --git a/README b/README new file mode 100644 index 0000000..73c375d --- /dev/null +++ b/README @@ -0,0 +1,7 @@ +A knight's tour is a sequence of moves of a knight on a chessboard such that +the knight visits every square exactly once. If the knight ends on a square +that is one knight's move from the beginning square (so that it could tour +the board again immediately, following the same path), the tour is closed +(or re-entrant); otherwise, it is open. + +For more information: https://en.wikipedia.org/wiki/Knight%27s_tour diff --git a/icons/CMakeLists.txt b/icons/CMakeLists.txt new file mode 100644 index 0000000..a6aba6f --- /dev/null +++ b/icons/CMakeLists.txt @@ -0,0 +1,3 @@ +##### icons + +tde_install_icons( knighttour ) diff --git a/icons/hi128-app-knighttour.png b/icons/hi128-app-knighttour.png new file mode 100644 index 0000000..d6a9c5e Binary files /dev/null and b/icons/hi128-app-knighttour.png differ diff --git a/src/CMakeL10n.txt b/src/CMakeL10n.txt new file mode 100644 index 0000000..9f352b0 --- /dev/null +++ b/src/CMakeL10n.txt @@ -0,0 +1,9 @@ +##### create translation templates ############## + +tde_l10n_create_template( knighttour ) + +tde_l10n_create_template( + CATALOG "desktop_files/knighttour.desktop/" + SOURCES knighttour.desktop + DESTINATION "${CMAKE_SOURCE_DIR}/translations" +) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..eebc506 --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,44 @@ +############################################ +# # +# (C) 2010-2011 Serghei Amelian # +# serghei (DOT) amelian (AT) gmail.com # +# (C) 2011-2012 Timothy Pearson # +# kb9vqf (AT) pearsoncomputing (DOT) net # +# # +# Improvements and feedback are welcome # +# # +# This file is released under GPL >= 2 # +# # +############################################ + +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### (executable) tdefifteen + +tde_add_executable( knighttour AUTOMOC + + SOURCES + gameboard.cpp + main.cpp + mainwindow.cpp + LINK + tdeui-shared + + DESTINATION ${BIN_INSTALL_DIR} +) + + +###### other data + +tde_create_translated_desktop( knighttour.desktop ) diff --git a/src/gameboard.cpp b/src/gameboard.cpp new file mode 100644 index 0000000..33bea1a --- /dev/null +++ b/src/gameboard.cpp @@ -0,0 +1,427 @@ +// Author: Denis Kozadaev - (c) 2025 + +#include + +#include + +#include +#include +#include +#include + +#include "gameboard.h" + +#define IS_SET(flags, flag) (((flags) & (flag)) == (flag)) + +typedef enum { + CFG_TIPS = 0x01, + CFG_KNIGHT = 0x02, + CFG_RANDOM = 0x04 +} ConfigBits; + + +GameBoard::GameBoard(TQWidget *parent, const char *name) + :TQWidget(parent, name), paperColor(0xF0, 0xF0, 0xED) +{ +#include "knight_icon.inc" + struct timeval tv; + + knight = new TQImage(); + knight->loadFromData(knight_icon, sizeof(knight_icon)); + + map = nullptr; + xpm = kxpm = nullptr; + config = CFG_RANDOM; + + gettimeofday(&tv, NULL); + srand(tv.tv_sec * 1000000 + tv.tv_usec); +} + +GameBoard::~GameBoard() +{ + + if (map != nullptr) + delete []map; + if (xpm != nullptr) + delete xpm; + if (kxpm != nullptr) + delete kxpm; + + delete knight; +} + + +void +GameBoard::resizeEvent(TQResizeEvent *e) +{ + TQWidget::resizeEvent(e); + if (xpm == nullptr) { + xpm = new TQPixmap(); + xpm->resize(e->size()); + redrawMap(); + } +} + + +/* + * Initializes new game map to the given size + * (e.g. size X size) + */ +void +GameBoard::initMap(int size) +{ + size_t mem; + + if (map != nullptr) + delete []map; + + map_size = size; + mem = map_size * map_size; + map = new int[mem]; + memset(map, 0, mem * sizeof(*map)); + kpos = -1; curr = 0; +} + + +/* + * Draw the map into the pixmap + */ +void +GameBoard::redrawMap() +{ + TQPainter *p; + int w, h, x, y, dx, dy, ox, oy, pos, i, size; + TQFont fnt; + + if (xpm == nullptr) + return; + + w = xpm->width(); + h = xpm->height(); + adjustDelta(w, h, dx, dy, ox, oy); + p = new TQPainter(xpm); + fnt = p->font(); + fnt.setPointSize(dy * 3 / 7); + fnt.setItalic(TRUE); + p->setFont(fnt); + p->setBrush(TQBrush(paperColor)); + p->setPen(TQt::black); + h -= oy * 3; w -= ox * 3; + if ((kpos >= 0) && (kxpm == NULL)) + kxpm = new TQPixmap(knight->scale(dx - 3, dy - 3)); + for (pos = 0, y = oy; y < h; y += dy) { + for (x = ox; x < w; x += dx) { + p->drawRect(x, y, dx, dy); + if (isEnabled() && (kpos > 0) && (kpos == pos) && + IS_SET(config, CFG_KNIGHT)) { + /* draw the knight */ + p->drawPixmap(x, y, *kxpm); + } + if (map[pos] > 0) { + if (!isEnabled() && (kpos == pos)) + p->setPen(TQt::red); + p->drawText(x, y, dx, dy, TQt::AlignCenter, + TQString::number(map[pos])); + if (!isEnabled() && (kpos == pos)) + p->setPen(TQt::black); + } + pos++; + } + } + if (kpos < 0) { + fnt.setPointSize(dy * 3 / 5); + fnt.setBold(TRUE); + p->setFont(fnt); + p->setPen(TQColor(0, 0xB3, 0)); + p->drawText(0, 0, w, h, TQt::AlignCenter, + i18n("Choose a cell")); + } else { + predictMoves(); + fromLinear(kpos, x, y); + + if (vmove.size() == 0) { + /* game over */ + setEnabled(FALSE); + y = y * dy + 1; + x = x * dx + 1; + p->setBrush(TQBrush(TQt::red)); + p->drawRect(x + ox, y + oy, dx - 2, dy - 2); + p->setPen(TQt::black); + p->drawText(x + ox, y + oy, dx, dy, TQt::AlignCenter, + TQString::number(map[kpos])); + } + if (isEnabled()) { + if (IS_SET(config, CFG_TIPS)) { + ValidMoves::const_iterator it; + + p->setPen(TQPen(TQt::green, 3)); + for (it = vmove.constBegin() ; + it != vmove.constEnd(); ++it) { + fromLinear(*it, x, y); + y = y * dy + 1; + x = x * dx + 1; + p->drawRect(x + ox, y + oy, + dx - 2, dy - 2); + } + } + } else { + fnt.setPointSize(dy * 3 / 5); + fnt.setBold(TRUE); + p->setFont(fnt); + p->setPen(TQColor(0, 0xB3, 0)); + size = map_size * map_size; + p->drawText(0, 0, w, h, TQt::AlignCenter, + (map[kpos] < size)?i18n("Game over") + :i18n("You passed\nthe tour")); + } + } + delete p; +} + + +/* + * Computes deltas by the given width and height of the widget + */ +void +GameBoard::adjustDelta(int w, int h, int &dx, int &dy, int &ox, int &oy) +{ + + dx = w / map_size; + dy = h / map_size; + ox = (w - dx * map_size) / 2; + oy = (h - dy * map_size) / 2; +} + + +/* + * Fills the vector by valide moves from the current position + */ +void +GameBoard::predictMoves() +{ + int x, y; + + vmove.clear(); + fromLinear(kpos, x, y); + ifAppend(vmove, x - 1, y - 2); + ifAppend(vmove, x + 1, y - 2); + ifAppend(vmove, x - 2, y -1); + ifAppend(vmove, x + 2, y - 1); + ifAppend(vmove, x - 2, y + 1); + ifAppend(vmove, x + 2, y + 1); + ifAppend(vmove, x - 1, y + 2); + ifAppend(vmove, x + 1, y + 2); +} + + +/* + * Compute the given arguments are a valid knight's move on the map + */ +void +GameBoard::ifAppend(ValidMoves &vm, int px, int py) +{ + + if ((px >= 0) && (px < map_size) && (py >= 0) && (py < map_size)) { + int pos = toLinear(px, py); + + if (map[pos] == 0) + vm.append(pos); + } +} + + +/* + * Converts position to the x and y coordinates on the map + */ +void +GameBoard::fromLinear(int pos, int &x, int &y) +{ + + x = pos % map_size; + y = pos / map_size; +} + + +/* + * Generate a starting cell of the knight + */ +void +GameBoard::generateCell() +{ + int msize = map_size * map_size; + + kpos = rand() % msize; + if (kpos >= msize) + kpos -= 2; + curr = 1; + map[kpos] = curr; +} + + +/* + * Callback to handle mouse button + */ +void +GameBoard::mousePressEvent(TQMouseEvent *e) +{ + int x = e->x(), + y = e->y(), + i; + + i = toMap(x, y); + if ((kpos < 0) || (mayMove(i) != 0)) { + curr++; + kpos = i; + map[kpos] = curr; + redrawMap(); + update(); + } +} + + +void +GameBoard::paintEvent(TQPaintEvent *e) +{ + + TQWidget::paintEvent(e); + + if (xpm != nullptr) { + TQPainter *p; + + p = new TQPainter(this); + p->drawPixmap(0, 0, *xpm); + delete p; + } +} + + +/* + * Returns non-zero if the given cell is allowed to move the knight + * and 0 otherwise + */ +int +GameBoard::mayMove(int n) +{ + int res = 0; + + for (ValidMoves::const_iterator it = vmove.constBegin(); + it != vmove.constEnd(); ++it) + if (n == *it) { + res++; + break; + } + + return (res); +} + + +/* + * Returns an index map by the given x and y from the widget + */ +int +GameBoard::toMap(int x, int y) +{ + int ret = -1; + int w, h, dx, dy, ox, oy; + + w = xpm->width(); + h = xpm->height(); + + adjustDelta(w, h, dx, dy, ox, oy); + oy = (y - oy) / dy; + if (oy >= map_size) + oy = map_size - 1; + ox = (x - ox) / dx; + if (ox >= map_size) + ox = map_size - 1; + ret = oy * map_size + ox; + + return (ret); +} + + +/* + * Returns linear position by the given coordinates on the map + */ +int +GameBoard::toLinear(int x, int y) +{ + + return (y * map_size + x); +} + + +/* + * Request a new game for the given board size + */ +void +GameBoard::newGame(int size) +{ + + setEnabled(TRUE); + if (xpm != nullptr) { + xpm->fill(paperColor); + update(); + } + initMap(size); + if (IS_SET(config, CFG_RANDOM)) + generateCell(); + redrawMap(); + update(); +} + + +/* + * Toggle highlight tips to move the knight + */ +void +GameBoard::setTips(bool ena) +{ + + if (ena) + config |= CFG_TIPS; + else + config &= ~CFG_TIPS; + + redrawMap(); + update(); +} + + +/* + * Toggle the knight visibility + */ +void +GameBoard::setKnight(bool ena) +{ + + if (ena) + config |= CFG_KNIGHT; + else + config &= ~CFG_KNIGHT; + + redrawMap(); + update(); +} + + +/* + * Toggle random starting cell of the knight + */ +void +GameBoard::setRandomCell(bool ena) +{ + + if (ena) + config |= CFG_RANDOM; + else + config &= ~CFG_RANDOM; + + if (curr == 0) { + generateCell(); + redrawMap(); + update(); + } +} + +#include "gameboard.moc" diff --git a/src/gameboard.h b/src/gameboard.h new file mode 100644 index 0000000..e6b003c --- /dev/null +++ b/src/gameboard.h @@ -0,0 +1,58 @@ +// Author: Denis Kozadaev - (c) 2025 + + +#ifndef __GAME_BOARD_H__ +#define __GAME_BOARD_H__ + +#include + +#include +#include +#include +#include + +typedef TQValueList ValidMoves; + +class GameBoard:public TQWidget +{ + TQ_OBJECT +public: + + GameBoard(TQWidget *parent = nullptr, const char *name = nullptr); + ~GameBoard(); + + void newGame(int); + void setTips(bool); + void setKnight(bool); + void setRandomCell(bool); + +private: + int config; + int map_size, curr; + int *map; + int kpos; /* knight position (in the map) */ + TQPixmap *xpm; + TQPixmap *kxpm; + TQImage *knight; + ValidMoves vmove; + TQColor paperColor; + + void initMap(int); + void redrawMap(); + void adjustDelta(int, int, int&, int&, int&, int&); + void predictMoves(); + void ifAppend(ValidMoves&, int, int); + void fromLinear(int, int&, int&); + void generateCell(); + + int toMap(int, int); + int mayMove(int); + int toLinear(int, int); + +protected: + void resizeEvent(TQResizeEvent *); + void mousePressEvent(TQMouseEvent *); + void paintEvent(TQPaintEvent *); +}; + +#endif /* __GAME_BOARD_H__ */ diff --git a/src/knight_icon.inc b/src/knight_icon.inc new file mode 100644 index 0000000..993f18f --- /dev/null +++ b/src/knight_icon.inc @@ -0,0 +1,733 @@ +// Author: Denis Kozadaev - (c) 2025 + + +#ifndef __KNIGHT_ICON_INC__ +#define __KNIGHT_ICON_INC__ + +const unsigned char knight_icon[] = { + 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, + 0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, + 0x08, 0x06, 0x00, 0x00, 0x00, 0xc3, 0x3e, 0x61, 0xcb, 0x00, 0x00, 0x00, + 0x04, 0x73, 0x42, 0x49, 0x54, 0x08, 0x08, 0x08, 0x08, 0x7c, 0x08, 0x64, + 0x88, 0x00, 0x00, 0x00, 0x09, 0x70, 0x48, 0x59, 0x73, 0x00, 0x00, 0x03, + 0xb1, 0x00, 0x00, 0x03, 0xb1, 0x01, 0xf5, 0x83, 0xed, 0x49, 0x00, 0x00, + 0x00, 0x19, 0x74, 0x45, 0x58, 0x74, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, + 0x72, 0x65, 0x00, 0x77, 0x77, 0x77, 0x2e, 0x69, 0x6e, 0x6b, 0x73, 0x63, + 0x61, 0x70, 0x65, 0x2e, 0x6f, 0x72, 0x67, 0x9b, 0xee, 0x3c, 0x1a, 0x00, + 0x00, 0x20, 0x00, 0x49, 0x44, 0x41, 0x54, 0x78, 0x9c, 0xed, 0x9d, 0x77, + 0x74, 0x5c, 0xd5, 0xb9, 0xf6, 0x7f, 0xfb, 0x4c, 0xd3, 0xa8, 0x97, 0x91, + 0x65, 0xc9, 0xb2, 0xd5, 0x46, 0x33, 0x92, 0x7b, 0xc1, 0x0d, 0x77, 0xb0, + 0x8d, 0xe9, 0x36, 0x60, 0x20, 0x18, 0x27, 0x40, 0xa8, 0x01, 0x42, 0xb2, + 0x02, 0x01, 0x2e, 0x01, 0x6e, 0x12, 0x48, 0xa8, 0x21, 0xb4, 0x70, 0x2f, + 0x90, 0x84, 0x24, 0x04, 0x08, 0x09, 0x25, 0x17, 0xf2, 0xc5, 0x04, 0x0c, + 0x36, 0x21, 0x01, 0x83, 0x6d, 0x6c, 0x83, 0xb1, 0x55, 0x5c, 0xb0, 0x65, + 0x49, 0x96, 0x34, 0x2a, 0xa3, 0x36, 0xf5, 0xec, 0xef, 0x8f, 0xa3, 0x6a, + 0xa4, 0x99, 0xd1, 0x48, 0x9a, 0x19, 0x3b, 0x3c, 0x6b, 0x69, 0x2d, 0x69, + 0xb4, 0xcf, 0xd9, 0xef, 0x9c, 0xfd, 0x9c, 0xbd, 0xdf, 0xfd, 0xb6, 0x2d, + 0x38, 0xc1, 0x51, 0x62, 0xb3, 0xdd, 0x20, 0x25, 0x0f, 0x03, 0xc6, 0x00, + 0xcd, 0x5a, 0x00, 0x2f, 0xc8, 0x5a, 0x10, 0x87, 0x40, 0x7e, 0x29, 0x60, + 0xa7, 0x1f, 0x76, 0x18, 0x8d, 0xc6, 0x4f, 0x77, 0xef, 0xde, 0xed, 0x89, + 0x90, 0xb8, 0x11, 0x87, 0x88, 0xb6, 0x00, 0xa3, 0x0d, 0xbb, 0xcd, 0xf6, + 0x2e, 0x92, 0x65, 0xc3, 0xb8, 0x45, 0xbb, 0x40, 0x1e, 0x90, 0x52, 0xec, + 0x40, 0x27, 0x6e, 0x2d, 0x2b, 0x2b, 0xab, 0x1e, 0x31, 0xe1, 0x62, 0x00, + 0x27, 0x3e, 0x01, 0x8a, 0x8b, 0xdf, 0x03, 0xb1, 0x34, 0x2b, 0x29, 0x9e, + 0xd3, 0x6c, 0xe3, 0x07, 0x6d, 0xd7, 0xea, 0xf6, 0xe1, 0xe8, 0xe8, 0xa4, + 0xae, 0xad, 0x93, 0xc3, 0xcd, 0x6d, 0xb4, 0x7b, 0xbc, 0x03, 0x35, 0x53, + 0x11, 0x6c, 0x46, 0x15, 0xff, 0x93, 0x9d, 0x9b, 0xfd, 0xea, 0xa6, 0x4d, + 0x9b, 0x7c, 0xa3, 0x26, 0x78, 0x84, 0xa0, 0x8f, 0xb6, 0x00, 0x91, 0xc2, + 0xb8, 0xe4, 0x04, 0xae, 0x9f, 0x3f, 0x35, 0xa4, 0xb6, 0x8e, 0x36, 0x17, + 0xf7, 0xbf, 0xbf, 0x8d, 0xf7, 0xf7, 0x57, 0x23, 0xfb, 0xff, 0x4b, 0x41, + 0xb2, 0x0c, 0x21, 0x97, 0xd5, 0x1c, 0xa9, 0x39, 0x64, 0x2f, 0x2e, 0x7e, + 0xd8, 0x2f, 0xe5, 0xff, 0x56, 0x56, 0x56, 0xba, 0x47, 0x41, 0xe4, 0x88, + 0x40, 0x89, 0xb6, 0x00, 0xb1, 0x04, 0xbf, 0x94, 0xbc, 0xb4, 0xa3, 0x82, + 0xb5, 0x2f, 0x6c, 0x60, 0x73, 0xd7, 0xe0, 0x2b, 0x4a, 0xef, 0x24, 0xb9, + 0xb2, 0x78, 0x02, 0x69, 0x66, 0x53, 0xd7, 0x5f, 0x72, 0x02, 0x88, 0x47, + 0x75, 0x28, 0x65, 0x76, 0xab, 0xfd, 0x52, 0x8e, 0xd3, 0xd9, 0xf4, 0x6b, + 0x02, 0x74, 0x61, 0x4f, 0x5d, 0x13, 0x57, 0xfe, 0xf9, 0x5d, 0x1e, 0xf9, + 0x60, 0x47, 0xcf, 0xf4, 0xbf, 0x74, 0xc6, 0x18, 0x7e, 0x7e, 0x75, 0xef, + 0xac, 0xb1, 0x76, 0xaa, 0x95, 0xbf, 0x7e, 0xeb, 0x4c, 0x7e, 0x74, 0xca, + 0x6c, 0x0a, 0xd2, 0x92, 0xb5, 0x0f, 0x05, 0x79, 0x08, 0xf9, 0x07, 0xbb, + 0xcd, 0xb6, 0xb1, 0xa4, 0xa4, 0xc4, 0x16, 0x0d, 0xd9, 0x87, 0x83, 0xff, + 0x98, 0x25, 0x60, 0x30, 0x38, 0xdd, 0x1e, 0x9e, 0xfd, 0xf8, 0x0b, 0xfe, + 0xbc, 0xab, 0x12, 0x55, 0x6a, 0x13, 0xfe, 0x84, 0xac, 0x04, 0xee, 0xfc, + 0xe6, 0x44, 0x16, 0x4d, 0xb3, 0xf0, 0xf1, 0x9e, 0xc6, 0x7e, 0xed, 0x4d, + 0x7a, 0x1d, 0x67, 0x4f, 0xcc, 0xe7, 0x8c, 0x92, 0x3c, 0xde, 0x2a, 0xff, + 0x92, 0xff, 0xd9, 0xb2, 0x9b, 0xa3, 0xad, 0x1d, 0x20, 0x59, 0x26, 0xfd, + 0xea, 0x0e, 0xbb, 0xd5, 0xfe, 0x83, 0xb2, 0xca, 0xb2, 0xa7, 0xa2, 0xf1, + 0x5d, 0xc2, 0xc1, 0x09, 0x4f, 0x00, 0x81, 0x50, 0x24, 0x50, 0xdb, 0xda, + 0xc1, 0xef, 0xb7, 0x95, 0xf5, 0xfb, 0x5f, 0x87, 0xd7, 0xcb, 0x5f, 0x3e, + 0xaf, 0xa4, 0xd5, 0xa5, 0xbd, 0xf1, 0x71, 0x26, 0x1d, 0xd7, 0x9e, 0x53, + 0xc8, 0x15, 0x67, 0x14, 0x62, 0x34, 0x04, 0x9e, 0x1c, 0x75, 0x8a, 0xe0, + 0x8c, 0x92, 0x7c, 0x4e, 0xb1, 0x8e, 0xe7, 0xe9, 0x2d, 0xbb, 0x79, 0x69, + 0x47, 0x39, 0x7e, 0x29, 0xcd, 0x08, 0xf9, 0x2b, 0x7b, 0xb1, 0xfd, 0x54, + 0xbd, 0x51, 0x7f, 0xd9, 0xee, 0xdd, 0xbb, 0xdb, 0x46, 0xeb, 0x7b, 0x8d, + 0x14, 0x4e, 0x54, 0x02, 0xe8, 0x4a, 0x8a, 0x8b, 0xcf, 0x95, 0x70, 0xa3, + 0x84, 0xc5, 0x00, 0xd5, 0xce, 0x76, 0x9e, 0xfc, 0x70, 0xd7, 0xa0, 0x17, + 0x2c, 0x9d, 0x31, 0x86, 0x1f, 0x7d, 0x73, 0x22, 0xb9, 0x99, 0xe6, 0x21, + 0x75, 0x14, 0xa7, 0xd7, 0xf1, 0xdd, 0x05, 0x53, 0x59, 0x5e, 0x9c, 0xcb, + 0x9d, 0x6f, 0x6d, 0xa1, 0xaa, 0xa5, 0x0d, 0x90, 0xe7, 0xfb, 0x3c, 0xde, + 0xa2, 0xa2, 0xa2, 0xa2, 0x73, 0xf6, 0xed, 0xdb, 0x77, 0x78, 0x58, 0xdf, + 0x64, 0x94, 0x71, 0x42, 0x11, 0x60, 0xca, 0x84, 0x29, 0x69, 0x1e, 0x93, + 0xeb, 0x4a, 0xa4, 0xb8, 0x5e, 0x42, 0x5e, 0xf7, 0xe7, 0x8a, 0x22, 0x50, + 0x55, 0x39, 0xe0, 0x35, 0x85, 0x39, 0x09, 0xdc, 0x7c, 0x71, 0x09, 0xa7, + 0xcc, 0x1c, 0x33, 0xac, 0xbe, 0x27, 0x8e, 0x49, 0xe7, 0xf7, 0x17, 0x2d, + 0xe7, 0xa7, 0x1b, 0xb7, 0xf2, 0xde, 0xbe, 0x2a, 0x80, 0xe9, 0x7a, 0x45, + 0xf7, 0xaf, 0xd2, 0xc2, 0xd2, 0x53, 0xf7, 0xec, 0xdf, 0x53, 0x31, 0xac, + 0x9b, 0x8f, 0x22, 0x4e, 0x08, 0x02, 0x4c, 0xb4, 0x5a, 0x27, 0xf9, 0x85, + 0xee, 0x46, 0x0f, 0x9e, 0xf5, 0x20, 0xe2, 0xbb, 0xf5, 0xf1, 0xe4, 0xa4, + 0x38, 0x2e, 0x58, 0x39, 0x93, 0x75, 0x67, 0x9f, 0xc4, 0xb8, 0xac, 0x54, + 0x90, 0x3e, 0xe8, 0x3c, 0x0a, 0xee, 0x3a, 0x50, 0x47, 0x7e, 0x0b, 0x9f, + 0x60, 0x34, 0xb0, 0x72, 0x7c, 0x06, 0xff, 0x3a, 0x70, 0x04, 0x8f, 0x46, + 0xb8, 0xf1, 0xaa, 0xce, 0xbf, 0xd9, 0x66, 0xb3, 0x9d, 0x52, 0x5e, 0x5e, + 0xbe, 0x77, 0xc4, 0x3b, 0x1c, 0x01, 0x1c, 0xcf, 0x04, 0x50, 0x6c, 0x36, + 0xdb, 0x29, 0x48, 0x6e, 0xf2, 0xc3, 0x99, 0x20, 0x7b, 0xb6, 0x61, 0xf9, + 0xe3, 0xd2, 0xb9, 0xe4, 0xac, 0x39, 0xac, 0x3d, 0x7d, 0x06, 0x66, 0x93, + 0x41, 0x1b, 0xec, 0x8e, 0x23, 0xe0, 0x3a, 0x0a, 0xd2, 0x3f, 0x2a, 0xc2, + 0xb8, 0xbc, 0x5e, 0x1e, 0xfc, 0xc7, 0xbf, 0x79, 0xf3, 0x40, 0x5d, 0xcf, + 0x67, 0x02, 0x90, 0x90, 0x2d, 0x24, 0xef, 0x14, 0x15, 0x15, 0xcd, 0x8f, + 0xc5, 0xe5, 0xe0, 0xb8, 0x23, 0x40, 0x61, 0x61, 0x61, 0x8a, 0x5e, 0xd1, + 0x5f, 0x21, 0x04, 0xd7, 0x23, 0x29, 0xea, 0xfe, 0x5c, 0x51, 0x04, 0x4b, + 0x66, 0xdb, 0x58, 0x7f, 0xee, 0x6c, 0x0c, 0x7a, 0x1d, 0x3b, 0xf6, 0x54, + 0xf1, 0xfc, 0xeb, 0x1f, 0x82, 0xaf, 0x15, 0x7c, 0xed, 0xd0, 0xa5, 0xe1, + 0x97, 0xe6, 0x25, 0xb3, 0x70, 0xaa, 0x25, 0xac, 0xbe, 0x3b, 0xbd, 0x03, + 0x5a, 0x07, 0xf9, 0xa2, 0xaa, 0x86, 0xbb, 0xde, 0xfe, 0x84, 0xc3, 0xed, + 0x9a, 0x3d, 0x28, 0xc9, 0xa0, 0xe3, 0x96, 0x05, 0x13, 0x71, 0x4a, 0x3d, + 0x0f, 0x6d, 0xfe, 0x14, 0x60, 0x9c, 0x5e, 0xd1, 0xbd, 0x39, 0x69, 0xd2, + 0xa4, 0x05, 0xb1, 0xa6, 0x18, 0x1e, 0x37, 0x04, 0x98, 0x54, 0x54, 0x64, + 0xf5, 0xe9, 0x74, 0x57, 0x22, 0xb9, 0x06, 0x48, 0xed, 0xfe, 0x3c, 0x31, + 0xde, 0xc4, 0x19, 0x4b, 0x26, 0x73, 0xd9, 0x9a, 0xb9, 0x14, 0x8e, 0xb7, + 0x50, 0xdb, 0xe0, 0x64, 0xe5, 0x15, 0x8f, 0xe3, 0xf1, 0x0e, 0xfc, 0xa6, + 0x0b, 0x01, 0xcf, 0xdf, 0x39, 0x8f, 0x59, 0xb6, 0xb4, 0x90, 0xfa, 0x4d, + 0x49, 0x34, 0xf4, 0xfc, 0xfe, 0x93, 0x77, 0x3e, 0xe1, 0x89, 0xd5, 0x8b, + 0x29, 0x48, 0x4f, 0x01, 0x40, 0xaa, 0xf0, 0xd2, 0xc7, 0x3b, 0x78, 0x62, + 0x7b, 0x25, 0xbe, 0x2e, 0x1d, 0x63, 0x66, 0x66, 0x22, 0x3f, 0x59, 0xb5, + 0x90, 0xcc, 0x94, 0x24, 0x00, 0x1a, 0x3b, 0xdc, 0xfc, 0xe6, 0x93, 0x2f, + 0x00, 0xa6, 0xfa, 0xdc, 0xde, 0x67, 0x81, 0x8b, 0x87, 0xfe, 0xed, 0x47, + 0x0f, 0xba, 0x68, 0x0b, 0x10, 0x04, 0x8a, 0xcd, 0x66, 0x5b, 0x65, 0x49, + 0x4f, 0x7f, 0x42, 0x15, 0xca, 0x2f, 0x81, 0x85, 0x40, 0x1c, 0x40, 0xe1, + 0x78, 0x0b, 0x37, 0xae, 0x5f, 0xca, 0xfd, 0xb7, 0xac, 0x66, 0xe5, 0x82, + 0x52, 0xd2, 0x52, 0xe2, 0xc1, 0xd7, 0xc9, 0xf3, 0xaf, 0x6e, 0xe4, 0x5f, + 0x3b, 0x6b, 0x02, 0xde, 0x74, 0xef, 0xa1, 0x76, 0xd6, 0xae, 0x28, 0x45, + 0x28, 0x3a, 0x4d, 0x2f, 0x08, 0x00, 0x4b, 0x8a, 0x09, 0xbf, 0x0a, 0x5b, + 0xf7, 0x36, 0xd2, 0xe1, 0xf5, 0xf1, 0x4e, 0x45, 0x15, 0x0b, 0xf3, 0xc7, + 0xa2, 0xfa, 0x7c, 0xdc, 0xfe, 0xc6, 0x26, 0xfe, 0x52, 0x51, 0x8d, 0x2a, + 0x41, 0x27, 0xe0, 0x8a, 0x29, 0x79, 0xdc, 0x79, 0xc6, 0x12, 0x12, 0xe3, + 0x4c, 0x3d, 0xd7, 0xcf, 0x1a, 0x37, 0x86, 0x83, 0xcd, 0x4e, 0xf6, 0x37, + 0x3a, 0x41, 0x30, 0xd9, 0x92, 0x6e, 0xa9, 0x73, 0x34, 0x3a, 0xb6, 0x0e, + 0xfb, 0xc9, 0x8c, 0x10, 0x62, 0xd2, 0x7c, 0x69, 0xb7, 0xdb, 0x93, 0x84, + 0xaa, 0x5e, 0x26, 0xa5, 0xb8, 0x01, 0x41, 0x8f, 0x75, 0x4d, 0x51, 0x04, + 0x8b, 0x66, 0x59, 0x59, 0x7f, 0xee, 0x1c, 0x16, 0xcc, 0x2c, 0x44, 0x88, + 0x2e, 0xf1, 0xfd, 0xed, 0xd0, 0x51, 0x0b, 0x9e, 0x26, 0x4e, 0xbf, 0x65, + 0x33, 0x07, 0x6a, 0xda, 0xc9, 0xcf, 0x54, 0xf8, 0xfb, 0xad, 0x89, 0x88, + 0x3e, 0xdf, 0xf0, 0xc9, 0x7f, 0xb8, 0x79, 0xfc, 0x2d, 0x6d, 0x9a, 0xbe, + 0xef, 0xe6, 0xd5, 0xac, 0x3e, 0xa5, 0x14, 0x9a, 0x3e, 0x0b, 0x49, 0x2f, + 0x78, 0xe6, 0x8d, 0xfd, 0x3c, 0xfc, 0x27, 0xcd, 0x8e, 0x90, 0x62, 0x32, + 0x20, 0x50, 0x69, 0x76, 0x6b, 0xd7, 0x65, 0x9b, 0x8d, 0xfc, 0x64, 0xf9, + 0x49, 0x4c, 0xcd, 0x1b, 0x37, 0xe0, 0xb5, 0x9d, 0x5e, 0x1f, 0x97, 0xbf, + 0xbc, 0x91, 0x03, 0x4d, 0x4e, 0x80, 0x76, 0x29, 0x98, 0x5a, 0x5e, 0x5e, + 0xbe, 0x3f, 0x8c, 0x47, 0x33, 0xe2, 0x88, 0xa9, 0x25, 0x60, 0x52, 0x51, + 0x91, 0xd5, 0xa7, 0x28, 0x37, 0xa0, 0xca, 0xcb, 0x25, 0x22, 0xb9, 0x9b, + 0x9e, 0x89, 0xf1, 0x26, 0xd6, 0xac, 0x98, 0xce, 0xa5, 0x67, 0xcf, 0x26, + 0x6f, 0x5c, 0x7a, 0xef, 0x05, 0xbe, 0x36, 0xe8, 0xa8, 0x01, 0x6f, 0x33, + 0x00, 0x9f, 0xec, 0x6d, 0xe4, 0x40, 0x4d, 0x3b, 0x00, 0xe7, 0xcf, 0x31, + 0xf6, 0x1b, 0x7c, 0x80, 0x6f, 0x2f, 0x33, 0xf2, 0x97, 0x2d, 0x5e, 0x6a, + 0x9a, 0x55, 0x1e, 0xf9, 0xed, 0x46, 0x4e, 0x5b, 0x58, 0x8a, 0xd9, 0x9c, + 0x0d, 0x1d, 0x55, 0x41, 0x65, 0xbb, 0xea, 0xec, 0x42, 0x00, 0x1e, 0xfe, + 0x53, 0x19, 0x2d, 0xee, 0x5e, 0x5d, 0x60, 0x55, 0x9e, 0x85, 0xdb, 0x56, + 0x2e, 0xc0, 0x6c, 0x1a, 0x3c, 0xdc, 0xc0, 0x6c, 0xd0, 0xf3, 0xe3, 0x95, + 0x73, 0xb8, 0xe2, 0xcf, 0x1b, 0xf1, 0xa9, 0x32, 0x41, 0xa8, 0x3c, 0x03, + 0x9c, 0x1a, 0xc2, 0x23, 0x19, 0x75, 0xc4, 0xc2, 0x12, 0x20, 0x4a, 0x8b, + 0x8b, 0x57, 0xa4, 0x67, 0x58, 0x1e, 0x95, 0x42, 0x79, 0x0c, 0xc4, 0x7c, + 0xc0, 0x04, 0x90, 0x37, 0x2e, 0x9d, 0x1b, 0xd6, 0x2d, 0xe6, 0xfe, 0x9b, + 0x57, 0xb3, 0x7c, 0xbe, 0x9d, 0xd4, 0xe4, 0x2e, 0x23, 0x8d, 0xd7, 0x09, + 0x6d, 0xfb, 0xa1, 0xb3, 0x1a, 0x54, 0x57, 0xcf, 0x8d, 0x9e, 0x7c, 0xb5, + 0x92, 0x3d, 0x5f, 0x3a, 0x01, 0xb0, 0xe7, 0x28, 0xec, 0x39, 0xa2, 0xb2, + 0xfd, 0x80, 0xbf, 0xe7, 0x67, 0xd7, 0x21, 0x95, 0x56, 0x97, 0xa4, 0xaa, + 0x51, 0xa5, 0xbd, 0xd3, 0x83, 0x41, 0xa7, 0x63, 0xce, 0xcc, 0x89, 0xe0, + 0x69, 0x0c, 0x69, 0x16, 0x98, 0x65, 0x4f, 0xa3, 0xd3, 0xad, 0xf2, 0x69, + 0x45, 0x13, 0x00, 0xa5, 0x19, 0xc9, 0xfc, 0xf2, 0xbc, 0xe5, 0x18, 0xf4, + 0xc1, 0x1f, 0xa3, 0x25, 0xc1, 0x8c, 0x94, 0x92, 0xed, 0x47, 0xea, 0x41, + 0x50, 0x90, 0x99, 0x91, 0xfe, 0x59, 0x43, 0x63, 0xe3, 0x9e, 0xa1, 0x3e, + 0xac, 0x91, 0x46, 0xd4, 0x96, 0x80, 0xa9, 0x53, 0xa7, 0x26, 0xb8, 0x3b, + 0x3b, 0xd7, 0x83, 0xf8, 0x2e, 0x50, 0xda, 0x23, 0x90, 0x10, 0x2c, 0x98, + 0x59, 0xc8, 0xfa, 0x73, 0xe7, 0xb0, 0x68, 0x96, 0xb5, 0x9f, 0x37, 0x0e, + 0x4f, 0x33, 0x74, 0x1e, 0x01, 0x5f, 0xc7, 0x80, 0xf7, 0x9c, 0x7b, 0xcd, + 0x3b, 0xb4, 0xb4, 0x0f, 0xac, 0xa9, 0x0f, 0x84, 0x94, 0x24, 0x33, 0x5b, + 0x5e, 0xbe, 0x05, 0xdc, 0x0d, 0xd0, 0x76, 0x20, 0xa4, 0x6b, 0xfc, 0xaa, + 0xe4, 0xaa, 0x07, 0xb6, 0xf2, 0xef, 0xcf, 0x1b, 0x00, 0xb8, 0x65, 0xc9, + 0x4c, 0x2e, 0x98, 0x52, 0x14, 0xe4, 0x2a, 0x0d, 0x6e, 0x9f, 0x9f, 0x8b, + 0x5f, 0x78, 0x8b, 0x6a, 0x67, 0x3b, 0xc0, 0xfe, 0xc4, 0xe4, 0xa4, 0x92, + 0x6d, 0xdb, 0xb6, 0x85, 0x2e, 0xf0, 0x28, 0x20, 0x2a, 0x33, 0x80, 0xdd, + 0x6e, 0xb7, 0xfb, 0xbd, 0xbe, 0x5d, 0x20, 0x2e, 0x04, 0x32, 0x01, 0xe2, + 0xe3, 0x8c, 0xac, 0x5d, 0x35, 0x83, 0xfb, 0x6f, 0x5e, 0xcd, 0xb7, 0xd6, + 0xcc, 0x23, 0x7f, 0x5c, 0x46, 0xef, 0x1a, 0xef, 0x69, 0x84, 0xd6, 0x4a, + 0x70, 0xd5, 0x81, 0x3a, 0xf8, 0xf3, 0xda, 0x5f, 0xd3, 0x4e, 0xf9, 0xe1, + 0xd6, 0xee, 0x1d, 0x5f, 0x40, 0x28, 0x8a, 0x60, 0xe5, 0x82, 0x12, 0x56, + 0x2c, 0x28, 0x05, 0xbd, 0x59, 0x5b, 0x46, 0x02, 0xdc, 0xbb, 0xe7, 0x3a, + 0x21, 0x58, 0x38, 0xc5, 0xc2, 0x9b, 0xff, 0xae, 0xa6, 0xdd, 0xe5, 0x67, + 0x5b, 0x75, 0x3d, 0xcb, 0xad, 0xe3, 0x49, 0x89, 0x0b, 0x14, 0x71, 0xa6, + 0x41, 0xaf, 0x28, 0x8c, 0x49, 0x30, 0xb3, 0xb1, 0xb2, 0x0a, 0x20, 0xcd, + 0xe3, 0x76, 0x1f, 0x70, 0x34, 0x36, 0xee, 0x08, 0x2e, 0xed, 0xe8, 0x21, + 0x2a, 0x33, 0x80, 0xad, 0xd8, 0xf6, 0x82, 0x80, 0x6f, 0x00, 0x8c, 0x1f, + 0x9b, 0xc6, 0x25, 0xe7, 0xcc, 0xe6, 0x82, 0x95, 0xd3, 0x49, 0x4a, 0x88, + 0xeb, 0xd3, 0x4a, 0x05, 0x57, 0x03, 0xb8, 0x6a, 0xc1, 0x3f, 0x84, 0x78, + 0x8b, 0x64, 0x1b, 0x18, 0x52, 0x86, 0x2e, 0x94, 0xcf, 0x09, 0x2d, 0x65, + 0xc1, 0xdb, 0x75, 0x61, 0x5b, 0x79, 0x13, 0xeb, 0xef, 0xd9, 0x82, 0xaa, + 0x4a, 0x16, 0x15, 0xe4, 0xf0, 0xd0, 0x99, 0x0b, 0x42, 0xba, 0x4e, 0x4a, + 0xb8, 0xf4, 0xa5, 0x7f, 0x50, 0xe9, 0x68, 0x01, 0x49, 0x79, 0x59, 0x65, + 0x79, 0x29, 0xa0, 0x0e, 0x5d, 0xe0, 0x91, 0x41, 0xc4, 0x67, 0x80, 0xd2, + 0xc2, 0xd2, 0x62, 0x14, 0xf9, 0x14, 0xa0, 0x9c, 0xbe, 0x78, 0x22, 0xdf, + 0x5a, 0x99, 0x47, 0x6d, 0xf5, 0x21, 0x6c, 0x85, 0xe3, 0x48, 0x4c, 0x4c, + 0xec, 0x6d, 0xd8, 0xba, 0x5f, 0x1b, 0xfc, 0xa1, 0x58, 0xee, 0x14, 0x03, + 0xc4, 0xe7, 0xf1, 0x15, 0xed, 0x2f, 0xa4, 0x6b, 0x4d, 0xe0, 0xef, 0x00, + 0xbf, 0x2b, 0x78, 0x5b, 0x20, 0x27, 0xc3, 0x4c, 0xad, 0xc3, 0xc5, 0x17, + 0x07, 0x9d, 0x1c, 0x6a, 0x6e, 0x65, 0x5a, 0xb6, 0x85, 0x71, 0x29, 0x89, + 0x83, 0xb6, 0x77, 0x79, 0xbd, 0x6c, 0x3b, 0x70, 0x98, 0x97, 0xb6, 0xee, + 0xe6, 0xb3, 0xa3, 0x4d, 0xb8, 0x55, 0x09, 0x82, 0x0c, 0x4b, 0x9a, 0xe5, + 0x23, 0x47, 0x93, 0xa3, 0x72, 0xe8, 0x02, 0x8f, 0x0c, 0x22, 0x3e, 0x03, + 0xd8, 0x8b, 0xed, 0xbf, 0x01, 0x79, 0xb9, 0xa2, 0x08, 0xfe, 0xef, 0xa9, + 0x6b, 0xb9, 0xe3, 0xbe, 0xe7, 0xd8, 0x79, 0xa0, 0x93, 0xec, 0x34, 0x1d, + 0xef, 0xfe, 0xf1, 0x76, 0x84, 0xe8, 0x72, 0xc3, 0x7a, 0x1c, 0x1a, 0x09, + 0x86, 0x02, 0x63, 0x2a, 0xc4, 0x65, 0x85, 0x2f, 0x9c, 0xdf, 0x05, 0xed, + 0x5f, 0x86, 0xdc, 0xdc, 0xe1, 0x74, 0xb3, 0xea, 0xe6, 0x7f, 0xd2, 0xda, + 0xe1, 0xa5, 0xd8, 0x92, 0xca, 0xef, 0x2e, 0x5c, 0x8e, 0xae, 0x8f, 0xce, + 0xb2, 0xff, 0x68, 0x3d, 0xef, 0x57, 0x1c, 0xe2, 0x93, 0x23, 0x0d, 0xec, + 0x70, 0xb4, 0xf6, 0x18, 0x8b, 0xfa, 0x42, 0xc0, 0x6b, 0x7b, 0x2b, 0xca, + 0xcf, 0x0b, 0x5f, 0xe8, 0xe1, 0x21, 0xa2, 0xdb, 0xc0, 0xd2, 0x82, 0xd2, + 0x3c, 0x15, 0xff, 0xa5, 0x00, 0xcb, 0x4f, 0x2e, 0xc1, 0xdf, 0xe9, 0x60, + 0xe7, 0x81, 0x4e, 0x00, 0xd6, 0x2c, 0x99, 0xd0, 0x3b, 0xf8, 0x00, 0x86, + 0x34, 0x10, 0x8a, 0x66, 0x6e, 0x0b, 0x15, 0x9e, 0x66, 0xed, 0x27, 0x42, + 0xc8, 0x48, 0x36, 0x71, 0xdd, 0xea, 0x22, 0x1e, 0x78, 0x61, 0x2f, 0x15, + 0x0d, 0xcd, 0xbc, 0xba, 0xab, 0x82, 0x78, 0xe9, 0xe3, 0xc3, 0x43, 0x47, + 0xf9, 0xe4, 0x68, 0x33, 0xcd, 0x9e, 0xaf, 0x1a, 0x99, 0x4c, 0x3a, 0x85, + 0xe9, 0x96, 0x44, 0x54, 0xa1, 0xe3, 0x93, 0xda, 0x26, 0x24, 0x9c, 0x99, + 0x9f, 0x9f, 0x9f, 0x7a, 0xf0, 0xe0, 0xc1, 0xc8, 0x09, 0xde, 0x07, 0x11, + 0x25, 0x80, 0xaa, 0xf7, 0xdd, 0x0a, 0xc2, 0x00, 0x70, 0xcd, 0x85, 0x0b, + 0x79, 0xf1, 0xb5, 0x37, 0x00, 0x50, 0x04, 0x5c, 0x70, 0xd6, 0x29, 0xfd, + 0x1b, 0x0b, 0x05, 0x4c, 0xe9, 0x9a, 0x1e, 0x10, 0xc3, 0x58, 0xbf, 0x32, + 0x8f, 0xdf, 0x6f, 0x38, 0x48, 0x6d, 0xa3, 0x8b, 0x87, 0x3e, 0xd8, 0x39, + 0x60, 0x9b, 0x82, 0xa4, 0x38, 0xe6, 0x66, 0x67, 0x30, 0x3f, 0x3f, 0x9b, + 0xe9, 0x05, 0xb9, 0xc4, 0x19, 0x0c, 0x54, 0x34, 0x34, 0x73, 0xe9, 0x4b, + 0x6f, 0x03, 0x18, 0x8d, 0x7a, 0xe3, 0xd9, 0xc0, 0x1f, 0x22, 0x29, 0x77, + 0x37, 0x22, 0x46, 0x00, 0xbb, 0xdd, 0x9e, 0x83, 0x2a, 0x2f, 0x07, 0x58, + 0x3a, 0xd7, 0xc6, 0xa4, 0xe2, 0x6c, 0x76, 0x4c, 0xc8, 0x64, 0x82, 0xa5, + 0x81, 0xc2, 0x9c, 0x78, 0x72, 0xc6, 0x0d, 0x60, 0x45, 0x33, 0x66, 0xc4, + 0x3c, 0x01, 0x0c, 0x7a, 0x85, 0x0b, 0x97, 0x4d, 0xe0, 0xb1, 0x57, 0xca, + 0x7b, 0x3e, 0x33, 0xeb, 0x14, 0x66, 0x64, 0x26, 0xb3, 0x28, 0x7f, 0x2c, + 0xf3, 0x0b, 0x27, 0x90, 0x9d, 0xfe, 0x55, 0xa5, 0xb4, 0xd8, 0x92, 0x4a, + 0x6e, 0x4a, 0x22, 0x55, 0x2d, 0x6d, 0x08, 0x85, 0xb3, 0x38, 0xd1, 0x09, + 0x20, 0xa5, 0xbc, 0x58, 0x74, 0xd9, 0xf1, 0xaf, 0xbb, 0x78, 0x21, 0x00, + 0xeb, 0x2e, 0x5e, 0xc3, 0x37, 0xd6, 0x9e, 0x8b, 0xb3, 0xb5, 0x65, 0xe0, + 0x8b, 0x0c, 0xc9, 0x60, 0xce, 0x86, 0xce, 0x5a, 0x38, 0x36, 0x40, 0x3b, + 0x86, 0x70, 0xe1, 0xb2, 0xf1, 0xfc, 0xea, 0xf5, 0x0a, 0x7c, 0x7e, 0xc9, + 0xa2, 0xbc, 0xb1, 0xdc, 0x7f, 0xc6, 0x42, 0x74, 0xba, 0xe0, 0xea, 0xd5, + 0xdc, 0x09, 0x59, 0x54, 0x7d, 0xd6, 0x86, 0x94, 0x2c, 0xa1, 0xc7, 0x7b, + 0x1c, 0x59, 0x44, 0x2c, 0x2a, 0x58, 0x81, 0xe4, 0xee, 0xdf, 0xa7, 0x95, + 0xe4, 0xf6, 0x7e, 0xae, 0x53, 0x48, 0x4d, 0x0d, 0xe0, 0x99, 0x8b, 0xcf, + 0x85, 0x94, 0x89, 0xa0, 0x1f, 0x5c, 0xc3, 0x8e, 0x36, 0x2c, 0xa9, 0x46, + 0x96, 0x9f, 0xa4, 0x29, 0x9f, 0xdb, 0xaa, 0x1b, 0xf0, 0xa8, 0xa1, 0xed, + 0x5c, 0x66, 0x8c, 0xcb, 0x04, 0x40, 0x40, 0x96, 0xcd, 0x66, 0xb3, 0x8f, + 0x9a, 0x80, 0x01, 0x70, 0x7c, 0x84, 0x85, 0xeb, 0xe3, 0x21, 0xa5, 0x04, + 0x12, 0x0b, 0x40, 0xc4, 0x94, 0xfb, 0xa2, 0x07, 0xab, 0x17, 0x69, 0x4b, + 0x58, 0x87, 0xd7, 0xc7, 0xf6, 0xea, 0xfa, 0x90, 0xae, 0x99, 0x34, 0x26, + 0xbd, 0xef, 0x9f, 0xd3, 0x47, 0x5e, 0xaa, 0xe0, 0x38, 0x3e, 0x08, 0x00, + 0x80, 0x00, 0x93, 0x05, 0x92, 0x0a, 0xa3, 0x2d, 0xc8, 0x80, 0x98, 0x5b, + 0x9a, 0x81, 0x41, 0xaf, 0x3d, 0xce, 0x6d, 0x55, 0xa1, 0x11, 0x20, 0x3b, + 0x29, 0x81, 0x04, 0x63, 0x57, 0xbc, 0x81, 0xca, 0x94, 0xd1, 0x92, 0x2d, + 0x10, 0x62, 0x8a, 0x00, 0x8e, 0x86, 0x7a, 0xde, 0x7d, 0xef, 0x7d, 0x36, + 0xbc, 0xb5, 0x31, 0x40, 0xab, 0xd8, 0xd4, 0x05, 0xcc, 0x26, 0x1d, 0x53, + 0x0b, 0x35, 0x65, 0x6f, 0x6b, 0x55, 0x5d, 0x90, 0xd6, 0x1a, 0x84, 0x80, + 0xf1, 0xa9, 0xda, 0xd2, 0x26, 0x20, 0x34, 0x87, 0xc2, 0x08, 0x23, 0x6a, + 0xf3, 0xa9, 0x5f, 0xf5, 0x71, 0x60, 0xdf, 0x01, 0xb6, 0xef, 0xda, 0xc3, + 0xb6, 0xdd, 0x55, 0xec, 0x3e, 0xe0, 0x64, 0xdf, 0x51, 0x0f, 0x52, 0x42, + 0xde, 0x18, 0x3d, 0xab, 0x4e, 0x1b, 0xc4, 0x5b, 0x3a, 0x14, 0xbb, 0x40, + 0x84, 0x31, 0x7f, 0x72, 0x06, 0xdb, 0xca, 0x9b, 0xa8, 0x68, 0x68, 0xa6, + 0xc5, 0xe5, 0x19, 0xd4, 0x3f, 0xa0, 0x4a, 0x89, 0xc3, 0xd9, 0xc6, 0x91, + 0x66, 0x27, 0xd2, 0xdf, 0x65, 0x2b, 0x10, 0x0c, 0x1c, 0x4c, 0x30, 0xca, + 0x88, 0x0a, 0x01, 0x2e, 0xbc, 0xee, 0x01, 0xf6, 0x1c, 0x76, 0x31, 0x48, + 0xd4, 0x16, 0x55, 0x0d, 0x3e, 0x5a, 0x9d, 0x4e, 0x92, 0x92, 0x93, 0xbf, + 0xfa, 0xcf, 0x10, 0x09, 0x20, 0x25, 0x34, 0x3a, 0xdd, 0x34, 0x3a, 0xbd, + 0xd4, 0xb7, 0xb8, 0x68, 0x6e, 0xf3, 0x32, 0xa5, 0x30, 0x85, 0xf1, 0x63, + 0xe2, 0x87, 0x21, 0x79, 0x60, 0xcc, 0xb2, 0x6b, 0x6b, 0xba, 0x2a, 0x25, + 0xff, 0xda, 0x7f, 0x98, 0x0c, 0xa3, 0x8e, 0xfa, 0xb6, 0x0e, 0x1a, 0xda, + 0x3a, 0x39, 0xe2, 0x6c, 0xa7, 0xba, 0xb5, 0x13, 0x87, 0xcb, 0x43, 0x75, + 0x87, 0x07, 0xb7, 0xff, 0x98, 0xef, 0x21, 0x19, 0x5e, 0x5c, 0x7a, 0x98, + 0x88, 0x18, 0x01, 0x54, 0x15, 0xd9, 0x6d, 0xa2, 0xdf, 0x75, 0xb0, 0xbf, + 0xbd, 0xdd, 0x92, 0xac, 0x30, 0x39, 0x3f, 0x91, 0xc9, 0x45, 0x99, 0x4c, + 0xb2, 0x8d, 0x67, 0xd6, 0x8c, 0x69, 0x03, 0x0f, 0x3e, 0xe0, 0x6c, 0x75, + 0x71, 0xb4, 0xaa, 0x8d, 0x06, 0xa7, 0x9b, 0x86, 0x66, 0x37, 0x0e, 0xa7, + 0x87, 0xfa, 0x66, 0x37, 0x8e, 0x16, 0x37, 0x8d, 0xad, 0x1e, 0xea, 0x9a, + 0x5c, 0x38, 0x9c, 0x1e, 0x1a, 0x9d, 0x1e, 0xfc, 0xc7, 0x98, 0x5e, 0x13, + 0xcd, 0x7a, 0x7e, 0x7f, 0xc7, 0x5c, 0x26, 0xe6, 0x0f, 0x7c, 0xef, 0xe1, + 0xa2, 0x2f, 0xb9, 0x7e, 0xfc, 0xee, 0xf6, 0xa1, 0x5d, 0x2c, 0x48, 0x18, + 0x61, 0x71, 0x42, 0x42, 0xc4, 0x08, 0xa0, 0xa0, 0x7c, 0x24, 0x51, 0x25, + 0x20, 0xf4, 0x3a, 0xc1, 0x59, 0xf3, 0xb2, 0x98, 0x37, 0x6d, 0x02, 0x93, + 0x4b, 0x8a, 0xb0, 0x16, 0x17, 0x87, 0x74, 0x8f, 0x27, 0xfe, 0xb8, 0x99, + 0x27, 0xff, 0xf8, 0x3e, 0x32, 0x14, 0x7f, 0xef, 0x00, 0x68, 0xeb, 0xf4, + 0x71, 0xd5, 0x83, 0x5b, 0x79, 0xf1, 0xae, 0xb9, 0x4c, 0xc8, 0x1a, 0xf9, + 0xe7, 0x9d, 0x9d, 0x11, 0x87, 0x4e, 0x11, 0x5f, 0x21, 0x1e, 0x40, 0x92, + 0x41, 0x21, 0x27, 0xc1, 0x44, 0x4e, 0xa2, 0x19, 0x8b, 0x39, 0x0e, 0x4b, + 0x42, 0x1c, 0xe3, 0x52, 0x93, 0xf8, 0xf0, 0x48, 0x23, 0x7f, 0xab, 0x38, + 0x0c, 0x30, 0xb4, 0x94, 0xa4, 0x11, 0x42, 0xc4, 0x08, 0xb0, 0xb7, 0x72, + 0xef, 0x5b, 0x36, 0xab, 0xed, 0x07, 0x42, 0xf0, 0x0b, 0x9f, 0x5f, 0xb2, + 0xb5, 0xd2, 0xc5, 0xf7, 0xaf, 0x5b, 0x40, 0x56, 0x46, 0x52, 0x48, 0xd7, + 0xbf, 0xbe, 0x71, 0x17, 0x4f, 0x3c, 0xbf, 0x79, 0xb0, 0x7f, 0x7b, 0x81, + 0x7a, 0x01, 0x47, 0x25, 0xd4, 0x48, 0xa8, 0x17, 0xc8, 0xa3, 0x52, 0x8a, + 0x5a, 0x81, 0xa8, 0x97, 0x8a, 0xac, 0x55, 0x60, 0x91, 0x94, 0xdc, 0xe5, + 0x68, 0x71, 0x73, 0xc5, 0x7d, 0x9f, 0xf0, 0xc2, 0xdd, 0xf3, 0x19, 0x93, + 0x6a, 0x1a, 0xec, 0x7e, 0xa8, 0xaa, 0xe4, 0xd3, 0xca, 0x66, 0xfe, 0xfe, + 0x51, 0x0d, 0x75, 0x4d, 0x6e, 0x1e, 0xbb, 0x69, 0x46, 0x50, 0x19, 0x75, + 0x8a, 0x20, 0x2b, 0xcd, 0x44, 0xb5, 0xc3, 0xc5, 0xb4, 0xac, 0x34, 0xae, + 0x3d, 0xc9, 0x4e, 0x76, 0x4a, 0x32, 0x63, 0xd2, 0x92, 0xd0, 0x89, 0x81, + 0xf5, 0xed, 0x3d, 0x2d, 0x3d, 0xe9, 0x6a, 0xa3, 0x93, 0xb0, 0x10, 0x04, + 0x11, 0xd5, 0x01, 0xca, 0x2b, 0xcb, 0x1f, 0x29, 0xb1, 0xd9, 0x52, 0xa4, + 0xe4, 0xee, 0xaa, 0xa3, 0xcd, 0x5c, 0x71, 0xfb, 0x1f, 0x78, 0xfe, 0xa1, + 0xcb, 0x48, 0x4b, 0x0e, 0xbc, 0x2e, 0x6f, 0xff, 0xe2, 0x30, 0x77, 0x3d, + 0xfa, 0x46, 0xf7, 0x9f, 0xf5, 0x48, 0xf1, 0x7d, 0x81, 0xbf, 0xca, 0x07, + 0xf5, 0x8a, 0xa2, 0xd4, 0x95, 0x97, 0x97, 0x87, 0x62, 0x2f, 0x7e, 0xa7, + 0xc4, 0x66, 0x4b, 0x92, 0x92, 0xef, 0x57, 0xd5, 0x77, 0x72, 0xe5, 0x7d, + 0x9f, 0xf0, 0xfc, 0x9d, 0x73, 0x49, 0x4e, 0x30, 0xf4, 0x6b, 0x54, 0x59, + 0xd5, 0xca, 0x86, 0x8f, 0x6b, 0xf9, 0xeb, 0x07, 0xd5, 0x1c, 0xae, 0xd3, + 0x22, 0x8f, 0x84, 0x80, 0xea, 0x06, 0x17, 0x39, 0x96, 0xb8, 0x81, 0xee, + 0xdb, 0x0f, 0x39, 0x96, 0x78, 0xaa, 0x1d, 0x2e, 0x8c, 0x06, 0x03, 0x33, + 0x0b, 0x06, 0xaf, 0x48, 0xd2, 0x0d, 0x8f, 0xaf, 0x67, 0xdc, 0x43, 0xf3, + 0x43, 0x8f, 0x30, 0x22, 0xae, 0x04, 0xee, 0x2d, 0x2f, 0xff, 0x6f, 0x7b, + 0x71, 0x71, 0x2a, 0x88, 0x9b, 0xf6, 0x1d, 0x6e, 0xe0, 0xdb, 0x77, 0xfc, + 0x91, 0xdf, 0xdd, 0xb7, 0xfe, 0x98, 0x60, 0x90, 0x5e, 0x1c, 0x39, 0xda, + 0xcc, 0x8d, 0x3f, 0x7d, 0xb9, 0x3b, 0xce, 0xdf, 0x23, 0x05, 0xe7, 0x95, + 0x57, 0x94, 0x7d, 0x10, 0x66, 0xdf, 0x3f, 0xb0, 0xdb, 0x6c, 0x16, 0x24, + 0xeb, 0xcb, 0xab, 0x5a, 0xb9, 0xee, 0xe1, 0x6d, 0x3c, 0x7b, 0xeb, 0x6c, + 0xca, 0xab, 0x5a, 0xd9, 0xf0, 0x51, 0x2d, 0x1b, 0x3e, 0xae, 0xa5, 0xc6, + 0xd1, 0xd9, 0xef, 0x1a, 0x9d, 0x4e, 0x61, 0x6e, 0x69, 0x3a, 0x6d, 0x2e, + 0x2f, 0x5d, 0x96, 0xec, 0x80, 0x50, 0xba, 0x5e, 0x74, 0x97, 0x2f, 0xb4, + 0x17, 0xba, 0xc5, 0xdd, 0x5d, 0x7f, 0x4a, 0x0e, 0x62, 0x0f, 0x1f, 0x5d, + 0x44, 0x65, 0x17, 0x50, 0x56, 0x51, 0xf1, 0x7d, 0x7b, 0xb1, 0x3d, 0x19, + 0xe4, 0xe5, 0x5f, 0x54, 0xd6, 0x70, 0xd5, 0x9d, 0x2f, 0x72, 0xea, 0xbc, + 0x81, 0x6b, 0x2b, 0xfc, 0xdf, 0x7b, 0xbb, 0x70, 0x34, 0xb7, 0x77, 0xfd, + 0x25, 0xaf, 0x2d, 0x2f, 0xaf, 0x08, 0x6b, 0xf0, 0xbb, 0x6f, 0x90, 0x9d, + 0x93, 0x73, 0x45, 0xf5, 0x91, 0xea, 0x34, 0x01, 0x67, 0x6d, 0x2b, 0x6f, + 0x62, 0xde, 0x75, 0x1b, 0x71, 0x7b, 0xfa, 0x0f, 0x96, 0x4e, 0xa7, 0x30, + 0x7b, 0xf2, 0x04, 0x4e, 0x9f, 0x3f, 0x81, 0x15, 0x53, 0x0d, 0xa4, 0x27, + 0x07, 0x0f, 0xf7, 0xea, 0xe9, 0xa0, 0x6b, 0xf9, 0xf7, 0xa9, 0xa1, 0xed, + 0x56, 0xea, 0xdb, 0x35, 0xc2, 0x49, 0x44, 0xe0, 0x64, 0x86, 0x51, 0x42, + 0xb4, 0xec, 0x00, 0xb2, 0xac, 0xa2, 0xec, 0x2a, 0x7b, 0x71, 0x71, 0x12, + 0x88, 0x0b, 0x76, 0xec, 0x39, 0xcc, 0x8e, 0x3d, 0x81, 0xd3, 0xe6, 0xa4, + 0xe4, 0xe1, 0xf2, 0xca, 0x8a, 0xdf, 0x0e, 0xb7, 0xe3, 0x4d, 0x9b, 0x36, + 0xf9, 0x4a, 0x4a, 0x4a, 0x6e, 0x94, 0x7e, 0x75, 0x39, 0x10, 0xd7, 0x3d, + 0xf8, 0x8a, 0x22, 0x98, 0x5e, 0x92, 0xcb, 0xaa, 0x45, 0x93, 0x38, 0x7d, + 0xf1, 0x44, 0x32, 0xe3, 0x9a, 0xa1, 0x73, 0xe8, 0x63, 0xd2, 0x9d, 0x85, + 0xac, 0x57, 0x42, 0xb3, 0xb1, 0xd5, 0xb5, 0xf6, 0x04, 0xb8, 0x46, 0xa5, + 0xfa, 0x58, 0x34, 0x0d, 0xeb, 0x7e, 0xbd, 0xd1, 0xb8, 0xce, 0xe7, 0xf1, + 0x09, 0x90, 0x6b, 0x18, 0xdc, 0x2a, 0xa9, 0x82, 0x7c, 0xb1, 0xbc, 0xb2, + 0xe2, 0xd6, 0x91, 0xe8, 0xb4, 0xd4, 0x6a, 0x9d, 0xa9, 0xfa, 0xd5, 0xd7, + 0xe9, 0x9a, 0xcf, 0xb3, 0x2c, 0xc9, 0x5c, 0x7e, 0xde, 0x3c, 0xce, 0x5c, + 0x32, 0x99, 0xcc, 0xf4, 0x44, 0x40, 0x42, 0xc7, 0x61, 0x2d, 0x8b, 0x38, + 0x0c, 0xa8, 0x5d, 0x96, 0x4a, 0xb3, 0x21, 0xf8, 0xa3, 0xf5, 0xa9, 0x92, + 0xda, 0x6e, 0x02, 0x48, 0x42, 0x0b, 0x4b, 0x1e, 0x61, 0x44, 0xd5, 0xb3, + 0xd2, 0x55, 0x80, 0xf1, 0x82, 0x48, 0xf5, 0x67, 0xb3, 0xd9, 0x2e, 0x52, + 0xa5, 0xf8, 0x0d, 0xc8, 0x78, 0x80, 0xb3, 0x96, 0x4d, 0xe1, 0x9e, 0x9b, + 0xce, 0x22, 0xce, 0xd4, 0xad, 0x08, 0x4a, 0x2d, 0x0c, 0xcd, 0xd3, 0x18, + 0xe0, 0x2e, 0x81, 0xd1, 0xdc, 0xaa, 0x45, 0x16, 0x27, 0x9a, 0x0c, 0x41, + 0x5a, 0x42, 0x6d, 0x6b, 0x3b, 0xfe, 0xae, 0x35, 0x43, 0x20, 0xa2, 0x12, + 0x17, 0x18, 0x9b, 0xae, 0xb5, 0x91, 0x87, 0xce, 0x6e, 0xb3, 0xdd, 0x8b, + 0xe4, 0x87, 0x20, 0x85, 0x4e, 0x51, 0xb8, 0xe5, 0xca, 0xe5, 0x5c, 0xb6, + 0x66, 0x5e, 0x6f, 0x0b, 0xa9, 0x6a, 0xa1, 0xe7, 0xde, 0xe1, 0xe9, 0x62, + 0xb5, 0x8d, 0x9a, 0x32, 0x9f, 0x95, 0x18, 0xdc, 0xe2, 0x58, 0xd5, 0xd2, + 0xde, 0xf3, 0xbb, 0x82, 0x7f, 0xdf, 0xb0, 0x3a, 0x0e, 0x13, 0x27, 0x3c, + 0x01, 0xf2, 0xf3, 0xf3, 0x53, 0x4d, 0x7a, 0xe3, 0x0b, 0x48, 0x4e, 0x07, + 0x2d, 0x19, 0xe4, 0x91, 0xdb, 0xce, 0xe7, 0xe4, 0x99, 0x7d, 0xbc, 0x8a, + 0xaa, 0x0f, 0x5a, 0x2b, 0xb4, 0x54, 0xb3, 0x61, 0xa0, 0xbe, 0xd9, 0x4d, + 0x67, 0x57, 0xbe, 0xe0, 0x8b, 0x3b, 0xca, 0x79, 0x71, 0x47, 0x79, 0x90, + 0x2b, 0x7a, 0xa1, 0xf8, 0x4c, 0x07, 0x87, 0xd5, 0x79, 0x98, 0x38, 0xa1, + 0x09, 0x50, 0x5a, 0x58, 0x5a, 0xac, 0xea, 0xfc, 0x7f, 0xa5, 0x2b, 0xf3, + 0xa8, 0x20, 0x37, 0x83, 0x27, 0xef, 0xba, 0x88, 0xc2, 0xf1, 0x7d, 0xea, + 0x03, 0xa8, 0x5e, 0x68, 0x2d, 0x1f, 0x34, 0xdb, 0xc8, 0xaf, 0x4a, 0x6a, + 0x1b, 0x5d, 0x8c, 0xb3, 0x04, 0x37, 0xd4, 0x95, 0x1d, 0x6a, 0x0d, 0x57, + 0x54, 0xf7, 0xee, 0x83, 0xbb, 0xc3, 0x53, 0x3a, 0x86, 0x89, 0x13, 0x96, + 0x00, 0x36, 0x9b, 0xed, 0x74, 0x55, 0xfa, 0x5f, 0xa0, 0xab, 0x96, 0xc0, + 0x92, 0xd9, 0xc5, 0x3c, 0x74, 0xeb, 0x9a, 0xfe, 0xf6, 0x06, 0xd5, 0x0d, + 0xce, 0xb2, 0x41, 0x13, 0x4f, 0x0e, 0xd6, 0xb6, 0x73, 0xeb, 0x53, 0xbb, + 0x68, 0x6e, 0xf7, 0xf0, 0xc6, 0xcf, 0x17, 0x05, 0xad, 0x1c, 0x56, 0x51, + 0xd5, 0x4b, 0x80, 0x4b, 0x4a, 0x72, 0x31, 0x1b, 0x02, 0xa7, 0x5d, 0xbc, + 0x7f, 0xb8, 0x81, 0x0a, 0x6d, 0x8b, 0x7b, 0x84, 0x28, 0xf9, 0xb9, 0x4f, + 0x44, 0x02, 0x08, 0xbb, 0xd5, 0xfe, 0x43, 0xa4, 0xfc, 0x19, 0xa0, 0x08, + 0x21, 0xb8, 0x72, 0xed, 0xc9, 0x7c, 0xff, 0x5b, 0xa7, 0xf4, 0xcf, 0x33, + 0xf4, 0x77, 0x82, 0xb3, 0x1c, 0xd4, 0x81, 0x0b, 0x81, 0xbf, 0xfc, 0xde, + 0x61, 0x7e, 0xfe, 0xfc, 0x9e, 0x9e, 0x29, 0xfd, 0x4f, 0xef, 0x1e, 0x62, + 0xfd, 0x69, 0xf9, 0x01, 0x3b, 0xde, 0x7b, 0x48, 0x4b, 0x4c, 0x4d, 0x33, + 0x9b, 0xb8, 0x69, 0xf9, 0xfc, 0xa0, 0x82, 0xee, 0x7c, 0x7d, 0x33, 0x34, + 0xb7, 0x23, 0x20, 0x78, 0x7a, 0xf2, 0x28, 0xe1, 0x84, 0x22, 0xc0, 0xac, + 0x9c, 0x9c, 0xf8, 0xb6, 0xf8, 0xc4, 0xdf, 0x20, 0xe4, 0x45, 0xa0, 0xe5, + 0x1b, 0xde, 0xf7, 0x83, 0x73, 0x59, 0xb9, 0xb0, 0xb4, 0x7f, 0x43, 0x5f, + 0xbb, 0x36, 0xed, 0x0f, 0x50, 0x28, 0xca, 0xe3, 0x55, 0xf9, 0xef, 0xdf, + 0xee, 0xe6, 0xd5, 0xf7, 0xb5, 0x31, 0x11, 0x02, 0xd6, 0x2e, 0x1d, 0xcf, + 0xf9, 0x4b, 0x83, 0x9b, 0x75, 0xbb, 0x97, 0x80, 0x62, 0x4b, 0x6a, 0x90, + 0x96, 0x1a, 0xea, 0xda, 0xb4, 0x65, 0x47, 0xd5, 0x66, 0x80, 0xa8, 0xe0, + 0x84, 0x21, 0x40, 0x69, 0x41, 0x69, 0x5e, 0xbb, 0xde, 0xff, 0x1a, 0x30, + 0x03, 0x20, 0x37, 0x2b, 0x95, 0x27, 0xef, 0xbe, 0x08, 0x7b, 0xc1, 0x31, + 0x99, 0x42, 0x9e, 0x16, 0x68, 0xab, 0x1c, 0x30, 0xae, 0xa0, 0xae, 0xd9, + 0xcd, 0x8d, 0x8f, 0x6c, 0x67, 0xe7, 0x3e, 0x2d, 0x47, 0x23, 0x2b, 0x45, + 0xe1, 0xde, 0x2b, 0x8a, 0x59, 0x38, 0x2b, 0x78, 0x18, 0x9a, 0x5f, 0x95, + 0xec, 0xef, 0xaa, 0x4d, 0x60, 0xcd, 0x08, 0x2d, 0x37, 0xb1, 0xb9, 0x53, + 0x9b, 0x7d, 0x14, 0x49, 0x54, 0xac, 0x80, 0x70, 0x82, 0x10, 0xc0, 0x6e, + 0xb7, 0x2f, 0xf0, 0xab, 0xfe, 0x57, 0x04, 0x64, 0x01, 0x9c, 0x34, 0x79, + 0x02, 0x8f, 0xde, 0xb1, 0x96, 0x8c, 0xd4, 0x63, 0x5c, 0xbe, 0x6e, 0x47, + 0x57, 0x1a, 0xf8, 0x57, 0x97, 0xdb, 0x2f, 0x0e, 0xb6, 0x70, 0xed, 0x43, + 0xdb, 0xa8, 0x6b, 0xd6, 0xf4, 0x81, 0x93, 0x0a, 0x75, 0x3c, 0xfa, 0xed, + 0x4c, 0x32, 0xf2, 0x42, 0x8b, 0x41, 0x3c, 0x58, 0xdb, 0x8e, 0xc7, 0xab, + 0x91, 0x2a, 0x54, 0x02, 0x74, 0xd7, 0x24, 0x56, 0xc1, 0x19, 0xd2, 0x05, + 0xa3, 0x80, 0xe3, 0x9e, 0x00, 0x25, 0x36, 0xdb, 0xd5, 0x52, 0x95, 0x8f, + 0x8b, 0xae, 0x13, 0x41, 0x2e, 0x3c, 0x7d, 0x16, 0x77, 0x5d, 0x7f, 0x3a, + 0x7a, 0xdd, 0x31, 0x0a, 0x9b, 0xab, 0x6e, 0xd0, 0xbc, 0xbf, 0xdd, 0x07, + 0x9c, 0x5c, 0x71, 0xdf, 0x27, 0x3d, 0xb5, 0x05, 0x2e, 0x9c, 0x67, 0xe4, + 0xce, 0xf3, 0xe2, 0x30, 0x64, 0x86, 0x1e, 0x80, 0x5a, 0x5d, 0xdf, 0xeb, + 0xcc, 0xcb, 0x4d, 0x0d, 0x1e, 0xc2, 0xee, 0xf2, 0xf9, 0x7b, 0x8c, 0x40, + 0x7c, 0x4d, 0x80, 0xa1, 0x63, 0xe9, 0xd2, 0xa5, 0xfa, 0x9a, 0x23, 0x35, + 0x0f, 0x4b, 0x29, 0xbf, 0x0b, 0x60, 0xd0, 0xeb, 0xb8, 0xeb, 0x86, 0x33, + 0x58, 0x7b, 0xda, 0x00, 0x7e, 0xfb, 0xce, 0x9a, 0x41, 0xcb, 0xc0, 0x6c, + 0x2f, 0x6f, 0xe2, 0xea, 0x07, 0xb7, 0xd2, 0xd6, 0xe9, 0x43, 0x11, 0x70, + 0xc7, 0x9a, 0x38, 0xd6, 0x2d, 0x30, 0x82, 0x21, 0x71, 0x48, 0x69, 0xe6, + 0x47, 0x9b, 0x7a, 0x09, 0x30, 0x26, 0x04, 0x23, 0x50, 0x9b, 0xbb, 0x57, + 0xf9, 0x14, 0x88, 0xaf, 0x09, 0x30, 0x14, 0x4c, 0x2e, 0x28, 0xc8, 0xaa, + 0x39, 0x52, 0xfd, 0x17, 0xb4, 0xaa, 0x61, 0x58, 0xd2, 0x13, 0x78, 0xfc, + 0x8e, 0x8b, 0x98, 0x31, 0x31, 0xf7, 0x98, 0x96, 0x12, 0xda, 0xab, 0xb4, + 0x34, 0xf3, 0x01, 0xb0, 0xb5, 0xac, 0x91, 0x6b, 0x1e, 0xdc, 0x46, 0xbb, + 0xcb, 0x87, 0x4e, 0x11, 0xfc, 0x74, 0xad, 0x89, 0xf3, 0xe6, 0x74, 0x79, + 0xfe, 0xe2, 0x87, 0x16, 0xa3, 0xd9, 0x4d, 0x00, 0x21, 0x20, 0x23, 0x3e, + 0xb8, 0xdb, 0xb8, 0xb5, 0xff, 0x89, 0x24, 0x5f, 0x13, 0x20, 0x54, 0x94, + 0x5a, 0xad, 0x33, 0xbd, 0x42, 0x79, 0x1d, 0x18, 0x0f, 0x30, 0xb9, 0x38, + 0x9b, 0x27, 0xee, 0xba, 0x88, 0xb1, 0x96, 0x63, 0xe3, 0xfc, 0x24, 0xb4, + 0x1d, 0xd4, 0xca, 0xbf, 0x0c, 0x80, 0x9d, 0xfb, 0x9a, 0xb9, 0xf2, 0x81, + 0xad, 0xb8, 0xdc, 0x7e, 0x74, 0x0a, 0xdc, 0xff, 0x8d, 0x38, 0xce, 0x9a, + 0xd9, 0x65, 0xbf, 0xd7, 0x99, 0x20, 0x2e, 0x63, 0x48, 0x72, 0xd5, 0x35, + 0x69, 0xba, 0x83, 0x94, 0xb0, 0xe8, 0xa9, 0x57, 0x86, 0x74, 0xad, 0x54, + 0x64, 0xd4, 0x8a, 0x47, 0x1e, 0x57, 0x04, 0x38, 0xd6, 0x99, 0x73, 0xe6, + 0x92, 0xc9, 0xdc, 0xfb, 0xbd, 0xb3, 0x89, 0x8b, 0x3b, 0xc6, 0xf1, 0x12, + 0xc4, 0xae, 0x7f, 0xb8, 0xae, 0x83, 0xef, 0x3c, 0xbc, 0x1d, 0x97, 0xdb, + 0x8f, 0x5e, 0x81, 0x87, 0x2e, 0x8d, 0x67, 0xd5, 0xb4, 0x3e, 0x8f, 0xc2, + 0x3c, 0x96, 0xa1, 0x96, 0x4e, 0x70, 0x76, 0x84, 0x7f, 0xb0, 0x98, 0xa2, + 0x2a, 0x51, 0x8b, 0x75, 0x3f, 0x6e, 0x08, 0x60, 0x2f, 0xb6, 0xdf, 0x84, + 0x94, 0x8f, 0x80, 0x14, 0x3a, 0x9d, 0xc2, 0xf7, 0xbe, 0xb9, 0x8c, 0xab, + 0x2e, 0x1c, 0xa0, 0x2c, 0x8b, 0xf4, 0x6b, 0x76, 0x7d, 0xef, 0xc0, 0x66, + 0xd9, 0x96, 0x76, 0x2f, 0x57, 0x3f, 0xb8, 0x15, 0x87, 0xd3, 0x8d, 0x10, + 0x70, 0xcf, 0x45, 0xe6, 0xfe, 0x83, 0x0f, 0x10, 0x97, 0x39, 0x64, 0xf9, + 0x3a, 0xdd, 0xda, 0x18, 0x66, 0x9a, 0x8d, 0x9c, 0x63, 0xcd, 0x0e, 0xda, + 0xbe, 0xa1, 0xd3, 0xc3, 0x5f, 0x2b, 0xa3, 0xb6, 0xfb, 0xeb, 0xc1, 0xf1, + 0x40, 0x00, 0xc5, 0x56, 0x6c, 0xfb, 0x25, 0xc8, 0x1b, 0x01, 0x92, 0x13, + 0xe3, 0xf8, 0xc5, 0x6d, 0xe7, 0xb3, 0x70, 0xd6, 0x00, 0x89, 0x34, 0x52, + 0x0d, 0x38, 0xf8, 0x52, 0xc2, 0xad, 0x4f, 0xed, 0xea, 0xa9, 0x25, 0xf8, + 0xdd, 0xd3, 0x4c, 0xac, 0x3e, 0xe9, 0x98, 0xd9, 0xc3, 0x98, 0xac, 0x2d, + 0x01, 0x43, 0x84, 0xab, 0xcb, 0x62, 0x98, 0x9b, 0x9e, 0xc2, 0xd5, 0x4b, + 0xe6, 0x04, 0x6d, 0xbf, 0xa7, 0xae, 0xe9, 0x6b, 0x02, 0x84, 0x02, 0x7b, + 0x71, 0xf1, 0x93, 0xc0, 0xb5, 0x00, 0x63, 0x2d, 0xc9, 0x3c, 0x7b, 0xcf, + 0x25, 0x58, 0xf3, 0x06, 0xca, 0xa1, 0x90, 0x01, 0x07, 0x1f, 0xe0, 0xb9, + 0x0d, 0x07, 0xd8, 0xb4, 0x43, 0x4b, 0xdb, 0x3a, 0x75, 0xb2, 0x9e, 0x6b, + 0x97, 0x0f, 0x30, 0xd0, 0x61, 0xbc, 0xfd, 0x00, 0x9d, 0x5d, 0x91, 0x45, + 0xe6, 0x10, 0x6a, 0x06, 0x02, 0x3d, 0xc7, 0xd3, 0x44, 0x1b, 0x31, 0x4d, + 0x80, 0x12, 0x9b, 0xed, 0x76, 0x29, 0xb5, 0xc1, 0x2f, 0x1c, 0x6f, 0xe1, + 0xd7, 0xf7, 0xac, 0x23, 0x7b, 0xcc, 0x20, 0x5b, 0xb3, 0xf6, 0x43, 0x5a, + 0x01, 0xc9, 0x41, 0xb0, 0xfb, 0x80, 0x93, 0x5f, 0xfc, 0x49, 0x73, 0xcf, + 0x16, 0x8e, 0x51, 0x78, 0xe0, 0x12, 0xf3, 0x57, 0x6b, 0x49, 0x89, 0xae, + 0x04, 0xd4, 0x30, 0xe0, 0xf7, 0x6b, 0x03, 0xaa, 0x84, 0x18, 0x0a, 0xa6, + 0xef, 0xe3, 0x97, 0x90, 0x52, 0x0e, 0x4d, 0xe1, 0x18, 0x41, 0xc4, 0x2c, + 0x01, 0x4a, 0x8a, 0x8b, 0xcf, 0x97, 0x92, 0x7b, 0x01, 0xb2, 0x32, 0x92, + 0xf8, 0xf5, 0xbd, 0xeb, 0xc8, 0xce, 0x1c, 0x64, 0xf0, 0x3d, 0x0e, 0xcd, + 0xd0, 0x33, 0x08, 0xfc, 0xaa, 0xe4, 0xce, 0x5f, 0x7f, 0x86, 0xd7, 0xa7, + 0xa2, 0x53, 0xe0, 0x81, 0x75, 0x66, 0x12, 0x4c, 0x03, 0x3c, 0x73, 0x43, + 0x12, 0x28, 0xe1, 0x3d, 0x92, 0x6e, 0x4f, 0xa1, 0xcf, 0x1f, 0x5a, 0x34, + 0x70, 0xbc, 0xa1, 0xcf, 0xd2, 0x23, 0x88, 0x5a, 0xf1, 0x83, 0x98, 0xca, + 0x0e, 0xee, 0x86, 0xd5, 0x6a, 0xcd, 0x95, 0x42, 0x3c, 0x03, 0x88, 0xc4, + 0x78, 0x13, 0x4f, 0xff, 0xf4, 0x92, 0xc1, 0x07, 0x5f, 0xf5, 0x40, 0x5b, + 0xe0, 0xca, 0x5e, 0xcf, 0xff, 0xe3, 0x4b, 0xbe, 0x38, 0xa8, 0xcd, 0x0e, + 0xdf, 0x59, 0x61, 0x62, 0x72, 0xee, 0x20, 0xd3, 0x74, 0x38, 0xf5, 0x05, + 0xbb, 0x60, 0xea, 0x22, 0xc0, 0x57, 0x72, 0xfe, 0x06, 0x81, 0xd9, 0xd8, + 0x87, 0x68, 0x42, 0x0d, 0x2d, 0x3b, 0x66, 0x14, 0x10, 0x8b, 0x04, 0x10, + 0x3a, 0x45, 0x79, 0x06, 0x49, 0x1a, 0xc0, 0x8f, 0x6f, 0x3c, 0xf3, 0xab, + 0x0e, 0x9d, 0xbe, 0x68, 0x3f, 0x14, 0xb0, 0x96, 0x60, 0x43, 0xb3, 0x87, + 0xc7, 0x5f, 0xd1, 0x8e, 0xec, 0xb1, 0x66, 0xe9, 0xb8, 0x66, 0xa0, 0x75, + 0xbf, 0x1b, 0xc6, 0xd0, 0xbc, 0x78, 0x03, 0xc1, 0xd4, 0xe5, 0xfb, 0xf7, + 0xfa, 0x42, 0x23, 0x40, 0x7c, 0xbf, 0xa0, 0x51, 0x65, 0x74, 0x92, 0x15, + 0x43, 0x40, 0xcc, 0x11, 0xc0, 0x6e, 0xb5, 0xaf, 0x43, 0xb2, 0x0a, 0xe0, + 0xdc, 0x53, 0xa7, 0x72, 0xe6, 0xd2, 0xc9, 0x83, 0x37, 0xf6, 0x34, 0x83, + 0xa7, 0x29, 0xe0, 0xfd, 0x9e, 0xfd, 0xdb, 0x3e, 0xda, 0x3a, 0x35, 0xb7, + 0xef, 0xad, 0xe7, 0x98, 0xd0, 0x0f, 0xf6, 0x8d, 0x85, 0xa2, 0x99, 0x7f, + 0xc3, 0x44, 0x9c, 0x49, 0xbb, 0x71, 0x87, 0x2f, 0xb4, 0xd2, 0xbf, 0x71, + 0x7a, 0x5d, 0x5f, 0x1d, 0x24, 0x6a, 0x04, 0x88, 0x29, 0x1d, 0xc0, 0x6a, + 0xb5, 0x9a, 0x10, 0xf2, 0x27, 0x00, 0x69, 0xc9, 0xf1, 0xdc, 0x71, 0xed, + 0xaa, 0x00, 0xad, 0xa5, 0x56, 0x38, 0x3a, 0x00, 0x1c, 0x2d, 0x6e, 0x5e, + 0x7a, 0x57, 0xcb, 0x37, 0x58, 0x58, 0xa2, 0x63, 0x51, 0x49, 0x80, 0xaf, + 0x6b, 0x4c, 0xd6, 0x48, 0x10, 0x26, 0x32, 0x92, 0xb5, 0x99, 0x65, 0xbf, + 0xc3, 0xc9, 0xdc, 0x27, 0xfe, 0x3c, 0xa4, 0x6b, 0xa5, 0x94, 0xe1, 0xaf, + 0x3d, 0xc3, 0x44, 0x4c, 0xcd, 0x00, 0x3a, 0xa1, 0xbb, 0x16, 0x28, 0x00, + 0xb8, 0x7e, 0xdd, 0x62, 0x92, 0x13, 0x03, 0xd8, 0xd4, 0x3d, 0xcd, 0x83, + 0xc6, 0xf1, 0x75, 0xe3, 0xb9, 0x0d, 0x07, 0x7b, 0xf6, 0xe7, 0xd7, 0xaf, + 0x08, 0x62, 0x9f, 0xd7, 0x0f, 0x6f, 0x19, 0x1e, 0x93, 0x36, 0x74, 0xdb, + 0x41, 0x37, 0x84, 0x90, 0x63, 0x87, 0xd5, 0xf9, 0x30, 0x10, 0x4b, 0x33, + 0x80, 0x02, 0x9a, 0x67, 0x6f, 0xfc, 0xd8, 0x34, 0x2e, 0x3e, 0xf3, 0xa4, + 0xc0, 0xad, 0x5d, 0x81, 0x63, 0x28, 0xbd, 0x3e, 0x95, 0x57, 0x36, 0x6b, + 0x1e, 0xc0, 0x59, 0x05, 0x3a, 0x66, 0xe4, 0x07, 0xd9, 0x9f, 0x0f, 0x63, + 0xfa, 0x07, 0xc8, 0xec, 0x93, 0x69, 0x7c, 0x91, 0x7d, 0x1c, 0x89, 0xc6, + 0xe0, 0x8f, 0xf6, 0xef, 0x07, 0x8e, 0x52, 0xdd, 0xe6, 0x02, 0xa2, 0x53, + 0x1d, 0x04, 0x62, 0x88, 0x00, 0x36, 0x9b, 0x6d, 0x15, 0x92, 0x42, 0x80, + 0x75, 0xe7, 0xcc, 0xfe, 0xaa, 0x3f, 0xbf, 0x2f, 0xfc, 0x2e, 0xf0, 0x06, + 0xf6, 0x9f, 0xbc, 0xf7, 0x69, 0x1d, 0x8d, 0x4e, 0xcd, 0x3e, 0x7f, 0xd9, + 0x92, 0x10, 0x72, 0xfb, 0xf4, 0xc3, 0xab, 0x17, 0x90, 0x99, 0xd2, 0x3b, + 0xc3, 0xac, 0x98, 0x62, 0x67, 0xca, 0xd8, 0xe0, 0xce, 0xa4, 0x23, 0x9e, + 0x2d, 0x54, 0x97, 0x1d, 0x42, 0x22, 0x8e, 0x75, 0x63, 0x46, 0x0c, 0x31, + 0xb3, 0x04, 0x08, 0x95, 0xab, 0x00, 0xe2, 0xe2, 0x0c, 0x9c, 0xb7, 0x3c, + 0x48, 0xc5, 0x34, 0x77, 0x03, 0xc1, 0x82, 0x68, 0x5f, 0x7d, 0x5f, 0xd3, + 0x0f, 0x92, 0xe3, 0x61, 0xe9, 0xc4, 0x60, 0x59, 0x3a, 0x02, 0x94, 0xd0, + 0x13, 0x40, 0x07, 0xc2, 0x84, 0xac, 0xde, 0x18, 0x80, 0x2f, 0x9b, 0x42, + 0xf3, 0xee, 0x66, 0xc4, 0x9b, 0xbb, 0x7b, 0x8f, 0xda, 0x0c, 0x10, 0x13, + 0x04, 0xc8, 0xcf, 0xcf, 0x8f, 0x43, 0xb0, 0x02, 0xe0, 0xd4, 0xb9, 0x76, + 0x92, 0x93, 0x82, 0xac, 0xd7, 0x41, 0x0a, 0x42, 0xbb, 0xbd, 0x2a, 0x1f, + 0x7d, 0xe1, 0x00, 0x60, 0xf9, 0x64, 0x23, 0x41, 0xa2, 0xb3, 0x41, 0x1f, + 0x17, 0x5e, 0x89, 0xf9, 0x3e, 0x18, 0x3f, 0xc6, 0x8c, 0xd9, 0xa4, 0x75, + 0xb4, 0xcf, 0x11, 0x1a, 0x01, 0xc6, 0x26, 0xf5, 0xe4, 0x1a, 0x98, 0x4b, + 0x4a, 0x4a, 0x86, 0xe6, 0x7f, 0x1e, 0x21, 0xc4, 0x04, 0x01, 0xe2, 0xf4, + 0xfa, 0xc5, 0xa0, 0xd5, 0xc8, 0x59, 0x36, 0x37, 0x48, 0xb9, 0x18, 0xd5, + 0x1b, 0xb4, 0xa6, 0xff, 0xf6, 0xf2, 0xa6, 0x1e, 0xe5, 0x6f, 0xe5, 0x94, + 0x10, 0x6c, 0xf3, 0xba, 0xe0, 0x01, 0x1c, 0xc1, 0xa0, 0x28, 0x82, 0x82, + 0x6c, 0x4d, 0x8f, 0xd8, 0xdf, 0x18, 0x5a, 0x7a, 0x59, 0x5e, 0x6a, 0xaf, + 0xe2, 0xe9, 0xf7, 0xfb, 0xad, 0xc3, 0x16, 0x22, 0x0c, 0xc4, 0x04, 0x01, + 0xa4, 0xd0, 0xad, 0x00, 0xed, 0x21, 0x2e, 0x18, 0xc8, 0xcb, 0xd7, 0x17, + 0x5e, 0x27, 0xc1, 0xa6, 0xff, 0x0f, 0x3f, 0xd7, 0xde, 0x7e, 0x21, 0x60, + 0x66, 0x41, 0x08, 0x6a, 0x8e, 0x12, 0xbe, 0x06, 0xdf, 0x17, 0xb6, 0x5c, + 0x8d, 0x00, 0xa1, 0xce, 0x00, 0x79, 0xa9, 0xbd, 0xdb, 0x7f, 0x05, 0x26, + 0x8e, 0x88, 0x10, 0x43, 0x44, 0x6c, 0x10, 0x00, 0x39, 0x0d, 0x20, 0x2f, + 0x27, 0x3d, 0x68, 0xb9, 0x98, 0x60, 0x5b, 0x3f, 0x80, 0xb2, 0xae, 0x04, + 0x8d, 0xc2, 0x31, 0x0a, 0xc9, 0xe6, 0x10, 0xa6, 0x76, 0x25, 0x78, 0x26, + 0x6f, 0x28, 0x98, 0x58, 0xa0, 0x6d, 0xe7, 0xeb, 0xdb, 0x3b, 0x39, 0xda, + 0x1a, 0x5c, 0xce, 0x31, 0x49, 0x66, 0x4c, 0x3d, 0xde, 0x43, 0xa5, 0x34, + 0x60, 0xe3, 0x51, 0x42, 0x4c, 0x10, 0x40, 0xc0, 0x24, 0x20, 0xb0, 0xc9, + 0xb7, 0x1b, 0x6a, 0x67, 0xd0, 0x26, 0xfb, 0xaa, 0xb5, 0x1d, 0xc2, 0x94, + 0xf1, 0x21, 0x9e, 0x88, 0x33, 0x42, 0x04, 0xe8, 0x7b, 0x1c, 0xed, 0xa7, + 0xd5, 0xc1, 0xcb, 0x16, 0x29, 0x42, 0x90, 0x9b, 0xd2, 0x5d, 0x29, 0x54, + 0x46, 0x65, 0x06, 0x88, 0xfa, 0x36, 0xd0, 0x6a, 0xb5, 0x26, 0x03, 0x39, + 0x00, 0x45, 0x13, 0x42, 0x70, 0xc5, 0x06, 0x59, 0xff, 0x5d, 0x1e, 0x3f, + 0xd5, 0x0e, 0xad, 0x4d, 0x6e, 0x46, 0x88, 0xfc, 0x1e, 0xa1, 0x02, 0xd4, + 0x25, 0x79, 0x49, 0x24, 0xc5, 0x1b, 0x68, 0xed, 0xf0, 0x72, 0xf7, 0xdb, + 0x5b, 0xb8, 0xfb, 0xed, 0x2d, 0x21, 0x5f, 0x2b, 0xff, 0x53, 0x97, 0x00, + 0x9d, 0x4e, 0xd7, 0xa3, 0xfd, 0xa6, 0x1f, 0x9b, 0xc8, 0x31, 0x10, 0x06, + 0x48, 0xe7, 0xea, 0x8b, 0xe6, 0x36, 0x6f, 0x4f, 0x99, 0x96, 0xf4, 0x84, + 0x10, 0x35, 0x7b, 0x65, 0x64, 0xdc, 0xf1, 0x3a, 0x45, 0x30, 0xa3, 0x38, + 0x6c, 0x87, 0x52, 0xbe, 0xcd, 0x66, 0x0b, 0x2f, 0x18, 0x61, 0x18, 0x88, + 0xfa, 0x0c, 0x20, 0xa5, 0x4c, 0xee, 0x7e, 0xfc, 0x29, 0x83, 0x54, 0x0a, + 0xeb, 0x7f, 0x41, 0x60, 0x6f, 0x5b, 0xbb, 0xab, 0x97, 0x20, 0x19, 0x89, + 0xa1, 0xf2, 0x7b, 0xe4, 0xde, 0x83, 0x39, 0xa5, 0x19, 0xbc, 0xbf, 0x53, + 0xab, 0x16, 0xbe, 0xd6, 0x9e, 0x43, 0xb2, 0x31, 0xf0, 0xf2, 0x52, 0xdb, + 0xee, 0xe2, 0x6f, 0xfb, 0x8f, 0x82, 0x16, 0x85, 0x3a, 0x07, 0xf8, 0x7f, + 0x23, 0x26, 0x4c, 0x08, 0x88, 0x3a, 0x01, 0x14, 0xbf, 0x92, 0x20, 0xbb, + 0x82, 0x62, 0x1b, 0x9a, 0xdb, 0x83, 0xb4, 0x56, 0x83, 0x9e, 0xab, 0xd1, + 0x9d, 0xcd, 0x0b, 0xf0, 0xf6, 0xe7, 0x5e, 0x4e, 0x99, 0xac, 0x0f, 0x6e, + 0x07, 0x18, 0x41, 0xac, 0x38, 0x29, 0x8b, 0x87, 0x5e, 0xda, 0x0b, 0x40, + 0xb6, 0xc5, 0xc2, 0xba, 0x19, 0x81, 0xcf, 0x81, 0x70, 0xf9, 0xfc, 0x6c, + 0x78, 0xfa, 0x35, 0xfc, 0xaa, 0x44, 0x48, 0x39, 0x8f, 0x08, 0x13, 0x20, + 0xea, 0x4b, 0x80, 0x4f, 0xf8, 0x3e, 0x07, 0x1c, 0x00, 0x4f, 0x3c, 0xbf, + 0x99, 0x9a, 0xfa, 0x40, 0x7b, 0x68, 0x05, 0x4c, 0x81, 0x15, 0xc5, 0x82, + 0xec, 0x84, 0x1e, 0xab, 0xdc, 0x9b, 0xdb, 0xbd, 0x5c, 0xf9, 0x74, 0x3b, + 0xce, 0x60, 0x0a, 0xb9, 0xb3, 0x02, 0x3c, 0x23, 0x93, 0x9b, 0x91, 0x37, + 0x36, 0x1e, 0x6b, 0xae, 0xb6, 0xbf, 0xdf, 0xb4, 0x3f, 0x78, 0xd2, 0x6f, + 0x9c, 0x5e, 0x47, 0x5e, 0x9a, 0xd6, 0x5e, 0x22, 0xe6, 0x05, 0x69, 0x3e, + 0xe2, 0x88, 0x3a, 0x01, 0x2a, 0x2b, 0x2b, 0x9d, 0xa2, 0x2b, 0xe2, 0xb7, + 0xad, 0xc3, 0xcd, 0xdd, 0x8f, 0xfd, 0x2d, 0xf0, 0x05, 0x09, 0xe3, 0x40, + 0x37, 0x78, 0xb5, 0x8e, 0x84, 0x38, 0x3d, 0x2f, 0xff, 0xf8, 0xe4, 0x1e, + 0x8d, 0x7c, 0x4b, 0xa5, 0x9f, 0x0b, 0x1e, 0x6d, 0xe3, 0x60, 0x7d, 0x80, + 0xa5, 0x43, 0xf5, 0x41, 0xf3, 0x6e, 0x70, 0x85, 0x76, 0xd0, 0x43, 0x30, + 0xac, 0xe8, 0x3a, 0x3e, 0x66, 0x77, 0x6d, 0x23, 0x4e, 0x77, 0xf0, 0x7c, + 0x81, 0xa9, 0x63, 0xb5, 0xa5, 0x5f, 0x68, 0x4b, 0x40, 0x44, 0xc7, 0x24, + 0x16, 0x4e, 0x0f, 0xa7, 0xa1, 0xb1, 0xf1, 0x73, 0x4b, 0x86, 0x65, 0x0a, + 0x30, 0xf1, 0xcb, 0xea, 0x46, 0x72, 0xc7, 0xa6, 0x52, 0x52, 0x38, 0x98, + 0x87, 0x54, 0x68, 0x47, 0xc8, 0x78, 0x1c, 0x83, 0xde, 0x2f, 0xce, 0xa8, + 0xe3, 0xec, 0x93, 0x73, 0x38, 0x54, 0xd7, 0x49, 0x45, 0x55, 0x2b, 0x2d, + 0x1d, 0x92, 0x37, 0xb7, 0x7b, 0x99, 0x9e, 0xaf, 0x27, 0x27, 0x6d, 0xb0, + 0xe7, 0x2b, 0xb5, 0xec, 0x61, 0x00, 0xe3, 0xf0, 0xdc, 0xf3, 0x99, 0xa9, + 0x26, 0x0a, 0xb3, 0x13, 0xb9, 0x7d, 0xd1, 0x6c, 0x52, 0xf5, 0xc1, 0x4b, + 0xcb, 0xb8, 0xfc, 0x7e, 0xde, 0xd5, 0xce, 0x13, 0x8e, 0xcb, 0x4c, 0xcb, + 0x7c, 0xa3, 0xa1, 0xa9, 0x21, 0x62, 0xf1, 0xe2, 0x31, 0x41, 0x00, 0x80, + 0xb4, 0xf4, 0xb4, 0xf7, 0x14, 0x21, 0xbe, 0x05, 0x24, 0x6c, 0xd9, 0xf5, + 0x25, 0xe7, 0x9e, 0x3a, 0x95, 0xc4, 0xf8, 0x41, 0x2c, 0x74, 0x8a, 0x11, + 0x54, 0x7f, 0xc0, 0xa2, 0x4e, 0x3a, 0x9d, 0x60, 0xe5, 0xec, 0xb1, 0x08, + 0x01, 0x1f, 0xef, 0x69, 0xc4, 0xe5, 0x85, 0x37, 0x3f, 0xf5, 0x32, 0x3e, + 0x43, 0xc1, 0x96, 0x1d, 0xe0, 0x6b, 0x7b, 0x9d, 0x5a, 0xe9, 0x18, 0x63, + 0x5a, 0xd8, 0xfe, 0x81, 0xf4, 0x24, 0x23, 0x53, 0x8b, 0x52, 0x31, 0xeb, + 0x0c, 0xf8, 0x5a, 0x82, 0xab, 0x59, 0x19, 0xf1, 0x71, 0xbc, 0xf0, 0x69, + 0x39, 0x12, 0x10, 0x8a, 0xfc, 0xb2, 0xc1, 0xe1, 0xf8, 0x67, 0x58, 0x1d, + 0x87, 0x81, 0x98, 0x21, 0x40, 0x63, 0x63, 0x63, 0x47, 0x66, 0x46, 0xfa, + 0x11, 0x10, 0xe7, 0x7b, 0xbc, 0x3e, 0x0e, 0x1e, 0x69, 0xe4, 0xac, 0x40, + 0xe1, 0x60, 0xc6, 0x24, 0xcd, 0x29, 0x24, 0x07, 0xdf, 0x16, 0x0a, 0xa1, + 0x69, 0xe5, 0xd9, 0x19, 0x66, 0xde, 0xdf, 0x59, 0x8f, 0xd7, 0x0f, 0x6f, + 0x7f, 0xae, 0xb5, 0x9f, 0x53, 0x14, 0x60, 0x60, 0x7c, 0xed, 0x9a, 0xbb, + 0xd9, 0x94, 0x3e, 0xac, 0x28, 0x21, 0xc5, 0x28, 0xf1, 0x1c, 0x0d, 0xee, + 0x65, 0x8c, 0xd3, 0xeb, 0x79, 0x6f, 0x5f, 0x15, 0x8d, 0x9d, 0x6e, 0x04, + 0x18, 0x1a, 0x1a, 0x1d, 0xcf, 0x85, 0xdd, 0xe9, 0x10, 0x11, 0x33, 0x04, + 0x80, 0xfe, 0x4b, 0xc1, 0xc1, 0x23, 0x0e, 0x0a, 0x72, 0x33, 0xb0, 0xe5, + 0x0f, 0x76, 0x90, 0x46, 0xf0, 0xa5, 0xa0, 0x1b, 0x13, 0xf3, 0x93, 0x99, + 0x5e, 0x9c, 0xca, 0x7b, 0x9f, 0xd6, 0xe3, 0xf6, 0xa8, 0x7c, 0xbc, 0xcf, + 0x4f, 0x4d, 0xb3, 0xca, 0x92, 0x89, 0x86, 0xc1, 0x4d, 0x00, 0x7e, 0x97, + 0xb6, 0x24, 0x98, 0xd2, 0xc3, 0x0e, 0x15, 0x17, 0x7a, 0xf0, 0xb7, 0x29, + 0xa8, 0xae, 0xe0, 0x24, 0x3a, 0xdc, 0xd2, 0xc6, 0xe7, 0xb5, 0x0e, 0x80, + 0x71, 0x29, 0xa9, 0x29, 0x8f, 0x35, 0x35, 0x35, 0x0d, 0xe1, 0xc8, 0xf4, + 0xf0, 0x11, 0xb5, 0x84, 0x84, 0x6e, 0x14, 0x16, 0x16, 0xa6, 0x18, 0x74, + 0xfa, 0xcd, 0xc0, 0xb4, 0x88, 0x74, 0x28, 0x89, 0x81, 0x6f, 0x1d, 0x18, + 0x52, 0xb0, 0xa6, 0xbc, 0xbc, 0xfc, 0xf5, 0x48, 0xf4, 0x15, 0xf5, 0x5d, + 0x80, 0x4e, 0xa7, 0x9b, 0x46, 0xa4, 0x06, 0x1f, 0x62, 0x7e, 0xf0, 0xbb, + 0x10, 0x5e, 0x7e, 0x5a, 0x18, 0x88, 0xba, 0x21, 0x48, 0x27, 0x75, 0x8a, + 0x14, 0xda, 0x16, 0x6d, 0xa5, 0x6d, 0x42, 0x4f, 0x90, 0xc4, 0xa1, 0xe6, + 0x56, 0x1a, 0xda, 0x47, 0xe7, 0x0c, 0x05, 0x55, 0x4a, 0x94, 0x61, 0x06, + 0x80, 0x84, 0x8b, 0x76, 0x8f, 0x8f, 0x03, 0x8d, 0x9a, 0xcd, 0x41, 0xc0, + 0x8b, 0x52, 0x70, 0xa8, 0xef, 0xff, 0x85, 0x94, 0x47, 0xf4, 0x06, 0xe3, + 0xef, 0x22, 0x25, 0x4f, 0xd4, 0x09, 0xd0, 0x17, 0x6b, 0x26, 0x15, 0x32, + 0x73, 0x5c, 0xc4, 0xc8, 0x1f, 0x15, 0x6c, 0x3f, 0x52, 0xcf, 0x75, 0xaf, + 0x6d, 0xd2, 0xfe, 0x90, 0xca, 0xd3, 0x65, 0x15, 0x7b, 0x37, 0x45, 0x53, + 0x9e, 0xa8, 0x2f, 0x01, 0x5f, 0x23, 0xba, 0xf8, 0x9a, 0x00, 0xff, 0xe1, + 0xf8, 0x9a, 0x00, 0xff, 0xe1, 0x88, 0x29, 0x1d, 0xe0, 0xad, 0xf2, 0x43, + 0x7c, 0x5e, 0xdb, 0x7b, 0x58, 0x43, 0x7e, 0x5a, 0x12, 0x8b, 0x0b, 0x73, + 0xfa, 0xb5, 0xf9, 0xfd, 0xb6, 0xb2, 0x48, 0x8b, 0x35, 0xa2, 0x38, 0xe2, + 0x8c, 0x5a, 0x3d, 0xa8, 0x01, 0x11, 0x03, 0x04, 0xf0, 0xc9, 0xee, 0x89, + 0xe8, 0xf5, 0xdd, 0xfb, 0xfb, 0xfd, 0x47, 0x08, 0x78, 0xf1, 0xaa, 0x53, + 0xca, 0x6c, 0x63, 0x53, 0x7b, 0x8c, 0x22, 0x4f, 0x7e, 0xb8, 0x6b, 0x6a, + 0x64, 0xe5, 0x1b, 0x3d, 0xf8, 0x45, 0x88, 0xb9, 0xe4, 0xa3, 0x88, 0xa8, + 0x13, 0xc0, 0xe0, 0x31, 0xef, 0x72, 0x9b, 0xdc, 0x95, 0x02, 0xbe, 0x12, + 0x16, 0x3d, 0x26, 0x35, 0x0e, 0xdb, 0x5c, 0xbd, 0x3d, 0xde, 0x14, 0x3c, + 0x0e, 0xf0, 0xf8, 0x83, 0xac, 0xf0, 0x7a, 0xbd, 0xbb, 0x82, 0xb7, 0x1b, + 0x5d, 0xc4, 0x94, 0x59, 0xa4, 0xc4, 0x5a, 0xb2, 0x54, 0x0a, 0x75, 0x03, + 0x60, 0x4a, 0x34, 0xeb, 0xf9, 0xc3, 0x8f, 0xe6, 0x52, 0x9a, 0x17, 0x62, + 0xe6, 0xb4, 0xc9, 0x02, 0x89, 0x05, 0x43, 0xeb, 0xd0, 0xdd, 0xa4, 0x15, + 0x8e, 0x1e, 0x45, 0x54, 0x1c, 0x6e, 0x63, 0xdd, 0x3d, 0x1f, 0xe2, 0x6c, + 0xf7, 0x01, 0x78, 0x14, 0xe4, 0x59, 0x7b, 0x2a, 0x2a, 0xde, 0x1e, 0xd5, + 0x4e, 0x87, 0x80, 0x98, 0x51, 0x02, 0x4b, 0x4a, 0x4a, 0xa6, 0x48, 0xa1, + 0xbe, 0x06, 0x98, 0x0c, 0x7a, 0x85, 0xc7, 0xbf, 0x37, 0x33, 0xf4, 0xc1, + 0x07, 0x30, 0x87, 0x10, 0x51, 0x7c, 0x2c, 0xd4, 0xd1, 0x3f, 0xac, 0xb3, + 0x78, 0x7c, 0x22, 0x4f, 0x7e, 0x6f, 0x56, 0x77, 0x05, 0x11, 0xa3, 0x8a, + 0xf8, 0x8b, 0xd5, 0x6a, 0x0d, 0x7e, 0x0e, 0x6d, 0x84, 0x10, 0x13, 0x04, + 0xb0, 0xdb, 0xed, 0x05, 0xd2, 0xaf, 0xbe, 0x05, 0xa4, 0x2a, 0x8a, 0xe0, + 0xa1, 0xef, 0x4c, 0x63, 0xfe, 0xa4, 0x21, 0x64, 0x4a, 0x19, 0x52, 0x40, + 0x17, 0xc6, 0xb1, 0xf0, 0x41, 0x22, 0x8c, 0x47, 0x0a, 0xb3, 0x4b, 0xd3, + 0xf9, 0xc5, 0x0d, 0x33, 0xd0, 0x69, 0x9e, 0xa7, 0x64, 0x9d, 0x50, 0xde, + 0x2a, 0x2d, 0x2c, 0x0d, 0xed, 0xc4, 0xec, 0x51, 0x46, 0xd4, 0xbd, 0x81, + 0x36, 0x9b, 0xcd, 0x22, 0x24, 0xef, 0x02, 0xf9, 0x00, 0x77, 0xac, 0x9f, + 0xc8, 0x79, 0x8b, 0x87, 0x98, 0x2c, 0x9b, 0x90, 0x1f, 0x56, 0x6d, 0x3f, + 0x3a, 0x6b, 0xb4, 0x54, 0xb3, 0x08, 0xa0, 0x30, 0x27, 0x81, 0x8c, 0x64, + 0x23, 0x9b, 0x76, 0xd4, 0x03, 0x24, 0x48, 0x45, 0x9e, 0x91, 0x9d, 0x92, + 0xfc, 0xa7, 0xba, 0xe6, 0xa0, 0x81, 0x90, 0xa3, 0x8a, 0xa8, 0x12, 0x60, + 0x56, 0x4e, 0x4e, 0xbc, 0xd7, 0x60, 0xfa, 0x3b, 0x30, 0x1d, 0xe0, 0xfa, + 0x35, 0x56, 0xae, 0x3a, 0x3b, 0xf4, 0x12, 0xed, 0x00, 0xe8, 0xcd, 0x90, + 0x90, 0x4b, 0x58, 0xea, 0x4c, 0xc7, 0x61, 0x22, 0x79, 0x54, 0xcf, 0xe4, + 0xc2, 0x14, 0xbc, 0x3e, 0xc9, 0xb6, 0xb2, 0x26, 0x80, 0x74, 0x55, 0xe8, + 0x96, 0x8e, 0xcd, 0x1e, 0xfb, 0x62, 0x7d, 0x7d, 0x7d, 0xf8, 0x75, 0x66, + 0x87, 0x89, 0xa8, 0x11, 0x60, 0xd6, 0xac, 0x59, 0x86, 0x36, 0x95, 0xd7, + 0x10, 0x2c, 0x03, 0xb8, 0x70, 0xd9, 0x78, 0x6e, 0x5b, 0x17, 0x46, 0x76, + 0x54, 0xfc, 0xf8, 0xf0, 0x72, 0xfb, 0x55, 0x6f, 0x58, 0x47, 0xc3, 0x0e, + 0x17, 0xf3, 0x26, 0x66, 0x70, 0xb4, 0xc9, 0xa5, 0x55, 0x2d, 0x13, 0xe4, + 0xa8, 0x7e, 0x75, 0xee, 0xd8, 0xec, 0xb1, 0x2f, 0xd5, 0xd7, 0xd7, 0x47, + 0xe5, 0xf8, 0xf8, 0x68, 0x11, 0x40, 0x24, 0x27, 0x26, 0x3f, 0x83, 0x60, + 0x2d, 0xc0, 0xd2, 0x19, 0x63, 0x78, 0xe0, 0xba, 0x69, 0x43, 0xf7, 0xd0, + 0x29, 0x86, 0x2e, 0xcd, 0x3f, 0x8c, 0xb7, 0xdf, 0xd7, 0xde, 0x1b, 0x03, + 0x18, 0x41, 0x08, 0x01, 0x4b, 0xa6, 0x8f, 0xa1, 0xfc, 0x50, 0x6b, 0xf7, + 0x11, 0x33, 0x85, 0xaa, 0x5f, 0x16, 0x39, 0x1a, 0x1d, 0xaf, 0x45, 0x5c, + 0x18, 0xa2, 0x44, 0x00, 0xbb, 0xcd, 0x76, 0x1f, 0x70, 0x03, 0xc0, 0x4c, + 0x5b, 0x1a, 0x4f, 0xfd, 0x60, 0x16, 0xc6, 0x41, 0xcb, 0x77, 0x05, 0x80, + 0x39, 0x47, 0x2b, 0xee, 0x18, 0x0e, 0xbc, 0x2d, 0xc3, 0x3e, 0x25, 0x34, + 0x5c, 0x28, 0x42, 0x70, 0xca, 0xcc, 0x31, 0x7c, 0xf8, 0x85, 0x83, 0xa3, + 0xda, 0x49, 0xa3, 0x53, 0x2c, 0x96, 0x8c, 0x38, 0x87, 0xc3, 0xf1, 0x4e, + 0xa4, 0x65, 0x89, 0x38, 0x01, 0xec, 0x56, 0xfb, 0x85, 0xc0, 0x2f, 0x01, + 0xac, 0xe3, 0x12, 0xf9, 0xcd, 0xed, 0x73, 0x48, 0x34, 0x87, 0x61, 0x8f, + 0x12, 0x0a, 0x24, 0x15, 0x85, 0x1f, 0xb3, 0xe7, 0x76, 0x68, 0xb3, 0x40, + 0x94, 0xa0, 0xd7, 0x2b, 0xac, 0x38, 0x69, 0x2c, 0xef, 0x6e, 0x3f, 0x4a, + 0x93, 0x76, 0xde, 0xf0, 0xc2, 0xcc, 0x8c, 0xf4, 0x8a, 0x86, 0xc6, 0xc6, + 0xcf, 0x22, 0x29, 0x47, 0x44, 0xb7, 0x81, 0x93, 0xf2, 0x27, 0x8d, 0x45, + 0xc8, 0x67, 0x01, 0x2c, 0xa9, 0x46, 0x9e, 0xf9, 0xe1, 0x49, 0xa4, 0x24, + 0x84, 0x99, 0x99, 0x6b, 0x4c, 0x07, 0x31, 0x0c, 0xfe, 0xaa, 0x11, 0x09, + 0xb9, 0x0b, 0x88, 0xd4, 0x44, 0x03, 0xcf, 0xfc, 0x70, 0x36, 0xe9, 0xc9, + 0x5a, 0xe0, 0xa8, 0x44, 0xfc, 0xaa, 0xa8, 0xa8, 0x68, 0xb0, 0x20, 0xc8, + 0x51, 0x41, 0x44, 0x09, 0xe0, 0xd7, 0x7b, 0x6f, 0x01, 0x92, 0x84, 0x80, + 0x87, 0xbe, 0x33, 0x9d, 0xec, 0x8c, 0xe0, 0x31, 0xf3, 0x83, 0xc2, 0x98, + 0x3e, 0x3c, 0x61, 0x22, 0xb4, 0xfd, 0x0b, 0x86, 0x71, 0x16, 0x33, 0xf7, + 0x5d, 0xd3, 0xe3, 0xde, 0x48, 0xd1, 0x2b, 0xfa, 0x9b, 0x23, 0xd9, 0x7f, + 0xc4, 0x08, 0xb0, 0x74, 0xe9, 0x52, 0xbd, 0x54, 0xb8, 0x1c, 0x60, 0xf1, + 0xd4, 0x4c, 0xe6, 0x4d, 0x1c, 0x66, 0x49, 0x9c, 0x61, 0x96, 0x75, 0x8b, + 0x15, 0x02, 0x00, 0x2c, 0x9e, 0xd6, 0xf7, 0x79, 0xc8, 0x6f, 0x13, 0xc1, + 0xa5, 0x39, 0x62, 0x04, 0xa8, 0xa9, 0xa9, 0x99, 0xdb, 0x5d, 0xff, 0xf7, + 0xdc, 0x45, 0xc3, 0x2c, 0x8a, 0xa5, 0x18, 0x86, 0x37, 0xfd, 0x03, 0x10, + 0x75, 0x47, 0x5c, 0x3f, 0xac, 0xee, 0x7d, 0x26, 0xe9, 0x25, 0x56, 0x6b, + 0xf0, 0x13, 0x27, 0x46, 0x08, 0x91, 0x5b, 0x02, 0xfc, 0x94, 0x74, 0xff, + 0x3a, 0xb3, 0x4f, 0x25, 0x8d, 0xb0, 0x30, 0x12, 0x15, 0x3d, 0x82, 0xa4, + 0x99, 0x47, 0x1a, 0x33, 0x6d, 0xbd, 0x75, 0x05, 0x24, 0xba, 0x88, 0x95, + 0x8b, 0x89, 0x18, 0x01, 0x24, 0xb2, 0x27, 0xda, 0x33, 0x23, 0x79, 0x78, + 0x35, 0xf9, 0x86, 0xff, 0xf6, 0x13, 0x73, 0x04, 0xc8, 0x48, 0xe9, 0x35, + 0x65, 0x4b, 0x64, 0xc4, 0x14, 0xc1, 0x88, 0x11, 0x40, 0x51, 0xe8, 0x09, + 0x85, 0xe9, 0xae, 0xde, 0x1d, 0x36, 0x46, 0x64, 0xf0, 0x62, 0xca, 0x13, + 0x4e, 0x6b, 0x47, 0x9f, 0x67, 0xa2, 0x30, 0xf8, 0xb9, 0x37, 0x23, 0x8c, + 0xc8, 0x2d, 0x01, 0x52, 0x56, 0x77, 0xff, 0xda, 0x7d, 0xc8, 0x72, 0xf8, + 0xf7, 0x1a, 0x01, 0xab, 0xe9, 0x30, 0x72, 0xfe, 0x46, 0x03, 0xfb, 0xab, + 0xfb, 0x85, 0x8a, 0x45, 0xec, 0x34, 0xf1, 0x88, 0x3d, 0x05, 0xaf, 0xaa, + 0x7e, 0x00, 0xf8, 0x01, 0xde, 0xf9, 0x24, 0x70, 0xa1, 0xe7, 0xa0, 0xf0, + 0xbb, 0x19, 0xb6, 0x13, 0x27, 0xc6, 0x08, 0xb0, 0x71, 0x6b, 0xcf, 0x91, + 0x37, 0x7e, 0xe0, 0x83, 0x48, 0xf5, 0x1b, 0xb1, 0xa7, 0xb0, 0x6f, 0xdf, + 0xbe, 0x3a, 0x10, 0x1f, 0x00, 0xbc, 0xfc, 0xde, 0x61, 0x1c, 0xce, 0xe1, + 0x18, 0x62, 0x24, 0xf8, 0x86, 0xe9, 0xcb, 0x1f, 0x09, 0x3d, 0x62, 0x84, + 0x50, 0xd7, 0xec, 0xe6, 0x95, 0x7f, 0x76, 0x9d, 0x6d, 0x2c, 0x78, 0xbf, + 0xbc, 0xbc, 0x3c, 0x78, 0x8d, 0xb9, 0x11, 0x42, 0x44, 0x5f, 0x03, 0x29, + 0xe4, 0x3d, 0xa0, 0x15, 0x72, 0xba, 0xf3, 0xd9, 0xcf, 0x7b, 0xaa, 0x79, + 0x85, 0x05, 0xdf, 0x30, 0x4b, 0xba, 0xe8, 0x86, 0xa9, 0x88, 0x8e, 0x10, + 0xfc, 0xaa, 0xe4, 0xbf, 0x9e, 0xde, 0xd5, 0x53, 0xda, 0x16, 0xbf, 0xf8, + 0x69, 0x24, 0xfb, 0x8f, 0xe8, 0x6b, 0xe0, 0x70, 0x38, 0xf6, 0x67, 0x66, + 0x64, 0x4c, 0x03, 0x4a, 0x0f, 0xd4, 0xb4, 0x73, 0xa4, 0xa1, 0x93, 0xc5, + 0xd3, 0x32, 0xd1, 0xe9, 0xc2, 0x50, 0xc8, 0x54, 0x0f, 0xc4, 0x0d, 0x43, + 0x59, 0xf6, 0xb5, 0x86, 0x54, 0x75, 0x74, 0x34, 0xe1, 0xf6, 0xaa, 0xdc, + 0xf6, 0xbf, 0x9f, 0xb1, 0x71, 0x5b, 0xd7, 0x92, 0x28, 0xf8, 0x73, 0x59, + 0x65, 0xf9, 0x83, 0x91, 0x94, 0x21, 0xe2, 0xf3, 0x60, 0x6a, 0x7a, 0xda, + 0xdf, 0x75, 0x42, 0x9c, 0x0b, 0x64, 0xee, 0x3d, 0xd4, 0xca, 0x7b, 0x9f, + 0xd6, 0x31, 0xce, 0x12, 0xcf, 0x84, 0xac, 0xf8, 0xa1, 0x15, 0xe4, 0x90, + 0x3e, 0x2d, 0x0e, 0x20, 0xdc, 0x42, 0xcf, 0xaa, 0x3b, 0xe0, 0x39, 0x83, + 0xa3, 0x09, 0x55, 0x95, 0x6c, 0xde, 0x59, 0xcf, 0xf7, 0x1e, 0xdf, 0xc1, + 0x96, 0x2f, 0xba, 0x5d, 0xd2, 0xf2, 0x73, 0x14, 0xe5, 0x5c, 0x87, 0xc3, + 0x11, 0xd1, 0xe0, 0x90, 0xa8, 0xec, 0x85, 0x26, 0x17, 0x14, 0x64, 0x79, + 0x0d, 0x86, 0x57, 0x91, 0x9c, 0xdc, 0xfd, 0x59, 0xa2, 0x59, 0x4f, 0xae, + 0xc5, 0x4c, 0x42, 0xbc, 0xbe, 0x3b, 0x76, 0x2e, 0x04, 0x08, 0x8d, 0x04, + 0xe1, 0x64, 0xfa, 0x4a, 0x35, 0xe2, 0xde, 0x40, 0xbf, 0x2a, 0x69, 0xef, + 0xf0, 0x71, 0xa8, 0xa1, 0x83, 0x8e, 0xce, 0x7e, 0x3b, 0x99, 0x7f, 0xfa, + 0x54, 0xff, 0x05, 0x9a, 0x9e, 0x14, 0x59, 0x44, 0x6d, 0x33, 0x6c, 0xb5, + 0x5a, 0x4d, 0x3a, 0xa1, 0xbb, 0x03, 0xe4, 0x6d, 0xc0, 0xc8, 0x14, 0xeb, + 0x3d, 0xfe, 0xe0, 0x15, 0x82, 0x9f, 0xe9, 0x0c, 0x86, 0x9f, 0xed, 0xde, + 0xbd, 0x3b, 0x2a, 0x61, 0x61, 0xd1, 0xdc, 0x0b, 0x65, 0x82, 0x5c, 0xc5, + 0x7f, 0xec, 0xe0, 0x4b, 0x00, 0x83, 0x94, 0xac, 0xf6, 0xf9, 0x7c, 0x51, + 0x3b, 0x31, 0x24, 0x2a, 0x33, 0x40, 0x71, 0x71, 0xf1, 0x62, 0x81, 0x78, + 0x59, 0x40, 0x16, 0xc0, 0x8c, 0x9c, 0x4c, 0x7e, 0xb6, 0x6a, 0x1e, 0xe9, + 0xf1, 0x43, 0x5b, 0xcf, 0x75, 0xd9, 0x13, 0x50, 0x92, 0xc2, 0xf5, 0x2b, + 0x48, 0x7c, 0x07, 0xca, 0x90, 0xde, 0xc8, 0xc7, 0x05, 0xb4, 0xb8, 0x3c, + 0xfc, 0xe8, 0xad, 0x56, 0xf6, 0xf0, 0xf2, 0x00, 0x00, 0x01, 0x55, 0x49, + 0x44, 0x41, 0x54, 0x8f, 0xf8, 0xf8, 0x70, 0x8f, 0x3d, 0xc4, 0xa1, 0x20, + 0xbf, 0x11, 0x8d, 0x84, 0x91, 0x88, 0x2b, 0x81, 0x25, 0x36, 0xdb, 0xd5, + 0x02, 0xf1, 0x92, 0xe8, 0x3a, 0x2c, 0x71, 0xf5, 0xa4, 0x42, 0xee, 0x5d, + 0x35, 0x9f, 0x84, 0x20, 0x35, 0x75, 0x8f, 0x85, 0x48, 0x48, 0x42, 0x67, + 0xc9, 0x09, 0xde, 0x70, 0x10, 0xa8, 0xce, 0x26, 0x54, 0x67, 0x63, 0xf0, + 0x86, 0xa3, 0x80, 0x38, 0xbd, 0x8e, 0xd3, 0x6c, 0x13, 0xf0, 0xaa, 0x7e, + 0x76, 0xd6, 0x38, 0x00, 0xe2, 0x25, 0xe2, 0x12, 0x4b, 0xba, 0xc5, 0xed, + 0x68, 0x74, 0xfc, 0x2b, 0x92, 0xb2, 0x44, 0x6c, 0x06, 0xd0, 0xd6, 0x7c, + 0xf1, 0x6b, 0x10, 0xeb, 0x00, 0x4c, 0x06, 0x3d, 0xff, 0xb5, 0x74, 0x16, + 0xab, 0xec, 0x13, 0x86, 0x7e, 0x33, 0x45, 0x41, 0x9f, 0x57, 0x82, 0x30, + 0x84, 0xbb, 0x7a, 0x44, 0xef, 0xed, 0x3f, 0x16, 0x1b, 0xca, 0x0e, 0xf1, + 0xb3, 0x4d, 0xdb, 0x70, 0x7b, 0xbb, 0x7d, 0x01, 0xf2, 0x8f, 0x7e, 0x29, + 0xbf, 0x5d, 0x59, 0x59, 0x19, 0x11, 0xe1, 0x22, 0x36, 0x03, 0x8c, 0xb1, + 0x58, 0xae, 0x03, 0x71, 0x2b, 0x40, 0x76, 0x52, 0x3c, 0x8f, 0x9d, 0xb3, + 0x88, 0x79, 0x13, 0xc2, 0x3b, 0x2f, 0x51, 0x97, 0x99, 0x83, 0x92, 0x10, + 0xfe, 0x41, 0x8f, 0xd2, 0xd9, 0x1c, 0xb5, 0xb7, 0xff, 0x58, 0x58, 0x2d, + 0x29, 0x9c, 0x9c, 0x37, 0x96, 0x8f, 0x0e, 0xd5, 0xd2, 0xe6, 0xf1, 0x02, + 0x62, 0xaa, 0x4e, 0x11, 0x47, 0x1b, 0x1c, 0x8e, 0x8f, 0x23, 0xd1, 0x7f, + 0x24, 0x95, 0xc0, 0x9e, 0x5a, 0xf8, 0xcf, 0x5d, 0xb4, 0x1c, 0x7b, 0x66, + 0xf8, 0x31, 0x01, 0xc2, 0x38, 0xbc, 0x43, 0x9e, 0x62, 0xe1, 0xcd, 0xef, + 0x0b, 0x7b, 0x66, 0x1a, 0xcf, 0x5d, 0xb4, 0xbc, 0xef, 0x47, 0x11, 0x3b, + 0x37, 0x20, 0x2a, 0xbb, 0x80, 0xd4, 0xb8, 0x91, 0x39, 0xa4, 0xe9, 0x44, + 0x42, 0xb4, 0x9e, 0x49, 0x6c, 0xb9, 0xc4, 0xbe, 0x46, 0xc4, 0x11, 0x95, + 0x02, 0x11, 0xc3, 0x2d, 0xf3, 0xa2, 0x54, 0xd6, 0x23, 0x8c, 0xe1, 0xbf, + 0x31, 0xb2, 0xbd, 0x15, 0xb5, 0x23, 0xb6, 0x4a, 0xb5, 0x44, 0x0b, 0x11, + 0x23, 0x80, 0xaa, 0xa2, 0x76, 0x5b, 0x6c, 0x9f, 0xfc, 0x30, 0xea, 0x85, + 0x31, 0x62, 0x1a, 0xaa, 0x1a, 0xb9, 0x88, 0xd5, 0xc8, 0xc5, 0x04, 0x0a, + 0xf9, 0x16, 0x10, 0x1b, 0xaa, 0x77, 0x6c, 0xc3, 0x81, 0xc2, 0x86, 0x48, + 0x75, 0xf6, 0xff, 0x01, 0x56, 0x8b, 0x69, 0x72, 0x1c, 0x6a, 0xa4, 0x89, + 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82 +}; + +#endif /* __KNIGHT_ICON_INC__ */ diff --git a/src/knighttour.desktop b/src/knighttour.desktop new file mode 100644 index 0000000..e9c4f84 --- /dev/null +++ b/src/knighttour.desktop @@ -0,0 +1,12 @@ +[Desktop Entry] +Name=Knight's tour + +GenericName=Puzzle-solving game + +Comment=The knight's tour problem is the mathematical problem of finding a knight's tour. + +Type=Application +Exec=knighttour +Icon=knighttour +Terminal=false +Categories=Qt;TDE;Game;BoardGame; diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..1fc27f4 --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,55 @@ +// Author: Denis Kozadaev - (c) 2017-2020 + + +#include "mainwindow.h" + +#include +#include +#include +#include + + +const int XSize = 640, YSize = 640; +static const char description[] = I18N_NOOP( +"A knight's tour is a sequence of moves of a knight on a chessboard " +"such that the knight visits every square exactly once."); + + +int main(int argc, char *argv[]) +{ + TDEApplication *app; + MainWindow *mainWin; + int retcode; + TDEAboutData about( + "knighttour", // program name used internally + I18N_NOOP("Knight's tour"), // displayable program name + "14.0.10", // program version string + description, // short description + TDEAboutData::License_GPL, // licence type + I18N_NOOP("(c) 2025 Denis Kozadaev"), // copyright statement + nullptr, // text - any information + "http://trinitydesktop.org", // home page address + nullptr); // bug email address + + about.addAuthor("Denis Kozadaev", "Author", "denis@tambov.ru"); + + TDECmdLineArgs::init(argc, argv, &about); + + app = new TDEApplication(); + + mainWin = new MainWindow(); + + mainWin->resize(XSize, YSize); + mainWin->setMinimumSize( mainWin->size() ); + mainWin->setMaximumSize( mainWin->size() ); + + app->setMainWidget( mainWin ); + app->miniIcon(); + mainWin->show(); + + retcode = app->exec(); + + delete app; + + return (retcode); +} diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp new file mode 100644 index 0000000..0ebf97b --- /dev/null +++ b/src/mainwindow.cpp @@ -0,0 +1,238 @@ +// Author: Denis Kozadaev - (c) 2025 + + +#include "mainwindow.h" + +#include +#include +#include + +#include +#include +#include +#include +#include +#include + + +MainWindow::MainWindow(TQWidget* parent, const char* name) + :TDEMainWindow(parent, name) +{ + TDEAction *actionQuit, *actionNew; + + mMenu = new TDEPopupMenu(this); + + actionQuit = KStdAction::quit(this, SLOT(close()), 0); + actionNew = new TDEAction(i18n("&New Game"), "reload", + TQt::CTRL + TQt::Key_N, this, SLOT(newGame()), + this, i18n("New Game")); + + actionNew->plug(mMenu); + actionQuit->plug(mMenu); + menuBar()->insertItem(i18n("Knight's tour"), mMenu); + + mGame = new TDEPopupMenu(this); + mGame->setCheckable(TRUE); + idTip = mGame->insertItem(i18n("&Highlight tips"), + this, SLOT(toggleTips())); + idKnight = mGame->insertItem(i18n("&Show the knight"), + this, SLOT(toggleKnight())); + idCell = mGame->insertItem(i18n("&Random starting cell"), + this, SLOT(randomCell())); + menuBar()->insertItem(i18n("Settings"), mGame); + + + mBoard = new GameBoard(this); + setCentralWidget(mBoard); + + settings = new TQSettings(TQSettings::Native); + settings->setPath("DilOSTeam", "KnightsTour", TQSettings::User); + loadSettings(); + + mBoard->newGame(defSize); +} + +MainWindow::~MainWindow() +{ + + saveSettings(); + + delete mBoard; + delete mGame; + delete mMenu; + delete settings; +} + + +/* + * Load program configuration + */ +void +MainWindow::loadSettings() +{ + bool val; + + defSize = settings->readNumEntry("/KnightTour/Size", 8); + switch (defSize) { + case 8: + case 10: + case 15: + /* valid size */ + break; + default: + /* set size by default */ + defSize = 8; + break; + } + + val = settings->readBoolEntry("/KnightTour/Tip", TRUE); + mGame->setItemChecked(idTip, !val); + toggleTips(); + + val = settings->readBoolEntry("/KnightTour/Visibility", TRUE); + mGame->setItemChecked(idKnight, !val); + toggleKnight(); + + val = settings->readBoolEntry("/KnightTour/RandomCell", TRUE); + mGame->setItemChecked(idCell, !val); + randomCell(); +} + + +/* + * Save the current program configuration + */ +void +MainWindow::saveSettings() +{ + + settings->writeEntry("/KnightTour/Size", defSize); + settings->writeEntry("/KnightTour/Tip", mGame->isItemChecked(idTip)); + settings->writeEntry("/KnightTour/Visibility", + mGame->isItemChecked(idKnight)); + settings->writeEntry("/KnightTour/RandomCell", + mGame->isItemChecked(idCell)); +} + + +/* + * Request a new game + */ +void +MainWindow::newGame() +{ + TQDialog *dlg; + TQVBoxLayout *vbox, *gbox; + TQHBoxLayout *hbox; + TQButtonGroup *grp; + TQRadioButton *b8, *b10, *b15; + TQCheckBox *rnd; + TQButton *ok, *cancel; + + dlg = new TQDialog(this, nullptr, TRUE); + dlg->setCaption(i18n("Board size")); + + vbox = new TQVBoxLayout(dlg); + + grp = new TQButtonGroup(i18n("Select the board size"), dlg); + grp->setFocusPolicy(TQWidget::NoFocus); + vbox->addWidget(grp); + + gbox = new TQVBoxLayout(grp); + + b8 = new TQRadioButton(i18n("8x8"), grp); + b8->setFocusPolicy(TQWidget::NoFocus); + b8->setChecked(defSize == 8); + gbox->addWidget(b8); + + b10 = new TQRadioButton(i18n("10x10"), grp); + b10->setChecked(defSize == 10); + b10->setFocusPolicy(TQWidget::NoFocus); + gbox->addWidget(b10); + + b15 = new TQRadioButton(i18n("15x15"), grp); + b15->setChecked(defSize == 15); + b15->setFocusPolicy(TQWidget::NoFocus); + gbox->addWidget(b15); + + rnd = new TQCheckBox(i18n("Randomize starting cell"), dlg); + rnd->setChecked(mGame->isItemChecked(idCell)); + vbox->addWidget(rnd); + + hbox = new TQHBoxLayout(); + vbox->addLayout(hbox); + + cancel = new TQPushButton(i18n("Cancel"), dlg); + connect(cancel, SIGNAL(clicked()), dlg, SLOT(reject())); + hbox->addWidget(cancel); + + ok = new TQPushButton(i18n("Apply"), dlg); + connect(ok, SIGNAL(clicked()), dlg, SLOT(accept())); + hbox->addWidget(ok); + + if (dlg->exec()) { + if (b8->isChecked()) + defSize = 8; + else if (b10->isChecked()) + defSize = 10; + else if (b15->isChecked()) + defSize = 15; + else { + /* WTF? Set by default */ + defSize = 8; + } + mGame->setItemChecked(idCell, rnd->isChecked()); + mBoard->setRandomCell(rnd->isChecked()); + mBoard->newGame(defSize); + } + + delete ok; + delete cancel; + delete hbox; + delete b15; + delete b10; + delete b8; + delete gbox; + delete grp; + delete vbox; + delete dlg; +} + + +/* + * Toggle the highlight tips to move the knight + */ +void +MainWindow::toggleTips() +{ + + mGame->setItemChecked(idTip, !mGame->isItemChecked(idTip)); + mBoard->setTips(mGame->isItemChecked(idTip)); +} + + +/* + * Toggle the knight visibility + */ +void +MainWindow::toggleKnight() +{ + + mGame->setItemChecked(idKnight, !mGame->isItemChecked(idKnight)); + mBoard->setKnight(mGame->isItemChecked(idKnight)); +} + + +/* + * Toggle random starting cell of the knight + * or selected at the start + */ +void +MainWindow::randomCell() +{ + + mGame->setItemChecked(idCell, !mGame->isItemChecked(idCell)); + mBoard->setRandomCell(mGame->isItemChecked(idCell)); +} + +#include "mainwindow.moc" diff --git a/src/mainwindow.h b/src/mainwindow.h new file mode 100644 index 0000000..170dec3 --- /dev/null +++ b/src/mainwindow.h @@ -0,0 +1,40 @@ +// Author: Denis Kozadaev - (c) 2025 + + +#ifndef __MAIN_WINDOW_H__ +#define __MAIN_WINDOW_H__ + +#include +#include +#include + +#include "gameboard.h" + + +class MainWindow:public TDEMainWindow +{ + TQ_OBJECT + +public: + MainWindow(TQWidget* parent = nullptr, const char* name = nullptr); + ~MainWindow(); + +private: + int defSize; + int idTip, idKnight, idCell; + TDEPopupMenu *mMenu; + TDEPopupMenu *mGame; + GameBoard *mBoard; + TQSettings *settings; + + void loadSettings(); + void saveSettings(); + +private slots: + void newGame(); + void toggleTips(); + void toggleKnight(); + void randomCell(); +}; + +#endif /* __MAIN_WINDOW_H__ */