Create repository

This commit is contained in:
Loic Guegan 2022-02-23 18:11:55 +01:00
commit ce941c146a
127 changed files with 16162 additions and 0 deletions

14
.gitignore vendored Normal file
View file

@ -0,0 +1,14 @@
# Ignore bin
build
# Ignore generated documentation
doc/html
doc/latex
# Ignore Caches
*#*#
*#*
.vscode
src_

23
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,23 @@
archlinux:
stage: test
image: archlinux:base-devel
before_script:
- pacman -Sy cmake git wxgtk2 --noconfirm --needed
script:
- git submodule init && git submodule update && mkdir build && cd build && cmake ../ && make
artifacts:
when: on_failure
paths:
- build/
debian:
stage: test
image: debian:stable
before_script:
- apt update && apt -y install cmake git build-essential libwxgtk3.0-gtk3-dev
script:
- git submodule init && git submodule update && mkdir build && cd build && cmake ../ && make
artifacts:
when: on_failure
paths:
- build/

9
.gitmodules vendored Normal file
View file

@ -0,0 +1,9 @@
[submodule "libs/cgeditor"]
path = libs/cgeditor
url = https://gitlab.com/manzerbredes/cgeditor.git
[submodule "libs/chessarbiter"]
path = libs/chessarbiter
url = https://gitlab.com/manzerbredes/chessarbiter.git
[submodule "libs/pgnp"]
path = libs/pgnp
url = https://gitlab.com/manzerbredes/pgnp.git

32
CMakeLists.txt Normal file
View file

@ -0,0 +1,32 @@
cmake_minimum_required(VERSION 3.10)
project(ochess VERSION "0.0.0")
# wxWidgets
find_package(wxWidgets COMPONENTS net gl core base adv aui REQUIRED)
include(${wxWidgets_USE_FILE})
# Ochess
include_directories(src)
file(GLOB_RECURSE CPP_FILES src/*.cpp)
add_executable(ochess ${CPP_FILES})
target_link_libraries(ochess ${wxWidgets_LIBRARIES})
# chessarbiter
add_subdirectory(libs/chessarbiter)
target_link_libraries(ochess chessarbiter)
include_directories(${CHESSARBITER_INCLUDE_DIR})
# CGEditor
add_subdirectory(libs/cgeditor)
target_link_libraries(ochess cgeditor)
include_directories(${CGEDITOR_INCLUDE_DIR})
# pgnp
add_subdirectory(libs/pgnp)
target_link_libraries(ochess pgnp)
include_directories(${PGNP_INCLUDE_DIR})
# Assets
add_custom_command(TARGET ochess PRE_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_directory
${CMAKE_SOURCE_DIR}/tools/assets ${CMAKE_BINARY_DIR}/assets)

17
README.md Normal file
View file

@ -0,0 +1,17 @@
# Open Chess   [![Pipeline](https://gitlab.com/manzerbredes/ochess/badges/master/pipeline.svg)](https://gitlab.com/manzerbredes/ochess/pipelines) [![Pipeline](https://img.shields.io/badge/cmake-v3.10-blue)](https://cmake.org/download/) [![Pipeline](https://img.shields.io/badge/boost-v1.65-blue)](https://www.boost.org/) [![Pipeline](https://img.shields.io/badge/wxWidgets-v3.0.4-blue)](https://www.wxwidgets.org/)
![Screenshot](tools/assets/icons/screenshot.jpg)
## Requirements
- CMake
- wxWidgets
## TODO
- Save/Save as PGN
- GameBase Tab:
- See games in a file (PGN/si4 etc.)
- Open/Remove a game from that file
- Engine Tab:
- Create/Configure an engine
- Add engine functionnality to the GameTab

1
libs/cgeditor Submodule

@ -0,0 +1 @@
Subproject commit a90469e71a821d152ae31d16bd8b78793ada98d6

1
libs/chessarbiter Submodule

@ -0,0 +1 @@
Subproject commit 975ad849d1d1474e601ad2f4bf48ea0e4405251c

1
libs/pgnp Submodule

@ -0,0 +1 @@
Subproject commit 43434b170c2725d74f2d91f4cc86b85303893f08

146
src/MainWindow.cpp Normal file
View file

@ -0,0 +1,146 @@
#include "MainWindow.hpp"
#include "ChessArbiter.hpp"
#include "pgnp.hpp"
#include "preferences/preferences.hpp"
#include <wx/preferences.h>
wxDEFINE_EVENT(REFRESH_TAB_TITLE, wxCommandEvent);
/// ---------- MainWindow ----------
MainWindow::MainWindow()
: wxFrame(NULL, wxID_ANY, "OChess: The Open Chess software",
wxDefaultPosition, wxSize(1500, 1000)) {
CreateStatusBar();
SetStatusText("OChess");
/// File menu
wxMenu *menuFile = new wxMenu;
menuFile->Append(1, "Open", "Open file");
Bind(wxEVT_MENU, &MainWindow::OnOpen, this, 1);
menuFile->Append(4, "Settings", "Configure OChess");
Bind(wxEVT_MENU, &MainWindow::OnSettings, this, 4);
menuFile->AppendSeparator();
menuFile->Append(wxID_EXIT);
Bind(wxEVT_MENU, &MainWindow::OnExit, this, wxID_EXIT);
menuGame = new wxMenu;
menuGame->Append(2, "New", "Create new game");
Bind(wxEVT_MENU, &MainWindow::OnNewGame, this, 2);
menuGame->Append(3, "New from FEN", "Create new game using FEN");
Bind(wxEVT_MENU, &MainWindow::OnNewGame, this, 3);
menuGame->AppendSeparator();
menuGame->Append(10, "Save", "Save current game");
menuGame->Append(11, "Save As", "Save current game as");
/// Menu bar
menuBar = new wxMenuBar;
menuBar->Append(menuFile, "&File");
menuBar->Append(menuGame, "&Game");
SetMenuBar(menuBar);
// Create the wxNotebook widget
notebook = new wxAuiNotebook(this, wxID_ANY);
NewGame(new Game());
Bind(wxEVT_AUINOTEBOOK_PAGE_CHANGED, &MainWindow::OnPageChange, this,
wxID_ANY);
Bind(REFRESH_TAB_TITLE, &MainWindow::OnRefreshTabTitle, this, wxID_ANY);
}
class AdvancePage : public wxPreferencesPage {
public:
virtual wxString GetName() const { return "Topics"; }
virtual wxBitmap GetLargeIcon() {
return wxArtProvider::GetBitmap(wxART_HELP, wxART_TOOLBAR);
}
virtual wxWindow *CreateWindow(wxWindow *parent) {
wxPanel *p =
new wxPanel(parent, wxID_ANY, wxDefaultPosition, wxSize(800, 800));
wxBoxSizer *s = new wxBoxSizer(wxVERTICAL);
s->Add(new wxButton(p, COPY_FEN_BTN, L"Copy FEN"), 1, wxEXPAND);
p->SetSizer(s);
return p;
}
};
void MainWindow::OnSettings(wxCommandEvent &event) {
wxPreferencesEditor *edt = new wxPreferencesEditor("Preferences");
edt->AddPage(new BoardPrefs());
edt->Show(this);
}
void MainWindow::ApplyPreferences() {
for (int i = 0; i < notebook->GetPageCount(); i++) {
TabInfos *infos = dynamic_cast<TabInfos *>(notebook->GetPage(i));
infos->ApplyPreferences();
}
}
void MainWindow::OnExit(wxCommandEvent &event) { Close(true); }
void MainWindow::OnOpen(wxCommandEvent &event) {
wxFileDialog openFileDialog(this, _("Open file"), "", "",
"PGN files (*.pgn)|*.pgn",
wxFD_OPEN | wxFD_FILE_MUST_EXIST);
if (openFileDialog.ShowModal() != wxID_CANCEL) {
std::string path = openFileDialog.GetPath().ToStdString();
pgnp::PGN pgn;
try {
pgn.FromFile(path);
pgn.ParseNextGame();
pgnp::HalfMove *pgnp_moves = new pgnp::HalfMove();
pgn.GetMoves(pgnp_moves);
std::string fen =
"rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1";
if (pgn.HasTag("FEN")) {
fen = pgn.GetTagValue("FEN");
}
HalfMove *m = new HalfMove(pgnp_moves, fen);
NewGame(new Game(m));
} catch (...) {
SHOW_DIALOG_ERROR("Invalid PGN file");
}
}
}
void MainWindow::OnNewGame(wxCommandEvent &event) {
if (event.GetId() == 3) {
wxTextEntryDialog *dial =
new wxTextEntryDialog(NULL, wxT("Enter FEN:"), wxT("Error"));
if (dial->ShowModal() == wxID_OK) {
try {
NewGame(new Game(dial->GetValue().ToStdString()));
} catch (...) {
SHOW_DIALOG_ERROR("Invalid FEN");
}
}
} else {
NewGame(new Game());
}
}
void MainWindow::OnPageChange(wxAuiNotebookEvent &event) {
TabInfos *infos = dynamic_cast<TabInfos *>(notebook->GetCurrentPage());
if (infos->type != TabInfos::GAME) {
for (short i = 10; i < 20; i++) {
if (menuGame->FindChildItem(i) != NULL) {
menuGame->Enable(i, false);
}
}
}
}
void MainWindow::OnRefreshTabTitle(wxCommandEvent &event) {
GameTab *win = dynamic_cast<GameTab *>(event.GetEventObject());
int page = notebook->GetPageIndex(win);
if (page != wxNOT_FOUND) {
notebook->SetPageText(page, win->GetLabel());
}
}
void MainWindow::NewGame(Game *game) {
GameTab *gt = new GameTab((wxFrame *)notebook, game);
notebook->AddPage(gt, gt->GetLabel());
notebook->SetSelection(notebook->GetPageIndex(gt));
}

25
src/MainWindow.hpp Normal file
View file

@ -0,0 +1,25 @@
#include "game_tab/GameTab.hpp"
#include "ochess.hpp"
#include <wx/aui/auibook.h>
#include <wx/filedlg.h>
#include <wx/textdlg.h>
wxDECLARE_EVENT(REFRESH_TAB_TITLE, wxCommandEvent);
class MainWindow : public wxFrame {
wxAuiNotebook *notebook;
wxMenu *menuGame;
wxMenuBar *menuBar;
void OnExit(wxCommandEvent &event);
void OnNewGame(wxCommandEvent &event);
void OnOpen(wxCommandEvent &event);
void OnPageChange(wxAuiNotebookEvent &event);
void OnRefreshTabTitle(wxCommandEvent &event);
void NewGame(Game *game);
void OnSettings(wxCommandEvent &event);
public:
MainWindow();
void ApplyPreferences();
};

24
src/binres/binres.cpp Normal file
View file

@ -0,0 +1,24 @@
#include "binres.hpp"
wxBitmap LoadPNG(std::string icon, wxSize size) {
wxImage img = LoadPNG(icon).ConvertToImage();
return (wxBitmap(
img.Scale(size.GetWidth(), size.GetHeight(), wxIMAGE_QUALITY_HIGH)));
}
wxBitmap LoadPNG(std::string icon) {
if (icon == "swap") {
return (wxBITMAP_PNG(swap));
} else if (icon == "zoomin") {
return (wxBITMAP_PNG(zoomin));
} else if (icon == "zoomout") {
return (wxBITMAP_PNG(zoomout));
} else if (icon == "cburnett") {
return (wxBITMAP_PNG(cburnett));
} else if (icon == "chesscom_8bits") {
return (wxBITMAP_PNG(chesscom_8bits));
} else if (icon == "hide") {
return (wxBITMAP_PNG(hide));
}
return (wxNullBitmap);
}

12
src/binres/binres.hpp Normal file
View file

@ -0,0 +1,12 @@
#pragma once
#include "ochess.hpp"
#include "swap_png.hpp"
#include "zoomin_png.hpp"
#include "zoomout_png.hpp"
#include "cburnett_png.hpp"
#include "chesscom_8bits_png.hpp"
#include "hide_png.hpp"
wxBitmap LoadPNG(std::string icon, wxSize size);
wxBitmap LoadPNG(std::string icon);

BIN
src/binres/cburnett.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

3974
src/binres/cburnett_png.hpp Normal file

File diff suppressed because it is too large Load diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

View file

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

BIN
src/binres/hide.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

133
src/binres/hide_png.hpp Normal file
View file

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

BIN
src/binres/swap.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

802
src/binres/swap_png.hpp Normal file
View file

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

BIN
src/binres/visible.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6 KiB

BIN
src/binres/zoomin.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

847
src/binres/zoomin_png.hpp Normal file
View file

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

BIN
src/binres/zoomout.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB

779
src/binres/zoomout_png.hpp Normal file
View file

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

143
src/game_tab/Game.cpp Normal file
View file

@ -0,0 +1,143 @@
#include "Game.hpp"
Game::Game() : current(NULL), moves(NULL) {
tags["White"] = "";
tags["Black"] = "";
initial_fen = "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1";
board = "rnbqkbnrpppppppp PPPPPPPPRNBQKBNR";
}
Game::Game(std::string fen) : current(NULL), moves(NULL) {
tags["White"] = "";
tags["Black"] = "";
tags["FEN"] = fen;
initial_fen = fen;
board = chessarbiter::FENParser::Parse(fen).board;
}
Game::Game(HalfMove *m) {
moves = m;
current = m;
initial_fen = m->GetFen();
board = chessarbiter::FENParser::Parse(initial_fen).board;
}
std::string Game::GetBoard() { return (board); }
std::string Game::GetTag(std::string tagname) { return (tags[tagname]); }
void Game::SetTag(std::string tagname, std::string value) {
tags[tagname] = value;
}
bool Game::IsBlackToPlay() {
if (current == NULL) {
return (false);
}
return (!current->IsBlack);
}
void Game::DeleteTag(std::string tagname) { tags.erase(tagname); }
void Game::DeleteMove(HalfMove *m) {
if (moves == m) {
current = NULL;
moves = NULL;
delete m;
} else {
if (m != NULL) {
current = m->GetParent();
if (current != NULL) {
current->RemoveChild(m);
}
delete m;
}
}
}
HalfMove *Game::GetCurrentMove() { return (current); }
HalfMove *Game::GetMoves() { return (moves); }
void Game::PromoteMove(HalfMove *m) {
if (m != NULL) {
current = m;
m->Promote();
}
}
void Game::SetMoveAsMainline(HalfMove *m) {
if (m != NULL) {
current = m;
m->SetAsMainline();
}
}
bool Game::Play(std::string move) {
wxLogDebug("Playing move %s", move);
std::string fen = GetFen();
arbiter.Setup(fen);
if (arbiter.Play(move)) {
HalfMove *m = new HalfMove(arbiter.GetSAN(), arbiter.GetFEN());
char capture = arbiter.GetCapture();
if (capture != ' ') {
wxLogDebug("%c", capture);
m->SetCapture(capture);
}
if (current != NULL) {
current->AddMove(m);
} else if (moves != NULL) {
moves->AddVariation(m);
}
current = m;
if (moves == NULL) {
moves = m;
}
wxLogDebug("%s",GetPGN());
return (true);
}
return (false);
}
void Game::Previous() {
if (current != NULL) {
current = current->GetParent();
}
}
std::vector<std::string> Game::ListTags() {
std::vector<std::string> keys;
for (auto const &element : tags) {
keys.push_back(element.first);
}
return (keys);
}
void Game::Next() {
if (current != NULL) {
HalfMove *m = current->GetMainline();
if (m != NULL) {
current = m;
}
} else {
current = moves;
}
}
void Game::SetCurrent(HalfMove *m) { current = m; }
std::string Game::GetFen() {
if (current == NULL) {
return (initial_fen);
}
return (current->GetFen());
}
std::string Game::GetPGN() {
std::string pgn;
if (moves != NULL) {
for (auto const &element : tags) {
pgn += '[' + element.first + " \"" + element.second + "\"]\n";
}
pgn += moves->GetPGN();
}
return (pgn);
}

38
src/game_tab/Game.hpp Normal file
View file

@ -0,0 +1,38 @@
#pragma once
#include "ChessArbiter.hpp"
#include "HalfMove.hpp"
#include "ochess.hpp"
#include <unordered_map>
class Game {
std::string board;
std::string initial_fen;
std::unordered_map<std::string, std::string> tags;
HalfMove *moves;
HalfMove *current;
chessarbiter::ChessArbiter arbiter;
public:
Game();
Game(std::string fen);
Game(HalfMove *m);
std::string GetBoard();
std::string GetTag(std::string tagname);
void SetTag(std::string tagname, std::string value);
void DeleteTag(std::string tagname);
HalfMove *GetCurrentMove();
HalfMove *GetMoves();
std::string GetFen();
bool Play(std::string move);
bool IsBlackToPlay();
void Previous();
void Next();
void DeleteMove(HalfMove *m);
void PromoteMove(HalfMove *m);
void SetMoveAsMainline(HalfMove *m);
void SetCurrent(HalfMove *m);
std::vector<std::string> ListTags();
std::string GetPGN();
};

52
src/game_tab/GameTab.cpp Normal file
View file

@ -0,0 +1,52 @@
#include "GameTab.hpp"
#include <wx/clipbrd.h>
wxDEFINE_EVENT(GAME_CHANGE, wxCommandEvent);
GameTab::GameTab(wxFrame *parent, Game *game)
: wxPanel(parent), game(game), TabInfos(TabInfos::GAME) {
// Splitter
wxSplitterWindow *splitter = new wxSplitterWindow(this, wxID_ANY);
splitter->SetMinimumPaneSize(100);
// Panels
board_panel = new BoardPanel((wxFrame *)splitter, game);
editor_panel = new EditorPanel((wxFrame *)splitter, game);
splitter->SplitVertically(board_panel, editor_panel);
// Setup splitter
wxBoxSizer *topSizer = new wxBoxSizer(wxHORIZONTAL);
topSizer->Add(splitter, 1, wxEXPAND);
SetSizerAndFit(topSizer);
// Refresh panels
wxCommandEvent event(REFRESH_TAB_TITLE, GetId());
event.SetEventObject(this);
OnRefreshTabTitle(event);
board_panel->Notify();
editor_panel->Notify();
Bind(REFRESH_TAB_TITLE, &GameTab::OnRefreshTabTitle, this, wxID_ANY);
Bind(GAME_CHANGE, &GameTab::OnGameChange, this, wxID_ANY);
}
void GameTab::OnGameChange(wxCommandEvent &event) {
board_panel->Notify();
editor_panel->Notify();
}
void GameTab::OnRefreshTabTitle(wxCommandEvent &event) {
std::string white = game->GetTag("White");
std::string black = game->GetTag("Black");
if (white.size() == 0 && black.size() == 0) {
SetLabel("New Game");
} else {
SetLabel(white + "-" + black);
}
event.SetEventObject(this);
event.Skip();
}
void GameTab::ApplyPreferences() {
board_panel->ApplyPreferences();
}

28
src/game_tab/GameTab.hpp Normal file
View file

@ -0,0 +1,28 @@
#pragma once
#include "ChessArbiter.hpp"
#include "Game.hpp"
#include "HalfMove.hpp"
#include "board/BoardPanel.hpp"
#include "editor/EditorPanel.hpp"
#include "ochess.hpp"
#include <utility>
#include <wx/collpane.h>
#include <wx/splitter.h>
#include <wx/textctrl.h>
wxDECLARE_EVENT(REFRESH_TAB_TITLE, wxCommandEvent);
wxDECLARE_EVENT(GAME_CHANGE, wxCommandEvent);
class GameTab : public wxPanel, public TabInfos {
EditorPanel *editor_panel;
BoardPanel *board_panel;
Game *game;
void RefreshLabel();
void OnRefreshTabTitle(wxCommandEvent &event);
void OnGameChange(wxCommandEvent &event);
public:
GameTab(wxFrame *parent, Game *game);
void ApplyPreferences();
};

213
src/game_tab/HalfMove.cpp Normal file
View file

@ -0,0 +1,213 @@
#include "HalfMove.hpp"
HalfMove::HalfMove(std::string move) : capture(' ') {
this->move = move;
fen = "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1";
}
HalfMove::HalfMove(std::string move, std::string fen) : fen(fen), capture(' ') {
this->move = move;
}
HalfMove::~HalfMove() {
for (HalfMove *m : variations) {
delete m;
}
}
void HalfMove::AddVariation(HalfMove *m) {
m->IsBlack = this->IsBlack;
m->Number = this->Number;
HalfMove::variations.push_back(m);
cgeditor::CGEHalfMove::variations.push_back(m);
m->SetParent(this);
}
std::map<char, std::uint8_t> HalfMove::GetLineCaptures() {
std::map<char, std::uint8_t> captures;
HalfMove *m = this;
do {
char c = m->capture;
if (captures.find(c) != captures.end()) {
captures[c]++;
} else {
captures[c] = 1;
}
m = m->parent;
} while (m != NULL);
return (captures);
}
void HalfMove::SetCapture(char c) { capture = c; }
void HalfMove::AddMove(HalfMove *m) {
if (this->mainline == NULL) {
SetMainline(m);
} else {
if (mainline != NULL) {
mainline->AddVariation(m);
}
}
}
void HalfMove::SetMainline(HalfMove *m) {
if (!this->IsBlack) {
m->IsBlack = true;
m->Number = this->Number;
} else {
m->IsBlack = false;
m->Number = this->Number + 1;
}
HalfMove::mainline = m;
cgeditor::CGEHalfMove::MainLine = m;
if (m != NULL) {
m->SetParent(this);
}
}
void HalfMove::SetParent(HalfMove *m) {
HalfMove::parent = m;
CGEHalfMove::Parent = m;
}
void HalfMove::RemoveChild(HalfMove *m) {
std::uint32_t i = 0;
bool found = false;
for (i; i < HalfMove::variations.size(); i++) {
if (HalfMove::variations[i] == m) {
found = true;
break;
}
}
if (found) {
HalfMove::variations.erase(HalfMove::variations.begin() + i);
}
if (HalfMove::mainline == m) {
HalfMove::mainline = NULL;
}
cgeditor::CGEHalfMove::RemoveChild((CGEHalfMove *)m);
}
HalfMove *HalfMove::GetParent() { return (parent); }
HalfMove *HalfMove::GetRoot() {
HalfMove *m = this;
HalfMove *p = HalfMove::parent;
while (p != NULL) {
if (p->mainline != m) {
return (m);
}
m = p;
p = m->HalfMove::parent;
}
return (m);
}
void HalfMove::SetAsMainline() {
HalfMove *root = GetRoot();
HalfMove *lastRoot;
do {
lastRoot = root;
root->HalfMove::Promote();
root = GetRoot();
} while (root != lastRoot);
}
HalfMove *HalfMove::GetMainline() { return (mainline); }
HalfMove::HalfMove(pgnp::HalfMove *m, std::string initial_fen) {
chessarbiter::ChessArbiter arbiter;
arbiter.Setup(initial_fen);
arbiter.Play(arbiter.ParseSAN(m->move));
this->fen = arbiter.GetFEN();
this->move = m->move;
this->IsBlack = m->isBlack;
this->SetComment(m->comment);
this->Number = m->count;
if (m->MainLine != NULL) {
this->SetMainline(new HalfMove(m->MainLine, arbiter.GetFEN()));
}
for (pgnp::HalfMove *v : m->variations) {
arbiter.Setup(initial_fen);
arbiter.Play(arbiter.ParseSAN(v->move));
this->AddVariation(new HalfMove(v, arbiter.GetFEN()));
}
}
void HalfMove::SetFen(std::string fen) { this->fen = fen; }
void HalfMove::Promote() {
HalfMove *root = GetRoot();
if (root->parent != NULL) {
HalfMove *p = root->parent;
if (p->HalfMove::mainline != root) {
if (root->parent->HalfMove::parent != NULL) {
HalfMove *pp = root->parent->HalfMove::parent;
if (pp->HalfMove::mainline == p) {
pp->HalfMove::SetMainline(root);
} else {
pp->AddVariation(root);
pp->HalfMove::RemoveChild(p);
}
}
if (p->HalfMove::mainline == root) {
p->HalfMove::SetMainline(NULL);
} else {
p->HalfMove::RemoveChild(root);
}
root->AddVariation(p);
}
}
}
bool HalfMove::IsVariation() {
HalfMove *m = this;
HalfMove *p = HalfMove::parent;
while (p != NULL) {
if (p->mainline != m) {
return (true);
}
m = p;
p = m->HalfMove::parent;
}
return (false);
}
std::string HalfMove::GetFen() { return (fen); }
std::string HalfMove::GetPGN() { return (GetPGN(IsBlack)); }
std::string HalfMove::GetPGN(bool needDots) {
std::string part;
bool newNeedDots = false;
if (!IsBlack || needDots) {
part += std::to_string(Number) + ".";
if (needDots) {
part += "..";
}
}
part += move;
if (GetNbLineComment() > 0) {
part += " {";
part += GetComment();
part += "}";
newNeedDots = true;
}
if (variations.size() > 0) {
newNeedDots = true;
for (HalfMove *v : variations) {
part += " (";
part += v->GetPGN(IsBlack);
part += ")";
}
}
if (mainline != NULL) {
part += " " + mainline->GetPGN(newNeedDots);
}
return (part);
}

57
src/game_tab/HalfMove.hpp Normal file
View file

@ -0,0 +1,57 @@
#pragma once
#include "CGEditor.hpp"
#include "ChessArbiter.hpp"
#include "ochess.hpp"
#include "pgnp.hpp"
#include <map>
#include <vector>
/**
* @brief Create your custom half move class
*
* The implementation of the class should give you
* an overview of how to keep your move sync with the one of CGEditor
*
*/
class HalfMove : public cgeditor::CGEHalfMove {
HalfMove *parent = NULL;
HalfMove *mainline = NULL;
std::vector<HalfMove *> variations;
std::string fen;
char capture;
std::string GetPGN(bool needDots);
public:
HalfMove(std::string move);
HalfMove(std::string move, std::string fen);
HalfMove(pgnp::HalfMove *m, std::string initial_fen);
~HalfMove();
/// @brief Add variation to current move
void AddVariation(HalfMove *m);
/// @brief Remove the specified child from mainline and/or variations
void RemoveChild(HalfMove *m);
void AddMove(HalfMove *m);
/// @brief Set value of the mailine
void SetMainline(HalfMove *m);
/// @brief Set this move as mainline
void SetAsMainline();
/// @brief Promote the current move and submove
void Promote();
/// @brief Check if current half move is within a variation
bool IsVariation();
/// @brief Get the root of a variation
HalfMove *GetRoot();
/// @brief Get parent of the current move
HalfMove *GetParent();
HalfMove *GetMainline();
std::map<char, std::uint8_t> GetLineCaptures();
/// @brief Set parent of the current move
void SetParent(HalfMove *m);
std::string GetFen();
void SetFen(std::string fen);
void SetCapture(char c);
std::string GetPGN();
};

View file

@ -0,0 +1,294 @@
#include "BoardCanvas.hpp"
wxDEFINE_EVENT(PLAY_MOVE_EVENT, wxCommandEvent);
BoardCanvas::BoardCanvas(wxFrame *parent)
: wxPanel(parent), black_side(false), is_black_turn(true), frozen(false),
lock_square_size(false), t(new Theme()), t_captures(new Theme()) {
board = "rnbqkbnrpppppppp PPPPPPPPRNBQKBNR";
is_dragging = false;
valid_drag = false;
t_captures->ResizePieces(t->GetPiecesSizes() * CAPTURE_FACTOR);
SetClockTime(-1, -1, -1, false);
SetClockTime(-1, -1, -1, true);
ApplyPreferences();
}
BoardCanvas::BoardCanvas(wxFrame *parent, std::uint32_t square_width,
bool frozen)
: BoardCanvas(parent) {
t->ResizeSquaresAndPieces(square_width);
t_captures->ResizePieces(t->GetPiecesSizes() * CAPTURE_FACTOR);
this->frozen = true;
lock_square_size = true;
}
void BoardCanvas::OnPaint(wxPaintEvent &event) {
wxPaintDC dc(this);
REFRESH_MOUSE_LOCATION();
square_width = t->GetSquaresSizes();
canvas_size = dc.GetSize();
boardX = (canvas_size.x - (8 * square_width)) / 2;
boardY = (canvas_size.y - (8 * square_width)) / 2;
if (boardX > canvas_size.x)
boardX = 0;
if (boardY > canvas_size.y)
boardY = 0;
DrawBoard(dc);
}
void BoardCanvas::ApplyPreferences() {
if (t != NULL)
delete t;
if (t_captures != NULL)
delete t_captures;
t = new Theme();
t_captures = new Theme();
CONFIG_OPEN(config);
black_side = config->Read("board/black_by_default", false);
if (lock_square_size) {
t->ResizeSquaresAndPieces(square_width);
} else {
t->ResizeSquaresAndPieces(config->Read("board/square_size", 80));
}
t->SetSquareRadius(config->Read("board/corner_radius", 10));
t_captures->ResizePieces(t->GetPiecesSizes() * CAPTURE_FACTOR);
CONFIG_CLOSE(config);
Refresh();
}
void BoardCanvas::SetupBoard(std::string board, bool is_black_turn,
std::map<char, std::uint8_t> captures) {
this->board = board;
this->is_black_turn = is_black_turn;
this->captures = captures;
Refresh();
}
void BoardCanvas::DrawBoard(wxPaintDC &dc) {
std::uint32_t piece_width = t->GetPiecesSizes();
std::uint32_t centrer_offset = (square_width - piece_width) / 2;
bool DrawDraggingPiece = false;
char dp = 'p';
std::uint32_t dpx = 0, dpy = 0;
for (std::int8_t file = 7; file >= 0; file--) {
for (std::uint8_t rank = 0; rank <= 7; rank++) {
std::uint32_t x = boardX + (7 - file) * square_width;
std::uint32_t y = boardY + rank * square_width;
if ((file + rank) % 2 == 0) {
if (file == 0 && rank == 0) {
dc.DrawBitmap(*t->Get('1'), x, y, true);
} else if (file == 7 && rank == 7) {
dc.DrawBitmap(*t->Get('2'), x, y, true);
} else {
dc.DrawBitmap(*t->Get('s'), x, y, true);
}
} else {
if (file == 7 && rank == 0) {
dc.DrawBitmap(*t->Get('0'), x, y, true);
} else if (file == 0 && rank == 7) {
dc.DrawBitmap(*t->Get('3'), x, y, true);
} else {
dc.DrawBitmap(*t->Get('S'), x, y, true);
}
}
std::uint8_t prank = rank;
std::uint8_t pfile = file;
if (black_side) {
prank = 7 - rank;
pfile = 7 - file;
}
std::uint32_t px = x + centrer_offset;
std::uint32_t py = y + centrer_offset;
char piece = board[(7 - pfile) + 8 * prank];
if (is_dragging && (7 - pfile) == active_square.x &&
(7 - prank) == active_square.y) {
dp = piece;
dpx = px - (lastClickX - mouseX);
dpy = py - (lastClickY - mouseY);
DrawDraggingPiece = true;
continue;
}
if (piece != ' ') {
dc.DrawBitmap(*t->Get(piece), px, py, false);
}
}
}
// Draw badge
dc.SetPen(wxPen(*wxBLACK, 3));
std::uint32_t badgeY = boardY;
std::uint32_t badgeWidth = square_width / 2;
if (is_black_turn) {
dc.SetBrush(*wxBLACK_BRUSH);
if (black_side) {
badgeY = boardY + (8 * square_width) - badgeWidth;
}
} else {
dc.SetBrush(*wxWHITE_BRUSH);
if (!black_side) {
badgeY = boardY + (8 * square_width) - badgeWidth;
}
}
wxRect badge(boardX + (8 * square_width) + badgeWidth / 2, badgeY, badgeWidth,
badgeWidth);
dc.DrawRectangle(badge);
// Draw captures first for white then for black
std::uint32_t captures_size = t_captures->GetPiecesSizes();
std::uint8_t padding = 10;
std::uint32_t offsetX = 0;
std::uint32_t offsetY = -(captures_size + padding);
if (black_side) {
offsetY = 8 * square_width + padding;
}
for (char p : {'P', 'N', 'B', 'R', 'Q'}) {
if (captures.find(p) != captures.end()) {
for (std::uint8_t i = 0; i < captures[p]; i++) {
dc.DrawBitmap(*t_captures->Get(p), boardX + offsetX, boardY + offsetY);
offsetX += captures_size / 2;
}
offsetX += captures_size / 2;
}
}
offsetX = 0;
if (black_side) {
offsetY = -(captures_size + padding);
} else {
offsetY = 8 * square_width + padding;
}
for (char p : {'p', 'n', 'b', 'r', 'q'}) {
if (captures.find(p) != captures.end()) {
for (std::uint8_t i = 0; i < captures[p]; i++) {
dc.DrawBitmap(*t_captures->Get(p), boardX + offsetX, boardY + offsetY);
offsetX += captures_size / 2;
}
offsetX += captures_size / 2;
}
}
// Draw dragging piece
if (DrawDraggingPiece) {
dc.DrawBitmap(*t->Get(dp), dpx, dpy, false);
}
// Draw numbers
for (char l = 'a'; l < 'a' + 8; l++) {
dc.DrawText(wxString(l), wxPoint(boardX + l - 'a' * square_width,
boardY + 8 * square_width + 10));
}
// Draw Clocks
if (std::get<0>(black_time) >= 0) {
wxFont font = dc.GetFont();
ClockTime clock = black_side ? white_time : black_time;
wxString time =
wxString::Format("%ds", std::get<1>(clock), std::get<2>(clock));
if (std::get<0>(clock) > 0) {
time = wxString::Format("%d:%d", std::get<0>(clock), std::get<1>(clock));
} else if (std::get<1>(clock) > 0) {
time = wxString::Format("%d:%ds", std::get<1>(clock), std::get<2>(clock));
}
dc.SetFont(font.Scale(1.5).MakeBold());
wxCoord width, height;
dc.GetTextExtent(time, &width, &height);
dc.DrawText(time,
wxPoint(boardX + square_width * 8 - width, boardY - height));
clock = black_side ? black_time : white_time;
time = wxString::Format("%ds", std::get<1>(clock), std::get<2>(clock));
if (std::get<0>(clock) > 0) {
time = wxString::Format("%d:%d", std::get<0>(clock), std::get<1>(clock));
} else if (std::get<1>(clock) > 0) {
time = wxString::Format("%d:%ds", std::get<1>(clock), std::get<2>(clock));
}
dc.GetTextExtent(time, &width, &height);
dc.DrawText(time, wxPoint(boardX + square_width * 8 - width,
boardY + square_width * 8));
}
}
void BoardCanvas::MouseEvent(wxMouseEvent &event) {
if (!frozen) {
if (event.Dragging()) {
if (valid_drag) {
is_dragging = true;
Refresh();
}
} else {
if (is_dragging) {
is_dragging = false;
valid_drag = false;
// Handle drop
REFRESH_MOUSE_LOCATION();
INIT_CURRENT_SQUARE();
if (IsCurrentSquareValid) {
wxLogDebug("Drag end on square (%d,%d)", file, rank);
/// Play the move
wxCommandEvent event(PLAY_MOVE_EVENT, GetId());
event.SetEventObject(this);
std::string move = ((char)('a' + active_square.x)) +
std::to_string(+active_square.y + 1) +
((char)('a' + file)) + std::to_string(rank + 1);
event.SetString(move);
ProcessEvent(event);
}
}
if (event.LeftDown()) {
SetFocus();
REFRESH_MOUSE_LOCATION();
lastClickX = mouseX;
lastClickY = mouseY;
INIT_CURRENT_SQUARE();
if (IsCurrentSquareValid) {
active_square.x = file;
active_square.y = rank;
if (board[(7 - rank) * 8 + file] != ' ') {
wxLogDebug("Drag start on square (%d,%d)", file, rank);
valid_drag = true;
}
}
}
}
}
}
void BoardCanvas::Zoom(std::int32_t zoom) {
t->Zoom(zoom);
t_captures->ResizePieces(t->GetPiecesSizes() * CAPTURE_FACTOR);
Refresh();
}
void BoardCanvas::Swap() {
black_side = !black_side;
Refresh();
}
void BoardCanvas::OnKeyEvent(wxKeyEvent &event) {
if (event.GetKeyCode() == WXK_LEFT) {
wxCommandEvent previousEvent(PREVIOUS_MOVE_EVENT, GetId());
previousEvent.SetEventObject(this);
ProcessEvent(previousEvent);
} else if (event.GetKeyCode() == WXK_RIGHT) {
wxCommandEvent nextEvent(NEXT_MOVE_EVENT, GetId());
nextEvent.SetEventObject(this);
ProcessEvent(nextEvent);
}
}
void BoardCanvas::SetClockTime(short hours, short min, short sec,
bool IsBlack) {
if (IsBlack) {
black_time = std::make_tuple(hours, min, sec);
} else {
white_time = std::make_tuple(hours, min, sec);
}
}
wxBEGIN_EVENT_TABLE(BoardCanvas, wxPanel) EVT_PAINT(BoardCanvas::OnPaint)
EVT_MOUSE_EVENTS(BoardCanvas::MouseEvent)
EVT_CHAR_HOOK(BoardCanvas::OnKeyEvent) wxEND_EVENT_TABLE()

View file

@ -0,0 +1,68 @@
#pragma once
#include "Theme.hpp"
#include "ochess.hpp"
#include <map>
#include <tuple>
#include <utility>
#include <vector>
#include <wx/artprov.h>
// Local events
wxDECLARE_EVENT(PLAY_MOVE_EVENT, wxCommandEvent);
// Foreign events
wxDECLARE_EVENT(PREVIOUS_MOVE_EVENT, wxCommandEvent);
wxDECLARE_EVENT(NEXT_MOVE_EVENT, wxCommandEvent);
#define REFRESH_MOUSE_LOCATION() \
{ \
const wxPoint pt = wxGetMousePosition(); \
mouseX = pt.x - this->GetScreenPosition().x; \
mouseY = pt.y - this->GetScreenPosition().y; \
}
#define INIT_CURRENT_SQUARE() \
std::uint32_t file = 7 - (mouseX - boardX) / square_width; \
std::uint32_t rank = (mouseY - boardY) / square_width; \
if (!black_side) { \
file = 7 - file; \
rank = 7 - rank; \
} \
bool IsCurrentSquareValid = file >= 0 && file <= 7 && rank >= 0 && rank <= 7;
#define MOUSE_ON(x, y, width, height) \
(mouseX >= (x) && mouseX <= ((x) + (width)) && mouseY >= (y) && \
mouseY <= ((y) + (height)))
#define CAPTURE_FACTOR 0.5
typedef std::tuple<short, short, short> ClockTime;
class BoardCanvas : public wxPanel {
Theme *t, *t_captures;
std::string board;
bool black_side, is_dragging, valid_drag, is_black_turn;
std::uint32_t boardX, boardY, square_width, mouseX, mouseY, lastClickX,
lastClickY;
wxSize canvas_size;
wxPoint active_square;
std::map<char, std::uint8_t> captures;
ClockTime black_time, white_time;
bool frozen,lock_square_size;
public:
BoardCanvas(wxFrame *parent);
BoardCanvas(wxFrame *parent,std::uint32_t square_width, bool frozen);
void ApplyPreferences();
void DrawBoard(wxPaintDC &dc);
void OnPaint(wxPaintEvent &event);
void OnKeyEvent(wxKeyEvent &event);
void MouseEvent(wxMouseEvent &event);
void Zoom(std::int32_t zoom);
void Swap();
void SetupBoard(std::string board, bool is_black_turn,
std::map<char, std::uint8_t> captures);
void SetClockTime(short hours, short min, short sec, bool IsBlack);
DECLARE_EVENT_TABLE()
};

View file

@ -0,0 +1,96 @@
#include "BoardPanel.hpp"
#include <wx/clipbrd.h>
BoardPanel::BoardPanel(wxFrame *parent, Game *game)
: wxPanel(parent), game(game) {
wxBoxSizer *board_panel_sizer = new wxBoxSizer(wxVERTICAL);
board_canvas = new BoardCanvas((wxFrame *)this);
board_panel_sizer->Add(board_canvas, 1, wxEXPAND);
// Left Panel buttons
wxBoxSizer *board_panel_button_sizer = new wxBoxSizer(wxHORIZONTAL);
board_panel_button_sizer->Add(
new wxBitmapButton(this, SWAP_BTN, LoadPNG("swap")), 0);
board_panel_button_sizer->Add(
new wxBitmapButton(this, ZOOM_IN_BTN, LoadPNG("zoomin")), 0);
board_panel_button_sizer->Add(
new wxBitmapButton(this, ZOOM_OUT_BTN, LoadPNG("zoomout")), 0);
board_panel_button_sizer->Add(new wxButton(this, COPY_FEN_BTN, L"Copy FEN"),
0, wxEXPAND);
board_panel_sizer->Add(board_panel_button_sizer, 0);
this->SetSizer(board_panel_sizer);
Bind(PLAY_MOVE_EVENT, &BoardPanel::OnPlay, this, wxID_ANY);
Bind(PREVIOUS_MOVE_EVENT, &BoardPanel::OnPreviousMove, this, wxID_ANY);
Bind(NEXT_MOVE_EVENT, &BoardPanel::OnNextMove, this, wxID_ANY);
Bind(wxEVT_BUTTON, &BoardPanel::OnSwap, this, SWAP_BTN);
Bind(wxEVT_BUTTON, &BoardPanel::OnZoomIn, this, ZOOM_IN_BTN);
Bind(wxEVT_BUTTON, &BoardPanel::OnZoomOut, this, ZOOM_OUT_BTN);
Bind(wxEVT_BUTTON, &BoardPanel::OnCopyFEN, this, COPY_FEN_BTN);
}
void BoardPanel::OnPreviousMove(wxCommandEvent &event) {
game->Previous();
Notify();
NotifyEditor();
}
void BoardPanel::OnZoomIn(wxCommandEvent &event) {
wxLogDebug("Clicked on zoom in");
board_canvas->Zoom(10);
}
void BoardPanel::OnZoomOut(wxCommandEvent &event) {
wxLogDebug("Clicked on zoom out");
board_canvas->Zoom(-10);
}
void BoardPanel::OnSwap(wxCommandEvent &event) {
wxLogDebug("Clicked on swap");
board_canvas->Swap();
}
void BoardPanel::OnNextMove(wxCommandEvent &event) {
wxLogDebug("Game tab received NEXT_MOVE_EVENT");
game->Next();
Notify();
NotifyEditor();
}
void BoardPanel::OnPlay(wxCommandEvent &event) {
wxLogDebug("Game tab received PLAY_MOVE_EVENT");
if (game->Play(event.GetString().ToStdString())) {
NotifyEditor();
}
Notify();
}
void BoardPanel::OnCopyFEN(wxCommandEvent &event) {
wxLogDebug("Clicked on copy fen");
if (wxTheClipboard->Open()) {
wxTheClipboard->SetData(new wxTextDataObject(game->GetFen()));
wxTheClipboard->Close();
}
}
void BoardPanel::Notify() {
std::string fen = game->GetFen();
std::map<char, std::uint8_t> captures;
HalfMove *m = game->GetCurrentMove();
if (m != NULL) {
captures = m->GetLineCaptures();
}
board_canvas->SetupBoard(chessarbiter::FENParser::Parse(fen).board,
game->IsBlackToPlay(), captures);
}
void BoardPanel::NotifyEditor() {
wxCommandEvent previousEvent(GAME_CHANGE, GetId());
previousEvent.SetEventObject(this);
ProcessEvent(previousEvent);
}
void BoardPanel::ApplyPreferences() {
board_canvas->ApplyPreferences();
}

View file

@ -0,0 +1,30 @@
#pragma once
#include "../Game.hpp"
#include "BoardCanvas.hpp"
#include "ochess.hpp"
// Foreign events
wxDECLARE_EVENT(GAME_CHANGE, wxCommandEvent);
enum { COPY_FEN_BTN = wxID_HIGHEST + 1, ZOOM_IN_BTN, ZOOM_OUT_BTN, SWAP_BTN };
class BoardPanel : public wxPanel {
Game *game;
BoardCanvas *board_canvas;
void NotifyEditor();
public:
BoardPanel(wxFrame *parent, Game *game);
void Notify();
void OnPlay(wxCommandEvent &event);
void OnGotoMove(wxCommandEvent &event);
void OnPreviousMove(wxCommandEvent &event);
void OnNextMove(wxCommandEvent &event);
void OnCopyFEN(wxCommandEvent &event);
void OnZoomIn(wxCommandEvent &event);
void OnZoomOut(wxCommandEvent &event);
void OnSwap(wxCommandEvent &event);
void OnRefreshBoard(wxCommandEvent &event);
void ApplyPreferences();
};

View file

@ -0,0 +1,184 @@
#include "Theme.hpp"
#include <wx/filename.h>
Theme::Theme() : square_radius(10) {
// Load config
CONFIG_OPEN(config);
std::string piece =
config->Read("board/theme/pieces/path", "default").ToStdString();
wxFileName piece_file(piece);
std::string square =
config->Read("board/theme/squares/path", "default").ToStdString();
wxFileName square_file(square);
CONFIG_CLOSE(config);
// Piece
if (piece == "default" || !piece_file.FileExists()) {
wxLogDebug("Loading piece skin from binres");
LoadPiecesSkin(LoadPNG("cburnett").ConvertToImage());
} else {
wxLogDebug("Loading piece skin: %s", piece);
LoadPiecesSkin(wxImage(piece, wxBITMAP_TYPE_PNG));
}
// Square
if (square == "default" || !square_file.FileExists()) {
wxLogDebug("Loading square skin from binres");
LoadSquaresSkin(LoadPNG("chesscom_8bits").ConvertToImage());
} else {
wxLogDebug("Loading square skin: %s", square);
LoadSquaresSkin(wxImage(square, wxBITMAP_TYPE_PNG));
}
}
Theme::Theme(std::string piece, std::string square) : square_radius(10) {
wxLogDebug("Loading piece skin: %s", piece);
LoadPiecesSkin(wxImage(piece, wxBITMAP_TYPE_PNG));
wxLogDebug("Loading square skin: %s", square);
LoadSquaresSkin(wxImage(square, wxBITMAP_TYPE_PNG));
}
Theme::~Theme() {
for (std::pair<char, wxBitmap *> c : skin_scaled) {
delete c.second;
}
}
std::uint8_t Theme::GetSquareRadius() { return (square_radius); }
void Theme::LoadPiecesSkin(wxImage iskin) {
if (iskin.GetWidth() != 2 * ELT_DIM || iskin.GetHeight() != 6 * ELT_DIM) {
throw "Invalid piece theme";
}
int offset = 0;
// Kings
skin['k'] = iskin.GetSubImage(wxRect(0, offset, ELT_DIM, ELT_DIM));
skin['K'] = iskin.GetSubImage(wxRect(ELT_DIM, offset, ELT_DIM, ELT_DIM));
// Queen
offset = ELT_DIM;
skin['q'] = iskin.GetSubImage(wxRect(0, offset, ELT_DIM, ELT_DIM));
skin['Q'] = iskin.GetSubImage(wxRect(ELT_DIM, offset, ELT_DIM, ELT_DIM));
// Rook
offset = ELT_DIM * 2;
skin['r'] = iskin.GetSubImage(wxRect(0, offset, ELT_DIM, ELT_DIM));
skin['R'] = iskin.GetSubImage(wxRect(ELT_DIM, offset, ELT_DIM, ELT_DIM));
// Bishop
offset = ELT_DIM * 3;
skin['b'] = iskin.GetSubImage(wxRect(0, offset, ELT_DIM, ELT_DIM));
skin['B'] = iskin.GetSubImage(wxRect(ELT_DIM, offset, ELT_DIM, ELT_DIM));
// Knight
offset = ELT_DIM * 4;
skin['n'] = iskin.GetSubImage(wxRect(0, offset, ELT_DIM, ELT_DIM));
skin['N'] = iskin.GetSubImage(wxRect(ELT_DIM, offset, ELT_DIM, ELT_DIM));
// Pawn
offset = ELT_DIM * 5;
skin['p'] = iskin.GetSubImage(wxRect(0, offset, ELT_DIM, ELT_DIM));
skin['P'] = iskin.GetSubImage(wxRect(ELT_DIM, offset, ELT_DIM, ELT_DIM));
// Update scaled version
ResizePieces(DEFAULT_SIZE * PIECE_SIZE_FACTOR);
}
void Theme::LoadSquaresSkin(wxImage iskin) {
if (iskin.GetWidth() != 2 * ELT_DIM || iskin.GetHeight() != ELT_DIM) {
throw "Invalid piece theme";
}
// Square
skin['s'] = iskin.GetSubImage(wxRect(0, 0, ELT_DIM, ELT_DIM));
skin['S'] = iskin.GetSubImage(wxRect(ELT_DIM, 0, ELT_DIM, ELT_DIM));
// Update scaled version
ResizeSquares(DEFAULT_SIZE);
}
wxBitmap *Theme::Get(char c) { return (skin_scaled[c]); }
void Theme::ResizePieces(std::uint32_t width) {
for (std::pair<char, wxImage> c : skin) {
if (c.first != 's' && c.first != 'S') {
if (skin_scaled.count(c.first))
delete skin_scaled[c.first];
skin_scaled[c.first] =
new wxBitmap(c.second.Scale(width, width, wxIMAGE_QUALITY_HIGH));
}
}
}
void Theme::ResizeSquaresAndPieces(std::uint32_t width) {
ResizeSquares(width);
ResizePieces(width * PIECE_SIZE_FACTOR);
}
void Theme::ResizeSquares(std::uint32_t width) {
if (skin_scaled.count('s'))
delete skin_scaled['s'];
skin_scaled['s'] =
new wxBitmap(skin['s'].Scale(width, width, wxIMAGE_QUALITY_HIGH));
if (skin_scaled.count('S'))
delete skin_scaled['S'];
skin_scaled['S'] =
new wxBitmap(skin['S'].Scale(width, width, wxIMAGE_QUALITY_HIGH));
skin_scaled['0'] = new wxBitmap(*skin_scaled['S']);
skin_scaled['1'] = new wxBitmap(*skin_scaled['s']);
skin_scaled['2'] = new wxBitmap(*skin_scaled['s']);
skin_scaled['3'] = new wxBitmap(*skin_scaled['S']);
skin_scaled['0']->SetMask(RoundedMask(width, 0));
skin_scaled['1']->SetMask(RoundedMask(width, 1));
skin_scaled['2']->SetMask(RoundedMask(width, 2));
skin_scaled['3']->SetMask(RoundedMask(width, 3));
}
void Theme::Zoom(int amount) {
double width = skin_scaled['s']->GetWidth() + amount;
ResizeSquares(std::max(width, 1.0));
ResizePieces(std::max(width * PIECE_SIZE_FACTOR, 1.0));
}
void Theme::SetSquareRadius(std::uint8_t radius) {
square_radius = radius;
Zoom(0); // Refresh scale
}
/**
* This will never fail since k entry always exists (cf constructor and
* ResizePieces)
*/
double Theme::GetPiecesSizes() { return (skin_scaled['k']->GetWidth()); }
/**
* This will never fail since s entry always exists (cf constructor and
* ResizeSquares)
*/
double Theme::GetSquaresSizes() { return (skin_scaled['s']->GetWidth()); }
wxMask *Theme::RoundedMask(std::uint32_t width, std::uint8_t corner) {
wxBitmap b(width, width, 1);
wxMemoryDC dc;
dc.SelectObject(b);
dc.SetPen(*wxBLACK_PEN);
dc.SetBrush(*wxBLACK_BRUSH);
dc.DrawRectangle(0, 0, width, width);
dc.SetBrush(*wxWHITE_BRUSH);
dc.SetPen(*wxWHITE_PEN);
dc.DrawRoundedRectangle(0, 0, width, width, square_radius);
dc.SetBrush(*wxWHITE_BRUSH);
dc.SetPen(*wxWHITE_PEN);
if (corner == 0) {
dc.DrawRectangle(0, width / 2, width, width);
dc.DrawRectangle(width / 2, 0, width, width);
} else if (corner == 1) {
dc.DrawRectangle(0, 0, width / 2, width);
dc.DrawRectangle(0, width / 2, width, width);
} else if (corner == 2) {
dc.DrawRectangle(0, 0, width, width / 2);
dc.DrawRectangle(width / 2, 0, width, width);
} else if (corner == 3) {
dc.DrawRectangle(0, 0, width / 2, width);
dc.DrawRectangle(0, 0, width, width / 2);
}
return (new wxMask(b));
}

View file

@ -0,0 +1,37 @@
#pragma once
#include "ochess.hpp"
#include <string>
#include <unordered_map>
#define ELT_DIM 200
#define DEFAULT_SIZE 80
#define PIECE_SIZE_FACTOR 0.8 // Should be between 0 and 1
#define DEFAULT_PIECE_THEME "assets/pieces/cburnett.png"
#define DEFAULT_SQUARE_THEME "assets/boards/chesscom_8bits.png"
class Theme {
private:
std::unordered_map<char, wxImage> skin;
std::unordered_map<char, wxBitmap *> skin_scaled;
std::uint8_t square_radius;
wxMask *RoundedMask(std::uint32_t width, std::uint8_t corner);
public:
Theme();
Theme(std::string piece, std::string square);
~Theme();
void LoadPiecesSkin(wxImage skin);
void LoadSquaresSkin(wxImage iskin);
void ResizePieces(std::uint32_t width);
void ResizeSquares(std::uint32_t width);
void ResizeSquaresAndPieces(std::uint32_t width);
void SetSquareRadius(std::uint8_t radius);
std::uint8_t GetSquareRadius();
void Zoom(int amount);
double GetPiecesSizes();
double GetSquaresSizes();
wxBitmap *Get(char c);
};

View file

@ -0,0 +1,186 @@
#include "EditorCanvas.hpp"
EditorCanvas::EditorCanvas(wxFrame *parent)
: wxPanel(parent), NeedRedraw(false) {
hide_icon = LoadPNG("hide", wxSize(CGEditor::status.MoveIconWidth,
CGEditor::status.MoveIconWidth));
t.ResizePieces(CGEditor::status.MoveIconWidth);
}
void EditorCanvas::OnPaint(wxPaintEvent &event) {
wxPaintDC current_dc(this);
dc = &current_dc;
// Refresh canvas size
wxSize sz = GetClientSize();
CGEditor::status.CanvasWidth = sz.GetWidth();
CGEditor::status.CanvasHeight = sz.GetHeight();
CGEditor::status.UseMoveIcons =
true; // Piece image should be drawn before the move ?
const wxPoint pt = wxGetMousePosition();
CGEditor::status.MouseX = pt.x - this->GetScreenPosition().x;
CGEditor::status.MouseY = pt.y - this->GetScreenPosition().y;
CGEditor::Draw();
}
/**
* @brief Convenient fonction to center text
*
* @param e Element to center
* @return wxPoint The centered version of e according to wdWidget API
*/
wxPoint EditorCanvas::Middle(cgeditor::Element e) {
wxSize sz = dc->GetTextExtent(e.text);
return (wxPoint(e.x + (e.width - sz.GetWidth()) / 2,
e.y + (e.height - sz.GetHeight()) / 2));
}
void EditorCanvas::DrawElement(const cgeditor::Element &e) {
dc->SetPen(wxNullPen);
dc->SetBrush(*wxRED_BRUSH);
if (e.prop & cgeditor::Property::Rectangle) {
if (e.prop & cgeditor::Property::Scrollbarbg) {
dc->SetBrush(*wxCYAN_BRUSH);
} else if (e.prop & cgeditor::Property::Scrollbar) {
dc->SetBrush(*wxGREY_BRUSH);
} else if (e.prop & cgeditor::Property::Margin) {
dc->SetBrush(*wxLIGHT_GREY_BRUSH);
} else if (e.prop & cgeditor::Property::Button) {
if (e.prop & cgeditor::Property::On) {
dc->DrawBitmap(hide_icon, e.x, e.y);
return;
}
dc->SetBrush(*wxBLACK_BRUSH);
}
wxRect recToDraw(e.x, e.y, e.width, e.height);
dc->DrawRectangle(recToDraw);
} else if (e.prop & cgeditor::Property::Text ||
e.prop & cgeditor::Property::Image) {
if (e.prop & cgeditor::Property::Image) {
// Draw your pieces images instead
std::uint32_t y = Middle(e).y - CGEditor::status.MoveIconWidth / 2;
char p = 'P';
if (e.prop & cgeditor::Property::Knight) {
p = 'N';
} else if (e.prop & cgeditor::Property::Bishop) {
p = 'B';
} else if (e.prop & cgeditor::Property::Queen) {
p = 'Q';
} else if (e.prop & cgeditor::Property::King) {
p = 'K';
}
if (e.prop & cgeditor::Property::Black) {
p = std::tolower(p);
}
if (e.prop & cgeditor::Property::Current) {
wxRect recToDraw(e.x, e.y, e.width, e.height);
dc->SetBrush(*wxLIGHT_GREY_BRUSH);
dc->DrawRectangle(recToDraw);
}
dc->DrawBitmap(*t.Get(p), e.x, y);
} else if (e.prop & cgeditor::Property::Comment) {
wxRect recToDraw(e.x, e.y, e.width, e.height);
dc->SetBrush(*wxYELLOW_BRUSH);
dc->DrawRectangle(recToDraw);
dc->DrawText(wxString(e.text), wxPoint(e.x, e.y));
} else if (e.prop & cgeditor::Property::Menuitem) {
wxRect recToDraw(e.x, e.y, e.width, e.height);
dc->SetBrush(*wxLIGHT_GREY_BRUSH);
dc->DrawRectangle(recToDraw);
dc->DrawText(wxString(e.text), wxPoint(e.x, Middle(e).y));
} else {
if (e.prop & cgeditor::Property::Move) {
if (e.prop & cgeditor::Property::Current) {
wxRect recToDraw(e.x, e.y, e.width, e.height);
dc->SetBrush(*wxLIGHT_GREY_BRUSH);
dc->DrawRectangle(recToDraw);
}
if (CGEditor::status.UseMoveIcons) {
dc->DrawText(wxString(e.text), wxPoint(e.x, Middle(e).y));
} else {
dc->DrawText(wxString(e.text), Middle(e));
}
} else {
dc->DrawText(wxString(e.text), Middle(e));
}
}
}
}
void EditorCanvas::HandleEvent(const cgeditor::Event &e) {
wxLogDebug("Editor event!");
if (e.type == cgeditor::Event::Goto) {
wxCommandEvent event(GOTO_MOVE_EVENT, GetId());
event.SetEventObject(this);
event.SetClientData(e.move);
ProcessEvent(event);
} else if (e.type == cgeditor::Event::Delete) {
wxCommandEvent event(DELETE_MOVE_EVENT, GetId());
event.SetEventObject(this);
event.SetClientData(e.move);
ProcessEvent(event);
} else if (e.type == cgeditor::Event::Promote) {
wxCommandEvent event(PROMOTE_MOVE_EVENT, GetId());
event.SetEventObject(this);
event.SetClientData(e.move);
ProcessEvent(event);
} else if (e.type == cgeditor::Event::SetAsMainline) {
wxCommandEvent event(SET_AS_MAINLINE_EVENT, GetId());
event.SetEventObject(this);
event.SetClientData(e.move);
ProcessEvent(event);
}
}
void EditorCanvas::MouseEvent(wxMouseEvent &event) {
if (event.Dragging()) {
CGEditor::status.LeftClick = false;
CGEditor::status.IsDrag = true;
Refresh();
} else if (event.LeftDown()) {
SetFocus();
CGEditor::status.LeftClick = true;
Refresh();
} else if (event.RightDown()) {
SetFocus();
CGEditor::status.RightClick = true;
Refresh();
} else if (event.GetWheelRotation() != 0) {
SetFocus();
if (event.GetWheelRotation() < 0) {
CGEditor::status.EventVScroll = 50;
} else {
CGEditor::status.EventVScroll = -50;
}
Refresh();
}
// Should another draw of CGEditor be made?
if (NeedRedraw) {
Refresh();
NeedRedraw = false;
}
}
void EditorCanvas::SetMoves(HalfMove *moves, HalfMove *current) {
CGEditor::status.Moves = moves;
CGEditor::status.CurrentMove = current;
Refresh();
}
void EditorCanvas::OnKeyEvent(wxKeyEvent &event) {
if (event.GetKeyCode() == WXK_LEFT) {
wxCommandEvent previousEvent(PREVIOUS_MOVE_EVENT, GetId());
previousEvent.SetEventObject(this);
ProcessEvent(previousEvent);
} else if (event.GetKeyCode() == WXK_RIGHT) {
wxCommandEvent nextEvent(NEXT_MOVE_EVENT, GetId());
nextEvent.SetEventObject(this);
ProcessEvent(nextEvent);
}
}
wxBEGIN_EVENT_TABLE(EditorCanvas, wxPanel) EVT_PAINT(EditorCanvas::OnPaint)
EVT_MOUSE_EVENTS(EditorCanvas::MouseEvent)
EVT_CHAR_HOOK(EditorCanvas::OnKeyEvent) wxEND_EVENT_TABLE()

View file

@ -0,0 +1,33 @@
#pragma once
#include "../HalfMove.hpp"
#include "CGEditor.hpp"
#include "ochess.hpp"
#include "../board/Theme.hpp"
// Foreign events
wxDECLARE_EVENT(GOTO_MOVE_EVENT, wxCommandEvent);
wxDECLARE_EVENT(PREVIOUS_MOVE_EVENT, wxCommandEvent);
wxDECLARE_EVENT(NEXT_MOVE_EVENT, wxCommandEvent);
wxDECLARE_EVENT(DELETE_MOVE_EVENT, wxCommandEvent);
wxDECLARE_EVENT(PROMOTE_MOVE_EVENT, wxCommandEvent);
wxDECLARE_EVENT(SET_AS_MAINLINE_EVENT, wxCommandEvent);
class EditorCanvas : public wxPanel, public cgeditor::CGEditor {
wxPaintDC *dc;
bool NeedRedraw;
wxPoint Middle(cgeditor::Element e);
wxBitmap hide_icon;
Theme t;
public:
EditorCanvas(wxFrame *parent);
void OnPaint(wxPaintEvent &event);
void MouseEvent(wxMouseEvent &event);
void DrawElement(const cgeditor::Element &e);
void HandleEvent(const cgeditor::Event &e);
void SetMoves(HalfMove *moves, HalfMove *current);
void OnKeyEvent(wxKeyEvent &event);
DECLARE_EVENT_TABLE()
};

View file

@ -0,0 +1,207 @@
#include "EditorPanel.hpp"
wxDEFINE_EVENT(GOTO_MOVE_EVENT, wxCommandEvent);
wxDEFINE_EVENT(DELETE_MOVE_EVENT, wxCommandEvent);
wxDEFINE_EVENT(PROMOTE_MOVE_EVENT, wxCommandEvent);
wxDEFINE_EVENT(SET_AS_MAINLINE_EVENT, wxCommandEvent);
wxDEFINE_EVENT(PREVIOUS_MOVE_EVENT, wxCommandEvent);
wxDEFINE_EVENT(NEXT_MOVE_EVENT, wxCommandEvent);
EditorPanel::EditorPanel(wxFrame *parent, Game *game)
: wxPanel(parent), game(game), selected_item(-1) {
// ----- Init -----
wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL);
wxNotebook *notebook = new wxNotebook(this, wxID_ANY);
//----- CGEditor Page -----
wxPanel *cgeditor_panel = new wxPanel(notebook, wxID_ANY);
wxBoxSizer *cgeditor_panel_sizer = new wxBoxSizer(wxVERTICAL);
editor_canvas = new EditorCanvas((wxFrame *)cgeditor_panel);
cgeditor_panel_sizer->Add(editor_canvas, 1, wxEXPAND);
// Comment box
wxStaticBox *commentBox =
new wxStaticBox(cgeditor_panel, wxID_ANY, "Move Comment");
wxBoxSizer *commentBoxSizer = new wxBoxSizer(wxVERTICAL);
comment_input = new wxTextCtrl(
commentBox, COMMENT_INPUT_BOX, wxEmptyString, // Use right ID
wxDefaultPosition, wxSize(0, 150), wxTE_MULTILINE);
commentBoxSizer->Add(comment_input, 0, wxEXPAND);
commentBox->SetSizer(commentBoxSizer);
cgeditor_panel_sizer->Add(commentBox, 0, wxEXPAND);
cgeditor_panel->SetSizer(cgeditor_panel_sizer);
//----- Tags Page -----
wxPanel *tag_panel = new wxPanel(notebook, wxID_ANY);
wxBoxSizer *tag_panel_sizer = new wxBoxSizer(wxVERTICAL);
wxPanel *tag_edit_panel = new wxPanel(tag_panel, wxID_ANY);
wxBoxSizer *tag_edit_panel_sizer = new wxBoxSizer(wxVERTICAL);
tagTextCtrl = new wxTextCtrl(tag_edit_panel, wxID_ANY);
tagTextCtrl->SetHint(wxString("Name"));
tag_edit_panel_sizer->Add(tagTextCtrl, 1, wxEXPAND);
valueTextCtrl = new wxTextCtrl(tag_edit_panel, wxID_ANY);
valueTextCtrl->SetHint(wxString("Value"));
tag_edit_panel_sizer->Add(valueTextCtrl, 1, wxEXPAND);
tag_edit_panel_sizer->Add(new wxButton(tag_edit_panel, UPDATE_BTN, L"Update"),
1, wxEXPAND);
tag_edit_panel->SetSizer(tag_edit_panel_sizer);
tag_panel_sizer->Add(tag_edit_panel, 0, wxEXPAND);
tags_list = new wxListCtrl(tag_panel, wxID_ANY, wxDefaultPosition,
wxDefaultSize, wxLC_REPORT);
tags_list->InsertColumn(0, L"Name");
tags_list->InsertColumn(1, L"Value", wxLIST_FORMAT_LEFT, 500);
RefreshTagsList();
tag_panel_sizer->Add(tags_list, 1, wxEXPAND);
delete_button = new wxButton(tag_panel, DELETE_BTN, L"Delete");
delete_button->Enable(false);
tag_panel_sizer->Add(delete_button, 0, wxEXPAND);
tag_panel->SetSizer(tag_panel_sizer);
//----- Notebook -----
notebook->AddPage(cgeditor_panel, L"Editor");
notebook->AddPage(tag_panel, L"Tags");
sizer->Add(notebook, 1, wxEXPAND);
//----- Sizer -----
this->SetSizer(sizer);
// Bind events
this->Bind(wxEVT_TEXT, &EditorPanel::OnCommentChange, this,
COMMENT_INPUT_BOX);
this->Bind(GOTO_MOVE_EVENT, &EditorPanel::OnGotoMove, this, wxID_ANY);
this->Bind(DELETE_MOVE_EVENT, &EditorPanel::OnMoveDelete, this, wxID_ANY);
this->Bind(PROMOTE_MOVE_EVENT, &EditorPanel::OnMovePromote, this, wxID_ANY);
this->Bind(SET_AS_MAINLINE_EVENT, &EditorPanel::OnMoveSetAsMainline, this,
wxID_ANY);
this->Bind(NEXT_MOVE_EVENT, &EditorPanel::OnNextMove, this, wxID_ANY);
this->Bind(PREVIOUS_MOVE_EVENT, &EditorPanel::OnPreviousMove, this, wxID_ANY);
this->Bind(wxEVT_LIST_ITEM_SELECTED, &EditorPanel::OnTagSelected, this,
wxID_ANY);
this->Bind(wxEVT_LIST_ITEM_DESELECTED, &EditorPanel::OnTagDeselected, this,
wxID_ANY);
this->Bind(wxEVT_BUTTON, &EditorPanel::OnApply, this, UPDATE_BTN);
this->Bind(wxEVT_BUTTON, &EditorPanel::OnDelete, this, DELETE_BTN);
}
void EditorPanel::OnTagSelected(wxListEvent &event) {
wxListItem item = event.GetItem();
std::string key = item.GetText().ToStdString();
tagTextCtrl->ChangeValue(key);
item.SetColumn(1);
tags_list->GetItem(item);
valueTextCtrl->ChangeValue(item.GetText().ToStdString());
selected_item = item.GetId();
delete_button->Enable(true);
}
void EditorPanel::OnTagDeselected(wxListEvent &event) {
selected_item = -1;
delete_button->Enable(false);
}
void EditorPanel::NotifyBoard() {
wxCommandEvent previousEvent(GAME_CHANGE, GetId());
previousEvent.SetEventObject(this);
ProcessEvent(previousEvent);
}
void EditorPanel::OnCommentChange(wxCommandEvent &event) {
wxLogDebug("EditorPanel: comment input change");
HalfMove *m = game->GetCurrentMove();
if (m != NULL) {
m->SetComment(event.GetString().ToStdString());
}
editor_canvas->Refresh();
}
void EditorPanel::OnApply(wxCommandEvent &event) {
std::string key = tagTextCtrl->GetValue().ToStdString();
if (key == "FEN") {
SHOW_DIALOG_ERROR("Editing the FEN tag is forbidden");
return;
}
if (key.size() > 0) {
std::string value = valueTextCtrl->GetValue().ToStdString();
game->SetTag(key, value);
RefreshTagsList();
wxCommandEvent event(REFRESH_TAB_TITLE, GetId());
event.SetEventObject(this);
ProcessEvent(event);
}
}
void EditorPanel::OnDelete(wxCommandEvent &event) {
if (selected_item >= 0) {
wxListItem item;
item.SetColumn(0);
item.SetId(selected_item);
tags_list->GetItem(item);
std::string key = item.GetText().ToStdString();
if (key != "FEN") {
game->DeleteTag(key);
selected_item = -1;
RefreshTagsList();
} else {
SHOW_DIALOG_ERROR("Deleting the FEN tag is forbidden.");
}
}
}
void EditorPanel::OnGotoMove(wxCommandEvent &event) {
wxLogDebug("EditorPanel: received GOTO_MOVE_EVENT");
game->SetCurrent((HalfMove *)event.GetClientData());
NotifyBoard();
editor_canvas->Refresh();
}
void EditorPanel::OnMoveDelete(wxCommandEvent &event) {
game->DeleteMove((HalfMove *)event.GetClientData());
NotifyBoard();
editor_canvas->Refresh();
}
void EditorPanel::OnMovePromote(wxCommandEvent &event) {
wxLogDebug("EditorPanel: promote move called");
game->PromoteMove((HalfMove *)event.GetClientData());
NotifyBoard();
editor_canvas->Refresh();
}
void EditorPanel::OnMoveSetAsMainline(wxCommandEvent &event) {
wxLogDebug("EditorPanel: set move as mainline called");
game->SetMoveAsMainline((HalfMove *)event.GetClientData());
NotifyBoard();
editor_canvas->Refresh();
}
void EditorPanel::Notify() {
HalfMove *m = game->GetCurrentMove();
if (m != NULL) {
comment_input->ChangeValue(
m->GetComment()); // ChangeValue do not raise events
}
editor_canvas->SetMoves(game->GetMoves(), m);
}
void EditorPanel::RefreshTagsList() {
tags_list->DeleteAllItems();
for (std::string s : game->ListTags()) {
long index = tags_list->InsertItem(0, s);
tags_list->SetItem(index, 1, game->GetTag(s));
if (s == "FEN") {
tags_list->SetItemBackgroundColour(index, wxColour(200, 200, 200));
}
}
}
void EditorPanel::OnPreviousMove(wxCommandEvent &event) {
game->Previous();
Notify();
NotifyBoard();
}
void EditorPanel::OnNextMove(wxCommandEvent &event) {
game->Next();
Notify();
NotifyBoard();
}

View file

@ -0,0 +1,44 @@
#include "../Game.hpp"
#include "EditorCanvas.hpp"
#include "ochess.hpp"
#include <wx/listctrl.h>
#include <wx/notebook.h>
// Local events
wxDECLARE_EVENT(GOTO_MOVE_EVENT, wxCommandEvent);
wxDECLARE_EVENT(DELETE_MOVE_EVENT, wxCommandEvent);
wxDECLARE_EVENT(PROMOTE_MOVE_EVENT, wxCommandEvent);
wxDECLARE_EVENT(SET_AS_MAINLINE_EVENT, wxCommandEvent);
wxDECLARE_EVENT(REFRESH_TAB_TITLE, wxCommandEvent);
// Foreign events
wxDECLARE_EVENT(GAME_CHANGE, wxCommandEvent);
enum { COMMENT_INPUT_BOX = wxID_HIGHEST + 100, UPDATE_BTN, DELETE_BTN };
class EditorPanel : public wxPanel {
Game *game;
EditorCanvas *editor_canvas;
wxTextCtrl *comment_input;
wxListCtrl *tags_list;
wxTextCtrl *tagTextCtrl, *valueTextCtrl;
wxButton *delete_button;
long selected_item;
public:
EditorPanel(wxFrame *parent, Game *game);
void NotifyBoard();
void Notify();
void OnCommentChange(wxCommandEvent &event);
void OnGotoMove(wxCommandEvent &event);
void OnMoveDelete(wxCommandEvent &event);
void OnMovePromote(wxCommandEvent &event);
void OnMoveSetAsMainline(wxCommandEvent &event);
void RefreshTagsList();
void OnTagSelected(wxListEvent &event);
void OnTagDeselected(wxListEvent &event);
void OnApply(wxCommandEvent &event);
void OnDelete(wxCommandEvent &event);
void OnPreviousMove(wxCommandEvent &event);
void OnNextMove(wxCommandEvent &event);
};

18
src/ochess.cpp Normal file
View file

@ -0,0 +1,18 @@
#include "ochess.hpp"
#include "MainWindow.hpp"
bool MyApp::OnInit() {
wxImage::AddHandler(new wxPNGHandler);
MainWindow *frame = new MainWindow();
frame->Show(true);
return true;
}
wxIMPLEMENT_APP(MyApp);
void Abort(std::string msg) {
wxMessageDialog *dial = new wxMessageDialog(NULL, wxString(msg), wxT("Error"),
wxOK | wxICON_ERROR);
dial->ShowModal();
wxLogFatalError(wxString(msg));
}

57
src/ochess.hpp Normal file
View file

@ -0,0 +1,57 @@
#pragma once
#include <wx/wxprec.h>
#ifndef WX_PRECOMP
#include <wx/wx.h>
#endif
#include "binres/binres.hpp"
#include <wx/app.h>
#include <wx/config.h>
#include <wx/filefn.h> // Check file exists etc
#include <wx/log.h>
#define MAINWIN ((MainWindow *)wxGetApp().GetTopWindow())
#define SHOW_DIALOG_ERROR(message) \
{ \
wxMessageDialog *dial = new wxMessageDialog( \
NULL, wxT(message), wxT("Error"), wxOK | wxICON_ERROR); \
dial->ShowModal(); \
}
#define REQUIRE_FILE(file) \
{ \
if (!wxFileExists(file)) { \
Abort(std::string("File ") + file + std::string(" not found")); \
} \
}
#define CONFIG_OPEN(name) wxConfig *name = new wxConfig("ochess")
#define CONFIG_CLOSE(name) delete name
/**
* @brief Main application
*
*/
class MyApp : public wxApp {
public:
virtual bool OnInit();
};
wxDECLARE_APP(MyApp);
///@brief Abort ochess with a message
void Abort(std::string msg);
/**
* @brief Attach informations to the application tabs
*
*/
class TabInfos {
public:
typedef enum Type { GAME, NONE } Type;
Type type;
TabInfos(Type type_) : type(type_) {}
virtual void ApplyPreferences() = 0;
};

View file

@ -0,0 +1,113 @@
#include "BoardPrefsPanelBF.h"
#include "game_tab/board/BoardCanvas.hpp"
#include "ochess.hpp"
#include <wx/combobox.h>
#include <wx/dir.h>
#include <wx/filename.h>
#include <wx/preferences.h>
#include <wx/spinctrl.h>
#include <wx/stdpaths.h>
class BoardPrefsPanel : public BoardPrefsPanelBF {
BoardCanvas *real_board_canvas;
wxFileName pieces_path;
wxFileName squares_path;
public:
BoardPrefsPanel(wxWindow *parent) : BoardPrefsPanelBF(parent) {
wxBoxSizer *sizer = new wxBoxSizer(wxHORIZONTAL);
real_board_canvas = new BoardCanvas((wxFrame *)board_canvas, 40, true);
sizer->Add(real_board_canvas, 1, wxEXPAND, 5);
board_canvas->SetSizerAndFit(sizer);
wxStandardPaths p = wxStandardPaths::Get();
pieces_path = wxFileName(p.GetExecutablePath());
pieces_path = pieces_path.GetPath() + "/assets/pieces";
squares_path = wxFileName(pieces_path);
squares_path = squares_path.GetPath() + "/boards";
wxLogDebug(squares_path.GetFullPath());
Bind(wxEVT_LISTBOX, &BoardPrefsPanel::OnConfChange, this, wxID_ANY);
Bind(wxEVT_SPINCTRL, &BoardPrefsPanel::OnConfChange, this, wxID_ANY);
}
void OnConfChange(wxCommandEvent &event) {
ApplyPreferences();
real_board_canvas->ApplyPreferences();
}
virtual bool TransferDataToWindow() {
wxLogDebug("Load!");
wxDir pieces_dir(pieces_path.GetFullPath());
wxString filename;
bool cont = pieces_dir.GetFirst(&filename, wxEmptyString, wxDIR_DEFAULT);
piece_theme->Append("default");
while (cont) {
wxFileName fn(filename);
fn.ClearExt();
piece_theme->Append(fn.GetName());
cont = pieces_dir.GetNext(&filename);
}
wxDir squares_dir(squares_path.GetFullPath());
cont = squares_dir.GetFirst(&filename, wxEmptyString, wxDIR_DEFAULT);
square_theme->Append("default");
while (cont) {
wxFileName fn(filename);
fn.ClearExt();
square_theme->Append(fn.GetName());
cont = squares_dir.GetNext(&filename);
}
CONFIG_OPEN(config);
piece_theme->SetStringSelection(
config->Read("board/theme/pieces/name", "default"));
square_theme->SetStringSelection(
config->Read("board/theme/squares/name", "default"));
show_side_badge->SetValue(config->Read("board/show_side_badge", true));
show_captures->SetValue(config->Read("board/show_captures", true));
black_by_default->SetValue(config->Read("board/black_by_default", false));
corner_radius->SetValue(config->Read("board/corner_radius", 8));
square_size->SetValue(config->Read("board/square_size", 80));
CONFIG_CLOSE(config);
return true;
}
void ApplyPreferences() {
CONFIG_OPEN(config);
wxString cur_theme = piece_theme->GetString(piece_theme->GetSelection());
config->Write("board/theme/pieces/name", cur_theme);
config->Write("board/theme/pieces/path",
pieces_path.GetFullPath() + "/" + cur_theme + ".png");
cur_theme = square_theme->GetString(square_theme->GetSelection());
config->Write("board/theme/squares/name", cur_theme);
config->Write("board/theme/squares/path",
squares_path.GetFullPath() + "/" + cur_theme + ".png");
config->Write("board/show_side_badge", show_side_badge->GetValue());
config->Write("board/show_captures", show_captures->GetValue());
config->Write("board/black_by_default", black_by_default->GetValue());
config->Write("board/corner_radius", corner_radius->GetValue());
config->Write("board/square_size", square_size->GetValue());
CONFIG_CLOSE(config);
}
virtual bool TransferDataFromWindow() {
ApplyPreferences();
MAINWIN->ApplyPreferences();
return (true);
}
};
class BoardPrefs : public wxPreferencesPage {
public:
virtual wxString GetName() const { return "Board"; }
virtual wxBitmap GetLargeIcon() {
return wxArtProvider::GetBitmap(wxART_HELP, wxART_TOOLBAR);
}
virtual wxWindow *CreateWindow(wxWindow *parent) {
return new BoardPrefsPanel(parent);
}
};

View file

@ -0,0 +1,106 @@
///////////////////////////////////////////////////////////////////////////
// C++ code generated with wxFormBuilder (version 3.10.1-40-g8042f487)
// http://www.wxformbuilder.org/
//
// PLEASE DO *NOT* EDIT THIS FILE!
///////////////////////////////////////////////////////////////////////////
#include "BoardPrefsPanelBF.h"
///////////////////////////////////////////////////////////////////////////
BoardPrefsPanelBF::BoardPrefsPanelBF( wxWindow* parent, wxWindowID id, const wxPoint& pos, const wxSize& size, long style, const wxString& name ) : wxPanel( parent, id, pos, size, style, name )
{
wxBoxSizer* main_sizer;
main_sizer = new wxBoxSizer( wxVERTICAL );
splitter = new wxSplitterWindow( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxSP_3D|wxSP_LIVE_UPDATE );
splitter->Connect( wxEVT_IDLE, wxIdleEventHandler( BoardPrefsPanelBF::splitterOnIdle ), NULL, this );
board_canvas = new wxPanel( splitter, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL );
options_panel = new wxPanel( splitter, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL );
wxBoxSizer* options_sizer;
options_sizer = new wxBoxSizer( wxVERTICAL );
wxBoxSizer* themes_sizer;
themes_sizer = new wxBoxSizer( wxHORIZONTAL );
wxBoxSizer* piece_theme_sizer;
piece_theme_sizer = new wxBoxSizer( wxVERTICAL );
piece_theme_label = new wxStaticText( options_panel, wxID_ANY, wxT("Piece theme"), wxDefaultPosition, wxDefaultSize, 0 );
piece_theme_label->Wrap( -1 );
piece_theme_sizer->Add( piece_theme_label, 0, wxALL, 5 );
piece_theme = new wxListBox( options_panel, wxID_ANY, wxDefaultPosition, wxDefaultSize, 0, NULL, 0 );
piece_theme_sizer->Add( piece_theme, 1, wxALL|wxEXPAND, 5 );
themes_sizer->Add( piece_theme_sizer, 1, wxEXPAND, 5 );
wxBoxSizer* square_theme_sizer;
square_theme_sizer = new wxBoxSizer( wxVERTICAL );
square_theme_label = new wxStaticText( options_panel, wxID_ANY, wxT("Square theme"), wxDefaultPosition, wxDefaultSize, 0 );
square_theme_label->Wrap( -1 );
square_theme_sizer->Add( square_theme_label, 0, wxALL, 5 );
square_theme = new wxListBox( options_panel, wxID_ANY, wxDefaultPosition, wxDefaultSize, 0, NULL, 0 );
square_theme_sizer->Add( square_theme, 1, wxALL|wxEXPAND, 5 );
themes_sizer->Add( square_theme_sizer, 1, wxEXPAND, 5 );
options_sizer->Add( themes_sizer, 1, wxEXPAND, 5 );
show_side_badge = new wxCheckBox( options_panel, wxID_ANY, wxT("Side to play badge"), wxDefaultPosition, wxDefaultSize, 0 );
options_sizer->Add( show_side_badge, 0, wxALL, 5 );
show_captures = new wxCheckBox( options_panel, wxID_ANY, wxT("Show captured pieces"), wxDefaultPosition, wxDefaultSize, 0 );
options_sizer->Add( show_captures, 0, wxALL, 5 );
black_by_default = new wxCheckBox( options_panel, wxID_ANY, wxT("Black side by default"), wxDefaultPosition, wxDefaultSize, 0 );
options_sizer->Add( black_by_default, 0, wxALL, 5 );
wxBoxSizer* border_radius_sizer;
border_radius_sizer = new wxBoxSizer( wxHORIZONTAL );
border_radius_label = new wxStaticText( options_panel, wxID_ANY, wxT("Corner radius:"), wxDefaultPosition, wxDefaultSize, 0 );
border_radius_label->Wrap( -1 );
border_radius_sizer->Add( border_radius_label, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5 );
corner_radius = new wxSpinCtrl( options_panel, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, 0, 20, 0 );
border_radius_sizer->Add( corner_radius, 0, wxALL, 5 );
options_sizer->Add( border_radius_sizer, 0, wxEXPAND, 5 );
wxBoxSizer* board_size_sizer;
board_size_sizer = new wxBoxSizer( wxHORIZONTAL );
board_size_label = new wxStaticText( options_panel, wxID_ANY, wxT("Board squares size:"), wxDefaultPosition, wxDefaultSize, 0 );
board_size_label->Wrap( -1 );
board_size_sizer->Add( board_size_label, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5 );
square_size = new wxSpinCtrl( options_panel, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, 20, 150, 0 );
board_size_sizer->Add( square_size, 0, wxALL|wxEXPAND, 5 );
options_sizer->Add( board_size_sizer, 0, wxEXPAND, 5 );
options_panel->SetSizer( options_sizer );
options_panel->Layout();
options_sizer->Fit( options_panel );
splitter->SplitHorizontally( board_canvas, options_panel, 350 );
main_sizer->Add( splitter, 1, wxEXPAND, 5 );
this->SetSizer( main_sizer );
this->Layout();
}
BoardPrefsPanelBF::~BoardPrefsPanelBF()
{
}

View file

@ -0,0 +1,64 @@
///////////////////////////////////////////////////////////////////////////
// C++ code generated with wxFormBuilder (version 3.10.1-40-g8042f487)
// http://www.wxformbuilder.org/
//
// PLEASE DO *NOT* EDIT THIS FILE!
///////////////////////////////////////////////////////////////////////////
#pragma once
#include <wx/artprov.h>
#include <wx/xrc/xmlres.h>
#include <wx/panel.h>
#include <wx/gdicmn.h>
#include <wx/font.h>
#include <wx/colour.h>
#include <wx/settings.h>
#include <wx/string.h>
#include <wx/stattext.h>
#include <wx/listbox.h>
#include <wx/sizer.h>
#include <wx/checkbox.h>
#include <wx/spinctrl.h>
#include <wx/splitter.h>
///////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
/// Class BoardPrefsPanelBF
///////////////////////////////////////////////////////////////////////////////
class BoardPrefsPanelBF : public wxPanel
{
private:
protected:
wxSplitterWindow* splitter;
wxPanel* board_canvas;
wxPanel* options_panel;
wxStaticText* piece_theme_label;
wxListBox* piece_theme;
wxStaticText* square_theme_label;
wxListBox* square_theme;
wxCheckBox* show_side_badge;
wxCheckBox* show_captures;
wxCheckBox* black_by_default;
wxStaticText* border_radius_label;
wxSpinCtrl* corner_radius;
wxStaticText* board_size_label;
wxSpinCtrl* square_size;
public:
BoardPrefsPanelBF( wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 756,751 ), long style = wxTAB_TRAVERSAL, const wxString& name = wxEmptyString );
~BoardPrefsPanelBF();
void splitterOnIdle( wxIdleEvent& )
{
splitter->SetSashPosition( 350 );
splitter->Disconnect( wxEVT_IDLE, wxIdleEventHandler( BoardPrefsPanelBF::splitterOnIdle ), NULL, this );
}
};

View file

@ -0,0 +1,2 @@
#pragma once
#include "BoardPrefs.hpp"

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 453 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 453 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 453 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

View file

@ -0,0 +1,145 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="94.090538mm"
height="105.26214mm"
viewBox="0 0 94.090538 105.26214"
version="1.1"
id="svg8"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
sodipodi:docname="ochess.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.7"
inkscape:cx="-96.219812"
inkscape:cy="-20.529822"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1908"
inkscape:window-height="1011"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-69.455414,-79.363892)">
<g
transform="rotate(-30,87.189344,145.03902)"
id="g899"
style="fill:#f2f2f2;stroke:#1a1a1a;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none">
<rect
style="opacity:1;vector-effect:none;fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#1a1a1a;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
id="rect893"
width="11.528275"
height="57.830357"
x="107.15624"
y="117.27232" />
<rect
y="164.33034"
x="94.116066"
height="10.961308"
width="37.608631"
id="rect895"
style="opacity:1;vector-effect:none;fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#1a1a1a;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
ry="1.6863563" />
<rect
style="opacity:1;vector-effect:none;fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#1a1a1a;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
id="rect897"
width="61.421131"
height="14.741071"
x="82.209816"
y="172.64581"
ry="1.5633242" />
<circle
style="opacity:1;vector-effect:none;fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#1a1a1a;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
id="circle889"
cx="112.92038"
cy="110.09077"
r="21.544643" />
<rect
style="opacity:1;vector-effect:none;fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#1a1a1a;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
id="rect891"
width="37.608631"
height="5.4806542"
x="94.116066"
y="127.85564"
ry="1.3229166" />
</g>
<g
style="fill:#4d4d4d;fill-opacity:1;stroke:#1a1a1a;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="rotate(30,142.23172,158.40089)"
id="g911">
<rect
style="opacity:1;vector-effect:none;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:#1a1a1a;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
id="rect901"
width="11.528275"
height="57.830357"
x="107.15624"
y="117.27232" />
<circle
style="opacity:1;vector-effect:none;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:#1a1a1a;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
id="circle903"
cx="112.92038"
cy="110.09077"
r="21.544643" />
<rect
style="opacity:1;vector-effect:none;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:#1a1a1a;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
id="rect905"
width="37.608631"
height="5.4806542"
x="94.116066"
y="127.85564"
ry="1.3229166" />
<rect
y="164.33034"
x="94.116066"
height="10.961308"
width="37.608631"
id="rect907"
style="opacity:1;vector-effect:none;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:#1a1a1a;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
ry="1.6863563" />
<rect
style="opacity:1;vector-effect:none;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:#1a1a1a;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
id="rect909"
width="61.421131"
height="14.741071"
x="82.209816"
y="172.64581"
ry="1.5633242" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 132 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 KiB

Binary file not shown.

Binary file not shown.

10
tools/docker/archlinux Normal file
View file

@ -0,0 +1,10 @@
FROM archlinux/base
RUN pacman -Sy --noconfirm && pacman -S --noconfirm boost cmake base-devel git sudo
RUN useradd --system --create-home aur
RUN echo 'aur ALL=NOPASSWD: /usr/bin/pacman' > /etc/sudoers.d/aur
RUN cd /home/aur && runuser -u aur -- git clone https://aur.archlinux.org/yay.git && cd yay && runuser -u aur -- makepkg -si --noconfirm && cd -
RUN runuser -u aur -- yay -Sy --noconfirm wxgtk3-dev
RUN ln -sf /usr/bin/wx-config-gtk3 /usr/bin/wx-config
ENTRYPOINT /usr/bin/bash

4
tools/docker/debian Normal file
View file

@ -0,0 +1,4 @@
FROM debian:stable
RUN apt-get -qq update
RUN apt-get -qq install -y cmake libboost-all-dev build-essential libwxgtk3.0-dev

4
tools/docker/fedora Normal file
View file

@ -0,0 +1,4 @@
FROM fedora:latest
RUN dnf upgrade -y
RUN dnf install -y cmake boost boost-devel make automake gcc gcc-c++ wxBase3-devel wxGTK3-devel

View file

@ -0,0 +1,32 @@
# Maintainer: Loic Guegan <loic.guegan@mailbox.org>
pkgname=ochess
pkgver=0.1
pkgrel=0.1
pkgdesc='Open source chess database/games management.'
arch=(x86_64)
url='https://gitlab.com/manzerbredes/ochess'
license=(GPL)
depends=()
makedepends=(wxgtk3-dev gcc)
source=("ochess-master.tar.bz2")
sha256sums=('b9ca8efd769945b5cc55370a863d2f8f4bca82699c5f775c844a7b95a2829187')
options=(!buildflags)
build() {
cd ochess-master
mkdir -p build
cd build
cmake ../
make
}
package() {
mkdir -p $pkgdir/usr/bin/
mkdir -p $pkgdir/usr/share/ochess/
cd ochess-master/build/
cp ochess $pkgdir/usr/bin/
cp -r assets $pkgdir/usr/share/ochess/
}

8
tools/packages/debian/control Executable file
View file

@ -0,0 +1,8 @@
Package: Ochess
Version: 1.0-1
Section: base
Priority: optional
Architecture: amd64
Depends: libboost-all-dev, build-essential, libwxgtk3.0-dev
Maintainer: Loic Guegan <loic.guegan@mailbox.org>
Description: Basic Ochess package

View file

@ -0,0 +1,25 @@
#!/bin/bash
archive="ochess-master.tar.bz2"
pkg="ochess"
# Build
tar -xvf $archive
old_dir=$(pwd)
cd ochess-master/
mkdir -p build && cd build
cmake ../
make
cd $old_dir
# Create pkg
mkdir -p $pkg/usr/local/bin
mkdir -p $pkg/usr/share/ochess
mkdir -p $pkg/DEBIAN
cp ochess-master/build/ochess $pkg/usr/local/bin/
cp -r ochess-master/build/assets/ $pkg/usr/share/ochess/
cp control $pkg/DEBIAN/
# Build package
dpkg-deb --build ochess

BIN
tools/packages/debian/ochess.deb Executable file

Binary file not shown.

17
tools/skin/README.md Normal file
View file

@ -0,0 +1,17 @@
# How skins work
Every skins are made of `200x200` square images. Thus, board skins
are `400x200` images and pieces skins are `400x1200` images.
How to make a skin ? Create a sub-directory in boards/pieces named by your skin name and put every svg files which compose your skin. Then run:
> ./generate.sh
Then your skin should appears in the assets directory.
**Warning:** *Please have consistent svg file names (see existing skins).*
Existing skins sources:
- [chesscom](https://www.chess.com/)
- [cburnett](https://commons.wikimedia.org/wiki/Category:SVG_chess_pieces)
- [mgilberto](https://svg-clipart.com/symbol/YCQnfQg-chess-set-symbols-clipart)
- [simple](https://freesvg.org/chess-pieces-vector)

View file

@ -0,0 +1,69 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="81.071434"
height="81.071434"
viewBox="0 0 21.45015 21.450151"
version="1.1"
id="svg8"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
sodipodi:docname="bs.svg"
inkscape:export-filename="/home/loic/Documents/Git/manzerbredes/ochess/tools/skin/boards/chesscom_8bits/bs.png"
inkscape:export-xdpi="240"
inkscape:export-ydpi="240">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.49497475"
inkscape:cx="255.30443"
inkscape:cy="493.44595"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1908"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1"
units="px"
inkscape:snap-global="false" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0.1417418,-275.7388)">
<rect
style="opacity:1;vector-effect:none;fill:#6a9b41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.17734376;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect7173"
width="21.45015"
height="21.45015"
x="-0.1417418"
y="275.7388" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,69 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="79.64286"
height="79.64286"
viewBox="0 0 21.072173 21.072174"
version="1.1"
id="svg8"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
sodipodi:docname="ws.svg"
inkscape:export-filename="/home/loic/Documents/Git/manzerbredes/ochess/tools/skin/boards/chesscom_8bits/ws.png"
inkscape:export-xdpi="240"
inkscape:export-ydpi="240">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.49497475"
inkscape:cx="-625.85751"
inkscape:cy="104.6499"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1908"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1"
units="px"
inkscape:snap-global="false" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-0.0472463,-275.88055)">
<rect
style="opacity:1;vector-effect:none;fill:#f2f2f3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.17421874;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect7173"
width="21.072174"
height="21.072174"
x="0.047246296"
y="275.88055" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,69 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="81.071434"
height="81.071434"
viewBox="0 0 21.45015 21.450151"
version="1.1"
id="svg8"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
sodipodi:docname="bs.svg"
inkscape:export-filename="/home/loic/Documents/Git/manzerbredes/ochess/assets/pieces/chesscom/bs.png"
inkscape:export-xdpi="240"
inkscape:export-ydpi="240">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="5.6"
inkscape:cx="62.62874"
inkscape:cy="30.89475"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1908"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1"
units="px"
inkscape:snap-global="false" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0.1417418,-275.7388)">
<rect
style="opacity:1;vector-effect:none;fill:#4b7399;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.17734376;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect7173"
width="21.45015"
height="21.45015"
x="-0.1417418"
y="275.7388" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,69 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="79.64286"
height="79.64286"
viewBox="0 0 21.072173 21.072174"
version="1.1"
id="svg8"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
sodipodi:docname="ws.svg"
inkscape:export-filename="/home/loic/Documents/Git/manzerbredes/ochess/tools/skin/boards/chesscom/ws.png"
inkscape:export-xdpi="240"
inkscape:export-ydpi="240">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="5.6"
inkscape:cx="-7.1639001"
inkscape:cy="43.001391"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1908"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1"
units="px"
inkscape:snap-global="false" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-0.0472463,-275.88055)">
<rect
style="opacity:1;vector-effect:none;fill:#eeeed2;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.17421874;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect7173"
width="21.072174"
height="21.072174"
x="0.047246296"
y="275.88055" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,69 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="81.071434"
height="81.071434"
viewBox="0 0 21.45015 21.450151"
version="1.1"
id="svg8"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
sodipodi:docname="bs.svg"
inkscape:export-filename="/home/loic/Documents/Git/manzerbredes/ochess/tools/skin/boards/chesscom_brown/bs.png"
inkscape:export-xdpi="240"
inkscape:export-ydpi="240">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.98994949"
inkscape:cx="22.782983"
inkscape:cy="-186.17359"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1908"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1"
units="px"
inkscape:snap-global="false" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0.1417418,-275.7388)">
<rect
style="opacity:1;vector-effect:none;fill:#b58863;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.17734376;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect7173"
width="21.45015"
height="21.45015"
x="-0.1417418"
y="275.7388" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,69 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="79.64286"
height="79.64286"
viewBox="0 0 21.072173 21.072174"
version="1.1"
id="svg8"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
sodipodi:docname="ws.svg"
inkscape:export-filename="/home/loic/Documents/Git/manzerbredes/ochess/tools/skin/boards/chesscom/ws.png"
inkscape:export-xdpi="240"
inkscape:export-ydpi="240">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="-114.27424"
inkscape:cy="-0.41277958"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1908"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1"
units="px"
inkscape:snap-global="false" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-0.0472463,-275.88055)">
<rect
style="opacity:1;vector-effect:none;fill:#f0d9b5;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.17421874;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect7173"
width="21.072174"
height="21.072174"
x="0.047246296"
y="275.88055" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,69 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="79.64286"
height="79.64286"
viewBox="0 0 21.072173 21.072174"
version="1.1"
id="svg8"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
sodipodi:docname="bs.svg"
inkscape:export-filename="/home/loic/Documents/Git/manzerbredes/ochess/assets/pieces/chesscom/bs.png"
inkscape:export-xdpi="240"
inkscape:export-ydpi="240">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="5.6"
inkscape:cx="73.882547"
inkscape:cy="36.899789"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1908"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1"
units="px"
inkscape:snap-global="false" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-0.0472463,-275.88055)">
<rect
style="opacity:1;vector-effect:none;fill:#769656;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.17421874;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect7173"
width="21.072174"
height="21.072174"
x="0.047246296"
y="275.88055" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,69 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="79.64286"
height="79.64286"
viewBox="0 0 21.072173 21.072174"
version="1.1"
id="svg8"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
sodipodi:docname="ws.svg"
inkscape:export-filename="/home/loic/Documents/Git/manzerbredes/ochess/tools/skin/boards/chesscom/ws.png"
inkscape:export-xdpi="240"
inkscape:export-ydpi="240">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="5.6"
inkscape:cx="33.014671"
inkscape:cy="43.001391"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1908"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1"
units="px"
inkscape:snap-global="false" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-0.0472463,-275.88055)">
<rect
style="opacity:1;vector-effect:none;fill:#eeeed2;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.17421874;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect7173"
width="21.072174"
height="21.072174"
x="0.047246296"
y="275.88055" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

69
tools/skin/generate.sh Executable file
View file

@ -0,0 +1,69 @@
#!/usr/bin/env bash
# Check requirements
wai=$(dirname $(readlink -f "$0")) # Current script directory
[ $(command -v "convert") ] || { echo -e "\e[31mThis script require ImageMagick installed.\e[0m"; exit 1; }
[ $(command -v "inkscape") ] || { echo -e "\e[31mThis script require Inkscape installed.\e[0m"; exit 1; }
[ -d "${wai}/../../assets/" ] || { echo -e "\e[31mUnable to found assets folder.\e[0m"; exit 1; }
boards_path="${wai}/../../assets/boards/" && mkdir -p ${boards_path}
pieces_path="${wai}/../../assets/pieces/" && mkdir -p ${pieces_path}
generate () {
echo -e "\e[32mGenerating skin $(basename $1)\e[0m"
# Configure black's pieces
bk=$1/bk.png
bq=$1/bq.png
br=$1/br.png
bb=$1/bb.png
bn=$1/bn.png
bp=$1/bp.png
bs=$1/bs.png
# Configure white's pieces
wk=$1/wk.png
wq=$1/wq.png
wr=$1/wr.png
wb=$1/wb.png
wn=$1/wn.png
wp=$1/wp.png
ws=$1/ws.png
# First build the png files
for svg in $(find "$1/" -name "*.svg")
do
outFile=$(basename $svg|sed "s/\.svg$//g").png
inkscape -z -e $1/$outFile -w 200 -h 200 $svg > /dev/null
done
if [ ! -e "$ws" ] # Generate Pieces Skin
then
convert \( $bk $wk +append \) \
\( $bq $wq +append \) \
\( $br $wr +append \) \
\( $bb $wb +append \) \
\( $bn $wn +append \) \
\( $bp $wp +append \) \
-background none -append "${pieces_path}/$(basename "$1").png"
else # Generate Squares Skin
convert \( $bs $ws +append \) \
-background none -append "${boards_path}/$(basename "$1").png"
fi
rm $1/*.png
}
if [ $# -eq 1 ]
then
# Generate assets for each skin
for skin in $({ ls -d ${wai}/boards/*; ls -d ${wai}/pieces/*; } | grep "$1")
do
generate $skin
done
else
# Generate assets for each skin
for skin in $({ ls -d ${wai}/boards/*; ls -d ${wai}/pieces/*; })
do
generate $skin
done
fi

View file

@ -0,0 +1,80 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
width="34.816299"
height="34.816299"
id="svg1595"
sodipodi:docname="bb.svg"
inkscape:version="0.92.4 5da689c313, 2019-01-14">
<metadata
id="metadata1601">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs1599" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1908"
inkscape:window-height="1011"
id="namedview1597"
showgrid="false"
inkscape:zoom="3.7083822"
inkscape:cx="69.769295"
inkscape:cy="-0.93648314"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1"
inkscape:current-layer="svg1595"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<g
style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="translate(-5.0918479,-4.7500006)"
id="g2407">
<g
style="fill:#000000;stroke:#000000;stroke-linecap:butt"
id="g2403">
<path
inkscape:connector-curvature="0"
d="m 9,36 c 3.39,-0.97 10.11,0.43 13.5,-2 3.39,2.43 10.11,1.03 13.5,2 0,0 1.65,0.54 3,2 -0.68,0.97 -1.65,0.99 -3,0.5 -3.39,-0.97 -10.11,0.46 -13.5,-1 C 19.11,38.96 12.39,37.53 9,38.5 7.646,38.99 6.677,38.97 6,38 7.354,36.06 9,36 9,36 Z"
id="path2397" />
<path
inkscape:connector-curvature="0"
d="m 15,32 c 2.5,2.5 12.5,2.5 15,0 0.5,-1.5 0,-2 0,-2 0,-2.5 -2.5,-4 -2.5,-4 5.5,-1.5 6,-11.5 -5,-15.5 -11,4 -10.5,14 -5,15.5 0,0 -2.5,1.5 -2.5,4 0,0 -0.5,0.5 0,2 z"
id="path2399" />
<path
inkscape:connector-curvature="0"
d="m 25,8 a 2.5,2.5 0 1 1 -5,0 2.5,2.5 0 1 1 5,0 z"
id="path2401" />
</g>
<path
inkscape:connector-curvature="0"
d="m 17.5,26 h 10 M 15,30 H 30 M 22.5,15.5 v 5 M 20,18 h 5"
style="fill:none;stroke:#ffffff;stroke-linejoin:miter"
id="path2405" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,89 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
width="35.135681"
height="35.135681"
id="svg9645"
sodipodi:docname="bk.svg"
inkscape:version="0.92.4 5da689c313, 2019-01-14">
<metadata
id="metadata9651">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs9649" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1908"
inkscape:window-height="1011"
id="namedview9647"
showgrid="false"
inkscape:zoom="5.2444444"
inkscape:cx="-70.142373"
inkscape:cy="17.442841"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1"
inkscape:current-layer="svg9645"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<g
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g9643"
transform="translate(-4.9007526,-5.2393185)">
<path
d="M 22.5,11.63 V 6"
style="fill:none;stroke:#000000;stroke-linejoin:miter"
id="path6570"
inkscape:connector-curvature="0" />
<path
d="m 22.5,25 c 0,0 4.5,-7.5 3,-10.5 0,0 -1,-2.5 -3,-2.5 -2,0 -3,2.5 -3,2.5 -1.5,3 3,10.5 3,10.5"
style="fill:#000000;fill-opacity:1;stroke-linecap:butt;stroke-linejoin:miter"
id="path9633"
inkscape:connector-curvature="0" />
<path
d="m 11.5,37 c 5.5,3.5 15.5,3.5 21,0 v -7 c 0,0 9,-4.5 6,-10.5 -4,-6.5 -13.5,-3.5 -16,4 V 27 23.5 C 19,16 9.5,13 6.5,19.5 c -3,6 5,10 5,10 z"
style="fill:#000000;stroke:#000000"
id="path9635"
inkscape:connector-curvature="0" />
<path
d="m 20,8 h 5"
style="fill:none;stroke:#000000;stroke-linejoin:miter"
id="path9637"
inkscape:connector-curvature="0" />
<path
d="m 32,29.5 c 0,0 8.5,-4 6.03,-9.65 C 34.15,14 25,18 22.5,24.5 l 0.01,2.1 -0.01,-2.1 C 20,18 9.906,14 6.997,19.85 c -2.497,5.65 4.853,9 4.853,9"
style="fill:none;stroke:#ffffff"
id="path9639"
inkscape:connector-curvature="0" />
<path
d="m 11.5,30 c 5.5,-3 15.5,-3 21,0 m -21,3.5 c 5.5,-3 15.5,-3 21,0 m -21,3.5 c 5.5,-3 15.5,-3 21,0"
style="fill:none;stroke:#ffffff"
id="path9641"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -0,0 +1,118 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="8.8712797mm"
height="8.8712797mm"
viewBox="0 0 8.8712801 8.8712801"
version="1.1"
id="svg8"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
sodipodi:docname="bn.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="5.6"
inkscape:cx="-31.981681"
inkscape:cy="48.029629"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1908"
inkscape:window-height="1011"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(391.33854,103.67208)">
<g
style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(0.26458333,0,0,0.26458333,-392.7276,-105.32186)"
id="g2419">
<path
inkscape:connector-curvature="0"
d="m 22,10 c 10.5,1 16.5,8 16,29 H 15 c 0,-9 10,-6.5 8,-21"
style="fill:#000000;stroke:#000000"
id="path2409" />
<path
inkscape:connector-curvature="0"
d="m 24,18 c 0.38,2.91 -5.55,7.37 -8,9 -3,2 -2.82,4.34 -5,4 -1.042,-0.94 1.41,-3.04 0,-3 -1,0 0.19,1.23 -1,2 -1,0 -4.003,1 -4,-4 0,-2 6,-12 6,-12 0,0 1.89,-1.9 2,-3.5 -0.73,-0.994 -0.5,-2 -0.5,-3 1,-1 3,2.5 3,2.5 h 2 c 0,0 0.78,-1.992 2.5,-3 1,0 1,3 1,3"
style="fill:#000000;stroke:#000000"
id="path2411" />
<path
inkscape:connector-curvature="0"
d="m 9.5,25.5 a 0.5,0.5 0 1 1 -1,0 0.5,0.5 0 1 1 1,0 z"
style="fill:#ffffff;stroke:#ffffff"
id="path2413" />
<path
inkscape:connector-curvature="0"
d="m 15,15.5 a 0.5,1.5 0 1 1 -1,0 0.5,1.5 0 1 1 1,0 z"
transform="matrix(0.866,0.5,-0.5,0.866,9.693,-5.173)"
style="fill:#ffffff;stroke:#ffffff"
id="path2415" />
<path
inkscape:connector-curvature="0"
d="M 24.55,10.4 24.1,11.85 24.6,12 c 3.15,1 5.65,2.49 7.9,6.75 2.25,4.26 3.25,10.31 2.75,20.25 l -0.05,0.5 h 2.25 L 37.5,39 C 38,28.94 36.62,22.15 34.25,17.66 31.88,13.17 28.46,11.02 25.06,10.5 Z"
style="fill:#ffffff;stroke:none"
id="path2417" />
</g>
<g
style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(0.26458333,0,0,0.26458333,-365.39992,-82.851349)"
id="g2407">
<g
style="fill:#000000;stroke:#000000;stroke-linecap:butt"
id="g2403">
<path
inkscape:connector-curvature="0"
d="m 9,36 c 3.39,-0.97 10.11,0.43 13.5,-2 3.39,2.43 10.11,1.03 13.5,2 0,0 1.65,0.54 3,2 -0.68,0.97 -1.65,0.99 -3,0.5 -3.39,-0.97 -10.11,0.46 -13.5,-1 C 19.11,38.96 12.39,37.53 9,38.5 7.646,38.99 6.677,38.97 6,38 7.354,36.06 9,36 9,36 Z"
id="path2397" />
<path
inkscape:connector-curvature="0"
d="m 15,32 c 2.5,2.5 12.5,2.5 15,0 0.5,-1.5 0,-2 0,-2 0,-2.5 -2.5,-4 -2.5,-4 5.5,-1.5 6,-11.5 -5,-15.5 -11,4 -10.5,14 -5,15.5 0,0 -2.5,1.5 -2.5,4 0,0 -0.5,0.5 0,2 z"
id="path2399" />
<path
inkscape:connector-curvature="0"
d="m 25,8 a 2.5,2.5 0 1 1 -5,0 2.5,2.5 0 1 1 5,0 z"
id="path2401" />
</g>
<path
inkscape:connector-curvature="0"
d="m 17.5,26 h 10 M 15,30 H 30 M 22.5,15.5 v 5 M 20,18 h 5"
style="fill:none;stroke:#ffffff;stroke-linejoin:miter"
id="path2405" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.7 KiB

View file

@ -0,0 +1,59 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
width="32"
height="32"
id="svg8415"
sodipodi:docname="bp.svg"
inkscape:version="0.92.4 5da689c313, 2019-01-14">
<metadata
id="metadata8421">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8419" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1908"
inkscape:window-height="1011"
id="namedview8417"
showgrid="false"
inkscape:zoom="5.2444444"
inkscape:cx="-69.434088"
inkscape:cy="-6.4533898"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1"
inkscape:current-layer="svg8415"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<path
d="m 16,0.75 c -2.21,0 -4,1.79 -4,4 0,0.89 0.29,1.71 0.78,2.38 -1.95,1.12 -3.28,3.21 -3.28,5.62 0,2.03 0.94,3.84 2.41,5.03 -3,1.06 -7.41,5.55 -7.41,13.47 h 23 c 0,-7.92 -4.41,-12.41 -7.41,-13.47 1.47,-1.19 2.41,-3 2.41,-5.03 0,-2.41 -1.33,-4.5 -3.28,-5.62 C 19.71,6.46 20,5.64 20,4.75 c 0,-2.21 -1.79,-4 -4,-4 z"
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path8413"
inkscape:connector-curvature="0" />
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1,130 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="10.18646mm"
height="10.18646mm"
viewBox="0 0 10.18646 10.18646"
version="1.1"
id="svg8"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
sodipodi:docname="bq.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="1192.1071"
inkscape:cy="-900.59983"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1908"
inkscape:window-height="1011"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(381.55751,96.991)">
<g
style="opacity:1;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(0.26458333,0,0,0.26458333,-382.41741,-98.041818)"
id="g2395">
<g
style="fill:#000000;stroke:none"
id="g2379">
<circle
cx="6"
cy="12"
r="2.75"
id="circle2369" />
<circle
cx="14"
cy="9"
r="2.75"
id="circle2371" />
<circle
cx="22.5"
cy="8"
r="2.75"
id="circle2373" />
<circle
cx="31"
cy="9"
r="2.75"
id="circle2375" />
<circle
cx="39"
cy="12"
r="2.75"
id="circle2377" />
</g>
<path
inkscape:connector-curvature="0"
d="m 9,26 c 8.5,-1.5 21,-1.5 27,0 L 38.5,13.5 31,25 30.7,10.9 25.5,24.5 22.5,10 19.5,24.5 14.3,10.9 14,25 6.5,13.5 Z"
style="stroke:#000000;stroke-linecap:butt"
id="path2381" />
<path
inkscape:connector-curvature="0"
d="m 9,26 c 0,2 1.5,2 2.5,4 1,1.5 1,1 0.5,3.5 -1.5,1 -1.5,2.5 -1.5,2.5 -1.5,1.5 0.5,2.5 0.5,2.5 6.5,1 16.5,1 23,0 0,0 1.5,-1 0,-2.5 0,0 0.5,-1.5 -1,-2.5 -0.5,-2.5 -0.5,-2 0.5,-3.5 1,-2 2.5,-2 2.5,-4 -8.5,-1.5 -18.5,-1.5 -27,0 z"
style="stroke-linecap:butt"
id="path2383" />
<path
inkscape:connector-curvature="0"
d="m 11,38.5 a 35,35 1 0 0 23,0"
style="fill:none;stroke:#000000;stroke-linecap:butt"
id="path2385" />
<path
inkscape:connector-curvature="0"
d="m 11,29 a 35,35 1 0 1 23,0"
style="fill:none;stroke:#ffffff"
id="path2387" />
<path
inkscape:connector-curvature="0"
d="m 12.5,31.5 h 20"
style="fill:none;stroke:#ffffff"
id="path2389" />
<path
inkscape:connector-curvature="0"
d="m 11.5,34.5 a 35,35 1 0 0 22,0"
style="fill:none;stroke:#ffffff"
id="path2391" />
<path
inkscape:connector-curvature="0"
d="m 10.5,37.5 a 35,35 1 0 0 24,0"
style="fill:none;stroke:#ffffff"
id="path2393" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4 KiB

View file

@ -0,0 +1,121 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="8.3343697mm"
height="8.3343697mm"
viewBox="0 0 8.3343697 8.3343696"
version="1.1"
id="svg3026"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
sodipodi:docname="br.svg">
<defs
id="defs3020" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="5.6"
inkscape:cx="22.263277"
inkscape:cy="43.582708"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1908"
inkscape:window-height="1011"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1" />
<metadata
id="metadata3023">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(142.1096,-48.660197)">
<g
style="opacity:1;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(0.26458333,0,0,0.26458333,-143.89554,46.477382)"
id="g2443">
<path
inkscape:connector-curvature="0"
d="M 9,39 H 36 V 36 H 9 Z"
style="stroke-linecap:butt"
id="path2421" />
<path
inkscape:connector-curvature="0"
d="M 12.5,32 14,29.5 h 17 l 1.5,2.5 z"
style="stroke-linecap:butt"
id="path2423" />
<path
inkscape:connector-curvature="0"
d="m 12,36 v -4 h 21 v 4 z"
style="stroke-linecap:butt"
id="path2425" />
<path
inkscape:connector-curvature="0"
d="m 14,29.5 v -13 h 17 v 13 z"
style="stroke-linecap:butt;stroke-linejoin:miter"
id="path2427" />
<path
inkscape:connector-curvature="0"
d="M 14,16.5 11,14 h 23 l -3,2.5 z"
style="stroke-linecap:butt"
id="path2429" />
<path
inkscape:connector-curvature="0"
d="M 11,14 V 9 h 4 v 2 h 5 V 9 h 5 v 2 h 5 V 9 h 4 v 5 z"
style="stroke-linecap:butt"
id="path2431" />
<path
inkscape:connector-curvature="0"
d="m 12,35.5 h 21 v 0"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linejoin:miter"
id="path2433" />
<path
inkscape:connector-curvature="0"
d="M 13,31.5 H 32"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linejoin:miter"
id="path2435" />
<path
inkscape:connector-curvature="0"
d="M 14,29.5 H 31"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linejoin:miter"
id="path2437" />
<path
inkscape:connector-curvature="0"
d="M 14,16.5 H 31"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linejoin:miter"
id="path2439" />
<path
inkscape:connector-curvature="0"
d="M 11,14 H 34"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linejoin:miter"
id="path2441" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

View file

@ -0,0 +1,80 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
width="34.816299"
height="34.816299"
id="svg6527"
sodipodi:docname="wb.svg"
inkscape:version="0.92.4 5da689c313, 2019-01-14">
<metadata
id="metadata6533">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6531" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1908"
inkscape:window-height="1011"
id="namedview6529"
showgrid="false"
inkscape:zoom="5.2444444"
inkscape:cx="-80.364442"
inkscape:cy="1.6015675"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1"
inkscape:current-layer="svg6527"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<g
style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g6525"
transform="translate(-5.0918479,-4.7500006)">
<g
style="fill:#ffffff;stroke:#000000;stroke-linecap:butt"
id="g6521">
<path
d="m 9,36 c 3.39,-0.97 10.11,0.43 13.5,-2 3.39,2.43 10.11,1.03 13.5,2 0,0 1.65,0.54 3,2 -0.68,0.97 -1.65,0.99 -3,0.5 -3.39,-0.97 -10.11,0.46 -13.5,-1 C 19.11,38.96 12.39,37.53 9,38.5 7.646,38.99 6.677,38.97 6,38 7.354,36.06 9,36 9,36 Z"
id="path6515"
inkscape:connector-curvature="0" />
<path
d="m 15,32 c 2.5,2.5 12.5,2.5 15,0 0.5,-1.5 0,-2 0,-2 0,-2.5 -2.5,-4 -2.5,-4 5.5,-1.5 6,-11.5 -5,-15.5 -11,4 -10.5,14 -5,15.5 0,0 -2.5,1.5 -2.5,4 0,0 -0.5,0.5 0,2 z"
id="path6517"
inkscape:connector-curvature="0" />
<path
d="m 25,8 a 2.5,2.5 0 1 1 -5,0 2.5,2.5 0 1 1 5,0 z"
id="path6519"
inkscape:connector-curvature="0" />
</g>
<path
d="m 17.5,26 h 10 M 15,30 H 30 M 22.5,15.5 v 5 M 20,18 h 5"
style="fill:none;stroke:#000000;stroke-linejoin:miter"
id="path6523"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,94 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
width="35.135681"
height="35.135681"
id="svg886"
sodipodi:docname="wk.svg"
inkscape:version="0.92.4 5da689c313, 2019-01-14">
<metadata
id="metadata892">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs890" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1908"
inkscape:window-height="1011"
id="namedview888"
showgrid="false"
inkscape:zoom="10.044444"
inkscape:cx="-9.8472797"
inkscape:cy="11.482951"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1"
inkscape:current-layer="svg886"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<g
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g884"
transform="translate(-4.9007526,-5.2393185)">
<path
d="M 22.5,11.63 V 6"
style="fill:none;stroke:#000000;stroke-linejoin:miter"
id="path870"
inkscape:connector-curvature="0" />
<path
d="m 20,8 h 5"
style="fill:none;stroke:#000000;stroke-linejoin:miter"
id="path872"
inkscape:connector-curvature="0" />
<path
d="m 22.5,25 c 0,0 4.5,-7.5 3,-10.5 0,0 -1,-2.5 -3,-2.5 -2,0 -3,2.5 -3,2.5 -1.5,3 3,10.5 3,10.5"
style="fill:#ffffff;stroke:#000000;stroke-linecap:butt;stroke-linejoin:miter"
id="path874"
inkscape:connector-curvature="0" />
<path
d="m 11.5,37 c 5.5,3.5 15.5,3.5 21,0 v -7 c 0,0 9,-4.5 6,-10.5 -4,-6.5 -13.5,-3.5 -16,4 V 27 23.5 C 19,16 9.5,13 6.5,19.5 c -3,6 5,10 5,10 z"
style="fill:#ffffff;stroke:#000000"
id="path876"
inkscape:connector-curvature="0" />
<path
d="M 11.5,30 C 17,27 27,27 32.5,30"
style="fill:none;stroke:#000000"
id="path878"
inkscape:connector-curvature="0" />
<path
d="m 11.5,33.5 c 5.5,-3 15.5,-3 21,0"
style="fill:none;stroke:#000000"
id="path880"
inkscape:connector-curvature="0" />
<path
d="M 11.5,37 C 17,34 27,34 32.5,37"
style="fill:none;stroke:#000000"
id="path882"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -0,0 +1,80 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
width="33.529251"
height="33.529251"
id="svg2210"
sodipodi:docname="wn.svg"
inkscape:version="0.92.4 5da689c313, 2019-01-14">
<metadata
id="metadata2216">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs2214" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1908"
inkscape:window-height="1011"
id="namedview2212"
showgrid="false"
inkscape:zoom="2.6222222"
inkscape:cx="-200.78973"
inkscape:cy="14.318828"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1"
inkscape:current-layer="svg2210"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<g
style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g2208"
transform="translate(-5.2500005,-6.2353745)">
<path
d="m 22,10 c 10.5,1 16.5,8 16,29 H 15 c 0,-9 10,-6.5 8,-21"
style="fill:#ffffff;stroke:#000000"
id="path2200"
inkscape:connector-curvature="0" />
<path
d="m 24,18 c 0.38,2.91 -5.55,7.37 -8,9 -3,2 -2.82,4.34 -5,4 -1.042,-0.94 1.41,-3.04 0,-3 -1,0 0.19,1.23 -1,2 -1,0 -4.003,1 -4,-4 0,-2 6,-12 6,-12 0,0 1.89,-1.9 2,-3.5 -0.73,-0.994 -0.5,-2 -0.5,-3 1,-1 3,2.5 3,2.5 h 2 c 0,0 0.78,-1.992 2.5,-3 1,0 1,3 1,3"
style="fill:#ffffff;stroke:#000000"
id="path2202"
inkscape:connector-curvature="0" />
<path
d="m 9.5,25.5 a 0.5,0.5 0 1 1 -1,0 0.5,0.5 0 1 1 1,0 z"
style="fill:#000000;stroke:#000000"
id="path2204"
inkscape:connector-curvature="0" />
<path
d="m 15,15.5 a 0.5,1.5 0 1 1 -1,0 0.5,1.5 0 1 1 1,0 z"
transform="matrix(0.866,0.5,-0.5,0.866,9.693,-5.173)"
style="fill:#000000;stroke:#000000"
id="path2206"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,59 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
width="32"
height="32"
id="svg1600"
sodipodi:docname="wp.svg"
inkscape:version="0.92.4 5da689c313, 2019-01-14">
<metadata
id="metadata1606">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs1604" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1908"
inkscape:window-height="1011"
id="namedview1602"
showgrid="false"
inkscape:zoom="5.2444444"
inkscape:cx="-80.415256"
inkscape:cy="5.1779661"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1"
inkscape:current-layer="svg1600"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<path
d="m 16,0.75 c -2.21,0 -4,1.79 -4,4 0,0.89 0.29,1.71 0.78,2.38 -1.95,1.12 -3.28,3.21 -3.28,5.62 0,2.03 0.94,3.84 2.41,5.03 -3,1.06 -7.41,5.55 -7.41,13.47 h 23 c 0,-7.92 -4.41,-12.41 -7.41,-13.47 1.47,-1.19 2.41,-3 2.41,-5.03 0,-2.41 -1.33,-4.5 -3.28,-5.62 C 19.71,6.46 20,5.64 20,4.75 c 0,-2.21 -1.79,-4 -4,-4 z"
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path1598"
inkscape:connector-curvature="0" />
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
width="38.5"
height="38.5"
id="svg992"
sodipodi:docname="wq.svg"
inkscape:version="0.92.4 5da689c313, 2019-01-14">
<metadata
id="metadata998">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs996" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1908"
inkscape:window-height="1011"
id="namedview994"
showgrid="false"
inkscape:zoom="14.833529"
inkscape:cx="33.45643"
inkscape:cy="3.0465478"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1"
inkscape:current-layer="svg992"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<g
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="translate(-3.25,-1.5044641)"
id="g2311">
<path
inkscape:connector-curvature="0"
d="m 9,13 a 2,2 0 1 1 -4,0 2,2 0 1 1 4,0 z"
transform="translate(-1,-1)"
id="path2293" />
<path
inkscape:connector-curvature="0"
d="m 9,13 a 2,2 0 1 1 -4,0 2,2 0 1 1 4,0 z"
transform="translate(15.5,-5.5)"
id="path2295" />
<path
inkscape:connector-curvature="0"
d="m 9,13 a 2,2 0 1 1 -4,0 2,2 0 1 1 4,0 z"
transform="translate(32,-1)"
id="path2297" />
<path
inkscape:connector-curvature="0"
d="m 9,13 a 2,2 0 1 1 -4,0 2,2 0 1 1 4,0 z"
transform="translate(7,-4.5)"
id="path2299" />
<path
inkscape:connector-curvature="0"
d="m 9,13 a 2,2 0 1 1 -4,0 2,2 0 1 1 4,0 z"
transform="translate(24,-4)"
id="path2301" />
<path
inkscape:connector-curvature="0"
d="m 9,26 c 8.5,-1.5 21,-1.5 27,0 L 38,14 31,25 V 11 l -5.5,13.5 -3,-15 -3,15 -5.5,-14 V 25 L 7,14 Z"
style="stroke-linecap:butt"
id="path2303" />
<path
inkscape:connector-curvature="0"
d="m 9,26 c 0,2 1.5,2 2.5,4 1,1.5 1,1 0.5,3.5 -1.5,1 -1.5,2.5 -1.5,2.5 -1.5,1.5 0.5,2.5 0.5,2.5 6.5,1 16.5,1 23,0 0,0 1.5,-1 0,-2.5 0,0 0.5,-1.5 -1,-2.5 -0.5,-2.5 -0.5,-2 0.5,-3.5 1,-2 2.5,-2 2.5,-4 -8.5,-1.5 -18.5,-1.5 -27,0 z"
style="stroke-linecap:butt"
id="path2305" />
<path
inkscape:connector-curvature="0"
d="M 11.5,30 C 15,29 30,29 33.5,30"
style="fill:none"
id="path2307" />
<path
inkscape:connector-curvature="0"
d="m 12,33.5 c 6,-1 15,-1 21,0"
style="fill:none"
id="path2309" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View file

@ -0,0 +1,92 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
width="31.5"
height="31.5"
id="svg905"
sodipodi:docname="wr.svg"
inkscape:version="0.92.4 5da689c313, 2019-01-14">
<metadata
id="metadata911">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs909" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1908"
inkscape:window-height="1011"
id="namedview907"
showgrid="false"
inkscape:zoom="14.20499"
inkscape:cx="-3.3097982"
inkscape:cy="15.342191"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1"
inkscape:current-layer="svg905"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<g
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g903"
transform="translate(-6.75,-8.25)">
<path
d="M 9,39 H 36 V 36 H 9 Z"
style="stroke-linecap:butt"
id="path889"
inkscape:connector-curvature="0" />
<path
d="m 12,36 v -4 h 21 v 4 z"
style="stroke-linecap:butt"
id="path891"
inkscape:connector-curvature="0" />
<path
d="M 11,14 V 9 h 4 v 2 h 5 V 9 h 5 v 2 h 5 V 9 h 4 v 5"
style="stroke-linecap:butt"
id="path893"
inkscape:connector-curvature="0" />
<path
d="m 34,14 -3,3 H 14 l -3,-3"
id="path895"
inkscape:connector-curvature="0" />
<path
d="M 31,17 V 29.5 H 14 V 17"
style="stroke-linecap:butt;stroke-linejoin:miter"
id="path897"
inkscape:connector-curvature="0" />
<path
d="m 31,29.5 1.5,2.5 h -20 L 14,29.5"
id="path899"
inkscape:connector-curvature="0" />
<path
d="M 11,14 H 34"
style="fill:none;stroke:#000000;stroke-linejoin:miter"
id="path901"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,107 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="70"
height="70"
viewBox="0 0 18.520833 18.520834"
version="1.1"
id="svg8"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
sodipodi:docname="bb.svg"
inkscape:export-filename="/home/loic/Documents/Git/manzerbredes/ochess/tools/skin/chesscom/bb.png"
inkscape:export-xdpi="240"
inkscape:export-ydpi="240">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="3.573099"
inkscape:cx="-31.758205"
inkscape:cy="58.495589"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1908"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1"
units="px"
inkscape:snap-global="false" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-1.4464013,-276.98264)">
<g
id="g6974"
transform="translate(0.12348467,-0.17359517)">
<circle
r="1.1860086"
cy="278.66583"
cx="10.583333"
id="path6200"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.30000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<path
sodipodi:nodetypes="ccccccccccccccsccscccsccscc"
inkscape:connector-curvature="0"
d="m 7.1530766,291.2932 c 2.1403697,0.91547 4.3583554,1.21667 6.7681354,0 m -5.728701,-2.74033 -1.0394344,2.74033 h 6.7681354 l -1.098493,-2.74033 c -1.305136,-0.34747 -2.791806,-0.43021 -4.630208,0 z m 4.630208,0 c 2.344538,-1.52956 3.171151,-3.49626 1.133929,-5.90588 -0.532259,-0.62955 -2.189112,-1.81052 -3.449033,-2.76395 -1.2599201,0.95343 -2.9167739,2.1344 -3.4490322,2.76395 -2.0372225,2.40962 -1.2106094,4.37632 1.1339284,5.90588 1.4909878,-0.3407 3.0139428,-0.47361 4.6302078,0 z m 5.745291,6.80062 c -0.63525,-0.63967 -1.322049,-0.93232 -4.153506,-0.25343 -2.831456,0.67889 -3.864052,-1.63635 -3.831171,-3.00391 h 1.186009 c 1.074924,1.46949 1.896002,1.362 3.925521,0.91875 2.029519,-0.44325 2.703364,-0.12454 3.875408,0.36749 z m -15.9693537,0 c 0.6352498,-0.63967 1.3220491,-0.93232 4.1535059,-0.25343 2.8314569,0.67889 3.8640518,-1.63635 3.8311708,-3.00391 H 9.3973249 c -1.0749243,1.46949 -1.8960024,1.362 -3.9255212,0.91875 -2.0295188,-0.44325 -2.7033643,-0.12454 -3.8754081,0.36749 z"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6249" />
<rect
ry="0.31727967"
y="283.14224"
x="10.356032"
height="3.1913033"
width="0.4545992"
id="rect6261"
style="opacity:1;vector-effect:none;fill:#d1cdae;fill-opacity:1;fill-rule:nonzero;stroke:#d1cdae;stroke-width:0.27621397;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<path
sodipodi:nodetypes="cccscccsc"
inkscape:connector-curvature="0"
id="path6369"
d="m 8.2446055,289.28691 0.1771764,-0.42552 0.1771763,-0.42552 c 0.6495298,-0.11742 1.2862948,-0.15825 1.9147648,-0.14931 0.62847,0.009 1.248646,0.0677 1.864997,0.14931 l 0.177177,0.42552 0.177176,0.42552 c -0.742641,-0.10331 -1.48787,-0.15743 -2.235883,-0.15867 -0.7480123,-0.001 -1.4988087,0.0504 -2.2525845,0.15867 z"
style="opacity:1;fill:#d1cdae;fill-opacity:1;stroke:#d1cdae;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="opacity:1;fill:#d1cdae;fill-opacity:1;stroke:#d1cdae;stroke-width:0.11589719;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 7.4257305,291.07434 0.2418244,-0.41876 0.2418243,-0.41877 c 0.88653,-0.11556 1.7556375,-0.15574 2.6134238,-0.14694 0.857785,0.009 1.704251,0.0666 2.545496,0.14694 l 0.241825,0.41877 0.241824,0.41876 c -1.013615,-0.10167 -2.030763,-0.15493 -3.051711,-0.15615 -1.0209467,-9.8e-4 -2.0456933,0.0496 -3.0745065,0.15615 z"
id="path6371"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccscccsc" />
<rect
transform="rotate(90)"
style="opacity:1;vector-effect:none;fill:#d1cdae;fill-opacity:1;fill-rule:nonzero;stroke:#d1cdae;stroke-width:0.27621397;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect2202"
width="0.4545992"
height="3.1913033"
x="284.51059"
y="-12.178984"
ry="0.31727967" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.8 KiB

View file

@ -0,0 +1,155 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="73"
height="73"
viewBox="0 0 19.314582 19.314584"
version="1.1"
id="svg8"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
sodipodi:docname="bk.svg"
inkscape:export-filename="/home/loic/Documents/Git/manzerbredes/ochess/tools/skin/chesscom/bk.png"
inkscape:export-xdpi="240"
inkscape:export-ydpi="240">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="5.6"
inkscape:cx="12.431757"
inkscape:cy="27.666671"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1908"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1"
units="px"
inkscape:snap-global="false" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-1.0293697,-276.46598)">
<g
id="g1487"
transform="translate(0.10332802,-0.29338015)">
<path
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
id="path1528"
d="m 12.336258,283.1185 c 0.04444,-0.13338 0.0673,-0.27123 0.06796,-0.40979 3.8e-5,-0.8488 -0.815221,-1.53689 -1.820884,-1.53686 -1.0056623,-3e-5 -1.8209221,0.68806 -1.8208845,1.53686 6.897e-4,0.1652 0.03295,0.32923 0.095513,0.48576 l 1.7253715,4.87634 z"
style="opacity:1;fill:#d1cdae;fill-opacity:1;stroke:#000000;stroke-width:0.76134908;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" />
<path
sodipodi:nodetypes="ccssccccssccscsc"
inkscape:connector-curvature="0"
id="path1534"
d="m 5.4218908,281.81254 c -2.2049078,-1e-4 -3.9924203,1.75734 -3.9925211,3.92534 0.00318,1.40796 1.2353299,2.25814 2.0858001,3.40289 0,0 0.6295347,0.68192 0.8158316,1.09813 0.2397454,0.53563 0.3545003,1.72444 0.3545003,1.72444 l -0.1653646,2.57504 c 2.4574886,1.09159 8.8528829,1.15381 12.3315479,0 l -0.283704,-2.29185 c 0,0 0.171462,-1.39952 0.496094,-2.00763 0.238146,-0.4461 1.0212,-1.1219 1.0212,-1.1219 0.947563,-1.041 1.649847,-1.98907 1.652022,-3.37912 -1.01e-4,-2.168 -1.787614,-3.92544 -3.992522,-3.92534 -1.201555,10e-4 -2.62532,0.32308 -3.377021,1.61634 l -1.794261,3.12757 -1.9254425,-3.12757 c -0.662298,-1.0758 -1.9488702,-1.61437 -3.2261597,-1.61634 z"
style="opacity:1;fill:#d1cdae;fill-opacity:1;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" />
<path
inkscape:connector-curvature="0"
id="path1536"
d="m 10.583333,281.07283 v -3.6144"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 9.2722264,278.86403 H 11.89444"
id="path1538"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path1540"
d="m 4.3310011,290.2389 c 4.4880765,-1.28823 8.6848849,-1.03689 12.7330739,0"
style="fill:none;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 4.4727422,290.73499 c 4.4880765,-1.28823 8.2360378,-1.03689 12.2842268,0"
id="path1542"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path1544"
d="m 4.3310011,294.58326 c 4.4880765,-1.28823 8.6848849,-1.03689 12.7330739,0"
style="fill:none;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path1546"
d="m 10.595145,289.31743 v -3.33091"
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccscc"
inkscape:connector-curvature="0"
id="path2521"
d="m 4.8016091,289.04054 c 1.6595286,-0.38693 2.9381204,-0.63202 4.7734454,-0.56357 v -1.72398 c -0.6063977,-1.02439 -1.2749873,-2.00081 -1.9458477,-2.94653 -1.801599,-2.53973 -7.06453399,0.50381 -4.2271574,3.64372 z"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.24601571px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25292015px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 16.663957,289.12874 c -1.706104,-0.39778 -3.268982,-0.64975 -5.155816,-0.57938 v -1.79495 l 1.819801,-3.05179 c 2.241404,-2.36061 7.195055,0.33727 4.774855,3.79113 z"
id="path2523"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path2525"
d="m 4.4727422,290.92401 c 4.4880765,-1.28823 8.2360378,-1.03689 12.2842268,0"
style="fill:none;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 4.4727422,292.54592 c 4.4880765,-1.28823 8.2360378,-1.03689 12.2842268,0"
id="path2527"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path2529"
d="m 4.4727422,293.00285 c 4.4880765,-1.28823 8.2360378,-1.03689 12.2842268,0"
style="fill:none;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cscsc"
inkscape:connector-curvature="0"
id="path2531"
d="m 16.418341,294.44866 c -2.2e-5,0.35226 -2.964704,1.03943 -5.835007,1.03943 -2.870304,0 -5.6696214,-0.66354 -5.6696432,-1.01581 -2.32e-5,-0.35227 2.8938015,-0.77958 5.7641372,-0.77958 2.870335,0 5.740536,0.40369 5.740513,0.75596 z"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<path
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.32664803;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
d="m 11.326938,282.87499 c 0.01945,-0.0561 0.02947,-0.11403 0.02975,-0.17234 1.7e-5,-0.35698 -0.356808,-0.64635 -0.796972,-0.64634 -0.440163,-10e-6 -0.7969892,0.28936 -0.7969721,0.64634 3.019e-4,0.0695 0.014419,0.13846 0.041797,0.2043 l 0.7551681,2.0508 z"
id="path2534"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccc" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.7 KiB

View file

@ -0,0 +1,126 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="73"
height="73"
viewBox="0 0 19.314583 19.314583"
version="1.1"
id="svg8"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
sodipodi:docname="bn.svg"
inkscape:export-filename="/home/loic/Documents/Git/manzerbredes/ochess/tools/skin/chesscom/bn.png"
inkscape:export-xdpi="240"
inkscape:export-ydpi="240">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="3.959798"
inkscape:cx="-8.5872427"
inkscape:cy="34.109124"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1908"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1"
units="px"
inkscape:snap-global="false" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-0.96789664,-276.34041)">
<g
id="g6370"
transform="translate(0.04185493,-0.41895167)">
<g
transform="translate(3.0331515,0.19487873)"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-miterlimit:4;stroke-dasharray:none"
id="g3954">
<path
id="path3917"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 16.725446,295.11011 H 3.6380208 c -0.2128826,-1.47281 0.3528384,-2.16701 0.8031993,-2.97657 l 3.0946802,-3.37816 c 0.1006699,-0.10989 0.6181408,-3.72358 0.5905878,-3.80338 -0.06093,-0.17652 -0.9112757,1.79841 -1.700893,2.36235 -0.5931368,0.42362 -1.9237669,0.35634 -2.5985861,0.99218 -0.3898889,0.36737 -0.6614584,1.46466 -0.6614584,1.46466 0,0 -0.6928829,1.118 -1.2992932,1.2048 -0.3770731,0.054 -0.90235777,-0.0737 -0.96856397,-0.44885 -0.0932284,-0.52823 1.22951857,-0.72684 1.03943457,-1.22842 -0.049034,-0.12939 -1.65364585,1.34654 -1.65364585,1.34654 -0.38854481,0.60048 -2.33374125,-1.96631 -1.93712795,-2.76395 0.1531432,-0.30799 2.50409221,-4.58296 2.50409221,-4.58296 l 0.42522319,-1.51191 1.0866816,-1.46465 -0.437035,-1.25205 -0.1181175,-1.73633 3.09468,1.84264 2.1851747,0.15355 c 10.0533746,-0.0497 9.9377346,12.02472 9.6383926,15.78051 z"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccccccscccccccc" />
<path
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 3.9756341,280.07848 0.3173826,-1.38646 1.1860085,-1.23612 c 1.0515686,0.85819 1.3007969,2.0674 1.6704347,3.22394"
id="path3934"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
</g>
<g
transform="translate(3.0331515,0.19487873)"
style="fill:#f0ecc8;fill-opacity:1;stroke:#f0ecc8;stroke-opacity:1"
id="g3959">
<ellipse
style="opacity:1;vector-effect:none;fill:#d1cdae;fill-opacity:1;fill-rule:nonzero;stroke:#d1cdae;stroke-width:0.14782095px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="path3941"
cx="-201.97392"
cy="205.59862"
rx="0.51803327"
ry="0.32665792"
transform="rotate(-44.503376)" />
<ellipse
style="opacity:1;vector-effect:none;fill:#d1cdae;fill-opacity:1;fill-rule:nonzero;stroke:#d1cdae;stroke-width:0.2935563px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="path3943"
cx="3.3309152"
cy="282.97943"
rx="0.50523078"
ry="0.51704252" />
<path
style="opacity:1;vector-effect:none;fill:#d1cdae;fill-opacity:1;stroke:#d1cdae;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 2.4568452,283.44009 c 0.3073947,-0.70242 0.7815238,-1.31221 1.6536457,-1.70089"
id="path3945"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path1814"
d="m 10.797247,286.13792 c 0.275062,-0.5605 0.350612,-1.02617 0.358405,-1.63121"
style="fill:#d1cdae;fill-opacity:1;stroke:#d1cdae;stroke-width:0.40000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path1816"
d="m 3.9752267,290.52819 0.634766,-0.73499"
style="opacity:1;vector-effect:none;fill:#d1cdae;fill-opacity:1;stroke:#d1cdae;stroke-width:0.40000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
id="path1832"
d="m 18.961195,294.87538 v -3.72024 c -0.137986,-5.99526 -2.443013,-10.71403 -8.519216,-10.99678 v 0.56795 c 4.952777,0.65486 6.612636,3.63461 7.294559,10.42883 v 3.72024 z"
style="fill:#d1cdae;fill-opacity:1;stroke:#d1cdae;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.5 KiB

View file

@ -0,0 +1,66 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="72"
height="72"
viewBox="0 0 19.049999 19.05"
version="1.1"
id="svg8"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
sodipodi:docname="bp.svg"
inkscape:export-filename="/home/loic/Documents/Git/manzerbredes/ochess/tools/skin/chesscom/bp.png"
inkscape:export-xdpi="240"
inkscape:export-ydpi="240">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="4.1143769"
inkscape:cx="-77.956803"
inkscape:cy="36.26742"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1908"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1"
units="px" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-3.6850457,-276.85701)">
<path
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers"
d="m 13.142175,278.34689 a 1.9072429,1.9072429 0 0 0 -1.907434,1.90703 1.9072429,1.9072429 0 0 0 1.115472,1.73326 3.1747471,2.8745759 0 0 0 -2.3698779,2.77868 3.1747471,2.8745759 0 0 0 1.3516999,2.35146 c -2.463352,0.83765 -4.059968,3.35302 -4.059903,6.72407 4.683e-4,0.19213 0.0064,0.38422 0.01842,0.57574 h 11.834577 c 0.0133,-0.19147 0.02107,-0.38354 0.02283,-0.57574 6.3e-5,-3.4052 -1.62919,-5.9372 -4.135176,-6.74889 a 3.1747471,2.8745759 0 0 0 1.316866,-2.32664 3.1747471,2.8745759 0 0 0 -2.389898,-2.78188 1.9072429,1.9072429 0 0 0 1.109467,-1.73006 1.9072429,1.9072429 0 0 0 -1.907034,-1.90703 z"
id="path923"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View file

@ -0,0 +1,150 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="78"
height="78"
viewBox="0 0 20.6375 20.637501"
version="1.1"
id="svg8"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
sodipodi:docname="bq.svg"
inkscape:export-filename="/home/loic/Documents/Git/manzerbredes/ochess/assets/pieces/chesscom/bq.png"
inkscape:export-xdpi="240"
inkscape:export-ydpi="240">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.5265625"
inkscape:cx="-154.59447"
inkscape:cy="-36.872429"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1908"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1"
units="px"
inkscape:snap-global="false" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-0.38631913,-275.1167)">
<g
id="g1777"
transform="translate(-13.953149,-0.79044572)"
style="fill:#000000;stroke:#000000">
<g
transform="translate(14.454848,0.47772165)"
style="fill:#000000;stroke:#000000;stroke-width:0.69999999;stroke-miterlimit:4;stroke-dasharray:none"
id="g1009">
<path
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 3.4165246,288.71888 -1.7195753,-8.14536 4.1405564,6.9688 v -8.41687 l 2.964005,7.96436 1.4480633,-8.84677 1.448064,8.80151 3.054509,-8.68838 -0.29414,9.18615 4.434695,-7.37607 -1.855331,8.55263 -0.769284,1.32361 -0.181008,1.61776 0.588276,2.05897 c -4.572883,1.49446 -8.6517403,1.21457 -12.9194404,0 l 0.5430237,-2.05897 -0.022625,-1.61776 z"
id="path994"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccccccccccc" />
<path
style="fill:#000000;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 3.2581427,288.58312 c 4.962677,-2.0635 9.8623033,-1.47502 13.8018553,0"
id="path996"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path998"
d="m 4.0953044,289.9633 c 4.1097851,-1.26768 7.5233266,-0.95796 12.2406626,0"
style="fill:#000000;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:#000000;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 4.1858084,291.77338 c 4.6188675,-1.14608 7.7335596,-0.97209 11.9917766,0"
id="path1000"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:#000000;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 3.6427846,293.56083 c 4.1468945,-1.01411 8.4860284,-1.0971 13.0551974,0"
id="path1002"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<circle
r="1.1555499"
cy="280.49243"
cx="15.966753"
id="path956"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.69999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<circle
r="1.1279513"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.69999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="circle958"
cx="20.124491"
cy="278.83878" />
<circle
r="1.1279513"
cy="278.3663"
cx="24.56571"
id="circle960"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.69999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<circle
r="1.1279513"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.69999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="circle962"
cx="29.12505"
cy="278.81516" />
<circle
r="1.1279513"
cy="280.46881"
cx="33.377281"
id="circle964"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.69999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
</g>
<path
style="fill:#d1cdae;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 4.8603457,289.43449 c 4.5410532,-1.51768 8.3553243,-0.90999 11.7810753,0 l 0.680685,-1.03411 c -4.169846,-1.13963 -8.4973196,-1.37352 -13.1686247,0 z"
id="path1779"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0"
id="path1785"
d="m 4.8776907,291.25401 c 4.526888,-1.51768 8.3292603,-0.90999 11.7443253,0 l -0.05914,-1.03411 c -3.689029,-1.13963 -7.5175093,-1.37352 -11.6501748,0 z"
style="fill:#d1cdae;fill-opacity:1;stroke:none;stroke-width:0.2539621px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="fill:#d1cdae;fill-opacity:1;stroke:none;stroke-width:0.25660157px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 4.5398666,293.07353 c 4.7880291,-1.51768 8.8097474,-0.90999 12.4218164,0 l -0.27642,-1.03411 c -3.76611,-1.13963 -7.6745843,-1.37352 -11.8935999,0 z"
id="path1787"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.4 KiB

View file

@ -0,0 +1,98 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="67"
height="67"
viewBox="0 0 17.727083 17.727084"
version="1.1"
id="svg8"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
sodipodi:docname="br.svg"
inkscape:export-filename="/home/loic/Documents/Git/manzerbredes/ochess/assets/pieces/chesscom/r.png"
inkscape:export-xdpi="240"
inkscape:export-ydpi="240">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="5.6"
inkscape:cx="-2.1232042"
inkscape:cy="-16.433222"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1908"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1"
units="px" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-3.2768026,-277.45105)">
<g
id="g990"
transform="translate(1.9182294,-0.50642959)">
<path
transform="matrix(0.26458333,0,0,0.26458333,0,275.83332)"
id="rect952"
d="M 14.904297,8.4140625 V 23.304688 l 9.212891,6.351562 v 23.449219 h 0.126953 l -7.197266,7.197265 v 4.488282 h -6.027344 v 9.851562 H 66.25 v -9.851562 h -5.892578 v -4.488282 l -7.197266,-7.197265 h 0.251953 V 29.570312 L 62.5,23.304688 V 8.4140625 H 51.607422 V 14.552734 H 44.0625 V 8.4140625 H 33.572266 V 14.552734 H 26.027344 V 8.4140625 Z"
style="opacity:1;vector-effect:none;fill:#18181d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.02362204;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
inkscape:connector-curvature="0" />
<rect
y="292.13901"
x="5.0614166"
height="0.90203464"
width="10.406807"
id="rect976"
style="opacity:1;vector-effect:none;fill:#d1cdae;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<path
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0"
id="rect978"
d="m 7.0452702,290.071 h 6.4391008 l 1.064623,1.02901 H 5.9806474 Z"
style="opacity:1;vector-effect:none;fill:#d1cdae;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.74668199;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<rect
style="opacity:1;vector-effect:none;fill:#d1cdae;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.69524068;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect981"
width="6.7924094"
height="1.0437757"
x="6.8686152"
y="283.21484" />
<rect
y="280.78162"
x="4.6007581"
height="1.0910227"
width="11.375371"
id="rect983"
style="opacity:1;vector-effect:none;fill:#d1cdae;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.91985494;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

View file

@ -0,0 +1,113 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="72"
height="72"
viewBox="0 0 19.049999 19.05"
version="1.1"
id="svg8"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
sodipodi:docname="wb.svg"
inkscape:export-filename="/home/loic/Documents/Git/manzerbredes/ochess/tools/skin/chesscom/wb.png"
inkscape:export-xdpi="240"
inkscape:export-ydpi="240">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="7.1461979"
inkscape:cx="25.705888"
inkscape:cy="21.410004"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1908"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1"
units="px" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-1.1137588,-276.89348)">
<g
id="g3945"
transform="translate(0.05542547,-0.11817379)">
<path
id="path1591"
d="m 7.1530766,291.2932 c 2.1403697,0.91547 4.3583554,1.21667 6.7681354,0"
style="opacity:1;vector-effect:none;fill:#f6f2ce;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="path1589"
d="m 8.192511,288.55287 -1.0394344,2.74033 c 2.2560451,-0.65611 4.5120904,-0.4529 6.7681354,0 l -1.098493,-2.74033 c -1.305136,-0.34747 -2.791806,-0.43021 -4.630208,0 z"
style="opacity:1;vector-effect:none;fill:#f6f2ce;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="path1587"
d="m 12.822719,288.55287 c 2.344538,-1.52956 3.171151,-3.49626 1.133929,-5.90588 -0.532259,-0.62955 -2.189112,-1.81052 -3.449033,-2.76395 -1.2599201,0.95343 -2.9167739,2.1344 -3.4490322,2.76395 -2.0372225,2.40962 -1.2106094,4.37632 1.1339284,5.90588 1.4909878,-0.3407 3.0139428,-0.47361 4.6302078,0 z"
style="opacity:1;vector-effect:none;fill:#f6f2ce;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
inkscape:connector-curvature="0" />
<circle
r="1.1860086"
cy="278.66583"
cx="10.583333"
id="path6200"
style="opacity:1;vector-effect:none;fill:#f6f2ce;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.69999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<path
id="path1585"
d="m 18.56801,295.35349 c -0.63525,-0.63967 -1.322049,-0.93232 -4.153506,-0.25343 -2.831456,0.67889 -3.864052,-1.63635 -3.831171,-3.00391 h 1.186009 c 1.074924,1.46949 1.896002,1.362 3.925521,0.91875 2.029519,-0.44325 2.703364,-0.12454 3.875408,0.36749 z"
style="opacity:1;vector-effect:none;fill:#f6f2ce;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="path6249"
d="m 2.5986563,295.35349 c 0.6352498,-0.63967 1.3220491,-0.93232 4.1535059,-0.25343 2.8314569,0.67889 3.8640518,-1.63635 3.8311708,-3.00391 H 9.3973249 c -1.0749243,1.46949 -1.8960024,1.362 -3.9255212,0.91875 -2.0295188,-0.44325 -2.7033643,-0.12454 -3.8754081,0.36749 z"
style="opacity:1;vector-effect:none;fill:#f6f2ce;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
inkscape:connector-curvature="0" />
<rect
ry="0.30248258"
y="283.21664"
x="10.404153"
height="3.0424693"
width="0.35835883"
id="rect6261"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<rect
transform="rotate(90)"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
id="rect6273"
width="0.35835883"
height="3.0424693"
x="284.55869"
y="-12.104567"
ry="0.30248258" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.8 KiB

View file

@ -0,0 +1,113 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="73"
height="73"
viewBox="0 0 19.314582 19.314584"
version="1.1"
id="svg8"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
sodipodi:docname="wk.svg"
inkscape:export-filename="/home/loic/Documents/Git/manzerbredes/ochess/tools/skin/chesscom/wk.png"
inkscape:export-xdpi="240"
inkscape:export-ydpi="240">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="5.6"
inkscape:cx="-17.085113"
inkscape:cy="26.7644"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1908"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1"
units="px"
inkscape:snap-global="true" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-1.02937,-276.46598)">
<g
id="g3335"
transform="translate(0.10332817,-0.29338015)">
<path
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
id="path1528"
d="m 12.336258,283.1185 c 0.04444,-0.13338 0.0673,-0.27123 0.06796,-0.40979 3.8e-5,-0.8488 -0.815221,-1.53689 -1.820884,-1.53686 -1.005662,-3e-5 -1.8209218,0.68806 -1.8208842,1.53686 6.897e-4,0.1652 0.03295,0.32923 0.095513,0.48576 l 1.7253712,4.87634 z"
style="opacity:1;fill:#f1eeca;fill-opacity:1;stroke:#000000;stroke-width:0.76134908;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" />
<path
sodipodi:nodetypes="ccssccccssccscsc"
inkscape:connector-curvature="0"
id="path1534"
d="m 5.4218911,281.81254 c -2.2049078,-1e-4 -3.9924203,1.75734 -3.9925211,3.92534 0.00318,1.40796 1.2353299,2.25814 2.0858001,3.40289 0,0 0.6295347,0.68192 0.8158316,1.09813 0.2397454,0.53563 0.3545003,1.72444 0.3545003,1.72444 l -0.1653646,2.57504 c 2.4574886,1.09159 8.8528826,1.15381 12.3315476,0 l -0.283704,-2.29185 c 0,0 0.171462,-1.39952 0.496094,-2.00763 0.238146,-0.4461 1.0212,-1.1219 1.0212,-1.1219 0.947563,-1.041 1.649847,-1.98907 1.652022,-3.37912 -1.01e-4,-2.168 -1.787614,-3.92544 -3.992522,-3.92534 -1.201555,10e-4 -2.62532,0.32308 -3.377021,1.61634 l -1.794261,3.12757 -1.9254422,-3.12757 c -0.662298,-1.0758 -1.9488702,-1.61437 -3.2261597,-1.61634 z"
style="opacity:1;fill:#f1eeca;fill-opacity:1;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" />
<path
inkscape:connector-curvature="0"
id="path1536"
d="m 10.583333,281.07283 v -3.6144"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 9.2722267,278.86403 H 11.89444"
id="path1538"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path1540"
d="m 4.3310014,290.2389 c 4.4880765,-1.28823 8.6848846,-1.03689 12.7330736,0"
style="fill:none;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 4.4727425,292.34139 c 4.4880765,-1.28823 8.2360375,-1.03689 12.2842265,0"
id="path1542"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path1544"
d="m 4.3310014,294.34939 c 4.4880765,-1.28823 8.6848846,-1.03689 12.7330736,0"
style="fill:none;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path1546"
d="m 10.595145,289.31743 v -3.33091"
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.5 KiB

View file

@ -0,0 +1,105 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="73"
height="73"
viewBox="0 0 19.314583 19.314583"
version="1.1"
id="svg8"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
sodipodi:docname="wn.svg"
inkscape:export-filename="/home/loic/Documents/Git/manzerbredes/ochess/tools/skin/chesscom/wn.png"
inkscape:export-xdpi="240"
inkscape:export-ydpi="240">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.8"
inkscape:cx="-19.469515"
inkscape:cy="26.044581"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1908"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1"
units="px"
inkscape:snap-global="true" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-0.96634884,-276.34041)">
<g
id="g3954"
style="fill:#f0ecc8;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-miterlimit:4;stroke-dasharray:none"
transform="translate(3.0734586,-0.22407294)">
<path
sodipodi:nodetypes="ccccccccccccscccccccc"
inkscape:connector-curvature="0"
d="M 16.725446,295.11011 H 3.6380208 c -0.2128826,-1.47281 0.3528384,-2.16701 0.8031993,-2.97657 l 3.0946802,-3.37816 c 0.1006699,-0.10989 0.6181408,-3.72358 0.5905878,-3.80338 -0.06093,-0.17652 -0.9112757,1.79841 -1.700893,2.36235 -0.5931368,0.42362 -1.9237669,0.35634 -2.5985861,0.99218 -0.3898889,0.36737 -0.6614584,1.46466 -0.6614584,1.46466 0,0 -0.6928829,1.118 -1.2992932,1.2048 -0.3770731,0.054 -0.90235777,-0.0737 -0.96856397,-0.44885 -0.0932284,-0.52823 1.22951857,-0.72684 1.03943457,-1.22842 -0.049034,-0.12939 -1.65364585,1.34654 -1.65364585,1.34654 -0.38854481,0.60048 -2.33374125,-1.96631 -1.93712795,-2.76395 0.1531432,-0.30799 2.50409221,-4.58296 2.50409221,-4.58296 l 0.42522319,-1.51191 1.0866816,-1.46465 -0.437035,-1.25205 -0.1181175,-1.73633 3.09468,1.84264 2.1851747,0.15355 c 10.0533746,-0.0497 9.9377346,12.02472 9.6383926,15.78051 z"
style="opacity:1;vector-effect:none;fill:#f0ecc8;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3917" />
<path
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0"
id="path3934"
d="m 3.9756341,280.07848 0.3173826,-1.38646 1.1860085,-1.23612 c 1.0515686,0.85819 1.3007969,2.0674 1.6704347,3.22394"
style="opacity:1;vector-effect:none;fill:#f0ecc8;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<g
id="g3959"
style="fill:#000000;stroke:#000000"
transform="translate(3.0316037,0.19488499)">
<ellipse
transform="rotate(-44.503376)"
ry="0.32665792"
rx="0.51803327"
cy="205.59862"
cx="-201.97392"
id="path3941"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.14782095px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<ellipse
ry="0.51704252"
rx="0.50523078"
cy="282.97943"
cx="3.3309152"
id="path3943"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.2935563px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3945"
d="m 2.4568452,283.44009 c 0.3073947,-0.70242 0.7815238,-1.31221 1.6536457,-1.70089"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.1 KiB

View file

@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="72"
height="72"
viewBox="0 0 19.049999 19.049999"
version="1.1"
id="svg8"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
sodipodi:docname="wp.svg"
inkscape:export-filename="/home/loic/Documents/Git/manzerbredes/ochess/tools/skin/chesscom/wp.png"
inkscape:export-xdpi="240"
inkscape:export-ydpi="240">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="3.959798"
inkscape:cx="15.614421"
inkscape:cy="36.472578"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1908"
inkscape:window-height="1131"
inkscape:window-x="0"
inkscape:window-y="35"
inkscape:window-maximized="1"
units="px"
showguides="false" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-3.6848183,-276.85723)">
<path
style="opacity:1;vector-effect:none;fill:#e4e0be;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers"
d="m 13.141948,278.34711 a 1.9072429,1.9072429 0 0 0 -1.907434,1.90703 1.9072429,1.9072429 0 0 0 1.115472,1.73326 3.174747,2.874576 0 0 0 -2.3698782,2.77868 3.174747,2.874576 0 0 0 1.3517002,2.35146 c -2.4633522,0.83765 -4.0599682,3.35302 -4.0599032,6.72407 4.68e-4,0.19213 0.0064,0.38422 0.01842,0.57574 H 19.124902 c 0.0133,-0.19147 0.02107,-0.38354 0.02283,-0.57574 6.4e-5,-3.4052 -1.629189,-5.9372 -4.135175,-6.74889 a 3.174747,2.874576 0 0 0 1.316866,-2.32664 3.174747,2.874576 0 0 0 -2.389898,-2.78188 1.9072429,1.9072429 0 0 0 1.109467,-1.73006 1.9072429,1.9072429 0 0 0 -1.907034,-1.90703 z"
id="path923"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

Some files were not shown because too many files have changed in this diff Show more