diff --git a/CMakeLists.txt b/CMakeLists.txt index 359dcb081..6d7ad177a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -308,34 +308,36 @@ set(ES_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/button_png.cpp ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/button_filled_png.cpp ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/frame_png.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/textbox_png.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/textbox_glow_png.cpp ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/scroll_gradient_png.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/star_filled_png.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/star_unfilled_png.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_a_png.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_b_png.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_x_png.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_y_png.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_l_png.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_r_png.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_start_png.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_select_png.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_dpad_all_png.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_dpad_up_png.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_dpad_down_png.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_dpad_left_png.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_dpad_right_png.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_dpad_up_down_png.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_dpad_left_right_png.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_button_a_svg.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_button_b_svg.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_button_x_svg.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_button_y_svg.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_button_l_svg.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_button_r_svg.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_button_start_svg.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_button_select_svg.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_dpad_up_svg.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_dpad_down_svg.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_dpad_left_svg.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_dpad_right_svg.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_dpad_updown_svg.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_dpad_leftright_svg.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_dpad_all_svg.cpp ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/opensans_hebrew_condensed_regular_ttf.cpp ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/opensans_hebrew_condensed_light_ttf.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/sq_bracket_png.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/arrow_png.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/checkbox_checked_png.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/checkbox_unchecked_png.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/arrow_svg.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/option_arrow_svg.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/checkbox_checked_svg.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/checkbox_unchecked_svg.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/star_filled_svg.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/star_unfilled_svg.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/on_svg.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/off_svg.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/fav_add_svg.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/fav_remove_svg.cpp ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/slider_knob_png.cpp ) diff --git a/data/ResourceUtil.cpp b/data/ResourceUtil.cpp index 69cc4017f..b1d85b192 100644 --- a/data/ResourceUtil.cpp +++ b/data/ResourceUtil.cpp @@ -2,75 +2,79 @@ #include "Resources.h" -const size_t res2hNrOfFiles = 32; +const size_t res2hNrOfFiles = 34; const Res2hEntry res2hFiles[res2hNrOfFiles] = { - {":/arrow.png", arrow_png_size, arrow_png_data}, + {":/arrow.svg", arrow_svg_size, arrow_svg_data}, {":/button.png", button_png_size, button_png_data}, {":/button_filled.png", button_filled_png_size, button_filled_png_data}, - {":/checkbox_checked.png", checkbox_checked_png_size, checkbox_checked_png_data}, - {":/checkbox_unchecked.png", checkbox_unchecked_png_size, checkbox_unchecked_png_data}, + {":/checkbox_checked.svg", checkbox_checked_svg_size, checkbox_checked_svg_data}, + {":/checkbox_unchecked.svg", checkbox_unchecked_svg_size, checkbox_unchecked_svg_data}, {":/ES_logo_16.png", ES_logo_16_png_size, ES_logo_16_png_data}, {":/ES_logo_32.png", ES_logo_32_png_size, ES_logo_32_png_data}, + {":/fav_add.svg", fav_add_svg_size, fav_add_svg_data}, + {":/fav_remove.svg", fav_remove_svg_size, fav_remove_svg_data}, {":/frame.png", frame_png_size, frame_png_data}, + {":/off.svg", off_svg_size, off_svg_data}, + {":/on.svg", on_svg_size, on_svg_data}, {":/opensans_hebrew_condensed_light.ttf", opensans_hebrew_condensed_light_ttf_size, opensans_hebrew_condensed_light_ttf_data}, {":/opensans_hebrew_condensed_regular.ttf", opensans_hebrew_condensed_regular_ttf_size, opensans_hebrew_condensed_regular_ttf_data}, + {":/option_arrow.svg", option_arrow_svg_size, option_arrow_svg_data}, {":/scroll_gradient.png", scroll_gradient_png_size, scroll_gradient_png_data}, {":/slider_knob.png", slider_knob_png_size, slider_knob_png_data}, - {":/sq_bracket.png", sq_bracket_png_size, sq_bracket_png_data}, - {":/star_filled.png", star_filled_png_size, star_filled_png_data}, - {":/star_unfilled.png", star_unfilled_png_size, star_unfilled_png_data}, - {":/textbox.png", textbox_png_size, textbox_png_data}, - {":/textbox_glow.png", textbox_glow_png_size, textbox_glow_png_data}, - {":/help/a.png", help_a_png_size, help_a_png_data}, - {":/help/b.png", help_b_png_size, help_b_png_data}, - {":/help/dpad_all.png", help_dpad_all_png_size, help_dpad_all_png_data}, - {":/help/dpad_down.png", help_dpad_down_png_size, help_dpad_down_png_data}, - {":/help/dpad_left.png", help_dpad_left_png_size, help_dpad_left_png_data}, - {":/help/dpad_left_right.png", help_dpad_left_right_png_size, help_dpad_left_right_png_data}, - {":/help/dpad_right.png", help_dpad_right_png_size, help_dpad_right_png_data}, - {":/help/dpad_up.png", help_dpad_up_png_size, help_dpad_up_png_data}, - {":/help/dpad_up_down.png", help_dpad_up_down_png_size, help_dpad_up_down_png_data}, - {":/help/l.png", help_l_png_size, help_l_png_data}, - {":/help/r.png", help_r_png_size, help_r_png_data}, - {":/help/select.png", help_select_png_size, help_select_png_data}, - {":/help/start.png", help_start_png_size, help_start_png_data}, - {":/help/x.png", help_x_png_size, help_x_png_data}, - {":/help/y.png", help_y_png_size, help_y_png_data} + {":/star_filled.svg", star_filled_svg_size, star_filled_svg_data}, + {":/star_unfilled.svg", star_unfilled_svg_size, star_unfilled_svg_data}, + {":/help/button_a.svg", help_button_a_svg_size, help_button_a_svg_data}, + {":/help/button_b.svg", help_button_b_svg_size, help_button_b_svg_data}, + {":/help/button_l.svg", help_button_l_svg_size, help_button_l_svg_data}, + {":/help/button_r.svg", help_button_r_svg_size, help_button_r_svg_data}, + {":/help/button_select.svg", help_button_select_svg_size, help_button_select_svg_data}, + {":/help/button_start.svg", help_button_start_svg_size, help_button_start_svg_data}, + {":/help/button_x.svg", help_button_x_svg_size, help_button_x_svg_data}, + {":/help/button_y.svg", help_button_y_svg_size, help_button_y_svg_data}, + {":/help/dpad_all.svg", help_dpad_all_svg_size, help_dpad_all_svg_data}, + {":/help/dpad_down.svg", help_dpad_down_svg_size, help_dpad_down_svg_data}, + {":/help/dpad_left.svg", help_dpad_left_svg_size, help_dpad_left_svg_data}, + {":/help/dpad_leftright.svg", help_dpad_leftright_svg_size, help_dpad_leftright_svg_data}, + {":/help/dpad_right.svg", help_dpad_right_svg_size, help_dpad_right_svg_data}, + {":/help/dpad_up.svg", help_dpad_up_svg_size, help_dpad_up_svg_data}, + {":/help/dpad_updown.svg", help_dpad_updown_svg_size, help_dpad_updown_svg_data} }; res2hMapType::value_type mapTemp[] = { - std::make_pair(":/arrow.png", res2hFiles[0]), + std::make_pair(":/arrow.svg", res2hFiles[0]), std::make_pair(":/button.png", res2hFiles[1]), std::make_pair(":/button_filled.png", res2hFiles[2]), - std::make_pair(":/checkbox_checked.png", res2hFiles[3]), - std::make_pair(":/checkbox_unchecked.png", res2hFiles[4]), + std::make_pair(":/checkbox_checked.svg", res2hFiles[3]), + std::make_pair(":/checkbox_unchecked.svg", res2hFiles[4]), std::make_pair(":/ES_logo_16.png", res2hFiles[5]), std::make_pair(":/ES_logo_32.png", res2hFiles[6]), - std::make_pair(":/frame.png", res2hFiles[7]), - std::make_pair(":/opensans_hebrew_condensed_light.ttf", res2hFiles[8]), - std::make_pair(":/opensans_hebrew_condensed_regular.ttf", res2hFiles[9]), - std::make_pair(":/scroll_gradient.png", res2hFiles[10]), - std::make_pair(":/slider_knob.png", res2hFiles[11]), - std::make_pair(":/sq_bracket.png", res2hFiles[12]), - std::make_pair(":/star_filled.png", res2hFiles[13]), - std::make_pair(":/star_unfilled.png", res2hFiles[14]), - std::make_pair(":/textbox.png", res2hFiles[15]), - std::make_pair(":/textbox_glow.png", res2hFiles[16]), - std::make_pair(":/help/a.png", res2hFiles[17]), - std::make_pair(":/help/b.png", res2hFiles[18]), - std::make_pair(":/help/dpad_all.png", res2hFiles[19]), - std::make_pair(":/help/dpad_down.png", res2hFiles[20]), - std::make_pair(":/help/dpad_left.png", res2hFiles[21]), - std::make_pair(":/help/dpad_left_right.png", res2hFiles[22]), - std::make_pair(":/help/dpad_right.png", res2hFiles[23]), - std::make_pair(":/help/dpad_up.png", res2hFiles[24]), - std::make_pair(":/help/dpad_up_down.png", res2hFiles[25]), - std::make_pair(":/help/l.png", res2hFiles[26]), - std::make_pair(":/help/r.png", res2hFiles[27]), - std::make_pair(":/help/select.png", res2hFiles[28]), - std::make_pair(":/help/start.png", res2hFiles[29]), - std::make_pair(":/help/x.png", res2hFiles[30]), - std::make_pair(":/help/y.png", res2hFiles[31]) + std::make_pair(":/fav_add.svg", res2hFiles[7]), + std::make_pair(":/fav_remove.svg", res2hFiles[8]), + std::make_pair(":/frame.png", res2hFiles[9]), + std::make_pair(":/off.svg", res2hFiles[10]), + std::make_pair(":/on.svg", res2hFiles[11]), + std::make_pair(":/opensans_hebrew_condensed_light.ttf", res2hFiles[12]), + std::make_pair(":/opensans_hebrew_condensed_regular.ttf", res2hFiles[13]), + std::make_pair(":/option_arrow.svg", res2hFiles[14]), + std::make_pair(":/scroll_gradient.png", res2hFiles[15]), + std::make_pair(":/slider_knob.png", res2hFiles[16]), + std::make_pair(":/star_filled.svg", res2hFiles[17]), + std::make_pair(":/star_unfilled.svg", res2hFiles[18]), + std::make_pair(":/help/button_a.svg", res2hFiles[19]), + std::make_pair(":/help/button_b.svg", res2hFiles[20]), + std::make_pair(":/help/button_l.svg", res2hFiles[21]), + std::make_pair(":/help/button_r.svg", res2hFiles[22]), + std::make_pair(":/help/button_select.svg", res2hFiles[23]), + std::make_pair(":/help/button_start.svg", res2hFiles[24]), + std::make_pair(":/help/button_x.svg", res2hFiles[25]), + std::make_pair(":/help/button_y.svg", res2hFiles[26]), + std::make_pair(":/help/dpad_all.svg", res2hFiles[27]), + std::make_pair(":/help/dpad_down.svg", res2hFiles[28]), + std::make_pair(":/help/dpad_left.svg", res2hFiles[29]), + std::make_pair(":/help/dpad_leftright.svg", res2hFiles[30]), + std::make_pair(":/help/dpad_right.svg", res2hFiles[31]), + std::make_pair(":/help/dpad_up.svg", res2hFiles[32]), + std::make_pair(":/help/dpad_updown.svg", res2hFiles[33]) }; res2hMapType res2hMap(mapTemp, mapTemp + sizeof mapTemp / sizeof mapTemp[0]); diff --git a/data/Resources.h b/data/Resources.h index 8da4df8c5..0f2d27b55 100644 --- a/data/Resources.h +++ b/data/Resources.h @@ -5,8 +5,8 @@ #include #include -extern const size_t arrow_png_size; -extern const unsigned char arrow_png_data[]; +extern const size_t arrow_svg_size; +extern const unsigned char arrow_svg_data[]; extern const size_t button_png_size; extern const unsigned char button_png_data[]; @@ -14,11 +14,11 @@ extern const unsigned char button_png_data[]; extern const size_t button_filled_png_size; extern const unsigned char button_filled_png_data[]; -extern const size_t checkbox_checked_png_size; -extern const unsigned char checkbox_checked_png_data[]; +extern const size_t checkbox_checked_svg_size; +extern const unsigned char checkbox_checked_svg_data[]; -extern const size_t checkbox_unchecked_png_size; -extern const unsigned char checkbox_unchecked_png_data[]; +extern const size_t checkbox_unchecked_svg_size; +extern const unsigned char checkbox_unchecked_svg_data[]; extern const size_t ES_logo_16_png_size; extern const unsigned char ES_logo_16_png_data[]; @@ -26,80 +26,86 @@ extern const unsigned char ES_logo_16_png_data[]; extern const size_t ES_logo_32_png_size; extern const unsigned char ES_logo_32_png_data[]; +extern const size_t fav_add_svg_size; +extern const unsigned char fav_add_svg_data[]; + +extern const size_t fav_remove_svg_size; +extern const unsigned char fav_remove_svg_data[]; + extern const size_t frame_png_size; extern const unsigned char frame_png_data[]; +extern const size_t off_svg_size; +extern const unsigned char off_svg_data[]; + +extern const size_t on_svg_size; +extern const unsigned char on_svg_data[]; + extern const size_t opensans_hebrew_condensed_light_ttf_size; extern const unsigned char opensans_hebrew_condensed_light_ttf_data[]; extern const size_t opensans_hebrew_condensed_regular_ttf_size; extern const unsigned char opensans_hebrew_condensed_regular_ttf_data[]; +extern const size_t option_arrow_svg_size; +extern const unsigned char option_arrow_svg_data[]; + extern const size_t scroll_gradient_png_size; extern const unsigned char scroll_gradient_png_data[]; extern const size_t slider_knob_png_size; extern const unsigned char slider_knob_png_data[]; -extern const size_t sq_bracket_png_size; -extern const unsigned char sq_bracket_png_data[]; +extern const size_t star_filled_svg_size; +extern const unsigned char star_filled_svg_data[]; -extern const size_t star_filled_png_size; -extern const unsigned char star_filled_png_data[]; +extern const size_t star_unfilled_svg_size; +extern const unsigned char star_unfilled_svg_data[]; -extern const size_t star_unfilled_png_size; -extern const unsigned char star_unfilled_png_data[]; +extern const size_t help_button_a_svg_size; +extern const unsigned char help_button_a_svg_data[]; -extern const size_t textbox_png_size; -extern const unsigned char textbox_png_data[]; +extern const size_t help_button_b_svg_size; +extern const unsigned char help_button_b_svg_data[]; -extern const size_t textbox_glow_png_size; -extern const unsigned char textbox_glow_png_data[]; +extern const size_t help_button_l_svg_size; +extern const unsigned char help_button_l_svg_data[]; -extern const size_t help_a_png_size; -extern const unsigned char help_a_png_data[]; +extern const size_t help_button_r_svg_size; +extern const unsigned char help_button_r_svg_data[]; -extern const size_t help_b_png_size; -extern const unsigned char help_b_png_data[]; +extern const size_t help_button_select_svg_size; +extern const unsigned char help_button_select_svg_data[]; -extern const size_t help_dpad_all_png_size; -extern const unsigned char help_dpad_all_png_data[]; +extern const size_t help_button_start_svg_size; +extern const unsigned char help_button_start_svg_data[]; -extern const size_t help_dpad_down_png_size; -extern const unsigned char help_dpad_down_png_data[]; +extern const size_t help_button_x_svg_size; +extern const unsigned char help_button_x_svg_data[]; -extern const size_t help_dpad_left_png_size; -extern const unsigned char help_dpad_left_png_data[]; +extern const size_t help_button_y_svg_size; +extern const unsigned char help_button_y_svg_data[]; -extern const size_t help_dpad_left_right_png_size; -extern const unsigned char help_dpad_left_right_png_data[]; +extern const size_t help_dpad_all_svg_size; +extern const unsigned char help_dpad_all_svg_data[]; -extern const size_t help_dpad_right_png_size; -extern const unsigned char help_dpad_right_png_data[]; +extern const size_t help_dpad_down_svg_size; +extern const unsigned char help_dpad_down_svg_data[]; -extern const size_t help_dpad_up_png_size; -extern const unsigned char help_dpad_up_png_data[]; +extern const size_t help_dpad_left_svg_size; +extern const unsigned char help_dpad_left_svg_data[]; -extern const size_t help_dpad_up_down_png_size; -extern const unsigned char help_dpad_up_down_png_data[]; +extern const size_t help_dpad_leftright_svg_size; +extern const unsigned char help_dpad_leftright_svg_data[]; -extern const size_t help_l_png_size; -extern const unsigned char help_l_png_data[]; +extern const size_t help_dpad_right_svg_size; +extern const unsigned char help_dpad_right_svg_data[]; -extern const size_t help_r_png_size; -extern const unsigned char help_r_png_data[]; +extern const size_t help_dpad_up_svg_size; +extern const unsigned char help_dpad_up_svg_data[]; -extern const size_t help_select_png_size; -extern const unsigned char help_select_png_data[]; - -extern const size_t help_start_png_size; -extern const unsigned char help_start_png_data[]; - -extern const size_t help_x_png_size; -extern const unsigned char help_x_png_data[]; - -extern const size_t help_y_png_size; -extern const unsigned char help_y_png_data[]; +extern const size_t help_dpad_updown_svg_size; +extern const unsigned char help_dpad_updown_svg_data[]; struct Res2hEntry { const std::string relativeFileName; diff --git a/data/converted/arrow_png.cpp b/data/converted/arrow_png.cpp deleted file mode 100644 index cf691cef0..000000000 --- a/data/converted/arrow_png.cpp +++ /dev/null @@ -1,127 +0,0 @@ -//this file was auto-generated from "arrow.png" by res2h - -#include "../Resources.h" - -const size_t arrow_png_size = 1193; -const unsigned char arrow_png_data[1193] = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x0c, - 0x00,0x00,0x00,0x16,0x08,0x06,0x00,0x00,0x00,0xf4, - 0x38,0x7d,0x1a,0x00,0x00,0x00,0x19,0x74,0x45,0x58, - 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, - 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, - 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, - 0x00,0x00,0x03,0x24,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,0x20,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,0x41, - 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, - 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, - 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, - 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, - 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, - 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x22,0x3e,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,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,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, - 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,0x20,0x78,0x6d,0x6c, - 0x6e,0x73,0x3a,0x73,0x74,0x52,0x65,0x66,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,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d, - 0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54, - 0x6f,0x6f,0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65, - 0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70, - 0x20,0x43,0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69, - 0x6e,0x74,0x6f,0x73,0x68,0x29,0x22,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,0x39,0x33,0x41,0x30,0x43,0x42, - 0x45,0x30,0x39,0x44,0x37,0x45,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d, - 0x70,0x4d,0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65, - 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x64,0x69,0x64,0x3a,0x39,0x33,0x41,0x30,0x43,0x42, - 0x45,0x31,0x39,0x44,0x37,0x45,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x3e,0x20,0x3c, - 0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69, - 0x76,0x65,0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74, - 0x52,0x65,0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e, - 0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x69,0x69,0x64,0x3a,0x43,0x36,0x39,0x45,0x38,0x46, - 0x46,0x46,0x39,0x44,0x37,0x44,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x73,0x74, - 0x52,0x65,0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65, - 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x64,0x69,0x64,0x3a,0x43,0x36,0x39,0x45,0x39,0x30, - 0x30,0x30,0x39,0x44,0x37,0x44,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x2f,0x3e,0x20, - 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63, - 0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c, - 0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20, - 0x3c,0x2f,0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74, - 0x61,0x3e,0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b, - 0x65,0x74,0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22, - 0x3f,0x3e,0x28,0xbb,0x69,0xeb,0x00,0x00,0x01,0x1b, - 0x49,0x44,0x41,0x54,0x78,0xda,0x8c,0xd3,0xbf,0x4b, - 0x02,0x61,0x1c,0xc7,0xf1,0xa7,0x43,0xa4,0x20,0x50, - 0x70,0xd1,0x21,0x87,0x68,0x69,0x91,0x36,0x17,0xc5, - 0x45,0xc2,0xa1,0x82,0x26,0x83,0x20,0x6a,0x69,0xb0, - 0x2d,0x82,0xdb,0xfa,0x0f,0x6c,0x11,0xda,0x92,0x70, - 0x73,0xa8,0x10,0x0a,0xaa,0x29,0xd1,0xa5,0x2d,0x5a, - 0x5a,0x04,0xc1,0x06,0x11,0x12,0x24,0x82,0x24,0x14, - 0x7b,0x3f,0xf0,0x08,0xc7,0xc1,0xdd,0x7d,0xbf,0xf0, - 0x9a,0xee,0xfb,0xb9,0xe7,0xf7,0x82,0x6d,0xdb,0x65, - 0xa5,0xd4,0x19,0x66,0x4a,0x50,0x16,0x4e,0x71,0x8d, - 0x90,0x34,0xa0,0xeb,0x00,0x77,0x58,0x92,0x06,0x74, - 0x6d,0xe1,0x19,0x51,0x69,0xa0,0x87,0x0c,0x9a,0x48, - 0x48,0x02,0xba,0xf9,0x03,0x29,0xb4,0xb1,0x16,0x14, - 0xf8,0x44,0x16,0xaf,0x58,0x45,0x0b,0x1b,0x7e,0x01, - 0x5d,0x43,0xe4,0xcd,0x5a,0xe2,0x78,0x41,0xce,0x2f, - 0xa0,0xeb,0x07,0xdb,0xa8,0x23,0x82,0x47,0xec,0xf8, - 0x05,0x74,0xfd,0x61,0x1f,0x97,0x58,0xc4,0x2d,0x8e, - 0x54,0xc0,0x61,0x4d,0x71,0x82,0x2f,0x9c,0xe3,0x0a, - 0x31,0x4b,0x70,0xb8,0xce,0x2b,0x63,0x85,0x02,0xce, - 0xa8,0x82,0x92,0x19,0xed,0x18,0x55,0xaf,0x40,0x18, - 0x35,0x14,0x31,0xc6,0x1e,0x1a,0x5e,0x6b,0x58,0xc6, - 0x0d,0x36,0xf1,0x6d,0x76,0xa8,0x39,0xff,0xe8,0x0e, - 0xc4,0xf0,0x80,0x34,0x06,0x28,0xe0,0xcd,0xd9,0xe0, - 0x0c,0xac,0xe0,0x09,0xeb,0xe8,0x9a,0x11,0x3a,0xee, - 0xe1,0x9d,0x01,0x7d,0x7f,0x92,0x78,0x37,0x7f,0xee, - 0x07,0xdd,0xa5,0xa4,0x09,0xe5,0xbc,0x9a,0xdd,0x81, - 0x7b,0x33,0x8d,0x91,0xe4,0x3d,0xe8,0x2d,0xdc,0xc5, - 0xaf,0xe4,0xc5,0x5d,0xe0,0x10,0x13,0xc9,0x9b,0xfe, - 0x17,0x60,0x00,0x1d,0x24,0x35,0x2f,0xfe,0xb0,0x0a, - 0xfe,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae, - 0x42,0x60,0x82 -}; diff --git a/data/converted/arrow_svg.cpp b/data/converted/arrow_svg.cpp new file mode 100644 index 000000000..781bda059 --- /dev/null +++ b/data/converted/arrow_svg.cpp @@ -0,0 +1,92 @@ +//this file was auto-generated from "arrow.svg" by res2h + +#include "../Resources.h" + +const size_t arrow_svg_size = 849; +const unsigned char arrow_svg_data[849] = { + 0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20, + 0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22, + 0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a, + 0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62, + 0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61, + 0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33, + 0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e, + 0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72, + 0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30, + 0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20, + 0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f, + 0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20, + 0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f, + 0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20, + 0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45, + 0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44, + 0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64, + 0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22, + 0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45, + 0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a, + 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f, + 0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76, + 0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78, + 0x6c,0x69,0x6e,0x6b,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,0x78, + 0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30, + 0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78, + 0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68, + 0x3d,0x22,0x31,0x32,0x2e,0x31,0x36,0x35,0x70,0x78, + 0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22, + 0x32,0x31,0x2e,0x39,0x32,0x31,0x70,0x78,0x22,0x20, + 0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30, + 0x20,0x30,0x20,0x31,0x32,0x2e,0x31,0x36,0x35,0x20, + 0x32,0x31,0x2e,0x39,0x32,0x31,0x22,0x20,0x65,0x6e, + 0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67, + 0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77, + 0x20,0x30,0x20,0x30,0x20,0x31,0x32,0x2e,0x31,0x36, + 0x35,0x20,0x32,0x31,0x2e,0x39,0x32,0x31,0x22,0x20, + 0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d, + 0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22, + 0x3e,0x0d,0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c, + 0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d, + 0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20, + 0x64,0x3d,0x22,0x4d,0x30,0x2e,0x37,0x35,0x2c,0x32, + 0x31,0x2e,0x39,0x32,0x31,0x63,0x2d,0x30,0x2e,0x31, + 0x39,0x37,0x2c,0x30,0x2d,0x30,0x2e,0x33,0x39,0x35, + 0x2d,0x30,0x2e,0x30,0x37,0x37,0x2d,0x30,0x2e,0x35, + 0x34,0x32,0x2d,0x30,0x2e,0x32,0x33,0x31,0x63,0x2d, + 0x30,0x2e,0x32,0x38,0x37,0x2d,0x30,0x2e,0x32,0x39, + 0x39,0x2d,0x30,0x2e,0x32,0x37,0x36,0x2d,0x30,0x2e, + 0x37,0x37,0x33,0x2c,0x30,0x2e,0x30,0x32,0x33,0x2d, + 0x31,0x2e,0x30,0x36,0x31,0x6c,0x31,0x30,0x2e,0x30, + 0x39,0x38,0x2d,0x39,0x2e,0x36,0x36,0x38,0x0d,0x0a, + 0x09,0x09,0x4c,0x30,0x2e,0x32,0x33,0x31,0x2c,0x31, + 0x2e,0x32,0x39,0x32,0x63,0x2d,0x30,0x2e,0x32,0x39, + 0x39,0x2d,0x30,0x2e,0x32,0x38,0x36,0x2d,0x30,0x2e, + 0x33,0x31,0x2d,0x30,0x2e,0x37,0x36,0x31,0x2d,0x30, + 0x2e,0x30,0x32,0x33,0x2d,0x31,0x2e,0x30,0x36,0x63, + 0x30,0x2e,0x32,0x38,0x36,0x2d,0x30,0x2e,0x33,0x2c, + 0x30,0x2e,0x37,0x36,0x31,0x2d,0x30,0x2e,0x33,0x31, + 0x2c,0x31,0x2e,0x30,0x36,0x2d,0x30,0x2e,0x30,0x32, + 0x33,0x6c,0x31,0x30,0x2e,0x36,0x36,0x35,0x2c,0x31, + 0x30,0x2e,0x32,0x31,0x31,0x0d,0x0a,0x09,0x09,0x63, + 0x30,0x2e,0x31,0x34,0x37,0x2c,0x30,0x2e,0x31,0x34, + 0x31,0x2c,0x30,0x2e,0x32,0x33,0x31,0x2c,0x30,0x2e, + 0x33,0x33,0x37,0x2c,0x30,0x2e,0x32,0x33,0x31,0x2c, + 0x30,0x2e,0x35,0x34,0x32,0x73,0x2d,0x30,0x2e,0x30, + 0x38,0x34,0x2c,0x30,0x2e,0x34,0x2d,0x30,0x2e,0x32, + 0x33,0x31,0x2c,0x30,0x2e,0x35,0x34,0x32,0x4c,0x31, + 0x2e,0x32,0x36,0x39,0x2c,0x32,0x31,0x2e,0x37,0x31, + 0x33,0x43,0x31,0x2e,0x31,0x32,0x34,0x2c,0x32,0x31, + 0x2e,0x38,0x35,0x32,0x2c,0x30,0x2e,0x39,0x33,0x37, + 0x2c,0x32,0x31,0x2e,0x39,0x32,0x31,0x2c,0x30,0x2e, + 0x37,0x35,0x2c,0x32,0x31,0x2e,0x39,0x32,0x31,0x7a, + 0x22,0x2f,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d, + 0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d,0x0a +}; diff --git a/data/converted/checkbox_checked_png.cpp b/data/converted/checkbox_checked_png.cpp deleted file mode 100644 index 8c4a629c4..000000000 --- a/data/converted/checkbox_checked_png.cpp +++ /dev/null @@ -1,137 +0,0 @@ -//this file was auto-generated from "checkbox_checked.png" by res2h - -#include "../Resources.h" - -const size_t checkbox_checked_png_size = 1296; -const unsigned char checkbox_checked_png_data[1296] = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x18, - 0x00,0x00,0x00,0x18,0x08,0x06,0x00,0x00,0x00,0xe0, - 0x77,0x3d,0xf8,0x00,0x00,0x00,0x19,0x74,0x45,0x58, - 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, - 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, - 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, - 0x00,0x00,0x03,0x24,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,0x20,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,0x41, - 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, - 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, - 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, - 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, - 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, - 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x22,0x3e,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,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,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, - 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,0x20,0x78,0x6d,0x6c, - 0x6e,0x73,0x3a,0x73,0x74,0x52,0x65,0x66,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,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d, - 0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54, - 0x6f,0x6f,0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65, - 0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70, - 0x20,0x43,0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69, - 0x6e,0x74,0x6f,0x73,0x68,0x29,0x22,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,0x39,0x46,0x39,0x36,0x42, - 0x42,0x44,0x39,0x44,0x38,0x37,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d, - 0x70,0x4d,0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65, - 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x64,0x69,0x64,0x3a,0x32,0x39,0x46,0x39,0x36,0x42, - 0x42,0x45,0x39,0x44,0x38,0x37,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x3e,0x20,0x3c, - 0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69, - 0x76,0x65,0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74, - 0x52,0x65,0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e, - 0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x69,0x69,0x64,0x3a,0x30,0x31,0x33,0x32,0x33,0x39, - 0x44,0x45,0x39,0x44,0x38,0x37,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x73,0x74, - 0x52,0x65,0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65, - 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x64,0x69,0x64,0x3a,0x32,0x39,0x46,0x39,0x36,0x42, - 0x42,0x43,0x39,0x44,0x38,0x37,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x2f,0x3e,0x20, - 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63, - 0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c, - 0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20, - 0x3c,0x2f,0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74, - 0x61,0x3e,0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b, - 0x65,0x74,0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22, - 0x3f,0x3e,0xf8,0x79,0xf8,0xc2,0x00,0x00,0x01,0x82, - 0x49,0x44,0x41,0x54,0x78,0xda,0xac,0x95,0xbd,0x4a, - 0x03,0x41,0x14,0x85,0x67,0x27,0xdb,0x5b,0xad,0x8d, - 0xf6,0x29,0x62,0xa7,0x85,0x82,0x16,0x82,0xe0,0x03, - 0x88,0xb1,0xd2,0xda,0xc2,0xc2,0x6e,0xbb,0xa0,0x79, - 0x03,0x51,0xc8,0xd6,0x5a,0x45,0xf4,0x19,0x2c,0x22, - 0x68,0xa1,0xa5,0x90,0xf4,0x6a,0x61,0x1a,0xd3,0x1b, - 0xd6,0x73,0xe5,0x2c,0x0c,0x61,0x9c,0xdc,0x64,0xf7, - 0xc2,0x97,0xd9,0x09,0x73,0xcf,0xd9,0xf9,0xb9,0x3b, - 0x51,0x9a,0xa6,0x06,0xb1,0x00,0xce,0xc0,0x1e,0x58, - 0x06,0x91,0x99,0x2f,0x72,0xf0,0x01,0xee,0xc0,0x39, - 0xf8,0x8e,0x29,0xfe,0x08,0x56,0x4c,0xf9,0x88,0xf8, - 0x82,0xa7,0x60,0x07,0x6c,0x5a,0xfc,0xb4,0x28,0xde, - 0x07,0x1b,0x20,0xe6,0xc0,0x79,0x88,0xa9,0xd1,0xa7, - 0x66,0x4b,0x0c,0xf6,0xe9,0x7e,0x04,0x9e,0xc1,0xb8, - 0xc4,0x0c,0xc6,0xd4,0x38,0x64,0xbf,0x69,0x39,0x25, - 0x89,0x17,0x67,0xe0,0x31,0x48,0x66,0x10,0x4e,0x98, - 0x53,0xc4,0x2b,0xdb,0x25,0xeb,0x6c,0x68,0xce,0xf6, - 0x04,0x74,0xc0,0x83,0xd2,0x24,0xe1,0xd8,0x0e,0x73, - 0x5d,0xad,0xc8,0x7a,0x12,0x6e,0xc1,0x1b,0x68,0x28, - 0x4c,0x0a,0xf1,0x06,0x73,0xba,0x93,0x03,0x7c,0x06, - 0x5f,0x60,0x5b,0x61,0x32,0x29,0x2e,0x39,0x43,0x8d, - 0x81,0xe1,0xc0,0x90,0x89,0x4a,0x3c,0x64,0x10,0x32, - 0x51,0x8b,0x1b,0x9e,0x5b,0xa3,0x30,0x29,0x04,0x7b, - 0xfc,0xbf,0xae,0x11,0xd7,0x18,0xb8,0x26,0x3d,0x0a, - 0x4b,0x0c,0x34,0xe2,0xd3,0x96,0xa8,0x92,0xb0,0x33, - 0x9c,0xf3,0x3a,0xdf,0x7c,0xc0,0x67,0x55,0x9d,0x58, - 0xa5,0x78,0xb1,0xa1,0x5b,0x44,0x5b,0x27,0x41,0x83, - 0xff,0x4e,0xcb,0x50,0x59,0x27,0x41,0x83,0x69,0x47, - 0x51,0x6d,0xe2,0x33,0x58,0x54,0x9e,0x73,0x95,0x89, - 0xcf,0xa0,0xa9,0x2d,0x22,0x8f,0xc9,0x81,0xaf,0x0e, - 0x72,0xe7,0xc2,0x90,0xe7,0x2b,0xf0,0x03,0xee,0x35, - 0xe7,0xdc,0x31,0x91,0xeb,0x36,0x73,0x6e,0xb6,0xbf, - 0xaf,0xaa,0xe5,0x1d,0x2a,0xb1,0xe6,0x24,0x65,0x4a, - 0x71,0xd7,0x24,0x73,0xfa,0xab,0x6c,0x3f,0x2d,0x3f, - 0xcf,0x12,0xd7,0x60,0x1d,0xd4,0x4a,0xd4,0x55,0x8d, - 0x1a,0x37,0xec,0x77,0x65,0x89,0xda,0x60,0x97,0x6b, - 0xf8,0x54,0x61,0x11,0xcb,0xbe,0xb4,0x65,0x06,0x23, - 0xb9,0xfd,0xc1,0x05,0x78,0xaf,0x40,0x58,0x34,0x2e, - 0xa9,0x39,0xfa,0x15,0x60,0x00,0x12,0x0c,0x71,0x62, - 0xd6,0x69,0x05,0x82,0x00,0x00,0x00,0x00,0x49,0x45, - 0x4e,0x44,0xae,0x42,0x60,0x82 -}; diff --git a/data/converted/checkbox_checked_svg.cpp b/data/converted/checkbox_checked_svg.cpp new file mode 100644 index 000000000..06848c955 --- /dev/null +++ b/data/converted/checkbox_checked_svg.cpp @@ -0,0 +1,141 @@ +//this file was auto-generated from "checkbox_checked.svg" by res2h + +#include "../Resources.h" + +const size_t checkbox_checked_svg_size = 1337; +const unsigned char checkbox_checked_svg_data[1337] = { + 0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20, + 0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22, + 0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a, + 0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62, + 0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61, + 0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33, + 0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e, + 0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72, + 0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30, + 0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20, + 0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f, + 0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20, + 0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f, + 0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20, + 0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45, + 0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44, + 0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64, + 0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22, + 0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45, + 0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a, + 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f, + 0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76, + 0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78, + 0x6c,0x69,0x6e,0x6b,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,0x78, + 0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30, + 0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78, + 0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68, + 0x3d,0x22,0x32,0x31,0x2e,0x39,0x36,0x32,0x70,0x78, + 0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22, + 0x32,0x31,0x2e,0x39,0x35,0x39,0x70,0x78,0x22,0x20, + 0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30, + 0x20,0x30,0x20,0x32,0x31,0x2e,0x39,0x36,0x32,0x20, + 0x32,0x31,0x2e,0x39,0x35,0x39,0x22,0x20,0x65,0x6e, + 0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67, + 0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77, + 0x20,0x30,0x20,0x30,0x20,0x32,0x31,0x2e,0x39,0x36, + 0x32,0x20,0x32,0x31,0x2e,0x39,0x35,0x39,0x22,0x20, + 0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d, + 0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22, + 0x3e,0x0d,0x0a,0x3c,0x70,0x61,0x74,0x68,0x20,0x66, + 0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37, + 0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,0x37, + 0x2e,0x37,0x31,0x2c,0x31,0x2e,0x35,0x63,0x31,0x2e, + 0x35,0x31,0x38,0x2c,0x30,0x2c,0x32,0x2e,0x37,0x35, + 0x32,0x2c,0x31,0x2e,0x32,0x33,0x34,0x2c,0x32,0x2e, + 0x37,0x35,0x32,0x2c,0x32,0x2e,0x37,0x35,0x32,0x76, + 0x31,0x33,0x2e,0x34,0x35,0x35,0x63,0x30,0x2c,0x31, + 0x2e,0x35,0x31,0x38,0x2d,0x31,0x2e,0x32,0x33,0x34, + 0x2c,0x32,0x2e,0x37,0x35,0x32,0x2d,0x32,0x2e,0x37, + 0x35,0x32,0x2c,0x32,0x2e,0x37,0x35,0x32,0x48,0x34, + 0x2e,0x32,0x35,0x32,0x0d,0x0a,0x09,0x63,0x2d,0x31, + 0x2e,0x35,0x31,0x38,0x2c,0x30,0x2d,0x32,0x2e,0x37, + 0x35,0x32,0x2d,0x31,0x2e,0x32,0x33,0x34,0x2d,0x32, + 0x2e,0x37,0x35,0x32,0x2d,0x32,0x2e,0x37,0x35,0x32, + 0x56,0x34,0x2e,0x32,0x35,0x32,0x43,0x31,0x2e,0x35, + 0x2c,0x32,0x2e,0x37,0x33,0x34,0x2c,0x32,0x2e,0x37, + 0x33,0x34,0x2c,0x31,0x2e,0x35,0x2c,0x34,0x2e,0x32, + 0x35,0x32,0x2c,0x31,0x2e,0x35,0x48,0x31,0x37,0x2e, + 0x37,0x31,0x20,0x4d,0x31,0x37,0x2e,0x37,0x31,0x2c, + 0x30,0x48,0x34,0x2e,0x32,0x35,0x32,0x43,0x31,0x2e, + 0x39,0x31,0x34,0x2c,0x30,0x2c,0x30,0x2c,0x31,0x2e, + 0x39,0x31,0x34,0x2c,0x30,0x2c,0x34,0x2e,0x32,0x35, + 0x32,0x76,0x31,0x33,0x2e,0x34,0x35,0x35,0x0d,0x0a, + 0x09,0x63,0x30,0x2c,0x32,0x2e,0x33,0x33,0x39,0x2c, + 0x31,0x2e,0x39,0x31,0x34,0x2c,0x34,0x2e,0x32,0x35, + 0x32,0x2c,0x34,0x2e,0x32,0x35,0x32,0x2c,0x34,0x2e, + 0x32,0x35,0x32,0x48,0x31,0x37,0x2e,0x37,0x31,0x63, + 0x32,0x2e,0x33,0x33,0x39,0x2c,0x30,0x2c,0x34,0x2e, + 0x32,0x35,0x32,0x2d,0x31,0x2e,0x39,0x31,0x33,0x2c, + 0x34,0x2e,0x32,0x35,0x32,0x2d,0x34,0x2e,0x32,0x35, + 0x32,0x56,0x34,0x2e,0x32,0x35,0x32,0x43,0x32,0x31, + 0x2e,0x39,0x36,0x32,0x2c,0x31,0x2e,0x39,0x31,0x34, + 0x2c,0x32,0x30,0x2e,0x30,0x34,0x39,0x2c,0x30,0x2c, + 0x31,0x37,0x2e,0x37,0x31,0x2c,0x30,0x4c,0x31,0x37, + 0x2e,0x37,0x31,0x2c,0x30,0x7a,0x22,0x2f,0x3e,0x0d, + 0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e, + 0x0d,0x0a,0x09,0x09,0x0d,0x0a,0x09,0x09,0x09,0x3c, + 0x72,0x65,0x63,0x74,0x20,0x78,0x3d,0x22,0x31,0x30, + 0x2e,0x32,0x33,0x32,0x22,0x20,0x79,0x3d,0x22,0x31, + 0x2e,0x30,0x37,0x39,0x22,0x20,0x74,0x72,0x61,0x6e, + 0x73,0x66,0x6f,0x72,0x6d,0x3d,0x22,0x6d,0x61,0x74, + 0x72,0x69,0x78,0x28,0x30,0x2e,0x37,0x30,0x37,0x31, + 0x20,0x30,0x2e,0x37,0x30,0x37,0x31,0x20,0x2d,0x30, + 0x2e,0x37,0x30,0x37,0x31,0x20,0x30,0x2e,0x37,0x30, + 0x37,0x31,0x20,0x31,0x30,0x2e,0x39,0x38,0x30,0x31, + 0x20,0x2d,0x34,0x2e,0x35,0x34,0x39,0x34,0x29,0x22, + 0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37, + 0x37,0x37,0x37,0x37,0x22,0x20,0x77,0x69,0x64,0x74, + 0x68,0x3d,0x22,0x31,0x2e,0x35,0x22,0x20,0x68,0x65, + 0x69,0x67,0x68,0x74,0x3d,0x22,0x31,0x39,0x2e,0x38, + 0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e, + 0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x09, + 0x0d,0x0a,0x09,0x09,0x09,0x3c,0x72,0x65,0x63,0x74, + 0x20,0x78,0x3d,0x22,0x31,0x30,0x2e,0x32,0x33,0x32, + 0x22,0x20,0x79,0x3d,0x22,0x31,0x2e,0x30,0x37,0x39, + 0x22,0x20,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72, + 0x6d,0x3d,0x22,0x6d,0x61,0x74,0x72,0x69,0x78,0x28, + 0x30,0x2e,0x37,0x30,0x37,0x31,0x20,0x30,0x2e,0x37, + 0x30,0x37,0x31,0x20,0x2d,0x30,0x2e,0x37,0x30,0x37, + 0x31,0x20,0x30,0x2e,0x37,0x30,0x37,0x31,0x20,0x31, + 0x30,0x2e,0x39,0x38,0x30,0x31,0x20,0x2d,0x34,0x2e, + 0x35,0x34,0x39,0x34,0x29,0x22,0x20,0x66,0x69,0x6c, + 0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37, + 0x22,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,0x31, + 0x2e,0x35,0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74, + 0x3d,0x22,0x31,0x39,0x2e,0x38,0x22,0x2f,0x3e,0x0d, + 0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c, + 0x67,0x3e,0x0d,0x0a,0x09,0x09,0x0d,0x0a,0x09,0x09, + 0x09,0x3c,0x72,0x65,0x63,0x74,0x20,0x78,0x3d,0x22, + 0x31,0x2e,0x30,0x38,0x32,0x22,0x20,0x79,0x3d,0x22, + 0x31,0x30,0x2e,0x32,0x33,0x22,0x20,0x74,0x72,0x61, + 0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3d,0x22,0x6d,0x61, + 0x74,0x72,0x69,0x78,0x28,0x30,0x2e,0x37,0x30,0x37, + 0x31,0x20,0x30,0x2e,0x37,0x30,0x37,0x31,0x20,0x2d, + 0x30,0x2e,0x37,0x30,0x37,0x31,0x20,0x30,0x2e,0x37, + 0x30,0x37,0x31,0x20,0x31,0x30,0x2e,0x39,0x37,0x39, + 0x33,0x20,0x2d,0x34,0x2e,0x35,0x34,0x39,0x34,0x29, + 0x22,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37, + 0x37,0x37,0x37,0x37,0x37,0x22,0x20,0x77,0x69,0x64, + 0x74,0x68,0x3d,0x22,0x31,0x39,0x2e,0x38,0x22,0x20, + 0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,0x31,0x2e, + 0x35,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67, + 0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c, + 0x2f,0x73,0x76,0x67,0x3e,0x0d,0x0a +}; diff --git a/data/converted/checkbox_unchecked_png.cpp b/data/converted/checkbox_unchecked_png.cpp deleted file mode 100644 index 16e2a3b06..000000000 --- a/data/converted/checkbox_unchecked_png.cpp +++ /dev/null @@ -1,121 +0,0 @@ -//this file was auto-generated from "checkbox_unchecked.png" by res2h - -#include "../Resources.h" - -const size_t checkbox_unchecked_png_size = 1131; -const unsigned char checkbox_unchecked_png_data[1131] = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x18, - 0x00,0x00,0x00,0x18,0x08,0x06,0x00,0x00,0x00,0xe0, - 0x77,0x3d,0xf8,0x00,0x00,0x00,0x19,0x74,0x45,0x58, - 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, - 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, - 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, - 0x00,0x00,0x03,0x24,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,0x20,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,0x41, - 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, - 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, - 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, - 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, - 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, - 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x22,0x3e,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,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,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, - 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,0x20,0x78,0x6d,0x6c, - 0x6e,0x73,0x3a,0x73,0x74,0x52,0x65,0x66,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,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d, - 0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54, - 0x6f,0x6f,0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65, - 0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70, - 0x20,0x43,0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69, - 0x6e,0x74,0x6f,0x73,0x68,0x29,0x22,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,0x30,0x31,0x33,0x32,0x33,0x39, - 0x44,0x43,0x39,0x44,0x38,0x37,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d, - 0x70,0x4d,0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65, - 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x64,0x69,0x64,0x3a,0x30,0x31,0x33,0x32,0x33,0x39, - 0x44,0x44,0x39,0x44,0x38,0x37,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x3e,0x20,0x3c, - 0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69, - 0x76,0x65,0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74, - 0x52,0x65,0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e, - 0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x69,0x69,0x64,0x3a,0x30,0x31,0x33,0x32,0x33,0x39, - 0x44,0x41,0x39,0x44,0x38,0x37,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x73,0x74, - 0x52,0x65,0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65, - 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x64,0x69,0x64,0x3a,0x30,0x31,0x33,0x32,0x33,0x39, - 0x44,0x42,0x39,0x44,0x38,0x37,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x2f,0x3e,0x20, - 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63, - 0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c, - 0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20, - 0x3c,0x2f,0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74, - 0x61,0x3e,0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b, - 0x65,0x74,0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22, - 0x3f,0x3e,0xc7,0x8f,0x1f,0x43,0x00,0x00,0x00,0xdd, - 0x49,0x44,0x41,0x54,0x78,0xda,0xec,0x95,0x31,0x0a, - 0xc2,0x40,0x14,0x44,0x77,0x37,0xdb,0x7b,0x00,0xbd, - 0x81,0x76,0x5a,0x28,0x58,0x0a,0x1e,0x40,0xb4,0xd3, - 0x33,0xd8,0xa5,0x0b,0xea,0x0d,0xc4,0x1b,0x98,0x4a, - 0xf1,0x18,0x82,0x16,0x5a,0x0a,0x39,0x80,0x5a,0x9b, - 0x03,0x84,0x38,0x1f,0x46,0x49,0x9d,0xac,0x60,0xb1, - 0x03,0x2f,0x61,0x21,0xbc,0xc9,0x27,0x90,0xaf,0xc3, - 0x30,0x54,0x48,0x0d,0x2c,0xc0,0x08,0x34,0x80,0x56, - 0xe5,0x92,0x83,0x07,0x38,0x80,0x25,0x78,0x59,0xca, - 0x8f,0xa0,0xa5,0xaa,0x47,0xf3,0x05,0xe7,0x60,0x00, - 0xfa,0x06,0x97,0x88,0xf2,0x04,0xf4,0x80,0xe5,0x83, - 0x65,0xb0,0x74,0x24,0x74,0x46,0x52,0x30,0x66,0xfb, - 0x0c,0x9c,0x41,0x56,0x61,0x82,0x8c,0x8e,0x29,0xcf, - 0x13,0xc3,0x91,0x24,0x17,0xe5,0x2e,0x57,0xde,0xeb, - 0xa6,0xf0,0x41,0x73,0x87,0x05,0x1f,0x97,0x36,0xea, - 0xc7,0xf1,0x05,0xbe,0xc0,0x17,0xf8,0x82,0x7f,0x29, - 0xc8,0x0b,0xdb,0xc8,0x55,0xbe,0x7f,0x68,0xc3,0x1d, - 0x2a,0xe9,0x38,0x2c,0x68,0xf3,0xfe,0x94,0x82,0x3d, - 0x0f,0x5b,0xd0,0x05,0x41,0x05,0x71,0x40,0x47,0xcc, - 0xf3,0x4e,0x76,0xe8,0x0a,0x0c,0x41,0x13,0x9c,0x1c, - 0x4e,0x71,0x13,0xb7,0x4c,0x90,0xca,0xf6,0x07,0x6b, - 0x70,0x77,0x20,0x16,0xc7,0x86,0xce,0xf4,0x2d,0xc0, - 0x00,0xa5,0x0f,0x24,0x89,0xc3,0x06,0x4f,0xc8,0x00, - 0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60, - 0x82 -}; diff --git a/data/converted/checkbox_unchecked_svg.cpp b/data/converted/checkbox_unchecked_svg.cpp new file mode 100644 index 000000000..a800cb782 --- /dev/null +++ b/data/converted/checkbox_unchecked_svg.cpp @@ -0,0 +1,93 @@ +//this file was auto-generated from "checkbox_unchecked.svg" by res2h + +#include "../Resources.h" + +const size_t checkbox_unchecked_svg_size = 859; +const unsigned char checkbox_unchecked_svg_data[859] = { + 0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20, + 0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22, + 0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a, + 0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62, + 0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61, + 0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33, + 0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e, + 0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72, + 0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30, + 0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20, + 0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f, + 0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20, + 0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f, + 0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20, + 0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45, + 0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44, + 0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64, + 0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22, + 0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45, + 0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a, + 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f, + 0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76, + 0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78, + 0x6c,0x69,0x6e,0x6b,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,0x78, + 0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30, + 0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78, + 0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68, + 0x3d,0x22,0x32,0x31,0x2e,0x39,0x36,0x32,0x70,0x78, + 0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22, + 0x32,0x31,0x2e,0x39,0x35,0x39,0x70,0x78,0x22,0x20, + 0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30, + 0x20,0x30,0x20,0x32,0x31,0x2e,0x39,0x36,0x32,0x20, + 0x32,0x31,0x2e,0x39,0x35,0x39,0x22,0x20,0x65,0x6e, + 0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67, + 0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77, + 0x20,0x30,0x20,0x30,0x20,0x32,0x31,0x2e,0x39,0x36, + 0x32,0x20,0x32,0x31,0x2e,0x39,0x35,0x39,0x22,0x20, + 0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d, + 0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22, + 0x3e,0x0d,0x0a,0x3c,0x70,0x61,0x74,0x68,0x20,0x66, + 0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37, + 0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,0x37, + 0x2e,0x37,0x31,0x2c,0x31,0x2e,0x35,0x63,0x31,0x2e, + 0x35,0x31,0x38,0x2c,0x30,0x2c,0x32,0x2e,0x37,0x35, + 0x32,0x2c,0x31,0x2e,0x32,0x33,0x34,0x2c,0x32,0x2e, + 0x37,0x35,0x32,0x2c,0x32,0x2e,0x37,0x35,0x32,0x76, + 0x31,0x33,0x2e,0x34,0x35,0x35,0x63,0x30,0x2c,0x31, + 0x2e,0x35,0x31,0x38,0x2d,0x31,0x2e,0x32,0x33,0x34, + 0x2c,0x32,0x2e,0x37,0x35,0x32,0x2d,0x32,0x2e,0x37, + 0x35,0x32,0x2c,0x32,0x2e,0x37,0x35,0x32,0x48,0x34, + 0x2e,0x32,0x35,0x32,0x0d,0x0a,0x09,0x63,0x2d,0x31, + 0x2e,0x35,0x31,0x38,0x2c,0x30,0x2d,0x32,0x2e,0x37, + 0x35,0x32,0x2d,0x31,0x2e,0x32,0x33,0x34,0x2d,0x32, + 0x2e,0x37,0x35,0x32,0x2d,0x32,0x2e,0x37,0x35,0x32, + 0x56,0x34,0x2e,0x32,0x35,0x32,0x43,0x31,0x2e,0x35, + 0x2c,0x32,0x2e,0x37,0x33,0x34,0x2c,0x32,0x2e,0x37, + 0x33,0x34,0x2c,0x31,0x2e,0x35,0x2c,0x34,0x2e,0x32, + 0x35,0x32,0x2c,0x31,0x2e,0x35,0x48,0x31,0x37,0x2e, + 0x37,0x31,0x20,0x4d,0x31,0x37,0x2e,0x37,0x31,0x2c, + 0x30,0x48,0x34,0x2e,0x32,0x35,0x32,0x43,0x31,0x2e, + 0x39,0x31,0x34,0x2c,0x30,0x2c,0x30,0x2c,0x31,0x2e, + 0x39,0x31,0x34,0x2c,0x30,0x2c,0x34,0x2e,0x32,0x35, + 0x32,0x76,0x31,0x33,0x2e,0x34,0x35,0x35,0x0d,0x0a, + 0x09,0x63,0x30,0x2c,0x32,0x2e,0x33,0x33,0x39,0x2c, + 0x31,0x2e,0x39,0x31,0x34,0x2c,0x34,0x2e,0x32,0x35, + 0x32,0x2c,0x34,0x2e,0x32,0x35,0x32,0x2c,0x34,0x2e, + 0x32,0x35,0x32,0x48,0x31,0x37,0x2e,0x37,0x31,0x63, + 0x32,0x2e,0x33,0x33,0x39,0x2c,0x30,0x2c,0x34,0x2e, + 0x32,0x35,0x32,0x2d,0x31,0x2e,0x39,0x31,0x33,0x2c, + 0x34,0x2e,0x32,0x35,0x32,0x2d,0x34,0x2e,0x32,0x35, + 0x32,0x56,0x34,0x2e,0x32,0x35,0x32,0x43,0x32,0x31, + 0x2e,0x39,0x36,0x32,0x2c,0x31,0x2e,0x39,0x31,0x34, + 0x2c,0x32,0x30,0x2e,0x30,0x34,0x39,0x2c,0x30,0x2c, + 0x31,0x37,0x2e,0x37,0x31,0x2c,0x30,0x4c,0x31,0x37, + 0x2e,0x37,0x31,0x2c,0x30,0x7a,0x22,0x2f,0x3e,0x0d, + 0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d,0x0a +}; diff --git a/data/converted/fav_add_svg.cpp b/data/converted/fav_add_svg.cpp new file mode 100644 index 000000000..4bd2a3304 --- /dev/null +++ b/data/converted/fav_add_svg.cpp @@ -0,0 +1,72 @@ +//this file was auto-generated from "fav_add.svg" by res2h + +#include "../Resources.h" + +const size_t fav_add_svg_size = 650; +const unsigned char fav_add_svg_data[650] = { + 0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20, + 0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22, + 0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a, + 0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62, + 0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61, + 0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33, + 0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e, + 0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72, + 0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30, + 0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20, + 0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f, + 0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20, + 0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f, + 0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20, + 0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45, + 0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44, + 0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64, + 0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22, + 0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45, + 0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a, + 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f, + 0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76, + 0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78, + 0x6c,0x69,0x6e,0x6b,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,0x78, + 0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30, + 0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78, + 0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68, + 0x3d,0x22,0x32,0x31,0x2e,0x30,0x30,0x32,0x70,0x78, + 0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22, + 0x32,0x32,0x2e,0x30,0x30,0x32,0x70,0x78,0x22,0x20, + 0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30, + 0x20,0x30,0x20,0x32,0x31,0x2e,0x30,0x30,0x32,0x20, + 0x32,0x32,0x2e,0x30,0x30,0x32,0x22,0x20,0x65,0x6e, + 0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67, + 0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77, + 0x20,0x30,0x20,0x30,0x20,0x32,0x31,0x2e,0x30,0x30, + 0x32,0x20,0x32,0x32,0x2e,0x30,0x30,0x32,0x22,0x20, + 0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d, + 0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22, + 0x3e,0x0d,0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c, + 0x72,0x65,0x63,0x74,0x20,0x79,0x3d,0x22,0x31,0x30, + 0x2e,0x32,0x35,0x31,0x22,0x20,0x66,0x69,0x6c,0x6c, + 0x3d,0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22, + 0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,0x32,0x31, + 0x2e,0x30,0x30,0x32,0x22,0x20,0x68,0x65,0x69,0x67, + 0x68,0x74,0x3d,0x22,0x31,0x2e,0x35,0x22,0x2f,0x3e, + 0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x67, + 0x3e,0x0d,0x0a,0x09,0x3c,0x72,0x65,0x63,0x74,0x20, + 0x78,0x3d,0x22,0x39,0x2e,0x37,0x35,0x31,0x22,0x20, + 0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37, + 0x37,0x37,0x37,0x22,0x20,0x77,0x69,0x64,0x74,0x68, + 0x3d,0x22,0x31,0x2e,0x35,0x22,0x20,0x68,0x65,0x69, + 0x67,0x68,0x74,0x3d,0x22,0x32,0x32,0x2e,0x30,0x30, + 0x32,0x22,0x2f,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e, + 0x0d,0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d,0x0a +}; diff --git a/data/converted/fav_remove_svg.cpp b/data/converted/fav_remove_svg.cpp new file mode 100644 index 000000000..086ae9e76 --- /dev/null +++ b/data/converted/fav_remove_svg.cpp @@ -0,0 +1,65 @@ +//this file was auto-generated from "fav_remove.svg" by res2h + +#include "../Resources.h" + +const size_t fav_remove_svg_size = 576; +const unsigned char fav_remove_svg_data[576] = { + 0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20, + 0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22, + 0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a, + 0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62, + 0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61, + 0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33, + 0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e, + 0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72, + 0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30, + 0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20, + 0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f, + 0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20, + 0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f, + 0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20, + 0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45, + 0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44, + 0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64, + 0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22, + 0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45, + 0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a, + 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f, + 0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76, + 0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78, + 0x6c,0x69,0x6e,0x6b,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,0x78, + 0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30, + 0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78, + 0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68, + 0x3d,0x22,0x32,0x31,0x2e,0x30,0x30,0x32,0x70,0x78, + 0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22, + 0x32,0x32,0x2e,0x30,0x30,0x32,0x70,0x78,0x22,0x20, + 0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30, + 0x20,0x30,0x20,0x32,0x31,0x2e,0x30,0x30,0x32,0x20, + 0x32,0x32,0x2e,0x30,0x30,0x32,0x22,0x20,0x65,0x6e, + 0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67, + 0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77, + 0x20,0x30,0x20,0x30,0x20,0x32,0x31,0x2e,0x30,0x30, + 0x32,0x20,0x32,0x32,0x2e,0x30,0x30,0x32,0x22,0x20, + 0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d, + 0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22, + 0x3e,0x0d,0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c, + 0x72,0x65,0x63,0x74,0x20,0x79,0x3d,0x22,0x31,0x30, + 0x2e,0x32,0x35,0x31,0x22,0x20,0x66,0x69,0x6c,0x6c, + 0x3d,0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22, + 0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,0x32,0x31, + 0x2e,0x30,0x30,0x32,0x22,0x20,0x68,0x65,0x69,0x67, + 0x68,0x74,0x3d,0x22,0x31,0x2e,0x35,0x22,0x2f,0x3e, + 0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x2f, + 0x73,0x76,0x67,0x3e,0x0d,0x0a +}; diff --git a/data/converted/help_a_png.cpp b/data/converted/help_a_png.cpp deleted file mode 100644 index d62cbae87..000000000 --- a/data/converted/help_a_png.cpp +++ /dev/null @@ -1,161 +0,0 @@ -//this file was auto-generated from "a.png" by res2h - -#include "../Resources.h" - -const size_t help_a_png_size = 1534; -const unsigned char help_a_png_data[1534] = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x1f, - 0x00,0x00,0x00,0x1f,0x08,0x06,0x00,0x00,0x00,0x1f, - 0xae,0x16,0x39,0x00,0x00,0x00,0x19,0x74,0x45,0x58, - 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, - 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, - 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, - 0x00,0x00,0x03,0x24,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,0x20,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,0x41, - 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, - 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, - 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, - 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, - 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, - 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x22,0x3e,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,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,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, - 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,0x20,0x78,0x6d,0x6c, - 0x6e,0x73,0x3a,0x73,0x74,0x52,0x65,0x66,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,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d, - 0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54, - 0x6f,0x6f,0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65, - 0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70, - 0x20,0x43,0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69, - 0x6e,0x74,0x6f,0x73,0x68,0x29,0x22,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,0x39,0x44,0x41,0x36,0x46, - 0x46,0x36,0x39,0x44,0x39,0x30,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d, - 0x70,0x4d,0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65, - 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x64,0x69,0x64,0x3a,0x36,0x39,0x44,0x41,0x36,0x46, - 0x46,0x37,0x39,0x44,0x39,0x30,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x3e,0x20,0x3c, - 0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69, - 0x76,0x65,0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74, - 0x52,0x65,0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e, - 0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x69,0x69,0x64,0x3a,0x36,0x39,0x44,0x41,0x36,0x46, - 0x46,0x34,0x39,0x44,0x39,0x30,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x73,0x74, - 0x52,0x65,0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65, - 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x64,0x69,0x64,0x3a,0x36,0x39,0x44,0x41,0x36,0x46, - 0x46,0x35,0x39,0x44,0x39,0x30,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x2f,0x3e,0x20, - 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63, - 0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c, - 0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20, - 0x3c,0x2f,0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74, - 0x61,0x3e,0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b, - 0x65,0x74,0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22, - 0x3f,0x3e,0x86,0x06,0x19,0x6c,0x00,0x00,0x02,0x70, - 0x49,0x44,0x41,0x54,0x78,0xda,0xbc,0x97,0x4f,0x48, - 0x14,0x61,0x18,0xc6,0x77,0x47,0xbb,0xb8,0x42,0x28, - 0xb1,0x5e,0x63,0x83,0x52,0xf3,0x12,0xe1,0x41,0x2d, - 0x22,0xf6,0x96,0xd5,0xae,0xa1,0x96,0x87,0x2e,0x82, - 0xe6,0x21,0xba,0x04,0xad,0x27,0xaf,0x52,0xc7,0xa0, - 0x43,0xb5,0xd0,0x2d,0xb4,0xd4,0xa8,0xf4,0x50,0x87, - 0x54,0xd4,0x28,0xc2,0x08,0x42,0x0b,0x8d,0xa8,0x8b, - 0x18,0x81,0xf8,0x27,0x02,0xd1,0xb4,0xe7,0x85,0x67, - 0xe0,0x63,0xd8,0x9d,0xf9,0xde,0x71,0xd7,0x07,0x7e, - 0xf8,0xb9,0x33,0xf3,0x3e,0x33,0xdf,0x7c,0xdf,0xfb, - 0xbe,0x13,0xcd,0x64,0x32,0x11,0x4b,0xd5,0x81,0x66, - 0x70,0x0a,0xd4,0x82,0x2a,0x10,0x03,0x7f,0xc1,0x32, - 0xf8,0x0a,0xa6,0xc0,0x18,0xf8,0x6c,0x13,0xb0,0x34, - 0xe0,0x78,0x14,0xb4,0x80,0x5e,0x50,0x9f,0xe7,0x9c, - 0x32,0x90,0x20,0xe7,0x40,0x3f,0xf8,0x00,0xee,0x80, - 0x61,0xb0,0x9b,0x2f,0xb8,0xe3,0x63,0x5c,0x0d,0x26, - 0x19,0xa0,0x3e,0xa2,0x93,0x9c,0xff,0x94,0x33,0x51, - 0xad,0x35,0x6f,0xe3,0xdd,0x9f,0x8e,0xec,0x4d,0x4d, - 0x60,0x16,0x5c,0xb1,0x35,0xef,0x02,0x03,0xa0,0x3c, - 0x52,0x18,0xc9,0x6b,0x79,0x0c,0xae,0x07,0x99,0x5f, - 0x06,0xf7,0x03,0x5e,0x47,0x18,0xc9,0xda,0xb9,0x0b, - 0x3a,0xf2,0x99,0x1f,0x05,0x59,0x9e,0x58,0x0c,0x49, - 0xdc,0x87,0xa0,0xc6,0x6b,0x2e,0x07,0x1e,0x14,0x70, - 0xaa,0xf3,0x29,0x46,0x9f,0xa8,0x69,0x9e,0x02,0x67, - 0x94,0x81,0x64,0x5d,0x5c,0x23,0xe3,0x8a,0xeb,0x24, - 0x4f,0x5c,0x32,0xf7,0xf9,0xad,0x10,0x4f,0xd1,0x07, - 0x16,0x39,0x96,0x24,0x73,0x56,0x71,0xad,0x64,0xb6, - 0x61,0x87,0xfb,0xb0,0x41,0x69,0x3c,0x6b,0x18,0x8b, - 0x5e,0x81,0x55,0x65,0x1e,0x38,0x2e,0xe6,0x17,0x42, - 0x3c,0xf5,0x20,0xff,0x1e,0x02,0x25,0x60,0x13,0x3c, - 0x53,0xc6,0x48,0x3b,0x7c,0x07,0x1a,0x49,0xba,0x7c, - 0xc2,0x71,0xbb,0x91,0x88,0x06,0x94,0x71,0x1a,0x1c, - 0x73,0xe9,0x5b,0xea,0x2d,0xf8,0xc9,0xb1,0xe4,0xfd, - 0x34,0xc7,0x6f,0xc0,0x6f,0x45,0x9c,0x1a,0x31,0x8f, - 0x87,0x9c,0xf2,0x0a,0xee,0x90,0x14,0xff,0xdf,0x06, - 0x43,0x8a,0x38,0x71,0x31,0x3f,0xa8,0xb8,0xe0,0x1f, - 0x0b,0x86,0xe8,0x3c,0x38,0x00,0x0e,0x83,0x13,0x9e, - 0x1b,0xb3,0x51,0xb9,0x98,0xaf,0x29,0x2e,0x98,0xe0, - 0xb6,0x72,0x57,0xec,0x77,0xd2,0xc8,0xdf,0xa4,0x8a, - 0x2d,0x59,0xc6,0xfa,0xe3,0x18,0xc1,0x6c,0x13,0x8b, - 0xab,0x1b,0xe0,0x08,0xb9,0xc7,0xdf,0x76,0x8c,0x99, - 0x09,0xd2,0x2f,0x87,0x1d,0x88,0x8d,0xb6,0xc0,0x88, - 0xf2,0x06,0xfd,0xf4,0xc5,0xe1,0x54,0xd9,0xe8,0x35, - 0x58,0xe1,0xf8,0x11,0xb7,0x9c,0xc9,0x4d,0x1e,0x7b, - 0x0f,0x7e,0x58,0xc4,0x9b,0x12,0xf3,0x97,0xca,0x29, - 0x97,0x94,0x7c,0x31,0xc7,0xf1,0x16,0x23,0x0f,0xd8, - 0x2c,0xbc,0x51,0x31,0x5f,0xe0,0xde,0xf5,0xd3,0x36, - 0x9b,0xc2,0x04,0x8b,0x42,0x65,0xae,0xa4,0xc1,0x55, - 0x9f,0xe0,0xd3,0xfb,0xe9,0x1d,0x98,0x77,0x0b,0x4b, - 0x7f,0xc0,0x0c,0xc8,0x79,0x9f,0x02,0x02,0xca,0x83, - 0x7c,0xb4,0x9c,0xc5,0xdb,0x66,0x49,0x1d,0x65,0x86, - 0xda,0x0f,0x49,0x53,0xfa,0xdc,0xdb,0xc9,0x48,0x5d, - 0x5e,0x2f,0xb2,0xf1,0x06,0xe8,0x76,0xdb,0x69,0xd3, - 0xfc,0x1b,0xb8,0xca,0x2c,0x56,0x0c,0x49,0xdc,0x4e, - 0xae,0xb1,0x9c,0x0d,0xe4,0x0b,0xd0,0xe3,0xd7,0xe8, - 0xef,0xc1,0xb8,0xc7,0x9b,0xfb,0x73,0x75,0xa9,0xd2, - 0x44,0xb6,0x16,0xf0,0x15,0xac,0xb3,0xf4,0x66,0x6d, - 0x3f,0x1a,0x24,0x93,0x9d,0x2c,0xc0,0x22,0x1c,0x67, - 0x9c,0x11,0xed,0xe7,0x92,0xac,0x81,0x24,0x3b,0x9d, - 0x69,0xa5,0xe9,0x0c,0xeb,0x7c,0x92,0x71,0x42,0x7d, - 0x28,0xba,0xdb,0x50,0x38,0xe6,0xf9,0x4a,0x8d,0xb3, - 0x1c,0xaf,0xb1,0x89,0x98,0xa3,0xe9,0x98,0x6d,0xbd, - 0xf8,0x2f,0xc0,0x00,0x7e,0x7d,0x81,0xa8,0x66,0x52, - 0x34,0x4b,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44, - 0xae,0x42,0x60,0x82 -}; diff --git a/data/converted/help_b_png.cpp b/data/converted/help_b_png.cpp deleted file mode 100644 index 9a1b2a59b..000000000 --- a/data/converted/help_b_png.cpp +++ /dev/null @@ -1,160 +0,0 @@ -//this file was auto-generated from "b.png" by res2h - -#include "../Resources.h" - -const size_t help_b_png_size = 1522; -const unsigned char help_b_png_data[1522] = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x1f, - 0x00,0x00,0x00,0x1f,0x08,0x06,0x00,0x00,0x00,0x1f, - 0xae,0x16,0x39,0x00,0x00,0x00,0x19,0x74,0x45,0x58, - 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, - 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, - 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, - 0x00,0x00,0x03,0x24,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,0x20,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,0x41, - 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, - 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, - 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, - 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, - 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, - 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x22,0x3e,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,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,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, - 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,0x20,0x78,0x6d,0x6c, - 0x6e,0x73,0x3a,0x73,0x74,0x52,0x65,0x66,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,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d, - 0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54, - 0x6f,0x6f,0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65, - 0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70, - 0x20,0x43,0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69, - 0x6e,0x74,0x6f,0x73,0x68,0x29,0x22,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,0x45,0x44,0x36,0x43,0x36,0x42, - 0x37,0x31,0x39,0x44,0x38,0x46,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d, - 0x70,0x4d,0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65, - 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x64,0x69,0x64,0x3a,0x45,0x44,0x36,0x43,0x36,0x42, - 0x37,0x32,0x39,0x44,0x38,0x46,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x3e,0x20,0x3c, - 0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69, - 0x76,0x65,0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74, - 0x52,0x65,0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e, - 0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x69,0x69,0x64,0x3a,0x45,0x44,0x36,0x43,0x36,0x42, - 0x36,0x46,0x39,0x44,0x38,0x46,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x73,0x74, - 0x52,0x65,0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65, - 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x64,0x69,0x64,0x3a,0x45,0x44,0x36,0x43,0x36,0x42, - 0x37,0x30,0x39,0x44,0x38,0x46,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x2f,0x3e,0x20, - 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63, - 0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c, - 0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20, - 0x3c,0x2f,0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74, - 0x61,0x3e,0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b, - 0x65,0x74,0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22, - 0x3f,0x3e,0x3b,0xe4,0xb0,0xf3,0x00,0x00,0x02,0x64, - 0x49,0x44,0x41,0x54,0x78,0xda,0xbc,0x97,0x4d,0x48, - 0x14,0x61,0x18,0xc7,0x67,0x87,0x3d,0x88,0x2b,0x48, - 0x97,0x15,0xa1,0x43,0x69,0xea,0x6e,0x79,0xb3,0xa5, - 0xb6,0x0f,0x3a,0x04,0x1d,0x4c,0x31,0xb3,0xfc,0x02, - 0x2f,0x42,0x29,0xe1,0xc1,0x4b,0x6e,0xc7,0x20,0x41, - 0x0a,0x0f,0xe1,0x49,0xd3,0x83,0xa7,0x14,0x52,0x41, - 0xdb,0x3d,0xa6,0xc8,0x6e,0x22,0x88,0x20,0xe4,0x47, - 0x84,0x37,0x41,0x8c,0x28,0x2d,0x45,0xbb,0x48,0xfe, - 0x1f,0x78,0x06,0x5e,0x86,0x99,0x9d,0x67,0x66,0x67, - 0xfb,0xc3,0xef,0xb0,0x3b,0xf3,0x3e,0xff,0x77,0xde, - 0x8f,0xe7,0x79,0xdf,0x40,0x22,0x91,0xd0,0x84,0xaa, - 0x06,0xf7,0xc1,0x2d,0x70,0x19,0x94,0x80,0x10,0x38, - 0x06,0x7b,0xe0,0x2b,0x48,0x83,0x14,0xf8,0x22,0x09, - 0x18,0x74,0x78,0x1e,0x00,0x8d,0xe0,0x05,0x88,0xd9, - 0xbc,0x53,0x08,0xca,0x98,0x5a,0x30,0x00,0x56,0xc0, - 0x1b,0x30,0x0d,0xfe,0xd9,0x05,0xd7,0xb3,0x18,0x47, - 0xc0,0x22,0x07,0x88,0x69,0xee,0x44,0xef,0x7f,0xe0, - 0x91,0x88,0xb8,0x35,0x7f,0xcc,0xbd,0xbf,0xad,0xe5, - 0xa6,0x9b,0x60,0x15,0xb4,0x4a,0xcd,0x9f,0x80,0x49, - 0x50,0xa4,0xf9,0x23,0x9a,0x96,0xf7,0xa0,0xc7,0xc9, - 0xbc,0x05,0x8c,0x38,0x4c,0x87,0x17,0xd1,0xda,0x19, - 0x02,0x6d,0x76,0xe6,0x95,0x60,0x8c,0x5f,0xcc,0x87, - 0x28,0xee,0x28,0x88,0x9a,0xcd,0xe9,0xc1,0x3b,0x1f, - 0x87,0xda,0x4e,0x21,0xf6,0x09,0xa8,0x5b,0xad,0x01, - 0xdc,0x11,0x34,0xee,0x05,0x27,0x16,0xdb,0xb5,0x82, - 0x63,0x5c,0x14,0xc4,0xa0,0x3c,0xf1,0x90,0x76,0x91, - 0x61,0xde,0x27,0xec,0xf9,0x38,0xf8,0x6d,0xf3,0xec, - 0x39,0xe7,0x83,0x57,0x82,0x38,0x09,0xc3,0x9c,0xf6, - 0x61,0xdc,0xe5,0xf0,0x5d,0x00,0xdd,0x9c,0x40,0x76, - 0xc0,0x04,0xd8,0x07,0xfd,0xe0,0x1a,0xa8,0x13,0xe4, - 0x81,0x2b,0x64,0x5e,0xef,0x61,0xee,0xce,0x73,0xef, - 0x0d,0xb5,0xf3,0x70,0x92,0x3e,0x0a,0xcc,0x49,0x0f, - 0x74,0xa5,0x51,0x2e,0xaa,0xf0,0xd0,0x26,0xae,0xab, - 0x4b,0xdf,0xa3,0x7e,0x82,0x97,0xca,0xef,0x26,0x61, - 0xbb,0x28,0x0d,0x7b,0xd8,0x83,0x61,0xc6,0x22,0x1f, - 0x14,0x80,0xb7,0xe0,0x9e,0x30,0x46,0x98,0xbe,0xbc, - 0xd8,0x83,0x39,0x75,0xfa,0x1c,0x63,0xb4,0xff,0xcb, - 0x59,0x6c,0x5d,0x18,0xa3,0x48,0xcf,0xb2,0x75,0xb2, - 0xe9,0x3a,0xf8,0xc5,0x1c,0x70,0x2d,0xa7,0x11,0xdc, - 0x34,0xa7,0xd0,0x2c,0x3a,0xd2,0xf9,0x20,0x90,0xab, - 0xaa,0x94,0x5d,0x43,0x5f,0xbe,0x2b,0x68,0xf3,0x5d, - 0xe7,0x5e,0xfb,0xa1,0x3f,0xa6,0x3c,0xee,0xa4,0xad, - 0x20,0x17,0xfc,0x06,0x97,0x46,0x47,0x5c,0xa7,0x35, - 0x4e,0xb7,0x9f,0xc0,0x0c,0xff,0x2e,0x07,0xa5,0x82, - 0x18,0xe9,0x20,0x27,0x85,0x41,0x97,0xe6,0x6b,0xe0, - 0xaa,0xc5,0xff,0xb4,0xe2,0x87,0x85,0x31,0x92,0x64, - 0xfe,0x0d,0x2c,0x81,0x1b,0xc2,0xb4,0x7a,0x68,0xb5, - 0x6d,0x38,0x45,0x3f,0x03,0x97,0x04,0x71,0x96,0x69, - 0x71,0x1a,0x85,0x65,0x80,0x47,0x40,0xf2,0xc5,0x7e, - 0xe8,0xb5,0x5a,0xcf,0x93,0x60,0x5e,0xfb,0x3f,0xa2, - 0x43,0xe9,0xac,0xf9,0x24,0xd3,0x65,0x5a,0xb1,0xf9, - 0x10,0x4d,0xd9,0x53,0xe3,0x38,0xad,0x9a,0x6f,0x83, - 0x0e,0x70,0x9a,0x27,0x63,0x8a,0xdb,0xc9,0x6b,0xcc, - 0xf2,0x00,0x39,0xa7,0xd4,0x69,0xbf,0x8d,0x29,0xee, - 0x94,0xd3,0xd1,0x99,0x0e,0x91,0x8f,0x7c,0x9c,0x02, - 0x8a,0xd3,0xcc,0x71,0x45,0x97,0x06,0x4a,0x18,0x35, - 0x3e,0x2c,0xc2,0x05,0x8e,0x33,0xe3,0xf6,0xba,0x44, - 0x6b,0xe0,0x2e,0xe7,0xec,0x8c,0x4b,0xd3,0xcf,0x74, - 0x52,0xe1,0xf6,0xdb,0x5e,0x2f,0x8a,0xc6,0x36,0x4c, - 0x72,0xf1,0x50,0x6f,0xa9,0x61,0x2e,0xa7,0x54,0x15, - 0x7f,0x80,0x0d,0x36,0x4d,0x49,0xeb,0xc5,0x99,0x00, - 0x03,0x00,0x8d,0x70,0x73,0x99,0xca,0x99,0x33,0x28, - 0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42, - 0x60,0x82 -}; diff --git a/data/converted/help_button_a_svg.cpp b/data/converted/help_button_a_svg.cpp new file mode 100644 index 000000000..50d500412 --- /dev/null +++ b/data/converted/help_button_a_svg.cpp @@ -0,0 +1,88 @@ +//this file was auto-generated from "button_a.svg" by res2h + +#include "../Resources.h" + +const size_t help_button_a_svg_size = 801; +const unsigned char help_button_a_svg_data[801] = { + 0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20, + 0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22, + 0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a, + 0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62, + 0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61, + 0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33, + 0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e, + 0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72, + 0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30, + 0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20, + 0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f, + 0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20, + 0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f, + 0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20, + 0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45, + 0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44, + 0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64, + 0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22, + 0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45, + 0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a, + 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f, + 0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76, + 0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78, + 0x6c,0x69,0x6e,0x6b,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,0x78, + 0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30, + 0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78, + 0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68, + 0x3d,0x22,0x33,0x31,0x70,0x78,0x22,0x20,0x68,0x65, + 0x69,0x67,0x68,0x74,0x3d,0x22,0x33,0x31,0x2e,0x30, + 0x30,0x31,0x70,0x78,0x22,0x20,0x76,0x69,0x65,0x77, + 0x42,0x6f,0x78,0x3d,0x22,0x30,0x20,0x30,0x20,0x33, + 0x31,0x20,0x33,0x31,0x2e,0x30,0x30,0x31,0x22,0x20, + 0x65,0x6e,0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63, + 0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e, + 0x65,0x77,0x20,0x30,0x20,0x30,0x20,0x33,0x31,0x20, + 0x33,0x31,0x2e,0x30,0x30,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,0x22,0x70, + 0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,0x3e,0x0d, + 0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e, + 0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20, + 0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37, + 0x37,0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31, + 0x35,0x2e,0x38,0x38,0x33,0x2c,0x31,0x31,0x2e,0x35, + 0x35,0x6c,0x2d,0x31,0x2e,0x36,0x37,0x39,0x2c,0x35, + 0x2e,0x33,0x30,0x37,0x68,0x33,0x2e,0x34,0x30,0x35, + 0x6c,0x2d,0x31,0x2e,0x36,0x37,0x2d,0x35,0x2e,0x33, + 0x30,0x37,0x48,0x31,0x35,0x2e,0x38,0x38,0x33,0x7a, + 0x20,0x4d,0x31,0x35,0x2e,0x35,0x2c,0x30,0x43,0x36, + 0x2e,0x39,0x33,0x39,0x2c,0x30,0x2c,0x30,0x2c,0x36, + 0x2e,0x39,0x34,0x2c,0x30,0x2c,0x31,0x35,0x2e,0x35, + 0x0d,0x0a,0x09,0x09,0x09,0x73,0x36,0x2e,0x39,0x33, + 0x39,0x2c,0x31,0x35,0x2e,0x35,0x30,0x31,0x2c,0x31, + 0x35,0x2e,0x35,0x2c,0x31,0x35,0x2e,0x35,0x30,0x31, + 0x63,0x38,0x2e,0x35,0x36,0x2c,0x30,0x2c,0x31,0x35, + 0x2e,0x35,0x2d,0x36,0x2e,0x39,0x34,0x31,0x2c,0x31, + 0x35,0x2e,0x35,0x2d,0x31,0x35,0x2e,0x35,0x30,0x31, + 0x53,0x32,0x34,0x2e,0x30,0x36,0x2c,0x30,0x2c,0x31, + 0x35,0x2e,0x35,0x2c,0x30,0x7a,0x20,0x4d,0x31,0x39, + 0x2e,0x31,0x39,0x35,0x2c,0x32,0x31,0x2e,0x38,0x39, + 0x34,0x6c,0x2d,0x30,0x2e,0x39,0x31,0x38,0x2d,0x32, + 0x2e,0x39,0x31,0x32,0x68,0x2d,0x34,0x2e,0x37,0x34, + 0x31,0x6c,0x2d,0x30,0x2e,0x39,0x31,0x38,0x2c,0x32, + 0x2e,0x39,0x31,0x32,0x48,0x39,0x2e,0x38,0x38,0x31, + 0x0d,0x0a,0x09,0x09,0x09,0x6c,0x34,0x2e,0x36,0x34, + 0x38,0x2d,0x31,0x33,0x2e,0x35,0x30,0x37,0x68,0x32, + 0x2e,0x37,0x37,0x33,0x6c,0x34,0x2e,0x36,0x32,0x39, + 0x2c,0x31,0x33,0x2e,0x35,0x30,0x37,0x48,0x31,0x39, + 0x2e,0x31,0x39,0x35,0x7a,0x22,0x2f,0x3e,0x0d,0x0a, + 0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x2f,0x67, + 0x3e,0x0d,0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d, + 0x0a +}; diff --git a/data/converted/help_button_b_svg.cpp b/data/converted/help_button_b_svg.cpp new file mode 100644 index 000000000..0c91c6a21 --- /dev/null +++ b/data/converted/help_button_b_svg.cpp @@ -0,0 +1,142 @@ +//this file was auto-generated from "button_b.svg" by res2h + +#include "../Resources.h" + +const size_t help_button_b_svg_size = 1342; +const unsigned char help_button_b_svg_data[1342] = { + 0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20, + 0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22, + 0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a, + 0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62, + 0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61, + 0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33, + 0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e, + 0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72, + 0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30, + 0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20, + 0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f, + 0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20, + 0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f, + 0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20, + 0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45, + 0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44, + 0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64, + 0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22, + 0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45, + 0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a, + 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f, + 0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76, + 0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78, + 0x6c,0x69,0x6e,0x6b,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,0x78, + 0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30, + 0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78, + 0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68, + 0x3d,0x22,0x33,0x31,0x70,0x78,0x22,0x20,0x68,0x65, + 0x69,0x67,0x68,0x74,0x3d,0x22,0x33,0x31,0x2e,0x30, + 0x30,0x31,0x70,0x78,0x22,0x20,0x76,0x69,0x65,0x77, + 0x42,0x6f,0x78,0x3d,0x22,0x30,0x20,0x30,0x20,0x33, + 0x31,0x20,0x33,0x31,0x2e,0x30,0x30,0x31,0x22,0x20, + 0x65,0x6e,0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63, + 0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e, + 0x65,0x77,0x20,0x30,0x20,0x30,0x20,0x33,0x31,0x20, + 0x33,0x31,0x2e,0x30,0x30,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,0x22,0x70, + 0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,0x3e,0x0d, + 0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e, + 0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20, + 0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37, + 0x37,0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31, + 0x36,0x2e,0x34,0x34,0x2c,0x31,0x35,0x2e,0x39,0x32, + 0x68,0x2d,0x32,0x2e,0x37,0x76,0x33,0x2e,0x38,0x38, + 0x37,0x68,0x32,0x2e,0x34,0x39,0x36,0x63,0x30,0x2e, + 0x37,0x31,0x38,0x2c,0x30,0x2c,0x31,0x2e,0x32,0x36, + 0x36,0x2d,0x30,0x2e,0x31,0x35,0x35,0x2c,0x31,0x2e, + 0x36,0x34,0x33,0x2d,0x30,0x2e,0x34,0x36,0x37,0x73, + 0x30,0x2e,0x35,0x36,0x35,0x2d,0x30,0x2e,0x37,0x37, + 0x32,0x2c,0x30,0x2e,0x35,0x36,0x35,0x2d,0x31,0x2e, + 0x33,0x38,0x34,0x0d,0x0a,0x09,0x09,0x09,0x63,0x30, + 0x2d,0x30,0x2e,0x36,0x36,0x2d,0x30,0x2e,0x31,0x36, + 0x31,0x2d,0x31,0x2e,0x31,0x36,0x34,0x2d,0x30,0x2e, + 0x34,0x38,0x32,0x2d,0x31,0x2e,0x35,0x31,0x34,0x43, + 0x31,0x37,0x2e,0x36,0x34,0x2c,0x31,0x36,0x2e,0x30, + 0x39,0x34,0x2c,0x31,0x37,0x2e,0x31,0x33,0x32,0x2c, + 0x31,0x35,0x2e,0x39,0x32,0x2c,0x31,0x36,0x2e,0x34, + 0x34,0x2c,0x31,0x35,0x2e,0x39,0x32,0x7a,0x20,0x4d, + 0x31,0x37,0x2e,0x33,0x35,0x39,0x2c,0x31,0x33,0x2e, + 0x36,0x30,0x31,0x63,0x30,0x2e,0x33,0x38,0x39,0x2d, + 0x30,0x2e,0x32,0x39,0x37,0x2c,0x30,0x2e,0x35,0x38, + 0x34,0x2d,0x30,0x2e,0x37,0x33,0x2c,0x30,0x2e,0x35, + 0x38,0x34,0x2d,0x31,0x2e,0x32,0x39,0x39,0x0d,0x0a, + 0x09,0x09,0x09,0x63,0x30,0x2d,0x30,0x2e,0x36,0x32, + 0x35,0x2d,0x30,0x2e,0x31,0x39,0x36,0x2d,0x31,0x2e, + 0x30,0x38,0x36,0x2d,0x30,0x2e,0x35,0x38,0x39,0x2d, + 0x31,0x2e,0x33,0x38,0x33,0x63,0x2d,0x30,0x2e,0x33, + 0x39,0x34,0x2d,0x30,0x2e,0x32,0x39,0x37,0x2d,0x30, + 0x2e,0x39,0x37,0x39,0x2d,0x30,0x2e,0x34,0x34,0x35, + 0x2d,0x31,0x2e,0x37,0x35,0x39,0x2d,0x30,0x2e,0x34, + 0x34,0x35,0x48,0x31,0x33,0x2e,0x37,0x34,0x76,0x33, + 0x2e,0x35,0x37,0x32,0x68,0x31,0x2e,0x39,0x34,0x38, + 0x0d,0x0a,0x09,0x09,0x09,0x43,0x31,0x36,0x2e,0x34, + 0x31,0x32,0x2c,0x31,0x34,0x2e,0x30,0x34,0x36,0x2c, + 0x31,0x36,0x2e,0x39,0x36,0x38,0x2c,0x31,0x33,0x2e, + 0x38,0x39,0x36,0x2c,0x31,0x37,0x2e,0x33,0x35,0x39, + 0x2c,0x31,0x33,0x2e,0x36,0x30,0x31,0x7a,0x20,0x4d, + 0x31,0x35,0x2e,0x35,0x2c,0x30,0x43,0x36,0x2e,0x39, + 0x33,0x39,0x2c,0x30,0x2c,0x30,0x2c,0x36,0x2e,0x39, + 0x33,0x39,0x2c,0x30,0x2c,0x31,0x35,0x2e,0x35,0x63, + 0x30,0x2c,0x38,0x2e,0x35,0x36,0x32,0x2c,0x36,0x2e, + 0x39,0x33,0x39,0x2c,0x31,0x35,0x2e,0x35,0x30,0x31, + 0x2c,0x31,0x35,0x2e,0x35,0x2c,0x31,0x35,0x2e,0x35, + 0x30,0x31,0x53,0x33,0x31,0x2c,0x32,0x34,0x2e,0x30, + 0x36,0x32,0x2c,0x33,0x31,0x2c,0x31,0x35,0x2e,0x35, + 0x0d,0x0a,0x09,0x09,0x09,0x43,0x33,0x31,0x2c,0x36, + 0x2e,0x39,0x33,0x39,0x2c,0x32,0x34,0x2e,0x30,0x36, + 0x2c,0x30,0x2c,0x31,0x35,0x2e,0x35,0x2c,0x30,0x7a, + 0x20,0x4d,0x31,0x39,0x2e,0x38,0x36,0x33,0x2c,0x32, + 0x30,0x2e,0x38,0x39,0x37,0x63,0x2d,0x30,0x2e,0x38, + 0x35,0x34,0x2c,0x30,0x2e,0x36,0x36,0x34,0x2d,0x32, + 0x2e,0x30,0x36,0x33,0x2c,0x30,0x2e,0x39,0x39,0x37, + 0x2d,0x33,0x2e,0x36,0x32,0x37,0x2c,0x30,0x2e,0x39, + 0x39,0x37,0x68,0x2d,0x35,0x2e,0x32,0x30,0x35,0x56, + 0x38,0x2e,0x33,0x38,0x37,0x68,0x34,0x2e,0x35,0x36, + 0x34,0x0d,0x0a,0x09,0x09,0x09,0x63,0x31,0x2e,0x35, + 0x39,0x2c,0x30,0x2c,0x32,0x2e,0x38,0x33,0x2c,0x30, + 0x2e,0x33,0x30,0x39,0x2c,0x33,0x2e,0x37,0x32,0x31, + 0x2c,0x30,0x2e,0x39,0x32,0x38,0x63,0x30,0x2e,0x38, + 0x39,0x31,0x2c,0x30,0x2e,0x36,0x31,0x38,0x2c,0x31, + 0x2e,0x33,0x33,0x36,0x2c,0x31,0x2e,0x35,0x34,0x33, + 0x2c,0x31,0x2e,0x33,0x33,0x36,0x2c,0x32,0x2e,0x37, + 0x37,0x33,0x63,0x30,0x2c,0x30,0x2e,0x36,0x32,0x35, + 0x2d,0x30,0x2e,0x31,0x36,0x36,0x2c,0x31,0x2e,0x31, + 0x38,0x33,0x2d,0x30,0x2e,0x34,0x39,0x36,0x2c,0x31, + 0x2e,0x36,0x37,0x35,0x0d,0x0a,0x09,0x09,0x09,0x63, + 0x2d,0x30,0x2e,0x33,0x33,0x31,0x2c,0x30,0x2e,0x34, + 0x39,0x31,0x2d,0x30,0x2e,0x38,0x31,0x33,0x2c,0x30, + 0x2e,0x38,0x36,0x31,0x2d,0x31,0x2e,0x34,0x34,0x33, + 0x2c,0x31,0x2e,0x31,0x30,0x38,0x63,0x30,0x2e,0x38, + 0x31,0x31,0x2c,0x30,0x2e,0x31,0x37,0x33,0x2c,0x31, + 0x2e,0x34,0x31,0x38,0x2c,0x30,0x2e,0x35,0x34,0x34, + 0x2c,0x31,0x2e,0x38,0x32,0x34,0x2c,0x31,0x2e,0x31, + 0x31,0x33,0x63,0x30,0x2e,0x34,0x30,0x34,0x2c,0x30, + 0x2e,0x35,0x36,0x39,0x2c,0x30,0x2e,0x36,0x30,0x37, + 0x2c,0x31,0x2e,0x32,0x32,0x38,0x2c,0x30,0x2e,0x36, + 0x30,0x37,0x2c,0x31,0x2e,0x39,0x37,0x37,0x0d,0x0a, + 0x09,0x09,0x09,0x43,0x32,0x31,0x2e,0x31,0x34,0x34, + 0x2c,0x31,0x39,0x2e,0x32,0x35,0x33,0x2c,0x32,0x30, + 0x2e,0x37,0x31,0x36,0x2c,0x32,0x30,0x2e,0x32,0x33, + 0x32,0x2c,0x31,0x39,0x2e,0x38,0x36,0x33,0x2c,0x32, + 0x30,0x2e,0x38,0x39,0x37,0x7a,0x22,0x2f,0x3e,0x0d, + 0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x2f, + 0x67,0x3e,0x0d,0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e, + 0x0d,0x0a +}; diff --git a/data/converted/help_button_l_svg.cpp b/data/converted/help_button_l_svg.cpp new file mode 100644 index 000000000..a0af35ed8 --- /dev/null +++ b/data/converted/help_button_l_svg.cpp @@ -0,0 +1,109 @@ +//this file was auto-generated from "button_l.svg" by res2h + +#include "../Resources.h" + +const size_t help_button_l_svg_size = 1016; +const unsigned char help_button_l_svg_data[1016] = { + 0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20, + 0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22, + 0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a, + 0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62, + 0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61, + 0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33, + 0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e, + 0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72, + 0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30, + 0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20, + 0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f, + 0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20, + 0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f, + 0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20, + 0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45, + 0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44, + 0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64, + 0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22, + 0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45, + 0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a, + 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f, + 0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76, + 0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78, + 0x6c,0x69,0x6e,0x6b,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,0x78, + 0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30, + 0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78, + 0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68, + 0x3d,0x22,0x33,0x38,0x2e,0x32,0x35,0x36,0x70,0x78, + 0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22, + 0x31,0x37,0x2e,0x30,0x30,0x37,0x70,0x78,0x22,0x20, + 0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30, + 0x20,0x30,0x20,0x33,0x38,0x2e,0x32,0x35,0x36,0x20, + 0x31,0x37,0x2e,0x30,0x30,0x37,0x22,0x20,0x65,0x6e, + 0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67, + 0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77, + 0x20,0x30,0x20,0x30,0x20,0x33,0x38,0x2e,0x32,0x35, + 0x36,0x20,0x31,0x37,0x2e,0x30,0x30,0x37,0x22,0x20, + 0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d, + 0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22, + 0x3e,0x0d,0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c, + 0x67,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,0x74, + 0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37, + 0x37,0x37,0x37,0x37,0x37,0x22,0x20,0x64,0x3d,0x22, + 0x4d,0x33,0x30,0x2e,0x34,0x35,0x2c,0x31,0x2e,0x35, + 0x63,0x33,0x2e,0x34,0x37,0x37,0x2c,0x30,0x2c,0x36, + 0x2e,0x33,0x30,0x36,0x2c,0x33,0x2e,0x31,0x33,0x39, + 0x2c,0x36,0x2e,0x33,0x30,0x36,0x2c,0x36,0x2e,0x39, + 0x39,0x37,0x63,0x30,0x2c,0x33,0x2e,0x38,0x36,0x36, + 0x2d,0x32,0x2e,0x38,0x32,0x39,0x2c,0x37,0x2e,0x30, + 0x31,0x2d,0x36,0x2e,0x33,0x30,0x36,0x2c,0x37,0x2e, + 0x30,0x31,0x48,0x37,0x2e,0x37,0x36,0x0d,0x0a,0x09, + 0x09,0x09,0x63,0x2d,0x33,0x2e,0x34,0x35,0x32,0x2d, + 0x30,0x2e,0x30,0x33,0x2d,0x36,0x2e,0x32,0x36,0x2d, + 0x33,0x2e,0x31,0x37,0x35,0x2d,0x36,0x2e,0x32,0x36, + 0x2d,0x37,0x2e,0x30,0x31,0x43,0x31,0x2e,0x35,0x2c, + 0x34,0x2e,0x36,0x36,0x39,0x2c,0x34,0x2e,0x33,0x30, + 0x38,0x2c,0x31,0x2e,0x35,0x33,0x2c,0x37,0x2e,0x37, + 0x34,0x37,0x2c,0x31,0x2e,0x35,0x48,0x33,0x30,0x2e, + 0x34,0x35,0x20,0x4d,0x33,0x30,0x2e,0x34,0x35,0x2c, + 0x30,0x43,0x33,0x30,0x2e,0x34,0x32,0x38,0x2c,0x30, + 0x2c,0x37,0x2e,0x37,0x34,0x37,0x2c,0x30,0x2c,0x37, + 0x2e,0x37,0x34,0x37,0x2c,0x30,0x0d,0x0a,0x09,0x09, + 0x09,0x43,0x33,0x2e,0x34,0x36,0x36,0x2c,0x30,0x2e, + 0x30,0x33,0x38,0x2c,0x30,0x2c,0x33,0x2e,0x38,0x31, + 0x39,0x2c,0x30,0x2c,0x38,0x2e,0x34,0x39,0x37,0x73, + 0x33,0x2e,0x34,0x36,0x36,0x2c,0x38,0x2e,0x34,0x37, + 0x33,0x2c,0x37,0x2e,0x37,0x34,0x37,0x2c,0x38,0x2e, + 0x35,0x31,0x63,0x30,0x2c,0x30,0x2c,0x32,0x32,0x2e, + 0x36,0x38,0x31,0x2c,0x30,0x2c,0x32,0x32,0x2e,0x37, + 0x30,0x33,0x2c,0x30,0x63,0x34,0x2e,0x33,0x31,0x32, + 0x2c,0x30,0x2c,0x37,0x2e,0x38,0x30,0x36,0x2d,0x33, + 0x2e,0x38,0x31,0x31,0x2c,0x37,0x2e,0x38,0x30,0x36, + 0x2d,0x38,0x2e,0x35,0x31,0x0d,0x0a,0x09,0x09,0x09, + 0x43,0x33,0x38,0x2e,0x32,0x35,0x36,0x2c,0x33,0x2e, + 0x37,0x39,0x36,0x2c,0x33,0x34,0x2e,0x37,0x36,0x32, + 0x2c,0x30,0x2c,0x33,0x30,0x2e,0x34,0x35,0x2c,0x30, + 0x4c,0x33,0x30,0x2e,0x34,0x35,0x2c,0x30,0x7a,0x22, + 0x2f,0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d, + 0x0a,0x09,0x3c,0x70,0x6f,0x6c,0x79,0x67,0x6f,0x6e, + 0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37, + 0x37,0x37,0x37,0x37,0x22,0x20,0x70,0x6f,0x69,0x6e, + 0x74,0x73,0x3d,0x22,0x31,0x36,0x2e,0x35,0x31,0x39, + 0x2c,0x31,0x32,0x2e,0x31,0x38,0x36,0x20,0x32,0x31, + 0x2e,0x37,0x33,0x38,0x2c,0x31,0x32,0x2e,0x31,0x38, + 0x36,0x20,0x32,0x31,0x2e,0x37,0x33,0x38,0x2c,0x31, + 0x30,0x2e,0x38,0x32,0x33,0x20,0x31,0x38,0x2e,0x31, + 0x34,0x31,0x2c,0x31,0x30,0x2e,0x38,0x32,0x33,0x20, + 0x31,0x38,0x2e,0x31,0x34,0x31,0x2c,0x34,0x2e,0x38, + 0x30,0x37,0x20,0x31,0x36,0x2e,0x35,0x31,0x39,0x2c, + 0x34,0x2e,0x38,0x30,0x37,0x20,0x09,0x22,0x2f,0x3e, + 0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x2f, + 0x73,0x76,0x67,0x3e,0x0d,0x0a +}; diff --git a/data/converted/help_button_r_svg.cpp b/data/converted/help_button_r_svg.cpp new file mode 100644 index 000000000..b527b5123 --- /dev/null +++ b/data/converted/help_button_r_svg.cpp @@ -0,0 +1,134 @@ +//this file was auto-generated from "button_r.svg" by res2h + +#include "../Resources.h" + +const size_t help_button_r_svg_size = 1264; +const unsigned char help_button_r_svg_data[1264] = { + 0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20, + 0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22, + 0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a, + 0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62, + 0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61, + 0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33, + 0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e, + 0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72, + 0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30, + 0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20, + 0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f, + 0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20, + 0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f, + 0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20, + 0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45, + 0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44, + 0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64, + 0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22, + 0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45, + 0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a, + 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f, + 0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76, + 0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78, + 0x6c,0x69,0x6e,0x6b,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,0x78, + 0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30, + 0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78, + 0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68, + 0x3d,0x22,0x33,0x38,0x2e,0x32,0x35,0x36,0x70,0x78, + 0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22, + 0x31,0x37,0x2e,0x30,0x30,0x37,0x70,0x78,0x22,0x20, + 0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30, + 0x20,0x30,0x20,0x33,0x38,0x2e,0x32,0x35,0x36,0x20, + 0x31,0x37,0x2e,0x30,0x30,0x37,0x22,0x20,0x65,0x6e, + 0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67, + 0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77, + 0x20,0x30,0x20,0x30,0x20,0x33,0x38,0x2e,0x32,0x35, + 0x36,0x20,0x31,0x37,0x2e,0x30,0x30,0x37,0x22,0x20, + 0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d, + 0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22, + 0x3e,0x0d,0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c, + 0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d, + 0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20, + 0x64,0x3d,0x22,0x4d,0x33,0x30,0x2e,0x34,0x35,0x2c, + 0x31,0x2e,0x35,0x63,0x33,0x2e,0x34,0x37,0x37,0x2c, + 0x30,0x2c,0x36,0x2e,0x33,0x30,0x36,0x2c,0x33,0x2e, + 0x31,0x33,0x39,0x2c,0x36,0x2e,0x33,0x30,0x36,0x2c, + 0x36,0x2e,0x39,0x39,0x37,0x63,0x30,0x2c,0x33,0x2e, + 0x38,0x36,0x36,0x2d,0x32,0x2e,0x38,0x32,0x39,0x2c, + 0x37,0x2e,0x30,0x31,0x2d,0x36,0x2e,0x33,0x30,0x36, + 0x2c,0x37,0x2e,0x30,0x31,0x48,0x37,0x2e,0x37,0x36, + 0x0d,0x0a,0x09,0x09,0x63,0x2d,0x33,0x2e,0x34,0x35, + 0x32,0x2d,0x30,0x2e,0x30,0x33,0x2d,0x36,0x2e,0x32, + 0x36,0x2d,0x33,0x2e,0x31,0x37,0x35,0x2d,0x36,0x2e, + 0x32,0x36,0x2d,0x37,0x2e,0x30,0x31,0x43,0x31,0x2e, + 0x35,0x2c,0x34,0x2e,0x36,0x36,0x39,0x2c,0x34,0x2e, + 0x33,0x30,0x38,0x2c,0x31,0x2e,0x35,0x33,0x2c,0x37, + 0x2e,0x37,0x34,0x37,0x2c,0x31,0x2e,0x35,0x48,0x33, + 0x30,0x2e,0x34,0x35,0x20,0x4d,0x33,0x30,0x2e,0x34, + 0x35,0x2c,0x30,0x43,0x33,0x30,0x2e,0x34,0x32,0x38, + 0x2c,0x30,0x2c,0x37,0x2e,0x37,0x34,0x37,0x2c,0x30, + 0x2c,0x37,0x2e,0x37,0x34,0x37,0x2c,0x30,0x0d,0x0a, + 0x09,0x09,0x43,0x33,0x2e,0x34,0x36,0x36,0x2c,0x30, + 0x2e,0x30,0x33,0x38,0x2c,0x30,0x2c,0x33,0x2e,0x38, + 0x31,0x39,0x2c,0x30,0x2c,0x38,0x2e,0x34,0x39,0x37, + 0x73,0x33,0x2e,0x34,0x36,0x36,0x2c,0x38,0x2e,0x34, + 0x37,0x33,0x2c,0x37,0x2e,0x37,0x34,0x37,0x2c,0x38, + 0x2e,0x35,0x31,0x63,0x30,0x2c,0x30,0x2c,0x32,0x32, + 0x2e,0x36,0x38,0x31,0x2c,0x30,0x2c,0x32,0x32,0x2e, + 0x37,0x30,0x33,0x2c,0x30,0x63,0x34,0x2e,0x33,0x31, + 0x32,0x2c,0x30,0x2c,0x37,0x2e,0x38,0x30,0x36,0x2d, + 0x33,0x2e,0x38,0x31,0x31,0x2c,0x37,0x2e,0x38,0x30, + 0x36,0x2d,0x38,0x2e,0x35,0x31,0x0d,0x0a,0x09,0x09, + 0x43,0x33,0x38,0x2e,0x32,0x35,0x36,0x2c,0x33,0x2e, + 0x37,0x39,0x36,0x2c,0x33,0x34,0x2e,0x37,0x36,0x32, + 0x2c,0x30,0x2c,0x33,0x30,0x2e,0x34,0x35,0x2c,0x30, + 0x4c,0x33,0x30,0x2e,0x34,0x35,0x2c,0x30,0x7a,0x22, + 0x2f,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d,0x0a, + 0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c, + 0x3d,0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22, + 0x20,0x64,0x3d,0x22,0x4d,0x31,0x37,0x2e,0x35,0x36, + 0x39,0x2c,0x36,0x2e,0x30,0x36,0x37,0x68,0x31,0x2e, + 0x37,0x37,0x39,0x63,0x30,0x2e,0x37,0x32,0x33,0x2c, + 0x30,0x2c,0x31,0x2e,0x31,0x31,0x36,0x2c,0x30,0x2e, + 0x33,0x31,0x31,0x2c,0x31,0x2e,0x31,0x31,0x36,0x2c, + 0x31,0x2e,0x30,0x32,0x34,0x63,0x30,0x2c,0x30,0x2e, + 0x37,0x34,0x37,0x2d,0x30,0x2e,0x33,0x39,0x34,0x2c, + 0x31,0x2e,0x30,0x35,0x38,0x2d,0x31,0x2e,0x31,0x31, + 0x36,0x2c,0x31,0x2e,0x30,0x35,0x38,0x68,0x2d,0x31, + 0x2e,0x37,0x37,0x39,0x56,0x36,0x2e,0x30,0x36,0x37, + 0x7a,0x0d,0x0a,0x09,0x20,0x4d,0x31,0x35,0x2e,0x39, + 0x34,0x39,0x2c,0x31,0x32,0x2e,0x31,0x39,0x34,0x68, + 0x31,0x2e,0x36,0x32,0x31,0x56,0x39,0x2e,0x33,0x30, + 0x37,0x68,0x31,0x2e,0x36,0x32,0x35,0x63,0x30,0x2e, + 0x38,0x31,0x36,0x2c,0x30,0x2c,0x31,0x2e,0x31,0x31, + 0x36,0x2c,0x30,0x2e,0x33,0x34,0x32,0x2c,0x31,0x2e, + 0x32,0x32,0x39,0x2c,0x31,0x2e,0x31,0x31,0x38,0x63, + 0x30,0x2e,0x30,0x38,0x32,0x2c,0x30,0x2e,0x35,0x39, + 0x2c,0x30,0x2e,0x30,0x36,0x32,0x2c,0x31,0x2e,0x33, + 0x30,0x35,0x2c,0x30,0x2e,0x32,0x35,0x38,0x2c,0x31, + 0x2e,0x37,0x37,0x68,0x31,0x2e,0x36,0x32,0x32,0x0d, + 0x0a,0x09,0x63,0x2d,0x30,0x2e,0x32,0x39,0x2d,0x30, + 0x2e,0x34,0x31,0x34,0x2d,0x30,0x2e,0x32,0x38,0x2d, + 0x31,0x2e,0x32,0x38,0x33,0x2d,0x30,0x2e,0x33,0x31, + 0x31,0x2d,0x31,0x2e,0x37,0x34,0x38,0x63,0x2d,0x30, + 0x2e,0x30,0x35,0x32,0x2d,0x30,0x2e,0x37,0x34,0x36, + 0x2d,0x30,0x2e,0x32,0x37,0x38,0x2d,0x31,0x2e,0x35, + 0x32,0x32,0x2d,0x31,0x2e,0x30,0x37,0x33,0x2d,0x31, + 0x2e,0x37,0x32,0x38,0x63,0x30,0x2c,0x30,0x2c,0x31, + 0x2e,0x31,0x36,0x37,0x2d,0x30,0x2e,0x33,0x30,0x32, + 0x2c,0x31,0x2e,0x31,0x36,0x37,0x2d,0x31,0x2e,0x38, + 0x37,0x34,0x0d,0x0a,0x09,0x63,0x30,0x2d,0x31,0x2e, + 0x31,0x31,0x38,0x2d,0x30,0x2e,0x38,0x33,0x36,0x2d, + 0x32,0x2e,0x30,0x33,0x37,0x2d,0x32,0x2e,0x31,0x36, + 0x2d,0x32,0x2e,0x30,0x33,0x37,0x68,0x2d,0x33,0x2e, + 0x39,0x37,0x38,0x56,0x31,0x32,0x2e,0x31,0x39,0x34, + 0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x3c,0x2f,0x73,0x76, + 0x67,0x3e,0x0d,0x0a +}; diff --git a/data/converted/help_button_select_svg.cpp b/data/converted/help_button_select_svg.cpp new file mode 100644 index 000000000..1040b9bdd --- /dev/null +++ b/data/converted/help_button_select_svg.cpp @@ -0,0 +1,177 @@ +//this file was auto-generated from "button_select.svg" by res2h + +#include "../Resources.h" + +const size_t help_button_select_svg_size = 1693; +const unsigned char help_button_select_svg_data[1693] = { + 0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20, + 0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22, + 0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a, + 0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62, + 0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61, + 0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33, + 0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e, + 0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72, + 0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30, + 0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20, + 0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f, + 0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20, + 0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f, + 0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20, + 0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45, + 0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44, + 0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64, + 0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22, + 0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45, + 0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a, + 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f, + 0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76, + 0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78, + 0x6c,0x69,0x6e,0x6b,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,0x78, + 0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30, + 0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78, + 0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68, + 0x3d,0x22,0x33,0x38,0x2e,0x34,0x34,0x36,0x70,0x78, + 0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22, + 0x31,0x39,0x2e,0x31,0x33,0x38,0x70,0x78,0x22,0x20, + 0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30, + 0x20,0x30,0x20,0x33,0x38,0x2e,0x34,0x34,0x36,0x20, + 0x31,0x39,0x2e,0x31,0x33,0x38,0x22,0x20,0x65,0x6e, + 0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67, + 0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77, + 0x20,0x30,0x20,0x30,0x20,0x33,0x38,0x2e,0x34,0x34, + 0x36,0x20,0x31,0x39,0x2e,0x31,0x33,0x38,0x22,0x20, + 0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d, + 0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22, + 0x3e,0x0d,0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c, + 0x67,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x67,0x3e,0x0d, + 0x0a,0x09,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20, + 0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37, + 0x37,0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x33, + 0x34,0x2e,0x36,0x30,0x31,0x2c,0x31,0x31,0x2e,0x32, + 0x32,0x33,0x48,0x33,0x2e,0x38,0x34,0x35,0x43,0x31, + 0x2e,0x37,0x32,0x32,0x2c,0x31,0x31,0x2e,0x32,0x32, + 0x33,0x2c,0x30,0x2c,0x31,0x32,0x2e,0x39,0x39,0x34, + 0x2c,0x30,0x2c,0x31,0x35,0x2e,0x31,0x38,0x73,0x31, + 0x2e,0x37,0x32,0x32,0x2c,0x33,0x2e,0x39,0x35,0x38, + 0x2c,0x33,0x2e,0x38,0x34,0x35,0x2c,0x33,0x2e,0x39, + 0x35,0x38,0x68,0x33,0x30,0x2e,0x37,0x35,0x36,0x0d, + 0x0a,0x09,0x09,0x09,0x09,0x63,0x32,0x2e,0x31,0x32, + 0x33,0x2c,0x30,0x2c,0x33,0x2e,0x38,0x34,0x34,0x2d, + 0x31,0x2e,0x37,0x37,0x32,0x2c,0x33,0x2e,0x38,0x34, + 0x34,0x2d,0x33,0x2e,0x39,0x35,0x38,0x53,0x33,0x36, + 0x2e,0x37,0x32,0x34,0x2c,0x31,0x31,0x2e,0x32,0x32, + 0x33,0x2c,0x33,0x34,0x2e,0x36,0x30,0x31,0x2c,0x31, + 0x31,0x2e,0x32,0x32,0x33,0x7a,0x22,0x2f,0x3e,0x0d, + 0x0a,0x09,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09, + 0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x70,0x61, + 0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23, + 0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20,0x64,0x3d, + 0x22,0x4d,0x33,0x35,0x2e,0x30,0x32,0x39,0x2c,0x37, + 0x2e,0x36,0x34,0x38,0x68,0x31,0x2e,0x32,0x32,0x34, + 0x56,0x31,0x2e,0x33,0x37,0x35,0x68,0x32,0x2e,0x31, + 0x39,0x33,0x56,0x30,0x2e,0x32,0x30,0x39,0x68,0x2d, + 0x35,0x2e,0x36,0x30,0x39,0x76,0x31,0x2e,0x31,0x36, + 0x36,0x68,0x32,0x2e,0x31,0x39,0x32,0x56,0x37,0x2e, + 0x36,0x34,0x38,0x7a,0x20,0x4d,0x33,0x32,0x2e,0x30, + 0x33,0x33,0x2c,0x32,0x2e,0x39,0x35,0x39,0x0d,0x0a, + 0x09,0x09,0x43,0x33,0x31,0x2e,0x39,0x30,0x31,0x2c, + 0x31,0x2e,0x33,0x35,0x33,0x2c,0x33,0x30,0x2e,0x38, + 0x35,0x35,0x2c,0x30,0x2c,0x32,0x38,0x2e,0x38,0x34, + 0x33,0x2c,0x30,0x63,0x2d,0x32,0x2e,0x32,0x39,0x38, + 0x2c,0x30,0x2d,0x33,0x2e,0x32,0x36,0x34,0x2c,0x31, + 0x2e,0x38,0x33,0x32,0x2d,0x33,0x2e,0x32,0x36,0x34, + 0x2c,0x33,0x2e,0x39,0x32,0x39,0x63,0x30,0x2c,0x32, + 0x2e,0x30,0x39,0x34,0x2c,0x31,0x2e,0x30,0x30,0x38, + 0x2c,0x33,0x2e,0x39,0x32,0x39,0x2c,0x33,0x2e,0x31, + 0x31,0x37,0x2c,0x33,0x2e,0x39,0x32,0x39,0x0d,0x0a, + 0x09,0x09,0x63,0x32,0x2e,0x34,0x30,0x34,0x2c,0x30, + 0x2c,0x33,0x2e,0x31,0x36,0x34,0x2d,0x31,0x2e,0x35, + 0x37,0x33,0x2c,0x33,0x2e,0x33,0x33,0x36,0x2d,0x33, + 0x2e,0x30,0x35,0x35,0x68,0x2d,0x31,0x2e,0x33,0x32, + 0x35,0x63,0x2d,0x30,0x2e,0x30,0x39,0x39,0x2c,0x30, + 0x2e,0x37,0x38,0x32,0x2d,0x30,0x2e,0x35,0x32,0x34, + 0x2c,0x31,0x2e,0x38,0x39,0x2d,0x31,0x2e,0x38,0x2c, + 0x31,0x2e,0x38,0x39,0x63,0x2d,0x31,0x2e,0x32,0x31, + 0x31,0x2c,0x30,0x2d,0x32,0x2e,0x30,0x35,0x33,0x2d, + 0x31,0x2e,0x30,0x37,0x38,0x2d,0x32,0x2e,0x30,0x35, + 0x33,0x2d,0x32,0x2e,0x36,0x33,0x0d,0x0a,0x09,0x09, + 0x63,0x30,0x2d,0x31,0x2e,0x39,0x33,0x39,0x2c,0x30, + 0x2e,0x38,0x34,0x32,0x2d,0x32,0x2e,0x38,0x39,0x38, + 0x2c,0x31,0x2e,0x39,0x37,0x31,0x2d,0x32,0x2e,0x38, + 0x39,0x38,0x63,0x31,0x2e,0x30,0x33,0x31,0x2c,0x30, + 0x2c,0x31,0x2e,0x37,0x36,0x2c,0x30,0x2e,0x36,0x36, + 0x37,0x2c,0x31,0x2e,0x38,0x38,0x32,0x2c,0x31,0x2e, + 0x37,0x39,0x34,0x48,0x33,0x32,0x2e,0x30,0x33,0x33, + 0x7a,0x20,0x4d,0x31,0x39,0x2e,0x34,0x33,0x37,0x2c, + 0x37,0x2e,0x36,0x34,0x38,0x68,0x35,0x2e,0x31,0x33, + 0x35,0x56,0x36,0x2e,0x34,0x38,0x33,0x68,0x2d,0x33, + 0x2e,0x39,0x31,0x31,0x56,0x34,0x2e,0x34,0x31,0x39, + 0x68,0x33,0x2e,0x36,0x39,0x31,0x56,0x33,0x2e,0x32, + 0x35,0x33,0x0d,0x0a,0x09,0x09,0x68,0x2d,0x33,0x2e, + 0x36,0x39,0x31,0x56,0x31,0x2e,0x33,0x37,0x35,0x68, + 0x33,0x2e,0x38,0x34,0x35,0x56,0x30,0x2e,0x32,0x30, + 0x39,0x68,0x2d,0x35,0x2e,0x30,0x36,0x39,0x56,0x37, + 0x2e,0x36,0x34,0x38,0x7a,0x20,0x4d,0x31,0x33,0x2e, + 0x35,0x37,0x31,0x2c,0x37,0x2e,0x36,0x34,0x38,0x68, + 0x34,0x2e,0x37,0x37,0x35,0x56,0x36,0x2e,0x34,0x32, + 0x32,0x68,0x2d,0x33,0x2e,0x35,0x35,0x56,0x30,0x2e, + 0x32,0x30,0x39,0x68,0x2d,0x31,0x2e,0x32,0x32,0x35, + 0x56,0x37,0x2e,0x36,0x34,0x38,0x7a,0x20,0x4d,0x37, + 0x2e,0x31,0x2c,0x37,0x2e,0x36,0x34,0x38,0x68,0x35, + 0x2e,0x31,0x33,0x36,0x56,0x36,0x2e,0x34,0x38,0x33, + 0x68,0x2d,0x33,0x2e,0x39,0x31,0x56,0x34,0x2e,0x34, + 0x31,0x39,0x0d,0x0a,0x09,0x09,0x68,0x33,0x2e,0x36, + 0x38,0x39,0x56,0x33,0x2e,0x32,0x35,0x33,0x48,0x38, + 0x2e,0x33,0x32,0x36,0x56,0x31,0x2e,0x33,0x37,0x35, + 0x68,0x33,0x2e,0x38,0x34,0x36,0x56,0x30,0x2e,0x32, + 0x30,0x39,0x48,0x37,0x2e,0x31,0x56,0x37,0x2e,0x36, + 0x34,0x38,0x7a,0x20,0x4d,0x30,0x2e,0x33,0x31,0x39, + 0x2c,0x32,0x2e,0x33,0x30,0x32,0x63,0x30,0x2c,0x33, + 0x2e,0x30,0x35,0x32,0x2c,0x34,0x2e,0x33,0x30,0x33, + 0x2c,0x31,0x2e,0x34,0x34,0x36,0x2c,0x34,0x2e,0x33, + 0x30,0x33,0x2c,0x33,0x2e,0x32,0x39,0x63,0x30,0x2c, + 0x30,0x2e,0x38,0x31,0x38,0x2d,0x30,0x2e,0x36,0x39, + 0x35,0x2c,0x31,0x2e,0x31,0x30,0x31,0x2d,0x31,0x2e, + 0x34,0x34,0x2c,0x31,0x2e,0x31,0x30,0x31,0x0d,0x0a, + 0x09,0x09,0x63,0x2d,0x31,0x2e,0x30,0x30,0x36,0x2c, + 0x30,0x2d,0x31,0x2e,0x36,0x34,0x34,0x2d,0x30,0x2e, + 0x34,0x37,0x32,0x2d,0x31,0x2e,0x36,0x37,0x37,0x2d, + 0x31,0x2e,0x34,0x35,0x34,0x48,0x30,0x2e,0x31,0x38, + 0x31,0x63,0x30,0x2e,0x30,0x31,0x36,0x2c,0x31,0x2e, + 0x35,0x36,0x34,0x2c,0x30,0x2e,0x38,0x35,0x38,0x2c, + 0x32,0x2e,0x36,0x31,0x39,0x2c,0x32,0x2e,0x39,0x36, + 0x31,0x2c,0x32,0x2e,0x36,0x31,0x39,0x63,0x31,0x2e, + 0x32,0x34,0x33,0x2c,0x30,0x2c,0x32,0x2e,0x38,0x30, + 0x35,0x2d,0x30,0x2e,0x35,0x30,0x31,0x2c,0x32,0x2e, + 0x38,0x30,0x35,0x2d,0x32,0x2e,0x34,0x32,0x0d,0x0a, + 0x09,0x09,0x63,0x30,0x2d,0x33,0x2e,0x31,0x37,0x38, + 0x2d,0x34,0x2e,0x33,0x35,0x32,0x2d,0x31,0x2e,0x35, + 0x30,0x32,0x2d,0x34,0x2e,0x33,0x35,0x32,0x2d,0x33, + 0x2e,0x32,0x35,0x63,0x30,0x2d,0x30,0x2e,0x36,0x39, + 0x39,0x2c,0x30,0x2e,0x35,0x34,0x2d,0x31,0x2e,0x30, + 0x32,0x33,0x2c,0x31,0x2e,0x33,0x35,0x37,0x2d,0x31, + 0x2e,0x30,0x32,0x33,0x63,0x31,0x2e,0x30,0x32,0x33, + 0x2c,0x30,0x2c,0x31,0x2e,0x34,0x33,0x33,0x2c,0x30, + 0x2e,0x36,0x32,0x35,0x2c,0x31,0x2e,0x34,0x37,0x34, + 0x2c,0x31,0x2e,0x32,0x68,0x31,0x2e,0x33,0x32,0x35, + 0x43,0x35,0x2e,0x35,0x39,0x36,0x2c,0x30,0x2e,0x32, + 0x30,0x37,0x2c,0x33,0x2e,0x37,0x39,0x36,0x2c,0x30, + 0x2c,0x32,0x2e,0x38,0x39,0x36,0x2c,0x30,0x0d,0x0a, + 0x09,0x09,0x43,0x31,0x2e,0x34,0x37,0x32,0x2c,0x30, + 0x2c,0x30,0x2e,0x33,0x31,0x39,0x2c,0x30,0x2e,0x36, + 0x34,0x35,0x2c,0x30,0x2e,0x33,0x31,0x39,0x2c,0x32, + 0x2e,0x33,0x30,0x32,0x22,0x2f,0x3e,0x0d,0x0a,0x3c, + 0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x2f,0x73,0x76,0x67, + 0x3e,0x0d,0x0a +}; diff --git a/data/converted/help_button_start_svg.cpp b/data/converted/help_button_start_svg.cpp new file mode 100644 index 000000000..eb92ba896 --- /dev/null +++ b/data/converted/help_button_start_svg.cpp @@ -0,0 +1,178 @@ +//this file was auto-generated from "button_start.svg" by res2h + +#include "../Resources.h" + +const size_t help_button_start_svg_size = 1708; +const unsigned char help_button_start_svg_data[1708] = { + 0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20, + 0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22, + 0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a, + 0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62, + 0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61, + 0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33, + 0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e, + 0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72, + 0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30, + 0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20, + 0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f, + 0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20, + 0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f, + 0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20, + 0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45, + 0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44, + 0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64, + 0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22, + 0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45, + 0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a, + 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f, + 0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76, + 0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78, + 0x6c,0x69,0x6e,0x6b,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,0x78, + 0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30, + 0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78, + 0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68, + 0x3d,0x22,0x33,0x38,0x2e,0x34,0x34,0x36,0x70,0x78, + 0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22, + 0x31,0x39,0x2e,0x31,0x33,0x38,0x70,0x78,0x22,0x20, + 0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30, + 0x20,0x30,0x20,0x33,0x38,0x2e,0x34,0x34,0x36,0x20, + 0x31,0x39,0x2e,0x31,0x33,0x38,0x22,0x20,0x65,0x6e, + 0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67, + 0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77, + 0x20,0x30,0x20,0x30,0x20,0x33,0x38,0x2e,0x34,0x34, + 0x36,0x20,0x31,0x39,0x2e,0x31,0x33,0x38,0x22,0x20, + 0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d, + 0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22, + 0x3e,0x0d,0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c, + 0x67,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,0x74, + 0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37, + 0x37,0x37,0x37,0x37,0x37,0x22,0x20,0x64,0x3d,0x22, + 0x4d,0x33,0x34,0x2e,0x36,0x30,0x32,0x2c,0x31,0x31, + 0x2e,0x32,0x34,0x32,0x48,0x33,0x2e,0x38,0x34,0x35, + 0x43,0x31,0x2e,0x37,0x32,0x32,0x2c,0x31,0x31,0x2e, + 0x32,0x34,0x32,0x2c,0x30,0x2c,0x31,0x33,0x2e,0x30, + 0x31,0x34,0x2c,0x30,0x2c,0x31,0x35,0x2e,0x31,0x39, + 0x39,0x73,0x31,0x2e,0x37,0x32,0x32,0x2c,0x33,0x2e, + 0x39,0x35,0x39,0x2c,0x33,0x2e,0x38,0x34,0x35,0x2c, + 0x33,0x2e,0x39,0x35,0x39,0x68,0x33,0x30,0x2e,0x37, + 0x35,0x37,0x0d,0x0a,0x09,0x09,0x09,0x63,0x32,0x2e, + 0x31,0x32,0x33,0x2c,0x30,0x2c,0x33,0x2e,0x38,0x34, + 0x34,0x2d,0x31,0x2e,0x37,0x37,0x33,0x2c,0x33,0x2e, + 0x38,0x34,0x34,0x2d,0x33,0x2e,0x39,0x35,0x39,0x53, + 0x33,0x36,0x2e,0x37,0x32,0x35,0x2c,0x31,0x31,0x2e, + 0x32,0x34,0x32,0x2c,0x33,0x34,0x2e,0x36,0x30,0x32, + 0x2c,0x31,0x31,0x2e,0x32,0x34,0x32,0x7a,0x22,0x2f, + 0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a, + 0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x70,0x61,0x74, + 0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37, + 0x37,0x37,0x37,0x37,0x37,0x22,0x20,0x64,0x3d,0x22, + 0x4d,0x33,0x34,0x2e,0x32,0x39,0x36,0x2c,0x37,0x2e, + 0x36,0x38,0x37,0x68,0x31,0x2e,0x34,0x39,0x56,0x31, + 0x2e,0x33,0x38,0x31,0x68,0x32,0x2e,0x36,0x35,0x39, + 0x56,0x30,0x2e,0x32,0x30,0x39,0x68,0x2d,0x36,0x2e, + 0x38,0x31,0x76,0x31,0x2e,0x31,0x37,0x31,0x68,0x32, + 0x2e,0x36,0x36,0x56,0x37,0x2e,0x36,0x38,0x37,0x7a, + 0x20,0x4d,0x32,0x35,0x2e,0x32,0x35,0x35,0x2c,0x33, + 0x2e,0x35,0x36,0x32,0x56,0x31,0x2e,0x33,0x38,0x31, + 0x68,0x32,0x2e,0x35,0x37,0x35,0x0d,0x0a,0x09,0x63, + 0x30,0x2e,0x37,0x38,0x33,0x2c,0x30,0x2c,0x31,0x2e, + 0x32,0x37,0x31,0x2c,0x30,0x2e,0x33,0x30,0x33,0x2c, + 0x31,0x2e,0x32,0x37,0x31,0x2c,0x31,0x2e,0x30,0x37, + 0x39,0x63,0x30,0x2c,0x30,0x2e,0x38,0x33,0x38,0x2d, + 0x30,0x2e,0x34,0x34,0x37,0x2c,0x31,0x2e,0x31,0x30, + 0x33,0x2d,0x31,0x2e,0x32,0x37,0x31,0x2c,0x31,0x2e, + 0x31,0x30,0x33,0x48,0x32,0x35,0x2e,0x32,0x35,0x35, + 0x7a,0x20,0x4d,0x32,0x33,0x2e,0x37,0x36,0x39,0x2c, + 0x37,0x2e,0x36,0x38,0x37,0x68,0x31,0x2e,0x34,0x38, + 0x36,0x56,0x34,0x2e,0x37,0x33,0x33,0x68,0x32,0x2e, + 0x35,0x33,0x34,0x0d,0x0a,0x09,0x63,0x31,0x2e,0x30, + 0x39,0x34,0x2c,0x30,0x2c,0x31,0x2e,0x32,0x33,0x32, + 0x2c,0x30,0x2e,0x37,0x35,0x34,0x2c,0x31,0x2e,0x32, + 0x33,0x32,0x2c,0x31,0x2e,0x38,0x32,0x32,0x63,0x30, + 0x2c,0x30,0x2e,0x35,0x34,0x35,0x2c,0x30,0x2e,0x30, + 0x37,0x2c,0x30,0x2e,0x39,0x32,0x32,0x2c,0x30,0x2e, + 0x31,0x38,0x2c,0x31,0x2e,0x31,0x33,0x31,0x68,0x31, + 0x2e,0x36,0x30,0x37,0x43,0x33,0x30,0x2e,0x35,0x32, + 0x2c,0x37,0x2e,0x32,0x37,0x38,0x2c,0x33,0x30,0x2e, + 0x35,0x31,0x2c,0x36,0x2e,0x34,0x34,0x31,0x2c,0x33, + 0x30,0x2e,0x35,0x31,0x2c,0x36,0x2e,0x30,0x38,0x33, + 0x0d,0x0a,0x09,0x63,0x30,0x2d,0x31,0x2e,0x30,0x35, + 0x37,0x2d,0x30,0x2e,0x31,0x38,0x36,0x2d,0x31,0x2e, + 0x38,0x33,0x32,0x2d,0x31,0x2e,0x30,0x33,0x31,0x2d, + 0x32,0x2e,0x30,0x32,0x56,0x34,0x2e,0x30,0x34,0x31, + 0x63,0x30,0x2e,0x36,0x36,0x36,0x2d,0x30,0x2e,0x32, + 0x31,0x39,0x2c,0x31,0x2e,0x31,0x37,0x2d,0x30,0x2e, + 0x38,0x32,0x38,0x2c,0x31,0x2e,0x31,0x37,0x2d,0x31, + 0x2e,0x38,0x30,0x32,0x63,0x30,0x2d,0x31,0x2e,0x31, + 0x36,0x32,0x2d,0x30,0x2e,0x35,0x38,0x34,0x2d,0x32, + 0x2e,0x30,0x32,0x39,0x2d,0x32,0x2e,0x33,0x39,0x31, + 0x2d,0x32,0x2e,0x30,0x32,0x39,0x68,0x2d,0x34,0x2e, + 0x34,0x38,0x39,0x56,0x37,0x2e,0x36,0x38,0x37,0x7a, + 0x0d,0x0a,0x09,0x20,0x4d,0x31,0x34,0x2e,0x35,0x34, + 0x39,0x2c,0x37,0x2e,0x36,0x38,0x37,0x68,0x31,0x2e, + 0x36,0x30,0x39,0x6c,0x30,0x2e,0x37,0x33,0x35,0x2d, + 0x31,0x2e,0x38,0x35,0x34,0x68,0x33,0x2e,0x33,0x33, + 0x38,0x6c,0x30,0x2e,0x37,0x34,0x36,0x2c,0x31,0x2e, + 0x38,0x35,0x34,0x68,0x31,0x2e,0x36,0x35,0x39,0x6c, + 0x2d,0x33,0x2e,0x31,0x36,0x2d,0x37,0x2e,0x34,0x37, + 0x38,0x68,0x2d,0x31,0x2e,0x37,0x36,0x38,0x4c,0x31, + 0x34,0x2e,0x35,0x34,0x39,0x2c,0x37,0x2e,0x36,0x38, + 0x37,0x7a,0x20,0x4d,0x31,0x37,0x2e,0x33,0x34,0x31, + 0x2c,0x34,0x2e,0x36,0x36,0x32,0x6c,0x31,0x2e,0x32, + 0x33,0x2d,0x33,0x2e,0x31,0x35,0x36,0x6c,0x31,0x2e, + 0x32,0x31,0x33,0x2c,0x33,0x2e,0x31,0x35,0x36,0x0d, + 0x0a,0x09,0x48,0x31,0x37,0x2e,0x33,0x34,0x31,0x7a, + 0x20,0x4d,0x31,0x30,0x2e,0x33,0x35,0x37,0x2c,0x37, + 0x2e,0x36,0x38,0x37,0x68,0x31,0x2e,0x34,0x38,0x37, + 0x56,0x31,0x2e,0x33,0x38,0x31,0x68,0x32,0x2e,0x36, + 0x36,0x35,0x56,0x30,0x2e,0x32,0x30,0x39,0x48,0x37, + 0x2e,0x36,0x39,0x34,0x76,0x31,0x2e,0x31,0x37,0x31, + 0x68,0x32,0x2e,0x36,0x36,0x34,0x56,0x37,0x2e,0x36, + 0x38,0x37,0x7a,0x20,0x4d,0x30,0x2e,0x31,0x38,0x35, + 0x2c,0x32,0x2e,0x33,0x31,0x33,0x63,0x30,0x2c,0x33, + 0x2e,0x30,0x36,0x36,0x2c,0x35,0x2e,0x32,0x32,0x35, + 0x2c,0x31,0x2e,0x34,0x35,0x33,0x2c,0x35,0x2e,0x32, + 0x32,0x35,0x2c,0x33,0x2e,0x33,0x30,0x37,0x0d,0x0a, + 0x09,0x63,0x30,0x2c,0x30,0x2e,0x38,0x32,0x32,0x2d, + 0x30,0x2e,0x38,0x34,0x34,0x2c,0x31,0x2e,0x31,0x30, + 0x35,0x2d,0x31,0x2e,0x37,0x34,0x39,0x2c,0x31,0x2e, + 0x31,0x30,0x35,0x63,0x2d,0x31,0x2e,0x32,0x32,0x2c, + 0x30,0x2d,0x31,0x2e,0x39,0x39,0x36,0x2d,0x30,0x2e, + 0x34,0x37,0x33,0x2d,0x32,0x2e,0x30,0x33,0x36,0x2d, + 0x31,0x2e,0x34,0x35,0x39,0x48,0x30,0x2e,0x30,0x31, + 0x36,0x63,0x30,0x2e,0x30,0x32,0x2c,0x31,0x2e,0x35, + 0x37,0x32,0x2c,0x31,0x2e,0x30,0x34,0x33,0x2c,0x32, + 0x2e,0x36,0x33,0x31,0x2c,0x33,0x2e,0x35,0x39,0x36, + 0x2c,0x32,0x2e,0x36,0x33,0x31,0x0d,0x0a,0x09,0x63, + 0x31,0x2e,0x35,0x31,0x2c,0x30,0x2c,0x33,0x2e,0x34, + 0x30,0x36,0x2d,0x30,0x2e,0x35,0x30,0x34,0x2c,0x33, + 0x2e,0x34,0x30,0x36,0x2d,0x32,0x2e,0x34,0x33,0x32, + 0x63,0x30,0x2d,0x33,0x2e,0x31,0x39,0x33,0x2d,0x35, + 0x2e,0x32,0x38,0x34,0x2d,0x31,0x2e,0x35,0x30,0x38, + 0x2d,0x35,0x2e,0x32,0x38,0x34,0x2d,0x33,0x2e,0x32, + 0x36,0x36,0x63,0x30,0x2d,0x30,0x2e,0x37,0x30,0x32, + 0x2c,0x30,0x2e,0x36,0x35,0x36,0x2d,0x31,0x2e,0x30, + 0x32,0x37,0x2c,0x31,0x2e,0x36,0x34,0x39,0x2d,0x31, + 0x2e,0x30,0x32,0x37,0x63,0x31,0x2e,0x32,0x34,0x31, + 0x2c,0x30,0x2c,0x31,0x2e,0x37,0x33,0x39,0x2c,0x30, + 0x2e,0x36,0x32,0x38,0x2c,0x31,0x2e,0x37,0x38,0x39, + 0x2c,0x31,0x2e,0x32,0x30,0x35,0x0d,0x0a,0x09,0x68, + 0x31,0x2e,0x36,0x30,0x39,0x43,0x36,0x2e,0x35,0x39, + 0x31,0x2c,0x30,0x2e,0x32,0x30,0x37,0x2c,0x34,0x2e, + 0x34,0x30,0x36,0x2c,0x30,0x2c,0x33,0x2e,0x33,0x31, + 0x34,0x2c,0x30,0x43,0x31,0x2e,0x35,0x38,0x34,0x2c, + 0x30,0x2c,0x30,0x2e,0x31,0x38,0x35,0x2c,0x30,0x2e, + 0x36,0x34,0x36,0x2c,0x30,0x2e,0x31,0x38,0x35,0x2c, + 0x32,0x2e,0x33,0x31,0x33,0x22,0x2f,0x3e,0x0d,0x0a, + 0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d,0x0a +}; diff --git a/data/converted/help_button_x_svg.cpp b/data/converted/help_button_x_svg.cpp new file mode 100644 index 000000000..f3f4b3622 --- /dev/null +++ b/data/converted/help_button_x_svg.cpp @@ -0,0 +1,88 @@ +//this file was auto-generated from "button_x.svg" by res2h + +#include "../Resources.h" + +const size_t help_button_x_svg_size = 805; +const unsigned char help_button_x_svg_data[805] = { + 0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20, + 0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22, + 0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a, + 0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62, + 0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61, + 0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33, + 0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e, + 0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72, + 0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30, + 0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20, + 0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f, + 0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20, + 0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f, + 0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20, + 0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45, + 0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44, + 0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64, + 0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22, + 0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45, + 0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a, + 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f, + 0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76, + 0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78, + 0x6c,0x69,0x6e,0x6b,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,0x78, + 0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30, + 0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78, + 0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68, + 0x3d,0x22,0x33,0x31,0x70,0x78,0x22,0x20,0x68,0x65, + 0x69,0x67,0x68,0x74,0x3d,0x22,0x33,0x31,0x2e,0x30, + 0x30,0x31,0x70,0x78,0x22,0x20,0x76,0x69,0x65,0x77, + 0x42,0x6f,0x78,0x3d,0x22,0x30,0x20,0x30,0x20,0x33, + 0x31,0x20,0x33,0x31,0x2e,0x30,0x30,0x31,0x22,0x20, + 0x65,0x6e,0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63, + 0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e, + 0x65,0x77,0x20,0x30,0x20,0x30,0x20,0x33,0x31,0x20, + 0x33,0x31,0x2e,0x30,0x30,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,0x22,0x70, + 0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,0x3e,0x0d, + 0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e, + 0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20, + 0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37, + 0x37,0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31, + 0x35,0x2e,0x35,0x2c,0x30,0x2e,0x30,0x30,0x31,0x63, + 0x2d,0x38,0x2e,0x35,0x36,0x31,0x2c,0x30,0x2d,0x31, + 0x35,0x2e,0x35,0x2c,0x36,0x2e,0x39,0x34,0x2d,0x31, + 0x35,0x2e,0x35,0x2c,0x31,0x35,0x2e,0x35,0x53,0x36, + 0x2e,0x39,0x33,0x39,0x2c,0x33,0x31,0x2c,0x31,0x35, + 0x2e,0x35,0x2c,0x33,0x31,0x43,0x32,0x34,0x2e,0x30, + 0x36,0x31,0x2c,0x33,0x31,0x2c,0x33,0x31,0x2c,0x32, + 0x34,0x2e,0x30,0x36,0x31,0x2c,0x33,0x31,0x2c,0x31, + 0x35,0x2e,0x35,0x30,0x31,0x0d,0x0a,0x09,0x09,0x09, + 0x53,0x32,0x34,0x2e,0x30,0x36,0x31,0x2c,0x30,0x2e, + 0x30,0x30,0x31,0x2c,0x31,0x35,0x2e,0x35,0x2c,0x30, + 0x2e,0x30,0x30,0x31,0x7a,0x20,0x4d,0x31,0x38,0x2e, + 0x34,0x33,0x34,0x2c,0x32,0x31,0x2e,0x38,0x39,0x35, + 0x6c,0x2d,0x32,0x2e,0x36,0x30,0x36,0x2d,0x34,0x2e, + 0x38,0x37,0x6c,0x2d,0x32,0x2e,0x36,0x30,0x37,0x2c, + 0x34,0x2e,0x38,0x37,0x68,0x2d,0x33,0x2e,0x31,0x36, + 0x33,0x6c,0x34,0x2e,0x31,0x30,0x39,0x2d,0x36,0x2e, + 0x38,0x30,0x39,0x6c,0x2d,0x34,0x2e,0x30,0x30,0x38, + 0x2d,0x36,0x2e,0x36,0x39,0x38,0x68,0x33,0x2e,0x31, + 0x33,0x36,0x6c,0x32,0x2e,0x34,0x39,0x36,0x2c,0x34, + 0x2e,0x37,0x38,0x37,0x0d,0x0a,0x09,0x09,0x09,0x6c, + 0x32,0x2e,0x35,0x33,0x32,0x2d,0x34,0x2e,0x37,0x38, + 0x37,0x68,0x33,0x2e,0x31,0x35,0x34,0x6c,0x2d,0x34, + 0x2e,0x30,0x30,0x38,0x2c,0x36,0x2e,0x36,0x39,0x38, + 0x6c,0x34,0x2e,0x32,0x34,0x2c,0x36,0x2e,0x38,0x30, + 0x39,0x48,0x31,0x38,0x2e,0x34,0x33,0x34,0x7a,0x22, + 0x2f,0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d, + 0x0a,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x2f,0x73, + 0x76,0x67,0x3e,0x0d,0x0a +}; diff --git a/data/converted/help_button_y_svg.cpp b/data/converted/help_button_y_svg.cpp new file mode 100644 index 000000000..d9deee170 --- /dev/null +++ b/data/converted/help_button_y_svg.cpp @@ -0,0 +1,84 @@ +//this file was auto-generated from "button_y.svg" by res2h + +#include "../Resources.h" + +const size_t help_button_y_svg_size = 762; +const unsigned char help_button_y_svg_data[762] = { + 0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20, + 0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22, + 0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a, + 0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62, + 0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61, + 0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33, + 0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e, + 0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72, + 0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30, + 0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20, + 0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f, + 0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20, + 0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f, + 0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20, + 0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45, + 0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44, + 0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64, + 0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22, + 0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45, + 0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a, + 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f, + 0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76, + 0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78, + 0x6c,0x69,0x6e,0x6b,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,0x78, + 0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30, + 0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78, + 0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68, + 0x3d,0x22,0x33,0x31,0x70,0x78,0x22,0x20,0x68,0x65, + 0x69,0x67,0x68,0x74,0x3d,0x22,0x33,0x31,0x2e,0x30, + 0x30,0x31,0x70,0x78,0x22,0x20,0x76,0x69,0x65,0x77, + 0x42,0x6f,0x78,0x3d,0x22,0x30,0x20,0x30,0x20,0x33, + 0x31,0x20,0x33,0x31,0x2e,0x30,0x30,0x31,0x22,0x20, + 0x65,0x6e,0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63, + 0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e, + 0x65,0x77,0x20,0x30,0x20,0x30,0x20,0x33,0x31,0x20, + 0x33,0x31,0x2e,0x30,0x30,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,0x22,0x70, + 0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,0x3e,0x0d, + 0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e, + 0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20, + 0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37, + 0x37,0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31, + 0x35,0x2e,0x35,0x2c,0x30,0x43,0x36,0x2e,0x39,0x33, + 0x39,0x2c,0x30,0x2c,0x30,0x2c,0x36,0x2e,0x39,0x34, + 0x2c,0x30,0x2c,0x31,0x35,0x2e,0x35,0x63,0x30,0x2c, + 0x38,0x2e,0x35,0x36,0x31,0x2c,0x36,0x2e,0x39,0x33, + 0x39,0x2c,0x31,0x35,0x2e,0x35,0x30,0x31,0x2c,0x31, + 0x35,0x2e,0x35,0x2c,0x31,0x35,0x2e,0x35,0x30,0x31, + 0x63,0x38,0x2e,0x35,0x36,0x2c,0x30,0x2c,0x31,0x35, + 0x2e,0x35,0x2d,0x36,0x2e,0x39,0x34,0x2c,0x31,0x35, + 0x2e,0x35,0x2d,0x31,0x35,0x2e,0x35,0x30,0x31,0x0d, + 0x0a,0x09,0x09,0x09,0x43,0x33,0x31,0x2c,0x36,0x2e, + 0x39,0x34,0x2c,0x32,0x34,0x2e,0x30,0x36,0x2c,0x30, + 0x2c,0x31,0x35,0x2e,0x35,0x2c,0x30,0x7a,0x20,0x4d, + 0x31,0x37,0x2e,0x30,0x37,0x31,0x2c,0x31,0x37,0x2e, + 0x31,0x34,0x35,0x76,0x34,0x2e,0x37,0x35,0x68,0x2d, + 0x32,0x2e,0x37,0x76,0x2d,0x34,0x2e,0x38,0x39,0x4c, + 0x39,0x2e,0x38,0x31,0x36,0x2c,0x38,0x2e,0x33,0x38, + 0x37,0x68,0x32,0x2e,0x39,0x36,0x39,0x6c,0x32,0x2e, + 0x39,0x35,0x2c,0x36,0x2e,0x32,0x32,0x35,0x68,0x30, + 0x2e,0x30,0x35,0x36,0x6c,0x32,0x2e,0x39,0x35,0x2d, + 0x36,0x2e,0x32,0x32,0x35,0x68,0x32,0x2e,0x39,0x36, + 0x39,0x4c,0x31,0x37,0x2e,0x30,0x37,0x31,0x2c,0x31, + 0x37,0x2e,0x31,0x34,0x35,0x7a,0x22,0x2f,0x3e,0x0d, + 0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x2f, + 0x67,0x3e,0x0d,0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e, + 0x0d,0x0a +}; diff --git a/data/converted/help_dpad_all_png.cpp b/data/converted/help_dpad_all_png.cpp deleted file mode 100644 index 73bd5cda5..000000000 --- a/data/converted/help_dpad_all_png.cpp +++ /dev/null @@ -1,1645 +0,0 @@ -//this file was auto-generated from "dpad_all.png" by res2h - -#include "../Resources.h" - -const size_t help_dpad_all_png_size = 16375; -const unsigned char help_dpad_all_png_data[16375] = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x25, - 0x00,0x00,0x00,0x25,0x08,0x06,0x00,0x00,0x00,0xc5, - 0x9e,0x20,0x03,0x00,0x00,0x00,0x09,0x70,0x48,0x59, - 0x73,0x00,0x00,0x0b,0x13,0x00,0x00,0x0b,0x13,0x01, - 0x00,0x9a,0x9c,0x18,0x00,0x00,0x3c,0xa0,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,0x41,0x64,0x6f,0x62,0x65,0x20,0x58, - 0x4d,0x50,0x20,0x43,0x6f,0x72,0x65,0x20,0x35,0x2e, - 0x35,0x2d,0x63,0x30,0x32,0x31,0x20,0x37,0x39,0x2e, - 0x31,0x35,0x34,0x39,0x31,0x31,0x2c,0x20,0x32,0x30, - 0x31,0x33,0x2f,0x31,0x30,0x2f,0x32,0x39,0x2d,0x31, - 0x31,0x3a,0x34,0x37,0x3a,0x31,0x36,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x22,0x3e,0x0a,0x20,0x20, - 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,0x20, - 0x20,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,0x20,0x20,0x20, - 0x20,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,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x73, - 0x74,0x52,0x65,0x66,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,0x52,0x65, - 0x66,0x23,0x22,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,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,0x20,0x20,0x20,0x20,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,0x20,0x20,0x20,0x20,0x20, - 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,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x70,0x68,0x6f,0x74, - 0x6f,0x73,0x68,0x6f,0x70,0x3d,0x22,0x68,0x74,0x74, - 0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f, - 0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x70,0x68,0x6f, - 0x74,0x6f,0x73,0x68,0x6f,0x70,0x2f,0x31,0x2e,0x30, - 0x2f,0x22,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,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,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x65,0x78,0x69,0x66, - 0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e, - 0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f, - 0x6d,0x2f,0x65,0x78,0x69,0x66,0x2f,0x31,0x2e,0x30, - 0x2f,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x3c,0x78,0x6d,0x70,0x4d,0x4d,0x3a, - 0x4f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x44,0x6f, - 0x63,0x75,0x6d,0x65,0x6e,0x74,0x49,0x44,0x3e,0x78, - 0x6d,0x70,0x2e,0x64,0x69,0x64,0x3a,0x46,0x30,0x31, - 0x35,0x37,0x37,0x33,0x42,0x31,0x31,0x32,0x30,0x36, - 0x38,0x31,0x31,0x38,0x30,0x38,0x33,0x43,0x37,0x45, - 0x33,0x31,0x45,0x41,0x35,0x41,0x37,0x35,0x33,0x3c, - 0x2f,0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x4f,0x72,0x69, - 0x67,0x69,0x6e,0x61,0x6c,0x44,0x6f,0x63,0x75,0x6d, - 0x65,0x6e,0x74,0x49,0x44,0x3e,0x0a,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78,0x6d,0x70, - 0x4d,0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e, - 0x74,0x49,0x44,0x3e,0x78,0x6d,0x70,0x2e,0x64,0x69, - 0x64,0x3a,0x30,0x30,0x37,0x39,0x36,0x32,0x32,0x35, - 0x39,0x44,0x38,0x44,0x31,0x31,0x45,0x33,0x41,0x39, - 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, - 0x32,0x45,0x45,0x33,0x3c,0x2f,0x78,0x6d,0x70,0x4d, - 0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, - 0x49,0x44,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x3c,0x78,0x6d,0x70,0x4d,0x4d,0x3a, - 0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44, - 0x3e,0x78,0x6d,0x70,0x2e,0x69,0x69,0x64,0x3a,0x39, - 0x65,0x66,0x63,0x65,0x36,0x35,0x34,0x2d,0x62,0x31, - 0x65,0x31,0x2d,0x31,0x31,0x34,0x39,0x2d,0x38,0x65, - 0x32,0x30,0x2d,0x30,0x33,0x62,0x34,0x31,0x30,0x39, - 0x65,0x66,0x64,0x35,0x37,0x3c,0x2f,0x78,0x6d,0x70, - 0x4d,0x4d,0x3a,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63, - 0x65,0x49,0x44,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x3c,0x78,0x6d,0x70,0x4d,0x4d, - 0x3a,0x44,0x65,0x72,0x69,0x76,0x65,0x64,0x46,0x72, - 0x6f,0x6d,0x20,0x72,0x64,0x66,0x3a,0x70,0x61,0x72, - 0x73,0x65,0x54,0x79,0x70,0x65,0x3d,0x22,0x52,0x65, - 0x73,0x6f,0x75,0x72,0x63,0x65,0x22,0x3e,0x0a,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x3c,0x73,0x74,0x52,0x65,0x66,0x3a,0x69,0x6e, - 0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44,0x3e,0x78, - 0x6d,0x70,0x2e,0x69,0x69,0x64,0x3a,0x46,0x30,0x31, - 0x35,0x37,0x37,0x33,0x42,0x31,0x31,0x32,0x30,0x36, - 0x38,0x31,0x31,0x38,0x30,0x38,0x33,0x43,0x37,0x45, - 0x33,0x31,0x45,0x41,0x35,0x41,0x37,0x35,0x33,0x3c, - 0x2f,0x73,0x74,0x52,0x65,0x66,0x3a,0x69,0x6e,0x73, - 0x74,0x61,0x6e,0x63,0x65,0x49,0x44,0x3e,0x0a,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x3c,0x73,0x74,0x52,0x65,0x66,0x3a,0x64,0x6f, - 0x63,0x75,0x6d,0x65,0x6e,0x74,0x49,0x44,0x3e,0x78, - 0x6d,0x70,0x2e,0x64,0x69,0x64,0x3a,0x46,0x30,0x31, - 0x35,0x37,0x37,0x33,0x42,0x31,0x31,0x32,0x30,0x36, - 0x38,0x31,0x31,0x38,0x30,0x38,0x33,0x43,0x37,0x45, - 0x33,0x31,0x45,0x41,0x35,0x41,0x37,0x35,0x33,0x3c, - 0x2f,0x73,0x74,0x52,0x65,0x66,0x3a,0x64,0x6f,0x63, - 0x75,0x6d,0x65,0x6e,0x74,0x49,0x44,0x3e,0x0a,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f, - 0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69, - 0x76,0x65,0x64,0x46,0x72,0x6f,0x6d,0x3e,0x0a,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78, - 0x6d,0x70,0x4d,0x4d,0x3a,0x48,0x69,0x73,0x74,0x6f, - 0x72,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x72,0x64,0x66, - 0x3a,0x53,0x65,0x71,0x3e,0x0a,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,0x20,0x72, - 0x64,0x66,0x3a,0x70,0x61,0x72,0x73,0x65,0x54,0x79, - 0x70,0x65,0x3d,0x22,0x52,0x65,0x73,0x6f,0x75,0x72, - 0x63,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a, - 0x61,0x63,0x74,0x69,0x6f,0x6e,0x3e,0x73,0x61,0x76, - 0x65,0x64,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a, - 0x61,0x63,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45, - 0x76,0x74,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63, - 0x65,0x49,0x44,0x3e,0x78,0x6d,0x70,0x2e,0x69,0x69, - 0x64,0x3a,0x39,0x31,0x62,0x61,0x65,0x38,0x36,0x63, - 0x2d,0x38,0x39,0x30,0x38,0x2d,0x34,0x36,0x34,0x37, - 0x2d,0x62,0x30,0x34,0x37,0x2d,0x63,0x37,0x39,0x35, - 0x30,0x63,0x34,0x63,0x62,0x35,0x39,0x64,0x3c,0x2f, - 0x73,0x74,0x45,0x76,0x74,0x3a,0x69,0x6e,0x73,0x74, - 0x61,0x6e,0x63,0x65,0x49,0x44,0x3e,0x0a,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45, - 0x76,0x74,0x3a,0x77,0x68,0x65,0x6e,0x3e,0x32,0x30, - 0x31,0x34,0x2d,0x30,0x33,0x2d,0x31,0x35,0x54,0x31, - 0x36,0x3a,0x32,0x35,0x3a,0x30,0x32,0x2d,0x30,0x35, - 0x3a,0x30,0x30,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74, - 0x3a,0x77,0x68,0x65,0x6e,0x3e,0x0a,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76, - 0x74,0x3a,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65, - 0x41,0x67,0x65,0x6e,0x74,0x3e,0x41,0x64,0x6f,0x62, - 0x65,0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f, - 0x70,0x20,0x43,0x43,0x20,0x28,0x57,0x69,0x6e,0x64, - 0x6f,0x77,0x73,0x29,0x3c,0x2f,0x73,0x74,0x45,0x76, - 0x74,0x3a,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65, - 0x41,0x67,0x65,0x6e,0x74,0x3e,0x0a,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76, - 0x74,0x3a,0x63,0x68,0x61,0x6e,0x67,0x65,0x64,0x3e, - 0x2f,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x63, - 0x68,0x61,0x6e,0x67,0x65,0x64,0x3e,0x0a,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c, - 0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x72, - 0x64,0x66,0x3a,0x6c,0x69,0x20,0x72,0x64,0x66,0x3a, - 0x70,0x61,0x72,0x73,0x65,0x54,0x79,0x70,0x65,0x3d, - 0x22,0x52,0x65,0x73,0x6f,0x75,0x72,0x63,0x65,0x22, - 0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x3c,0x73,0x74,0x45,0x76,0x74,0x3a,0x61,0x63,0x74, - 0x69,0x6f,0x6e,0x3e,0x73,0x61,0x76,0x65,0x64,0x3c, - 0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x61,0x63,0x74, - 0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a, - 0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44, - 0x3e,0x78,0x6d,0x70,0x2e,0x69,0x69,0x64,0x3a,0x39, - 0x65,0x66,0x63,0x65,0x36,0x35,0x34,0x2d,0x62,0x31, - 0x65,0x31,0x2d,0x31,0x31,0x34,0x39,0x2d,0x38,0x65, - 0x32,0x30,0x2d,0x30,0x33,0x62,0x34,0x31,0x30,0x39, - 0x65,0x66,0x64,0x35,0x37,0x3c,0x2f,0x73,0x74,0x45, - 0x76,0x74,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63, - 0x65,0x49,0x44,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a, - 0x77,0x68,0x65,0x6e,0x3e,0x32,0x30,0x31,0x34,0x2d, - 0x30,0x33,0x2d,0x31,0x35,0x54,0x31,0x36,0x3a,0x32, - 0x35,0x3a,0x34,0x37,0x2d,0x30,0x35,0x3a,0x30,0x30, - 0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x77,0x68, - 0x65,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a,0x73, - 0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x41,0x67,0x65, - 0x6e,0x74,0x3e,0x41,0x64,0x6f,0x62,0x65,0x20,0x50, - 0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x43, - 0x43,0x20,0x28,0x57,0x69,0x6e,0x64,0x6f,0x77,0x73, - 0x29,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x73, - 0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x41,0x67,0x65, - 0x6e,0x74,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a,0x63, - 0x68,0x61,0x6e,0x67,0x65,0x64,0x3e,0x2f,0x3c,0x2f, - 0x73,0x74,0x45,0x76,0x74,0x3a,0x63,0x68,0x61,0x6e, - 0x67,0x65,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,0x0a, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x53,0x65, - 0x71,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x3c,0x2f,0x78,0x6d,0x70,0x4d,0x4d,0x3a, - 0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x3e,0x0a,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78, - 0x6d,0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72, - 0x54,0x6f,0x6f,0x6c,0x3e,0x41,0x64,0x6f,0x62,0x65, - 0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70, - 0x20,0x43,0x43,0x20,0x28,0x57,0x69,0x6e,0x64,0x6f, - 0x77,0x73,0x29,0x3c,0x2f,0x78,0x6d,0x70,0x3a,0x43, - 0x72,0x65,0x61,0x74,0x6f,0x72,0x54,0x6f,0x6f,0x6c, - 0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x3c,0x78,0x6d,0x70,0x3a,0x43,0x72,0x65,0x61, - 0x74,0x65,0x44,0x61,0x74,0x65,0x3e,0x32,0x30,0x31, - 0x34,0x2d,0x30,0x33,0x2d,0x31,0x35,0x54,0x31,0x36, - 0x3a,0x31,0x36,0x3a,0x30,0x36,0x2d,0x30,0x35,0x3a, - 0x30,0x30,0x3c,0x2f,0x78,0x6d,0x70,0x3a,0x43,0x72, - 0x65,0x61,0x74,0x65,0x44,0x61,0x74,0x65,0x3e,0x0a, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c, - 0x78,0x6d,0x70,0x3a,0x4d,0x6f,0x64,0x69,0x66,0x79, - 0x44,0x61,0x74,0x65,0x3e,0x32,0x30,0x31,0x34,0x2d, - 0x30,0x33,0x2d,0x31,0x35,0x54,0x31,0x36,0x3a,0x32, - 0x35,0x3a,0x34,0x37,0x2d,0x30,0x35,0x3a,0x30,0x30, - 0x3c,0x2f,0x78,0x6d,0x70,0x3a,0x4d,0x6f,0x64,0x69, - 0x66,0x79,0x44,0x61,0x74,0x65,0x3e,0x0a,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78,0x6d, - 0x70,0x3a,0x4d,0x65,0x74,0x61,0x64,0x61,0x74,0x61, - 0x44,0x61,0x74,0x65,0x3e,0x32,0x30,0x31,0x34,0x2d, - 0x30,0x33,0x2d,0x31,0x35,0x54,0x31,0x36,0x3a,0x32, - 0x35,0x3a,0x34,0x37,0x2d,0x30,0x35,0x3a,0x30,0x30, - 0x3c,0x2f,0x78,0x6d,0x70,0x3a,0x4d,0x65,0x74,0x61, - 0x64,0x61,0x74,0x61,0x44,0x61,0x74,0x65,0x3e,0x0a, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c, - 0x64,0x63,0x3a,0x66,0x6f,0x72,0x6d,0x61,0x74,0x3e, - 0x69,0x6d,0x61,0x67,0x65,0x2f,0x70,0x6e,0x67,0x3c, - 0x2f,0x64,0x63,0x3a,0x66,0x6f,0x72,0x6d,0x61,0x74, - 0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x3c,0x70,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f, - 0x70,0x3a,0x43,0x6f,0x6c,0x6f,0x72,0x4d,0x6f,0x64, - 0x65,0x3e,0x33,0x3c,0x2f,0x70,0x68,0x6f,0x74,0x6f, - 0x73,0x68,0x6f,0x70,0x3a,0x43,0x6f,0x6c,0x6f,0x72, - 0x4d,0x6f,0x64,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x3c,0x70,0x68,0x6f,0x74, - 0x6f,0x73,0x68,0x6f,0x70,0x3a,0x44,0x6f,0x63,0x75, - 0x6d,0x65,0x6e,0x74,0x41,0x6e,0x63,0x65,0x73,0x74, - 0x6f,0x72,0x73,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x72,0x64, - 0x66,0x3a,0x42,0x61,0x67,0x3e,0x0a,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e, - 0x78,0x6d,0x70,0x2e,0x64,0x69,0x64,0x3a,0x30,0x30, - 0x37,0x39,0x36,0x32,0x32,0x31,0x39,0x44,0x38,0x44, - 0x31,0x31,0x45,0x33,0x41,0x39,0x31,0x44,0x42,0x44, - 0x46,0x44,0x34,0x30,0x39,0x39,0x32,0x45,0x45,0x33, - 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,0x0a, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a, - 0x6c,0x69,0x3e,0x78,0x6d,0x70,0x2e,0x64,0x69,0x64, - 0x3a,0x46,0x43,0x44,0x39,0x31,0x31,0x37,0x41,0x39, - 0x44,0x38,0x41,0x31,0x31,0x45,0x33,0x41,0x39,0x31, - 0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39,0x32, - 0x45,0x45,0x33,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c, - 0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x72, - 0x64,0x66,0x3a,0x6c,0x69,0x3e,0x78,0x6d,0x70,0x2e, - 0x64,0x69,0x64,0x3a,0x46,0x43,0x44,0x39,0x31,0x31, - 0x37,0x45,0x39,0x44,0x38,0x41,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x3c,0x2f,0x72,0x64, - 0x66,0x3a,0x6c,0x69,0x3e,0x0a,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f, - 0x72,0x64,0x66,0x3a,0x42,0x61,0x67,0x3e,0x0a,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f, - 0x70,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x3a, - 0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x41,0x6e, - 0x63,0x65,0x73,0x74,0x6f,0x72,0x73,0x3e,0x0a,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74, - 0x69,0x66,0x66,0x3a,0x4f,0x72,0x69,0x65,0x6e,0x74, - 0x61,0x74,0x69,0x6f,0x6e,0x3e,0x31,0x3c,0x2f,0x74, - 0x69,0x66,0x66,0x3a,0x4f,0x72,0x69,0x65,0x6e,0x74, - 0x61,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x69,0x66, - 0x66,0x3a,0x58,0x52,0x65,0x73,0x6f,0x6c,0x75,0x74, - 0x69,0x6f,0x6e,0x3e,0x37,0x32,0x30,0x30,0x30,0x30, - 0x2f,0x31,0x30,0x30,0x30,0x30,0x3c,0x2f,0x74,0x69, - 0x66,0x66,0x3a,0x58,0x52,0x65,0x73,0x6f,0x6c,0x75, - 0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x69,0x66,0x66, - 0x3a,0x59,0x52,0x65,0x73,0x6f,0x6c,0x75,0x74,0x69, - 0x6f,0x6e,0x3e,0x37,0x32,0x30,0x30,0x30,0x30,0x2f, - 0x31,0x30,0x30,0x30,0x30,0x3c,0x2f,0x74,0x69,0x66, - 0x66,0x3a,0x59,0x52,0x65,0x73,0x6f,0x6c,0x75,0x74, - 0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x3c,0x74,0x69,0x66,0x66,0x3a, - 0x52,0x65,0x73,0x6f,0x6c,0x75,0x74,0x69,0x6f,0x6e, - 0x55,0x6e,0x69,0x74,0x3e,0x32,0x3c,0x2f,0x74,0x69, - 0x66,0x66,0x3a,0x52,0x65,0x73,0x6f,0x6c,0x75,0x74, - 0x69,0x6f,0x6e,0x55,0x6e,0x69,0x74,0x3e,0x0a,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x65, - 0x78,0x69,0x66,0x3a,0x43,0x6f,0x6c,0x6f,0x72,0x53, - 0x70,0x61,0x63,0x65,0x3e,0x36,0x35,0x35,0x33,0x35, - 0x3c,0x2f,0x65,0x78,0x69,0x66,0x3a,0x43,0x6f,0x6c, - 0x6f,0x72,0x53,0x70,0x61,0x63,0x65,0x3e,0x0a,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x65, - 0x78,0x69,0x66,0x3a,0x50,0x69,0x78,0x65,0x6c,0x58, - 0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x3e, - 0x33,0x37,0x3c,0x2f,0x65,0x78,0x69,0x66,0x3a,0x50, - 0x69,0x78,0x65,0x6c,0x58,0x44,0x69,0x6d,0x65,0x6e, - 0x73,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x3c,0x65,0x78,0x69,0x66, - 0x3a,0x50,0x69,0x78,0x65,0x6c,0x59,0x44,0x69,0x6d, - 0x65,0x6e,0x73,0x69,0x6f,0x6e,0x3e,0x33,0x37,0x3c, - 0x2f,0x65,0x78,0x69,0x66,0x3a,0x50,0x69,0x78,0x65, - 0x6c,0x59,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f, - 0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x3c, - 0x2f,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72, - 0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20, - 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,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,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,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,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,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,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,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,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,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,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,0x0a,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b, - 0x65,0x74,0x20,0x65,0x6e,0x64,0x3d,0x22,0x77,0x22, - 0x3f,0x3e,0x4d,0x56,0x3b,0x28,0x00,0x00,0x00,0x20, - 0x63,0x48,0x52,0x4d,0x00,0x00,0x7a,0x25,0x00,0x00, - 0x80,0x83,0x00,0x00,0xf9,0xff,0x00,0x00,0x80,0xe9, - 0x00,0x00,0x75,0x30,0x00,0x00,0xea,0x60,0x00,0x00, - 0x3a,0x98,0x00,0x00,0x17,0x6f,0x92,0x5f,0xc5,0x46, - 0x00,0x00,0x02,0xd1,0x49,0x44,0x41,0x54,0x78,0xda, - 0xdc,0x98,0xcf,0x4b,0x54,0x51,0x14,0xc7,0x3f,0x33, - 0xf3,0x82,0xa9,0x54,0x34,0xa4,0xe9,0x07,0xfd,0x5e, - 0x48,0x51,0x20,0x2d,0xa2,0x7f,0x60,0x2a,0x32,0x2b, - 0x21,0x71,0x11,0x28,0x54,0x44,0x9b,0x0a,0x5a,0x24, - 0xf5,0x0f,0x04,0xed,0xb2,0x45,0x54,0x14,0x84,0x2d, - 0x8a,0x8a,0x04,0x4d,0xfc,0xd1,0xa2,0x65,0xcb,0x36, - 0x11,0x46,0x3f,0xb0,0x1f,0xe8,0x14,0x46,0xe8,0x98, - 0x81,0x33,0xda,0xe6,0x2b,0x3c,0x2e,0xef,0xc7,0xbd, - 0x4e,0xe3,0x44,0x5f,0x18,0xce,0xbb,0xe7,0x9d,0x77, - 0xee,0xf7,0x9d,0x77,0xef,0xb9,0xe7,0x4c,0xa2,0xb3, - 0xb3,0x13,0x47,0xec,0x03,0xfa,0x80,0x65,0x16,0xb6, - 0x45,0xa0,0x05,0xe8,0x75,0x99,0xc0,0xc3,0x1d,0x03, - 0x40,0x02,0x98,0x01,0xf2,0x11,0x76,0x2b,0x81,0x15, - 0x40,0x0f,0x90,0x2a,0x27,0xa9,0x63,0x22,0x94,0x03, - 0xd6,0x58,0xd8,0xff,0x00,0xea,0x80,0x2c,0x30,0x6c, - 0x3b,0x49,0xd2,0x91,0xd4,0x1e,0xc9,0x11,0x43,0x7f, - 0x0f,0x98,0x07,0xee,0x1b,0xfa,0x2f,0x92,0x59,0x97, - 0x49,0x92,0x2c,0x0e,0xf3,0xbe,0xeb,0x5a,0xa0,0x5d, - 0xd7,0xc7,0x35,0x2e,0x09,0x49,0x4a,0xc7,0x1b,0x63, - 0x3c,0x52,0x69,0x52,0x1d,0x01,0x6b,0x6b,0x35,0x70, - 0xa2,0x92,0xa4,0xee,0x84,0xe8,0x6f,0x55,0x92,0x54, - 0xca,0x51,0x5f,0xb6,0x3c,0xe5,0x47,0x82,0x32,0x20, - 0xc9,0x3f,0x08,0x7f,0xa4,0x9a,0x81,0x83,0x31,0xf6, - 0x7b,0x17,0x39,0x4f,0x16,0xb8,0x11,0x63,0x33,0xa8, - 0xec,0x8f,0x27,0x22,0xbd,0x8e,0x51,0xfb,0x60,0x69, - 0xf7,0x1e,0xd8,0x05,0x34,0xea,0x17,0x85,0x33,0xca, - 0x7f,0x07,0x3c,0x1f,0xa1,0x09,0x60,0xd4,0x62,0xa2, - 0x77,0x0e,0x5b,0xbe,0x05,0x78,0x04,0x6c,0xb5,0xb0, - 0x5d,0xa7,0xf4,0xd2,0xe7,0x89,0xd0,0x34,0x50,0x1f, - 0x60,0x58,0x0f,0x5c,0x00,0x2e,0xc7,0x38,0xcc,0x00, - 0x6d,0xc0,0x43,0x9d,0x8b,0x7e,0xb4,0x1a,0xe3,0x34, - 0xf0,0x3b,0xc4,0xcf,0x0c,0x90,0x4e,0xfa,0x06,0x26, - 0x6e,0x03,0xdf,0x81,0x4b,0xc0,0xd1,0x10,0x27,0x55, - 0xc0,0x24,0x30,0x0e,0x5c,0x93,0x9c,0x94,0x9e,0x88, - 0x89,0x8b,0xc0,0xd9,0x80,0x7b,0xf9,0xb0,0xdd,0xb7, - 0x43,0x91,0x3b,0x65,0x44,0x2c,0x08,0x63,0x40,0x35, - 0x50,0xd0,0x3a,0x2b,0x68,0x3c,0x66,0xb1,0xeb,0xbb, - 0xf4,0xd2,0x99,0xb8,0x94,0x30,0x08,0xbc,0x56,0x1d, - 0x14,0x87,0x4d,0x8a,0x48,0x41,0x05,0xdf,0x36,0xc9, - 0x82,0xf4,0xeb,0x2d,0x7c,0xd4,0x2b,0xba,0x0f,0xc2, - 0x48,0xd5,0xaa,0xaa,0xb4,0x45,0x93,0xe4,0x27,0x43, - 0xff,0x59,0xf2,0x90,0x83,0xaf,0xb6,0x30,0x52,0x3f, - 0x81,0x7e,0x07,0x47,0xcf,0x24,0x37,0x1a,0xfa,0x0d, - 0x92,0x7d,0x0e,0xbe,0x1e,0x47,0x7d,0xbe,0x26,0xa0, - 0x01,0xf8,0x65,0xe1,0x68,0x54,0x0b,0xd3,0x03,0x66, - 0x81,0x8f,0x92,0x9e,0xf4,0x5f,0x2d,0x7c,0x4c,0x28, - 0x0d,0xb4,0xc6,0x1d,0x33,0x6f,0x55,0x5f,0xdf,0xf4, - 0xe9,0x72,0x21,0x4e,0xd7,0x02,0x53,0x22,0xb2,0x59, - 0x72,0x4a,0xfa,0x28,0xcc,0x01,0xe7,0xb5,0xa6,0x72, - 0x61,0x0b,0xbd,0x2a,0x24,0xc3,0xd6,0x01,0x57,0x22, - 0xba,0x91,0x3c,0x50,0xa3,0xb7,0x3d,0x27,0x59,0x13, - 0xd3,0x50,0x54,0xab,0x8a,0xe8,0x0a,0xb8,0xb7,0x1c, - 0x5f,0xe8,0xd3,0xda,0x05,0x61,0x21,0xdf,0x6f,0x1c, - 0x31,0x66,0x42,0xcc,0x01,0xd7,0x43,0x9e,0x7d,0xa2, - 0x28,0xc6,0x61,0x8b,0xbe,0x50,0xd1,0xd3,0x2e,0x19, - 0x50,0xbe,0xc8,0x58,0x3c,0xbc,0x5b,0x8d,0x42,0x87, - 0x85,0x6d,0x0f,0x70,0xc4,0x61,0xc1,0xcf,0x01,0x87, - 0x3d,0x60,0x48,0x9f,0xb1,0x59,0x11,0x49,0xc5,0x54, - 0x09,0x8d,0xca,0x51,0x36,0x58,0x38,0xf3,0x5e,0x01, - 0x2f,0x63,0x9a,0xd6,0xfe,0x85,0xdd,0xef,0x2f,0x5d, - 0x7a,0x2d,0x3a,0xd9,0xab,0x16,0xa7,0x7d,0x10,0x86, - 0x81,0x8b,0xff,0x4d,0x91,0x57,0x6a,0xff,0xf7,0xd7, - 0x4a,0xe5,0x52,0x23,0x55,0x74,0xd4,0x2f,0x09,0xa9, - 0xd3,0x21,0xfa,0x93,0x95,0x24,0x75,0x17,0xf8,0x66, - 0xe8,0xc6,0x95,0x32,0x2a,0xda,0xcd,0x34,0x18,0xe3, - 0xed,0x95,0x6a,0xb1,0x12,0x46,0x75,0xd1,0xad,0xeb, - 0x6e,0x8d,0x97,0x94,0xd4,0x73,0xc9,0x9d,0x86,0xbe, - 0x5d,0x44,0xdb,0x0d,0xfd,0xc2,0xff,0x0c,0x2f,0xca, - 0x99,0x12,0x86,0x74,0x14,0xac,0x52,0xc9,0x3c,0x1d, - 0x73,0xf0,0xa6,0x95,0x36,0xfa,0xcb,0x49,0x0a,0x35, - 0x11,0x4f,0x55,0x32,0xc7,0x95,0xcd,0xb3,0xbe,0x0a, - 0xd5,0x1a,0x7f,0x06,0x00,0xcc,0x4c,0x89,0x42,0x23, - 0x86,0xe8,0x9d,0x00,0x00,0x00,0x00,0x49,0x45,0x4e, - 0x44,0xae,0x42,0x60,0x82 -}; diff --git a/data/converted/help_dpad_all_svg.cpp b/data/converted/help_dpad_all_svg.cpp new file mode 100644 index 000000000..641dcaa04 --- /dev/null +++ b/data/converted/help_dpad_all_svg.cpp @@ -0,0 +1,353 @@ +//this file was auto-generated from "dpad_all.svg" by res2h + +#include "../Resources.h" + +const size_t help_dpad_all_svg_size = 3453; +const unsigned char help_dpad_all_svg_data[3453] = { + 0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20, + 0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22, + 0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a, + 0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62, + 0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61, + 0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33, + 0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e, + 0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72, + 0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30, + 0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20, + 0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f, + 0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20, + 0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f, + 0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20, + 0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45, + 0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44, + 0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64, + 0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22, + 0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45, + 0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a, + 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f, + 0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76, + 0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78, + 0x6c,0x69,0x6e,0x6b,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,0x78, + 0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30, + 0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78, + 0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68, + 0x3d,0x22,0x33,0x37,0x2e,0x31,0x33,0x34,0x70,0x78, + 0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22, + 0x33,0x37,0x2e,0x31,0x33,0x34,0x70,0x78,0x22,0x20, + 0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30, + 0x20,0x30,0x20,0x33,0x37,0x2e,0x31,0x33,0x34,0x20, + 0x33,0x37,0x2e,0x31,0x33,0x34,0x22,0x20,0x65,0x6e, + 0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67, + 0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77, + 0x20,0x30,0x20,0x30,0x20,0x33,0x37,0x2e,0x31,0x33, + 0x34,0x20,0x33,0x37,0x2e,0x31,0x33,0x34,0x22,0x20, + 0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d, + 0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22, + 0x3e,0x0d,0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c, + 0x67,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x67,0x3e,0x0d, + 0x0a,0x09,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20, + 0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37, + 0x37,0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32, + 0x32,0x2e,0x31,0x32,0x33,0x2c,0x33,0x37,0x2e,0x30, + 0x39,0x37,0x68,0x2d,0x37,0x2e,0x31,0x31,0x31,0x63, + 0x2d,0x32,0x2e,0x32,0x38,0x39,0x2c,0x30,0x2d,0x33, + 0x2e,0x31,0x31,0x39,0x2d,0x31,0x2e,0x38,0x36,0x36, + 0x2d,0x33,0x2e,0x31,0x31,0x39,0x2d,0x33,0x2e,0x31, + 0x32,0x31,0x76,0x2d,0x38,0x2e,0x37,0x33,0x31,0x48, + 0x33,0x2e,0x31,0x35,0x38,0x63,0x2d,0x32,0x2e,0x32, + 0x39,0x2c,0x30,0x2d,0x33,0x2e,0x31,0x32,0x31,0x2d, + 0x31,0x2e,0x38,0x36,0x36,0x2d,0x33,0x2e,0x31,0x32, + 0x31,0x2d,0x33,0x2e,0x31,0x32,0x31,0x0d,0x0a,0x09, + 0x09,0x09,0x09,0x76,0x2d,0x37,0x2e,0x31,0x31,0x32, + 0x63,0x30,0x2d,0x32,0x2e,0x32,0x38,0x39,0x2c,0x31, + 0x2e,0x38,0x36,0x37,0x2d,0x33,0x2e,0x31,0x32,0x2c, + 0x33,0x2e,0x31,0x32,0x31,0x2d,0x33,0x2e,0x31,0x32, + 0x68,0x38,0x2e,0x37,0x33,0x34,0x56,0x33,0x2e,0x31, + 0x35,0x39,0x63,0x30,0x2d,0x32,0x2e,0x32,0x39,0x2c, + 0x31,0x2e,0x38,0x36,0x35,0x2d,0x33,0x2e,0x31,0x32, + 0x31,0x2c,0x33,0x2e,0x31,0x31,0x39,0x2d,0x33,0x2e, + 0x31,0x32,0x31,0x68,0x37,0x2e,0x31,0x31,0x31,0x63, + 0x32,0x2e,0x32,0x39,0x2c,0x30,0x2c,0x33,0x2e,0x31, + 0x32,0x31,0x2c,0x31,0x2e,0x38,0x36,0x37,0x2c,0x33, + 0x2e,0x31,0x32,0x31,0x2c,0x33,0x2e,0x31,0x32,0x31, + 0x76,0x38,0x2e,0x37,0x33,0x32,0x0d,0x0a,0x09,0x09, + 0x09,0x09,0x68,0x38,0x2e,0x37,0x33,0x32,0x63,0x32, + 0x2e,0x32,0x39,0x2c,0x30,0x2c,0x33,0x2e,0x31,0x32, + 0x31,0x2c,0x31,0x2e,0x38,0x36,0x36,0x2c,0x33,0x2e, + 0x31,0x32,0x31,0x2c,0x33,0x2e,0x31,0x32,0x76,0x37, + 0x2e,0x31,0x31,0x32,0x63,0x30,0x2c,0x32,0x2e,0x32, + 0x39,0x2d,0x31,0x2e,0x38,0x36,0x36,0x2c,0x33,0x2e, + 0x31,0x32,0x31,0x2d,0x33,0x2e,0x31,0x32,0x31,0x2c, + 0x33,0x2e,0x31,0x32,0x31,0x68,0x2d,0x38,0x2e,0x37, + 0x33,0x32,0x76,0x38,0x2e,0x37,0x33,0x31,0x0d,0x0a, + 0x09,0x09,0x09,0x09,0x43,0x32,0x35,0x2e,0x32,0x34, + 0x34,0x2c,0x33,0x36,0x2e,0x32,0x36,0x36,0x2c,0x32, + 0x33,0x2e,0x33,0x37,0x37,0x2c,0x33,0x37,0x2e,0x30, + 0x39,0x37,0x2c,0x32,0x32,0x2e,0x31,0x32,0x33,0x2c, + 0x33,0x37,0x2e,0x30,0x39,0x37,0x7a,0x20,0x4d,0x33, + 0x2e,0x31,0x35,0x38,0x2c,0x31,0x33,0x2e,0x33,0x39, + 0x31,0x63,0x2d,0x30,0x2e,0x33,0x37,0x36,0x2c,0x30, + 0x2e,0x30,0x30,0x36,0x2d,0x31,0x2e,0x36,0x32,0x31, + 0x2c,0x30,0x2e,0x31,0x33,0x39,0x2d,0x31,0x2e,0x36, + 0x32,0x31,0x2c,0x31,0x2e,0x36,0x32,0x76,0x37,0x2e, + 0x31,0x31,0x32,0x0d,0x0a,0x09,0x09,0x09,0x09,0x63, + 0x30,0x2e,0x30,0x30,0x36,0x2c,0x30,0x2e,0x33,0x37, + 0x36,0x2c,0x30,0x2e,0x31,0x33,0x39,0x2c,0x31,0x2e, + 0x36,0x32,0x31,0x2c,0x31,0x2e,0x36,0x32,0x31,0x2c, + 0x31,0x2e,0x36,0x32,0x31,0x68,0x31,0x30,0x2e,0x32, + 0x33,0x34,0x76,0x31,0x30,0x2e,0x32,0x33,0x31,0x63, + 0x30,0x2e,0x30,0x30,0x35,0x2c,0x30,0x2e,0x33,0x37, + 0x36,0x2c,0x30,0x2e,0x31,0x33,0x39,0x2c,0x31,0x2e, + 0x36,0x32,0x31,0x2c,0x31,0x2e,0x36,0x31,0x39,0x2c, + 0x31,0x2e,0x36,0x32,0x31,0x68,0x37,0x2e,0x31,0x30, + 0x38,0x0d,0x0a,0x09,0x09,0x09,0x09,0x63,0x30,0x2e, + 0x33,0x38,0x34,0x2d,0x30,0x2e,0x30,0x30,0x36,0x2c, + 0x31,0x2e,0x36,0x32,0x34,0x2d,0x30,0x2e,0x31,0x34, + 0x32,0x2c,0x31,0x2e,0x36,0x32,0x34,0x2d,0x31,0x2e, + 0x36,0x32,0x31,0x56,0x32,0x33,0x2e,0x37,0x34,0x35, + 0x68,0x31,0x30,0x2e,0x32,0x33,0x32,0x63,0x30,0x2e, + 0x33,0x37,0x36,0x2d,0x30,0x2e,0x30,0x30,0x36,0x2c, + 0x31,0x2e,0x36,0x32,0x31,0x2d,0x30,0x2e,0x31,0x34, + 0x2c,0x31,0x2e,0x36,0x32,0x31,0x2d,0x31,0x2e,0x36, + 0x32,0x31,0x76,0x2d,0x37,0x2e,0x31,0x31,0x32,0x0d, + 0x0a,0x09,0x09,0x09,0x09,0x63,0x2d,0x30,0x2e,0x30, + 0x30,0x36,0x2d,0x30,0x2e,0x33,0x37,0x36,0x2d,0x30, + 0x2e,0x31,0x34,0x2d,0x31,0x2e,0x36,0x32,0x2d,0x31, + 0x2e,0x36,0x32,0x31,0x2d,0x31,0x2e,0x36,0x32,0x48, + 0x32,0x33,0x2e,0x37,0x34,0x34,0x56,0x33,0x2e,0x31, + 0x35,0x39,0x63,0x2d,0x30,0x2e,0x30,0x30,0x36,0x2d, + 0x30,0x2e,0x33,0x37,0x36,0x2d,0x30,0x2e,0x31,0x34, + 0x2d,0x31,0x2e,0x36,0x32,0x31,0x2d,0x31,0x2e,0x36, + 0x32,0x31,0x2d,0x31,0x2e,0x36,0x32,0x31,0x68,0x2d, + 0x37,0x2e,0x31,0x31,0x31,0x0d,0x0a,0x09,0x09,0x09, + 0x09,0x63,0x2d,0x30,0x2e,0x33,0x37,0x36,0x2c,0x30, + 0x2e,0x30,0x30,0x36,0x2d,0x31,0x2e,0x36,0x31,0x39, + 0x2c,0x30,0x2e,0x31,0x33,0x39,0x2d,0x31,0x2e,0x36, + 0x31,0x39,0x2c,0x31,0x2e,0x36,0x32,0x31,0x76,0x31, + 0x30,0x2e,0x32,0x33,0x32,0x48,0x33,0x2e,0x31,0x35, + 0x38,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x09,0x3c, + 0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e, + 0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x09, + 0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c, + 0x3d,0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22, + 0x20,0x64,0x3d,0x22,0x4d,0x31,0x38,0x2e,0x35,0x36, + 0x38,0x2c,0x32,0x32,0x2e,0x32,0x31,0x38,0x63,0x2d, + 0x32,0x2e,0x30,0x31,0x33,0x2c,0x30,0x2d,0x33,0x2e, + 0x36,0x35,0x2d,0x31,0x2e,0x36,0x33,0x38,0x2d,0x33, + 0x2e,0x36,0x35,0x2d,0x33,0x2e,0x36,0x35,0x31,0x63, + 0x30,0x2d,0x32,0x2e,0x30,0x31,0x33,0x2c,0x31,0x2e, + 0x36,0x33,0x38,0x2d,0x33,0x2e,0x36,0x35,0x2c,0x33, + 0x2e,0x36,0x35,0x2d,0x33,0x2e,0x36,0x35,0x73,0x33, + 0x2e,0x36,0x35,0x2c,0x31,0x2e,0x36,0x33,0x38,0x2c, + 0x33,0x2e,0x36,0x35,0x2c,0x33,0x2e,0x36,0x35,0x0d, + 0x0a,0x09,0x09,0x09,0x43,0x32,0x32,0x2e,0x32,0x31, + 0x38,0x2c,0x32,0x30,0x2e,0x35,0x38,0x31,0x2c,0x32, + 0x30,0x2e,0x35,0x38,0x31,0x2c,0x32,0x32,0x2e,0x32, + 0x31,0x38,0x2c,0x31,0x38,0x2e,0x35,0x36,0x38,0x2c, + 0x32,0x32,0x2e,0x32,0x31,0x38,0x7a,0x20,0x4d,0x31, + 0x38,0x2e,0x35,0x36,0x38,0x2c,0x31,0x36,0x2e,0x34, + 0x31,0x37,0x63,0x2d,0x31,0x2e,0x31,0x38,0x36,0x2c, + 0x30,0x2d,0x32,0x2e,0x31,0x35,0x2c,0x30,0x2e,0x39, + 0x36,0x35,0x2d,0x32,0x2e,0x31,0x35,0x2c,0x32,0x2e, + 0x31,0x35,0x63,0x30,0x2c,0x31,0x2e,0x31,0x38,0x36, + 0x2c,0x30,0x2e,0x39,0x36,0x35,0x2c,0x32,0x2e,0x31, + 0x35,0x31,0x2c,0x32,0x2e,0x31,0x35,0x2c,0x32,0x2e, + 0x31,0x35,0x31,0x0d,0x0a,0x09,0x09,0x09,0x73,0x32, + 0x2e,0x31,0x35,0x2d,0x30,0x2e,0x39,0x36,0x35,0x2c, + 0x32,0x2e,0x31,0x35,0x2d,0x32,0x2e,0x31,0x35,0x31, + 0x43,0x32,0x30,0x2e,0x37,0x31,0x38,0x2c,0x31,0x37, + 0x2e,0x33,0x38,0x31,0x2c,0x31,0x39,0x2e,0x37,0x35, + 0x33,0x2c,0x31,0x36,0x2e,0x34,0x31,0x37,0x2c,0x31, + 0x38,0x2e,0x35,0x36,0x38,0x2c,0x31,0x36,0x2e,0x34, + 0x31,0x37,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c, + 0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d, + 0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66, + 0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37, + 0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,0x38, + 0x2e,0x35,0x36,0x37,0x2c,0x33,0x2e,0x32,0x32,0x6c, + 0x2d,0x33,0x2e,0x30,0x30,0x35,0x2c,0x34,0x2e,0x36, + 0x38,0x34,0x68,0x36,0x2e,0x30,0x31,0x31,0x4c,0x31, + 0x38,0x2e,0x35,0x36,0x37,0x2c,0x33,0x2e,0x32,0x32, + 0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70, + 0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22, + 0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20,0x64, + 0x3d,0x22,0x4d,0x32,0x31,0x2e,0x35,0x37,0x33,0x2c, + 0x38,0x2e,0x36,0x35,0x34,0x68,0x2d,0x36,0x2e,0x30, + 0x31,0x31,0x63,0x2d,0x30,0x2e,0x32,0x37,0x34,0x2c, + 0x30,0x2d,0x30,0x2e,0x35,0x32,0x36,0x2d,0x30,0x2e, + 0x31,0x35,0x2d,0x30,0x2e,0x36,0x35,0x38,0x2d,0x30, + 0x2e,0x33,0x39,0x63,0x2d,0x30,0x2e,0x31,0x33,0x31, + 0x2d,0x30,0x2e,0x32,0x34,0x31,0x2d,0x30,0x2e,0x31, + 0x32,0x31,0x2d,0x30,0x2e,0x35,0x33,0x34,0x2c,0x30, + 0x2e,0x30,0x32,0x37,0x2d,0x30,0x2e,0x37,0x36,0x35, + 0x6c,0x33,0x2e,0x30,0x30,0x35,0x2d,0x34,0x2e,0x36, + 0x38,0x34,0x0d,0x0a,0x09,0x09,0x09,0x63,0x30,0x2e, + 0x32,0x37,0x36,0x2d,0x30,0x2e,0x34,0x33,0x31,0x2c, + 0x30,0x2e,0x39,0x38,0x36,0x2d,0x30,0x2e,0x34,0x33, + 0x2c,0x31,0x2e,0x32,0x36,0x33,0x2c,0x30,0x6c,0x33, + 0x2e,0x30,0x30,0x35,0x2c,0x34,0x2e,0x36,0x38,0x34, + 0x63,0x30,0x2e,0x31,0x34,0x38,0x2c,0x30,0x2e,0x32, + 0x33,0x31,0x2c,0x30,0x2e,0x31,0x35,0x39,0x2c,0x30, + 0x2e,0x35,0x32,0x34,0x2c,0x30,0x2e,0x30,0x32,0x37, + 0x2c,0x30,0x2e,0x37,0x36,0x35,0x43,0x32,0x32,0x2e, + 0x30,0x39,0x39,0x2c,0x38,0x2e,0x35,0x30,0x34,0x2c, + 0x32,0x31,0x2e,0x38,0x34,0x37,0x2c,0x38,0x2e,0x36, + 0x35,0x34,0x2c,0x32,0x31,0x2e,0x35,0x37,0x33,0x2c, + 0x38,0x2e,0x36,0x35,0x34,0x7a,0x0d,0x0a,0x09,0x09, + 0x09,0x20,0x4d,0x31,0x36,0x2e,0x39,0x33,0x34,0x2c, + 0x37,0x2e,0x31,0x35,0x34,0x68,0x33,0x2e,0x32,0x36, + 0x37,0x6c,0x2d,0x31,0x2e,0x36,0x33,0x34,0x2d,0x32, + 0x2e,0x35,0x34,0x35,0x4c,0x31,0x36,0x2e,0x39,0x33, + 0x34,0x2c,0x37,0x2e,0x31,0x35,0x34,0x7a,0x22,0x2f, + 0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a, + 0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70, + 0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22, + 0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20,0x64, + 0x3d,0x22,0x4d,0x33,0x2e,0x31,0x36,0x32,0x2c,0x31, + 0x38,0x2e,0x35,0x36,0x38,0x6c,0x34,0x2e,0x36,0x38, + 0x34,0x2c,0x33,0x2e,0x30,0x30,0x35,0x76,0x2d,0x36, + 0x2e,0x30,0x31,0x31,0x4c,0x33,0x2e,0x31,0x36,0x32, + 0x2c,0x31,0x38,0x2e,0x35,0x36,0x38,0x7a,0x22,0x2f, + 0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68, + 0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37, + 0x37,0x37,0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d, + 0x37,0x2e,0x38,0x34,0x35,0x2c,0x32,0x32,0x2e,0x33, + 0x32,0x33,0x63,0x2d,0x30,0x2e,0x31,0x34,0x31,0x2c, + 0x30,0x2d,0x30,0x2e,0x32,0x38,0x32,0x2d,0x30,0x2e, + 0x30,0x34,0x2d,0x30,0x2e,0x34,0x30,0x35,0x2d,0x30, + 0x2e,0x31,0x31,0x39,0x6c,0x2d,0x34,0x2e,0x36,0x38, + 0x34,0x2d,0x33,0x2e,0x30,0x30,0x34,0x63,0x2d,0x30, + 0x2e,0x32,0x31,0x35,0x2d,0x30,0x2e,0x31,0x33,0x38, + 0x2d,0x30,0x2e,0x33,0x34,0x35,0x2d,0x30,0x2e,0x33, + 0x37,0x36,0x2d,0x30,0x2e,0x33,0x34,0x35,0x2d,0x30, + 0x2e,0x36,0x33,0x31,0x0d,0x0a,0x09,0x09,0x09,0x73, + 0x30,0x2e,0x31,0x33,0x2d,0x30,0x2e,0x34,0x39,0x33, + 0x2c,0x30,0x2e,0x33,0x34,0x35,0x2d,0x30,0x2e,0x36, + 0x33,0x31,0x6c,0x34,0x2e,0x36,0x38,0x34,0x2d,0x33, + 0x2e,0x30,0x30,0x36,0x63,0x30,0x2e,0x32,0x33,0x31, + 0x2d,0x30,0x2e,0x31,0x34,0x37,0x2c,0x30,0x2e,0x35, + 0x32,0x34,0x2d,0x30,0x2e,0x31,0x35,0x38,0x2c,0x30, + 0x2e,0x37,0x36,0x35,0x2d,0x30,0x2e,0x30,0x32,0x37, + 0x63,0x30,0x2e,0x32,0x34,0x2c,0x30,0x2e,0x31,0x33, + 0x31,0x2c,0x30,0x2e,0x33,0x39,0x2c,0x30,0x2e,0x33, + 0x38,0x34,0x2c,0x30,0x2e,0x33,0x39,0x2c,0x30,0x2e, + 0x36,0x35,0x38,0x76,0x36,0x2e,0x30,0x31,0x31,0x0d, + 0x0a,0x09,0x09,0x09,0x63,0x30,0x2c,0x30,0x2e,0x32, + 0x37,0x34,0x2d,0x30,0x2e,0x31,0x35,0x2c,0x30,0x2e, + 0x35,0x32,0x36,0x2d,0x30,0x2e,0x33,0x39,0x2c,0x30, + 0x2e,0x36,0x35,0x38,0x43,0x38,0x2e,0x30,0x39,0x33, + 0x2c,0x32,0x32,0x2e,0x32,0x39,0x32,0x2c,0x37,0x2e, + 0x39,0x36,0x39,0x2c,0x32,0x32,0x2e,0x33,0x32,0x33, + 0x2c,0x37,0x2e,0x38,0x34,0x35,0x2c,0x32,0x32,0x2e, + 0x33,0x32,0x33,0x7a,0x20,0x4d,0x34,0x2e,0x35,0x35, + 0x2c,0x31,0x38,0x2e,0x35,0x36,0x38,0x6c,0x32,0x2e, + 0x35,0x34,0x35,0x2c,0x31,0x2e,0x36,0x33,0x33,0x76, + 0x2d,0x33,0x2e,0x32,0x36,0x36,0x4c,0x34,0x2e,0x35, + 0x35,0x2c,0x31,0x38,0x2e,0x35,0x36,0x38,0x7a,0x22, + 0x2f,0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d, + 0x0a,0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x09,0x3c, + 0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d, + 0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20, + 0x64,0x3d,0x22,0x4d,0x33,0x33,0x2e,0x39,0x31,0x36, + 0x2c,0x31,0x38,0x2e,0x35,0x36,0x37,0x6c,0x2d,0x34, + 0x2e,0x36,0x38,0x34,0x2d,0x33,0x2e,0x30,0x30,0x35, + 0x76,0x36,0x2e,0x30,0x31,0x4c,0x33,0x33,0x2e,0x39, + 0x31,0x36,0x2c,0x31,0x38,0x2e,0x35,0x36,0x37,0x7a, + 0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61, + 0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23, + 0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20,0x64,0x3d, + 0x22,0x4d,0x32,0x39,0x2e,0x32,0x33,0x32,0x2c,0x32, + 0x32,0x2e,0x33,0x32,0x32,0x63,0x2d,0x30,0x2e,0x31, + 0x32,0x34,0x2c,0x30,0x2d,0x30,0x2e,0x32,0x34,0x37, + 0x2d,0x30,0x2e,0x30,0x33,0x2d,0x30,0x2e,0x33,0x35, + 0x39,0x2d,0x30,0x2e,0x30,0x39,0x32,0x63,0x2d,0x30, + 0x2e,0x32,0x34,0x31,0x2d,0x30,0x2e,0x31,0x33,0x32, + 0x2d,0x30,0x2e,0x33,0x39,0x31,0x2d,0x30,0x2e,0x33, + 0x38,0x34,0x2d,0x30,0x2e,0x33,0x39,0x31,0x2d,0x30, + 0x2e,0x36,0x35,0x38,0x76,0x2d,0x36,0x2e,0x30,0x31, + 0x0d,0x0a,0x09,0x09,0x09,0x63,0x30,0x2d,0x30,0x2e, + 0x32,0x37,0x34,0x2c,0x30,0x2e,0x31,0x34,0x39,0x2d, + 0x30,0x2e,0x35,0x32,0x36,0x2c,0x30,0x2e,0x33,0x39, + 0x31,0x2d,0x30,0x2e,0x36,0x35,0x38,0x63,0x30,0x2e, + 0x32,0x33,0x39,0x2d,0x30,0x2e,0x31,0x33,0x31,0x2c, + 0x30,0x2e,0x35,0x33,0x33,0x2d,0x30,0x2e,0x31,0x32, + 0x33,0x2c,0x30,0x2e,0x37,0x36,0x35,0x2c,0x30,0x2e, + 0x30,0x32,0x37,0x6c,0x34,0x2e,0x36,0x38,0x34,0x2c, + 0x33,0x2e,0x30,0x30,0x35,0x63,0x30,0x2e,0x32,0x31, + 0x35,0x2c,0x30,0x2e,0x31,0x33,0x38,0x2c,0x30,0x2e, + 0x33,0x34,0x35,0x2c,0x30,0x2e,0x33,0x37,0x36,0x2c, + 0x30,0x2e,0x33,0x34,0x35,0x2c,0x30,0x2e,0x36,0x33, + 0x31,0x0d,0x0a,0x09,0x09,0x09,0x73,0x2d,0x30,0x2e, + 0x31,0x33,0x2c,0x30,0x2e,0x34,0x39,0x33,0x2d,0x30, + 0x2e,0x33,0x34,0x35,0x2c,0x30,0x2e,0x36,0x33,0x31, + 0x6c,0x2d,0x34,0x2e,0x36,0x38,0x34,0x2c,0x33,0x2e, + 0x30,0x30,0x34,0x43,0x32,0x39,0x2e,0x35,0x31,0x34, + 0x2c,0x32,0x32,0x2e,0x32,0x38,0x32,0x2c,0x32,0x39, + 0x2e,0x33,0x37,0x33,0x2c,0x32,0x32,0x2e,0x33,0x32, + 0x32,0x2c,0x32,0x39,0x2e,0x32,0x33,0x32,0x2c,0x32, + 0x32,0x2e,0x33,0x32,0x32,0x7a,0x20,0x4d,0x32,0x39, + 0x2e,0x39,0x38,0x32,0x2c,0x31,0x36,0x2e,0x39,0x33, + 0x34,0x56,0x32,0x30,0x2e,0x32,0x6c,0x32,0x2e,0x35, + 0x34,0x35,0x2d,0x31,0x2e,0x36,0x33,0x33,0x0d,0x0a, + 0x09,0x09,0x09,0x4c,0x32,0x39,0x2e,0x39,0x38,0x32, + 0x2c,0x31,0x36,0x2e,0x39,0x33,0x34,0x7a,0x22,0x2f, + 0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a, + 0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70, + 0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22, + 0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20,0x64, + 0x3d,0x22,0x4d,0x31,0x38,0x2e,0x35,0x36,0x37,0x2c, + 0x33,0x33,0x2e,0x39,0x31,0x35,0x6c,0x33,0x2e,0x30, + 0x30,0x36,0x2d,0x34,0x2e,0x36,0x38,0x34,0x68,0x2d, + 0x36,0x2e,0x30,0x31,0x31,0x4c,0x31,0x38,0x2e,0x35, + 0x36,0x37,0x2c,0x33,0x33,0x2e,0x39,0x31,0x35,0x7a, + 0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61, + 0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23, + 0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20,0x64,0x3d, + 0x22,0x4d,0x31,0x38,0x2e,0x35,0x36,0x37,0x2c,0x33, + 0x34,0x2e,0x36,0x36,0x35,0x4c,0x31,0x38,0x2e,0x35, + 0x36,0x37,0x2c,0x33,0x34,0x2e,0x36,0x36,0x35,0x63, + 0x2d,0x30,0x2e,0x32,0x35,0x35,0x2c,0x30,0x2d,0x30, + 0x2e,0x34,0x39,0x33,0x2d,0x30,0x2e,0x31,0x33,0x2d, + 0x30,0x2e,0x36,0x33,0x31,0x2d,0x30,0x2e,0x33,0x34, + 0x35,0x6c,0x2d,0x33,0x2e,0x30,0x30,0x35,0x2d,0x34, + 0x2e,0x36,0x38,0x34,0x0d,0x0a,0x09,0x09,0x09,0x63, + 0x2d,0x30,0x2e,0x31,0x34,0x38,0x2d,0x30,0x2e,0x32, + 0x33,0x31,0x2d,0x30,0x2e,0x31,0x35,0x38,0x2d,0x30, + 0x2e,0x35,0x32,0x34,0x2d,0x30,0x2e,0x30,0x32,0x37, + 0x2d,0x30,0x2e,0x37,0x36,0x35,0x63,0x30,0x2e,0x31, + 0x33,0x32,0x2d,0x30,0x2e,0x32,0x34,0x31,0x2c,0x30, + 0x2e,0x33,0x38,0x34,0x2d,0x30,0x2e,0x33,0x39,0x31, + 0x2c,0x30,0x2e,0x36,0x35,0x38,0x2d,0x30,0x2e,0x33, + 0x39,0x31,0x68,0x36,0x2e,0x30,0x31,0x31,0x63,0x30, + 0x2e,0x32,0x37,0x34,0x2c,0x30,0x2c,0x30,0x2e,0x35, + 0x32,0x36,0x2c,0x30,0x2e,0x31,0x34,0x39,0x2c,0x30, + 0x2e,0x36,0x35,0x38,0x2c,0x30,0x2e,0x33,0x39,0x31, + 0x0d,0x0a,0x09,0x09,0x09,0x63,0x30,0x2e,0x31,0x33, + 0x32,0x2c,0x30,0x2e,0x32,0x34,0x2c,0x30,0x2e,0x31, + 0x32,0x31,0x2c,0x30,0x2e,0x35,0x33,0x33,0x2d,0x30, + 0x2e,0x30,0x32,0x37,0x2c,0x30,0x2e,0x37,0x36,0x35, + 0x6c,0x2d,0x33,0x2e,0x30,0x30,0x35,0x2c,0x34,0x2e, + 0x36,0x38,0x34,0x43,0x31,0x39,0x2e,0x30,0x36,0x2c, + 0x33,0x34,0x2e,0x35,0x33,0x35,0x2c,0x31,0x38,0x2e, + 0x38,0x32,0x32,0x2c,0x33,0x34,0x2e,0x36,0x36,0x35, + 0x2c,0x31,0x38,0x2e,0x35,0x36,0x37,0x2c,0x33,0x34, + 0x2e,0x36,0x36,0x35,0x7a,0x20,0x4d,0x31,0x36,0x2e, + 0x39,0x33,0x34,0x2c,0x32,0x39,0x2e,0x39,0x38,0x31, + 0x6c,0x31,0x2e,0x36,0x33,0x33,0x2c,0x32,0x2e,0x35, + 0x34,0x35,0x0d,0x0a,0x09,0x09,0x09,0x6c,0x31,0x2e, + 0x36,0x33,0x34,0x2d,0x32,0x2e,0x35,0x34,0x35,0x48, + 0x31,0x36,0x2e,0x39,0x33,0x34,0x7a,0x22,0x2f,0x3e, + 0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c, + 0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x2f,0x73,0x76,0x67, + 0x3e,0x0d,0x0a +}; diff --git a/data/converted/help_dpad_down_png.cpp b/data/converted/help_dpad_down_png.cpp deleted file mode 100644 index 05758d4e7..000000000 --- a/data/converted/help_dpad_down_png.cpp +++ /dev/null @@ -1,187 +0,0 @@ -//this file was auto-generated from "dpad_down.png" by res2h - -#include "../Resources.h" - -const size_t help_dpad_down_png_size = 1797; -const unsigned char help_dpad_down_png_data[1797] = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x25, - 0x00,0x00,0x00,0x25,0x08,0x06,0x00,0x00,0x00,0xc5, - 0x9e,0x20,0x03,0x00,0x00,0x00,0x19,0x74,0x45,0x58, - 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, - 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, - 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, - 0x00,0x00,0x03,0x68,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,0x20,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,0x41, - 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, - 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, - 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, - 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, - 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, - 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x22,0x3e,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,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,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,0x20,0x78,0x6d,0x6c,0x6e, - 0x73,0x3a,0x73,0x74,0x52,0x65,0x66,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,0x52,0x65,0x66,0x23,0x22,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,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,0x46,0x30,0x31,0x35,0x37,0x37,0x33,0x42, - 0x31,0x31,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, - 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, - 0x41,0x37,0x35,0x33,0x22,0x20,0x78,0x6d,0x70,0x4d, - 0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, - 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, - 0x64,0x3a,0x46,0x43,0x44,0x39,0x31,0x31,0x37,0x45, - 0x39,0x44,0x38,0x41,0x31,0x31,0x45,0x33,0x41,0x39, - 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, - 0x32,0x45,0x45,0x33,0x22,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,0x46,0x43,0x44,0x39,0x31,0x31,0x37,0x44, - 0x39,0x44,0x38,0x41,0x31,0x31,0x45,0x33,0x41,0x39, - 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, - 0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d,0x70,0x3a, - 0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54,0x6f,0x6f, - 0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65,0x20,0x50, - 0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x43, - 0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69,0x6e,0x74, - 0x6f,0x73,0x68,0x29,0x22,0x3e,0x20,0x3c,0x78,0x6d, - 0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69,0x76,0x65, - 0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74,0x52,0x65, - 0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65, - 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69, - 0x64,0x3a,0x46,0x30,0x31,0x35,0x37,0x37,0x33,0x42, - 0x31,0x31,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, - 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, - 0x41,0x37,0x35,0x33,0x22,0x20,0x73,0x74,0x52,0x65, - 0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, - 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, - 0x64,0x3a,0x46,0x30,0x31,0x35,0x37,0x37,0x33,0x42, - 0x31,0x31,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, - 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, - 0x41,0x37,0x35,0x33,0x22,0x2f,0x3e,0x20,0x3c,0x2f, - 0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72,0x69, - 0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c,0x2f,0x72, - 0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20,0x3c,0x2f, - 0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74,0x61,0x3e, - 0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74, - 0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22,0x3f,0x3e, - 0x24,0x4f,0xd7,0x28,0x00,0x00,0x03,0x33,0x49,0x44, - 0x41,0x54,0x78,0xda,0xd4,0x98,0x5b,0x6c,0x4c,0x41, - 0x18,0xc7,0xcf,0xae,0xa3,0x15,0xd4,0x83,0xba,0x94, - 0x56,0x42,0xd2,0x20,0x44,0x56,0x22,0x12,0x44,0x52, - 0xad,0x44,0x08,0x21,0x1e,0xc4,0x7a,0x12,0x7d,0xd0, - 0x96,0x50,0x82,0x6c,0x8b,0x28,0x2a,0x4b,0xe2,0xb2, - 0x22,0x22,0x95,0xf2,0xe0,0x49,0x89,0x27,0x97,0x78, - 0x71,0x8b,0x97,0x25,0xc1,0x43,0xd1,0x20,0x54,0xe2, - 0xd6,0x6a,0x17,0xa1,0x1b,0xea,0xa4,0x2e,0xff,0x49, - 0xfe,0x4d,0x36,0x93,0x73,0x66,0xce,0xd9,0x63,0x1d, - 0xbe,0xe4,0x97,0x93,0xce,0xce,0xe5,0x9b,0x99,0x6f, - 0xbe,0x4b,0x43,0xb1,0x58,0xcc,0xf0,0x28,0x23,0xc0, - 0x61,0xb0,0x1c,0x14,0x28,0xfa,0x7d,0x05,0x57,0xc1, - 0x3a,0xd0,0xe5,0x65,0x01,0xd3,0xf0,0x2e,0x2d,0x60, - 0x36,0x68,0x06,0x1d,0x8a,0x7e,0xa3,0x40,0x35,0x38, - 0x05,0x96,0xe6,0x52,0xa9,0x22,0x30,0x1f,0x6c,0x03, - 0x87,0x5c,0xf4,0xff,0x0c,0x1a,0x40,0x21,0xf8,0xe0, - 0x76,0x91,0xb0,0x47,0xa5,0x46,0xf2,0xfb,0x44,0x6a, - 0x9f,0x05,0x52,0x60,0x8e,0xd4,0xfe,0x9c,0x6b,0x8c, - 0xf5,0xb2,0x48,0xd8,0xc8,0x4e,0x7e,0x49,0xa7,0xdd, - 0xc4,0xd3,0x68,0xca,0xd2,0x24,0xfe,0x88,0x52,0x99, - 0xb2,0x11,0x44,0xc0,0x49,0x30,0x0d,0x6c,0x0e,0x5a, - 0xa9,0x12,0xb0,0x07,0x5c,0xa6,0x51,0x5f,0x04,0xbb, - 0xc0,0xb8,0x20,0x95,0x4a,0x80,0xa1,0xa0,0x07,0x1c, - 0x00,0x69,0xfe,0x9d,0xf0,0x33,0xa9,0xdf,0xfb,0x8f, - 0xf0,0xbb,0x4a,0x6a,0x9f,0x1e,0xa4,0x52,0x13,0x8d, - 0x1c,0x48,0xd8,0xf8,0x07,0xc5,0x94,0x3c,0xb0,0xce, - 0x40,0x4b,0xb3,0x5c,0x67,0x0a,0xc8,0xd3,0xf4,0x79, - 0x03,0xde,0xf7,0x2b,0x25,0x1c,0xe2,0x19,0xb0,0xc8, - 0x83,0x8f,0x4a,0xb9,0xec,0xfb,0x8e,0xfd,0x5b,0x5c, - 0xf6,0xbf,0x0e,0xa2,0x26,0x63,0x53,0x19,0xd8,0x4e, - 0x0f,0xac,0x93,0x4e,0x70,0xd7,0xe5,0x22,0xb7,0xc0, - 0x3c,0x30,0xda,0x45,0x5f,0x71,0x4b,0x8d,0xe0,0xa0, - 0x50,0x6a,0x21,0x38,0x06,0xf6,0xdb,0x74,0x1c,0x48, - 0x63,0x7e,0xac,0x99,0x30,0x8f,0x3e,0x4b,0x5c,0x81, - 0x25,0xfd,0x76,0xdb,0xc6,0x8e,0x7f,0x3a,0xcc,0x33, - 0x01,0xac,0x0e,0x73,0x42,0xbb,0x60,0x39,0x13,0xdc, - 0x03,0x0f,0x15,0x3b,0x1d,0x00,0xe2,0xe0,0x13,0x78, - 0xc1,0x6f,0x9c,0xed,0x4e,0xf2,0x16,0x5c,0xa2,0x02, - 0x76,0xbf,0x15,0xd8,0xbd,0xbe,0x21,0xe0,0x08,0x48, - 0xd2,0x40,0x43,0x20,0xdf,0x61,0x81,0x7d,0xa0,0x9e, - 0x9e,0x7c,0x2d,0xbf,0xf5,0x6c,0x57,0x65,0x1a,0x4b, - 0x78,0xfa,0x75,0x76,0x0f,0x40,0x56,0x6a,0x01,0x4f, - 0xa6,0x96,0xb1,0x6c,0x83,0x62,0xf2,0x41,0x8c,0x7b, - 0x67,0xe9,0x3c,0x9b,0xf9,0x3d,0xc7,0x71,0xf9,0x8a, - 0xb1,0xc7,0xc1,0x15,0x9a,0xcc,0x03,0x30,0xd7,0x49, - 0x29,0x33,0xe3,0x58,0x85,0xd1,0xaf,0x07,0x5f,0x34, - 0x3b,0x1e,0x0c,0x6e,0x4a,0xed,0x37,0x78,0xda,0x45, - 0x9a,0x2b,0x5c,0x01,0x8e,0x82,0xa9,0x5c,0xd7,0x56, - 0xa9,0x3e,0xb0,0x18,0xb4,0x73,0x07,0x27,0xc0,0x30, - 0xcd,0x2b,0x14,0x29,0x6f,0x85,0xd4,0x5e,0xc1,0x18, - 0xd8,0xa9,0x18,0x2b,0xf2,0xab,0xf3,0x60,0x13,0x73, - 0xb3,0x65,0xaa,0x30,0x73,0x8d,0xe9,0x47,0x23,0xaf, - 0x46,0x25,0xbd,0x7c,0xb5,0x75,0xd2,0xf3,0x5f,0xc9, - 0xe0,0xfc,0x5d,0x31,0x56,0x5c,0xef,0x37,0xb0,0x83, - 0x19,0xac,0xa5,0x8b,0x7d,0x62,0xf7,0x5b,0x68,0x2b, - 0xa7,0xa9,0x64,0xaf,0xc3,0xe4,0x3b,0xe9,0x1c,0x85, - 0x0d,0x46,0x79,0x42,0x71,0xa6,0x2f,0x4e,0x22,0xbc, - 0xf6,0x7d,0x2a,0xd6,0xee,0x14,0x66,0xd2,0xf4,0x31, - 0xb2,0x08,0x77,0x30,0x03,0x4c,0x52,0x54,0x23,0x3f, - 0x68,0x7f,0xbb,0x41,0x31,0x6d,0xc5,0xd2,0x9c,0x70, - 0x31,0xc7,0x39,0x55,0x4a,0x96,0x50,0xea,0x02,0x58, - 0x03,0x5e,0x82,0x57,0x8a,0xd8,0x95,0xb9,0x53,0xd9, - 0x21,0x5a,0x1c,0x6f,0x27,0x65,0x8c,0xab,0x3a,0x99, - 0x0c,0x6a,0xc4,0xab,0x34,0x59,0x99,0x8c,0x77,0x59, - 0x9d,0xf4,0xc7,0x3e,0x51,0x20,0xdc,0x71,0xd1,0xb7, - 0x9c,0xf1,0x2c,0xe4,0x72,0x5e,0x51,0x27,0x56,0x99, - 0x0c,0xae,0xe5,0xdc,0x4d,0x89,0x66,0x82,0x52,0x06, - 0xd7,0x42,0x97,0x1b,0x18,0xc3,0xf9,0xa2,0x9a,0xb8, - 0x2a,0x14,0x7a,0x0d,0xba,0x65,0x43,0xef,0x72,0x51, - 0xc9,0x5a,0x46,0x76,0xd2,0x46,0xa7,0xfc,0xff,0x26, - 0x79,0x7e,0x95,0x7a,0xc6,0xa3,0x97,0x79,0x1a,0xa4, - 0x52,0x8f,0x1c,0xda,0x5b,0x83,0x54,0xaa,0x96,0x7e, - 0x2e,0x53,0xd2,0x7e,0x0b,0x52,0xbf,0x4a,0x89,0x17, - 0xb3,0x57,0x6a,0x6b,0x60,0xb2,0x17,0x68,0x35,0x93, - 0xc8,0x78,0x59,0xad,0x8c,0x87,0x81,0x18,0x7a,0x48, - 0xca,0x2e,0xaa,0xc0,0x47,0x96,0xee,0x7d,0x7f,0x5b, - 0xa9,0x0e,0xe6,0xd7,0x11,0xa9,0x3d,0x49,0x87,0x9a, - 0xb4,0xf9,0x5f,0x83,0xa1,0x49,0x63,0x7c,0x57,0xc8, - 0x29,0x86,0x02,0x11,0x84,0x87,0x6b,0x9c,0xad,0xa8, - 0x4e,0x2a,0x99,0x0e,0x75,0xe7,0xba,0x6c,0xaf,0x64, - 0x02,0x58,0xcd,0xcc,0xd3,0x49,0x7a,0x98,0x1a,0x6f, - 0xf5,0xba,0xc0,0x6f,0x01,0x06,0x00,0x9b,0x19,0xb5, - 0xa2,0x6f,0x22,0x26,0x8a,0x00,0x00,0x00,0x00,0x49, - 0x45,0x4e,0x44,0xae,0x42,0x60,0x82 -}; diff --git a/data/converted/help_dpad_down_svg.cpp b/data/converted/help_dpad_down_svg.cpp new file mode 100644 index 000000000..00861efe8 --- /dev/null +++ b/data/converted/help_dpad_down_svg.cpp @@ -0,0 +1,330 @@ +//this file was auto-generated from "dpad_down.svg" by res2h + +#include "../Resources.h" + +const size_t help_dpad_down_svg_size = 3223; +const unsigned char help_dpad_down_svg_data[3223] = { + 0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20, + 0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22, + 0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a, + 0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62, + 0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61, + 0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33, + 0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e, + 0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72, + 0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30, + 0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20, + 0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f, + 0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20, + 0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f, + 0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20, + 0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45, + 0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44, + 0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64, + 0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22, + 0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45, + 0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a, + 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f, + 0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76, + 0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78, + 0x6c,0x69,0x6e,0x6b,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,0x78, + 0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30, + 0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78, + 0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68, + 0x3d,0x22,0x33,0x37,0x2e,0x31,0x33,0x34,0x70,0x78, + 0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22, + 0x33,0x37,0x2e,0x31,0x33,0x34,0x70,0x78,0x22,0x20, + 0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30, + 0x20,0x30,0x20,0x33,0x37,0x2e,0x31,0x33,0x34,0x20, + 0x33,0x37,0x2e,0x31,0x33,0x34,0x22,0x20,0x65,0x6e, + 0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67, + 0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77, + 0x20,0x30,0x20,0x30,0x20,0x33,0x37,0x2e,0x31,0x33, + 0x34,0x20,0x33,0x37,0x2e,0x31,0x33,0x34,0x22,0x20, + 0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d, + 0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22, + 0x3e,0x0d,0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c, + 0x67,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x67,0x3e,0x0d, + 0x0a,0x09,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20, + 0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37, + 0x37,0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32, + 0x32,0x2e,0x31,0x32,0x33,0x2c,0x33,0x37,0x2e,0x30, + 0x39,0x37,0x68,0x2d,0x37,0x2e,0x31,0x31,0x31,0x63, + 0x2d,0x32,0x2e,0x32,0x38,0x39,0x2c,0x30,0x2d,0x33, + 0x2e,0x31,0x31,0x39,0x2d,0x31,0x2e,0x38,0x36,0x36, + 0x2d,0x33,0x2e,0x31,0x31,0x39,0x2d,0x33,0x2e,0x31, + 0x32,0x31,0x76,0x2d,0x38,0x2e,0x37,0x33,0x31,0x48, + 0x33,0x2e,0x31,0x35,0x38,0x63,0x2d,0x32,0x2e,0x32, + 0x39,0x2c,0x30,0x2d,0x33,0x2e,0x31,0x32,0x31,0x2d, + 0x31,0x2e,0x38,0x36,0x36,0x2d,0x33,0x2e,0x31,0x32, + 0x31,0x2d,0x33,0x2e,0x31,0x32,0x31,0x0d,0x0a,0x09, + 0x09,0x09,0x09,0x76,0x2d,0x37,0x2e,0x31,0x31,0x32, + 0x63,0x30,0x2d,0x32,0x2e,0x32,0x38,0x39,0x2c,0x31, + 0x2e,0x38,0x36,0x37,0x2d,0x33,0x2e,0x31,0x32,0x2c, + 0x33,0x2e,0x31,0x32,0x31,0x2d,0x33,0x2e,0x31,0x32, + 0x68,0x38,0x2e,0x37,0x33,0x34,0x56,0x33,0x2e,0x31, + 0x35,0x39,0x63,0x30,0x2d,0x32,0x2e,0x32,0x39,0x2c, + 0x31,0x2e,0x38,0x36,0x35,0x2d,0x33,0x2e,0x31,0x32, + 0x31,0x2c,0x33,0x2e,0x31,0x31,0x39,0x2d,0x33,0x2e, + 0x31,0x32,0x31,0x68,0x37,0x2e,0x31,0x31,0x31,0x63, + 0x32,0x2e,0x32,0x39,0x2c,0x30,0x2c,0x33,0x2e,0x31, + 0x32,0x31,0x2c,0x31,0x2e,0x38,0x36,0x37,0x2c,0x33, + 0x2e,0x31,0x32,0x31,0x2c,0x33,0x2e,0x31,0x32,0x31, + 0x76,0x38,0x2e,0x37,0x33,0x32,0x0d,0x0a,0x09,0x09, + 0x09,0x09,0x68,0x38,0x2e,0x37,0x33,0x32,0x63,0x32, + 0x2e,0x32,0x39,0x2c,0x30,0x2c,0x33,0x2e,0x31,0x32, + 0x31,0x2c,0x31,0x2e,0x38,0x36,0x36,0x2c,0x33,0x2e, + 0x31,0x32,0x31,0x2c,0x33,0x2e,0x31,0x32,0x76,0x37, + 0x2e,0x31,0x31,0x32,0x63,0x30,0x2c,0x32,0x2e,0x32, + 0x39,0x2d,0x31,0x2e,0x38,0x36,0x36,0x2c,0x33,0x2e, + 0x31,0x32,0x31,0x2d,0x33,0x2e,0x31,0x32,0x31,0x2c, + 0x33,0x2e,0x31,0x32,0x31,0x68,0x2d,0x38,0x2e,0x37, + 0x33,0x32,0x76,0x38,0x2e,0x37,0x33,0x31,0x0d,0x0a, + 0x09,0x09,0x09,0x09,0x43,0x32,0x35,0x2e,0x32,0x34, + 0x34,0x2c,0x33,0x36,0x2e,0x32,0x36,0x36,0x2c,0x32, + 0x33,0x2e,0x33,0x37,0x37,0x2c,0x33,0x37,0x2e,0x30, + 0x39,0x37,0x2c,0x32,0x32,0x2e,0x31,0x32,0x33,0x2c, + 0x33,0x37,0x2e,0x30,0x39,0x37,0x7a,0x20,0x4d,0x33, + 0x2e,0x31,0x35,0x38,0x2c,0x31,0x33,0x2e,0x33,0x39, + 0x31,0x63,0x2d,0x30,0x2e,0x33,0x37,0x36,0x2c,0x30, + 0x2e,0x30,0x30,0x36,0x2d,0x31,0x2e,0x36,0x32,0x31, + 0x2c,0x30,0x2e,0x31,0x33,0x39,0x2d,0x31,0x2e,0x36, + 0x32,0x31,0x2c,0x31,0x2e,0x36,0x32,0x76,0x37,0x2e, + 0x31,0x31,0x32,0x0d,0x0a,0x09,0x09,0x09,0x09,0x63, + 0x30,0x2e,0x30,0x30,0x36,0x2c,0x30,0x2e,0x33,0x37, + 0x36,0x2c,0x30,0x2e,0x31,0x33,0x39,0x2c,0x31,0x2e, + 0x36,0x32,0x31,0x2c,0x31,0x2e,0x36,0x32,0x31,0x2c, + 0x31,0x2e,0x36,0x32,0x31,0x68,0x31,0x30,0x2e,0x32, + 0x33,0x34,0x76,0x31,0x30,0x2e,0x32,0x33,0x31,0x63, + 0x30,0x2e,0x30,0x30,0x35,0x2c,0x30,0x2e,0x33,0x37, + 0x36,0x2c,0x30,0x2e,0x31,0x33,0x39,0x2c,0x31,0x2e, + 0x36,0x32,0x31,0x2c,0x31,0x2e,0x36,0x31,0x39,0x2c, + 0x31,0x2e,0x36,0x32,0x31,0x68,0x37,0x2e,0x31,0x30, + 0x38,0x0d,0x0a,0x09,0x09,0x09,0x09,0x63,0x30,0x2e, + 0x33,0x38,0x34,0x2d,0x30,0x2e,0x30,0x30,0x36,0x2c, + 0x31,0x2e,0x36,0x32,0x34,0x2d,0x30,0x2e,0x31,0x34, + 0x32,0x2c,0x31,0x2e,0x36,0x32,0x34,0x2d,0x31,0x2e, + 0x36,0x32,0x31,0x56,0x32,0x33,0x2e,0x37,0x34,0x35, + 0x68,0x31,0x30,0x2e,0x32,0x33,0x32,0x63,0x30,0x2e, + 0x33,0x37,0x36,0x2d,0x30,0x2e,0x30,0x30,0x36,0x2c, + 0x31,0x2e,0x36,0x32,0x31,0x2d,0x30,0x2e,0x31,0x34, + 0x2c,0x31,0x2e,0x36,0x32,0x31,0x2d,0x31,0x2e,0x36, + 0x32,0x31,0x76,0x2d,0x37,0x2e,0x31,0x31,0x32,0x0d, + 0x0a,0x09,0x09,0x09,0x09,0x63,0x2d,0x30,0x2e,0x30, + 0x30,0x36,0x2d,0x30,0x2e,0x33,0x37,0x36,0x2d,0x30, + 0x2e,0x31,0x34,0x2d,0x31,0x2e,0x36,0x32,0x2d,0x31, + 0x2e,0x36,0x32,0x31,0x2d,0x31,0x2e,0x36,0x32,0x48, + 0x32,0x33,0x2e,0x37,0x34,0x34,0x56,0x33,0x2e,0x31, + 0x35,0x39,0x63,0x2d,0x30,0x2e,0x30,0x30,0x36,0x2d, + 0x30,0x2e,0x33,0x37,0x36,0x2d,0x30,0x2e,0x31,0x34, + 0x2d,0x31,0x2e,0x36,0x32,0x31,0x2d,0x31,0x2e,0x36, + 0x32,0x31,0x2d,0x31,0x2e,0x36,0x32,0x31,0x68,0x2d, + 0x37,0x2e,0x31,0x31,0x31,0x0d,0x0a,0x09,0x09,0x09, + 0x09,0x63,0x2d,0x30,0x2e,0x33,0x37,0x36,0x2c,0x30, + 0x2e,0x30,0x30,0x36,0x2d,0x31,0x2e,0x36,0x31,0x39, + 0x2c,0x30,0x2e,0x31,0x33,0x39,0x2d,0x31,0x2e,0x36, + 0x31,0x39,0x2c,0x31,0x2e,0x36,0x32,0x31,0x76,0x31, + 0x30,0x2e,0x32,0x33,0x32,0x48,0x33,0x2e,0x31,0x35, + 0x38,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x09,0x3c, + 0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e, + 0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x09, + 0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c, + 0x3d,0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22, + 0x20,0x64,0x3d,0x22,0x4d,0x31,0x38,0x2e,0x35,0x36, + 0x38,0x2c,0x32,0x32,0x2e,0x32,0x31,0x38,0x63,0x2d, + 0x32,0x2e,0x30,0x31,0x33,0x2c,0x30,0x2d,0x33,0x2e, + 0x36,0x35,0x2d,0x31,0x2e,0x36,0x33,0x38,0x2d,0x33, + 0x2e,0x36,0x35,0x2d,0x33,0x2e,0x36,0x35,0x31,0x63, + 0x30,0x2d,0x32,0x2e,0x30,0x31,0x33,0x2c,0x31,0x2e, + 0x36,0x33,0x38,0x2d,0x33,0x2e,0x36,0x35,0x2c,0x33, + 0x2e,0x36,0x35,0x2d,0x33,0x2e,0x36,0x35,0x73,0x33, + 0x2e,0x36,0x35,0x2c,0x31,0x2e,0x36,0x33,0x38,0x2c, + 0x33,0x2e,0x36,0x35,0x2c,0x33,0x2e,0x36,0x35,0x0d, + 0x0a,0x09,0x09,0x09,0x43,0x32,0x32,0x2e,0x32,0x31, + 0x38,0x2c,0x32,0x30,0x2e,0x35,0x38,0x31,0x2c,0x32, + 0x30,0x2e,0x35,0x38,0x31,0x2c,0x32,0x32,0x2e,0x32, + 0x31,0x38,0x2c,0x31,0x38,0x2e,0x35,0x36,0x38,0x2c, + 0x32,0x32,0x2e,0x32,0x31,0x38,0x7a,0x20,0x4d,0x31, + 0x38,0x2e,0x35,0x36,0x38,0x2c,0x31,0x36,0x2e,0x34, + 0x31,0x37,0x63,0x2d,0x31,0x2e,0x31,0x38,0x36,0x2c, + 0x30,0x2d,0x32,0x2e,0x31,0x35,0x2c,0x30,0x2e,0x39, + 0x36,0x35,0x2d,0x32,0x2e,0x31,0x35,0x2c,0x32,0x2e, + 0x31,0x35,0x63,0x30,0x2c,0x31,0x2e,0x31,0x38,0x36, + 0x2c,0x30,0x2e,0x39,0x36,0x35,0x2c,0x32,0x2e,0x31, + 0x35,0x31,0x2c,0x32,0x2e,0x31,0x35,0x2c,0x32,0x2e, + 0x31,0x35,0x31,0x0d,0x0a,0x09,0x09,0x09,0x73,0x32, + 0x2e,0x31,0x35,0x2d,0x30,0x2e,0x39,0x36,0x35,0x2c, + 0x32,0x2e,0x31,0x35,0x2d,0x32,0x2e,0x31,0x35,0x31, + 0x43,0x32,0x30,0x2e,0x37,0x31,0x38,0x2c,0x31,0x37, + 0x2e,0x33,0x38,0x31,0x2c,0x31,0x39,0x2e,0x37,0x35, + 0x33,0x2c,0x31,0x36,0x2e,0x34,0x31,0x37,0x2c,0x31, + 0x38,0x2e,0x35,0x36,0x38,0x2c,0x31,0x36,0x2e,0x34, + 0x31,0x37,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c, + 0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d, + 0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66, + 0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37, + 0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32,0x31, + 0x2e,0x35,0x37,0x33,0x2c,0x38,0x2e,0x36,0x35,0x34, + 0x68,0x2d,0x36,0x2e,0x30,0x31,0x31,0x63,0x2d,0x30, + 0x2e,0x32,0x37,0x34,0x2c,0x30,0x2d,0x30,0x2e,0x35, + 0x32,0x36,0x2d,0x30,0x2e,0x31,0x35,0x2d,0x30,0x2e, + 0x36,0x35,0x38,0x2d,0x30,0x2e,0x33,0x39,0x63,0x2d, + 0x30,0x2e,0x31,0x33,0x31,0x2d,0x30,0x2e,0x32,0x34, + 0x31,0x2d,0x30,0x2e,0x31,0x32,0x31,0x2d,0x30,0x2e, + 0x35,0x33,0x34,0x2c,0x30,0x2e,0x30,0x32,0x37,0x2d, + 0x30,0x2e,0x37,0x36,0x35,0x6c,0x33,0x2e,0x30,0x30, + 0x35,0x2d,0x34,0x2e,0x36,0x38,0x34,0x0d,0x0a,0x09, + 0x09,0x09,0x63,0x30,0x2e,0x32,0x37,0x36,0x2d,0x30, + 0x2e,0x34,0x33,0x31,0x2c,0x30,0x2e,0x39,0x38,0x36, + 0x2d,0x30,0x2e,0x34,0x33,0x2c,0x31,0x2e,0x32,0x36, + 0x33,0x2c,0x30,0x6c,0x33,0x2e,0x30,0x30,0x35,0x2c, + 0x34,0x2e,0x36,0x38,0x34,0x63,0x30,0x2e,0x31,0x34, + 0x38,0x2c,0x30,0x2e,0x32,0x33,0x31,0x2c,0x30,0x2e, + 0x31,0x35,0x39,0x2c,0x30,0x2e,0x35,0x32,0x34,0x2c, + 0x30,0x2e,0x30,0x32,0x37,0x2c,0x30,0x2e,0x37,0x36, + 0x35,0x43,0x32,0x32,0x2e,0x30,0x39,0x39,0x2c,0x38, + 0x2e,0x35,0x30,0x34,0x2c,0x32,0x31,0x2e,0x38,0x34, + 0x37,0x2c,0x38,0x2e,0x36,0x35,0x34,0x2c,0x32,0x31, + 0x2e,0x35,0x37,0x33,0x2c,0x38,0x2e,0x36,0x35,0x34, + 0x7a,0x0d,0x0a,0x09,0x09,0x09,0x20,0x4d,0x31,0x36, + 0x2e,0x39,0x33,0x34,0x2c,0x37,0x2e,0x31,0x35,0x34, + 0x68,0x33,0x2e,0x32,0x36,0x37,0x6c,0x2d,0x31,0x2e, + 0x36,0x33,0x34,0x2d,0x32,0x2e,0x35,0x34,0x35,0x4c, + 0x31,0x36,0x2e,0x39,0x33,0x34,0x2c,0x37,0x2e,0x31, + 0x35,0x34,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c, + 0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d, + 0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66, + 0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37, + 0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x37,0x2e, + 0x38,0x34,0x35,0x2c,0x32,0x32,0x2e,0x33,0x32,0x33, + 0x63,0x2d,0x30,0x2e,0x31,0x34,0x31,0x2c,0x30,0x2d, + 0x30,0x2e,0x32,0x38,0x32,0x2d,0x30,0x2e,0x30,0x34, + 0x2d,0x30,0x2e,0x34,0x30,0x35,0x2d,0x30,0x2e,0x31, + 0x31,0x39,0x6c,0x2d,0x34,0x2e,0x36,0x38,0x34,0x2d, + 0x33,0x2e,0x30,0x30,0x34,0x63,0x2d,0x30,0x2e,0x32, + 0x31,0x35,0x2d,0x30,0x2e,0x31,0x33,0x38,0x2d,0x30, + 0x2e,0x33,0x34,0x35,0x2d,0x30,0x2e,0x33,0x37,0x36, + 0x2d,0x30,0x2e,0x33,0x34,0x35,0x2d,0x30,0x2e,0x36, + 0x33,0x31,0x0d,0x0a,0x09,0x09,0x09,0x73,0x30,0x2e, + 0x31,0x33,0x2d,0x30,0x2e,0x34,0x39,0x33,0x2c,0x30, + 0x2e,0x33,0x34,0x35,0x2d,0x30,0x2e,0x36,0x33,0x31, + 0x6c,0x34,0x2e,0x36,0x38,0x34,0x2d,0x33,0x2e,0x30, + 0x30,0x36,0x63,0x30,0x2e,0x32,0x33,0x31,0x2d,0x30, + 0x2e,0x31,0x34,0x37,0x2c,0x30,0x2e,0x35,0x32,0x34, + 0x2d,0x30,0x2e,0x31,0x35,0x38,0x2c,0x30,0x2e,0x37, + 0x36,0x35,0x2d,0x30,0x2e,0x30,0x32,0x37,0x63,0x30, + 0x2e,0x32,0x34,0x2c,0x30,0x2e,0x31,0x33,0x31,0x2c, + 0x30,0x2e,0x33,0x39,0x2c,0x30,0x2e,0x33,0x38,0x34, + 0x2c,0x30,0x2e,0x33,0x39,0x2c,0x30,0x2e,0x36,0x35, + 0x38,0x76,0x36,0x2e,0x30,0x31,0x31,0x0d,0x0a,0x09, + 0x09,0x09,0x63,0x30,0x2c,0x30,0x2e,0x32,0x37,0x34, + 0x2d,0x30,0x2e,0x31,0x35,0x2c,0x30,0x2e,0x35,0x32, + 0x36,0x2d,0x30,0x2e,0x33,0x39,0x2c,0x30,0x2e,0x36, + 0x35,0x38,0x43,0x38,0x2e,0x30,0x39,0x33,0x2c,0x32, + 0x32,0x2e,0x32,0x39,0x32,0x2c,0x37,0x2e,0x39,0x36, + 0x39,0x2c,0x32,0x32,0x2e,0x33,0x32,0x33,0x2c,0x37, + 0x2e,0x38,0x34,0x35,0x2c,0x32,0x32,0x2e,0x33,0x32, + 0x33,0x7a,0x20,0x4d,0x34,0x2e,0x35,0x35,0x2c,0x31, + 0x38,0x2e,0x35,0x36,0x38,0x6c,0x32,0x2e,0x35,0x34, + 0x35,0x2c,0x31,0x2e,0x36,0x33,0x33,0x76,0x2d,0x33, + 0x2e,0x32,0x36,0x36,0x4c,0x34,0x2e,0x35,0x35,0x2c, + 0x31,0x38,0x2e,0x35,0x36,0x38,0x7a,0x22,0x2f,0x3e, + 0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09, + 0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61, + 0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23, + 0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20,0x64,0x3d, + 0x22,0x4d,0x32,0x39,0x2e,0x32,0x33,0x32,0x2c,0x32, + 0x32,0x2e,0x33,0x32,0x32,0x63,0x2d,0x30,0x2e,0x31, + 0x32,0x34,0x2c,0x30,0x2d,0x30,0x2e,0x32,0x34,0x37, + 0x2d,0x30,0x2e,0x30,0x33,0x2d,0x30,0x2e,0x33,0x35, + 0x39,0x2d,0x30,0x2e,0x30,0x39,0x32,0x63,0x2d,0x30, + 0x2e,0x32,0x34,0x31,0x2d,0x30,0x2e,0x31,0x33,0x32, + 0x2d,0x30,0x2e,0x33,0x39,0x31,0x2d,0x30,0x2e,0x33, + 0x38,0x34,0x2d,0x30,0x2e,0x33,0x39,0x31,0x2d,0x30, + 0x2e,0x36,0x35,0x38,0x76,0x2d,0x36,0x2e,0x30,0x31, + 0x0d,0x0a,0x09,0x09,0x09,0x63,0x30,0x2d,0x30,0x2e, + 0x32,0x37,0x34,0x2c,0x30,0x2e,0x31,0x34,0x39,0x2d, + 0x30,0x2e,0x35,0x32,0x36,0x2c,0x30,0x2e,0x33,0x39, + 0x31,0x2d,0x30,0x2e,0x36,0x35,0x38,0x63,0x30,0x2e, + 0x32,0x33,0x39,0x2d,0x30,0x2e,0x31,0x33,0x31,0x2c, + 0x30,0x2e,0x35,0x33,0x33,0x2d,0x30,0x2e,0x31,0x32, + 0x33,0x2c,0x30,0x2e,0x37,0x36,0x35,0x2c,0x30,0x2e, + 0x30,0x32,0x37,0x6c,0x34,0x2e,0x36,0x38,0x34,0x2c, + 0x33,0x2e,0x30,0x30,0x35,0x63,0x30,0x2e,0x32,0x31, + 0x35,0x2c,0x30,0x2e,0x31,0x33,0x38,0x2c,0x30,0x2e, + 0x33,0x34,0x35,0x2c,0x30,0x2e,0x33,0x37,0x36,0x2c, + 0x30,0x2e,0x33,0x34,0x35,0x2c,0x30,0x2e,0x36,0x33, + 0x31,0x0d,0x0a,0x09,0x09,0x09,0x73,0x2d,0x30,0x2e, + 0x31,0x33,0x2c,0x30,0x2e,0x34,0x39,0x33,0x2d,0x30, + 0x2e,0x33,0x34,0x35,0x2c,0x30,0x2e,0x36,0x33,0x31, + 0x6c,0x2d,0x34,0x2e,0x36,0x38,0x34,0x2c,0x33,0x2e, + 0x30,0x30,0x34,0x43,0x32,0x39,0x2e,0x35,0x31,0x34, + 0x2c,0x32,0x32,0x2e,0x32,0x38,0x32,0x2c,0x32,0x39, + 0x2e,0x33,0x37,0x33,0x2c,0x32,0x32,0x2e,0x33,0x32, + 0x32,0x2c,0x32,0x39,0x2e,0x32,0x33,0x32,0x2c,0x32, + 0x32,0x2e,0x33,0x32,0x32,0x7a,0x20,0x4d,0x32,0x39, + 0x2e,0x39,0x38,0x32,0x2c,0x31,0x36,0x2e,0x39,0x33, + 0x34,0x56,0x32,0x30,0x2e,0x32,0x6c,0x32,0x2e,0x35, + 0x34,0x35,0x2d,0x31,0x2e,0x36,0x33,0x33,0x0d,0x0a, + 0x09,0x09,0x09,0x4c,0x32,0x39,0x2e,0x39,0x38,0x32, + 0x2c,0x31,0x36,0x2e,0x39,0x33,0x34,0x7a,0x22,0x2f, + 0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a, + 0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70, + 0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22, + 0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20,0x64, + 0x3d,0x22,0x4d,0x31,0x38,0x2e,0x35,0x36,0x37,0x2c, + 0x33,0x33,0x2e,0x39,0x31,0x35,0x6c,0x33,0x2e,0x30, + 0x30,0x36,0x2d,0x34,0x2e,0x36,0x38,0x34,0x68,0x2d, + 0x36,0x2e,0x30,0x31,0x31,0x4c,0x31,0x38,0x2e,0x35, + 0x36,0x37,0x2c,0x33,0x33,0x2e,0x39,0x31,0x35,0x7a, + 0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61, + 0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23, + 0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20,0x64,0x3d, + 0x22,0x4d,0x31,0x38,0x2e,0x35,0x36,0x37,0x2c,0x33, + 0x34,0x2e,0x36,0x36,0x35,0x4c,0x31,0x38,0x2e,0x35, + 0x36,0x37,0x2c,0x33,0x34,0x2e,0x36,0x36,0x35,0x63, + 0x2d,0x30,0x2e,0x32,0x35,0x35,0x2c,0x30,0x2d,0x30, + 0x2e,0x34,0x39,0x33,0x2d,0x30,0x2e,0x31,0x33,0x2d, + 0x30,0x2e,0x36,0x33,0x31,0x2d,0x30,0x2e,0x33,0x34, + 0x35,0x6c,0x2d,0x33,0x2e,0x30,0x30,0x35,0x2d,0x34, + 0x2e,0x36,0x38,0x34,0x0d,0x0a,0x09,0x09,0x09,0x63, + 0x2d,0x30,0x2e,0x31,0x34,0x38,0x2d,0x30,0x2e,0x32, + 0x33,0x31,0x2d,0x30,0x2e,0x31,0x35,0x38,0x2d,0x30, + 0x2e,0x35,0x32,0x34,0x2d,0x30,0x2e,0x30,0x32,0x37, + 0x2d,0x30,0x2e,0x37,0x36,0x35,0x63,0x30,0x2e,0x31, + 0x33,0x32,0x2d,0x30,0x2e,0x32,0x34,0x31,0x2c,0x30, + 0x2e,0x33,0x38,0x34,0x2d,0x30,0x2e,0x33,0x39,0x31, + 0x2c,0x30,0x2e,0x36,0x35,0x38,0x2d,0x30,0x2e,0x33, + 0x39,0x31,0x68,0x36,0x2e,0x30,0x31,0x31,0x63,0x30, + 0x2e,0x32,0x37,0x34,0x2c,0x30,0x2c,0x30,0x2e,0x35, + 0x32,0x36,0x2c,0x30,0x2e,0x31,0x34,0x39,0x2c,0x30, + 0x2e,0x36,0x35,0x38,0x2c,0x30,0x2e,0x33,0x39,0x31, + 0x0d,0x0a,0x09,0x09,0x09,0x63,0x30,0x2e,0x31,0x33, + 0x32,0x2c,0x30,0x2e,0x32,0x34,0x2c,0x30,0x2e,0x31, + 0x32,0x31,0x2c,0x30,0x2e,0x35,0x33,0x33,0x2d,0x30, + 0x2e,0x30,0x32,0x37,0x2c,0x30,0x2e,0x37,0x36,0x35, + 0x6c,0x2d,0x33,0x2e,0x30,0x30,0x35,0x2c,0x34,0x2e, + 0x36,0x38,0x34,0x43,0x31,0x39,0x2e,0x30,0x36,0x2c, + 0x33,0x34,0x2e,0x35,0x33,0x35,0x2c,0x31,0x38,0x2e, + 0x38,0x32,0x32,0x2c,0x33,0x34,0x2e,0x36,0x36,0x35, + 0x2c,0x31,0x38,0x2e,0x35,0x36,0x37,0x2c,0x33,0x34, + 0x2e,0x36,0x36,0x35,0x7a,0x20,0x4d,0x31,0x36,0x2e, + 0x39,0x33,0x34,0x2c,0x32,0x39,0x2e,0x39,0x38,0x31, + 0x6c,0x31,0x2e,0x36,0x33,0x33,0x2c,0x32,0x2e,0x35, + 0x34,0x35,0x0d,0x0a,0x09,0x09,0x09,0x6c,0x31,0x2e, + 0x36,0x33,0x34,0x2d,0x32,0x2e,0x35,0x34,0x35,0x48, + 0x31,0x36,0x2e,0x39,0x33,0x34,0x7a,0x22,0x2f,0x3e, + 0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c, + 0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x2f,0x73,0x76,0x67, + 0x3e,0x0d,0x0a +}; diff --git a/data/converted/help_dpad_left_png.cpp b/data/converted/help_dpad_left_png.cpp deleted file mode 100644 index 17b28ac47..000000000 --- a/data/converted/help_dpad_left_png.cpp +++ /dev/null @@ -1,188 +0,0 @@ -//this file was auto-generated from "dpad_left.png" by res2h - -#include "../Resources.h" - -const size_t help_dpad_left_png_size = 1805; -const unsigned char help_dpad_left_png_data[1805] = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x25, - 0x00,0x00,0x00,0x25,0x08,0x06,0x00,0x00,0x00,0xc5, - 0x9e,0x20,0x03,0x00,0x00,0x00,0x19,0x74,0x45,0x58, - 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, - 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, - 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, - 0x00,0x00,0x03,0x68,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,0x20,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,0x41, - 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, - 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, - 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, - 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, - 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, - 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x22,0x3e,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,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,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,0x20,0x78,0x6d,0x6c,0x6e, - 0x73,0x3a,0x73,0x74,0x52,0x65,0x66,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,0x52,0x65,0x66,0x23,0x22,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,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,0x46,0x30,0x31,0x35,0x37,0x37,0x33,0x42, - 0x31,0x31,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, - 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, - 0x41,0x37,0x35,0x33,0x22,0x20,0x78,0x6d,0x70,0x4d, - 0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, - 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, - 0x64,0x3a,0x30,0x30,0x37,0x39,0x36,0x32,0x32,0x35, - 0x39,0x44,0x38,0x44,0x31,0x31,0x45,0x33,0x41,0x39, - 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, - 0x32,0x45,0x45,0x33,0x22,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,0x30,0x30,0x37,0x39,0x36,0x32,0x32,0x34, - 0x39,0x44,0x38,0x44,0x31,0x31,0x45,0x33,0x41,0x39, - 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, - 0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d,0x70,0x3a, - 0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54,0x6f,0x6f, - 0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65,0x20,0x50, - 0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x43, - 0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69,0x6e,0x74, - 0x6f,0x73,0x68,0x29,0x22,0x3e,0x20,0x3c,0x78,0x6d, - 0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69,0x76,0x65, - 0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74,0x52,0x65, - 0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65, - 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69, - 0x64,0x3a,0x46,0x30,0x31,0x35,0x37,0x37,0x33,0x42, - 0x31,0x31,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, - 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, - 0x41,0x37,0x35,0x33,0x22,0x20,0x73,0x74,0x52,0x65, - 0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, - 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, - 0x64,0x3a,0x46,0x30,0x31,0x35,0x37,0x37,0x33,0x42, - 0x31,0x31,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, - 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, - 0x41,0x37,0x35,0x33,0x22,0x2f,0x3e,0x20,0x3c,0x2f, - 0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72,0x69, - 0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c,0x2f,0x72, - 0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20,0x3c,0x2f, - 0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74,0x61,0x3e, - 0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74, - 0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22,0x3f,0x3e, - 0x7e,0xb4,0x24,0x5c,0x00,0x00,0x03,0x3b,0x49,0x44, - 0x41,0x54,0x78,0xda,0xd4,0x98,0x5b,0x6c,0x4c,0x41, - 0x18,0xc7,0xcf,0xae,0x55,0x82,0xbe,0xa8,0x4b,0x69, - 0x25,0x24,0x75,0x09,0x61,0x25,0x22,0x41,0x24,0xd5, - 0x4a,0x84,0xa0,0x89,0x07,0x51,0x5e,0x44,0x1f,0xb4, - 0x95,0x50,0x0d,0xb2,0x5b,0xc4,0xad,0xb2,0x24,0x2e, - 0x2b,0x8d,0x48,0xa5,0x3c,0x78,0xa1,0xc4,0x93,0x4b, - 0xbc,0xb8,0xc5,0xcb,0x56,0x82,0x07,0xb7,0x20,0x54, - 0x42,0xe9,0x6a,0x17,0x91,0x6e,0xa8,0x93,0xba,0xfc, - 0x27,0xf9,0x37,0xd9,0x4c,0xce,0x39,0x33,0x67,0x8f, - 0x75,0xf8,0x92,0x5f,0x4e,0x76,0x76,0xce,0xcc,0x37, - 0x33,0xdf,0x7c,0x97,0x13,0x88,0x44,0x22,0x86,0x4b, - 0x19,0x01,0x8e,0x80,0x15,0x20,0xdf,0xa1,0xdf,0x57, - 0x70,0x0d,0x6c,0x00,0x5d,0x6e,0x26,0x08,0x19,0xee, - 0xa5,0x15,0xcc,0x05,0x2d,0xa0,0xd3,0xa1,0xdf,0x28, - 0x50,0x03,0x4e,0x81,0x8a,0x5c,0x2a,0x55,0x08,0x16, - 0x82,0x6d,0xe0,0xb0,0x46,0xff,0x2f,0x60,0x37,0x28, - 0x00,0x1f,0x75,0x27,0x09,0xba,0x54,0x6a,0x24,0x9f, - 0xcf,0xa4,0xf6,0x39,0x20,0x05,0xe6,0x49,0xed,0x2f, - 0x39,0xc7,0x58,0x37,0x93,0x04,0x8d,0xec,0xe4,0x97, - 0xb4,0xdb,0xcd,0xdc,0x8d,0xe6,0x2c,0x4d,0xe2,0x8f, - 0x28,0x95,0x29,0x9b,0x40,0x18,0x9c,0x04,0xd3,0x41, - 0xbd,0xdf,0x4a,0x15,0x83,0xbd,0xe0,0x0a,0x8d,0xfa, - 0x12,0xd8,0x05,0xc6,0xf9,0xa9,0x54,0x1c,0x0c,0x03, - 0x3d,0xe0,0x20,0x48,0xf3,0x77,0xdc,0xcb,0xa0,0x5e, - 0xcf,0x3f,0xcc,0xe7,0x6a,0xa9,0x7d,0xa6,0x9f,0x4a, - 0x4d,0x32,0x72,0x20,0x41,0xe3,0x1f,0x94,0x90,0xe4, - 0x81,0x55,0x06,0x5a,0x92,0xe5,0x3c,0x53,0x41,0x9e, - 0xa2,0x4f,0x07,0xf8,0xd0,0xaf,0x94,0x70,0x88,0x67, - 0xc0,0x12,0x17,0x3e,0x2a,0xa5,0xd9,0xf7,0x3d,0xfb, - 0xb7,0x6a,0xf6,0xbf,0x01,0x2a,0x43,0x8c,0x4d,0xa5, - 0x60,0x3b,0x3d,0xb0,0x4a,0x92,0xe0,0xae,0xe6,0x24, - 0xb7,0xc1,0x02,0x30,0x5a,0xa3,0xaf,0x38,0xa5,0x46, - 0x70,0x48,0x28,0xb5,0x18,0x34,0x81,0x03,0x16,0x1d, - 0x07,0xd2,0x98,0x9f,0x28,0x06,0xcc,0xa3,0xcf,0x12, - 0x47,0x60,0x4a,0xff,0xdd,0xb1,0xb0,0xe3,0x9f,0x36, - 0xe3,0x4c,0x00,0x6b,0x83,0x1c,0xd0,0x2a,0x58,0xce, - 0x06,0xf7,0xc0,0x23,0x87,0x95,0x0e,0x00,0x31,0xf0, - 0x19,0xbc,0xe2,0x33,0xc6,0x76,0x3b,0x79,0x07,0x2e, - 0x53,0x01,0xab,0xff,0xf2,0xad,0x6e,0xdf,0x50,0x70, - 0x14,0x24,0xc0,0x0c,0x10,0x00,0x83,0x6c,0x26,0xd8, - 0x0f,0x1a,0xe8,0xc9,0xd7,0xf3,0xd9,0xc0,0x76,0xa7, - 0x4c,0x63,0x19,0x77,0x3f,0x6a,0x75,0x01,0x64,0xa5, - 0x16,0x71,0x67,0xea,0x15,0xab,0x15,0x32,0x98,0x71, - 0xef,0x1c,0x9d,0x67,0x0b,0x9f,0xe7,0xc1,0x46,0x87, - 0x85,0x08,0x39,0x0e,0xae,0xd2,0x64,0x1e,0x80,0xf9, - 0x76,0x4a,0x85,0x1c,0xb6,0xd5,0x6e,0xc5,0x43,0xc0, - 0x2d,0xa9,0xfd,0x26,0x77,0xbb,0x50,0x71,0x84,0x2b, - 0xc1,0x31,0x30,0x8d,0xb1,0xd3,0x52,0xa9,0x3e,0xb0, - 0x14,0xb4,0x6b,0x2a,0x95,0x64,0xca,0x5b,0x2e,0xb5, - 0x97,0x33,0x06,0x26,0x1d,0xde,0x15,0xf9,0xd5,0x05, - 0xb0,0x99,0xb9,0x59,0x85,0x53,0x98,0xb9,0xce,0xf4, - 0xa3,0x91,0x47,0xe3,0x14,0x86,0x7a,0x79,0x6b,0xa3, - 0xd2,0xf5,0x5f,0xc5,0xe0,0xfc,0xdd,0xe1,0x5d,0x71, - 0xbc,0xdf,0xc0,0x0e,0x66,0xb0,0xa6,0x2a,0xf6,0x89, - 0xd5,0x6f,0xa1,0xad,0x9c,0xa6,0x92,0xbd,0x36,0x83, - 0xef,0xa4,0x73,0xac,0x13,0x4e,0x8f,0x3b,0x14,0x63, - 0xfa,0x62,0x27,0xc2,0x6b,0xdf,0xa7,0x62,0xed,0x76, - 0x61,0x26,0x4d,0x1f,0x23,0x8b,0x70,0x07,0xb3,0xc0, - 0x64,0x87,0x6a,0xe4,0x07,0x9d,0xee,0x1e,0x50,0x44, - 0x5b,0x31,0x15,0xc7,0x5e,0xc4,0xf7,0xec,0x2a,0x25, - 0x53,0x28,0x75,0x11,0xac,0x03,0xaf,0xc1,0x1b,0x87, - 0xd8,0x95,0xb9,0x52,0xd9,0x21,0x9a,0x7c,0xdf,0x4a, - 0x4a,0x19,0x57,0x55,0x32,0x05,0xd4,0x8a,0x5b,0x19, - 0x62,0x65,0x32,0x5e,0xb3,0x3a,0xe9,0x8f,0x7d,0xa2, - 0x40,0x68,0xd3,0xe8,0x5b,0xc6,0x78,0x16,0xd0,0x1c, - 0x57,0xd4,0x89,0xd5,0x21,0x06,0xd7,0x32,0xae,0xa6, - 0x58,0x31,0x40,0x09,0x83,0x6b,0x81,0xe6,0x02,0xc6, - 0x70,0xbc,0x4a,0x45,0x5c,0x15,0x0a,0xbd,0x05,0xdd, - 0xb2,0xa1,0x77,0x69,0x54,0xb2,0xa6,0x91,0x9d,0x3c, - 0xa5,0x53,0xfe,0x7f,0x93,0x3c,0xaf,0x4a,0xbd,0xe0, - 0xd6,0xcb,0x3c,0xf7,0x33,0x47,0x7f,0x0c,0x26,0x82, - 0xb3,0xb4,0x09,0x91,0x13,0xad,0x01,0x0f,0xfd,0xdc, - 0xa9,0xba,0x8c,0xb2,0x2a,0xca,0xaf,0x30,0x69,0xaf, - 0x05,0xa9,0x57,0xa5,0xc4,0xee,0xec,0x63,0xec,0x3a, - 0x01,0x96,0xf3,0x83,0x46,0x87,0xdf,0xd5,0x4c,0x9c, - 0x37,0xab,0x96,0xc7,0xd6,0xe4,0x97,0xa1,0x07,0xa4, - 0xec,0xa2,0x1a,0x7c,0x62,0xe9,0xde,0xf7,0xb7,0x95, - 0xea,0x64,0x7e,0x1d,0x96,0xda,0x13,0x74,0xa8,0x09, - 0x8b,0x6f,0x0d,0x86,0x22,0x8d,0xf1,0x7c,0xfb,0x52, - 0x0c,0x05,0x22,0x08,0x0f,0x57,0x38,0x5b,0x71,0x13, - 0xab,0x98,0x0e,0x75,0xe7,0xda,0x25,0x54,0xd1,0xa8, - 0x6b,0x98,0x79,0xda,0x49,0x0f,0x53,0xe3,0xad,0x6e, - 0x27,0xf8,0x2d,0xc0,0x00,0x86,0xa8,0xb5,0xf9,0x24, - 0xe5,0xd1,0x9d,0x00,0x00,0x00,0x00,0x49,0x45,0x4e, - 0x44,0xae,0x42,0x60,0x82 -}; diff --git a/data/converted/help_dpad_left_right_png.cpp b/data/converted/help_dpad_left_right_png.cpp deleted file mode 100644 index a9768dcb7..000000000 --- a/data/converted/help_dpad_left_right_png.cpp +++ /dev/null @@ -1,1637 +0,0 @@ -//this file was auto-generated from "dpad_left_right.png" by res2h - -#include "../Resources.h" - -const size_t help_dpad_left_right_png_size = 16291; -const unsigned char help_dpad_left_right_png_data[16291] = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x25, - 0x00,0x00,0x00,0x25,0x08,0x06,0x00,0x00,0x00,0xc5, - 0x9e,0x20,0x03,0x00,0x00,0x00,0x09,0x70,0x48,0x59, - 0x73,0x00,0x00,0x0b,0x13,0x00,0x00,0x0b,0x13,0x01, - 0x00,0x9a,0x9c,0x18,0x00,0x00,0x3c,0x0e,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,0x41,0x64,0x6f,0x62,0x65,0x20,0x58, - 0x4d,0x50,0x20,0x43,0x6f,0x72,0x65,0x20,0x35,0x2e, - 0x35,0x2d,0x63,0x30,0x32,0x31,0x20,0x37,0x39,0x2e, - 0x31,0x35,0x34,0x39,0x31,0x31,0x2c,0x20,0x32,0x30, - 0x31,0x33,0x2f,0x31,0x30,0x2f,0x32,0x39,0x2d,0x31, - 0x31,0x3a,0x34,0x37,0x3a,0x31,0x36,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x22,0x3e,0x0a,0x20,0x20, - 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,0x20, - 0x20,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,0x20,0x20,0x20, - 0x20,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,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x73, - 0x74,0x52,0x65,0x66,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,0x52,0x65, - 0x66,0x23,0x22,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,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,0x20,0x20,0x20,0x20,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,0x20,0x20,0x20,0x20,0x20, - 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,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x70,0x68,0x6f,0x74, - 0x6f,0x73,0x68,0x6f,0x70,0x3d,0x22,0x68,0x74,0x74, - 0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f, - 0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x70,0x68,0x6f, - 0x74,0x6f,0x73,0x68,0x6f,0x70,0x2f,0x31,0x2e,0x30, - 0x2f,0x22,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,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,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x65,0x78,0x69,0x66, - 0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e, - 0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f, - 0x6d,0x2f,0x65,0x78,0x69,0x66,0x2f,0x31,0x2e,0x30, - 0x2f,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x3c,0x78,0x6d,0x70,0x4d,0x4d,0x3a, - 0x4f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x44,0x6f, - 0x63,0x75,0x6d,0x65,0x6e,0x74,0x49,0x44,0x3e,0x78, - 0x6d,0x70,0x2e,0x64,0x69,0x64,0x3a,0x46,0x30,0x31, - 0x35,0x37,0x37,0x33,0x42,0x31,0x31,0x32,0x30,0x36, - 0x38,0x31,0x31,0x38,0x30,0x38,0x33,0x43,0x37,0x45, - 0x33,0x31,0x45,0x41,0x35,0x41,0x37,0x35,0x33,0x3c, - 0x2f,0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x4f,0x72,0x69, - 0x67,0x69,0x6e,0x61,0x6c,0x44,0x6f,0x63,0x75,0x6d, - 0x65,0x6e,0x74,0x49,0x44,0x3e,0x0a,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78,0x6d,0x70, - 0x4d,0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e, - 0x74,0x49,0x44,0x3e,0x78,0x6d,0x70,0x2e,0x64,0x69, - 0x64,0x3a,0x30,0x30,0x37,0x39,0x36,0x32,0x32,0x35, - 0x39,0x44,0x38,0x44,0x31,0x31,0x45,0x33,0x41,0x39, - 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, - 0x32,0x45,0x45,0x33,0x3c,0x2f,0x78,0x6d,0x70,0x4d, - 0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, - 0x49,0x44,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x3c,0x78,0x6d,0x70,0x4d,0x4d,0x3a, - 0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44, - 0x3e,0x78,0x6d,0x70,0x2e,0x69,0x69,0x64,0x3a,0x32, - 0x37,0x35,0x37,0x63,0x32,0x35,0x35,0x2d,0x65,0x37, - 0x32,0x36,0x2d,0x33,0x32,0x34,0x38,0x2d,0x38,0x33, - 0x37,0x65,0x2d,0x35,0x32,0x33,0x32,0x36,0x36,0x38, - 0x35,0x32,0x34,0x61,0x39,0x3c,0x2f,0x78,0x6d,0x70, - 0x4d,0x4d,0x3a,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63, - 0x65,0x49,0x44,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x3c,0x78,0x6d,0x70,0x4d,0x4d, - 0x3a,0x44,0x65,0x72,0x69,0x76,0x65,0x64,0x46,0x72, - 0x6f,0x6d,0x20,0x72,0x64,0x66,0x3a,0x70,0x61,0x72, - 0x73,0x65,0x54,0x79,0x70,0x65,0x3d,0x22,0x52,0x65, - 0x73,0x6f,0x75,0x72,0x63,0x65,0x22,0x3e,0x0a,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x3c,0x73,0x74,0x52,0x65,0x66,0x3a,0x69,0x6e, - 0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44,0x3e,0x78, - 0x6d,0x70,0x2e,0x69,0x69,0x64,0x3a,0x46,0x30,0x31, - 0x35,0x37,0x37,0x33,0x42,0x31,0x31,0x32,0x30,0x36, - 0x38,0x31,0x31,0x38,0x30,0x38,0x33,0x43,0x37,0x45, - 0x33,0x31,0x45,0x41,0x35,0x41,0x37,0x35,0x33,0x3c, - 0x2f,0x73,0x74,0x52,0x65,0x66,0x3a,0x69,0x6e,0x73, - 0x74,0x61,0x6e,0x63,0x65,0x49,0x44,0x3e,0x0a,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x3c,0x73,0x74,0x52,0x65,0x66,0x3a,0x64,0x6f, - 0x63,0x75,0x6d,0x65,0x6e,0x74,0x49,0x44,0x3e,0x78, - 0x6d,0x70,0x2e,0x64,0x69,0x64,0x3a,0x46,0x30,0x31, - 0x35,0x37,0x37,0x33,0x42,0x31,0x31,0x32,0x30,0x36, - 0x38,0x31,0x31,0x38,0x30,0x38,0x33,0x43,0x37,0x45, - 0x33,0x31,0x45,0x41,0x35,0x41,0x37,0x35,0x33,0x3c, - 0x2f,0x73,0x74,0x52,0x65,0x66,0x3a,0x64,0x6f,0x63, - 0x75,0x6d,0x65,0x6e,0x74,0x49,0x44,0x3e,0x0a,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f, - 0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69, - 0x76,0x65,0x64,0x46,0x72,0x6f,0x6d,0x3e,0x0a,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78, - 0x6d,0x70,0x4d,0x4d,0x3a,0x48,0x69,0x73,0x74,0x6f, - 0x72,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x72,0x64,0x66, - 0x3a,0x53,0x65,0x71,0x3e,0x0a,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,0x20,0x72, - 0x64,0x66,0x3a,0x70,0x61,0x72,0x73,0x65,0x54,0x79, - 0x70,0x65,0x3d,0x22,0x52,0x65,0x73,0x6f,0x75,0x72, - 0x63,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a, - 0x61,0x63,0x74,0x69,0x6f,0x6e,0x3e,0x73,0x61,0x76, - 0x65,0x64,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a, - 0x61,0x63,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45, - 0x76,0x74,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63, - 0x65,0x49,0x44,0x3e,0x78,0x6d,0x70,0x2e,0x69,0x69, - 0x64,0x3a,0x39,0x31,0x62,0x61,0x65,0x38,0x36,0x63, - 0x2d,0x38,0x39,0x30,0x38,0x2d,0x34,0x36,0x34,0x37, - 0x2d,0x62,0x30,0x34,0x37,0x2d,0x63,0x37,0x39,0x35, - 0x30,0x63,0x34,0x63,0x62,0x35,0x39,0x64,0x3c,0x2f, - 0x73,0x74,0x45,0x76,0x74,0x3a,0x69,0x6e,0x73,0x74, - 0x61,0x6e,0x63,0x65,0x49,0x44,0x3e,0x0a,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45, - 0x76,0x74,0x3a,0x77,0x68,0x65,0x6e,0x3e,0x32,0x30, - 0x31,0x34,0x2d,0x30,0x33,0x2d,0x31,0x35,0x54,0x31, - 0x36,0x3a,0x32,0x35,0x3a,0x30,0x32,0x2d,0x30,0x35, - 0x3a,0x30,0x30,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74, - 0x3a,0x77,0x68,0x65,0x6e,0x3e,0x0a,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76, - 0x74,0x3a,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65, - 0x41,0x67,0x65,0x6e,0x74,0x3e,0x41,0x64,0x6f,0x62, - 0x65,0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f, - 0x70,0x20,0x43,0x43,0x20,0x28,0x57,0x69,0x6e,0x64, - 0x6f,0x77,0x73,0x29,0x3c,0x2f,0x73,0x74,0x45,0x76, - 0x74,0x3a,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65, - 0x41,0x67,0x65,0x6e,0x74,0x3e,0x0a,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76, - 0x74,0x3a,0x63,0x68,0x61,0x6e,0x67,0x65,0x64,0x3e, - 0x2f,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x63, - 0x68,0x61,0x6e,0x67,0x65,0x64,0x3e,0x0a,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c, - 0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x72, - 0x64,0x66,0x3a,0x6c,0x69,0x20,0x72,0x64,0x66,0x3a, - 0x70,0x61,0x72,0x73,0x65,0x54,0x79,0x70,0x65,0x3d, - 0x22,0x52,0x65,0x73,0x6f,0x75,0x72,0x63,0x65,0x22, - 0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x3c,0x73,0x74,0x45,0x76,0x74,0x3a,0x61,0x63,0x74, - 0x69,0x6f,0x6e,0x3e,0x73,0x61,0x76,0x65,0x64,0x3c, - 0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x61,0x63,0x74, - 0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a, - 0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44, - 0x3e,0x78,0x6d,0x70,0x2e,0x69,0x69,0x64,0x3a,0x32, - 0x37,0x35,0x37,0x63,0x32,0x35,0x35,0x2d,0x65,0x37, - 0x32,0x36,0x2d,0x33,0x32,0x34,0x38,0x2d,0x38,0x33, - 0x37,0x65,0x2d,0x35,0x32,0x33,0x32,0x36,0x36,0x38, - 0x35,0x32,0x34,0x61,0x39,0x3c,0x2f,0x73,0x74,0x45, - 0x76,0x74,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63, - 0x65,0x49,0x44,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a, - 0x77,0x68,0x65,0x6e,0x3e,0x32,0x30,0x31,0x34,0x2d, - 0x30,0x33,0x2d,0x31,0x35,0x54,0x31,0x36,0x3a,0x32, - 0x35,0x3a,0x30,0x32,0x2d,0x30,0x35,0x3a,0x30,0x30, - 0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x77,0x68, - 0x65,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a,0x73, - 0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x41,0x67,0x65, - 0x6e,0x74,0x3e,0x41,0x64,0x6f,0x62,0x65,0x20,0x50, - 0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x43, - 0x43,0x20,0x28,0x57,0x69,0x6e,0x64,0x6f,0x77,0x73, - 0x29,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x73, - 0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x41,0x67,0x65, - 0x6e,0x74,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a,0x63, - 0x68,0x61,0x6e,0x67,0x65,0x64,0x3e,0x2f,0x3c,0x2f, - 0x73,0x74,0x45,0x76,0x74,0x3a,0x63,0x68,0x61,0x6e, - 0x67,0x65,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,0x0a, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x53,0x65, - 0x71,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x3c,0x2f,0x78,0x6d,0x70,0x4d,0x4d,0x3a, - 0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x3e,0x0a,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78, - 0x6d,0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72, - 0x54,0x6f,0x6f,0x6c,0x3e,0x41,0x64,0x6f,0x62,0x65, - 0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70, - 0x20,0x43,0x43,0x20,0x28,0x57,0x69,0x6e,0x64,0x6f, - 0x77,0x73,0x29,0x3c,0x2f,0x78,0x6d,0x70,0x3a,0x43, - 0x72,0x65,0x61,0x74,0x6f,0x72,0x54,0x6f,0x6f,0x6c, - 0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x3c,0x78,0x6d,0x70,0x3a,0x43,0x72,0x65,0x61, - 0x74,0x65,0x44,0x61,0x74,0x65,0x3e,0x32,0x30,0x31, - 0x34,0x2d,0x30,0x33,0x2d,0x31,0x35,0x54,0x31,0x36, - 0x3a,0x31,0x36,0x3a,0x30,0x36,0x2d,0x30,0x35,0x3a, - 0x30,0x30,0x3c,0x2f,0x78,0x6d,0x70,0x3a,0x43,0x72, - 0x65,0x61,0x74,0x65,0x44,0x61,0x74,0x65,0x3e,0x0a, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c, - 0x78,0x6d,0x70,0x3a,0x4d,0x6f,0x64,0x69,0x66,0x79, - 0x44,0x61,0x74,0x65,0x3e,0x32,0x30,0x31,0x34,0x2d, - 0x30,0x33,0x2d,0x31,0x35,0x54,0x31,0x36,0x3a,0x32, - 0x35,0x3a,0x30,0x32,0x2d,0x30,0x35,0x3a,0x30,0x30, - 0x3c,0x2f,0x78,0x6d,0x70,0x3a,0x4d,0x6f,0x64,0x69, - 0x66,0x79,0x44,0x61,0x74,0x65,0x3e,0x0a,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78,0x6d, - 0x70,0x3a,0x4d,0x65,0x74,0x61,0x64,0x61,0x74,0x61, - 0x44,0x61,0x74,0x65,0x3e,0x32,0x30,0x31,0x34,0x2d, - 0x30,0x33,0x2d,0x31,0x35,0x54,0x31,0x36,0x3a,0x32, - 0x35,0x3a,0x30,0x32,0x2d,0x30,0x35,0x3a,0x30,0x30, - 0x3c,0x2f,0x78,0x6d,0x70,0x3a,0x4d,0x65,0x74,0x61, - 0x64,0x61,0x74,0x61,0x44,0x61,0x74,0x65,0x3e,0x0a, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c, - 0x64,0x63,0x3a,0x66,0x6f,0x72,0x6d,0x61,0x74,0x3e, - 0x69,0x6d,0x61,0x67,0x65,0x2f,0x70,0x6e,0x67,0x3c, - 0x2f,0x64,0x63,0x3a,0x66,0x6f,0x72,0x6d,0x61,0x74, - 0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x3c,0x70,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f, - 0x70,0x3a,0x43,0x6f,0x6c,0x6f,0x72,0x4d,0x6f,0x64, - 0x65,0x3e,0x33,0x3c,0x2f,0x70,0x68,0x6f,0x74,0x6f, - 0x73,0x68,0x6f,0x70,0x3a,0x43,0x6f,0x6c,0x6f,0x72, - 0x4d,0x6f,0x64,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x3c,0x70,0x68,0x6f,0x74, - 0x6f,0x73,0x68,0x6f,0x70,0x3a,0x44,0x6f,0x63,0x75, - 0x6d,0x65,0x6e,0x74,0x41,0x6e,0x63,0x65,0x73,0x74, - 0x6f,0x72,0x73,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x72,0x64, - 0x66,0x3a,0x42,0x61,0x67,0x3e,0x0a,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e, - 0x78,0x6d,0x70,0x2e,0x64,0x69,0x64,0x3a,0x30,0x30, - 0x37,0x39,0x36,0x32,0x32,0x31,0x39,0x44,0x38,0x44, - 0x31,0x31,0x45,0x33,0x41,0x39,0x31,0x44,0x42,0x44, - 0x46,0x44,0x34,0x30,0x39,0x39,0x32,0x45,0x45,0x33, - 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,0x0a, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x42,0x61, - 0x67,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x3c,0x2f,0x70,0x68,0x6f,0x74,0x6f,0x73, - 0x68,0x6f,0x70,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65, - 0x6e,0x74,0x41,0x6e,0x63,0x65,0x73,0x74,0x6f,0x72, - 0x73,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x3c,0x74,0x69,0x66,0x66,0x3a,0x4f,0x72, - 0x69,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x3e, - 0x31,0x3c,0x2f,0x74,0x69,0x66,0x66,0x3a,0x4f,0x72, - 0x69,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x3e, - 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x3c,0x74,0x69,0x66,0x66,0x3a,0x58,0x52,0x65,0x73, - 0x6f,0x6c,0x75,0x74,0x69,0x6f,0x6e,0x3e,0x37,0x32, - 0x30,0x30,0x30,0x30,0x2f,0x31,0x30,0x30,0x30,0x30, - 0x3c,0x2f,0x74,0x69,0x66,0x66,0x3a,0x58,0x52,0x65, - 0x73,0x6f,0x6c,0x75,0x74,0x69,0x6f,0x6e,0x3e,0x0a, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c, - 0x74,0x69,0x66,0x66,0x3a,0x59,0x52,0x65,0x73,0x6f, - 0x6c,0x75,0x74,0x69,0x6f,0x6e,0x3e,0x37,0x32,0x30, - 0x30,0x30,0x30,0x2f,0x31,0x30,0x30,0x30,0x30,0x3c, - 0x2f,0x74,0x69,0x66,0x66,0x3a,0x59,0x52,0x65,0x73, - 0x6f,0x6c,0x75,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74, - 0x69,0x66,0x66,0x3a,0x52,0x65,0x73,0x6f,0x6c,0x75, - 0x74,0x69,0x6f,0x6e,0x55,0x6e,0x69,0x74,0x3e,0x32, - 0x3c,0x2f,0x74,0x69,0x66,0x66,0x3a,0x52,0x65,0x73, - 0x6f,0x6c,0x75,0x74,0x69,0x6f,0x6e,0x55,0x6e,0x69, - 0x74,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x3c,0x65,0x78,0x69,0x66,0x3a,0x43,0x6f, - 0x6c,0x6f,0x72,0x53,0x70,0x61,0x63,0x65,0x3e,0x36, - 0x35,0x35,0x33,0x35,0x3c,0x2f,0x65,0x78,0x69,0x66, - 0x3a,0x43,0x6f,0x6c,0x6f,0x72,0x53,0x70,0x61,0x63, - 0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x3c,0x65,0x78,0x69,0x66,0x3a,0x50,0x69, - 0x78,0x65,0x6c,0x58,0x44,0x69,0x6d,0x65,0x6e,0x73, - 0x69,0x6f,0x6e,0x3e,0x33,0x37,0x3c,0x2f,0x65,0x78, - 0x69,0x66,0x3a,0x50,0x69,0x78,0x65,0x6c,0x58,0x44, - 0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x3e,0x0a, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c, - 0x65,0x78,0x69,0x66,0x3a,0x50,0x69,0x78,0x65,0x6c, - 0x59,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e, - 0x3e,0x33,0x37,0x3c,0x2f,0x65,0x78,0x69,0x66,0x3a, - 0x50,0x69,0x78,0x65,0x6c,0x59,0x44,0x69,0x6d,0x65, - 0x6e,0x73,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20, - 0x20,0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x44, - 0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e, - 0x3e,0x0a,0x20,0x20,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,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,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,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,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,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,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,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,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,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,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,0x0a,0x3c,0x3f,0x78, - 0x70,0x61,0x63,0x6b,0x65,0x74,0x20,0x65,0x6e,0x64, - 0x3d,0x22,0x77,0x22,0x3f,0x3e,0x93,0x4e,0x9a,0xa4, - 0x00,0x00,0x00,0x20,0x63,0x48,0x52,0x4d,0x00,0x00, - 0x7a,0x25,0x00,0x00,0x80,0x83,0x00,0x00,0xf9,0xff, - 0x00,0x00,0x80,0xe9,0x00,0x00,0x75,0x30,0x00,0x00, - 0xea,0x60,0x00,0x00,0x3a,0x98,0x00,0x00,0x17,0x6f, - 0x92,0x5f,0xc5,0x46,0x00,0x00,0x03,0x0f,0x49,0x44, - 0x41,0x54,0x78,0xda,0xd4,0x98,0xcd,0x4b,0x54,0x51, - 0x18,0xc6,0x7f,0x33,0x0c,0x35,0x8a,0x44,0x25,0xa5, - 0x84,0x59,0x66,0x45,0x64,0x56,0xa8,0x51,0xba,0xd0, - 0xa4,0x0f,0xa1,0xb0,0x85,0x04,0x2d,0x02,0xdb,0x04, - 0x41,0x0b,0xa3,0xd5,0xd0,0x3f,0xd0,0xa2,0x45,0xd8, - 0xc7,0xae,0x88,0xc0,0x36,0x51,0x49,0xdf,0x44,0x81, - 0x95,0x0b,0x4b,0x4a,0x31,0x30,0x09,0x53,0x32,0xa1, - 0xac,0x34,0x89,0x1a,0x4a,0xad,0xb4,0xcd,0x73,0xe1, - 0x72,0xb8,0x33,0xf7,0x5c,0x87,0x69,0xea,0x81,0xcb, - 0x3b,0xf7,0xdc,0x77,0xce,0xfb,0x70,0xce,0xfb,0x75, - 0x4e,0x28,0x16,0x8b,0x11,0x10,0xab,0x81,0xbb,0xc0, - 0x0a,0x20,0xe4,0xa3,0xfb,0x0e,0xd8,0x09,0xf4,0x05, - 0x31,0x10,0x21,0x38,0x9e,0x00,0x0b,0x81,0x1e,0x60, - 0x24,0x89,0xde,0x62,0xa0,0x1c,0x68,0x03,0xf2,0xd3, - 0x49,0x6a,0xbd,0x08,0xdd,0x06,0xea,0x2d,0xf4,0xdb, - 0x80,0x5a,0x60,0x15,0xf0,0xda,0xd6,0x48,0x38,0x20, - 0xa9,0x95,0x92,0xdd,0xc6,0xf8,0x41,0x60,0x1a,0x38, - 0x64,0x8c,0x3b,0xdb,0x56,0x1a,0xc4,0x48,0x98,0xd9, - 0x61,0xc6,0xf5,0x3b,0x0a,0x9c,0x96,0x7f,0x35,0xeb, - 0x3d,0x25,0x84,0x49,0x1d,0x97,0x81,0x2c,0xad,0x4a, - 0x14,0xb8,0x9a,0x69,0x52,0x9b,0xe4,0x5b,0x1f,0x81, - 0x12,0xe0,0x03,0xb0,0x0b,0xd8,0x9c,0x49,0x52,0xad, - 0xda,0xb6,0x09,0x45,0xe5,0x84,0xde,0xaf,0xa5,0x32, - 0x69,0x24,0x45,0x52,0x79,0x92,0xcb,0xf4,0xb8,0xd3, - 0x41,0xc6,0x48,0xcd,0x21,0x0d,0x08,0xf3,0x0f,0xc2, - 0xbd,0x52,0x6b,0x81,0x32,0x1f,0xfd,0x8a,0x59,0xda, - 0xa9,0x06,0xb2,0x7d,0x74,0x7a,0x80,0x5e,0x87,0xd4, - 0x1a,0xa0,0x1d,0x58,0x14,0xc0,0xc8,0xb0,0xa5,0xde, - 0x80,0xe4,0x11,0x4b,0xfd,0x71,0xa0,0x32,0x02,0x3c, - 0x14,0xa1,0xfb,0xc0,0x4b,0x8b,0x3f,0x0e,0x02,0x17, - 0x2c,0x8d,0x34,0x03,0xbf,0x81,0x22,0x0b,0xdd,0x62, - 0x60,0x0f,0x70,0x27,0xa2,0x62,0xf9,0x0c,0xa8,0xf3, - 0x50,0xcc,0x06,0x76,0x00,0x37,0x7c,0x26,0xcc,0x51, - 0xf1,0xed,0x02,0xe2,0xc6,0xb7,0x33,0x1e,0x2e,0xf3, - 0x2b,0xc1,0x3c,0x2f,0x80,0xd2,0xb0,0x6b,0xd9,0x4c, - 0x1c,0x00,0x3e,0x03,0xd7,0x81,0x75,0x49,0xa2,0xaf, - 0x03,0xf8,0x06,0x3c,0x92,0xec,0xf0,0x89,0xca,0x49, - 0x25,0xd9,0x6a,0x8f,0x6f,0x23,0x40,0x28,0x9c,0xa0, - 0xe5,0xe8,0x02,0x2e,0xba,0xea,0x58,0x4e,0x02,0x03, - 0x8f,0x81,0x4a,0xf9,0x58,0x8b,0x64,0xa5,0xc6,0x93, - 0x45,0x7c,0x9e,0x74,0xee,0x79,0xcd,0x6d,0x92,0x3a, - 0xa6,0xc6,0xac,0xcc,0xc2,0x07,0xe6,0x03,0x5b,0x80, - 0xb7,0x4a,0x9c,0x8d,0x92,0xc3,0x1a,0x9f,0x67,0x31, - 0x47,0x1d,0x30,0x06,0x1c,0x4e,0x44,0x2a,0x0a,0x1c, - 0x0f,0x90,0x50,0x9d,0x2d,0x6d,0x37,0xc6,0xdb,0x8d, - 0xef,0x7e,0x98,0x0b,0x9c,0x4d,0x44,0x6a,0x02,0x88, - 0x01,0x3f,0x2d,0x27,0xeb,0x95,0xac,0xf1,0xc8,0x49, - 0x33,0xae,0xef,0x7e,0x98,0x32,0x53,0x86,0xb9,0x7d, - 0x27,0x80,0x25,0xf2,0x29,0x3f,0x7c,0x01,0x9e,0x02, - 0x85,0xda,0xc2,0x4b,0x92,0x85,0x40,0x27,0xf0,0xd5, - 0x62,0x8e,0x07,0x40,0xae,0x19,0xa1,0x5e,0x8e,0x3e, - 0xa6,0xcc,0xdd,0xa8,0xd5,0x23,0x89,0x81,0x1a,0x75, - 0x07,0x85,0xc0,0x7e,0x60,0xa9,0xa2,0xaf,0x26,0x09, - 0x91,0x69,0x60,0x14,0xd8,0xaa,0x43,0x45,0xdc,0xab, - 0xcc,0xcc,0x68,0x75,0x4c,0xb4,0x00,0x57,0xe4,0x8c, - 0x7d,0x49,0x96,0xbe,0x4a,0x11,0x54,0xa6,0x36,0x39, - 0xee,0xb3,0x3a,0x59,0xfa,0x9f,0x17,0x72,0x1d,0x52, - 0x83,0xea,0xa1,0x6f,0xba,0xca,0x82,0xd7,0x8a,0x38, - 0x78,0xe3,0x91,0x10,0xe3,0x1e,0x0e,0xef,0xa0,0x09, - 0x58,0x6e,0xb1,0x95,0x1b,0xb4,0x43,0xef,0x23,0xc0, - 0x6e,0xf9,0x40,0x3d,0xf6,0xf8,0x01,0x9c,0xb7,0xd0, - 0x3b,0x0a,0x9c,0x0c,0x30,0xef,0x28,0xb0,0x2d,0x02, - 0xf4,0x03,0x0b,0xd4,0x25,0x6c,0xf4,0x69,0x67,0x2a, - 0x14,0x29,0x05,0x96,0x46,0x8a,0x25,0x4f,0x01,0xcf, - 0x7d,0xfc,0xac,0x1b,0x78,0x65,0xb6,0x2e,0x7d,0x16, - 0x27,0xd9,0xef,0x01,0x2a,0xbe,0x99,0xbb,0x5a,0xff, - 0xeb,0x26,0x2f,0x55,0x52,0x53,0x8a,0x5e,0xf3,0x99, - 0xcc,0x24,0xa9,0x51,0xc9,0x21,0x25,0xd2,0x21,0xbd, - 0x7f,0xca,0x24,0xa9,0x06,0xad,0x4c,0x54,0xdd,0x41, - 0x96,0xde,0x1b,0x32,0x49,0xaa,0x53,0xd7,0x42,0xf9, - 0xaa,0x75,0x79,0xc0,0x2d,0x35,0x8d,0x19,0x3d,0xcd, - 0xec,0x55,0x39,0x2a,0x91,0xdc,0x97,0x29,0x47,0x0f, - 0x19,0xdd,0x45,0x93,0xb6,0xad,0xc9,0x55,0x2f,0xff, - 0xda,0x61,0xd4,0x69,0x47,0xaa,0x8c,0xf1,0x73,0x7a, - 0x4c,0x14,0x19,0x57,0x42,0x69,0x21,0xd5,0xaf,0xc8, - 0xda,0xae,0x0c,0x9d,0x2c,0xca,0x0a,0x54,0x53,0xc7, - 0x9d,0x4c,0x9d,0xce,0x63,0x7b,0xad,0x8e,0x63,0xe5, - 0x16,0x77,0x58,0x03,0xba,0x85,0x09,0x84,0x3f,0x03, - 0x00,0xe0,0x20,0xa8,0x96,0x09,0xf3,0x09,0x77,0x00, - 0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60, - 0x82 -}; diff --git a/data/converted/help_dpad_left_svg.cpp b/data/converted/help_dpad_left_svg.cpp new file mode 100644 index 000000000..2ca162b7c --- /dev/null +++ b/data/converted/help_dpad_left_svg.cpp @@ -0,0 +1,330 @@ +//this file was auto-generated from "dpad_left.svg" by res2h + +#include "../Resources.h" + +const size_t help_dpad_left_svg_size = 3221; +const unsigned char help_dpad_left_svg_data[3221] = { + 0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20, + 0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22, + 0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a, + 0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62, + 0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61, + 0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33, + 0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e, + 0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72, + 0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30, + 0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20, + 0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f, + 0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20, + 0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f, + 0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20, + 0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45, + 0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44, + 0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64, + 0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22, + 0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45, + 0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a, + 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f, + 0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76, + 0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78, + 0x6c,0x69,0x6e,0x6b,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,0x78, + 0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30, + 0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78, + 0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68, + 0x3d,0x22,0x33,0x37,0x2e,0x31,0x33,0x34,0x70,0x78, + 0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22, + 0x33,0x37,0x2e,0x31,0x33,0x34,0x70,0x78,0x22,0x20, + 0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30, + 0x20,0x30,0x20,0x33,0x37,0x2e,0x31,0x33,0x34,0x20, + 0x33,0x37,0x2e,0x31,0x33,0x34,0x22,0x20,0x65,0x6e, + 0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67, + 0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77, + 0x20,0x30,0x20,0x30,0x20,0x33,0x37,0x2e,0x31,0x33, + 0x34,0x20,0x33,0x37,0x2e,0x31,0x33,0x34,0x22,0x20, + 0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d, + 0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22, + 0x3e,0x0d,0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c, + 0x67,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x67,0x3e,0x0d, + 0x0a,0x09,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20, + 0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37, + 0x37,0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32, + 0x32,0x2e,0x31,0x32,0x33,0x2c,0x33,0x37,0x2e,0x30, + 0x39,0x37,0x68,0x2d,0x37,0x2e,0x31,0x31,0x31,0x63, + 0x2d,0x32,0x2e,0x32,0x38,0x39,0x2c,0x30,0x2d,0x33, + 0x2e,0x31,0x31,0x39,0x2d,0x31,0x2e,0x38,0x36,0x36, + 0x2d,0x33,0x2e,0x31,0x31,0x39,0x2d,0x33,0x2e,0x31, + 0x32,0x31,0x76,0x2d,0x38,0x2e,0x37,0x33,0x31,0x48, + 0x33,0x2e,0x31,0x35,0x38,0x63,0x2d,0x32,0x2e,0x32, + 0x39,0x2c,0x30,0x2d,0x33,0x2e,0x31,0x32,0x31,0x2d, + 0x31,0x2e,0x38,0x36,0x36,0x2d,0x33,0x2e,0x31,0x32, + 0x31,0x2d,0x33,0x2e,0x31,0x32,0x31,0x0d,0x0a,0x09, + 0x09,0x09,0x09,0x76,0x2d,0x37,0x2e,0x31,0x31,0x32, + 0x63,0x30,0x2d,0x32,0x2e,0x32,0x38,0x39,0x2c,0x31, + 0x2e,0x38,0x36,0x37,0x2d,0x33,0x2e,0x31,0x32,0x2c, + 0x33,0x2e,0x31,0x32,0x31,0x2d,0x33,0x2e,0x31,0x32, + 0x68,0x38,0x2e,0x37,0x33,0x34,0x56,0x33,0x2e,0x31, + 0x35,0x39,0x63,0x30,0x2d,0x32,0x2e,0x32,0x39,0x2c, + 0x31,0x2e,0x38,0x36,0x35,0x2d,0x33,0x2e,0x31,0x32, + 0x31,0x2c,0x33,0x2e,0x31,0x31,0x39,0x2d,0x33,0x2e, + 0x31,0x32,0x31,0x68,0x37,0x2e,0x31,0x31,0x31,0x63, + 0x32,0x2e,0x32,0x39,0x2c,0x30,0x2c,0x33,0x2e,0x31, + 0x32,0x31,0x2c,0x31,0x2e,0x38,0x36,0x37,0x2c,0x33, + 0x2e,0x31,0x32,0x31,0x2c,0x33,0x2e,0x31,0x32,0x31, + 0x76,0x38,0x2e,0x37,0x33,0x32,0x0d,0x0a,0x09,0x09, + 0x09,0x09,0x68,0x38,0x2e,0x37,0x33,0x32,0x63,0x32, + 0x2e,0x32,0x39,0x2c,0x30,0x2c,0x33,0x2e,0x31,0x32, + 0x31,0x2c,0x31,0x2e,0x38,0x36,0x36,0x2c,0x33,0x2e, + 0x31,0x32,0x31,0x2c,0x33,0x2e,0x31,0x32,0x76,0x37, + 0x2e,0x31,0x31,0x32,0x63,0x30,0x2c,0x32,0x2e,0x32, + 0x39,0x2d,0x31,0x2e,0x38,0x36,0x36,0x2c,0x33,0x2e, + 0x31,0x32,0x31,0x2d,0x33,0x2e,0x31,0x32,0x31,0x2c, + 0x33,0x2e,0x31,0x32,0x31,0x68,0x2d,0x38,0x2e,0x37, + 0x33,0x32,0x76,0x38,0x2e,0x37,0x33,0x31,0x0d,0x0a, + 0x09,0x09,0x09,0x09,0x43,0x32,0x35,0x2e,0x32,0x34, + 0x34,0x2c,0x33,0x36,0x2e,0x32,0x36,0x36,0x2c,0x32, + 0x33,0x2e,0x33,0x37,0x37,0x2c,0x33,0x37,0x2e,0x30, + 0x39,0x37,0x2c,0x32,0x32,0x2e,0x31,0x32,0x33,0x2c, + 0x33,0x37,0x2e,0x30,0x39,0x37,0x7a,0x20,0x4d,0x33, + 0x2e,0x31,0x35,0x38,0x2c,0x31,0x33,0x2e,0x33,0x39, + 0x31,0x63,0x2d,0x30,0x2e,0x33,0x37,0x36,0x2c,0x30, + 0x2e,0x30,0x30,0x36,0x2d,0x31,0x2e,0x36,0x32,0x31, + 0x2c,0x30,0x2e,0x31,0x33,0x39,0x2d,0x31,0x2e,0x36, + 0x32,0x31,0x2c,0x31,0x2e,0x36,0x32,0x76,0x37,0x2e, + 0x31,0x31,0x32,0x0d,0x0a,0x09,0x09,0x09,0x09,0x63, + 0x30,0x2e,0x30,0x30,0x36,0x2c,0x30,0x2e,0x33,0x37, + 0x36,0x2c,0x30,0x2e,0x31,0x33,0x39,0x2c,0x31,0x2e, + 0x36,0x32,0x31,0x2c,0x31,0x2e,0x36,0x32,0x31,0x2c, + 0x31,0x2e,0x36,0x32,0x31,0x68,0x31,0x30,0x2e,0x32, + 0x33,0x34,0x76,0x31,0x30,0x2e,0x32,0x33,0x31,0x63, + 0x30,0x2e,0x30,0x30,0x35,0x2c,0x30,0x2e,0x33,0x37, + 0x36,0x2c,0x30,0x2e,0x31,0x33,0x39,0x2c,0x31,0x2e, + 0x36,0x32,0x31,0x2c,0x31,0x2e,0x36,0x31,0x39,0x2c, + 0x31,0x2e,0x36,0x32,0x31,0x68,0x37,0x2e,0x31,0x30, + 0x38,0x0d,0x0a,0x09,0x09,0x09,0x09,0x63,0x30,0x2e, + 0x33,0x38,0x34,0x2d,0x30,0x2e,0x30,0x30,0x36,0x2c, + 0x31,0x2e,0x36,0x32,0x34,0x2d,0x30,0x2e,0x31,0x34, + 0x32,0x2c,0x31,0x2e,0x36,0x32,0x34,0x2d,0x31,0x2e, + 0x36,0x32,0x31,0x56,0x32,0x33,0x2e,0x37,0x34,0x35, + 0x68,0x31,0x30,0x2e,0x32,0x33,0x32,0x63,0x30,0x2e, + 0x33,0x37,0x36,0x2d,0x30,0x2e,0x30,0x30,0x36,0x2c, + 0x31,0x2e,0x36,0x32,0x31,0x2d,0x30,0x2e,0x31,0x34, + 0x2c,0x31,0x2e,0x36,0x32,0x31,0x2d,0x31,0x2e,0x36, + 0x32,0x31,0x76,0x2d,0x37,0x2e,0x31,0x31,0x32,0x0d, + 0x0a,0x09,0x09,0x09,0x09,0x63,0x2d,0x30,0x2e,0x30, + 0x30,0x36,0x2d,0x30,0x2e,0x33,0x37,0x36,0x2d,0x30, + 0x2e,0x31,0x34,0x2d,0x31,0x2e,0x36,0x32,0x2d,0x31, + 0x2e,0x36,0x32,0x31,0x2d,0x31,0x2e,0x36,0x32,0x48, + 0x32,0x33,0x2e,0x37,0x34,0x34,0x56,0x33,0x2e,0x31, + 0x35,0x39,0x63,0x2d,0x30,0x2e,0x30,0x30,0x36,0x2d, + 0x30,0x2e,0x33,0x37,0x36,0x2d,0x30,0x2e,0x31,0x34, + 0x2d,0x31,0x2e,0x36,0x32,0x31,0x2d,0x31,0x2e,0x36, + 0x32,0x31,0x2d,0x31,0x2e,0x36,0x32,0x31,0x68,0x2d, + 0x37,0x2e,0x31,0x31,0x31,0x0d,0x0a,0x09,0x09,0x09, + 0x09,0x63,0x2d,0x30,0x2e,0x33,0x37,0x36,0x2c,0x30, + 0x2e,0x30,0x30,0x36,0x2d,0x31,0x2e,0x36,0x31,0x39, + 0x2c,0x30,0x2e,0x31,0x33,0x39,0x2d,0x31,0x2e,0x36, + 0x31,0x39,0x2c,0x31,0x2e,0x36,0x32,0x31,0x76,0x31, + 0x30,0x2e,0x32,0x33,0x32,0x48,0x33,0x2e,0x31,0x35, + 0x38,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x09,0x3c, + 0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e, + 0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x09, + 0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c, + 0x3d,0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22, + 0x20,0x64,0x3d,0x22,0x4d,0x31,0x38,0x2e,0x35,0x36, + 0x38,0x2c,0x32,0x32,0x2e,0x32,0x31,0x38,0x63,0x2d, + 0x32,0x2e,0x30,0x31,0x33,0x2c,0x30,0x2d,0x33,0x2e, + 0x36,0x35,0x2d,0x31,0x2e,0x36,0x33,0x38,0x2d,0x33, + 0x2e,0x36,0x35,0x2d,0x33,0x2e,0x36,0x35,0x31,0x63, + 0x30,0x2d,0x32,0x2e,0x30,0x31,0x33,0x2c,0x31,0x2e, + 0x36,0x33,0x38,0x2d,0x33,0x2e,0x36,0x35,0x2c,0x33, + 0x2e,0x36,0x35,0x2d,0x33,0x2e,0x36,0x35,0x73,0x33, + 0x2e,0x36,0x35,0x2c,0x31,0x2e,0x36,0x33,0x38,0x2c, + 0x33,0x2e,0x36,0x35,0x2c,0x33,0x2e,0x36,0x35,0x0d, + 0x0a,0x09,0x09,0x09,0x43,0x32,0x32,0x2e,0x32,0x31, + 0x38,0x2c,0x32,0x30,0x2e,0x35,0x38,0x31,0x2c,0x32, + 0x30,0x2e,0x35,0x38,0x31,0x2c,0x32,0x32,0x2e,0x32, + 0x31,0x38,0x2c,0x31,0x38,0x2e,0x35,0x36,0x38,0x2c, + 0x32,0x32,0x2e,0x32,0x31,0x38,0x7a,0x20,0x4d,0x31, + 0x38,0x2e,0x35,0x36,0x38,0x2c,0x31,0x36,0x2e,0x34, + 0x31,0x37,0x63,0x2d,0x31,0x2e,0x31,0x38,0x36,0x2c, + 0x30,0x2d,0x32,0x2e,0x31,0x35,0x2c,0x30,0x2e,0x39, + 0x36,0x35,0x2d,0x32,0x2e,0x31,0x35,0x2c,0x32,0x2e, + 0x31,0x35,0x63,0x30,0x2c,0x31,0x2e,0x31,0x38,0x36, + 0x2c,0x30,0x2e,0x39,0x36,0x35,0x2c,0x32,0x2e,0x31, + 0x35,0x31,0x2c,0x32,0x2e,0x31,0x35,0x2c,0x32,0x2e, + 0x31,0x35,0x31,0x0d,0x0a,0x09,0x09,0x09,0x73,0x32, + 0x2e,0x31,0x35,0x2d,0x30,0x2e,0x39,0x36,0x35,0x2c, + 0x32,0x2e,0x31,0x35,0x2d,0x32,0x2e,0x31,0x35,0x31, + 0x43,0x32,0x30,0x2e,0x37,0x31,0x38,0x2c,0x31,0x37, + 0x2e,0x33,0x38,0x31,0x2c,0x31,0x39,0x2e,0x37,0x35, + 0x33,0x2c,0x31,0x36,0x2e,0x34,0x31,0x37,0x2c,0x31, + 0x38,0x2e,0x35,0x36,0x38,0x2c,0x31,0x36,0x2e,0x34, + 0x31,0x37,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c, + 0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d, + 0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66, + 0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37, + 0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32,0x31, + 0x2e,0x35,0x37,0x33,0x2c,0x38,0x2e,0x36,0x35,0x34, + 0x68,0x2d,0x36,0x2e,0x30,0x31,0x31,0x63,0x2d,0x30, + 0x2e,0x32,0x37,0x34,0x2c,0x30,0x2d,0x30,0x2e,0x35, + 0x32,0x36,0x2d,0x30,0x2e,0x31,0x35,0x2d,0x30,0x2e, + 0x36,0x35,0x38,0x2d,0x30,0x2e,0x33,0x39,0x63,0x2d, + 0x30,0x2e,0x31,0x33,0x31,0x2d,0x30,0x2e,0x32,0x34, + 0x31,0x2d,0x30,0x2e,0x31,0x32,0x31,0x2d,0x30,0x2e, + 0x35,0x33,0x34,0x2c,0x30,0x2e,0x30,0x32,0x37,0x2d, + 0x30,0x2e,0x37,0x36,0x35,0x6c,0x33,0x2e,0x30,0x30, + 0x35,0x2d,0x34,0x2e,0x36,0x38,0x34,0x0d,0x0a,0x09, + 0x09,0x09,0x63,0x30,0x2e,0x32,0x37,0x36,0x2d,0x30, + 0x2e,0x34,0x33,0x31,0x2c,0x30,0x2e,0x39,0x38,0x36, + 0x2d,0x30,0x2e,0x34,0x33,0x2c,0x31,0x2e,0x32,0x36, + 0x33,0x2c,0x30,0x6c,0x33,0x2e,0x30,0x30,0x35,0x2c, + 0x34,0x2e,0x36,0x38,0x34,0x63,0x30,0x2e,0x31,0x34, + 0x38,0x2c,0x30,0x2e,0x32,0x33,0x31,0x2c,0x30,0x2e, + 0x31,0x35,0x39,0x2c,0x30,0x2e,0x35,0x32,0x34,0x2c, + 0x30,0x2e,0x30,0x32,0x37,0x2c,0x30,0x2e,0x37,0x36, + 0x35,0x43,0x32,0x32,0x2e,0x30,0x39,0x39,0x2c,0x38, + 0x2e,0x35,0x30,0x34,0x2c,0x32,0x31,0x2e,0x38,0x34, + 0x37,0x2c,0x38,0x2e,0x36,0x35,0x34,0x2c,0x32,0x31, + 0x2e,0x35,0x37,0x33,0x2c,0x38,0x2e,0x36,0x35,0x34, + 0x7a,0x0d,0x0a,0x09,0x09,0x09,0x20,0x4d,0x31,0x36, + 0x2e,0x39,0x33,0x34,0x2c,0x37,0x2e,0x31,0x35,0x34, + 0x68,0x33,0x2e,0x32,0x36,0x37,0x6c,0x2d,0x31,0x2e, + 0x36,0x33,0x34,0x2d,0x32,0x2e,0x35,0x34,0x35,0x4c, + 0x31,0x36,0x2e,0x39,0x33,0x34,0x2c,0x37,0x2e,0x31, + 0x35,0x34,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c, + 0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d, + 0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66, + 0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37, + 0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x33,0x2e, + 0x31,0x36,0x32,0x2c,0x31,0x38,0x2e,0x35,0x36,0x38, + 0x6c,0x34,0x2e,0x36,0x38,0x34,0x2c,0x33,0x2e,0x30, + 0x30,0x35,0x76,0x2d,0x36,0x2e,0x30,0x31,0x31,0x4c, + 0x33,0x2e,0x31,0x36,0x32,0x2c,0x31,0x38,0x2e,0x35, + 0x36,0x38,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x09, + 0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c, + 0x3d,0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22, + 0x20,0x64,0x3d,0x22,0x4d,0x37,0x2e,0x38,0x34,0x35, + 0x2c,0x32,0x32,0x2e,0x33,0x32,0x33,0x63,0x2d,0x30, + 0x2e,0x31,0x34,0x31,0x2c,0x30,0x2d,0x30,0x2e,0x32, + 0x38,0x32,0x2d,0x30,0x2e,0x30,0x34,0x2d,0x30,0x2e, + 0x34,0x30,0x35,0x2d,0x30,0x2e,0x31,0x31,0x39,0x6c, + 0x2d,0x34,0x2e,0x36,0x38,0x34,0x2d,0x33,0x2e,0x30, + 0x30,0x34,0x63,0x2d,0x30,0x2e,0x32,0x31,0x35,0x2d, + 0x30,0x2e,0x31,0x33,0x38,0x2d,0x30,0x2e,0x33,0x34, + 0x35,0x2d,0x30,0x2e,0x33,0x37,0x36,0x2d,0x30,0x2e, + 0x33,0x34,0x35,0x2d,0x30,0x2e,0x36,0x33,0x31,0x0d, + 0x0a,0x09,0x09,0x09,0x73,0x30,0x2e,0x31,0x33,0x2d, + 0x30,0x2e,0x34,0x39,0x33,0x2c,0x30,0x2e,0x33,0x34, + 0x35,0x2d,0x30,0x2e,0x36,0x33,0x31,0x6c,0x34,0x2e, + 0x36,0x38,0x34,0x2d,0x33,0x2e,0x30,0x30,0x36,0x63, + 0x30,0x2e,0x32,0x33,0x31,0x2d,0x30,0x2e,0x31,0x34, + 0x37,0x2c,0x30,0x2e,0x35,0x32,0x34,0x2d,0x30,0x2e, + 0x31,0x35,0x38,0x2c,0x30,0x2e,0x37,0x36,0x35,0x2d, + 0x30,0x2e,0x30,0x32,0x37,0x63,0x30,0x2e,0x32,0x34, + 0x2c,0x30,0x2e,0x31,0x33,0x31,0x2c,0x30,0x2e,0x33, + 0x39,0x2c,0x30,0x2e,0x33,0x38,0x34,0x2c,0x30,0x2e, + 0x33,0x39,0x2c,0x30,0x2e,0x36,0x35,0x38,0x76,0x36, + 0x2e,0x30,0x31,0x31,0x0d,0x0a,0x09,0x09,0x09,0x63, + 0x30,0x2c,0x30,0x2e,0x32,0x37,0x34,0x2d,0x30,0x2e, + 0x31,0x35,0x2c,0x30,0x2e,0x35,0x32,0x36,0x2d,0x30, + 0x2e,0x33,0x39,0x2c,0x30,0x2e,0x36,0x35,0x38,0x43, + 0x38,0x2e,0x30,0x39,0x33,0x2c,0x32,0x32,0x2e,0x32, + 0x39,0x32,0x2c,0x37,0x2e,0x39,0x36,0x39,0x2c,0x32, + 0x32,0x2e,0x33,0x32,0x33,0x2c,0x37,0x2e,0x38,0x34, + 0x35,0x2c,0x32,0x32,0x2e,0x33,0x32,0x33,0x7a,0x20, + 0x4d,0x34,0x2e,0x35,0x35,0x2c,0x31,0x38,0x2e,0x35, + 0x36,0x38,0x6c,0x32,0x2e,0x35,0x34,0x35,0x2c,0x31, + 0x2e,0x36,0x33,0x33,0x76,0x2d,0x33,0x2e,0x32,0x36, + 0x36,0x4c,0x34,0x2e,0x35,0x35,0x2c,0x31,0x38,0x2e, + 0x35,0x36,0x38,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09, + 0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e, + 0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20, + 0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37, + 0x37,0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32, + 0x39,0x2e,0x32,0x33,0x32,0x2c,0x32,0x32,0x2e,0x33, + 0x32,0x32,0x63,0x2d,0x30,0x2e,0x31,0x32,0x34,0x2c, + 0x30,0x2d,0x30,0x2e,0x32,0x34,0x37,0x2d,0x30,0x2e, + 0x30,0x33,0x2d,0x30,0x2e,0x33,0x35,0x39,0x2d,0x30, + 0x2e,0x30,0x39,0x32,0x63,0x2d,0x30,0x2e,0x32,0x34, + 0x31,0x2d,0x30,0x2e,0x31,0x33,0x32,0x2d,0x30,0x2e, + 0x33,0x39,0x31,0x2d,0x30,0x2e,0x33,0x38,0x34,0x2d, + 0x30,0x2e,0x33,0x39,0x31,0x2d,0x30,0x2e,0x36,0x35, + 0x38,0x76,0x2d,0x36,0x2e,0x30,0x31,0x0d,0x0a,0x09, + 0x09,0x09,0x63,0x30,0x2d,0x30,0x2e,0x32,0x37,0x34, + 0x2c,0x30,0x2e,0x31,0x34,0x39,0x2d,0x30,0x2e,0x35, + 0x32,0x36,0x2c,0x30,0x2e,0x33,0x39,0x31,0x2d,0x30, + 0x2e,0x36,0x35,0x38,0x63,0x30,0x2e,0x32,0x33,0x39, + 0x2d,0x30,0x2e,0x31,0x33,0x31,0x2c,0x30,0x2e,0x35, + 0x33,0x33,0x2d,0x30,0x2e,0x31,0x32,0x33,0x2c,0x30, + 0x2e,0x37,0x36,0x35,0x2c,0x30,0x2e,0x30,0x32,0x37, + 0x6c,0x34,0x2e,0x36,0x38,0x34,0x2c,0x33,0x2e,0x30, + 0x30,0x35,0x63,0x30,0x2e,0x32,0x31,0x35,0x2c,0x30, + 0x2e,0x31,0x33,0x38,0x2c,0x30,0x2e,0x33,0x34,0x35, + 0x2c,0x30,0x2e,0x33,0x37,0x36,0x2c,0x30,0x2e,0x33, + 0x34,0x35,0x2c,0x30,0x2e,0x36,0x33,0x31,0x0d,0x0a, + 0x09,0x09,0x09,0x73,0x2d,0x30,0x2e,0x31,0x33,0x2c, + 0x30,0x2e,0x34,0x39,0x33,0x2d,0x30,0x2e,0x33,0x34, + 0x35,0x2c,0x30,0x2e,0x36,0x33,0x31,0x6c,0x2d,0x34, + 0x2e,0x36,0x38,0x34,0x2c,0x33,0x2e,0x30,0x30,0x34, + 0x43,0x32,0x39,0x2e,0x35,0x31,0x34,0x2c,0x32,0x32, + 0x2e,0x32,0x38,0x32,0x2c,0x32,0x39,0x2e,0x33,0x37, + 0x33,0x2c,0x32,0x32,0x2e,0x33,0x32,0x32,0x2c,0x32, + 0x39,0x2e,0x32,0x33,0x32,0x2c,0x32,0x32,0x2e,0x33, + 0x32,0x32,0x7a,0x20,0x4d,0x32,0x39,0x2e,0x39,0x38, + 0x32,0x2c,0x31,0x36,0x2e,0x39,0x33,0x34,0x56,0x32, + 0x30,0x2e,0x32,0x6c,0x32,0x2e,0x35,0x34,0x35,0x2d, + 0x31,0x2e,0x36,0x33,0x33,0x0d,0x0a,0x09,0x09,0x09, + 0x4c,0x32,0x39,0x2e,0x39,0x38,0x32,0x2c,0x31,0x36, + 0x2e,0x39,0x33,0x34,0x7a,0x22,0x2f,0x3e,0x0d,0x0a, + 0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67, + 0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68, + 0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37, + 0x37,0x37,0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d, + 0x31,0x38,0x2e,0x35,0x36,0x37,0x2c,0x33,0x34,0x2e, + 0x36,0x36,0x35,0x4c,0x31,0x38,0x2e,0x35,0x36,0x37, + 0x2c,0x33,0x34,0x2e,0x36,0x36,0x35,0x63,0x2d,0x30, + 0x2e,0x32,0x35,0x35,0x2c,0x30,0x2d,0x30,0x2e,0x34, + 0x39,0x33,0x2d,0x30,0x2e,0x31,0x33,0x2d,0x30,0x2e, + 0x36,0x33,0x31,0x2d,0x30,0x2e,0x33,0x34,0x35,0x6c, + 0x2d,0x33,0x2e,0x30,0x30,0x35,0x2d,0x34,0x2e,0x36, + 0x38,0x34,0x0d,0x0a,0x09,0x09,0x09,0x63,0x2d,0x30, + 0x2e,0x31,0x34,0x38,0x2d,0x30,0x2e,0x32,0x33,0x31, + 0x2d,0x30,0x2e,0x31,0x35,0x38,0x2d,0x30,0x2e,0x35, + 0x32,0x34,0x2d,0x30,0x2e,0x30,0x32,0x37,0x2d,0x30, + 0x2e,0x37,0x36,0x35,0x63,0x30,0x2e,0x31,0x33,0x32, + 0x2d,0x30,0x2e,0x32,0x34,0x31,0x2c,0x30,0x2e,0x33, + 0x38,0x34,0x2d,0x30,0x2e,0x33,0x39,0x31,0x2c,0x30, + 0x2e,0x36,0x35,0x38,0x2d,0x30,0x2e,0x33,0x39,0x31, + 0x68,0x36,0x2e,0x30,0x31,0x31,0x63,0x30,0x2e,0x32, + 0x37,0x34,0x2c,0x30,0x2c,0x30,0x2e,0x35,0x32,0x36, + 0x2c,0x30,0x2e,0x31,0x34,0x39,0x2c,0x30,0x2e,0x36, + 0x35,0x38,0x2c,0x30,0x2e,0x33,0x39,0x31,0x0d,0x0a, + 0x09,0x09,0x09,0x63,0x30,0x2e,0x31,0x33,0x32,0x2c, + 0x30,0x2e,0x32,0x34,0x2c,0x30,0x2e,0x31,0x32,0x31, + 0x2c,0x30,0x2e,0x35,0x33,0x33,0x2d,0x30,0x2e,0x30, + 0x32,0x37,0x2c,0x30,0x2e,0x37,0x36,0x35,0x6c,0x2d, + 0x33,0x2e,0x30,0x30,0x35,0x2c,0x34,0x2e,0x36,0x38, + 0x34,0x43,0x31,0x39,0x2e,0x30,0x36,0x2c,0x33,0x34, + 0x2e,0x35,0x33,0x35,0x2c,0x31,0x38,0x2e,0x38,0x32, + 0x32,0x2c,0x33,0x34,0x2e,0x36,0x36,0x35,0x2c,0x31, + 0x38,0x2e,0x35,0x36,0x37,0x2c,0x33,0x34,0x2e,0x36, + 0x36,0x35,0x7a,0x20,0x4d,0x31,0x36,0x2e,0x39,0x33, + 0x34,0x2c,0x32,0x39,0x2e,0x39,0x38,0x31,0x6c,0x31, + 0x2e,0x36,0x33,0x33,0x2c,0x32,0x2e,0x35,0x34,0x35, + 0x0d,0x0a,0x09,0x09,0x09,0x6c,0x31,0x2e,0x36,0x33, + 0x34,0x2d,0x32,0x2e,0x35,0x34,0x35,0x48,0x31,0x36, + 0x2e,0x39,0x33,0x34,0x7a,0x22,0x2f,0x3e,0x0d,0x0a, + 0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x2f,0x67, + 0x3e,0x0d,0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d, + 0x0a +}; diff --git a/data/converted/help_dpad_leftright_svg.cpp b/data/converted/help_dpad_leftright_svg.cpp new file mode 100644 index 000000000..ef3b91d2b --- /dev/null +++ b/data/converted/help_dpad_leftright_svg.cpp @@ -0,0 +1,337 @@ +//this file was auto-generated from "dpad_leftright.svg" by res2h + +#include "../Resources.h" + +const size_t help_dpad_leftright_svg_size = 3299; +const unsigned char help_dpad_leftright_svg_data[3299] = { + 0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20, + 0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22, + 0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a, + 0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62, + 0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61, + 0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33, + 0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e, + 0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72, + 0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30, + 0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20, + 0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f, + 0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20, + 0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f, + 0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20, + 0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45, + 0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44, + 0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64, + 0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22, + 0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45, + 0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a, + 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f, + 0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76, + 0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78, + 0x6c,0x69,0x6e,0x6b,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,0x78, + 0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30, + 0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78, + 0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68, + 0x3d,0x22,0x33,0x37,0x2e,0x31,0x33,0x34,0x70,0x78, + 0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22, + 0x33,0x37,0x2e,0x31,0x33,0x34,0x70,0x78,0x22,0x20, + 0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30, + 0x20,0x30,0x20,0x33,0x37,0x2e,0x31,0x33,0x34,0x20, + 0x33,0x37,0x2e,0x31,0x33,0x34,0x22,0x20,0x65,0x6e, + 0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67, + 0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77, + 0x20,0x30,0x20,0x30,0x20,0x33,0x37,0x2e,0x31,0x33, + 0x34,0x20,0x33,0x37,0x2e,0x31,0x33,0x34,0x22,0x20, + 0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d, + 0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22, + 0x3e,0x0d,0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c, + 0x67,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x67,0x3e,0x0d, + 0x0a,0x09,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20, + 0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37, + 0x37,0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32, + 0x32,0x2e,0x31,0x32,0x33,0x2c,0x33,0x37,0x2e,0x30, + 0x39,0x37,0x68,0x2d,0x37,0x2e,0x31,0x31,0x31,0x63, + 0x2d,0x32,0x2e,0x32,0x38,0x39,0x2c,0x30,0x2d,0x33, + 0x2e,0x31,0x31,0x39,0x2d,0x31,0x2e,0x38,0x36,0x36, + 0x2d,0x33,0x2e,0x31,0x31,0x39,0x2d,0x33,0x2e,0x31, + 0x32,0x31,0x76,0x2d,0x38,0x2e,0x37,0x33,0x31,0x48, + 0x33,0x2e,0x31,0x35,0x38,0x63,0x2d,0x32,0x2e,0x32, + 0x39,0x2c,0x30,0x2d,0x33,0x2e,0x31,0x32,0x31,0x2d, + 0x31,0x2e,0x38,0x36,0x36,0x2d,0x33,0x2e,0x31,0x32, + 0x31,0x2d,0x33,0x2e,0x31,0x32,0x31,0x0d,0x0a,0x09, + 0x09,0x09,0x09,0x76,0x2d,0x37,0x2e,0x31,0x31,0x32, + 0x63,0x30,0x2d,0x32,0x2e,0x32,0x38,0x39,0x2c,0x31, + 0x2e,0x38,0x36,0x37,0x2d,0x33,0x2e,0x31,0x32,0x2c, + 0x33,0x2e,0x31,0x32,0x31,0x2d,0x33,0x2e,0x31,0x32, + 0x68,0x38,0x2e,0x37,0x33,0x34,0x56,0x33,0x2e,0x31, + 0x35,0x39,0x63,0x30,0x2d,0x32,0x2e,0x32,0x39,0x2c, + 0x31,0x2e,0x38,0x36,0x35,0x2d,0x33,0x2e,0x31,0x32, + 0x31,0x2c,0x33,0x2e,0x31,0x31,0x39,0x2d,0x33,0x2e, + 0x31,0x32,0x31,0x68,0x37,0x2e,0x31,0x31,0x31,0x63, + 0x32,0x2e,0x32,0x39,0x2c,0x30,0x2c,0x33,0x2e,0x31, + 0x32,0x31,0x2c,0x31,0x2e,0x38,0x36,0x37,0x2c,0x33, + 0x2e,0x31,0x32,0x31,0x2c,0x33,0x2e,0x31,0x32,0x31, + 0x76,0x38,0x2e,0x37,0x33,0x32,0x0d,0x0a,0x09,0x09, + 0x09,0x09,0x68,0x38,0x2e,0x37,0x33,0x32,0x63,0x32, + 0x2e,0x32,0x39,0x2c,0x30,0x2c,0x33,0x2e,0x31,0x32, + 0x31,0x2c,0x31,0x2e,0x38,0x36,0x36,0x2c,0x33,0x2e, + 0x31,0x32,0x31,0x2c,0x33,0x2e,0x31,0x32,0x76,0x37, + 0x2e,0x31,0x31,0x32,0x63,0x30,0x2c,0x32,0x2e,0x32, + 0x39,0x2d,0x31,0x2e,0x38,0x36,0x36,0x2c,0x33,0x2e, + 0x31,0x32,0x31,0x2d,0x33,0x2e,0x31,0x32,0x31,0x2c, + 0x33,0x2e,0x31,0x32,0x31,0x68,0x2d,0x38,0x2e,0x37, + 0x33,0x32,0x76,0x38,0x2e,0x37,0x33,0x31,0x0d,0x0a, + 0x09,0x09,0x09,0x09,0x43,0x32,0x35,0x2e,0x32,0x34, + 0x34,0x2c,0x33,0x36,0x2e,0x32,0x36,0x36,0x2c,0x32, + 0x33,0x2e,0x33,0x37,0x37,0x2c,0x33,0x37,0x2e,0x30, + 0x39,0x37,0x2c,0x32,0x32,0x2e,0x31,0x32,0x33,0x2c, + 0x33,0x37,0x2e,0x30,0x39,0x37,0x7a,0x20,0x4d,0x33, + 0x2e,0x31,0x35,0x38,0x2c,0x31,0x33,0x2e,0x33,0x39, + 0x31,0x63,0x2d,0x30,0x2e,0x33,0x37,0x36,0x2c,0x30, + 0x2e,0x30,0x30,0x36,0x2d,0x31,0x2e,0x36,0x32,0x31, + 0x2c,0x30,0x2e,0x31,0x33,0x39,0x2d,0x31,0x2e,0x36, + 0x32,0x31,0x2c,0x31,0x2e,0x36,0x32,0x76,0x37,0x2e, + 0x31,0x31,0x32,0x0d,0x0a,0x09,0x09,0x09,0x09,0x63, + 0x30,0x2e,0x30,0x30,0x36,0x2c,0x30,0x2e,0x33,0x37, + 0x36,0x2c,0x30,0x2e,0x31,0x33,0x39,0x2c,0x31,0x2e, + 0x36,0x32,0x31,0x2c,0x31,0x2e,0x36,0x32,0x31,0x2c, + 0x31,0x2e,0x36,0x32,0x31,0x68,0x31,0x30,0x2e,0x32, + 0x33,0x34,0x76,0x31,0x30,0x2e,0x32,0x33,0x31,0x63, + 0x30,0x2e,0x30,0x30,0x35,0x2c,0x30,0x2e,0x33,0x37, + 0x36,0x2c,0x30,0x2e,0x31,0x33,0x39,0x2c,0x31,0x2e, + 0x36,0x32,0x31,0x2c,0x31,0x2e,0x36,0x31,0x39,0x2c, + 0x31,0x2e,0x36,0x32,0x31,0x68,0x37,0x2e,0x31,0x30, + 0x38,0x0d,0x0a,0x09,0x09,0x09,0x09,0x63,0x30,0x2e, + 0x33,0x38,0x34,0x2d,0x30,0x2e,0x30,0x30,0x36,0x2c, + 0x31,0x2e,0x36,0x32,0x34,0x2d,0x30,0x2e,0x31,0x34, + 0x32,0x2c,0x31,0x2e,0x36,0x32,0x34,0x2d,0x31,0x2e, + 0x36,0x32,0x31,0x56,0x32,0x33,0x2e,0x37,0x34,0x35, + 0x68,0x31,0x30,0x2e,0x32,0x33,0x32,0x63,0x30,0x2e, + 0x33,0x37,0x36,0x2d,0x30,0x2e,0x30,0x30,0x36,0x2c, + 0x31,0x2e,0x36,0x32,0x31,0x2d,0x30,0x2e,0x31,0x34, + 0x2c,0x31,0x2e,0x36,0x32,0x31,0x2d,0x31,0x2e,0x36, + 0x32,0x31,0x76,0x2d,0x37,0x2e,0x31,0x31,0x32,0x0d, + 0x0a,0x09,0x09,0x09,0x09,0x63,0x2d,0x30,0x2e,0x30, + 0x30,0x36,0x2d,0x30,0x2e,0x33,0x37,0x36,0x2d,0x30, + 0x2e,0x31,0x34,0x2d,0x31,0x2e,0x36,0x32,0x2d,0x31, + 0x2e,0x36,0x32,0x31,0x2d,0x31,0x2e,0x36,0x32,0x48, + 0x32,0x33,0x2e,0x37,0x34,0x34,0x56,0x33,0x2e,0x31, + 0x35,0x39,0x63,0x2d,0x30,0x2e,0x30,0x30,0x36,0x2d, + 0x30,0x2e,0x33,0x37,0x36,0x2d,0x30,0x2e,0x31,0x34, + 0x2d,0x31,0x2e,0x36,0x32,0x31,0x2d,0x31,0x2e,0x36, + 0x32,0x31,0x2d,0x31,0x2e,0x36,0x32,0x31,0x68,0x2d, + 0x37,0x2e,0x31,0x31,0x31,0x0d,0x0a,0x09,0x09,0x09, + 0x09,0x63,0x2d,0x30,0x2e,0x33,0x37,0x36,0x2c,0x30, + 0x2e,0x30,0x30,0x36,0x2d,0x31,0x2e,0x36,0x31,0x39, + 0x2c,0x30,0x2e,0x31,0x33,0x39,0x2d,0x31,0x2e,0x36, + 0x31,0x39,0x2c,0x31,0x2e,0x36,0x32,0x31,0x76,0x31, + 0x30,0x2e,0x32,0x33,0x32,0x48,0x33,0x2e,0x31,0x35, + 0x38,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x09,0x3c, + 0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e, + 0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x09, + 0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c, + 0x3d,0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22, + 0x20,0x64,0x3d,0x22,0x4d,0x31,0x38,0x2e,0x35,0x36, + 0x38,0x2c,0x32,0x32,0x2e,0x32,0x31,0x38,0x63,0x2d, + 0x32,0x2e,0x30,0x31,0x33,0x2c,0x30,0x2d,0x33,0x2e, + 0x36,0x35,0x2d,0x31,0x2e,0x36,0x33,0x38,0x2d,0x33, + 0x2e,0x36,0x35,0x2d,0x33,0x2e,0x36,0x35,0x31,0x63, + 0x30,0x2d,0x32,0x2e,0x30,0x31,0x33,0x2c,0x31,0x2e, + 0x36,0x33,0x38,0x2d,0x33,0x2e,0x36,0x35,0x2c,0x33, + 0x2e,0x36,0x35,0x2d,0x33,0x2e,0x36,0x35,0x73,0x33, + 0x2e,0x36,0x35,0x2c,0x31,0x2e,0x36,0x33,0x38,0x2c, + 0x33,0x2e,0x36,0x35,0x2c,0x33,0x2e,0x36,0x35,0x0d, + 0x0a,0x09,0x09,0x09,0x43,0x32,0x32,0x2e,0x32,0x31, + 0x38,0x2c,0x32,0x30,0x2e,0x35,0x38,0x31,0x2c,0x32, + 0x30,0x2e,0x35,0x38,0x31,0x2c,0x32,0x32,0x2e,0x32, + 0x31,0x38,0x2c,0x31,0x38,0x2e,0x35,0x36,0x38,0x2c, + 0x32,0x32,0x2e,0x32,0x31,0x38,0x7a,0x20,0x4d,0x31, + 0x38,0x2e,0x35,0x36,0x38,0x2c,0x31,0x36,0x2e,0x34, + 0x31,0x37,0x63,0x2d,0x31,0x2e,0x31,0x38,0x36,0x2c, + 0x30,0x2d,0x32,0x2e,0x31,0x35,0x2c,0x30,0x2e,0x39, + 0x36,0x35,0x2d,0x32,0x2e,0x31,0x35,0x2c,0x32,0x2e, + 0x31,0x35,0x63,0x30,0x2c,0x31,0x2e,0x31,0x38,0x36, + 0x2c,0x30,0x2e,0x39,0x36,0x35,0x2c,0x32,0x2e,0x31, + 0x35,0x31,0x2c,0x32,0x2e,0x31,0x35,0x2c,0x32,0x2e, + 0x31,0x35,0x31,0x0d,0x0a,0x09,0x09,0x09,0x73,0x32, + 0x2e,0x31,0x35,0x2d,0x30,0x2e,0x39,0x36,0x35,0x2c, + 0x32,0x2e,0x31,0x35,0x2d,0x32,0x2e,0x31,0x35,0x31, + 0x43,0x32,0x30,0x2e,0x37,0x31,0x38,0x2c,0x31,0x37, + 0x2e,0x33,0x38,0x31,0x2c,0x31,0x39,0x2e,0x37,0x35, + 0x33,0x2c,0x31,0x36,0x2e,0x34,0x31,0x37,0x2c,0x31, + 0x38,0x2e,0x35,0x36,0x38,0x2c,0x31,0x36,0x2e,0x34, + 0x31,0x37,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c, + 0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d, + 0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66, + 0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37, + 0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32,0x31, + 0x2e,0x35,0x37,0x33,0x2c,0x38,0x2e,0x36,0x35,0x34, + 0x68,0x2d,0x36,0x2e,0x30,0x31,0x31,0x63,0x2d,0x30, + 0x2e,0x32,0x37,0x34,0x2c,0x30,0x2d,0x30,0x2e,0x35, + 0x32,0x36,0x2d,0x30,0x2e,0x31,0x35,0x2d,0x30,0x2e, + 0x36,0x35,0x38,0x2d,0x30,0x2e,0x33,0x39,0x63,0x2d, + 0x30,0x2e,0x31,0x33,0x31,0x2d,0x30,0x2e,0x32,0x34, + 0x31,0x2d,0x30,0x2e,0x31,0x32,0x31,0x2d,0x30,0x2e, + 0x35,0x33,0x34,0x2c,0x30,0x2e,0x30,0x32,0x37,0x2d, + 0x30,0x2e,0x37,0x36,0x35,0x6c,0x33,0x2e,0x30,0x30, + 0x35,0x2d,0x34,0x2e,0x36,0x38,0x34,0x0d,0x0a,0x09, + 0x09,0x09,0x63,0x30,0x2e,0x32,0x37,0x36,0x2d,0x30, + 0x2e,0x34,0x33,0x31,0x2c,0x30,0x2e,0x39,0x38,0x36, + 0x2d,0x30,0x2e,0x34,0x33,0x2c,0x31,0x2e,0x32,0x36, + 0x33,0x2c,0x30,0x6c,0x33,0x2e,0x30,0x30,0x35,0x2c, + 0x34,0x2e,0x36,0x38,0x34,0x63,0x30,0x2e,0x31,0x34, + 0x38,0x2c,0x30,0x2e,0x32,0x33,0x31,0x2c,0x30,0x2e, + 0x31,0x35,0x39,0x2c,0x30,0x2e,0x35,0x32,0x34,0x2c, + 0x30,0x2e,0x30,0x32,0x37,0x2c,0x30,0x2e,0x37,0x36, + 0x35,0x43,0x32,0x32,0x2e,0x30,0x39,0x39,0x2c,0x38, + 0x2e,0x35,0x30,0x34,0x2c,0x32,0x31,0x2e,0x38,0x34, + 0x37,0x2c,0x38,0x2e,0x36,0x35,0x34,0x2c,0x32,0x31, + 0x2e,0x35,0x37,0x33,0x2c,0x38,0x2e,0x36,0x35,0x34, + 0x7a,0x0d,0x0a,0x09,0x09,0x09,0x20,0x4d,0x31,0x36, + 0x2e,0x39,0x33,0x34,0x2c,0x37,0x2e,0x31,0x35,0x34, + 0x68,0x33,0x2e,0x32,0x36,0x37,0x6c,0x2d,0x31,0x2e, + 0x36,0x33,0x34,0x2d,0x32,0x2e,0x35,0x34,0x35,0x4c, + 0x31,0x36,0x2e,0x39,0x33,0x34,0x2c,0x37,0x2e,0x31, + 0x35,0x34,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c, + 0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d, + 0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66, + 0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37, + 0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x33,0x2e, + 0x31,0x36,0x32,0x2c,0x31,0x38,0x2e,0x35,0x36,0x38, + 0x6c,0x34,0x2e,0x36,0x38,0x34,0x2c,0x33,0x2e,0x30, + 0x30,0x35,0x76,0x2d,0x36,0x2e,0x30,0x31,0x31,0x4c, + 0x33,0x2e,0x31,0x36,0x32,0x2c,0x31,0x38,0x2e,0x35, + 0x36,0x38,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x09, + 0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c, + 0x3d,0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22, + 0x20,0x64,0x3d,0x22,0x4d,0x37,0x2e,0x38,0x34,0x35, + 0x2c,0x32,0x32,0x2e,0x33,0x32,0x33,0x63,0x2d,0x30, + 0x2e,0x31,0x34,0x31,0x2c,0x30,0x2d,0x30,0x2e,0x32, + 0x38,0x32,0x2d,0x30,0x2e,0x30,0x34,0x2d,0x30,0x2e, + 0x34,0x30,0x35,0x2d,0x30,0x2e,0x31,0x31,0x39,0x6c, + 0x2d,0x34,0x2e,0x36,0x38,0x34,0x2d,0x33,0x2e,0x30, + 0x30,0x34,0x63,0x2d,0x30,0x2e,0x32,0x31,0x35,0x2d, + 0x30,0x2e,0x31,0x33,0x38,0x2d,0x30,0x2e,0x33,0x34, + 0x35,0x2d,0x30,0x2e,0x33,0x37,0x36,0x2d,0x30,0x2e, + 0x33,0x34,0x35,0x2d,0x30,0x2e,0x36,0x33,0x31,0x0d, + 0x0a,0x09,0x09,0x09,0x73,0x30,0x2e,0x31,0x33,0x2d, + 0x30,0x2e,0x34,0x39,0x33,0x2c,0x30,0x2e,0x33,0x34, + 0x35,0x2d,0x30,0x2e,0x36,0x33,0x31,0x6c,0x34,0x2e, + 0x36,0x38,0x34,0x2d,0x33,0x2e,0x30,0x30,0x36,0x63, + 0x30,0x2e,0x32,0x33,0x31,0x2d,0x30,0x2e,0x31,0x34, + 0x37,0x2c,0x30,0x2e,0x35,0x32,0x34,0x2d,0x30,0x2e, + 0x31,0x35,0x38,0x2c,0x30,0x2e,0x37,0x36,0x35,0x2d, + 0x30,0x2e,0x30,0x32,0x37,0x63,0x30,0x2e,0x32,0x34, + 0x2c,0x30,0x2e,0x31,0x33,0x31,0x2c,0x30,0x2e,0x33, + 0x39,0x2c,0x30,0x2e,0x33,0x38,0x34,0x2c,0x30,0x2e, + 0x33,0x39,0x2c,0x30,0x2e,0x36,0x35,0x38,0x76,0x36, + 0x2e,0x30,0x31,0x31,0x0d,0x0a,0x09,0x09,0x09,0x63, + 0x30,0x2c,0x30,0x2e,0x32,0x37,0x34,0x2d,0x30,0x2e, + 0x31,0x35,0x2c,0x30,0x2e,0x35,0x32,0x36,0x2d,0x30, + 0x2e,0x33,0x39,0x2c,0x30,0x2e,0x36,0x35,0x38,0x43, + 0x38,0x2e,0x30,0x39,0x33,0x2c,0x32,0x32,0x2e,0x32, + 0x39,0x32,0x2c,0x37,0x2e,0x39,0x36,0x39,0x2c,0x32, + 0x32,0x2e,0x33,0x32,0x33,0x2c,0x37,0x2e,0x38,0x34, + 0x35,0x2c,0x32,0x32,0x2e,0x33,0x32,0x33,0x7a,0x20, + 0x4d,0x34,0x2e,0x35,0x35,0x2c,0x31,0x38,0x2e,0x35, + 0x36,0x38,0x6c,0x32,0x2e,0x35,0x34,0x35,0x2c,0x31, + 0x2e,0x36,0x33,0x33,0x76,0x2d,0x33,0x2e,0x32,0x36, + 0x36,0x4c,0x34,0x2e,0x35,0x35,0x2c,0x31,0x38,0x2e, + 0x35,0x36,0x38,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09, + 0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e, + 0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20, + 0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37, + 0x37,0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x33, + 0x33,0x2e,0x39,0x31,0x36,0x2c,0x31,0x38,0x2e,0x35, + 0x36,0x37,0x6c,0x2d,0x34,0x2e,0x36,0x38,0x34,0x2d, + 0x33,0x2e,0x30,0x30,0x35,0x76,0x36,0x2e,0x30,0x31, + 0x4c,0x33,0x33,0x2e,0x39,0x31,0x36,0x2c,0x31,0x38, + 0x2e,0x35,0x36,0x37,0x7a,0x22,0x2f,0x3e,0x0d,0x0a, + 0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69, + 0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37,0x37, + 0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32,0x39,0x2e, + 0x32,0x33,0x32,0x2c,0x32,0x32,0x2e,0x33,0x32,0x32, + 0x63,0x2d,0x30,0x2e,0x31,0x32,0x34,0x2c,0x30,0x2d, + 0x30,0x2e,0x32,0x34,0x37,0x2d,0x30,0x2e,0x30,0x33, + 0x2d,0x30,0x2e,0x33,0x35,0x39,0x2d,0x30,0x2e,0x30, + 0x39,0x32,0x63,0x2d,0x30,0x2e,0x32,0x34,0x31,0x2d, + 0x30,0x2e,0x31,0x33,0x32,0x2d,0x30,0x2e,0x33,0x39, + 0x31,0x2d,0x30,0x2e,0x33,0x38,0x34,0x2d,0x30,0x2e, + 0x33,0x39,0x31,0x2d,0x30,0x2e,0x36,0x35,0x38,0x76, + 0x2d,0x36,0x2e,0x30,0x31,0x0d,0x0a,0x09,0x09,0x09, + 0x63,0x30,0x2d,0x30,0x2e,0x32,0x37,0x34,0x2c,0x30, + 0x2e,0x31,0x34,0x39,0x2d,0x30,0x2e,0x35,0x32,0x36, + 0x2c,0x30,0x2e,0x33,0x39,0x31,0x2d,0x30,0x2e,0x36, + 0x35,0x38,0x63,0x30,0x2e,0x32,0x33,0x39,0x2d,0x30, + 0x2e,0x31,0x33,0x31,0x2c,0x30,0x2e,0x35,0x33,0x33, + 0x2d,0x30,0x2e,0x31,0x32,0x33,0x2c,0x30,0x2e,0x37, + 0x36,0x35,0x2c,0x30,0x2e,0x30,0x32,0x37,0x6c,0x34, + 0x2e,0x36,0x38,0x34,0x2c,0x33,0x2e,0x30,0x30,0x35, + 0x63,0x30,0x2e,0x32,0x31,0x35,0x2c,0x30,0x2e,0x31, + 0x33,0x38,0x2c,0x30,0x2e,0x33,0x34,0x35,0x2c,0x30, + 0x2e,0x33,0x37,0x36,0x2c,0x30,0x2e,0x33,0x34,0x35, + 0x2c,0x30,0x2e,0x36,0x33,0x31,0x0d,0x0a,0x09,0x09, + 0x09,0x73,0x2d,0x30,0x2e,0x31,0x33,0x2c,0x30,0x2e, + 0x34,0x39,0x33,0x2d,0x30,0x2e,0x33,0x34,0x35,0x2c, + 0x30,0x2e,0x36,0x33,0x31,0x6c,0x2d,0x34,0x2e,0x36, + 0x38,0x34,0x2c,0x33,0x2e,0x30,0x30,0x34,0x43,0x32, + 0x39,0x2e,0x35,0x31,0x34,0x2c,0x32,0x32,0x2e,0x32, + 0x38,0x32,0x2c,0x32,0x39,0x2e,0x33,0x37,0x33,0x2c, + 0x32,0x32,0x2e,0x33,0x32,0x32,0x2c,0x32,0x39,0x2e, + 0x32,0x33,0x32,0x2c,0x32,0x32,0x2e,0x33,0x32,0x32, + 0x7a,0x20,0x4d,0x32,0x39,0x2e,0x39,0x38,0x32,0x2c, + 0x31,0x36,0x2e,0x39,0x33,0x34,0x56,0x32,0x30,0x2e, + 0x32,0x6c,0x32,0x2e,0x35,0x34,0x35,0x2d,0x31,0x2e, + 0x36,0x33,0x33,0x0d,0x0a,0x09,0x09,0x09,0x4c,0x32, + 0x39,0x2e,0x39,0x38,0x32,0x2c,0x31,0x36,0x2e,0x39, + 0x33,0x34,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c, + 0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d, + 0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66, + 0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37, + 0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,0x38, + 0x2e,0x35,0x36,0x37,0x2c,0x33,0x34,0x2e,0x36,0x36, + 0x35,0x4c,0x31,0x38,0x2e,0x35,0x36,0x37,0x2c,0x33, + 0x34,0x2e,0x36,0x36,0x35,0x63,0x2d,0x30,0x2e,0x32, + 0x35,0x35,0x2c,0x30,0x2d,0x30,0x2e,0x34,0x39,0x33, + 0x2d,0x30,0x2e,0x31,0x33,0x2d,0x30,0x2e,0x36,0x33, + 0x31,0x2d,0x30,0x2e,0x33,0x34,0x35,0x6c,0x2d,0x33, + 0x2e,0x30,0x30,0x35,0x2d,0x34,0x2e,0x36,0x38,0x34, + 0x0d,0x0a,0x09,0x09,0x09,0x63,0x2d,0x30,0x2e,0x31, + 0x34,0x38,0x2d,0x30,0x2e,0x32,0x33,0x31,0x2d,0x30, + 0x2e,0x31,0x35,0x38,0x2d,0x30,0x2e,0x35,0x32,0x34, + 0x2d,0x30,0x2e,0x30,0x32,0x37,0x2d,0x30,0x2e,0x37, + 0x36,0x35,0x63,0x30,0x2e,0x31,0x33,0x32,0x2d,0x30, + 0x2e,0x32,0x34,0x31,0x2c,0x30,0x2e,0x33,0x38,0x34, + 0x2d,0x30,0x2e,0x33,0x39,0x31,0x2c,0x30,0x2e,0x36, + 0x35,0x38,0x2d,0x30,0x2e,0x33,0x39,0x31,0x68,0x36, + 0x2e,0x30,0x31,0x31,0x63,0x30,0x2e,0x32,0x37,0x34, + 0x2c,0x30,0x2c,0x30,0x2e,0x35,0x32,0x36,0x2c,0x30, + 0x2e,0x31,0x34,0x39,0x2c,0x30,0x2e,0x36,0x35,0x38, + 0x2c,0x30,0x2e,0x33,0x39,0x31,0x0d,0x0a,0x09,0x09, + 0x09,0x63,0x30,0x2e,0x31,0x33,0x32,0x2c,0x30,0x2e, + 0x32,0x34,0x2c,0x30,0x2e,0x31,0x32,0x31,0x2c,0x30, + 0x2e,0x35,0x33,0x33,0x2d,0x30,0x2e,0x30,0x32,0x37, + 0x2c,0x30,0x2e,0x37,0x36,0x35,0x6c,0x2d,0x33,0x2e, + 0x30,0x30,0x35,0x2c,0x34,0x2e,0x36,0x38,0x34,0x43, + 0x31,0x39,0x2e,0x30,0x36,0x2c,0x33,0x34,0x2e,0x35, + 0x33,0x35,0x2c,0x31,0x38,0x2e,0x38,0x32,0x32,0x2c, + 0x33,0x34,0x2e,0x36,0x36,0x35,0x2c,0x31,0x38,0x2e, + 0x35,0x36,0x37,0x2c,0x33,0x34,0x2e,0x36,0x36,0x35, + 0x7a,0x20,0x4d,0x31,0x36,0x2e,0x39,0x33,0x34,0x2c, + 0x32,0x39,0x2e,0x39,0x38,0x31,0x6c,0x31,0x2e,0x36, + 0x33,0x33,0x2c,0x32,0x2e,0x35,0x34,0x35,0x0d,0x0a, + 0x09,0x09,0x09,0x6c,0x31,0x2e,0x36,0x33,0x34,0x2d, + 0x32,0x2e,0x35,0x34,0x35,0x48,0x31,0x36,0x2e,0x39, + 0x33,0x34,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c, + 0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d, + 0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d,0x0a +}; diff --git a/data/converted/help_dpad_right_png.cpp b/data/converted/help_dpad_right_png.cpp deleted file mode 100644 index f74f76fc0..000000000 --- a/data/converted/help_dpad_right_png.cpp +++ /dev/null @@ -1,188 +0,0 @@ -//this file was auto-generated from "dpad_right.png" by res2h - -#include "../Resources.h" - -const size_t help_dpad_right_png_size = 1802; -const unsigned char help_dpad_right_png_data[1802] = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x25, - 0x00,0x00,0x00,0x25,0x08,0x06,0x00,0x00,0x00,0xc5, - 0x9e,0x20,0x03,0x00,0x00,0x00,0x19,0x74,0x45,0x58, - 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, - 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, - 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, - 0x00,0x00,0x03,0x68,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,0x20,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,0x41, - 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, - 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, - 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, - 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, - 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, - 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x22,0x3e,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,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,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,0x20,0x78,0x6d,0x6c,0x6e, - 0x73,0x3a,0x73,0x74,0x52,0x65,0x66,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,0x52,0x65,0x66,0x23,0x22,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,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,0x46,0x30,0x31,0x35,0x37,0x37,0x33,0x42, - 0x31,0x31,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, - 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, - 0x41,0x37,0x35,0x33,0x22,0x20,0x78,0x6d,0x70,0x4d, - 0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, - 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, - 0x64,0x3a,0x30,0x30,0x37,0x39,0x36,0x32,0x32,0x31, - 0x39,0x44,0x38,0x44,0x31,0x31,0x45,0x33,0x41,0x39, - 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, - 0x32,0x45,0x45,0x33,0x22,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,0x30,0x30,0x37,0x39,0x36,0x32,0x32,0x30, - 0x39,0x44,0x38,0x44,0x31,0x31,0x45,0x33,0x41,0x39, - 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, - 0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d,0x70,0x3a, - 0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54,0x6f,0x6f, - 0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65,0x20,0x50, - 0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x43, - 0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69,0x6e,0x74, - 0x6f,0x73,0x68,0x29,0x22,0x3e,0x20,0x3c,0x78,0x6d, - 0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69,0x76,0x65, - 0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74,0x52,0x65, - 0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65, - 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69, - 0x64,0x3a,0x46,0x30,0x31,0x35,0x37,0x37,0x33,0x42, - 0x31,0x31,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, - 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, - 0x41,0x37,0x35,0x33,0x22,0x20,0x73,0x74,0x52,0x65, - 0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, - 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, - 0x64,0x3a,0x46,0x30,0x31,0x35,0x37,0x37,0x33,0x42, - 0x31,0x31,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, - 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, - 0x41,0x37,0x35,0x33,0x22,0x2f,0x3e,0x20,0x3c,0x2f, - 0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72,0x69, - 0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c,0x2f,0x72, - 0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20,0x3c,0x2f, - 0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74,0x61,0x3e, - 0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74, - 0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22,0x3f,0x3e, - 0x94,0x89,0x63,0xf5,0x00,0x00,0x03,0x38,0x49,0x44, - 0x41,0x54,0x78,0xda,0xd4,0x98,0x4b,0x68,0x13,0x41, - 0x18,0xc7,0x37,0x71,0x6d,0x7d,0xd5,0x43,0xeb,0xa3, - 0xda,0x0a,0x0a,0xd5,0x8a,0x22,0x11,0x44,0x50,0x11, - 0x6a,0x2b,0x88,0xe2,0x03,0x3c,0x19,0xbd,0x88,0x3d, - 0xd8,0x56,0xd1,0x22,0x2a,0x49,0x45,0x7c,0x55,0xa2, - 0x60,0x35,0xd0,0x83,0x54,0xaa,0x07,0x2f,0x5a,0xc1, - 0x93,0x0f,0xbc,0xf8,0xc2,0x4b,0x14,0xb4,0x07,0x5f, - 0x54,0xd1,0x0a,0x5a,0x6d,0x6d,0xa3,0xa2,0x0d,0x5a, - 0x43,0x7d,0xfc,0x07,0xfe,0x85,0x30,0xec,0xee,0xcc, - 0x6e,0x8c,0xab,0x1f,0xfc,0x58,0x32,0x99,0x9d,0xf9, - 0x66,0xe6,0x7b,0xcd,0x06,0x22,0x91,0x88,0xe1,0x52, - 0xc6,0x81,0xe3,0x60,0x2d,0x28,0x70,0xe8,0xf7,0x15, - 0x5c,0x03,0x5b,0x40,0xaf,0x9b,0x09,0x4c,0xc3,0xbd, - 0xb4,0x81,0x85,0xa0,0x15,0x74,0x3b,0xf4,0x9b,0x00, - 0x6a,0xc1,0x69,0xb0,0x26,0x97,0x4a,0x15,0x83,0xa5, - 0x60,0x37,0x68,0xd2,0xe8,0xff,0x19,0xec,0x07,0x45, - 0xe0,0x83,0xee,0x24,0x41,0x97,0x4a,0x8d,0xe7,0xb3, - 0x43,0x6a,0x5f,0x00,0x92,0x60,0x91,0xd4,0xfe,0x82, - 0x73,0x4c,0x76,0x33,0x49,0xd0,0xf0,0x26,0xbf,0xa4, - 0xdd,0x6e,0xe1,0x6e,0xb4,0x78,0x34,0x89,0x3f,0xa2, - 0x54,0xa6,0x6c,0x07,0x21,0x70,0x0a,0xcc,0x01,0x3b, - 0xfc,0x56,0xaa,0x14,0x1c,0x04,0x57,0x68,0xd4,0x97, - 0xc0,0x3e,0x30,0xc5,0x4f,0xa5,0xe2,0x60,0x0c,0xe8, - 0x07,0x47,0x41,0x8a,0xbf,0xe3,0xd9,0x0c,0x9a,0xed, - 0xf9,0x87,0xf8,0x5c,0x2f,0xb5,0xcf,0xf5,0x53,0xa9, - 0x19,0x46,0x0e,0x24,0x68,0xfc,0x83,0x62,0x4a,0x11, - 0x58,0x65,0xa0,0x65,0x1e,0xe7,0x99,0x05,0xf2,0x14, - 0x7d,0xba,0xc0,0xfb,0x21,0xa5,0x44,0x40,0x3c,0x0b, - 0x56,0xb8,0x88,0x51,0x49,0xcd,0xbe,0xef,0xd8,0xbf, - 0x4d,0xb3,0xff,0x0d,0x10,0x36,0x99,0x9b,0x2a,0xc0, - 0x1e,0x46,0x60,0x95,0xf4,0x80,0x7b,0x9a,0x93,0xdc, - 0x06,0x4b,0xc0,0x44,0x8d,0xbe,0xe2,0x94,0x1a,0xc1, - 0x31,0xa1,0xd4,0x72,0xd0,0x0c,0x8e,0x58,0x74,0x1c, - 0x4e,0x63,0x7e,0xa2,0x18,0x30,0x8f,0x31,0x4b,0x1c, - 0x41,0x5a,0xfa,0xef,0x8e,0x85,0x1d,0xff,0xb4,0x19, - 0x67,0x1a,0xd8,0x18,0xe4,0x80,0x56,0xc9,0x72,0x3e, - 0xb8,0x0f,0x1e,0x39,0xac,0x74,0x18,0x88,0x81,0x4f, - 0xe0,0x25,0x9f,0x31,0xb6,0xdb,0xc9,0x5b,0x70,0x99, - 0x0a,0x58,0xfd,0x57,0x60,0xe5,0x7d,0xa3,0xc1,0x09, - 0x90,0xa0,0x81,0x06,0x40,0xbe,0xcd,0x04,0x87,0x41, - 0x03,0x23,0xf9,0x66,0x3e,0x1b,0xd8,0xee,0x54,0x69, - 0xac,0xe2,0xee,0x47,0xad,0x1c,0x40,0x56,0x6a,0x19, - 0x77,0xa6,0x9e,0xb9,0x6c,0x9b,0xc3,0xe0,0x23,0x98, - 0xf7,0xce,0x33,0x78,0xb6,0xf2,0x79,0x81,0xef,0xe5, - 0x2b,0x8e,0x7c,0x24,0x4d,0xa6,0x1d,0x2c,0xb6,0x53, - 0xca,0xcc,0xd8,0x56,0x61,0xf4,0x5b,0xc1,0x17,0xc5, - 0x8a,0x47,0x81,0x5b,0x52,0xfb,0x4d,0xee,0x76,0xb1, - 0xa6,0x33,0xcc,0x66,0xee,0xb4,0x54,0x6a,0x10,0xac, - 0x04,0x9d,0x5c,0xc1,0x49,0x30,0x56,0xe1,0x85,0xa2, - 0xe4,0xad,0x92,0xda,0xab,0x98,0x03,0x7b,0x34,0x95, - 0xea,0x90,0x2b,0x53,0x39,0xcd,0x5c,0x67,0xf9,0xd1, - 0xc8,0xa3,0x71,0x92,0x01,0x7a,0x6d,0x54,0x72,0xff, - 0x75,0x4c,0xce,0xdf,0x15,0xef,0x7f,0xa3,0xed,0x35, - 0xc9,0x1e,0x6b,0xda,0x14,0xfc,0x3b,0x69,0x2b,0x67, - 0xa8,0xe4,0x80,0xcd,0xc0,0x7b,0x19,0x1c,0x85,0x0d, - 0x86,0xb9,0x43,0x31,0x96,0x2f,0x76,0x22,0xa2,0xf6, - 0x03,0xda,0x5d,0xa7,0x5d,0x9a,0x49,0x31,0xc6,0xc8, - 0x22,0xc2,0xc1,0x3c,0x50,0xee,0x70,0x1b,0xf9,0x41, - 0xfb,0x3b,0x00,0x4a,0xe8,0xd2,0x69,0xc5,0x0e,0x95, - 0xf0,0x3d,0xbb,0x9b,0x52,0x5a,0x28,0x75,0x11,0x6c, - 0x02,0xaf,0xc0,0x6b,0x87,0xdc,0x95,0xb9,0x52,0x39, - 0x20,0xa6,0xf9,0xbe,0x95,0x54,0x30,0xaf,0xaa,0x64, - 0x26,0xa8,0x03,0x57,0x4d,0xde,0x4c,0xa6,0x6a,0xde, - 0x4e,0x86,0x72,0x9f,0xb8,0x20,0xdc,0xd5,0xe8,0x5b, - 0xc9,0x7c,0x16,0xd0,0x1c,0x57,0xdc,0x13,0x6b,0x4c, - 0x26,0xd7,0x4a,0xae,0xa6,0x54,0x31,0x40,0x19,0x93, - 0x6b,0x91,0xe6,0x02,0x26,0x71,0xbc,0xb0,0x22,0xaf, - 0x0a,0x85,0xde,0x80,0x3e,0xd9,0xd0,0x7b,0x35,0x6e, - 0xb2,0x69,0xc3,0x9b,0x3c,0x65,0x50,0xfe,0x7f,0x8b, - 0xbc,0x6c,0x95,0x7a,0xce,0xad,0x97,0x79,0xe6,0x67, - 0x8d,0xfe,0x18,0x4c,0x07,0xe7,0x68,0x13,0xa2,0x26, - 0xda,0x00,0x1e,0xfa,0xb9,0x53,0xf5,0x19,0xd7,0xaa, - 0x28,0xbf,0xc2,0xa4,0xb2,0xbd,0x90,0x66,0xab,0x94, - 0xd8,0x9d,0x43,0xcc,0x5d,0x22,0x57,0xae,0xe6,0x07, - 0x8d,0x2e,0xbf,0x6f,0x33,0x71,0x7a,0x56,0x1d,0x8f, - 0xad,0xd9,0x2f,0x43,0x0f,0x48,0xd5,0x45,0x0d,0xf8, - 0xc8,0xab,0xfb,0xe0,0xdf,0x56,0xaa,0x9b,0xf5,0x75, - 0x48,0x6a,0x4f,0x30,0xa0,0x26,0x2c,0xbe,0x35,0x18, - 0x2e,0xca,0x18,0x4f,0xde,0x97,0x64,0x2a,0x10,0x49, - 0xb8,0x50,0x11,0x6c,0x85,0x27,0x56,0xb3,0x1c,0xea, - 0xcb,0x75,0x48,0xa8,0xa6,0x51,0xd7,0xb2,0xf2,0xb4, - 0x93,0x7e,0x96,0xc6,0xbb,0xdc,0x4e,0xf0,0x5b,0x80, - 0x01,0x00,0x6d,0xd6,0xb5,0x52,0x54,0x06,0x6d,0xa8, - 0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42, - 0x60,0x82 -}; diff --git a/data/converted/help_dpad_right_svg.cpp b/data/converted/help_dpad_right_svg.cpp new file mode 100644 index 000000000..db8c4a7a8 --- /dev/null +++ b/data/converted/help_dpad_right_svg.cpp @@ -0,0 +1,190 @@ +//this file was auto-generated from "dpad_right.svg" by res2h + +#include "../Resources.h" + +const size_t help_dpad_right_svg_size = 1822; +const unsigned char help_dpad_right_svg_data[1822] = { + 0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20, + 0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22, + 0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a, + 0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62, + 0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61, + 0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33, + 0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e, + 0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72, + 0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30, + 0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20, + 0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f, + 0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20, + 0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f, + 0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20, + 0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45, + 0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44, + 0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64, + 0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22, + 0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45, + 0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a, + 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f, + 0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76, + 0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78, + 0x6c,0x69,0x6e,0x6b,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,0x78, + 0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30, + 0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78, + 0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68, + 0x3d,0x22,0x33,0x37,0x2e,0x31,0x33,0x34,0x70,0x78, + 0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22, + 0x33,0x37,0x2e,0x31,0x33,0x34,0x70,0x78,0x22,0x20, + 0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30, + 0x20,0x30,0x20,0x33,0x37,0x2e,0x31,0x33,0x34,0x20, + 0x33,0x37,0x2e,0x31,0x33,0x34,0x22,0x20,0x65,0x6e, + 0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67, + 0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77, + 0x20,0x30,0x20,0x30,0x20,0x33,0x37,0x2e,0x31,0x33, + 0x34,0x20,0x33,0x37,0x2e,0x31,0x33,0x34,0x22,0x20, + 0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d, + 0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22, + 0x3e,0x0d,0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c, + 0x67,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,0x74, + 0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x6e,0x6f, + 0x6e,0x65,0x22,0x20,0x73,0x74,0x72,0x6f,0x6b,0x65, + 0x3d,0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22, + 0x20,0x73,0x74,0x72,0x6f,0x6b,0x65,0x2d,0x77,0x69, + 0x64,0x74,0x68,0x3d,0x22,0x31,0x2e,0x35,0x22,0x20, + 0x73,0x74,0x72,0x6f,0x6b,0x65,0x2d,0x6d,0x69,0x74, + 0x65,0x72,0x6c,0x69,0x6d,0x69,0x74,0x3d,0x22,0x31, + 0x30,0x22,0x20,0x64,0x3d,0x22,0x4d,0x33,0x33,0x2e, + 0x39,0x37,0x36,0x2c,0x31,0x32,0x2e,0x36,0x34,0x31, + 0x68,0x2d,0x39,0x2e,0x34,0x38,0x32,0x56,0x33,0x2e, + 0x31,0x35,0x39,0x0d,0x0a,0x09,0x09,0x09,0x63,0x30, + 0x2c,0x30,0x2c,0x30,0x2d,0x32,0x2e,0x33,0x37,0x31, + 0x2d,0x32,0x2e,0x33,0x37,0x31,0x2d,0x32,0x2e,0x33, + 0x37,0x31,0x68,0x2d,0x37,0x2e,0x31,0x31,0x31,0x63, + 0x30,0x2c,0x30,0x2d,0x32,0x2e,0x33,0x36,0x39,0x2c, + 0x30,0x2d,0x32,0x2e,0x33,0x36,0x39,0x2c,0x32,0x2e, + 0x33,0x37,0x31,0x76,0x39,0x2e,0x34,0x38,0x32,0x48, + 0x33,0x2e,0x31,0x35,0x38,0x63,0x30,0x2c,0x30,0x2d, + 0x32,0x2e,0x33,0x37,0x31,0x2c,0x30,0x2d,0x32,0x2e, + 0x33,0x37,0x31,0x2c,0x32,0x2e,0x33,0x37,0x76,0x37, + 0x2e,0x31,0x31,0x32,0x63,0x30,0x2c,0x30,0x2c,0x30, + 0x2c,0x32,0x2e,0x33,0x37,0x31,0x2c,0x32,0x2e,0x33, + 0x37,0x31,0x2c,0x32,0x2e,0x33,0x37,0x31,0x0d,0x0a, + 0x09,0x09,0x09,0x68,0x39,0x2e,0x34,0x38,0x34,0x76, + 0x39,0x2e,0x34,0x38,0x31,0x63,0x30,0x2c,0x30,0x2c, + 0x30,0x2c,0x32,0x2e,0x33,0x37,0x31,0x2c,0x32,0x2e, + 0x33,0x36,0x39,0x2c,0x32,0x2e,0x33,0x37,0x31,0x68, + 0x37,0x2e,0x31,0x31,0x31,0x63,0x30,0x2c,0x30,0x2c, + 0x32,0x2e,0x33,0x37,0x31,0x2c,0x30,0x2c,0x32,0x2e, + 0x33,0x37,0x31,0x2d,0x32,0x2e,0x33,0x37,0x31,0x76, + 0x2d,0x39,0x2e,0x34,0x38,0x31,0x68,0x39,0x2e,0x34, + 0x38,0x32,0x63,0x30,0x2c,0x30,0x2c,0x32,0x2e,0x33, + 0x37,0x31,0x2c,0x30,0x2c,0x32,0x2e,0x33,0x37,0x31, + 0x2d,0x32,0x2e,0x33,0x37,0x31,0x76,0x2d,0x37,0x2e, + 0x31,0x31,0x32,0x0d,0x0a,0x09,0x09,0x09,0x43,0x33, + 0x36,0x2e,0x33,0x34,0x37,0x2c,0x31,0x35,0x2e,0x30, + 0x31,0x31,0x2c,0x33,0x36,0x2e,0x33,0x34,0x37,0x2c, + 0x31,0x32,0x2e,0x36,0x34,0x31,0x2c,0x33,0x33,0x2e, + 0x39,0x37,0x36,0x2c,0x31,0x32,0x2e,0x36,0x34,0x31, + 0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67, + 0x3e,0x0d,0x0a,0x09,0x3c,0x70,0x61,0x74,0x68,0x20, + 0x66,0x69,0x6c,0x6c,0x3d,0x22,0x6e,0x6f,0x6e,0x65, + 0x22,0x20,0x73,0x74,0x72,0x6f,0x6b,0x65,0x3d,0x22, + 0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20,0x73, + 0x74,0x72,0x6f,0x6b,0x65,0x2d,0x77,0x69,0x64,0x74, + 0x68,0x3d,0x22,0x31,0x2e,0x35,0x22,0x20,0x73,0x74, + 0x72,0x6f,0x6b,0x65,0x2d,0x6d,0x69,0x74,0x65,0x72, + 0x6c,0x69,0x6d,0x69,0x74,0x3d,0x22,0x31,0x30,0x22, + 0x20,0x64,0x3d,0x22,0x4d,0x31,0x38,0x2e,0x35,0x36, + 0x38,0x2c,0x32,0x31,0x2e,0x34,0x36,0x38,0x63,0x31, + 0x2e,0x36,0x30,0x32,0x2c,0x30,0x2c,0x32,0x2e,0x39, + 0x2d,0x31,0x2e,0x32,0x39,0x39,0x2c,0x32,0x2e,0x39, + 0x2d,0x32,0x2e,0x39,0x30,0x31,0x0d,0x0a,0x09,0x09, + 0x63,0x30,0x2d,0x31,0x2e,0x36,0x30,0x32,0x2d,0x31, + 0x2e,0x32,0x39,0x39,0x2d,0x32,0x2e,0x39,0x2d,0x32, + 0x2e,0x39,0x2d,0x32,0x2e,0x39,0x63,0x2d,0x31,0x2e, + 0x36,0x30,0x34,0x2c,0x30,0x2d,0x32,0x2e,0x39,0x2c, + 0x31,0x2e,0x32,0x39,0x39,0x2d,0x32,0x2e,0x39,0x2c, + 0x32,0x2e,0x39,0x43,0x31,0x35,0x2e,0x36,0x36,0x37, + 0x2c,0x32,0x30,0x2e,0x31,0x36,0x39,0x2c,0x31,0x36, + 0x2e,0x39,0x36,0x34,0x2c,0x32,0x31,0x2e,0x34,0x36, + 0x38,0x2c,0x31,0x38,0x2e,0x35,0x36,0x38,0x2c,0x32, + 0x31,0x2e,0x34,0x36,0x38,0x7a,0x22,0x2f,0x3e,0x0d, + 0x0a,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69, + 0x6c,0x6c,0x3d,0x22,0x6e,0x6f,0x6e,0x65,0x22,0x20, + 0x73,0x74,0x72,0x6f,0x6b,0x65,0x3d,0x22,0x23,0x37, + 0x37,0x37,0x37,0x37,0x37,0x22,0x20,0x73,0x74,0x72, + 0x6f,0x6b,0x65,0x2d,0x77,0x69,0x64,0x74,0x68,0x3d, + 0x22,0x31,0x2e,0x35,0x22,0x20,0x73,0x74,0x72,0x6f, + 0x6b,0x65,0x2d,0x6c,0x69,0x6e,0x65,0x6a,0x6f,0x69, + 0x6e,0x3d,0x22,0x72,0x6f,0x75,0x6e,0x64,0x22,0x20, + 0x73,0x74,0x72,0x6f,0x6b,0x65,0x2d,0x6d,0x69,0x74, + 0x65,0x72,0x6c,0x69,0x6d,0x69,0x74,0x3d,0x22,0x31, + 0x30,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,0x38,0x2e, + 0x35,0x36,0x37,0x2c,0x33,0x2e,0x32,0x32,0x0d,0x0a, + 0x09,0x09,0x6c,0x2d,0x33,0x2e,0x30,0x30,0x35,0x2c, + 0x34,0x2e,0x36,0x38,0x34,0x68,0x36,0x2e,0x30,0x31, + 0x31,0x4c,0x31,0x38,0x2e,0x35,0x36,0x37,0x2c,0x33, + 0x2e,0x32,0x32,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09, + 0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c, + 0x3d,0x22,0x6e,0x6f,0x6e,0x65,0x22,0x20,0x73,0x74, + 0x72,0x6f,0x6b,0x65,0x3d,0x22,0x23,0x37,0x37,0x37, + 0x37,0x37,0x37,0x22,0x20,0x73,0x74,0x72,0x6f,0x6b, + 0x65,0x2d,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,0x31, + 0x2e,0x35,0x22,0x20,0x73,0x74,0x72,0x6f,0x6b,0x65, + 0x2d,0x6c,0x69,0x6e,0x65,0x6a,0x6f,0x69,0x6e,0x3d, + 0x22,0x72,0x6f,0x75,0x6e,0x64,0x22,0x20,0x73,0x74, + 0x72,0x6f,0x6b,0x65,0x2d,0x6d,0x69,0x74,0x65,0x72, + 0x6c,0x69,0x6d,0x69,0x74,0x3d,0x22,0x31,0x30,0x22, + 0x20,0x64,0x3d,0x22,0x4d,0x33,0x2e,0x31,0x36,0x32, + 0x2c,0x31,0x38,0x2e,0x35,0x36,0x38,0x0d,0x0a,0x09, + 0x09,0x6c,0x34,0x2e,0x36,0x38,0x34,0x2c,0x33,0x2e, + 0x30,0x30,0x35,0x76,0x2d,0x36,0x2e,0x30,0x31,0x31, + 0x4c,0x33,0x2e,0x31,0x36,0x32,0x2c,0x31,0x38,0x2e, + 0x35,0x36,0x38,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09, + 0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c, + 0x3d,0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22, + 0x20,0x73,0x74,0x72,0x6f,0x6b,0x65,0x3d,0x22,0x23, + 0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20,0x73,0x74, + 0x72,0x6f,0x6b,0x65,0x2d,0x77,0x69,0x64,0x74,0x68, + 0x3d,0x22,0x31,0x2e,0x35,0x22,0x20,0x73,0x74,0x72, + 0x6f,0x6b,0x65,0x2d,0x6c,0x69,0x6e,0x65,0x6a,0x6f, + 0x69,0x6e,0x3d,0x22,0x72,0x6f,0x75,0x6e,0x64,0x22, + 0x20,0x73,0x74,0x72,0x6f,0x6b,0x65,0x2d,0x6d,0x69, + 0x74,0x65,0x72,0x6c,0x69,0x6d,0x69,0x74,0x3d,0x22, + 0x31,0x30,0x22,0x20,0x64,0x3d,0x22,0x4d,0x33,0x33, + 0x2e,0x39,0x31,0x36,0x2c,0x31,0x38,0x2e,0x35,0x36, + 0x37,0x0d,0x0a,0x09,0x09,0x6c,0x2d,0x34,0x2e,0x36, + 0x38,0x34,0x2d,0x33,0x2e,0x30,0x30,0x35,0x76,0x36, + 0x2e,0x30,0x31,0x4c,0x33,0x33,0x2e,0x39,0x31,0x36, + 0x2c,0x31,0x38,0x2e,0x35,0x36,0x37,0x7a,0x22,0x2f, + 0x3e,0x0d,0x0a,0x09,0x3c,0x70,0x61,0x74,0x68,0x20, + 0x66,0x69,0x6c,0x6c,0x3d,0x22,0x6e,0x6f,0x6e,0x65, + 0x22,0x20,0x73,0x74,0x72,0x6f,0x6b,0x65,0x3d,0x22, + 0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20,0x73, + 0x74,0x72,0x6f,0x6b,0x65,0x2d,0x77,0x69,0x64,0x74, + 0x68,0x3d,0x22,0x31,0x2e,0x35,0x22,0x20,0x73,0x74, + 0x72,0x6f,0x6b,0x65,0x2d,0x6c,0x69,0x6e,0x65,0x63, + 0x61,0x70,0x3d,0x22,0x72,0x6f,0x75,0x6e,0x64,0x22, + 0x20,0x73,0x74,0x72,0x6f,0x6b,0x65,0x2d,0x6c,0x69, + 0x6e,0x65,0x6a,0x6f,0x69,0x6e,0x3d,0x22,0x72,0x6f, + 0x75,0x6e,0x64,0x22,0x20,0x73,0x74,0x72,0x6f,0x6b, + 0x65,0x2d,0x6d,0x69,0x74,0x65,0x72,0x6c,0x69,0x6d, + 0x69,0x74,0x3d,0x22,0x31,0x30,0x22,0x20,0x64,0x3d, + 0x22,0x0d,0x0a,0x09,0x09,0x4d,0x31,0x38,0x2e,0x35, + 0x36,0x37,0x2c,0x33,0x33,0x2e,0x39,0x31,0x35,0x6c, + 0x33,0x2e,0x30,0x30,0x36,0x2d,0x34,0x2e,0x36,0x38, + 0x34,0x68,0x2d,0x36,0x2e,0x30,0x31,0x31,0x4c,0x31, + 0x38,0x2e,0x35,0x36,0x37,0x2c,0x33,0x33,0x2e,0x39, + 0x31,0x35,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x3c,0x2f, + 0x67,0x3e,0x0d,0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e, + 0x0d,0x0a +}; diff --git a/data/converted/help_dpad_up_down_png.cpp b/data/converted/help_dpad_up_down_png.cpp deleted file mode 100644 index 8f323dda1..000000000 --- a/data/converted/help_dpad_up_down_png.cpp +++ /dev/null @@ -1,1638 +0,0 @@ -//this file was auto-generated from "dpad_up_down.png" by res2h - -#include "../Resources.h" - -const size_t help_dpad_up_down_png_size = 16306; -const unsigned char help_dpad_up_down_png_data[16306] = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x25, - 0x00,0x00,0x00,0x25,0x08,0x06,0x00,0x00,0x00,0xc5, - 0x9e,0x20,0x03,0x00,0x00,0x00,0x09,0x70,0x48,0x59, - 0x73,0x00,0x00,0x0b,0x13,0x00,0x00,0x0b,0x13,0x01, - 0x00,0x9a,0x9c,0x18,0x00,0x00,0x3c,0x0e,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,0x41,0x64,0x6f,0x62,0x65,0x20,0x58, - 0x4d,0x50,0x20,0x43,0x6f,0x72,0x65,0x20,0x35,0x2e, - 0x35,0x2d,0x63,0x30,0x32,0x31,0x20,0x37,0x39,0x2e, - 0x31,0x35,0x34,0x39,0x31,0x31,0x2c,0x20,0x32,0x30, - 0x31,0x33,0x2f,0x31,0x30,0x2f,0x32,0x39,0x2d,0x31, - 0x31,0x3a,0x34,0x37,0x3a,0x31,0x36,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x22,0x3e,0x0a,0x20,0x20, - 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,0x20, - 0x20,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,0x20,0x20,0x20, - 0x20,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,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x73, - 0x74,0x52,0x65,0x66,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,0x52,0x65, - 0x66,0x23,0x22,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,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,0x20,0x20,0x20,0x20,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,0x20,0x20,0x20,0x20,0x20, - 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,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x70,0x68,0x6f,0x74, - 0x6f,0x73,0x68,0x6f,0x70,0x3d,0x22,0x68,0x74,0x74, - 0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f, - 0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x70,0x68,0x6f, - 0x74,0x6f,0x73,0x68,0x6f,0x70,0x2f,0x31,0x2e,0x30, - 0x2f,0x22,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,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,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x65,0x78,0x69,0x66, - 0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e, - 0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f, - 0x6d,0x2f,0x65,0x78,0x69,0x66,0x2f,0x31,0x2e,0x30, - 0x2f,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x3c,0x78,0x6d,0x70,0x4d,0x4d,0x3a, - 0x4f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x44,0x6f, - 0x63,0x75,0x6d,0x65,0x6e,0x74,0x49,0x44,0x3e,0x78, - 0x6d,0x70,0x2e,0x64,0x69,0x64,0x3a,0x46,0x30,0x31, - 0x35,0x37,0x37,0x33,0x42,0x31,0x31,0x32,0x30,0x36, - 0x38,0x31,0x31,0x38,0x30,0x38,0x33,0x43,0x37,0x45, - 0x33,0x31,0x45,0x41,0x35,0x41,0x37,0x35,0x33,0x3c, - 0x2f,0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x4f,0x72,0x69, - 0x67,0x69,0x6e,0x61,0x6c,0x44,0x6f,0x63,0x75,0x6d, - 0x65,0x6e,0x74,0x49,0x44,0x3e,0x0a,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78,0x6d,0x70, - 0x4d,0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e, - 0x74,0x49,0x44,0x3e,0x78,0x6d,0x70,0x2e,0x64,0x69, - 0x64,0x3a,0x46,0x43,0x44,0x39,0x31,0x31,0x37,0x45, - 0x39,0x44,0x38,0x41,0x31,0x31,0x45,0x33,0x41,0x39, - 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, - 0x32,0x45,0x45,0x33,0x3c,0x2f,0x78,0x6d,0x70,0x4d, - 0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, - 0x49,0x44,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x3c,0x78,0x6d,0x70,0x4d,0x4d,0x3a, - 0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44, - 0x3e,0x78,0x6d,0x70,0x2e,0x69,0x69,0x64,0x3a,0x32, - 0x39,0x39,0x66,0x31,0x63,0x61,0x61,0x2d,0x36,0x33, - 0x63,0x62,0x2d,0x31,0x66,0x34,0x33,0x2d,0x39,0x65, - 0x62,0x32,0x2d,0x31,0x33,0x65,0x36,0x37,0x32,0x37, - 0x61,0x30,0x38,0x39,0x64,0x3c,0x2f,0x78,0x6d,0x70, - 0x4d,0x4d,0x3a,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63, - 0x65,0x49,0x44,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x3c,0x78,0x6d,0x70,0x4d,0x4d, - 0x3a,0x44,0x65,0x72,0x69,0x76,0x65,0x64,0x46,0x72, - 0x6f,0x6d,0x20,0x72,0x64,0x66,0x3a,0x70,0x61,0x72, - 0x73,0x65,0x54,0x79,0x70,0x65,0x3d,0x22,0x52,0x65, - 0x73,0x6f,0x75,0x72,0x63,0x65,0x22,0x3e,0x0a,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x3c,0x73,0x74,0x52,0x65,0x66,0x3a,0x69,0x6e, - 0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44,0x3e,0x78, - 0x6d,0x70,0x2e,0x69,0x69,0x64,0x3a,0x46,0x30,0x31, - 0x35,0x37,0x37,0x33,0x42,0x31,0x31,0x32,0x30,0x36, - 0x38,0x31,0x31,0x38,0x30,0x38,0x33,0x43,0x37,0x45, - 0x33,0x31,0x45,0x41,0x35,0x41,0x37,0x35,0x33,0x3c, - 0x2f,0x73,0x74,0x52,0x65,0x66,0x3a,0x69,0x6e,0x73, - 0x74,0x61,0x6e,0x63,0x65,0x49,0x44,0x3e,0x0a,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x3c,0x73,0x74,0x52,0x65,0x66,0x3a,0x64,0x6f, - 0x63,0x75,0x6d,0x65,0x6e,0x74,0x49,0x44,0x3e,0x78, - 0x6d,0x70,0x2e,0x64,0x69,0x64,0x3a,0x46,0x30,0x31, - 0x35,0x37,0x37,0x33,0x42,0x31,0x31,0x32,0x30,0x36, - 0x38,0x31,0x31,0x38,0x30,0x38,0x33,0x43,0x37,0x45, - 0x33,0x31,0x45,0x41,0x35,0x41,0x37,0x35,0x33,0x3c, - 0x2f,0x73,0x74,0x52,0x65,0x66,0x3a,0x64,0x6f,0x63, - 0x75,0x6d,0x65,0x6e,0x74,0x49,0x44,0x3e,0x0a,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f, - 0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69, - 0x76,0x65,0x64,0x46,0x72,0x6f,0x6d,0x3e,0x0a,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78, - 0x6d,0x70,0x4d,0x4d,0x3a,0x48,0x69,0x73,0x74,0x6f, - 0x72,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x72,0x64,0x66, - 0x3a,0x53,0x65,0x71,0x3e,0x0a,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,0x20,0x72, - 0x64,0x66,0x3a,0x70,0x61,0x72,0x73,0x65,0x54,0x79, - 0x70,0x65,0x3d,0x22,0x52,0x65,0x73,0x6f,0x75,0x72, - 0x63,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a, - 0x61,0x63,0x74,0x69,0x6f,0x6e,0x3e,0x73,0x61,0x76, - 0x65,0x64,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a, - 0x61,0x63,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45, - 0x76,0x74,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63, - 0x65,0x49,0x44,0x3e,0x78,0x6d,0x70,0x2e,0x69,0x69, - 0x64,0x3a,0x64,0x36,0x38,0x36,0x39,0x31,0x37,0x33, - 0x2d,0x63,0x37,0x62,0x30,0x2d,0x33,0x32,0x34,0x61, - 0x2d,0x62,0x33,0x66,0x39,0x2d,0x33,0x32,0x36,0x32, - 0x38,0x31,0x30,0x61,0x34,0x61,0x65,0x63,0x3c,0x2f, - 0x73,0x74,0x45,0x76,0x74,0x3a,0x69,0x6e,0x73,0x74, - 0x61,0x6e,0x63,0x65,0x49,0x44,0x3e,0x0a,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45, - 0x76,0x74,0x3a,0x77,0x68,0x65,0x6e,0x3e,0x32,0x30, - 0x31,0x34,0x2d,0x30,0x33,0x2d,0x31,0x35,0x54,0x31, - 0x36,0x3a,0x32,0x34,0x3a,0x32,0x34,0x2d,0x30,0x35, - 0x3a,0x30,0x30,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74, - 0x3a,0x77,0x68,0x65,0x6e,0x3e,0x0a,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76, - 0x74,0x3a,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65, - 0x41,0x67,0x65,0x6e,0x74,0x3e,0x41,0x64,0x6f,0x62, - 0x65,0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f, - 0x70,0x20,0x43,0x43,0x20,0x28,0x57,0x69,0x6e,0x64, - 0x6f,0x77,0x73,0x29,0x3c,0x2f,0x73,0x74,0x45,0x76, - 0x74,0x3a,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65, - 0x41,0x67,0x65,0x6e,0x74,0x3e,0x0a,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76, - 0x74,0x3a,0x63,0x68,0x61,0x6e,0x67,0x65,0x64,0x3e, - 0x2f,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x63, - 0x68,0x61,0x6e,0x67,0x65,0x64,0x3e,0x0a,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c, - 0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x72, - 0x64,0x66,0x3a,0x6c,0x69,0x20,0x72,0x64,0x66,0x3a, - 0x70,0x61,0x72,0x73,0x65,0x54,0x79,0x70,0x65,0x3d, - 0x22,0x52,0x65,0x73,0x6f,0x75,0x72,0x63,0x65,0x22, - 0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x3c,0x73,0x74,0x45,0x76,0x74,0x3a,0x61,0x63,0x74, - 0x69,0x6f,0x6e,0x3e,0x73,0x61,0x76,0x65,0x64,0x3c, - 0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x61,0x63,0x74, - 0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a, - 0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44, - 0x3e,0x78,0x6d,0x70,0x2e,0x69,0x69,0x64,0x3a,0x32, - 0x39,0x39,0x66,0x31,0x63,0x61,0x61,0x2d,0x36,0x33, - 0x63,0x62,0x2d,0x31,0x66,0x34,0x33,0x2d,0x39,0x65, - 0x62,0x32,0x2d,0x31,0x33,0x65,0x36,0x37,0x32,0x37, - 0x61,0x30,0x38,0x39,0x64,0x3c,0x2f,0x73,0x74,0x45, - 0x76,0x74,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63, - 0x65,0x49,0x44,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a, - 0x77,0x68,0x65,0x6e,0x3e,0x32,0x30,0x31,0x34,0x2d, - 0x30,0x33,0x2d,0x31,0x35,0x54,0x31,0x36,0x3a,0x32, - 0x34,0x3a,0x32,0x34,0x2d,0x30,0x35,0x3a,0x30,0x30, - 0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x77,0x68, - 0x65,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a,0x73, - 0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x41,0x67,0x65, - 0x6e,0x74,0x3e,0x41,0x64,0x6f,0x62,0x65,0x20,0x50, - 0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x43, - 0x43,0x20,0x28,0x57,0x69,0x6e,0x64,0x6f,0x77,0x73, - 0x29,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x73, - 0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x41,0x67,0x65, - 0x6e,0x74,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a,0x63, - 0x68,0x61,0x6e,0x67,0x65,0x64,0x3e,0x2f,0x3c,0x2f, - 0x73,0x74,0x45,0x76,0x74,0x3a,0x63,0x68,0x61,0x6e, - 0x67,0x65,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,0x0a, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x53,0x65, - 0x71,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x3c,0x2f,0x78,0x6d,0x70,0x4d,0x4d,0x3a, - 0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x3e,0x0a,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78, - 0x6d,0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72, - 0x54,0x6f,0x6f,0x6c,0x3e,0x41,0x64,0x6f,0x62,0x65, - 0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70, - 0x20,0x43,0x43,0x20,0x28,0x57,0x69,0x6e,0x64,0x6f, - 0x77,0x73,0x29,0x3c,0x2f,0x78,0x6d,0x70,0x3a,0x43, - 0x72,0x65,0x61,0x74,0x6f,0x72,0x54,0x6f,0x6f,0x6c, - 0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x3c,0x78,0x6d,0x70,0x3a,0x43,0x72,0x65,0x61, - 0x74,0x65,0x44,0x61,0x74,0x65,0x3e,0x32,0x30,0x31, - 0x34,0x2d,0x30,0x33,0x2d,0x31,0x35,0x54,0x31,0x36, - 0x3a,0x31,0x36,0x3a,0x30,0x36,0x2d,0x30,0x35,0x3a, - 0x30,0x30,0x3c,0x2f,0x78,0x6d,0x70,0x3a,0x43,0x72, - 0x65,0x61,0x74,0x65,0x44,0x61,0x74,0x65,0x3e,0x0a, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c, - 0x78,0x6d,0x70,0x3a,0x4d,0x6f,0x64,0x69,0x66,0x79, - 0x44,0x61,0x74,0x65,0x3e,0x32,0x30,0x31,0x34,0x2d, - 0x30,0x33,0x2d,0x31,0x35,0x54,0x31,0x36,0x3a,0x32, - 0x34,0x3a,0x32,0x34,0x2d,0x30,0x35,0x3a,0x30,0x30, - 0x3c,0x2f,0x78,0x6d,0x70,0x3a,0x4d,0x6f,0x64,0x69, - 0x66,0x79,0x44,0x61,0x74,0x65,0x3e,0x0a,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78,0x6d, - 0x70,0x3a,0x4d,0x65,0x74,0x61,0x64,0x61,0x74,0x61, - 0x44,0x61,0x74,0x65,0x3e,0x32,0x30,0x31,0x34,0x2d, - 0x30,0x33,0x2d,0x31,0x35,0x54,0x31,0x36,0x3a,0x32, - 0x34,0x3a,0x32,0x34,0x2d,0x30,0x35,0x3a,0x30,0x30, - 0x3c,0x2f,0x78,0x6d,0x70,0x3a,0x4d,0x65,0x74,0x61, - 0x64,0x61,0x74,0x61,0x44,0x61,0x74,0x65,0x3e,0x0a, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c, - 0x64,0x63,0x3a,0x66,0x6f,0x72,0x6d,0x61,0x74,0x3e, - 0x69,0x6d,0x61,0x67,0x65,0x2f,0x70,0x6e,0x67,0x3c, - 0x2f,0x64,0x63,0x3a,0x66,0x6f,0x72,0x6d,0x61,0x74, - 0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x3c,0x70,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f, - 0x70,0x3a,0x43,0x6f,0x6c,0x6f,0x72,0x4d,0x6f,0x64, - 0x65,0x3e,0x33,0x3c,0x2f,0x70,0x68,0x6f,0x74,0x6f, - 0x73,0x68,0x6f,0x70,0x3a,0x43,0x6f,0x6c,0x6f,0x72, - 0x4d,0x6f,0x64,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x3c,0x70,0x68,0x6f,0x74, - 0x6f,0x73,0x68,0x6f,0x70,0x3a,0x44,0x6f,0x63,0x75, - 0x6d,0x65,0x6e,0x74,0x41,0x6e,0x63,0x65,0x73,0x74, - 0x6f,0x72,0x73,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x72,0x64, - 0x66,0x3a,0x42,0x61,0x67,0x3e,0x0a,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e, - 0x78,0x6d,0x70,0x2e,0x64,0x69,0x64,0x3a,0x46,0x43, - 0x44,0x39,0x31,0x31,0x37,0x41,0x39,0x44,0x38,0x41, - 0x31,0x31,0x45,0x33,0x41,0x39,0x31,0x44,0x42,0x44, - 0x46,0x44,0x34,0x30,0x39,0x39,0x32,0x45,0x45,0x33, - 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,0x0a, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x42,0x61, - 0x67,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x3c,0x2f,0x70,0x68,0x6f,0x74,0x6f,0x73, - 0x68,0x6f,0x70,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65, - 0x6e,0x74,0x41,0x6e,0x63,0x65,0x73,0x74,0x6f,0x72, - 0x73,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x3c,0x74,0x69,0x66,0x66,0x3a,0x4f,0x72, - 0x69,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x3e, - 0x31,0x3c,0x2f,0x74,0x69,0x66,0x66,0x3a,0x4f,0x72, - 0x69,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x3e, - 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x3c,0x74,0x69,0x66,0x66,0x3a,0x58,0x52,0x65,0x73, - 0x6f,0x6c,0x75,0x74,0x69,0x6f,0x6e,0x3e,0x37,0x32, - 0x30,0x30,0x30,0x30,0x2f,0x31,0x30,0x30,0x30,0x30, - 0x3c,0x2f,0x74,0x69,0x66,0x66,0x3a,0x58,0x52,0x65, - 0x73,0x6f,0x6c,0x75,0x74,0x69,0x6f,0x6e,0x3e,0x0a, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c, - 0x74,0x69,0x66,0x66,0x3a,0x59,0x52,0x65,0x73,0x6f, - 0x6c,0x75,0x74,0x69,0x6f,0x6e,0x3e,0x37,0x32,0x30, - 0x30,0x30,0x30,0x2f,0x31,0x30,0x30,0x30,0x30,0x3c, - 0x2f,0x74,0x69,0x66,0x66,0x3a,0x59,0x52,0x65,0x73, - 0x6f,0x6c,0x75,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74, - 0x69,0x66,0x66,0x3a,0x52,0x65,0x73,0x6f,0x6c,0x75, - 0x74,0x69,0x6f,0x6e,0x55,0x6e,0x69,0x74,0x3e,0x32, - 0x3c,0x2f,0x74,0x69,0x66,0x66,0x3a,0x52,0x65,0x73, - 0x6f,0x6c,0x75,0x74,0x69,0x6f,0x6e,0x55,0x6e,0x69, - 0x74,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x3c,0x65,0x78,0x69,0x66,0x3a,0x43,0x6f, - 0x6c,0x6f,0x72,0x53,0x70,0x61,0x63,0x65,0x3e,0x36, - 0x35,0x35,0x33,0x35,0x3c,0x2f,0x65,0x78,0x69,0x66, - 0x3a,0x43,0x6f,0x6c,0x6f,0x72,0x53,0x70,0x61,0x63, - 0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x3c,0x65,0x78,0x69,0x66,0x3a,0x50,0x69, - 0x78,0x65,0x6c,0x58,0x44,0x69,0x6d,0x65,0x6e,0x73, - 0x69,0x6f,0x6e,0x3e,0x33,0x37,0x3c,0x2f,0x65,0x78, - 0x69,0x66,0x3a,0x50,0x69,0x78,0x65,0x6c,0x58,0x44, - 0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x3e,0x0a, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c, - 0x65,0x78,0x69,0x66,0x3a,0x50,0x69,0x78,0x65,0x6c, - 0x59,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e, - 0x3e,0x33,0x37,0x3c,0x2f,0x65,0x78,0x69,0x66,0x3a, - 0x50,0x69,0x78,0x65,0x6c,0x59,0x44,0x69,0x6d,0x65, - 0x6e,0x73,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20, - 0x20,0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x44, - 0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e, - 0x3e,0x0a,0x20,0x20,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,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,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,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,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,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,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,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,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,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,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,0x0a,0x3c,0x3f,0x78, - 0x70,0x61,0x63,0x6b,0x65,0x74,0x20,0x65,0x6e,0x64, - 0x3d,0x22,0x77,0x22,0x3f,0x3e,0x97,0x58,0x4c,0x05, - 0x00,0x00,0x00,0x20,0x63,0x48,0x52,0x4d,0x00,0x00, - 0x7a,0x25,0x00,0x00,0x80,0x83,0x00,0x00,0xf9,0xff, - 0x00,0x00,0x80,0xe9,0x00,0x00,0x75,0x30,0x00,0x00, - 0xea,0x60,0x00,0x00,0x3a,0x98,0x00,0x00,0x17,0x6f, - 0x92,0x5f,0xc5,0x46,0x00,0x00,0x03,0x1e,0x49,0x44, - 0x41,0x54,0x78,0xda,0xd4,0xd8,0xdf,0x8b,0x55,0x55, - 0x14,0x07,0xf0,0xcf,0xbd,0x5c,0x4a,0x45,0xc2,0x14, - 0x53,0x64,0x9a,0x32,0x2b,0xc2,0x52,0x6b,0x34,0x72, - 0x7c,0xc8,0xa4,0x5f,0x98,0xd4,0x83,0x08,0x11,0x81, - 0xbd,0x04,0x41,0x0f,0x13,0x3d,0x0d,0xfd,0x03,0x3d, - 0xf4,0x10,0x66,0xbd,0x29,0x11,0x18,0x84,0x68,0xd2, - 0x4f,0x8b,0x02,0xab,0x79,0x98,0x14,0x7f,0x16,0x26, - 0xe2,0x0f,0x22,0xfb,0x61,0x38,0x26,0x51,0x43,0xea, - 0x54,0x4e,0x2f,0xeb,0xc0,0x61,0x73,0xee,0xb9,0xe7, - 0xcc,0x30,0xdd,0xfa,0xc2,0x61,0xdf,0xbb,0xcf,0xda, - 0x7b,0x7d,0xd9,0xeb,0xc7,0x5e,0xeb,0x34,0x06,0x07, - 0x07,0xd5,0xc4,0xad,0xd8,0x8d,0x9b,0xd0,0xe8,0x20, - 0xfb,0x23,0x1e,0xc2,0xb1,0x3a,0x0a,0x5a,0xea,0xe3, - 0x4b,0xcc,0xc6,0x11,0x9c,0x2d,0x91,0xbb,0x0e,0xcb, - 0xb1,0x07,0xf3,0xa7,0x92,0xd4,0xd2,0x20,0xf4,0x01, - 0x1e,0xad,0x20,0xbf,0x07,0x6b,0x70,0x0b,0x4e,0x56, - 0x55,0xd2,0xac,0x49,0xea,0xe6,0x18,0x0f,0x25,0xf3, - 0x4f,0xe3,0x0a,0x9e,0x49,0xe6,0x33,0xb3,0x2d,0xa9, - 0xa3,0xa4,0x69,0x62,0x18,0xcf,0xfd,0x9e,0x86,0xcd, - 0xe1,0x5f,0x9b,0xe2,0xff,0xa4,0xd0,0x34,0x79,0x6c, - 0xc7,0xf4,0x1c,0xc1,0x9d,0xdd,0x26,0x75,0x77,0x81, - 0x6f,0x3d,0x82,0x7b,0xba,0x49,0x6a,0x57,0x41,0x5a, - 0x68,0xe0,0xed,0x6e,0x92,0x9a,0x57,0x92,0x0e,0x26, - 0x8c,0xd6,0x24,0x49,0x5d,0x65,0x0a,0xd0,0xf4,0x1f, - 0x44,0xfe,0xa4,0x16,0xa3,0xaf,0x83,0xfc,0x8a,0x09, - 0xea,0xb9,0x17,0x33,0x3a,0xc8,0x1c,0xc1,0xd1,0x8c, - 0xd4,0x6d,0x18,0xc2,0xdc,0x1a,0x4a,0xce,0x54,0x94, - 0x3b,0x15,0xe3,0x73,0x15,0xe5,0x2f,0xa0,0xbf,0x85, - 0xcf,0x82,0xd0,0x27,0xf8,0xa6,0xc2,0xc2,0xd3,0x78, - 0xbd,0xa2,0x92,0x4d,0xf8,0x1b,0x0b,0x2b,0xc8,0x2e, - 0xc2,0x63,0xf8,0xb0,0x15,0x97,0xe5,0x7e,0x3c,0x5c, - 0x20,0x38,0x03,0x0f,0xe2,0xdd,0x0e,0x1b,0xce,0x8c, - 0xcb,0xf7,0x20,0x46,0x93,0x77,0xaf,0x16,0xb8,0xcc, - 0x5f,0x6d,0xf6,0xf9,0x0a,0x4b,0x9a,0xb9,0x63,0x4b, - 0xf1,0x14,0x7e,0xc1,0x3b,0xb8,0xa3,0x24,0xfa,0x86, - 0xf1,0x3b,0x3e,0x8f,0x71,0xb8,0x43,0x54,0x5e,0xc6, - 0xcf,0xe1,0x67,0x29,0xce,0xa2,0xd1,0x6c,0x93,0x63, - 0x0e,0xe2,0x8d,0xdc,0x3d,0x36,0xb3,0x8d,0x82,0x2f, - 0xd0,0x1f,0x3e,0xb6,0x2d,0xc6,0xfe,0x98,0x2f,0x8b, - 0xf8,0x79,0x21,0xf3,0x71,0xd1,0xde,0x29,0xa9,0x17, - 0xa2,0x30,0xeb,0x8b,0x48,0x78,0xab,0x64,0xf3,0x59, - 0x58,0x89,0xef,0x70,0x03,0x36,0xc6,0x78,0x26,0xe6, - 0xaf,0x29,0x59,0xfb,0x35,0x7e,0x08,0x97,0x39,0x8f, - 0x67,0xdb,0x91,0x9a,0x86,0x17,0xc3,0xe6,0x1f,0x45, - 0xb9,0x71,0xa1,0x64,0xe3,0xcc,0xa4,0x43,0xc9,0xfc, - 0x50,0xf2,0x5e,0x1b,0x33,0x5d,0x8f,0xc3,0xb8,0x1a, - 0xaf,0xb5,0x23,0x75,0x09,0x83,0xf8,0x13,0x6b,0xe3, - 0xa4,0x66,0x97,0x6c,0x7c,0x34,0xc6,0xd5,0x05,0x39, - 0x69,0x3c,0xf7,0xbe,0x08,0xf3,0xf1,0x3d,0xee,0xc2, - 0x58,0x9a,0x32,0x52,0xf3,0xbd,0x84,0x05,0xe1,0x53, - 0xb7,0xe3,0x89,0x92,0x8d,0x7f,0xc5,0x5e,0xf4,0x86, - 0x09,0xdf,0x8c,0xb1,0x17,0xfb,0xf0,0x5b,0xc9,0xda, - 0x65,0xe8,0xc1,0xa7,0x98,0x93,0x46,0x68,0x91,0xa3, - 0x9f,0x8f,0xcc,0xbd,0x31,0x4e,0x4f,0x89,0x82,0xd5, - 0x51,0xb3,0xf7,0xe2,0xc9,0x30,0xc9,0x70,0xc1,0xe9, - 0xe5,0x71,0x05,0x23,0xb8,0x2f,0x9a,0x8a,0xd1,0xa2, - 0x6b,0x66,0x3c,0x4e,0x27,0xc5,0x36,0xec,0x08,0x67, - 0x6c,0xd7,0x8d,0x8c,0x61,0x55,0x44,0x50,0x5f,0x94, - 0xc9,0xa3,0x1d,0x72,0xda,0xf4,0x58,0x57,0x84,0x39, - 0x19,0xa9,0xd3,0xe1,0xd4,0xef,0xe5,0xae,0x85,0xa2, - 0x13,0xc9,0xf0,0x6d,0x41,0x42,0x1c,0x2d,0x70,0xf8, - 0x0c,0x03,0xb8,0xb1,0x42,0x46,0x5f,0x16,0x16,0xfa, - 0xa9,0x85,0x75,0xe1,0x03,0x55,0xba,0x93,0x0c,0x17, - 0xb1,0xb5,0x82,0xdc,0xf3,0x78,0xb9,0xc6,0xbe,0x23, - 0xb8,0xbf,0x85,0x13,0xb8,0x36,0xaa,0x84,0x3b,0x3b, - 0x94,0x33,0x2b,0x22,0x52,0x7a,0x2a,0x2a,0x59,0x14, - 0xe3,0x2b,0x38,0xd0,0xc1,0xcf,0x0e,0xe1,0x78,0x5a, - 0xba,0x1c,0xab,0xd0,0xc9,0xfe,0x51,0xe3,0xc6,0x4f, - 0x73,0xd7,0xae,0xff,0x75,0x91,0x37,0x59,0x52,0x63, - 0x11,0xbd,0xe9,0x73,0xb9,0x9b,0xa4,0x46,0xda,0xcc, - 0x9f,0xeb,0x26,0xa9,0xf5,0x49,0xb7,0x9c,0x75,0xcf, - 0xeb,0xbb,0x49,0x6a,0x5f,0x7c,0x16,0xca,0xe3,0xfd, - 0x28,0x1a,0xbb,0xda,0xcd,0x6c,0xc8,0x5d,0x47,0x97, - 0xf0,0x78,0xb7,0x1c,0xbd,0x91,0x54,0x17,0x03,0x61, - 0xb6,0x81,0x1c,0xc1,0x7f,0xad,0x19,0xcd,0xca,0x91, - 0x55,0xc9,0xfc,0x96,0x78,0x52,0x2c,0x4c,0x3e,0x09, - 0x4d,0x09,0xa9,0x13,0x11,0x59,0x0f,0x44,0x86,0x2e, - 0x8b,0xb2,0x9e,0x5c,0xa1,0x78,0x7c,0xaa,0xdb,0xf6, - 0x35,0xd1,0x8e,0x2d,0xaf,0xf0,0x0d,0xeb,0x54,0x7c, - 0x85,0xa9,0x85,0x7f,0x06,0x00,0xf4,0x2d,0xa8,0xcd, - 0x56,0x9a,0xd2,0xb6,0x00,0x00,0x00,0x00,0x49,0x45, - 0x4e,0x44,0xae,0x42,0x60,0x82 -}; diff --git a/data/converted/help_dpad_up_png.cpp b/data/converted/help_dpad_up_png.cpp deleted file mode 100644 index e910243ac..000000000 --- a/data/converted/help_dpad_up_png.cpp +++ /dev/null @@ -1,188 +0,0 @@ -//this file was auto-generated from "dpad_up.png" by res2h - -#include "../Resources.h" - -const size_t help_dpad_up_png_size = 1804; -const unsigned char help_dpad_up_png_data[1804] = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x25, - 0x00,0x00,0x00,0x25,0x08,0x06,0x00,0x00,0x00,0xc5, - 0x9e,0x20,0x03,0x00,0x00,0x00,0x19,0x74,0x45,0x58, - 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, - 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, - 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, - 0x00,0x00,0x03,0x68,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,0x20,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,0x41, - 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, - 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, - 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, - 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, - 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, - 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x22,0x3e,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,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,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,0x20,0x78,0x6d,0x6c,0x6e, - 0x73,0x3a,0x73,0x74,0x52,0x65,0x66,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,0x52,0x65,0x66,0x23,0x22,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,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,0x46,0x30,0x31,0x35,0x37,0x37,0x33,0x42, - 0x31,0x31,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, - 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, - 0x41,0x37,0x35,0x33,0x22,0x20,0x78,0x6d,0x70,0x4d, - 0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, - 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, - 0x64,0x3a,0x46,0x43,0x44,0x39,0x31,0x31,0x37,0x41, - 0x39,0x44,0x38,0x41,0x31,0x31,0x45,0x33,0x41,0x39, - 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, - 0x32,0x45,0x45,0x33,0x22,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,0x46,0x43,0x44,0x39,0x31,0x31,0x37,0x39, - 0x39,0x44,0x38,0x41,0x31,0x31,0x45,0x33,0x41,0x39, - 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, - 0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d,0x70,0x3a, - 0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54,0x6f,0x6f, - 0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65,0x20,0x50, - 0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x43, - 0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69,0x6e,0x74, - 0x6f,0x73,0x68,0x29,0x22,0x3e,0x20,0x3c,0x78,0x6d, - 0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69,0x76,0x65, - 0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74,0x52,0x65, - 0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65, - 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69, - 0x64,0x3a,0x46,0x30,0x31,0x35,0x37,0x37,0x33,0x42, - 0x31,0x31,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, - 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, - 0x41,0x37,0x35,0x33,0x22,0x20,0x73,0x74,0x52,0x65, - 0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, - 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, - 0x64,0x3a,0x46,0x30,0x31,0x35,0x37,0x37,0x33,0x42, - 0x31,0x31,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, - 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, - 0x41,0x37,0x35,0x33,0x22,0x2f,0x3e,0x20,0x3c,0x2f, - 0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72,0x69, - 0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c,0x2f,0x72, - 0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20,0x3c,0x2f, - 0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74,0x61,0x3e, - 0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74, - 0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22,0x3f,0x3e, - 0xe2,0x6a,0x11,0x2f,0x00,0x00,0x03,0x3a,0x49,0x44, - 0x41,0x54,0x78,0xda,0xd4,0x98,0x5b,0x6c,0x0c,0x51, - 0x18,0xc7,0x67,0xd7,0x68,0x85,0xad,0x07,0x75,0x29, - 0x2d,0x21,0xa9,0x4b,0x88,0x54,0x22,0x12,0x44,0x52, - 0x25,0x11,0xe2,0x16,0x0f,0x62,0x3d,0x89,0x3e,0x68, - 0x11,0xaa,0x41,0xb6,0x45,0xdc,0x2a,0x4b,0xe2,0x52, - 0x69,0x44,0x2a,0x78,0xf0,0x42,0x89,0x27,0x22,0x5e, - 0xdc,0xe2,0x65,0x2b,0xc1,0x83,0x5b,0x10,0x2a,0xa1, - 0x94,0x76,0x11,0x34,0xd4,0xa4,0x2e,0xff,0x2f,0xf9, - 0x37,0xd9,0x9c,0xcc,0xcc,0x99,0xd9,0xb5,0x86,0x2f, - 0xf9,0x65,0x76,0xcf,0x9c,0xcb,0x77,0xce,0xf9,0xce, - 0xf7,0x7d,0x67,0x42,0xb1,0x58,0xcc,0xf0,0x29,0x03, - 0xc1,0x41,0xb0,0x04,0xe4,0xb9,0xd4,0xfb,0x0a,0x2e, - 0x83,0x35,0xa0,0xdd,0xcf,0x00,0xa6,0xe1,0x5f,0x9a, - 0xc0,0x34,0x70,0x1c,0xb4,0xb9,0xd4,0x1b,0x0c,0x2a, - 0xc1,0x09,0xb0,0x28,0x9b,0x4a,0x15,0x80,0xd9,0x60, - 0x33,0x38,0xe0,0xa1,0xfe,0x27,0xb0,0x03,0xe4,0x83, - 0xf7,0x5e,0x07,0x09,0xfb,0x54,0x6a,0x10,0x9f,0x8f, - 0x95,0xf2,0xa9,0x20,0x09,0xa6,0x2b,0xe5,0xcf,0x38, - 0xc6,0x30,0x3f,0x83,0x84,0x8d,0xf4,0xe4,0x97,0xb2, - 0xda,0x8d,0x5c,0x8d,0xc6,0x34,0x4d,0xe2,0x8f,0x28, - 0x95,0x2a,0xeb,0x41,0x09,0x7f,0x4f,0x04,0xd5,0x41, - 0x2b,0x55,0x04,0x76,0x29,0x65,0xdb,0xc1,0xf0,0x20, - 0x95,0xaa,0x07,0x11,0xa5,0x2c,0xc2,0xf2,0xc0,0x94, - 0x2a,0x71,0x28,0x9f,0x94,0x49,0xa7,0x99,0x1a,0xe5, - 0x18,0x23,0x0b,0x12,0x36,0xfe,0x41,0x31,0x15,0x0f, - 0xac,0x33,0xd0,0xe2,0x34,0xc7,0x19,0x0f,0x72,0x34, - 0x75,0x5a,0xc1,0xbb,0x1e,0xa5,0xc4,0x21,0x9e,0x02, - 0xf3,0x7c,0xf8,0xa8,0xa4,0xc7,0xba,0x6f,0x58,0xbf, - 0xc9,0x63,0xfd,0xab,0x20,0x6a,0x32,0x36,0x95,0x82, - 0x2d,0xf4,0xc0,0x3a,0x79,0x0b,0x6e,0x79,0x1c,0xe4, - 0x06,0x98,0x09,0x86,0x78,0xa8,0x2b,0xbb,0x54,0x07, - 0xf6,0x8b,0x52,0x73,0x41,0x03,0xd8,0x6b,0x53,0xb1, - 0x37,0x8d,0xf9,0xa1,0xa6,0xc3,0x1c,0xfa,0x2c,0xd9, - 0x02,0x4b,0x79,0x77,0xd3,0xc6,0x8e,0x7f,0x3a,0xf4, - 0x33,0x0a,0xac,0x08,0xb3,0x43,0xbb,0x60,0x39,0x05, - 0xdc,0x06,0xf7,0x5d,0x66,0xda,0x0b,0xc4,0xc1,0x47, - 0xf0,0x9c,0xcf,0x38,0xcb,0x9d,0xe4,0x35,0xb8,0x48, - 0x05,0xec,0xde,0xe5,0xd9,0x9d,0xbe,0x7e,0xe0,0x10, - 0x48,0xd0,0x40,0x43,0x20,0xd7,0x61,0x80,0x3d,0xa0, - 0x16,0x5c,0x00,0xab,0xf8,0xac,0x65,0xb9,0x5b,0xa6, - 0xb1,0x80,0xab,0x5f,0x63,0x77,0x00,0x54,0xa5,0xe6, - 0x70,0x65,0xaa,0xc0,0x31,0xb0,0xce,0xa5,0xf3,0x3e, - 0x8c,0x7b,0x67,0xc0,0x72,0xe6,0x57,0xf2,0x3c,0xcb, - 0x76,0xb9,0x2e,0x6d,0x8f,0x80,0x4b,0x34,0x99,0xbb, - 0x60,0x86,0x93,0x52,0x66,0xca,0xb2,0x8a,0xd1,0xaf, - 0x05,0x9f,0x35,0x33,0xee,0x0b,0xae,0x2b,0xe5,0xd7, - 0xb8,0xda,0x05,0x9a,0x2d,0x5c,0x0a,0x0e,0x83,0x09, - 0x1c,0xd7,0x56,0xa9,0x6e,0x30,0x1f,0xb4,0x70,0x06, - 0x47,0x41,0x7f,0xcd,0x29,0x94,0x94,0x77,0x96,0x52, - 0x2e,0xff,0x3b,0xf9,0xde,0x49,0x24,0xbf,0x3a,0x07, - 0x36,0x30,0x37,0x5b,0xec,0x16,0x66,0xae,0x30,0xfd, - 0xa8,0xe3,0xd6,0xb8,0x49,0x17,0x4f,0x6d,0x8d,0x72, - 0xfc,0x97,0x81,0x7d,0xe0,0xbb,0x4b,0x5b,0xd9,0xde, - 0x6f,0x60,0x2b,0x33,0x58,0x4b,0x17,0xfb,0x64,0xf6, - 0x1b,0x69,0x2b,0x27,0xa9,0x64,0x97,0x43,0xe7,0xdb, - 0xe8,0x1c,0xc5,0x06,0xa3,0x5c,0xa1,0x38,0xd3,0x17, - 0x27,0x11,0xaf,0x7d,0x87,0x8a,0xb5,0x38,0x85,0x99, - 0x4e,0xfa,0x18,0x55,0xc4,0x1d,0x4c,0x06,0x63,0x5d, - 0x6e,0x23,0x3f,0x68,0x7f,0x3b,0x41,0x21,0x6d,0xc5, - 0xd2,0xac,0x70,0x21,0xdb,0x39,0xdd,0x94,0x2c,0x51, - 0xea,0x3c,0x58,0x09,0x5e,0x80,0x97,0x2e,0xb1,0x2b, - 0x75,0xa6,0xaa,0x43,0xb4,0xd8,0xde,0x4e,0x4a,0x19, - 0x57,0x75,0x32,0x0e,0xac,0x96,0x53,0x69,0xf2,0x66, - 0x32,0xd2,0xe3,0xed,0xa4,0x27,0xf6,0xc9,0x05,0xa1, - 0xd9,0x43,0xdd,0x32,0xc6,0xb3,0x90,0xc7,0x7e,0xe5, - 0x9e,0x58,0x61,0x32,0xb8,0x96,0x71,0x36,0x45,0x9a, - 0x0e,0x8a,0x19,0x5c,0xf3,0x3d,0x4e,0x60,0x28,0xfb, - 0x8b,0x6a,0xe2,0xaa,0x28,0xf4,0x0a,0x74,0xa8,0x86, - 0xde,0xee,0xe1,0x26,0x6b,0x19,0xe9,0xc9,0x23,0x3a, - 0xe5,0xff,0x37,0xc9,0xcb,0x54,0xa9,0xa7,0x5c,0x7a, - 0x95,0x27,0x41,0xe6,0xe8,0x0f,0xc0,0x68,0x70,0x9a, - 0x36,0x31,0x82,0xf1,0xef,0x5e,0x90,0x2b,0x55,0x45, - 0x3f,0x17,0xa1,0x67,0x8f,0xf0,0x7f,0x75,0x90,0x4a, - 0xc9,0xea,0xec,0xe6,0x57,0x15,0xb9,0xb2,0x2f,0xe4, - 0x07,0x8d,0xd6,0xa0,0x6f,0x33,0xf5,0x3c,0x59,0x15, - 0xdc,0xb6,0x86,0xa0,0x0c,0x3d,0xa4,0x64,0x17,0xa2, - 0xd0,0x07,0x7e,0x8f,0xea,0xfe,0xdb,0x4a,0xb5,0x31, - 0xbf,0x56,0x6f,0xc6,0x09,0x3a,0xd4,0x84,0xcd,0xb7, - 0x06,0x43,0x93,0xc6,0x64,0x7c,0xfa,0x92,0x0c,0x05, - 0x12,0x84,0x07,0x68,0x9c,0xad,0xdc,0x4e,0xca,0x99, - 0x0e,0x75,0x64,0xdb,0x25,0x94,0x33,0x01,0xac,0x64, - 0xe6,0xe9,0x24,0x5f,0x98,0x1a,0x6f,0xf2,0x3b,0xc0, - 0x6f,0x01,0x06,0x00,0x54,0xe1,0xb4,0xc2,0x8e,0x39, - 0x5d,0xa2,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44, - 0xae,0x42,0x60,0x82 -}; diff --git a/data/converted/help_dpad_up_svg.cpp b/data/converted/help_dpad_up_svg.cpp new file mode 100644 index 000000000..405eb43dc --- /dev/null +++ b/data/converted/help_dpad_up_svg.cpp @@ -0,0 +1,329 @@ +//this file was auto-generated from "dpad_up.svg" by res2h + +#include "../Resources.h" + +const size_t help_dpad_up_svg_size = 3219; +const unsigned char help_dpad_up_svg_data[3219] = { + 0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20, + 0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22, + 0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a, + 0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62, + 0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61, + 0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33, + 0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e, + 0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72, + 0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30, + 0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20, + 0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f, + 0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20, + 0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f, + 0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20, + 0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45, + 0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44, + 0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64, + 0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22, + 0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45, + 0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a, + 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f, + 0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76, + 0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78, + 0x6c,0x69,0x6e,0x6b,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,0x78, + 0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30, + 0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78, + 0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68, + 0x3d,0x22,0x33,0x37,0x2e,0x31,0x33,0x34,0x70,0x78, + 0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22, + 0x33,0x37,0x2e,0x31,0x33,0x34,0x70,0x78,0x22,0x20, + 0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30, + 0x20,0x30,0x20,0x33,0x37,0x2e,0x31,0x33,0x34,0x20, + 0x33,0x37,0x2e,0x31,0x33,0x34,0x22,0x20,0x65,0x6e, + 0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67, + 0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77, + 0x20,0x30,0x20,0x30,0x20,0x33,0x37,0x2e,0x31,0x33, + 0x34,0x20,0x33,0x37,0x2e,0x31,0x33,0x34,0x22,0x20, + 0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d, + 0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22, + 0x3e,0x0d,0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c, + 0x67,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x67,0x3e,0x0d, + 0x0a,0x09,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20, + 0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37, + 0x37,0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32, + 0x32,0x2e,0x31,0x32,0x33,0x2c,0x33,0x37,0x2e,0x30, + 0x39,0x37,0x68,0x2d,0x37,0x2e,0x31,0x31,0x31,0x63, + 0x2d,0x32,0x2e,0x32,0x38,0x39,0x2c,0x30,0x2d,0x33, + 0x2e,0x31,0x31,0x39,0x2d,0x31,0x2e,0x38,0x36,0x36, + 0x2d,0x33,0x2e,0x31,0x31,0x39,0x2d,0x33,0x2e,0x31, + 0x32,0x31,0x76,0x2d,0x38,0x2e,0x37,0x33,0x31,0x48, + 0x33,0x2e,0x31,0x35,0x38,0x63,0x2d,0x32,0x2e,0x32, + 0x39,0x2c,0x30,0x2d,0x33,0x2e,0x31,0x32,0x31,0x2d, + 0x31,0x2e,0x38,0x36,0x36,0x2d,0x33,0x2e,0x31,0x32, + 0x31,0x2d,0x33,0x2e,0x31,0x32,0x31,0x0d,0x0a,0x09, + 0x09,0x09,0x09,0x76,0x2d,0x37,0x2e,0x31,0x31,0x32, + 0x63,0x30,0x2d,0x32,0x2e,0x32,0x38,0x39,0x2c,0x31, + 0x2e,0x38,0x36,0x37,0x2d,0x33,0x2e,0x31,0x32,0x2c, + 0x33,0x2e,0x31,0x32,0x31,0x2d,0x33,0x2e,0x31,0x32, + 0x68,0x38,0x2e,0x37,0x33,0x34,0x56,0x33,0x2e,0x31, + 0x35,0x39,0x63,0x30,0x2d,0x32,0x2e,0x32,0x39,0x2c, + 0x31,0x2e,0x38,0x36,0x35,0x2d,0x33,0x2e,0x31,0x32, + 0x31,0x2c,0x33,0x2e,0x31,0x31,0x39,0x2d,0x33,0x2e, + 0x31,0x32,0x31,0x68,0x37,0x2e,0x31,0x31,0x31,0x63, + 0x32,0x2e,0x32,0x39,0x2c,0x30,0x2c,0x33,0x2e,0x31, + 0x32,0x31,0x2c,0x31,0x2e,0x38,0x36,0x37,0x2c,0x33, + 0x2e,0x31,0x32,0x31,0x2c,0x33,0x2e,0x31,0x32,0x31, + 0x76,0x38,0x2e,0x37,0x33,0x32,0x0d,0x0a,0x09,0x09, + 0x09,0x09,0x68,0x38,0x2e,0x37,0x33,0x32,0x63,0x32, + 0x2e,0x32,0x39,0x2c,0x30,0x2c,0x33,0x2e,0x31,0x32, + 0x31,0x2c,0x31,0x2e,0x38,0x36,0x36,0x2c,0x33,0x2e, + 0x31,0x32,0x31,0x2c,0x33,0x2e,0x31,0x32,0x76,0x37, + 0x2e,0x31,0x31,0x32,0x63,0x30,0x2c,0x32,0x2e,0x32, + 0x39,0x2d,0x31,0x2e,0x38,0x36,0x36,0x2c,0x33,0x2e, + 0x31,0x32,0x31,0x2d,0x33,0x2e,0x31,0x32,0x31,0x2c, + 0x33,0x2e,0x31,0x32,0x31,0x68,0x2d,0x38,0x2e,0x37, + 0x33,0x32,0x76,0x38,0x2e,0x37,0x33,0x31,0x0d,0x0a, + 0x09,0x09,0x09,0x09,0x43,0x32,0x35,0x2e,0x32,0x34, + 0x34,0x2c,0x33,0x36,0x2e,0x32,0x36,0x36,0x2c,0x32, + 0x33,0x2e,0x33,0x37,0x37,0x2c,0x33,0x37,0x2e,0x30, + 0x39,0x37,0x2c,0x32,0x32,0x2e,0x31,0x32,0x33,0x2c, + 0x33,0x37,0x2e,0x30,0x39,0x37,0x7a,0x20,0x4d,0x33, + 0x2e,0x31,0x35,0x38,0x2c,0x31,0x33,0x2e,0x33,0x39, + 0x31,0x63,0x2d,0x30,0x2e,0x33,0x37,0x36,0x2c,0x30, + 0x2e,0x30,0x30,0x36,0x2d,0x31,0x2e,0x36,0x32,0x31, + 0x2c,0x30,0x2e,0x31,0x33,0x39,0x2d,0x31,0x2e,0x36, + 0x32,0x31,0x2c,0x31,0x2e,0x36,0x32,0x76,0x37,0x2e, + 0x31,0x31,0x32,0x0d,0x0a,0x09,0x09,0x09,0x09,0x63, + 0x30,0x2e,0x30,0x30,0x36,0x2c,0x30,0x2e,0x33,0x37, + 0x36,0x2c,0x30,0x2e,0x31,0x33,0x39,0x2c,0x31,0x2e, + 0x36,0x32,0x31,0x2c,0x31,0x2e,0x36,0x32,0x31,0x2c, + 0x31,0x2e,0x36,0x32,0x31,0x68,0x31,0x30,0x2e,0x32, + 0x33,0x34,0x76,0x31,0x30,0x2e,0x32,0x33,0x31,0x63, + 0x30,0x2e,0x30,0x30,0x35,0x2c,0x30,0x2e,0x33,0x37, + 0x36,0x2c,0x30,0x2e,0x31,0x33,0x39,0x2c,0x31,0x2e, + 0x36,0x32,0x31,0x2c,0x31,0x2e,0x36,0x31,0x39,0x2c, + 0x31,0x2e,0x36,0x32,0x31,0x68,0x37,0x2e,0x31,0x30, + 0x38,0x0d,0x0a,0x09,0x09,0x09,0x09,0x63,0x30,0x2e, + 0x33,0x38,0x34,0x2d,0x30,0x2e,0x30,0x30,0x36,0x2c, + 0x31,0x2e,0x36,0x32,0x34,0x2d,0x30,0x2e,0x31,0x34, + 0x32,0x2c,0x31,0x2e,0x36,0x32,0x34,0x2d,0x31,0x2e, + 0x36,0x32,0x31,0x56,0x32,0x33,0x2e,0x37,0x34,0x35, + 0x68,0x31,0x30,0x2e,0x32,0x33,0x32,0x63,0x30,0x2e, + 0x33,0x37,0x36,0x2d,0x30,0x2e,0x30,0x30,0x36,0x2c, + 0x31,0x2e,0x36,0x32,0x31,0x2d,0x30,0x2e,0x31,0x34, + 0x2c,0x31,0x2e,0x36,0x32,0x31,0x2d,0x31,0x2e,0x36, + 0x32,0x31,0x76,0x2d,0x37,0x2e,0x31,0x31,0x32,0x0d, + 0x0a,0x09,0x09,0x09,0x09,0x63,0x2d,0x30,0x2e,0x30, + 0x30,0x36,0x2d,0x30,0x2e,0x33,0x37,0x36,0x2d,0x30, + 0x2e,0x31,0x34,0x2d,0x31,0x2e,0x36,0x32,0x2d,0x31, + 0x2e,0x36,0x32,0x31,0x2d,0x31,0x2e,0x36,0x32,0x48, + 0x32,0x33,0x2e,0x37,0x34,0x34,0x56,0x33,0x2e,0x31, + 0x35,0x39,0x63,0x2d,0x30,0x2e,0x30,0x30,0x36,0x2d, + 0x30,0x2e,0x33,0x37,0x36,0x2d,0x30,0x2e,0x31,0x34, + 0x2d,0x31,0x2e,0x36,0x32,0x31,0x2d,0x31,0x2e,0x36, + 0x32,0x31,0x2d,0x31,0x2e,0x36,0x32,0x31,0x68,0x2d, + 0x37,0x2e,0x31,0x31,0x31,0x0d,0x0a,0x09,0x09,0x09, + 0x09,0x63,0x2d,0x30,0x2e,0x33,0x37,0x36,0x2c,0x30, + 0x2e,0x30,0x30,0x36,0x2d,0x31,0x2e,0x36,0x31,0x39, + 0x2c,0x30,0x2e,0x31,0x33,0x39,0x2d,0x31,0x2e,0x36, + 0x31,0x39,0x2c,0x31,0x2e,0x36,0x32,0x31,0x76,0x31, + 0x30,0x2e,0x32,0x33,0x32,0x48,0x33,0x2e,0x31,0x35, + 0x38,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x09,0x3c, + 0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e, + 0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x09, + 0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c, + 0x3d,0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22, + 0x20,0x64,0x3d,0x22,0x4d,0x31,0x38,0x2e,0x35,0x36, + 0x38,0x2c,0x32,0x32,0x2e,0x32,0x31,0x38,0x63,0x2d, + 0x32,0x2e,0x30,0x31,0x33,0x2c,0x30,0x2d,0x33,0x2e, + 0x36,0x35,0x2d,0x31,0x2e,0x36,0x33,0x38,0x2d,0x33, + 0x2e,0x36,0x35,0x2d,0x33,0x2e,0x36,0x35,0x31,0x63, + 0x30,0x2d,0x32,0x2e,0x30,0x31,0x33,0x2c,0x31,0x2e, + 0x36,0x33,0x38,0x2d,0x33,0x2e,0x36,0x35,0x2c,0x33, + 0x2e,0x36,0x35,0x2d,0x33,0x2e,0x36,0x35,0x73,0x33, + 0x2e,0x36,0x35,0x2c,0x31,0x2e,0x36,0x33,0x38,0x2c, + 0x33,0x2e,0x36,0x35,0x2c,0x33,0x2e,0x36,0x35,0x0d, + 0x0a,0x09,0x09,0x09,0x43,0x32,0x32,0x2e,0x32,0x31, + 0x38,0x2c,0x32,0x30,0x2e,0x35,0x38,0x31,0x2c,0x32, + 0x30,0x2e,0x35,0x38,0x31,0x2c,0x32,0x32,0x2e,0x32, + 0x31,0x38,0x2c,0x31,0x38,0x2e,0x35,0x36,0x38,0x2c, + 0x32,0x32,0x2e,0x32,0x31,0x38,0x7a,0x20,0x4d,0x31, + 0x38,0x2e,0x35,0x36,0x38,0x2c,0x31,0x36,0x2e,0x34, + 0x31,0x37,0x63,0x2d,0x31,0x2e,0x31,0x38,0x36,0x2c, + 0x30,0x2d,0x32,0x2e,0x31,0x35,0x2c,0x30,0x2e,0x39, + 0x36,0x35,0x2d,0x32,0x2e,0x31,0x35,0x2c,0x32,0x2e, + 0x31,0x35,0x63,0x30,0x2c,0x31,0x2e,0x31,0x38,0x36, + 0x2c,0x30,0x2e,0x39,0x36,0x35,0x2c,0x32,0x2e,0x31, + 0x35,0x31,0x2c,0x32,0x2e,0x31,0x35,0x2c,0x32,0x2e, + 0x31,0x35,0x31,0x0d,0x0a,0x09,0x09,0x09,0x73,0x32, + 0x2e,0x31,0x35,0x2d,0x30,0x2e,0x39,0x36,0x35,0x2c, + 0x32,0x2e,0x31,0x35,0x2d,0x32,0x2e,0x31,0x35,0x31, + 0x43,0x32,0x30,0x2e,0x37,0x31,0x38,0x2c,0x31,0x37, + 0x2e,0x33,0x38,0x31,0x2c,0x31,0x39,0x2e,0x37,0x35, + 0x33,0x2c,0x31,0x36,0x2e,0x34,0x31,0x37,0x2c,0x31, + 0x38,0x2e,0x35,0x36,0x38,0x2c,0x31,0x36,0x2e,0x34, + 0x31,0x37,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c, + 0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d, + 0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66, + 0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37, + 0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,0x38, + 0x2e,0x35,0x36,0x37,0x2c,0x33,0x2e,0x32,0x32,0x6c, + 0x2d,0x33,0x2e,0x30,0x30,0x35,0x2c,0x34,0x2e,0x36, + 0x38,0x34,0x68,0x36,0x2e,0x30,0x31,0x31,0x4c,0x31, + 0x38,0x2e,0x35,0x36,0x37,0x2c,0x33,0x2e,0x32,0x32, + 0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70, + 0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22, + 0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20,0x64, + 0x3d,0x22,0x4d,0x32,0x31,0x2e,0x35,0x37,0x33,0x2c, + 0x38,0x2e,0x36,0x35,0x34,0x68,0x2d,0x36,0x2e,0x30, + 0x31,0x31,0x63,0x2d,0x30,0x2e,0x32,0x37,0x34,0x2c, + 0x30,0x2d,0x30,0x2e,0x35,0x32,0x36,0x2d,0x30,0x2e, + 0x31,0x35,0x2d,0x30,0x2e,0x36,0x35,0x38,0x2d,0x30, + 0x2e,0x33,0x39,0x63,0x2d,0x30,0x2e,0x31,0x33,0x31, + 0x2d,0x30,0x2e,0x32,0x34,0x31,0x2d,0x30,0x2e,0x31, + 0x32,0x31,0x2d,0x30,0x2e,0x35,0x33,0x34,0x2c,0x30, + 0x2e,0x30,0x32,0x37,0x2d,0x30,0x2e,0x37,0x36,0x35, + 0x6c,0x33,0x2e,0x30,0x30,0x35,0x2d,0x34,0x2e,0x36, + 0x38,0x34,0x0d,0x0a,0x09,0x09,0x09,0x63,0x30,0x2e, + 0x32,0x37,0x36,0x2d,0x30,0x2e,0x34,0x33,0x31,0x2c, + 0x30,0x2e,0x39,0x38,0x36,0x2d,0x30,0x2e,0x34,0x33, + 0x2c,0x31,0x2e,0x32,0x36,0x33,0x2c,0x30,0x6c,0x33, + 0x2e,0x30,0x30,0x35,0x2c,0x34,0x2e,0x36,0x38,0x34, + 0x63,0x30,0x2e,0x31,0x34,0x38,0x2c,0x30,0x2e,0x32, + 0x33,0x31,0x2c,0x30,0x2e,0x31,0x35,0x39,0x2c,0x30, + 0x2e,0x35,0x32,0x34,0x2c,0x30,0x2e,0x30,0x32,0x37, + 0x2c,0x30,0x2e,0x37,0x36,0x35,0x43,0x32,0x32,0x2e, + 0x30,0x39,0x39,0x2c,0x38,0x2e,0x35,0x30,0x34,0x2c, + 0x32,0x31,0x2e,0x38,0x34,0x37,0x2c,0x38,0x2e,0x36, + 0x35,0x34,0x2c,0x32,0x31,0x2e,0x35,0x37,0x33,0x2c, + 0x38,0x2e,0x36,0x35,0x34,0x7a,0x0d,0x0a,0x09,0x09, + 0x09,0x20,0x4d,0x31,0x36,0x2e,0x39,0x33,0x34,0x2c, + 0x37,0x2e,0x31,0x35,0x34,0x68,0x33,0x2e,0x32,0x36, + 0x37,0x6c,0x2d,0x31,0x2e,0x36,0x33,0x34,0x2d,0x32, + 0x2e,0x35,0x34,0x35,0x4c,0x31,0x36,0x2e,0x39,0x33, + 0x34,0x2c,0x37,0x2e,0x31,0x35,0x34,0x7a,0x22,0x2f, + 0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a, + 0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70, + 0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22, + 0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20,0x64, + 0x3d,0x22,0x4d,0x37,0x2e,0x38,0x34,0x35,0x2c,0x32, + 0x32,0x2e,0x33,0x32,0x33,0x63,0x2d,0x30,0x2e,0x31, + 0x34,0x31,0x2c,0x30,0x2d,0x30,0x2e,0x32,0x38,0x32, + 0x2d,0x30,0x2e,0x30,0x34,0x2d,0x30,0x2e,0x34,0x30, + 0x35,0x2d,0x30,0x2e,0x31,0x31,0x39,0x6c,0x2d,0x34, + 0x2e,0x36,0x38,0x34,0x2d,0x33,0x2e,0x30,0x30,0x34, + 0x63,0x2d,0x30,0x2e,0x32,0x31,0x35,0x2d,0x30,0x2e, + 0x31,0x33,0x38,0x2d,0x30,0x2e,0x33,0x34,0x35,0x2d, + 0x30,0x2e,0x33,0x37,0x36,0x2d,0x30,0x2e,0x33,0x34, + 0x35,0x2d,0x30,0x2e,0x36,0x33,0x31,0x0d,0x0a,0x09, + 0x09,0x09,0x73,0x30,0x2e,0x31,0x33,0x2d,0x30,0x2e, + 0x34,0x39,0x33,0x2c,0x30,0x2e,0x33,0x34,0x35,0x2d, + 0x30,0x2e,0x36,0x33,0x31,0x6c,0x34,0x2e,0x36,0x38, + 0x34,0x2d,0x33,0x2e,0x30,0x30,0x36,0x63,0x30,0x2e, + 0x32,0x33,0x31,0x2d,0x30,0x2e,0x31,0x34,0x37,0x2c, + 0x30,0x2e,0x35,0x32,0x34,0x2d,0x30,0x2e,0x31,0x35, + 0x38,0x2c,0x30,0x2e,0x37,0x36,0x35,0x2d,0x30,0x2e, + 0x30,0x32,0x37,0x63,0x30,0x2e,0x32,0x34,0x2c,0x30, + 0x2e,0x31,0x33,0x31,0x2c,0x30,0x2e,0x33,0x39,0x2c, + 0x30,0x2e,0x33,0x38,0x34,0x2c,0x30,0x2e,0x33,0x39, + 0x2c,0x30,0x2e,0x36,0x35,0x38,0x76,0x36,0x2e,0x30, + 0x31,0x31,0x0d,0x0a,0x09,0x09,0x09,0x63,0x30,0x2c, + 0x30,0x2e,0x32,0x37,0x34,0x2d,0x30,0x2e,0x31,0x35, + 0x2c,0x30,0x2e,0x35,0x32,0x36,0x2d,0x30,0x2e,0x33, + 0x39,0x2c,0x30,0x2e,0x36,0x35,0x38,0x43,0x38,0x2e, + 0x30,0x39,0x33,0x2c,0x32,0x32,0x2e,0x32,0x39,0x32, + 0x2c,0x37,0x2e,0x39,0x36,0x39,0x2c,0x32,0x32,0x2e, + 0x33,0x32,0x33,0x2c,0x37,0x2e,0x38,0x34,0x35,0x2c, + 0x32,0x32,0x2e,0x33,0x32,0x33,0x7a,0x20,0x4d,0x34, + 0x2e,0x35,0x35,0x2c,0x31,0x38,0x2e,0x35,0x36,0x38, + 0x6c,0x32,0x2e,0x35,0x34,0x35,0x2c,0x31,0x2e,0x36, + 0x33,0x33,0x76,0x2d,0x33,0x2e,0x32,0x36,0x36,0x4c, + 0x34,0x2e,0x35,0x35,0x2c,0x31,0x38,0x2e,0x35,0x36, + 0x38,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c,0x2f, + 0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,0x0a, + 0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69, + 0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37,0x37, + 0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32,0x39,0x2e, + 0x32,0x33,0x32,0x2c,0x32,0x32,0x2e,0x33,0x32,0x32, + 0x63,0x2d,0x30,0x2e,0x31,0x32,0x34,0x2c,0x30,0x2d, + 0x30,0x2e,0x32,0x34,0x37,0x2d,0x30,0x2e,0x30,0x33, + 0x2d,0x30,0x2e,0x33,0x35,0x39,0x2d,0x30,0x2e,0x30, + 0x39,0x32,0x63,0x2d,0x30,0x2e,0x32,0x34,0x31,0x2d, + 0x30,0x2e,0x31,0x33,0x32,0x2d,0x30,0x2e,0x33,0x39, + 0x31,0x2d,0x30,0x2e,0x33,0x38,0x34,0x2d,0x30,0x2e, + 0x33,0x39,0x31,0x2d,0x30,0x2e,0x36,0x35,0x38,0x76, + 0x2d,0x36,0x2e,0x30,0x31,0x0d,0x0a,0x09,0x09,0x09, + 0x63,0x30,0x2d,0x30,0x2e,0x32,0x37,0x34,0x2c,0x30, + 0x2e,0x31,0x34,0x39,0x2d,0x30,0x2e,0x35,0x32,0x36, + 0x2c,0x30,0x2e,0x33,0x39,0x31,0x2d,0x30,0x2e,0x36, + 0x35,0x38,0x63,0x30,0x2e,0x32,0x33,0x39,0x2d,0x30, + 0x2e,0x31,0x33,0x31,0x2c,0x30,0x2e,0x35,0x33,0x33, + 0x2d,0x30,0x2e,0x31,0x32,0x33,0x2c,0x30,0x2e,0x37, + 0x36,0x35,0x2c,0x30,0x2e,0x30,0x32,0x37,0x6c,0x34, + 0x2e,0x36,0x38,0x34,0x2c,0x33,0x2e,0x30,0x30,0x35, + 0x63,0x30,0x2e,0x32,0x31,0x35,0x2c,0x30,0x2e,0x31, + 0x33,0x38,0x2c,0x30,0x2e,0x33,0x34,0x35,0x2c,0x30, + 0x2e,0x33,0x37,0x36,0x2c,0x30,0x2e,0x33,0x34,0x35, + 0x2c,0x30,0x2e,0x36,0x33,0x31,0x0d,0x0a,0x09,0x09, + 0x09,0x73,0x2d,0x30,0x2e,0x31,0x33,0x2c,0x30,0x2e, + 0x34,0x39,0x33,0x2d,0x30,0x2e,0x33,0x34,0x35,0x2c, + 0x30,0x2e,0x36,0x33,0x31,0x6c,0x2d,0x34,0x2e,0x36, + 0x38,0x34,0x2c,0x33,0x2e,0x30,0x30,0x34,0x43,0x32, + 0x39,0x2e,0x35,0x31,0x34,0x2c,0x32,0x32,0x2e,0x32, + 0x38,0x32,0x2c,0x32,0x39,0x2e,0x33,0x37,0x33,0x2c, + 0x32,0x32,0x2e,0x33,0x32,0x32,0x2c,0x32,0x39,0x2e, + 0x32,0x33,0x32,0x2c,0x32,0x32,0x2e,0x33,0x32,0x32, + 0x7a,0x20,0x4d,0x32,0x39,0x2e,0x39,0x38,0x32,0x2c, + 0x31,0x36,0x2e,0x39,0x33,0x34,0x56,0x32,0x30,0x2e, + 0x32,0x6c,0x32,0x2e,0x35,0x34,0x35,0x2d,0x31,0x2e, + 0x36,0x33,0x33,0x0d,0x0a,0x09,0x09,0x09,0x4c,0x32, + 0x39,0x2e,0x39,0x38,0x32,0x2c,0x31,0x36,0x2e,0x39, + 0x33,0x34,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c, + 0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d, + 0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66, + 0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37, + 0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,0x38, + 0x2e,0x35,0x36,0x37,0x2c,0x33,0x34,0x2e,0x36,0x36, + 0x35,0x4c,0x31,0x38,0x2e,0x35,0x36,0x37,0x2c,0x33, + 0x34,0x2e,0x36,0x36,0x35,0x63,0x2d,0x30,0x2e,0x32, + 0x35,0x35,0x2c,0x30,0x2d,0x30,0x2e,0x34,0x39,0x33, + 0x2d,0x30,0x2e,0x31,0x33,0x2d,0x30,0x2e,0x36,0x33, + 0x31,0x2d,0x30,0x2e,0x33,0x34,0x35,0x6c,0x2d,0x33, + 0x2e,0x30,0x30,0x35,0x2d,0x34,0x2e,0x36,0x38,0x34, + 0x0d,0x0a,0x09,0x09,0x09,0x63,0x2d,0x30,0x2e,0x31, + 0x34,0x38,0x2d,0x30,0x2e,0x32,0x33,0x31,0x2d,0x30, + 0x2e,0x31,0x35,0x38,0x2d,0x30,0x2e,0x35,0x32,0x34, + 0x2d,0x30,0x2e,0x30,0x32,0x37,0x2d,0x30,0x2e,0x37, + 0x36,0x35,0x63,0x30,0x2e,0x31,0x33,0x32,0x2d,0x30, + 0x2e,0x32,0x34,0x31,0x2c,0x30,0x2e,0x33,0x38,0x34, + 0x2d,0x30,0x2e,0x33,0x39,0x31,0x2c,0x30,0x2e,0x36, + 0x35,0x38,0x2d,0x30,0x2e,0x33,0x39,0x31,0x68,0x36, + 0x2e,0x30,0x31,0x31,0x63,0x30,0x2e,0x32,0x37,0x34, + 0x2c,0x30,0x2c,0x30,0x2e,0x35,0x32,0x36,0x2c,0x30, + 0x2e,0x31,0x34,0x39,0x2c,0x30,0x2e,0x36,0x35,0x38, + 0x2c,0x30,0x2e,0x33,0x39,0x31,0x0d,0x0a,0x09,0x09, + 0x09,0x63,0x30,0x2e,0x31,0x33,0x32,0x2c,0x30,0x2e, + 0x32,0x34,0x2c,0x30,0x2e,0x31,0x32,0x31,0x2c,0x30, + 0x2e,0x35,0x33,0x33,0x2d,0x30,0x2e,0x30,0x32,0x37, + 0x2c,0x30,0x2e,0x37,0x36,0x35,0x6c,0x2d,0x33,0x2e, + 0x30,0x30,0x35,0x2c,0x34,0x2e,0x36,0x38,0x34,0x43, + 0x31,0x39,0x2e,0x30,0x36,0x2c,0x33,0x34,0x2e,0x35, + 0x33,0x35,0x2c,0x31,0x38,0x2e,0x38,0x32,0x32,0x2c, + 0x33,0x34,0x2e,0x36,0x36,0x35,0x2c,0x31,0x38,0x2e, + 0x35,0x36,0x37,0x2c,0x33,0x34,0x2e,0x36,0x36,0x35, + 0x7a,0x20,0x4d,0x31,0x36,0x2e,0x39,0x33,0x34,0x2c, + 0x32,0x39,0x2e,0x39,0x38,0x31,0x6c,0x31,0x2e,0x36, + 0x33,0x33,0x2c,0x32,0x2e,0x35,0x34,0x35,0x0d,0x0a, + 0x09,0x09,0x09,0x6c,0x31,0x2e,0x36,0x33,0x34,0x2d, + 0x32,0x2e,0x35,0x34,0x35,0x48,0x31,0x36,0x2e,0x39, + 0x33,0x34,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c, + 0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d, + 0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d,0x0a +}; diff --git a/data/converted/help_dpad_updown_svg.cpp b/data/converted/help_dpad_updown_svg.cpp new file mode 100644 index 000000000..9e5d79ff1 --- /dev/null +++ b/data/converted/help_dpad_updown_svg.cpp @@ -0,0 +1,337 @@ +//this file was auto-generated from "dpad_updown.svg" by res2h + +#include "../Resources.h" + +const size_t help_dpad_updown_svg_size = 3298; +const unsigned char help_dpad_updown_svg_data[3298] = { + 0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20, + 0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22, + 0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a, + 0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62, + 0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61, + 0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33, + 0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e, + 0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72, + 0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30, + 0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20, + 0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f, + 0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20, + 0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f, + 0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20, + 0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45, + 0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44, + 0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64, + 0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22, + 0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45, + 0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a, + 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f, + 0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76, + 0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78, + 0x6c,0x69,0x6e,0x6b,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,0x78, + 0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30, + 0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78, + 0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68, + 0x3d,0x22,0x33,0x37,0x2e,0x31,0x33,0x34,0x70,0x78, + 0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22, + 0x33,0x37,0x2e,0x31,0x33,0x34,0x70,0x78,0x22,0x20, + 0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30, + 0x20,0x30,0x20,0x33,0x37,0x2e,0x31,0x33,0x34,0x20, + 0x33,0x37,0x2e,0x31,0x33,0x34,0x22,0x20,0x65,0x6e, + 0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67, + 0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77, + 0x20,0x30,0x20,0x30,0x20,0x33,0x37,0x2e,0x31,0x33, + 0x34,0x20,0x33,0x37,0x2e,0x31,0x33,0x34,0x22,0x20, + 0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d, + 0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22, + 0x3e,0x0d,0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c, + 0x67,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x67,0x3e,0x0d, + 0x0a,0x09,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20, + 0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37, + 0x37,0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32, + 0x32,0x2e,0x31,0x32,0x33,0x2c,0x33,0x37,0x2e,0x30, + 0x39,0x37,0x68,0x2d,0x37,0x2e,0x31,0x31,0x31,0x63, + 0x2d,0x32,0x2e,0x32,0x38,0x39,0x2c,0x30,0x2d,0x33, + 0x2e,0x31,0x31,0x39,0x2d,0x31,0x2e,0x38,0x36,0x36, + 0x2d,0x33,0x2e,0x31,0x31,0x39,0x2d,0x33,0x2e,0x31, + 0x32,0x31,0x76,0x2d,0x38,0x2e,0x37,0x33,0x31,0x48, + 0x33,0x2e,0x31,0x35,0x38,0x63,0x2d,0x32,0x2e,0x32, + 0x39,0x2c,0x30,0x2d,0x33,0x2e,0x31,0x32,0x31,0x2d, + 0x31,0x2e,0x38,0x36,0x36,0x2d,0x33,0x2e,0x31,0x32, + 0x31,0x2d,0x33,0x2e,0x31,0x32,0x31,0x0d,0x0a,0x09, + 0x09,0x09,0x09,0x76,0x2d,0x37,0x2e,0x31,0x31,0x32, + 0x63,0x30,0x2d,0x32,0x2e,0x32,0x38,0x39,0x2c,0x31, + 0x2e,0x38,0x36,0x37,0x2d,0x33,0x2e,0x31,0x32,0x2c, + 0x33,0x2e,0x31,0x32,0x31,0x2d,0x33,0x2e,0x31,0x32, + 0x68,0x38,0x2e,0x37,0x33,0x34,0x56,0x33,0x2e,0x31, + 0x35,0x39,0x63,0x30,0x2d,0x32,0x2e,0x32,0x39,0x2c, + 0x31,0x2e,0x38,0x36,0x35,0x2d,0x33,0x2e,0x31,0x32, + 0x31,0x2c,0x33,0x2e,0x31,0x31,0x39,0x2d,0x33,0x2e, + 0x31,0x32,0x31,0x68,0x37,0x2e,0x31,0x31,0x31,0x63, + 0x32,0x2e,0x32,0x39,0x2c,0x30,0x2c,0x33,0x2e,0x31, + 0x32,0x31,0x2c,0x31,0x2e,0x38,0x36,0x37,0x2c,0x33, + 0x2e,0x31,0x32,0x31,0x2c,0x33,0x2e,0x31,0x32,0x31, + 0x76,0x38,0x2e,0x37,0x33,0x32,0x0d,0x0a,0x09,0x09, + 0x09,0x09,0x68,0x38,0x2e,0x37,0x33,0x32,0x63,0x32, + 0x2e,0x32,0x39,0x2c,0x30,0x2c,0x33,0x2e,0x31,0x32, + 0x31,0x2c,0x31,0x2e,0x38,0x36,0x36,0x2c,0x33,0x2e, + 0x31,0x32,0x31,0x2c,0x33,0x2e,0x31,0x32,0x76,0x37, + 0x2e,0x31,0x31,0x32,0x63,0x30,0x2c,0x32,0x2e,0x32, + 0x39,0x2d,0x31,0x2e,0x38,0x36,0x36,0x2c,0x33,0x2e, + 0x31,0x32,0x31,0x2d,0x33,0x2e,0x31,0x32,0x31,0x2c, + 0x33,0x2e,0x31,0x32,0x31,0x68,0x2d,0x38,0x2e,0x37, + 0x33,0x32,0x76,0x38,0x2e,0x37,0x33,0x31,0x0d,0x0a, + 0x09,0x09,0x09,0x09,0x43,0x32,0x35,0x2e,0x32,0x34, + 0x34,0x2c,0x33,0x36,0x2e,0x32,0x36,0x36,0x2c,0x32, + 0x33,0x2e,0x33,0x37,0x37,0x2c,0x33,0x37,0x2e,0x30, + 0x39,0x37,0x2c,0x32,0x32,0x2e,0x31,0x32,0x33,0x2c, + 0x33,0x37,0x2e,0x30,0x39,0x37,0x7a,0x20,0x4d,0x33, + 0x2e,0x31,0x35,0x38,0x2c,0x31,0x33,0x2e,0x33,0x39, + 0x31,0x63,0x2d,0x30,0x2e,0x33,0x37,0x36,0x2c,0x30, + 0x2e,0x30,0x30,0x36,0x2d,0x31,0x2e,0x36,0x32,0x31, + 0x2c,0x30,0x2e,0x31,0x33,0x39,0x2d,0x31,0x2e,0x36, + 0x32,0x31,0x2c,0x31,0x2e,0x36,0x32,0x76,0x37,0x2e, + 0x31,0x31,0x32,0x0d,0x0a,0x09,0x09,0x09,0x09,0x63, + 0x30,0x2e,0x30,0x30,0x36,0x2c,0x30,0x2e,0x33,0x37, + 0x36,0x2c,0x30,0x2e,0x31,0x33,0x39,0x2c,0x31,0x2e, + 0x36,0x32,0x31,0x2c,0x31,0x2e,0x36,0x32,0x31,0x2c, + 0x31,0x2e,0x36,0x32,0x31,0x68,0x31,0x30,0x2e,0x32, + 0x33,0x34,0x76,0x31,0x30,0x2e,0x32,0x33,0x31,0x63, + 0x30,0x2e,0x30,0x30,0x35,0x2c,0x30,0x2e,0x33,0x37, + 0x36,0x2c,0x30,0x2e,0x31,0x33,0x39,0x2c,0x31,0x2e, + 0x36,0x32,0x31,0x2c,0x31,0x2e,0x36,0x31,0x39,0x2c, + 0x31,0x2e,0x36,0x32,0x31,0x68,0x37,0x2e,0x31,0x30, + 0x38,0x0d,0x0a,0x09,0x09,0x09,0x09,0x63,0x30,0x2e, + 0x33,0x38,0x34,0x2d,0x30,0x2e,0x30,0x30,0x36,0x2c, + 0x31,0x2e,0x36,0x32,0x34,0x2d,0x30,0x2e,0x31,0x34, + 0x32,0x2c,0x31,0x2e,0x36,0x32,0x34,0x2d,0x31,0x2e, + 0x36,0x32,0x31,0x56,0x32,0x33,0x2e,0x37,0x34,0x35, + 0x68,0x31,0x30,0x2e,0x32,0x33,0x32,0x63,0x30,0x2e, + 0x33,0x37,0x36,0x2d,0x30,0x2e,0x30,0x30,0x36,0x2c, + 0x31,0x2e,0x36,0x32,0x31,0x2d,0x30,0x2e,0x31,0x34, + 0x2c,0x31,0x2e,0x36,0x32,0x31,0x2d,0x31,0x2e,0x36, + 0x32,0x31,0x76,0x2d,0x37,0x2e,0x31,0x31,0x32,0x0d, + 0x0a,0x09,0x09,0x09,0x09,0x63,0x2d,0x30,0x2e,0x30, + 0x30,0x36,0x2d,0x30,0x2e,0x33,0x37,0x36,0x2d,0x30, + 0x2e,0x31,0x34,0x2d,0x31,0x2e,0x36,0x32,0x2d,0x31, + 0x2e,0x36,0x32,0x31,0x2d,0x31,0x2e,0x36,0x32,0x48, + 0x32,0x33,0x2e,0x37,0x34,0x34,0x56,0x33,0x2e,0x31, + 0x35,0x39,0x63,0x2d,0x30,0x2e,0x30,0x30,0x36,0x2d, + 0x30,0x2e,0x33,0x37,0x36,0x2d,0x30,0x2e,0x31,0x34, + 0x2d,0x31,0x2e,0x36,0x32,0x31,0x2d,0x31,0x2e,0x36, + 0x32,0x31,0x2d,0x31,0x2e,0x36,0x32,0x31,0x68,0x2d, + 0x37,0x2e,0x31,0x31,0x31,0x0d,0x0a,0x09,0x09,0x09, + 0x09,0x63,0x2d,0x30,0x2e,0x33,0x37,0x36,0x2c,0x30, + 0x2e,0x30,0x30,0x36,0x2d,0x31,0x2e,0x36,0x31,0x39, + 0x2c,0x30,0x2e,0x31,0x33,0x39,0x2d,0x31,0x2e,0x36, + 0x31,0x39,0x2c,0x31,0x2e,0x36,0x32,0x31,0x76,0x31, + 0x30,0x2e,0x32,0x33,0x32,0x48,0x33,0x2e,0x31,0x35, + 0x38,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x09,0x3c, + 0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e, + 0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x09, + 0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c, + 0x3d,0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22, + 0x20,0x64,0x3d,0x22,0x4d,0x31,0x38,0x2e,0x35,0x36, + 0x38,0x2c,0x32,0x32,0x2e,0x32,0x31,0x38,0x63,0x2d, + 0x32,0x2e,0x30,0x31,0x33,0x2c,0x30,0x2d,0x33,0x2e, + 0x36,0x35,0x2d,0x31,0x2e,0x36,0x33,0x38,0x2d,0x33, + 0x2e,0x36,0x35,0x2d,0x33,0x2e,0x36,0x35,0x31,0x63, + 0x30,0x2d,0x32,0x2e,0x30,0x31,0x33,0x2c,0x31,0x2e, + 0x36,0x33,0x38,0x2d,0x33,0x2e,0x36,0x35,0x2c,0x33, + 0x2e,0x36,0x35,0x2d,0x33,0x2e,0x36,0x35,0x73,0x33, + 0x2e,0x36,0x35,0x2c,0x31,0x2e,0x36,0x33,0x38,0x2c, + 0x33,0x2e,0x36,0x35,0x2c,0x33,0x2e,0x36,0x35,0x0d, + 0x0a,0x09,0x09,0x09,0x43,0x32,0x32,0x2e,0x32,0x31, + 0x38,0x2c,0x32,0x30,0x2e,0x35,0x38,0x31,0x2c,0x32, + 0x30,0x2e,0x35,0x38,0x31,0x2c,0x32,0x32,0x2e,0x32, + 0x31,0x38,0x2c,0x31,0x38,0x2e,0x35,0x36,0x38,0x2c, + 0x32,0x32,0x2e,0x32,0x31,0x38,0x7a,0x20,0x4d,0x31, + 0x38,0x2e,0x35,0x36,0x38,0x2c,0x31,0x36,0x2e,0x34, + 0x31,0x37,0x63,0x2d,0x31,0x2e,0x31,0x38,0x36,0x2c, + 0x30,0x2d,0x32,0x2e,0x31,0x35,0x2c,0x30,0x2e,0x39, + 0x36,0x35,0x2d,0x32,0x2e,0x31,0x35,0x2c,0x32,0x2e, + 0x31,0x35,0x63,0x30,0x2c,0x31,0x2e,0x31,0x38,0x36, + 0x2c,0x30,0x2e,0x39,0x36,0x35,0x2c,0x32,0x2e,0x31, + 0x35,0x31,0x2c,0x32,0x2e,0x31,0x35,0x2c,0x32,0x2e, + 0x31,0x35,0x31,0x0d,0x0a,0x09,0x09,0x09,0x73,0x32, + 0x2e,0x31,0x35,0x2d,0x30,0x2e,0x39,0x36,0x35,0x2c, + 0x32,0x2e,0x31,0x35,0x2d,0x32,0x2e,0x31,0x35,0x31, + 0x43,0x32,0x30,0x2e,0x37,0x31,0x38,0x2c,0x31,0x37, + 0x2e,0x33,0x38,0x31,0x2c,0x31,0x39,0x2e,0x37,0x35, + 0x33,0x2c,0x31,0x36,0x2e,0x34,0x31,0x37,0x2c,0x31, + 0x38,0x2e,0x35,0x36,0x38,0x2c,0x31,0x36,0x2e,0x34, + 0x31,0x37,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c, + 0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d, + 0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66, + 0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37, + 0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,0x38, + 0x2e,0x35,0x36,0x37,0x2c,0x33,0x2e,0x32,0x32,0x6c, + 0x2d,0x33,0x2e,0x30,0x30,0x35,0x2c,0x34,0x2e,0x36, + 0x38,0x34,0x68,0x36,0x2e,0x30,0x31,0x31,0x4c,0x31, + 0x38,0x2e,0x35,0x36,0x37,0x2c,0x33,0x2e,0x32,0x32, + 0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70, + 0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22, + 0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20,0x64, + 0x3d,0x22,0x4d,0x32,0x31,0x2e,0x35,0x37,0x33,0x2c, + 0x38,0x2e,0x36,0x35,0x34,0x68,0x2d,0x36,0x2e,0x30, + 0x31,0x31,0x63,0x2d,0x30,0x2e,0x32,0x37,0x34,0x2c, + 0x30,0x2d,0x30,0x2e,0x35,0x32,0x36,0x2d,0x30,0x2e, + 0x31,0x35,0x2d,0x30,0x2e,0x36,0x35,0x38,0x2d,0x30, + 0x2e,0x33,0x39,0x63,0x2d,0x30,0x2e,0x31,0x33,0x31, + 0x2d,0x30,0x2e,0x32,0x34,0x31,0x2d,0x30,0x2e,0x31, + 0x32,0x31,0x2d,0x30,0x2e,0x35,0x33,0x34,0x2c,0x30, + 0x2e,0x30,0x32,0x37,0x2d,0x30,0x2e,0x37,0x36,0x35, + 0x6c,0x33,0x2e,0x30,0x30,0x35,0x2d,0x34,0x2e,0x36, + 0x38,0x34,0x0d,0x0a,0x09,0x09,0x09,0x63,0x30,0x2e, + 0x32,0x37,0x36,0x2d,0x30,0x2e,0x34,0x33,0x31,0x2c, + 0x30,0x2e,0x39,0x38,0x36,0x2d,0x30,0x2e,0x34,0x33, + 0x2c,0x31,0x2e,0x32,0x36,0x33,0x2c,0x30,0x6c,0x33, + 0x2e,0x30,0x30,0x35,0x2c,0x34,0x2e,0x36,0x38,0x34, + 0x63,0x30,0x2e,0x31,0x34,0x38,0x2c,0x30,0x2e,0x32, + 0x33,0x31,0x2c,0x30,0x2e,0x31,0x35,0x39,0x2c,0x30, + 0x2e,0x35,0x32,0x34,0x2c,0x30,0x2e,0x30,0x32,0x37, + 0x2c,0x30,0x2e,0x37,0x36,0x35,0x43,0x32,0x32,0x2e, + 0x30,0x39,0x39,0x2c,0x38,0x2e,0x35,0x30,0x34,0x2c, + 0x32,0x31,0x2e,0x38,0x34,0x37,0x2c,0x38,0x2e,0x36, + 0x35,0x34,0x2c,0x32,0x31,0x2e,0x35,0x37,0x33,0x2c, + 0x38,0x2e,0x36,0x35,0x34,0x7a,0x0d,0x0a,0x09,0x09, + 0x09,0x20,0x4d,0x31,0x36,0x2e,0x39,0x33,0x34,0x2c, + 0x37,0x2e,0x31,0x35,0x34,0x68,0x33,0x2e,0x32,0x36, + 0x37,0x6c,0x2d,0x31,0x2e,0x36,0x33,0x34,0x2d,0x32, + 0x2e,0x35,0x34,0x35,0x4c,0x31,0x36,0x2e,0x39,0x33, + 0x34,0x2c,0x37,0x2e,0x31,0x35,0x34,0x7a,0x22,0x2f, + 0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a, + 0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70, + 0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22, + 0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20,0x64, + 0x3d,0x22,0x4d,0x37,0x2e,0x38,0x34,0x35,0x2c,0x32, + 0x32,0x2e,0x33,0x32,0x33,0x63,0x2d,0x30,0x2e,0x31, + 0x34,0x31,0x2c,0x30,0x2d,0x30,0x2e,0x32,0x38,0x32, + 0x2d,0x30,0x2e,0x30,0x34,0x2d,0x30,0x2e,0x34,0x30, + 0x35,0x2d,0x30,0x2e,0x31,0x31,0x39,0x6c,0x2d,0x34, + 0x2e,0x36,0x38,0x34,0x2d,0x33,0x2e,0x30,0x30,0x34, + 0x63,0x2d,0x30,0x2e,0x32,0x31,0x35,0x2d,0x30,0x2e, + 0x31,0x33,0x38,0x2d,0x30,0x2e,0x33,0x34,0x35,0x2d, + 0x30,0x2e,0x33,0x37,0x36,0x2d,0x30,0x2e,0x33,0x34, + 0x35,0x2d,0x30,0x2e,0x36,0x33,0x31,0x0d,0x0a,0x09, + 0x09,0x09,0x73,0x30,0x2e,0x31,0x33,0x2d,0x30,0x2e, + 0x34,0x39,0x33,0x2c,0x30,0x2e,0x33,0x34,0x35,0x2d, + 0x30,0x2e,0x36,0x33,0x31,0x6c,0x34,0x2e,0x36,0x38, + 0x34,0x2d,0x33,0x2e,0x30,0x30,0x36,0x63,0x30,0x2e, + 0x32,0x33,0x31,0x2d,0x30,0x2e,0x31,0x34,0x37,0x2c, + 0x30,0x2e,0x35,0x32,0x34,0x2d,0x30,0x2e,0x31,0x35, + 0x38,0x2c,0x30,0x2e,0x37,0x36,0x35,0x2d,0x30,0x2e, + 0x30,0x32,0x37,0x63,0x30,0x2e,0x32,0x34,0x2c,0x30, + 0x2e,0x31,0x33,0x31,0x2c,0x30,0x2e,0x33,0x39,0x2c, + 0x30,0x2e,0x33,0x38,0x34,0x2c,0x30,0x2e,0x33,0x39, + 0x2c,0x30,0x2e,0x36,0x35,0x38,0x76,0x36,0x2e,0x30, + 0x31,0x31,0x0d,0x0a,0x09,0x09,0x09,0x63,0x30,0x2c, + 0x30,0x2e,0x32,0x37,0x34,0x2d,0x30,0x2e,0x31,0x35, + 0x2c,0x30,0x2e,0x35,0x32,0x36,0x2d,0x30,0x2e,0x33, + 0x39,0x2c,0x30,0x2e,0x36,0x35,0x38,0x43,0x38,0x2e, + 0x30,0x39,0x33,0x2c,0x32,0x32,0x2e,0x32,0x39,0x32, + 0x2c,0x37,0x2e,0x39,0x36,0x39,0x2c,0x32,0x32,0x2e, + 0x33,0x32,0x33,0x2c,0x37,0x2e,0x38,0x34,0x35,0x2c, + 0x32,0x32,0x2e,0x33,0x32,0x33,0x7a,0x20,0x4d,0x34, + 0x2e,0x35,0x35,0x2c,0x31,0x38,0x2e,0x35,0x36,0x38, + 0x6c,0x32,0x2e,0x35,0x34,0x35,0x2c,0x31,0x2e,0x36, + 0x33,0x33,0x76,0x2d,0x33,0x2e,0x32,0x36,0x36,0x4c, + 0x34,0x2e,0x35,0x35,0x2c,0x31,0x38,0x2e,0x35,0x36, + 0x38,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c,0x2f, + 0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,0x0a, + 0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69, + 0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37,0x37, + 0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32,0x39,0x2e, + 0x32,0x33,0x32,0x2c,0x32,0x32,0x2e,0x33,0x32,0x32, + 0x63,0x2d,0x30,0x2e,0x31,0x32,0x34,0x2c,0x30,0x2d, + 0x30,0x2e,0x32,0x34,0x37,0x2d,0x30,0x2e,0x30,0x33, + 0x2d,0x30,0x2e,0x33,0x35,0x39,0x2d,0x30,0x2e,0x30, + 0x39,0x32,0x63,0x2d,0x30,0x2e,0x32,0x34,0x31,0x2d, + 0x30,0x2e,0x31,0x33,0x32,0x2d,0x30,0x2e,0x33,0x39, + 0x31,0x2d,0x30,0x2e,0x33,0x38,0x34,0x2d,0x30,0x2e, + 0x33,0x39,0x31,0x2d,0x30,0x2e,0x36,0x35,0x38,0x76, + 0x2d,0x36,0x2e,0x30,0x31,0x0d,0x0a,0x09,0x09,0x09, + 0x63,0x30,0x2d,0x30,0x2e,0x32,0x37,0x34,0x2c,0x30, + 0x2e,0x31,0x34,0x39,0x2d,0x30,0x2e,0x35,0x32,0x36, + 0x2c,0x30,0x2e,0x33,0x39,0x31,0x2d,0x30,0x2e,0x36, + 0x35,0x38,0x63,0x30,0x2e,0x32,0x33,0x39,0x2d,0x30, + 0x2e,0x31,0x33,0x31,0x2c,0x30,0x2e,0x35,0x33,0x33, + 0x2d,0x30,0x2e,0x31,0x32,0x33,0x2c,0x30,0x2e,0x37, + 0x36,0x35,0x2c,0x30,0x2e,0x30,0x32,0x37,0x6c,0x34, + 0x2e,0x36,0x38,0x34,0x2c,0x33,0x2e,0x30,0x30,0x35, + 0x63,0x30,0x2e,0x32,0x31,0x35,0x2c,0x30,0x2e,0x31, + 0x33,0x38,0x2c,0x30,0x2e,0x33,0x34,0x35,0x2c,0x30, + 0x2e,0x33,0x37,0x36,0x2c,0x30,0x2e,0x33,0x34,0x35, + 0x2c,0x30,0x2e,0x36,0x33,0x31,0x0d,0x0a,0x09,0x09, + 0x09,0x73,0x2d,0x30,0x2e,0x31,0x33,0x2c,0x30,0x2e, + 0x34,0x39,0x33,0x2d,0x30,0x2e,0x33,0x34,0x35,0x2c, + 0x30,0x2e,0x36,0x33,0x31,0x6c,0x2d,0x34,0x2e,0x36, + 0x38,0x34,0x2c,0x33,0x2e,0x30,0x30,0x34,0x43,0x32, + 0x39,0x2e,0x35,0x31,0x34,0x2c,0x32,0x32,0x2e,0x32, + 0x38,0x32,0x2c,0x32,0x39,0x2e,0x33,0x37,0x33,0x2c, + 0x32,0x32,0x2e,0x33,0x32,0x32,0x2c,0x32,0x39,0x2e, + 0x32,0x33,0x32,0x2c,0x32,0x32,0x2e,0x33,0x32,0x32, + 0x7a,0x20,0x4d,0x32,0x39,0x2e,0x39,0x38,0x32,0x2c, + 0x31,0x36,0x2e,0x39,0x33,0x34,0x56,0x32,0x30,0x2e, + 0x32,0x6c,0x32,0x2e,0x35,0x34,0x35,0x2d,0x31,0x2e, + 0x36,0x33,0x33,0x0d,0x0a,0x09,0x09,0x09,0x4c,0x32, + 0x39,0x2e,0x39,0x38,0x32,0x2c,0x31,0x36,0x2e,0x39, + 0x33,0x34,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c, + 0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d, + 0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66, + 0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37, + 0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,0x38, + 0x2e,0x35,0x36,0x37,0x2c,0x33,0x33,0x2e,0x39,0x31, + 0x35,0x6c,0x33,0x2e,0x30,0x30,0x36,0x2d,0x34,0x2e, + 0x36,0x38,0x34,0x68,0x2d,0x36,0x2e,0x30,0x31,0x31, + 0x4c,0x31,0x38,0x2e,0x35,0x36,0x37,0x2c,0x33,0x33, + 0x2e,0x39,0x31,0x35,0x7a,0x22,0x2f,0x3e,0x0d,0x0a, + 0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69, + 0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37,0x37, + 0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,0x38,0x2e, + 0x35,0x36,0x37,0x2c,0x33,0x34,0x2e,0x36,0x36,0x35, + 0x4c,0x31,0x38,0x2e,0x35,0x36,0x37,0x2c,0x33,0x34, + 0x2e,0x36,0x36,0x35,0x63,0x2d,0x30,0x2e,0x32,0x35, + 0x35,0x2c,0x30,0x2d,0x30,0x2e,0x34,0x39,0x33,0x2d, + 0x30,0x2e,0x31,0x33,0x2d,0x30,0x2e,0x36,0x33,0x31, + 0x2d,0x30,0x2e,0x33,0x34,0x35,0x6c,0x2d,0x33,0x2e, + 0x30,0x30,0x35,0x2d,0x34,0x2e,0x36,0x38,0x34,0x0d, + 0x0a,0x09,0x09,0x09,0x63,0x2d,0x30,0x2e,0x31,0x34, + 0x38,0x2d,0x30,0x2e,0x32,0x33,0x31,0x2d,0x30,0x2e, + 0x31,0x35,0x38,0x2d,0x30,0x2e,0x35,0x32,0x34,0x2d, + 0x30,0x2e,0x30,0x32,0x37,0x2d,0x30,0x2e,0x37,0x36, + 0x35,0x63,0x30,0x2e,0x31,0x33,0x32,0x2d,0x30,0x2e, + 0x32,0x34,0x31,0x2c,0x30,0x2e,0x33,0x38,0x34,0x2d, + 0x30,0x2e,0x33,0x39,0x31,0x2c,0x30,0x2e,0x36,0x35, + 0x38,0x2d,0x30,0x2e,0x33,0x39,0x31,0x68,0x36,0x2e, + 0x30,0x31,0x31,0x63,0x30,0x2e,0x32,0x37,0x34,0x2c, + 0x30,0x2c,0x30,0x2e,0x35,0x32,0x36,0x2c,0x30,0x2e, + 0x31,0x34,0x39,0x2c,0x30,0x2e,0x36,0x35,0x38,0x2c, + 0x30,0x2e,0x33,0x39,0x31,0x0d,0x0a,0x09,0x09,0x09, + 0x63,0x30,0x2e,0x31,0x33,0x32,0x2c,0x30,0x2e,0x32, + 0x34,0x2c,0x30,0x2e,0x31,0x32,0x31,0x2c,0x30,0x2e, + 0x35,0x33,0x33,0x2d,0x30,0x2e,0x30,0x32,0x37,0x2c, + 0x30,0x2e,0x37,0x36,0x35,0x6c,0x2d,0x33,0x2e,0x30, + 0x30,0x35,0x2c,0x34,0x2e,0x36,0x38,0x34,0x43,0x31, + 0x39,0x2e,0x30,0x36,0x2c,0x33,0x34,0x2e,0x35,0x33, + 0x35,0x2c,0x31,0x38,0x2e,0x38,0x32,0x32,0x2c,0x33, + 0x34,0x2e,0x36,0x36,0x35,0x2c,0x31,0x38,0x2e,0x35, + 0x36,0x37,0x2c,0x33,0x34,0x2e,0x36,0x36,0x35,0x7a, + 0x20,0x4d,0x31,0x36,0x2e,0x39,0x33,0x34,0x2c,0x32, + 0x39,0x2e,0x39,0x38,0x31,0x6c,0x31,0x2e,0x36,0x33, + 0x33,0x2c,0x32,0x2e,0x35,0x34,0x35,0x0d,0x0a,0x09, + 0x09,0x09,0x6c,0x31,0x2e,0x36,0x33,0x34,0x2d,0x32, + 0x2e,0x35,0x34,0x35,0x48,0x31,0x36,0x2e,0x39,0x33, + 0x34,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c,0x2f, + 0x67,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d,0x0a, + 0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d,0x0a +}; diff --git a/data/converted/help_l_png.cpp b/data/converted/help_l_png.cpp deleted file mode 100644 index b03a58ccc..000000000 --- a/data/converted/help_l_png.cpp +++ /dev/null @@ -1,154 +0,0 @@ -//this file was auto-generated from "l.png" by res2h - -#include "../Resources.h" - -const size_t help_l_png_size = 1464; -const unsigned char help_l_png_data[1464] = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x28, - 0x00,0x00,0x00,0x13,0x08,0x06,0x00,0x00,0x00,0xe2, - 0x43,0x4f,0x03,0x00,0x00,0x00,0x19,0x74,0x45,0x58, - 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, - 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, - 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, - 0x00,0x00,0x03,0x68,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,0x20,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,0x41, - 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, - 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, - 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, - 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, - 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, - 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x22,0x3e,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,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,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,0x20,0x78,0x6d,0x6c,0x6e, - 0x73,0x3a,0x73,0x74,0x52,0x65,0x66,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,0x52,0x65,0x66,0x23,0x22,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,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,0x33,0x38,0x45,0x38,0x44,0x46,0x33,0x39, - 0x31,0x38,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, - 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, - 0x41,0x37,0x35,0x33,0x22,0x20,0x78,0x6d,0x70,0x4d, - 0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, - 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, - 0x64,0x3a,0x41,0x46,0x45,0x45,0x44,0x32,0x37,0x44, - 0x39,0x44,0x39,0x31,0x31,0x31,0x45,0x33,0x41,0x39, - 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, - 0x32,0x45,0x45,0x33,0x22,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,0x41,0x46,0x45,0x45,0x44,0x32,0x37,0x43, - 0x39,0x44,0x39,0x31,0x31,0x31,0x45,0x33,0x41,0x39, - 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, - 0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d,0x70,0x3a, - 0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54,0x6f,0x6f, - 0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65,0x20,0x50, - 0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x43, - 0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69,0x6e,0x74, - 0x6f,0x73,0x68,0x29,0x22,0x3e,0x20,0x3c,0x78,0x6d, - 0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69,0x76,0x65, - 0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74,0x52,0x65, - 0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65, - 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69, - 0x64,0x3a,0x33,0x38,0x45,0x38,0x44,0x46,0x33,0x39, - 0x31,0x38,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, - 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, - 0x41,0x37,0x35,0x33,0x22,0x20,0x73,0x74,0x52,0x65, - 0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, - 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, - 0x64,0x3a,0x33,0x38,0x45,0x38,0x44,0x46,0x33,0x39, - 0x31,0x38,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, - 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, - 0x41,0x37,0x35,0x33,0x22,0x2f,0x3e,0x20,0x3c,0x2f, - 0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72,0x69, - 0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c,0x2f,0x72, - 0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20,0x3c,0x2f, - 0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74,0x61,0x3e, - 0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74, - 0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22,0x3f,0x3e, - 0xc2,0x6d,0x14,0xe5,0x00,0x00,0x01,0xe6,0x49,0x44, - 0x41,0x54,0x78,0xda,0xcc,0xd6,0xcf,0x4b,0x54,0x51, - 0x18,0xc6,0xf1,0x3b,0xb7,0x31,0x15,0x45,0x2c,0x1c, - 0x1b,0x14,0x67,0xe5,0x22,0xd0,0x8a,0x10,0x5a,0x68, - 0x44,0x8b,0x16,0x09,0xea,0x84,0x9b,0xf0,0x47,0x8b, - 0x84,0xd0,0x64,0x68,0x13,0x34,0xfe,0x0f,0x41,0x81, - 0x88,0x46,0x14,0x04,0x29,0x2d,0x4a,0x34,0x88,0x02, - 0xb7,0x62,0xa0,0x4c,0x8b,0x8a,0x14,0x14,0x17,0xda, - 0x42,0x6b,0x6a,0x91,0x65,0x90,0x3f,0xd0,0xef,0x81, - 0xe7,0xc2,0xe5,0xa2,0x41,0x33,0x77,0xa6,0xfb,0xc2, - 0x07,0x74,0xee,0x70,0xe6,0xe1,0x1e,0xce,0x79,0xdf, - 0x50,0x32,0x99,0xb4,0x3c,0x15,0x42,0x1b,0xba,0xd0, - 0x88,0x28,0x8e,0x58,0xb9,0xab,0x75,0xcc,0xe2,0x19, - 0x5e,0x60,0xd7,0xfd,0x30,0xec,0xf9,0xf2,0x49,0x3c, - 0x56,0x30,0xa7,0x7e,0xe3,0x4f,0x8e,0xc2,0x15,0xe8, - 0x05,0xc4,0xe5,0x03,0x3a,0xf1,0xe9,0xa0,0x80,0xe7, - 0xf0,0x06,0xc7,0x31,0x8f,0xbb,0x78,0x8d,0xaf,0x56, - 0x6e,0xab,0x02,0x97,0x71,0x07,0xa7,0x31,0x8d,0x16, - 0xbc,0x35,0x0f,0x6d,0x7d,0xa9,0x06,0xaf,0x14,0xee, - 0x01,0xce,0xe2,0x49,0x1e,0xc2,0x99,0xfa,0x86,0x51, - 0x34,0xe0,0x1e,0x8e,0x61,0x02,0x55,0xee,0x80,0xf7, - 0x11,0xc1,0x53,0xdc,0xc4,0x96,0x95,0xff,0xda,0xc6, - 0x6d,0xbd,0x98,0x4a,0x0c,0x39,0x01,0x4f,0xa1,0x1d, - 0x5f,0xd0,0x9f,0xc5,0x0f,0xc4,0xf4,0x16,0xb2,0xad, - 0x04,0xd6,0x70,0xc5,0x6c,0xb9,0x09,0x78,0x5d,0x27, - 0x77,0x10,0xbf,0xb2,0x58,0x78,0x00,0x29,0x1f,0x02, - 0x6e,0xea,0xed,0x99,0x4c,0x1d,0x26,0xe0,0x05,0x3d, - 0x78,0x69,0x05,0xa7,0x9c,0x2c,0x97,0x6c,0x1d,0x90, - 0x6d,0x9d,0xdc,0xa0,0x94,0xc9,0xb2,0x63,0xae,0x3d, - 0x5b,0x87,0xe3,0x07,0xf6,0x02,0x14,0xd0,0x64,0xd9, - 0x40,0x89,0xad,0x3d,0x2f,0xd7,0x9e,0x07,0xa5,0x4c, - 0xae,0x32,0xa4,0xcd,0x1f,0x0b,0xba,0xb0,0xeb,0x7d, - 0x5a,0xbc,0xc1,0x25,0x96,0xe1,0x1a,0x75,0xca,0xb4, - 0x62,0x02,0x4e,0xe9,0xc3,0xb8,0x4f,0x01,0x53,0x2e, - 0x03,0x19,0xae,0xe1,0x64,0x99,0x0e,0x31,0x2c,0xd4, - 0xa9,0x07,0x9a,0x1b,0xbd,0x16,0x3f,0xb3,0xb8,0x07, - 0x23,0x9e,0xcf,0xd2,0x58,0xfd,0xc7,0x75,0x4a,0xb1, - 0xac,0xb5,0xce,0x84,0xd5,0x98,0x9f,0xe3,0x2a,0x46, - 0xd0,0x9d,0x61,0xc0,0xd5,0x0c,0xc2,0x1c,0x54,0xc3, - 0xea,0x24,0xe3,0xf8,0xe8,0xb4,0xba,0x5b,0xba,0xbd, - 0xbb,0x14,0xb2,0xf0,0x3f,0x1c,0x8c,0xa3,0x9a,0x03, - 0xae,0x69,0x04,0x4b,0xb8,0x7b,0xb1,0x19,0x0a,0x5a, - 0xb5,0x25,0x7d,0xda,0xf2,0x1b,0xa8,0xce,0xc3,0xe9, - 0x8e,0xaa,0x9b,0xbd,0x47,0x2f,0xbe,0x2b,0xcb,0xba, - 0x77,0xdc,0x7a,0x87,0x26,0x3c,0x52,0x77,0x79,0xf8, - 0x97,0x56,0xe4,0xd7,0x30,0x51,0x8c,0x22,0xd7,0xff, - 0x33,0xe8,0xc1,0xe2,0x61,0x03,0xeb,0x12,0x2e,0xa2, - 0x59,0x83,0xe3,0x79,0x9c,0xf0,0x2c,0x52,0x22,0x7e, - 0x4d,0x30,0x9f,0x31,0x87,0x31,0x4c,0x7a,0x1b,0xc6, - 0xbe,0x00,0x03,0x00,0xc2,0x08,0x63,0xad,0xd8,0xa6, - 0xa9,0xf6,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44, - 0xae,0x42,0x60,0x82 -}; diff --git a/data/converted/help_r_png.cpp b/data/converted/help_r_png.cpp deleted file mode 100644 index 33de5f230..000000000 --- a/data/converted/help_r_png.cpp +++ /dev/null @@ -1,157 +0,0 @@ -//this file was auto-generated from "r.png" by res2h - -#include "../Resources.h" - -const size_t help_r_png_size = 1495; -const unsigned char help_r_png_data[1495] = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x28, - 0x00,0x00,0x00,0x13,0x08,0x06,0x00,0x00,0x00,0xe2, - 0x43,0x4f,0x03,0x00,0x00,0x00,0x19,0x74,0x45,0x58, - 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, - 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, - 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, - 0x00,0x00,0x03,0x68,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,0x20,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,0x41, - 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, - 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, - 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, - 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, - 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, - 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x22,0x3e,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,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,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,0x20,0x78,0x6d,0x6c,0x6e, - 0x73,0x3a,0x73,0x74,0x52,0x65,0x66,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,0x52,0x65,0x66,0x23,0x22,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,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,0x33,0x38,0x45,0x38,0x44,0x46,0x33,0x39, - 0x31,0x38,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, - 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, - 0x41,0x37,0x35,0x33,0x22,0x20,0x78,0x6d,0x70,0x4d, - 0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, - 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, - 0x64,0x3a,0x30,0x30,0x46,0x41,0x42,0x34,0x37,0x38, - 0x39,0x44,0x39,0x31,0x31,0x31,0x45,0x33,0x41,0x39, - 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, - 0x32,0x45,0x45,0x33,0x22,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,0x30,0x30,0x46,0x41,0x42,0x34,0x37,0x37, - 0x39,0x44,0x39,0x31,0x31,0x31,0x45,0x33,0x41,0x39, - 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, - 0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d,0x70,0x3a, - 0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54,0x6f,0x6f, - 0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65,0x20,0x50, - 0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x43, - 0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69,0x6e,0x74, - 0x6f,0x73,0x68,0x29,0x22,0x3e,0x20,0x3c,0x78,0x6d, - 0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69,0x76,0x65, - 0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74,0x52,0x65, - 0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65, - 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69, - 0x64,0x3a,0x33,0x38,0x45,0x38,0x44,0x46,0x33,0x39, - 0x31,0x38,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, - 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, - 0x41,0x37,0x35,0x33,0x22,0x20,0x73,0x74,0x52,0x65, - 0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, - 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, - 0x64,0x3a,0x33,0x38,0x45,0x38,0x44,0x46,0x33,0x39, - 0x31,0x38,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, - 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, - 0x41,0x37,0x35,0x33,0x22,0x2f,0x3e,0x20,0x3c,0x2f, - 0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72,0x69, - 0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c,0x2f,0x72, - 0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20,0x3c,0x2f, - 0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74,0x61,0x3e, - 0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74, - 0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22,0x3f,0x3e, - 0xde,0xa7,0x8d,0x87,0x00,0x00,0x02,0x05,0x49,0x44, - 0x41,0x54,0x78,0xda,0xcc,0xd6,0x4b,0x48,0x54,0x71, - 0x14,0xc7,0xf1,0x3b,0xb7,0x91,0x4c,0x09,0xec,0x2d, - 0x49,0xcb,0xb0,0x85,0x05,0x61,0x14,0x54,0x44,0x90, - 0x82,0x82,0x3a,0x83,0xad,0x46,0x41,0x34,0x10,0x4a, - 0xd4,0x4d,0xd0,0x14,0xb4,0x68,0x1f,0x14,0x44,0x90, - 0x48,0x81,0x90,0x52,0xa0,0xa4,0x42,0x24,0x84,0x0b, - 0x41,0x0c,0x0a,0x5c,0x68,0xa4,0xa0,0x08,0xb6,0xca, - 0x47,0x2d,0x02,0x13,0xf2,0x51,0x7d,0x0f,0xfc,0x2e, - 0xdc,0x86,0x0a,0x9c,0x7b,0x67,0xec,0xc0,0x07,0x66, - 0xee,0xe3,0xcf,0xb9,0xff,0xc7,0xf9,0xff,0x23,0xc9, - 0x64,0xd2,0x49,0x89,0x08,0x6a,0x50,0x8f,0xb3,0x28, - 0xc4,0x0e,0x27,0x73,0xb1,0x80,0xb7,0x78,0x86,0x3e, - 0x6c,0xfa,0x6f,0x46,0x53,0x1e,0x3e,0x86,0x27,0x4a, - 0xcc,0x8b,0x55,0x7c,0xcf,0x50,0x72,0x39,0xea,0x80, - 0x98,0x4c,0xa2,0x0e,0x1f,0xfe,0x94,0xe0,0x69,0x0c, - 0x61,0x2f,0xa6,0x70,0x17,0xaf,0xb0,0xe4,0x64,0x36, - 0xf6,0xa3,0x02,0x37,0x70,0x02,0xa3,0xa8,0xc2,0x1b, - 0xbb,0xe9,0xea,0xa1,0x23,0x78,0xa9,0xe4,0x3a,0x70, - 0x12,0x5d,0x59,0x48,0xce,0xe2,0x33,0xba,0x51,0x8a, - 0x7b,0xd8,0x83,0x7e,0x1c,0xf6,0x27,0x78,0x1f,0x07, - 0xf0,0x14,0xd7,0xb0,0xe6,0x64,0x3f,0xd6,0x71,0x5d, - 0x1d,0x73,0x10,0x0f,0xbd,0x04,0x8f,0xa3,0x16,0x8b, - 0x68,0x71,0xb6,0x3f,0x5a,0xf1,0x09,0x71,0x1b,0x72, - 0x4b,0xb0,0x49,0x2b,0xf7,0x01,0x56,0x02,0x34,0xfc, - 0x33,0xc5,0xb4,0xa6,0xca,0x56,0xe3,0x9b,0x7a,0xcf, - 0x72,0x4a,0x58,0x82,0x17,0x74,0x63,0x30,0x84,0xaf, - 0xb7,0xe1,0x39,0x85,0x4b,0xd8,0x87,0x3b,0x69,0xb6, - 0xe3,0xe5,0x52,0x16,0xd5,0x02,0x59,0xd7,0xca,0x0d, - 0xa3,0xa6,0x8d,0xeb,0xeb,0x97,0x7c,0x73,0x7c,0xab, - 0x61,0xb9,0x6c,0x58,0xd9,0x8b,0x6a,0x71,0x7c,0xd1, - 0xb0,0x04,0x8d,0x46,0x94,0xab,0x4d,0xab,0x08,0x89, - 0x00,0xd3,0xe5,0xab,0xb5,0xe1,0x6a,0xcc,0x0b,0xf4, - 0xd5,0x41,0x63,0x04,0x37,0x71,0x5b,0x45,0x38,0x1e, - 0xa0,0xad,0x3c,0x2c,0xbb,0x9a,0xcc,0xd6,0x93,0x25, - 0x21,0x24,0x38,0x8f,0x61,0x95,0x2b,0x1b,0xea,0x33, - 0x69,0xb6,0x73,0x08,0xbb,0xf0,0xd1,0x12,0x7c,0xad, - 0x8b,0xb1,0x90,0xcb,0xc5,0x1c,0x8e,0xa6,0xf9,0xae, - 0xb7,0xd5,0x8e,0xba,0xda,0xa4,0x7f,0xa0,0x0d,0xbb, - 0x03,0x24,0x64,0x53,0xe4,0x96,0xef,0x7f,0x03,0x8a, - 0xd3,0x6c,0x2b,0xa1,0x79,0xd8,0xe5,0x6a,0x63,0xee, - 0x55,0xf5,0x7e,0xf4,0x1f,0x14,0x6a,0xdb,0xf2,0x2e, - 0xe3,0x05,0xde,0x7b,0x65,0xa0,0x5d,0xd5,0xbb,0x5e, - 0x49,0xee,0xdc,0xa6,0xe4,0x8a,0xf0,0x5c,0x25,0xaa, - 0xd5,0xbf,0x17,0xdb,0x85,0x6a,0x5b,0x35,0xb8,0xaa, - 0x63,0x4f,0xb3,0x5e,0x88,0x64,0x29,0x31,0x9b,0x62, - 0x13,0x3a,0x2c,0x54,0xab,0xa6,0xfe,0x76,0xdc,0xb2, - 0x55,0x77,0x0e,0x8f,0xb5,0xbb,0x74,0xfe,0x63,0x2b, - 0x0a,0xf3,0x30,0x61,0xab,0x35,0x57,0xbf,0xc7,0x70, - 0x05,0x33,0x7f,0x3b,0xb0,0xce,0xe2,0x22,0x2a,0x75, - 0x70,0x3c,0xaf,0x25,0x9f,0xeb,0x7b,0x26,0x5f,0xc2, - 0x3a,0xc1,0x58,0x4f,0xbd,0x43,0x0f,0x06,0x52,0x37, - 0x8c,0x5f,0x02,0x0c,0x00,0xae,0xe8,0x68,0xbc,0x71, - 0xf2,0x9e,0xc2,0x00,0x00,0x00,0x00,0x49,0x45,0x4e, - 0x44,0xae,0x42,0x60,0x82 -}; diff --git a/data/converted/help_select_png.cpp b/data/converted/help_select_png.cpp deleted file mode 100644 index 676d3d03d..000000000 --- a/data/converted/help_select_png.cpp +++ /dev/null @@ -1,155 +0,0 @@ -//this file was auto-generated from "select.png" by res2h - -#include "../Resources.h" - -const size_t help_select_png_size = 1477; -const unsigned char help_select_png_data[1477] = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x28, - 0x00,0x00,0x00,0x14,0x08,0x06,0x00,0x00,0x00,0xff, - 0x46,0x7f,0xbb,0x00,0x00,0x00,0x19,0x74,0x45,0x58, - 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, - 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, - 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, - 0x00,0x00,0x03,0x24,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,0x20,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,0x41, - 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, - 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, - 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, - 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, - 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, - 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x22,0x3e,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,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,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, - 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,0x20,0x78,0x6d,0x6c, - 0x6e,0x73,0x3a,0x73,0x74,0x52,0x65,0x66,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,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d, - 0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54, - 0x6f,0x6f,0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65, - 0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70, - 0x20,0x43,0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69, - 0x6e,0x74,0x6f,0x73,0x68,0x29,0x22,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,0x30,0x30,0x46,0x41,0x42,0x34, - 0x37,0x33,0x39,0x44,0x39,0x31,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d, - 0x70,0x4d,0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65, - 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x64,0x69,0x64,0x3a,0x30,0x30,0x46,0x41,0x42,0x34, - 0x37,0x34,0x39,0x44,0x39,0x31,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x3e,0x20,0x3c, - 0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69, - 0x76,0x65,0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74, - 0x52,0x65,0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e, - 0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x69,0x69,0x64,0x3a,0x30,0x30,0x46,0x41,0x42,0x34, - 0x37,0x31,0x39,0x44,0x39,0x31,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x73,0x74, - 0x52,0x65,0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65, - 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x64,0x69,0x64,0x3a,0x30,0x30,0x46,0x41,0x42,0x34, - 0x37,0x32,0x39,0x44,0x39,0x31,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x2f,0x3e,0x20, - 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63, - 0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c, - 0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20, - 0x3c,0x2f,0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74, - 0x61,0x3e,0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b, - 0x65,0x74,0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22, - 0x3f,0x3e,0xb2,0xa8,0xe0,0x6c,0x00,0x00,0x02,0x37, - 0x49,0x44,0x41,0x54,0x78,0xda,0xcc,0x95,0x5f,0x68, - 0xce,0x51,0x18,0xc7,0xcf,0xfb,0xdb,0x5b,0x2e,0x69, - 0x91,0x45,0xfe,0xc4,0x90,0x0b,0x85,0x49,0x8d,0xb4, - 0x76,0xb7,0xa4,0x94,0xa4,0xec,0x6a,0x73,0x49,0xca, - 0x85,0x7a,0xb1,0x62,0x69,0x17,0x16,0x17,0xd2,0x1b, - 0x56,0xd2,0x2e,0xb4,0x76,0x61,0x6a,0x85,0x6c,0x49, - 0x66,0x92,0xfc,0x5b,0xb8,0x40,0x34,0x11,0xb5,0x85, - 0xa2,0xd7,0x9f,0xf9,0x37,0x3e,0x4f,0x7d,0x7f,0x75, - 0x1c,0x7b,0x5f,0xbd,0x25,0xce,0x53,0x9f,0xce,0xf9, - 0x3d,0xbf,0xdf,0x73,0xce,0xf7,0x3c,0xe7,0x39,0xbf, - 0x93,0xc9,0xe5,0x72,0x73,0x9d,0x73,0xc7,0xa1,0x0e, - 0xde,0xc3,0x59,0xd8,0x01,0xef,0xe0,0x04,0x2c,0x75, - 0xbf,0x5a,0x27,0xe4,0xe1,0x96,0xbe,0xbb,0x1a,0xbc, - 0xb7,0xf8,0xaa,0xc0,0x97,0x57,0xdc,0x54,0x38,0x02, - 0x6b,0xe1,0x07,0xf4,0xc2,0x4e,0x78,0x0d,0xdd,0x50, - 0x1d,0xc4,0xb9,0x2c,0x1c,0x82,0x59,0xb0,0x11,0x2a, - 0xe1,0x30,0x7c,0x84,0x6d,0xb0,0x08,0x0a,0x70,0xc1, - 0x8b,0xb9,0xaf,0xb6,0x06,0x26,0xbb,0xdf,0x6d,0x09, - 0xdc,0x81,0xeb,0x9e,0xef,0xa1,0x5a,0x13,0x34,0x1d, - 0x9a,0x61,0x12,0xb4,0xc1,0x69,0xa8,0x87,0x7e,0x18, - 0x82,0x06,0x2d,0xb0,0x33,0x15,0xb8,0x10,0x06,0xe1, - 0x9c,0x06,0xb1,0xd5,0x4c,0xf3,0x06,0xb7,0x89,0xda, - 0x5d,0x79,0x66,0x93,0x1d,0x0b,0x7c,0x2b,0x60,0x95, - 0xc4,0x5c,0x96,0x6f,0x14,0x2e,0xc1,0x32,0x38,0x29, - 0xdf,0x14,0x2d,0xb2,0x3d,0x15,0x78,0x1e,0x72,0xb0, - 0x12,0x6e,0x2b,0xb8,0xdb,0x1b,0xb8,0x41,0x99,0x4d, - 0xad,0x0b,0x06,0xfe,0x20,0xb0,0x31,0x28,0x8d,0xbc, - 0x44,0x7c,0x81,0x2b,0x9e,0xdf,0xfa,0xf3,0x61,0xa4, - 0xd8,0x40,0x09,0xec,0x81,0x4d,0x70,0x17,0x56,0xc3, - 0x29,0xe8,0x71,0x7f,0xdf,0xbe,0xc3,0x27,0x18,0x0f, - 0x7c,0xc3,0x2a,0xa9,0x09,0xcd,0x32,0xb8,0x5f,0x59, - 0x6c,0x96,0xaf,0x15,0xf6,0x42,0x85,0x9e,0xad,0xfe, - 0x76,0x97,0x29,0xa6,0x6b,0x82,0x2d,0xae,0x54,0xcd, - 0x2e,0x80,0xc7,0xf2,0x2d,0xd7,0xae,0x59,0x62,0xae, - 0x15,0x13,0xb8,0x4e,0x75,0xb1,0x19,0xde,0xe8,0xc0, - 0x8c,0x6a,0x75,0x4e,0x05,0x5b,0xe3,0xc5,0xbc,0x82, - 0xe7,0xea,0xdb,0x36,0x7e,0xf6,0xde,0x5d,0x54,0x3b, - 0x3b,0x88,0x19,0x91,0x80,0x17,0xd0,0x01,0x5b,0xe0, - 0x03,0x1c,0x54,0x06,0x6f,0x94,0xca,0xe0,0x76,0x6d, - 0xeb,0x33,0xf9,0xde,0x42,0x93,0xf7,0x4d,0x53,0xf0, - 0x6c,0x99,0xd9,0xaa,0x7e,0x5b,0x30,0x5e,0x46,0xed, - 0x2e,0x91,0xda,0x01,0xed,0xc2,0x06,0x38,0x03,0x4f, - 0xe5,0x7f,0xa2,0xf2,0xfa,0x56,0x4a,0xe0,0xa0,0xfe, - 0x3f,0x8b,0x55,0x1f,0x16,0x34,0xa6,0xf7,0x6b,0x4a, - 0x6c,0x63,0xa6,0x88,0x7f,0x4e,0x89,0x98,0x9b,0x30, - 0x4f,0x73,0x7d,0x85,0x47,0x41,0x4d,0xba,0xb0,0x9c, - 0xb2,0x6a,0xed,0xe3,0x7b,0xee,0xdf,0x58,0x59,0x73, - 0x25,0x2e,0x72,0xcb,0x7a,0xfd,0x0a,0xa5,0xbe,0xea, - 0x3f,0x6b,0xb2,0x03,0xf5,0x20,0x3d,0xa4,0xa9,0xc0, - 0xf5,0x70,0x14,0x66,0x44,0x92,0xb8,0x97,0xba,0x6a, - 0x7b,0xb3,0x3a,0x08,0x3d,0xde,0x7f,0x2f,0x06,0x9b, - 0x29,0x4d,0xf5,0x56,0x83,0xfb,0x22,0x13,0xe7,0x97, - 0x5c,0x6b,0xa2,0x0b,0x3c,0x56,0xab,0x4d,0xbc,0x7f, - 0x5e,0x8c,0x36,0x66,0x02,0xfb,0x22,0x16,0xd8,0x67, - 0x02,0x5b,0x74,0xbf,0xc6,0x66,0xa6,0xa9,0x25,0xd1, - 0x65,0x5d,0xab,0x53,0x53,0x88,0x40,0x58,0x41,0x5a, - 0x4c,0xd3,0xf0,0x4f,0x01,0x06,0x00,0xc1,0x48,0x7e, - 0xf4,0x07,0x45,0x6c,0x0d,0x00,0x00,0x00,0x00,0x49, - 0x45,0x4e,0x44,0xae,0x42,0x60,0x82 -}; diff --git a/data/converted/help_start_png.cpp b/data/converted/help_start_png.cpp deleted file mode 100644 index 02aa4e915..000000000 --- a/data/converted/help_start_png.cpp +++ /dev/null @@ -1,152 +0,0 @@ -//this file was auto-generated from "start.png" by res2h - -#include "../Resources.h" - -const size_t help_start_png_size = 1446; -const unsigned char help_start_png_data[1446] = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x28, - 0x00,0x00,0x00,0x14,0x08,0x06,0x00,0x00,0x00,0xff, - 0x46,0x7f,0xbb,0x00,0x00,0x00,0x19,0x74,0x45,0x58, - 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, - 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, - 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, - 0x00,0x00,0x03,0x24,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,0x20,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,0x41, - 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, - 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, - 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, - 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, - 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, - 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x22,0x3e,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,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,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, - 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,0x20,0x78,0x6d,0x6c, - 0x6e,0x73,0x3a,0x73,0x74,0x52,0x65,0x66,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,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d, - 0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54, - 0x6f,0x6f,0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65, - 0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70, - 0x20,0x43,0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69, - 0x6e,0x74,0x6f,0x73,0x68,0x29,0x22,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,0x30,0x30,0x46,0x41,0x42,0x34, - 0x36,0x46,0x39,0x44,0x39,0x31,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d, - 0x70,0x4d,0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65, - 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x64,0x69,0x64,0x3a,0x30,0x30,0x46,0x41,0x42,0x34, - 0x37,0x30,0x39,0x44,0x39,0x31,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x3e,0x20,0x3c, - 0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69, - 0x76,0x65,0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74, - 0x52,0x65,0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e, - 0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x69,0x69,0x64,0x3a,0x36,0x39,0x44,0x41,0x36,0x46, - 0x46,0x43,0x39,0x44,0x39,0x30,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x73,0x74, - 0x52,0x65,0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65, - 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x64,0x69,0x64,0x3a,0x30,0x30,0x46,0x41,0x42,0x34, - 0x36,0x45,0x39,0x44,0x39,0x31,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x2f,0x3e,0x20, - 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63, - 0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c, - 0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20, - 0x3c,0x2f,0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74, - 0x61,0x3e,0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b, - 0x65,0x74,0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22, - 0x3f,0x3e,0x80,0xfc,0x29,0xc2,0x00,0x00,0x02,0x18, - 0x49,0x44,0x41,0x54,0x78,0xda,0xcc,0xd5,0x4b,0x48, - 0x15,0x51,0x1c,0xc7,0xf1,0xb9,0xe3,0x95,0x52,0x82, - 0x44,0xa2,0x22,0xc9,0x1e,0x48,0x91,0x58,0x14,0x45, - 0xa0,0x14,0x25,0xb5,0x8a,0xc8,0x8d,0x90,0xd8,0xce, - 0xa4,0xa4,0xa4,0xa8,0xa0,0xbb,0x30,0x28,0xa2,0x20, - 0x41,0xa4,0x42,0xc2,0x56,0x4a,0xd1,0xa6,0x17,0x89, - 0x1a,0xb8,0x09,0x17,0xae,0xc4,0xb5,0xd5,0x42,0x13, - 0x44,0x48,0xb4,0x07,0xdd,0x1e,0x82,0x59,0x7d,0xff, - 0xf0,0x4b,0x0e,0x83,0x7a,0x96,0x9e,0x3f,0x7c,0xb8, - 0x33,0xc3,0x99,0x39,0xbf,0x7b,0x1e,0x33,0xa9,0x4c, - 0x26,0x53,0x10,0x45,0x51,0x0b,0x8e,0x63,0x0d,0x26, - 0xd1,0x87,0xab,0x98,0xc6,0x50,0xb4,0x78,0x1d,0xc6, - 0x77,0x1d,0x3f,0xc4,0x5e,0xdc,0xc1,0x73,0xa7,0xcd, - 0x01,0xdc,0x4d,0xdc,0xf7,0x13,0xc3,0xb8,0x8d,0x59, - 0xf4,0x2c,0xd6,0x41,0x1a,0xad,0xa8,0xc5,0x65,0xdd, - 0xb4,0x47,0x9d,0x6c,0xc2,0x11,0x3c,0x53,0xdb,0xcd, - 0x68,0x40,0x27,0xde,0xe9,0xda,0xac,0x7e,0x4b,0x50, - 0x8f,0xaf,0xb8,0x92,0x08,0xb8,0x5a,0xc1,0xdb,0x31, - 0xa6,0x6b,0xeb,0x70,0x01,0xc5,0xa8,0x71,0xfa,0xd8, - 0xad,0xf3,0xf9,0xb6,0x16,0xb0,0x4c,0xa3,0xd6,0x81, - 0x5f,0xe8,0xc7,0x38,0xb6,0x22,0x85,0x66,0x67,0x24, - 0x1a,0xd4,0x79,0x6f,0xe2,0x8f,0xda,0xf5,0xcf,0xb8, - 0x84,0xc7,0xd8,0x8f,0xc1,0x44,0x9b,0x27,0x18,0x70, - 0xce,0x2b,0xb0,0x05,0xdf,0x9c,0x3e,0x6a,0x15,0x70, - 0xbe,0x6d,0x8c,0x97,0xfa,0x27,0x16,0xea,0xb5,0xa6, - 0x23,0x17,0xf7,0xf1,0x37,0xf2,0x57,0x3e,0x4e,0x2b, - 0x98,0x8d,0xc4,0x27,0x9c,0x5f,0xa0,0xdd,0x3e,0x1c, - 0x95,0x3a,0x0d,0xcc,0x53,0xdf,0xc3,0xd3,0x9a,0xce, - 0x7e,0xad,0xc1,0x9d,0xa8,0xc6,0x45,0xbc,0xd7,0xd4, - 0xfc,0xf0,0x3c,0xe3,0x14,0x6c,0x1d,0xbf,0x41,0x91, - 0xd6,0xef,0x49,0x4d,0xf5,0xb4,0xd3,0xee,0x26,0x7e, - 0xeb,0x78,0x95,0x9e,0xdb,0xe5,0x0b,0x68,0x23,0x78, - 0x0b,0xa5,0xb8,0x86,0x2a,0x6c,0xc4,0x3d,0x6c,0xd7, - 0x54,0xf9,0xaa,0x51,0xbf,0xdd,0x18,0xd1,0x34,0xad, - 0xc0,0xd9,0x44,0xbb,0x63,0x28,0x94,0x6d,0xc8,0xd3, - 0x46,0xf4,0x06,0xb4,0x21,0x6f,0x53,0xb8,0x95,0x58, - 0xab,0x0d,0xf2,0x07,0x1f,0x3c,0xf7,0x1f,0xc2,0x2e, - 0x4d,0x69,0xa1,0xc3,0x76,0xfe,0x19,0xcd,0xd0,0x42, - 0x65,0x1b,0x60,0x54,0x6f,0x0d,0x6f,0xc0,0x3a,0xed, - 0xde,0x57,0xda,0x24,0x1f,0x71,0x50,0x0b,0x7f,0xcc, - 0x73,0xff,0x39,0x64,0xf1,0x08,0x5f,0x1c,0xed,0x5a, - 0xd7,0x27,0x96,0xb8,0x77,0x52,0x6d,0x96,0xac,0x14, - 0xef,0xc1,0xff,0xc7,0xb6,0x7e,0xd6,0xeb,0xbd,0x36, - 0xe2,0xac,0x97,0x65,0x2d,0x77,0x0a,0x26,0x24,0xa8, - 0x8a,0xa3,0xc0,0xcb,0x1d,0xc1,0x1c,0xec,0xd0,0x34, - 0x2f,0x67,0xd9,0x1e,0x78,0x8b,0x39,0x37,0xa0,0xed, - 0xe0,0x07,0xd8,0x10,0xc8,0xc0,0x4d,0xe8,0xcd,0xd0, - 0x95,0xd6,0x8e,0x7d,0xa1,0x11,0x0c,0xa5,0x8a,0x94, - 0xa9,0xd2,0xd6,0xe0,0xf5,0xc0,0xc2,0xb9,0x4b,0xee, - 0x46,0xac,0x8f,0x76,0xa8,0x55,0x6e,0x01,0x67,0x02, - 0x0e,0x38,0x13,0xeb,0xe3,0x1e,0x6a,0xf5,0x59,0xc0, - 0x26,0x4c,0x05,0x18,0xce,0x32,0x35,0xc5,0xfa,0x68, - 0x97,0x6b,0xd7,0x64,0x03,0x08,0x96,0x55,0x16,0xcb, - 0x34,0xfa,0x4f,0x80,0x01,0x00,0x48,0x64,0x77,0x19, - 0x89,0x3e,0xfe,0x4c,0x00,0x00,0x00,0x00,0x49,0x45, - 0x4e,0x44,0xae,0x42,0x60,0x82 -}; diff --git a/data/converted/help_x_png.cpp b/data/converted/help_x_png.cpp deleted file mode 100644 index 58e28c57a..000000000 --- a/data/converted/help_x_png.cpp +++ /dev/null @@ -1,165 +0,0 @@ -//this file was auto-generated from "x.png" by res2h - -#include "../Resources.h" - -const size_t help_x_png_size = 1576; -const unsigned char help_x_png_data[1576] = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x1f, - 0x00,0x00,0x00,0x1f,0x08,0x06,0x00,0x00,0x00,0x1f, - 0xae,0x16,0x39,0x00,0x00,0x00,0x19,0x74,0x45,0x58, - 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, - 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, - 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, - 0x00,0x00,0x03,0x24,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,0x20,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,0x41, - 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, - 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, - 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, - 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, - 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, - 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x22,0x3e,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,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,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, - 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,0x20,0x78,0x6d,0x6c, - 0x6e,0x73,0x3a,0x73,0x74,0x52,0x65,0x66,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,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d, - 0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54, - 0x6f,0x6f,0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65, - 0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70, - 0x20,0x43,0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69, - 0x6e,0x74,0x6f,0x73,0x68,0x29,0x22,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,0x39,0x44,0x41,0x36,0x46, - 0x46,0x32,0x39,0x44,0x39,0x30,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d, - 0x70,0x4d,0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65, - 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x64,0x69,0x64,0x3a,0x36,0x39,0x44,0x41,0x36,0x46, - 0x46,0x33,0x39,0x44,0x39,0x30,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x3e,0x20,0x3c, - 0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69, - 0x76,0x65,0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74, - 0x52,0x65,0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e, - 0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x69,0x69,0x64,0x3a,0x45,0x44,0x36,0x43,0x36,0x42, - 0x37,0x37,0x39,0x44,0x38,0x46,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x73,0x74, - 0x52,0x65,0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65, - 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x64,0x69,0x64,0x3a,0x45,0x44,0x36,0x43,0x36,0x42, - 0x37,0x38,0x39,0x44,0x38,0x46,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x2f,0x3e,0x20, - 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63, - 0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c, - 0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20, - 0x3c,0x2f,0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74, - 0x61,0x3e,0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b, - 0x65,0x74,0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22, - 0x3f,0x3e,0x86,0x58,0x16,0xa2,0x00,0x00,0x02,0x9a, - 0x49,0x44,0x41,0x54,0x78,0xda,0xbc,0x97,0x4b,0x48, - 0x55,0x51,0x14,0x86,0xcf,0x3d,0x5a,0x83,0xb4,0xa2, - 0xc0,0x5b,0x34,0x11,0x1c,0xa4,0xf6,0x18,0x44,0x49, - 0x4a,0x49,0x83,0x26,0x92,0x54,0x1a,0x3d,0xa9,0x26, - 0x45,0x0f,0x48,0x28,0x0a,0xbc,0x11,0xd8,0x40,0x2d, - 0xad,0x49,0xa4,0xa3,0xcc,0x66,0x15,0x81,0x0f,0x7a, - 0xe8,0x28,0x2a,0x44,0x93,0xe8,0x31,0x8a,0x5e,0x62, - 0x36,0x0a,0x94,0x20,0xb0,0x42,0x85,0x94,0xdb,0xbf, - 0xe0,0xdf,0xb1,0xb9,0x78,0x3c,0x6b,0x9f,0xee,0xed, - 0x87,0x0f,0xf6,0xb9,0xfb,0x9c,0xb5,0xce,0xdd,0x6b, - 0xed,0xb5,0xd7,0x89,0x25,0x12,0x09,0x4f,0xa9,0x35, - 0xa0,0x12,0x6c,0x06,0xab,0xc0,0x32,0x90,0x03,0x26, - 0xc0,0x28,0xf8,0x08,0xfa,0x41,0x2f,0x78,0xab,0x31, - 0x98,0x1d,0x32,0x1f,0x03,0xd5,0xe0,0x3c,0x28,0x09, - 0xb8,0x67,0x01,0x28,0x20,0xdb,0x40,0x13,0x78,0x05, - 0xae,0x82,0x2e,0x90,0x0c,0x32,0xee,0xcf,0xe1,0xb8, - 0x08,0xf4,0xd1,0x40,0x89,0xe7,0x26,0xb9,0xbf,0x83, - 0x2b,0x51,0xe4,0xea,0x7c,0x0f,0xdf,0xbe,0xdc,0xfb, - 0x37,0x6d,0x02,0x6f,0xc0,0x7e,0xad,0xf3,0x63,0xe0, - 0x1e,0xc8,0xf5,0xd2,0x23,0x09,0xcb,0x5d,0x50,0x13, - 0xe6,0x7c,0x1f,0xb8,0x11,0x12,0x8e,0x28,0x92,0xdc, - 0x69,0x01,0x07,0x82,0x9c,0xaf,0x04,0xed,0xbc,0x31, - 0x13,0x12,0xbb,0x37,0x41,0x71,0xaa,0x73,0x99,0x68, - 0x4b,0xe3,0x52,0x07,0x29,0x87,0x7e,0x62,0xf6,0x56, - 0xdb,0x09,0xb6,0x84,0x3c,0x78,0x0b,0xbc,0xe4,0x58, - 0xb6,0x5f,0x45,0xca,0xfc,0x45,0x30,0xc6,0xb1,0xc4, - 0x77,0x6d,0x80,0x1d,0xa9,0x13,0xbb,0x64,0x17,0x19, - 0xe7,0xb5,0x8a,0xb7,0xde,0x08,0x4e,0x82,0x69,0xf0, - 0x18,0x7c,0x02,0xf3,0x38,0x27,0xd7,0x0d,0x1c,0x6f, - 0x60,0x11,0x9a,0x4b,0x52,0xd9,0xba,0x7c,0xee,0xc3, - 0x32,0x65,0x85,0x3b,0xc5,0xf1,0x17,0xe6,0x87,0xc7, - 0x22,0x72,0xc1,0x0a,0x5f,0x2b,0xc8,0x52,0xd4,0x81, - 0xd5,0xe2,0x7c,0xbb,0x43,0xcc,0xea,0xc1,0x72,0x8e, - 0x2f,0x81,0x49,0x16,0xa1,0xd7,0xfc,0xed,0x28,0x28, - 0x55,0xda,0xaa,0xf2,0x19,0x03,0xad,0x16,0xb1,0x6c, - 0x8a,0xbe,0x82,0xeb,0xa0,0x8e,0xd7,0x4b,0xc0,0x65, - 0x07,0x5b,0x65,0xbe,0x9d,0xfa,0x4a,0x1d,0xb2,0x2a, - 0x5f,0x1d,0x0f,0x14,0xb3,0x12,0x79,0x0e,0x76,0x8a, - 0xc5,0x79,0x3c,0x62,0xc1,0xc8,0x66,0xf2,0x89,0xd6, - 0x81,0xe3,0x8e,0x76,0xe2,0xe2,0x7c,0x71,0x84,0xfd, - 0x2a,0x4b,0x3c,0xdf,0xba,0x5e,0x1a,0xa1,0x2a,0xe6, - 0xca,0x03,0xe3,0x11,0x9c,0x9f,0xe1,0x39,0x6e,0xf4, - 0x04,0xdc,0x71,0xb4,0xf1,0xcb,0x67,0x23,0xe0,0x22, - 0x69,0x16,0xee,0x5b,0x87,0x50,0x3e,0xc7,0x67,0xc1, - 0x77,0x07,0x3b,0x63,0xbe,0x95,0x30,0x1a,0x4d,0x81, - 0xd3,0x1c,0x2f,0x04,0x8d,0x56,0x71,0xf9,0xc6,0xe2, - 0xa1,0xd5,0x07,0x9f,0x07,0xbe,0x56,0x57,0xc0,0x67, - 0xeb,0x9f,0x4a,0xb2,0x1e,0x64,0x01,0x32,0x25,0x78, - 0x40,0x69,0xab,0x5f,0x9c,0x3f,0x52,0xde,0x3c,0x02, - 0x9a,0x4d,0xa6,0x82,0x73,0xd6,0xe1,0xd4,0x6c,0x55, - 0xbb,0x13,0xe0,0xb7,0xc2,0x5e,0x8f,0x3c,0x38,0x04, - 0x06,0x15,0x37,0x5f,0x03,0x2b,0xd8,0xab,0xd5,0x73, - 0xd9,0x8d,0xa4,0xb1,0xdc,0xc1,0x39,0x09,0xcd,0xed, - 0x10,0x5b,0x2f,0xc0,0x7b,0x73,0xb0,0x34,0x29,0x56, - 0xa0,0x95,0x04,0xe9,0x81,0x63,0xf8,0xfe,0xee,0xcd, - 0x1e,0xf0,0xd4,0xfb,0x3f,0xea,0x33,0x2f,0x6a,0x17, - 0x06,0x89,0xd5,0x8f,0x0c,0x3b,0xfe,0xc9,0x4a,0x98, - 0x4c,0x75,0x3e,0x0c,0x0e,0x83,0x99,0x0c,0x39,0x16, - 0xbb,0x47,0x98,0x63,0xb3,0x36,0x90,0x0f,0xd9,0x30, - 0x24,0x33,0xe0,0x58,0xec,0x76,0x86,0xb5,0xce,0xd2, - 0x24,0xec,0x4e,0x63,0x08,0xc4,0xce,0x5e,0xab,0xf9, - 0x08,0xfd,0x68,0xe8,0x06,0xeb,0xd3,0x90,0x84,0xcf, - 0x68,0xa7,0xdb,0xf5,0x73,0x49,0x72,0x60,0x2b,0x3b, - 0x9d,0x01,0x47,0xa7,0xcf,0xa5,0x53,0xe1,0xf3,0xc3, - 0x51,0x3f,0x14,0xcd,0x36,0x14,0x0a,0x53,0xbe,0x52, - 0xe3,0x3c,0x8e,0xc7,0x59,0xd7,0xdf,0xd1,0x69,0xaf, - 0xf6,0xbc,0xf8,0x23,0xc0,0x00,0xfb,0xfe,0x80,0x69, - 0x45,0x01,0x0a,0xdf,0x00,0x00,0x00,0x00,0x49,0x45, - 0x4e,0x44,0xae,0x42,0x60,0x82 -}; diff --git a/data/converted/help_y_png.cpp b/data/converted/help_y_png.cpp deleted file mode 100644 index 3b950a5ee..000000000 --- a/data/converted/help_y_png.cpp +++ /dev/null @@ -1,157 +0,0 @@ -//this file was auto-generated from "y.png" by res2h - -#include "../Resources.h" - -const size_t help_y_png_size = 1498; -const unsigned char help_y_png_data[1498] = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x1f, - 0x00,0x00,0x00,0x1f,0x08,0x06,0x00,0x00,0x00,0x1f, - 0xae,0x16,0x39,0x00,0x00,0x00,0x19,0x74,0x45,0x58, - 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, - 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, - 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, - 0x00,0x00,0x03,0x24,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,0x20,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,0x41, - 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, - 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, - 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, - 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, - 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, - 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x22,0x3e,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,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,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, - 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,0x20,0x78,0x6d,0x6c, - 0x6e,0x73,0x3a,0x73,0x74,0x52,0x65,0x66,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,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d, - 0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54, - 0x6f,0x6f,0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65, - 0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70, - 0x20,0x43,0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69, - 0x6e,0x74,0x6f,0x73,0x68,0x29,0x22,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,0x39,0x44,0x41,0x36,0x46, - 0x46,0x41,0x39,0x44,0x39,0x30,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d, - 0x70,0x4d,0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65, - 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x64,0x69,0x64,0x3a,0x36,0x39,0x44,0x41,0x36,0x46, - 0x46,0x42,0x39,0x44,0x39,0x30,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x3e,0x20,0x3c, - 0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69, - 0x76,0x65,0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74, - 0x52,0x65,0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e, - 0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x69,0x69,0x64,0x3a,0x36,0x39,0x44,0x41,0x36,0x46, - 0x46,0x38,0x39,0x44,0x39,0x30,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x73,0x74, - 0x52,0x65,0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65, - 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x64,0x69,0x64,0x3a,0x36,0x39,0x44,0x41,0x36,0x46, - 0x46,0x39,0x39,0x44,0x39,0x30,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x2f,0x3e,0x20, - 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63, - 0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c, - 0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20, - 0x3c,0x2f,0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74, - 0x61,0x3e,0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b, - 0x65,0x74,0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22, - 0x3f,0x3e,0x79,0x6d,0x1d,0x54,0x00,0x00,0x02,0x4c, - 0x49,0x44,0x41,0x54,0x78,0xda,0xc4,0x97,0x4b,0x48, - 0x1b,0x51,0x14,0x86,0x27,0x83,0x52,0xa8,0x8a,0x64, - 0x13,0xc9,0x56,0x41,0x8d,0xba,0x93,0x50,0x44,0x8b, - 0x0b,0xc1,0x85,0x45,0xea,0xdb,0x74,0xd1,0x8d,0xd4, - 0xb6,0xa0,0xb8,0x11,0x4d,0x37,0xae,0x45,0x41,0x04, - 0x77,0x6a,0xb7,0x4a,0xa1,0x4d,0xc0,0x47,0x56,0xa2, - 0x21,0xc6,0x47,0x69,0x10,0x17,0x45,0x5b,0x8a,0xdd, - 0xb7,0x74,0xe5,0x03,0x41,0xc4,0xc7,0x7f,0xe0,0x0c, - 0x5c,0x86,0x4c,0xe6,0xcc,0x24,0x69,0x7e,0xf8,0x20, - 0x61,0x66,0xce,0x7f,0xe7,0xdc,0x7b,0xce,0xbd,0xe3, - 0x09,0x87,0xc3,0x9a,0x50,0x0d,0xe0,0x05,0x68,0x01, - 0x75,0xa0,0x02,0x94,0x80,0x6b,0xf0,0x07,0xfc,0x04, - 0x49,0x10,0x03,0xdf,0x25,0x01,0x8b,0x6c,0xae,0x7b, - 0x40,0x37,0xf8,0x00,0x82,0x16,0xf7,0x3c,0x05,0x95, - 0x4c,0x07,0x98,0x06,0x29,0x30,0x0b,0x22,0xe0,0xc1, - 0x2a,0xb8,0x9e,0xc1,0xb8,0x16,0x24,0x38,0x40,0x50, - 0x73,0x26,0xba,0xff,0x33,0x67,0xa2,0xd6,0xa9,0x79, - 0x3f,0x8f,0xfe,0xb9,0x96,0x9d,0x9a,0xc1,0x11,0x08, - 0x49,0xcd,0x87,0xc1,0x27,0x50,0xaa,0xe5,0x46,0x34, - 0x2d,0xab,0x60,0xd4,0xce,0x7c,0x10,0x2c,0xda,0x4c, - 0x87,0x1b,0xd1,0xda,0x59,0x00,0xaf,0xac,0xcc,0xab, - 0xc1,0x47,0xbe,0x31,0x1f,0xa2,0xb8,0xcb,0x20,0x60, - 0x36,0xa7,0x0b,0x4b,0x39,0x4c,0xb5,0x95,0x4a,0xd8, - 0xc7,0xa3,0x96,0xda,0x4b,0xd0,0x9a,0xe1,0xa1,0x1b, - 0x30,0x0e,0x6e,0x79,0x0e,0xe7,0xd2,0x4c,0xcd,0x2e, - 0x58,0xe1,0xdf,0xed,0xa0,0xd7,0x22,0x16,0xf5,0x89, - 0x1e,0xaa,0x22,0xc3,0x7c,0xd2,0x66,0xc4,0x4f,0xc0, - 0x3d,0x8f,0xda,0x08,0x60,0x0e,0x3e,0x01,0xbe,0x81, - 0x62,0x41,0x3c,0xea,0x6c,0x11,0x9d,0xeb,0xb0,0x49, - 0x90,0xb2,0x29,0x7e,0x6b,0x8d,0x1b,0x89,0xaa,0x6d, - 0x36,0x26,0xbd,0x01,0x55,0x82,0x3e,0x50,0x4f,0xe6, - 0x9d,0xc2,0xf9,0xf2,0x83,0x31,0xfe,0x4d,0xb5,0xbb, - 0xa5,0x5c,0x9b,0x56,0xca,0x6a,0x4a,0x18,0xaf,0x4b, - 0xe7,0x14,0x4a,0x45,0xe9,0xf4,0x9a,0x0c,0x53,0xfc, - 0xe6,0x1a,0x0f,0xce,0x2f,0x8c,0xd5,0xa4,0xab,0x4b, - 0x5f,0x20,0xaf,0x32,0x9f,0x71,0x70,0xa8,0x0c,0xc2, - 0x2b,0x98,0x6b,0x55,0x01,0x32,0xf7,0x39,0x2c,0x17, - 0xf5,0xed,0x46,0xc0,0x5a,0x9a,0xac,0x48,0xe4,0x23, - 0xf3,0x72,0x17,0xed,0xd2,0x98,0xd7,0x63,0xae,0x02, - 0x75,0x3d,0x48,0x55,0x4a,0xe6,0xe7,0x2e,0x9a,0x85, - 0x79,0x45,0xab,0x95,0x20,0xd5,0x95,0xce,0x07,0x01, - 0xa7,0xa2,0x5a,0x7e,0xa6,0xfc,0x0f,0xb9,0x88,0xf1, - 0x57,0xe7,0x13,0x48,0xb6,0x72,0xb3,0x11,0xfd,0xd0, - 0x79,0xc3,0x2f,0x84,0x92,0x64,0xbe,0x51,0x20,0xf3, - 0x4d,0x32,0xff,0x05,0x0e,0x5c,0x3c,0xec,0x53,0xce, - 0x6e,0x4e,0xd3,0xfe,0x15,0x9c,0xea,0x16,0xbd,0x5a, - 0xa2,0x79,0xf0,0x9b,0x29,0x73,0xf8,0xec,0x8c,0xba, - 0x50,0x36,0xc1,0xce,0x7f,0x4a,0x77,0xc2,0x68,0x4c, - 0x6a,0xba,0xde,0x81,0x8b,0x3c,0x1b,0x5f,0x82,0xb7, - 0xc6,0x71,0x5a,0x35,0x3f,0x03,0xaf,0xc1,0x5d,0x9e, - 0x8c,0x29,0xee,0x10,0xaf,0xb1,0xb4,0xf5,0xb9,0x0e, - 0xde,0x67,0x3a,0xe8,0x67,0x61,0x4c,0x71,0xbf,0xd8, - 0x35,0x07,0x3a,0x44,0xf6,0xe5,0x70,0x0a,0x28,0xce, - 0x00,0xc7,0x15,0x75,0xa6,0x28,0x68,0xcc,0xc1,0x22, - 0x8c,0x73,0x9c,0xa8,0xd3,0xb6,0x48,0x6b,0xa0,0x8d, - 0x4f,0x3a,0x7b,0x0e,0x4d,0xf7,0xe9,0xa4,0xc2,0xcf, - 0x9f,0xb9,0xfd,0x50,0x34,0xca,0x90,0xa8,0x31,0x7d, - 0xa5,0xfa,0x78,0x3b,0xa6,0x5d,0xf1,0x1f,0x38,0x61, - 0xd3,0x98,0x74,0xbf,0x78,0x14,0x60,0x00,0x19,0x2b, - 0x6d,0x27,0x7a,0xc0,0xec,0x28,0x00,0x00,0x00,0x00, - 0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82 -}; diff --git a/data/converted/off_svg.cpp b/data/converted/off_svg.cpp new file mode 100644 index 000000000..91198cf7b --- /dev/null +++ b/data/converted/off_svg.cpp @@ -0,0 +1,141 @@ +//this file was auto-generated from "off.svg" by res2h + +#include "../Resources.h" + +const size_t off_svg_size = 1338; +const unsigned char off_svg_data[1338] = { + 0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20, + 0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22, + 0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a, + 0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62, + 0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61, + 0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33, + 0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e, + 0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72, + 0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30, + 0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20, + 0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f, + 0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20, + 0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f, + 0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20, + 0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45, + 0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44, + 0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64, + 0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22, + 0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45, + 0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a, + 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f, + 0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76, + 0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78, + 0x6c,0x69,0x6e,0x6b,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,0x78, + 0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30, + 0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78, + 0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68, + 0x3d,0x22,0x34,0x33,0x2e,0x39,0x31,0x36,0x70,0x78, + 0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22, + 0x32,0x31,0x2e,0x39,0x35,0x39,0x70,0x78,0x22,0x20, + 0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30, + 0x20,0x30,0x20,0x34,0x33,0x2e,0x39,0x31,0x36,0x20, + 0x32,0x31,0x2e,0x39,0x35,0x39,0x22,0x20,0x65,0x6e, + 0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67, + 0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77, + 0x20,0x30,0x20,0x30,0x20,0x34,0x33,0x2e,0x39,0x31, + 0x36,0x20,0x32,0x31,0x2e,0x39,0x35,0x39,0x22,0x20, + 0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d, + 0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22, + 0x3e,0x0d,0x0a,0x3c,0x70,0x61,0x74,0x68,0x20,0x66, + 0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37, + 0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32,0x39, + 0x2e,0x32,0x39,0x31,0x2c,0x31,0x35,0x2e,0x36,0x39, + 0x68,0x31,0x2e,0x39,0x33,0x34,0x76,0x2d,0x34,0x2e, + 0x31,0x31,0x33,0x68,0x35,0x2e,0x34,0x32,0x76,0x2d, + 0x31,0x2e,0x34,0x37,0x39,0x68,0x2d,0x35,0x2e,0x34, + 0x32,0x56,0x37,0x2e,0x37,0x30,0x34,0x68,0x35,0x2e, + 0x37,0x32,0x39,0x56,0x36,0x2e,0x32,0x32,0x35,0x68, + 0x2d,0x37,0x2e,0x36,0x36,0x32,0x56,0x31,0x35,0x2e, + 0x36,0x39,0x7a,0x20,0x4d,0x31,0x39,0x2e,0x38,0x31, + 0x2c,0x31,0x35,0x2e,0x36,0x39,0x68,0x31,0x2e,0x39, + 0x33,0x36,0x76,0x2d,0x34,0x2e,0x31,0x31,0x33,0x0d, + 0x0a,0x09,0x68,0x35,0x2e,0x34,0x31,0x36,0x76,0x2d, + 0x31,0x2e,0x34,0x37,0x39,0x68,0x2d,0x35,0x2e,0x34, + 0x31,0x36,0x56,0x37,0x2e,0x37,0x30,0x34,0x68,0x35, + 0x2e,0x37,0x32,0x35,0x56,0x36,0x2e,0x32,0x32,0x35, + 0x68,0x2d,0x37,0x2e,0x36,0x36,0x56,0x31,0x35,0x2e, + 0x36,0x39,0x7a,0x20,0x4d,0x31,0x32,0x2e,0x33,0x37, + 0x38,0x2c,0x31,0x34,0x2e,0x34,0x37,0x33,0x63,0x2d, + 0x32,0x2e,0x31,0x36,0x36,0x2c,0x30,0x2d,0x33,0x2e, + 0x34,0x30,0x34,0x2d,0x31,0x2e,0x34,0x33,0x35,0x2d, + 0x33,0x2e,0x34,0x30,0x34,0x2d,0x33,0x2e,0x35,0x31, + 0x37,0x0d,0x0a,0x09,0x63,0x30,0x2d,0x32,0x2e,0x30, + 0x38,0x33,0x2c,0x31,0x2e,0x32,0x33,0x38,0x2d,0x33, + 0x2e,0x35,0x31,0x38,0x2c,0x33,0x2e,0x34,0x30,0x34, + 0x2d,0x33,0x2e,0x35,0x31,0x38,0x63,0x32,0x2e,0x31, + 0x36,0x37,0x2c,0x30,0x2c,0x33,0x2e,0x34,0x30,0x36, + 0x2c,0x31,0x2e,0x34,0x33,0x35,0x2c,0x33,0x2e,0x34, + 0x30,0x36,0x2c,0x33,0x2e,0x35,0x31,0x38,0x43,0x31, + 0x35,0x2e,0x37,0x38,0x34,0x2c,0x31,0x33,0x2e,0x30, + 0x33,0x38,0x2c,0x31,0x34,0x2e,0x35,0x34,0x35,0x2c, + 0x31,0x34,0x2e,0x34,0x37,0x33,0x2c,0x31,0x32,0x2e, + 0x33,0x37,0x38,0x2c,0x31,0x34,0x2e,0x34,0x37,0x33, + 0x20,0x4d,0x31,0x32,0x2e,0x33,0x37,0x38,0x2c,0x31, + 0x35,0x2e,0x39,0x35,0x36,0x0d,0x0a,0x09,0x63,0x33, + 0x2e,0x38,0x39,0x36,0x2c,0x30,0x2c,0x35,0x2e,0x34, + 0x31,0x39,0x2d,0x32,0x2e,0x33,0x33,0x35,0x2c,0x35, + 0x2e,0x34,0x31,0x39,0x2d,0x35,0x73,0x2d,0x31,0x2e, + 0x35,0x32,0x32,0x2d,0x34,0x2e,0x39,0x39,0x37,0x2d, + 0x35,0x2e,0x34,0x31,0x39,0x2d,0x34,0x2e,0x39,0x39, + 0x37,0x63,0x2d,0x33,0x2e,0x38,0x39,0x36,0x2c,0x30, + 0x2d,0x35,0x2e,0x34,0x31,0x36,0x2c,0x32,0x2e,0x33, + 0x33,0x32,0x2d,0x35,0x2e,0x34,0x31,0x36,0x2c,0x34, + 0x2e,0x39,0x39,0x37,0x53,0x38,0x2e,0x34,0x38,0x32, + 0x2c,0x31,0x35,0x2e,0x39,0x35,0x36,0x2c,0x31,0x32, + 0x2e,0x33,0x37,0x38,0x2c,0x31,0x35,0x2e,0x39,0x35, + 0x36,0x22,0x2f,0x3e,0x0d,0x0a,0x3c,0x70,0x61,0x74, + 0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37, + 0x37,0x37,0x37,0x37,0x37,0x22,0x20,0x64,0x3d,0x22, + 0x4d,0x33,0x39,0x2e,0x36,0x36,0x34,0x2c,0x31,0x2e, + 0x35,0x63,0x31,0x2e,0x35,0x31,0x38,0x2c,0x30,0x2c, + 0x32,0x2e,0x37,0x35,0x32,0x2c,0x31,0x2e,0x32,0x33, + 0x34,0x2c,0x32,0x2e,0x37,0x35,0x32,0x2c,0x32,0x2e, + 0x37,0x35,0x32,0x76,0x31,0x33,0x2e,0x34,0x35,0x35, + 0x63,0x30,0x2c,0x31,0x2e,0x35,0x31,0x38,0x2d,0x31, + 0x2e,0x32,0x33,0x34,0x2c,0x32,0x2e,0x37,0x35,0x32, + 0x2d,0x32,0x2e,0x37,0x35,0x32,0x2c,0x32,0x2e,0x37, + 0x35,0x32,0x48,0x34,0x2e,0x32,0x35,0x32,0x0d,0x0a, + 0x09,0x63,0x2d,0x31,0x2e,0x35,0x31,0x38,0x2c,0x30, + 0x2d,0x32,0x2e,0x37,0x35,0x32,0x2d,0x31,0x2e,0x32, + 0x33,0x34,0x2d,0x32,0x2e,0x37,0x35,0x32,0x2d,0x32, + 0x2e,0x37,0x35,0x32,0x56,0x34,0x2e,0x32,0x35,0x32, + 0x43,0x31,0x2e,0x35,0x2c,0x32,0x2e,0x37,0x33,0x34, + 0x2c,0x32,0x2e,0x37,0x33,0x34,0x2c,0x31,0x2e,0x35, + 0x2c,0x34,0x2e,0x32,0x35,0x32,0x2c,0x31,0x2e,0x35, + 0x48,0x33,0x39,0x2e,0x36,0x36,0x34,0x20,0x4d,0x33, + 0x39,0x2e,0x36,0x36,0x34,0x2c,0x30,0x48,0x34,0x2e, + 0x32,0x35,0x32,0x43,0x31,0x2e,0x39,0x31,0x34,0x2c, + 0x30,0x2c,0x30,0x2c,0x31,0x2e,0x39,0x31,0x34,0x2c, + 0x30,0x2c,0x34,0x2e,0x32,0x35,0x32,0x76,0x31,0x33, + 0x2e,0x34,0x35,0x35,0x0d,0x0a,0x09,0x63,0x30,0x2c, + 0x32,0x2e,0x33,0x33,0x39,0x2c,0x31,0x2e,0x39,0x31, + 0x34,0x2c,0x34,0x2e,0x32,0x35,0x32,0x2c,0x34,0x2e, + 0x32,0x35,0x32,0x2c,0x34,0x2e,0x32,0x35,0x32,0x68, + 0x33,0x35,0x2e,0x34,0x31,0x32,0x63,0x32,0x2e,0x33, + 0x33,0x39,0x2c,0x30,0x2c,0x34,0x2e,0x32,0x35,0x32, + 0x2d,0x31,0x2e,0x39,0x31,0x33,0x2c,0x34,0x2e,0x32, + 0x35,0x32,0x2d,0x34,0x2e,0x32,0x35,0x32,0x56,0x34, + 0x2e,0x32,0x35,0x32,0x43,0x34,0x33,0x2e,0x39,0x31, + 0x36,0x2c,0x31,0x2e,0x39,0x31,0x34,0x2c,0x34,0x32, + 0x2e,0x30,0x30,0x33,0x2c,0x30,0x2c,0x33,0x39,0x2e, + 0x36,0x36,0x34,0x2c,0x30,0x4c,0x33,0x39,0x2e,0x36, + 0x36,0x34,0x2c,0x30,0x7a,0x22,0x2f,0x3e,0x0d,0x0a, + 0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d,0x0a +}; diff --git a/data/converted/on_svg.cpp b/data/converted/on_svg.cpp new file mode 100644 index 000000000..a8c533a3f --- /dev/null +++ b/data/converted/on_svg.cpp @@ -0,0 +1,122 @@ +//this file was auto-generated from "on.svg" by res2h + +#include "../Resources.h" + +const size_t on_svg_size = 1148; +const unsigned char on_svg_data[1148] = { + 0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20, + 0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22, + 0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a, + 0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62, + 0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61, + 0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33, + 0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e, + 0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72, + 0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30, + 0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20, + 0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f, + 0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20, + 0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f, + 0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20, + 0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45, + 0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44, + 0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64, + 0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22, + 0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45, + 0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a, + 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f, + 0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76, + 0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78, + 0x6c,0x69,0x6e,0x6b,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,0x78, + 0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30, + 0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78, + 0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68, + 0x3d,0x22,0x34,0x33,0x2e,0x39,0x31,0x36,0x70,0x78, + 0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22, + 0x32,0x31,0x2e,0x39,0x35,0x39,0x70,0x78,0x22,0x20, + 0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30, + 0x20,0x30,0x20,0x34,0x33,0x2e,0x39,0x31,0x36,0x20, + 0x32,0x31,0x2e,0x39,0x35,0x39,0x22,0x20,0x65,0x6e, + 0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67, + 0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77, + 0x20,0x30,0x20,0x30,0x20,0x34,0x33,0x2e,0x39,0x31, + 0x36,0x20,0x32,0x31,0x2e,0x39,0x35,0x39,0x22,0x20, + 0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d, + 0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22, + 0x3e,0x0d,0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c, + 0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d, + 0x22,0x23,0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x20, + 0x64,0x3d,0x22,0x4d,0x33,0x39,0x2e,0x36,0x36,0x34, + 0x2c,0x30,0x48,0x34,0x2e,0x32,0x35,0x32,0x43,0x31, + 0x2e,0x39,0x31,0x34,0x2c,0x30,0x2c,0x30,0x2c,0x31, + 0x2e,0x39,0x31,0x34,0x2c,0x30,0x2c,0x34,0x2e,0x32, + 0x35,0x32,0x76,0x31,0x33,0x2e,0x34,0x35,0x35,0x63, + 0x30,0x2c,0x32,0x2e,0x33,0x33,0x39,0x2c,0x31,0x2e, + 0x39,0x31,0x34,0x2c,0x34,0x2e,0x32,0x35,0x32,0x2c, + 0x34,0x2e,0x32,0x35,0x32,0x2c,0x34,0x2e,0x32,0x35, + 0x32,0x68,0x33,0x35,0x2e,0x34,0x31,0x32,0x0d,0x0a, + 0x09,0x09,0x63,0x32,0x2e,0x33,0x33,0x39,0x2c,0x30, + 0x2c,0x34,0x2e,0x32,0x35,0x32,0x2d,0x31,0x2e,0x39, + 0x31,0x33,0x2c,0x34,0x2e,0x32,0x35,0x32,0x2d,0x34, + 0x2e,0x32,0x35,0x32,0x56,0x34,0x2e,0x32,0x35,0x32, + 0x43,0x34,0x33,0x2e,0x39,0x31,0x36,0x2c,0x31,0x2e, + 0x39,0x31,0x34,0x2c,0x34,0x32,0x2e,0x30,0x30,0x33, + 0x2c,0x30,0x2c,0x33,0x39,0x2e,0x36,0x36,0x34,0x2c, + 0x30,0x4c,0x33,0x39,0x2e,0x36,0x36,0x34,0x2c,0x30, + 0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e, + 0x0d,0x0a,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69, + 0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37,0x37, + 0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32,0x33,0x2e, + 0x37,0x30,0x34,0x2c,0x31,0x35,0x2e,0x37,0x31,0x35, + 0x68,0x31,0x2e,0x39,0x38,0x38,0x56,0x38,0x2e,0x36, + 0x30,0x32,0x68,0x30,0x2e,0x30,0x32,0x37,0x6c,0x35, + 0x2e,0x39,0x30,0x36,0x2c,0x37,0x2e,0x31,0x31,0x33, + 0x68,0x32,0x2e,0x33,0x33,0x32,0x56,0x36,0x2e,0x32, + 0x34,0x34,0x68,0x2d,0x31,0x2e,0x39,0x38,0x37,0x76, + 0x37,0x2e,0x31,0x31,0x34,0x68,0x2d,0x30,0x2e,0x30, + 0x32,0x37,0x6c,0x2d,0x35,0x2e,0x38,0x36,0x36,0x2d, + 0x37,0x2e,0x31,0x31,0x34,0x68,0x2d,0x32,0x2e,0x33, + 0x37,0x33,0x56,0x31,0x35,0x2e,0x37,0x31,0x35,0x7a, + 0x0d,0x0a,0x09,0x20,0x4d,0x31,0x35,0x2e,0x37,0x35, + 0x34,0x2c,0x31,0x34,0x2e,0x35,0x63,0x2d,0x32,0x2e, + 0x33,0x31,0x38,0x2c,0x30,0x2d,0x33,0x2e,0x36,0x34, + 0x33,0x2d,0x31,0x2e,0x34,0x33,0x38,0x2d,0x33,0x2e, + 0x36,0x34,0x33,0x2d,0x33,0x2e,0x35,0x32,0x31,0x63, + 0x30,0x2d,0x32,0x2e,0x30,0x38,0x34,0x2c,0x31,0x2e, + 0x33,0x32,0x34,0x2d,0x33,0x2e,0x35,0x31,0x38,0x2c, + 0x33,0x2e,0x36,0x34,0x33,0x2d,0x33,0x2e,0x35,0x31, + 0x38,0x63,0x32,0x2e,0x33,0x32,0x2c,0x30,0x2c,0x33, + 0x2e,0x36,0x34,0x35,0x2c,0x31,0x2e,0x34,0x33,0x34, + 0x2c,0x33,0x2e,0x36,0x34,0x35,0x2c,0x33,0x2e,0x35, + 0x31,0x38,0x0d,0x0a,0x09,0x43,0x31,0x39,0x2e,0x33, + 0x39,0x38,0x2c,0x31,0x33,0x2e,0x30,0x36,0x33,0x2c, + 0x31,0x38,0x2e,0x30,0x37,0x34,0x2c,0x31,0x34,0x2e, + 0x35,0x2c,0x31,0x35,0x2e,0x37,0x35,0x34,0x2c,0x31, + 0x34,0x2e,0x35,0x20,0x4d,0x31,0x35,0x2e,0x37,0x35, + 0x34,0x2c,0x31,0x35,0x2e,0x39,0x38,0x63,0x34,0x2e, + 0x31,0x37,0x2c,0x30,0x2c,0x35,0x2e,0x37,0x39,0x38, + 0x2d,0x32,0x2e,0x33,0x33,0x36,0x2c,0x35,0x2e,0x37, + 0x39,0x38,0x2d,0x35,0x2e,0x30,0x30,0x31,0x63,0x30, + 0x2d,0x32,0x2e,0x36,0x36,0x39,0x2d,0x31,0x2e,0x36, + 0x32,0x38,0x2d,0x35,0x2e,0x30,0x30,0x31,0x2d,0x35, + 0x2e,0x37,0x39,0x38,0x2d,0x35,0x2e,0x30,0x30,0x31, + 0x0d,0x0a,0x09,0x63,0x2d,0x34,0x2e,0x31,0x36,0x38, + 0x2c,0x30,0x2d,0x35,0x2e,0x37,0x39,0x36,0x2c,0x32, + 0x2e,0x33,0x33,0x32,0x2d,0x35,0x2e,0x37,0x39,0x36, + 0x2c,0x35,0x2e,0x30,0x30,0x31,0x43,0x39,0x2e,0x39, + 0x35,0x38,0x2c,0x31,0x33,0x2e,0x36,0x34,0x35,0x2c, + 0x31,0x31,0x2e,0x35,0x38,0x36,0x2c,0x31,0x35,0x2e, + 0x39,0x38,0x2c,0x31,0x35,0x2e,0x37,0x35,0x34,0x2c, + 0x31,0x35,0x2e,0x39,0x38,0x22,0x2f,0x3e,0x0d,0x0a, + 0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d,0x0a +}; diff --git a/data/converted/option_arrow_svg.cpp b/data/converted/option_arrow_svg.cpp new file mode 100644 index 000000000..c07891afd --- /dev/null +++ b/data/converted/option_arrow_svg.cpp @@ -0,0 +1,92 @@ +//this file was auto-generated from "option_arrow.svg" by res2h + +#include "../Resources.h" + +const size_t option_arrow_svg_size = 850; +const unsigned char option_arrow_svg_data[850] = { + 0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20, + 0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22, + 0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a, + 0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62, + 0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61, + 0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33, + 0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e, + 0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72, + 0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30, + 0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20, + 0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f, + 0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20, + 0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f, + 0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20, + 0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45, + 0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44, + 0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64, + 0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22, + 0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45, + 0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a, + 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f, + 0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76, + 0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78, + 0x6c,0x69,0x6e,0x6b,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,0x78, + 0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30, + 0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78, + 0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68, + 0x3d,0x22,0x31,0x32,0x2e,0x31,0x35,0x38,0x70,0x78, + 0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22, + 0x32,0x31,0x2e,0x39,0x31,0x33,0x70,0x78,0x22,0x20, + 0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30, + 0x20,0x30,0x20,0x31,0x32,0x2e,0x31,0x35,0x38,0x20, + 0x32,0x31,0x2e,0x39,0x31,0x33,0x22,0x20,0x65,0x6e, + 0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67, + 0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77, + 0x20,0x30,0x20,0x30,0x20,0x31,0x32,0x2e,0x31,0x35, + 0x38,0x20,0x32,0x31,0x2e,0x39,0x31,0x33,0x22,0x20, + 0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d, + 0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22, + 0x3e,0x0d,0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c, + 0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d, + 0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20, + 0x64,0x3d,0x22,0x4d,0x30,0x2e,0x37,0x35,0x2c,0x32, + 0x31,0x2e,0x39,0x31,0x33,0x63,0x2d,0x30,0x2e,0x31, + 0x2c,0x30,0x2d,0x30,0x2e,0x32,0x2d,0x30,0x2e,0x30, + 0x32,0x2d,0x30,0x2e,0x32,0x39,0x34,0x2d,0x30,0x2e, + 0x30,0x36,0x31,0x43,0x30,0x2e,0x31,0x37,0x39,0x2c, + 0x32,0x31,0x2e,0x37,0x33,0x35,0x2c,0x30,0x2c,0x32, + 0x31,0x2e,0x34,0x36,0x33,0x2c,0x30,0x2c,0x32,0x31, + 0x2e,0x31,0x36,0x33,0x56,0x30,0x2e,0x37,0x35,0x0d, + 0x0a,0x09,0x09,0x63,0x30,0x2d,0x30,0x2e,0x33,0x2c, + 0x30,0x2e,0x31,0x37,0x39,0x2d,0x30,0x2e,0x35,0x37, + 0x32,0x2c,0x30,0x2e,0x34,0x35,0x36,0x2d,0x30,0x2e, + 0x36,0x39,0x43,0x30,0x2e,0x37,0x33,0x2d,0x30,0x2e, + 0x30,0x35,0x37,0x2c,0x31,0x2e,0x30,0x35,0x32,0x2c, + 0x30,0x2c,0x31,0x2e,0x32,0x36,0x39,0x2c,0x30,0x2e, + 0x32,0x30,0x38,0x6c,0x31,0x30,0x2e,0x36,0x35,0x38, + 0x2c,0x31,0x30,0x2e,0x32,0x30,0x36,0x63,0x30,0x2e, + 0x31,0x34,0x37,0x2c,0x30,0x2e,0x31,0x34,0x31,0x2c, + 0x30,0x2e,0x32,0x33,0x31,0x2c,0x30,0x2e,0x33,0x33, + 0x37,0x2c,0x30,0x2e,0x32,0x33,0x31,0x2c,0x30,0x2e, + 0x35,0x34,0x32,0x0d,0x0a,0x09,0x09,0x73,0x2d,0x30, + 0x2e,0x30,0x38,0x34,0x2c,0x30,0x2e,0x34,0x2d,0x30, + 0x2e,0x32,0x33,0x31,0x2c,0x30,0x2e,0x35,0x34,0x32, + 0x4c,0x31,0x2e,0x32,0x36,0x39,0x2c,0x32,0x31,0x2e, + 0x37,0x30,0x35,0x43,0x31,0x2e,0x31,0x32,0x36,0x2c, + 0x32,0x31,0x2e,0x38,0x34,0x2c,0x30,0x2e,0x39,0x33, + 0x39,0x2c,0x32,0x31,0x2e,0x39,0x31,0x33,0x2c,0x30, + 0x2e,0x37,0x35,0x2c,0x32,0x31,0x2e,0x39,0x31,0x33, + 0x7a,0x20,0x4d,0x31,0x2e,0x35,0x2c,0x32,0x2e,0x35, + 0x30,0x36,0x76,0x31,0x36,0x2e,0x38,0x39,0x39,0x6c, + 0x38,0x2e,0x38,0x32,0x34,0x2d,0x38,0x2e,0x34,0x35, + 0x4c,0x31,0x2e,0x35,0x2c,0x32,0x2e,0x35,0x30,0x36, + 0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e, + 0x0d,0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d,0x0a +}; diff --git a/data/converted/sq_bracket_png.cpp b/data/converted/sq_bracket_png.cpp deleted file mode 100644 index 064cb9023..000000000 --- a/data/converted/sq_bracket_png.cpp +++ /dev/null @@ -1,136 +0,0 @@ -//this file was auto-generated from "sq_bracket.png" by res2h - -#include "../Resources.h" - -const size_t sq_bracket_png_size = 1286; -const unsigned char sq_bracket_png_data[1286] = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x0d, - 0x00,0x00,0x00,0x16,0x08,0x06,0x00,0x00,0x00,0x1b, - 0xfa,0x16,0x24,0x00,0x00,0x00,0x19,0x74,0x45,0x58, - 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, - 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, - 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, - 0x00,0x00,0x03,0x66,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,0x20,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,0x41, - 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, - 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, - 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, - 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, - 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, - 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x22,0x3e,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,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,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,0x20,0x78,0x6d,0x6c,0x6e, - 0x73,0x3a,0x73,0x74,0x52,0x65,0x66,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,0x52,0x65,0x66,0x23,0x22,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,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,0x43,0x46,0x31,0x35,0x46,0x36,0x32,0x43, - 0x43,0x35,0x41,0x33,0x45,0x33,0x31,0x31,0x39,0x41, - 0x37,0x44,0x44,0x30,0x32,0x30,0x39,0x34,0x44,0x35, - 0x31,0x30,0x45,0x31,0x22,0x20,0x78,0x6d,0x70,0x4d, - 0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, - 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, - 0x64,0x3a,0x32,0x34,0x42,0x43,0x42,0x38,0x35,0x44, - 0x41,0x33,0x44,0x44,0x31,0x31,0x45,0x33,0x41,0x41, - 0x44,0x41,0x42,0x39,0x42,0x30,0x39,0x34,0x38,0x33, - 0x38,0x30,0x46,0x31,0x22,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,0x34,0x42,0x43,0x42,0x38,0x35,0x43, - 0x41,0x33,0x44,0x44,0x31,0x31,0x45,0x33,0x41,0x41, - 0x44,0x41,0x42,0x39,0x42,0x30,0x39,0x34,0x38,0x33, - 0x38,0x30,0x46,0x31,0x22,0x20,0x78,0x6d,0x70,0x3a, - 0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54,0x6f,0x6f, - 0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65,0x20,0x50, - 0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x43, - 0x53,0x36,0x20,0x28,0x57,0x69,0x6e,0x64,0x6f,0x77, - 0x73,0x29,0x22,0x3e,0x20,0x3c,0x78,0x6d,0x70,0x4d, - 0x4d,0x3a,0x44,0x65,0x72,0x69,0x76,0x65,0x64,0x46, - 0x72,0x6f,0x6d,0x20,0x73,0x74,0x52,0x65,0x66,0x3a, - 0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44, - 0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69,0x64,0x3a, - 0x43,0x46,0x31,0x35,0x46,0x36,0x32,0x43,0x43,0x35, - 0x41,0x33,0x45,0x33,0x31,0x31,0x39,0x41,0x37,0x44, - 0x44,0x30,0x32,0x30,0x39,0x34,0x44,0x35,0x31,0x30, - 0x45,0x31,0x22,0x20,0x73,0x74,0x52,0x65,0x66,0x3a, - 0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x49,0x44, - 0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69,0x64,0x3a, - 0x43,0x46,0x31,0x35,0x46,0x36,0x32,0x43,0x43,0x35, - 0x41,0x33,0x45,0x33,0x31,0x31,0x39,0x41,0x37,0x44, - 0x44,0x30,0x32,0x30,0x39,0x34,0x44,0x35,0x31,0x30, - 0x45,0x31,0x22,0x2f,0x3e,0x20,0x3c,0x2f,0x72,0x64, - 0x66,0x3a,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74, - 0x69,0x6f,0x6e,0x3e,0x20,0x3c,0x2f,0x72,0x64,0x66, - 0x3a,0x52,0x44,0x46,0x3e,0x20,0x3c,0x2f,0x78,0x3a, - 0x78,0x6d,0x70,0x6d,0x65,0x74,0x61,0x3e,0x20,0x3c, - 0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74,0x20,0x65, - 0x6e,0x64,0x3d,0x22,0x72,0x22,0x3f,0x3e,0xd4,0x38, - 0xd4,0x9d,0x00,0x00,0x01,0x36,0x49,0x44,0x41,0x54, - 0x78,0xda,0x94,0xd3,0xbf,0x2b,0x45,0x61,0x1c,0xc7, - 0xf1,0xe7,0x5c,0x87,0x9b,0x6b,0x30,0x58,0x0c,0xfe, - 0x04,0xd3,0x1d,0x4d,0x52,0x0c,0xc4,0x20,0xa5,0x58, - 0x6e,0x06,0x45,0x8c,0x9c,0x41,0x37,0x94,0x45,0x46, - 0x37,0x49,0x06,0xbf,0x16,0x4a,0x24,0x19,0x28,0x2c, - 0x77,0x35,0xdd,0xc5,0x7f,0x60,0x31,0x18,0x10,0xf2, - 0xe3,0xfd,0xa9,0xef,0xa9,0xdb,0xad,0x73,0xce,0xe3, - 0x5b,0xaf,0x4e,0x9d,0x73,0x3e,0xcf,0x79,0x9e,0xe7, - 0xfb,0x9c,0x20,0x8a,0xa2,0x2e,0xe7,0xdc,0x3e,0x66, - 0xf1,0xe8,0x3c,0x2a,0x87,0x55,0xf4,0xe1,0x1e,0xdd, - 0xbe,0xa1,0x79,0xdc,0xa0,0xd3,0x82,0x45,0x9f,0xd0, - 0x1b,0x86,0x71,0x81,0x0e,0xdc,0xa2,0x27,0x2b,0xa4, - 0xfa,0xc0,0x18,0x8e,0xd1,0x8e,0x6b,0x9b,0x72,0x6a, - 0x48,0xf5,0x85,0x49,0xec,0xa1,0x0d,0x97,0x18,0xcc, - 0x0a,0xa9,0xbe,0x31,0x85,0x2d,0xb4,0xe2,0x0c,0xa3, - 0x59,0x21,0xd5,0x2f,0xe6,0xb0,0x81,0x16,0x9c,0xd8, - 0x0c,0x52,0x43,0x71,0x70,0xd1,0xda,0xd1,0x84,0x03, - 0x4c,0x67,0x85,0xe2,0x5a,0xb1,0x70,0x80,0x6d,0x2c, - 0xe9,0x66,0xe8,0xd1,0x4b,0x4d,0xf3,0x15,0x15,0xac, - 0x69,0xad,0x39,0xf7,0xff,0x0a,0x7c,0x42,0x0b,0xf6, - 0x15,0x55,0x59,0x53,0x0c,0x3d,0xd6,0xb4,0x8c,0x1f, - 0xcc,0x60,0x27,0x6d,0x4d,0x5a,0xf8,0xba,0x7d,0x45, - 0xbd,0x2b,0xe1,0x28,0x7e,0x18,0x26,0x04,0x2a,0xf6, - 0xab,0x7c,0x62,0x02,0xa7,0xf5,0x2f,0x34,0x86,0xd4, - 0x93,0x5d,0x1b,0xf9,0xdd,0xce,0xe3,0x55,0xe3,0xa8, - 0xf5,0xa1,0x66,0x1c,0x62,0xdc,0xb6,0x78,0xc4,0x4e, - 0xbc,0x4b,0x0a,0xe5,0xed,0xb8,0xe8,0xc5,0x17,0x0c, - 0xa1,0x9a,0xb4,0x3b,0x0a,0x15,0x70,0x8e,0x7e,0x3c, - 0x63,0x00,0x0f,0x69,0x5b,0xaa,0xd0,0xa6,0x05,0x9e, - 0xec,0x5a,0xf3,0xf9,0x73,0xd5,0x87,0x3b,0xf4,0xfa, - 0x04,0x54,0x7f,0x02,0x0c,0x00,0x5f,0x4a,0x3a,0x5d, - 0xf2,0x7e,0xec,0x5c,0x00,0x00,0x00,0x00,0x49,0x45, - 0x4e,0x44,0xae,0x42,0x60,0x82 -}; diff --git a/data/converted/star_filled_png.cpp b/data/converted/star_filled_png.cpp deleted file mode 100644 index 4308c2ba4..000000000 --- a/data/converted/star_filled_png.cpp +++ /dev/null @@ -1,180 +0,0 @@ -//this file was auto-generated from "star_filled.png" by res2h - -#include "../Resources.h" - -const size_t star_filled_png_size = 1729; -const unsigned char star_filled_png_data[1729] = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x18, - 0x00,0x00,0x00,0x16,0x08,0x06,0x00,0x00,0x00,0xda, - 0x7d,0x5c,0x88,0x00,0x00,0x00,0x19,0x74,0x45,0x58, - 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, - 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, - 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, - 0x00,0x00,0x03,0x24,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,0x20,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,0x41, - 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, - 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, - 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, - 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, - 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, - 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x22,0x3e,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,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,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, - 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,0x20,0x78,0x6d,0x6c, - 0x6e,0x73,0x3a,0x73,0x74,0x52,0x65,0x66,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,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d, - 0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54, - 0x6f,0x6f,0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65, - 0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70, - 0x20,0x43,0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69, - 0x6e,0x74,0x6f,0x73,0x68,0x29,0x22,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,0x46,0x43,0x44,0x39,0x31,0x31, - 0x37,0x35,0x39,0x44,0x38,0x41,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d, - 0x70,0x4d,0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65, - 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x64,0x69,0x64,0x3a,0x46,0x43,0x44,0x39,0x31,0x31, - 0x37,0x36,0x39,0x44,0x38,0x41,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x3e,0x20,0x3c, - 0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69, - 0x76,0x65,0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74, - 0x52,0x65,0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e, - 0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x69,0x69,0x64,0x3a,0x36,0x46,0x44,0x45,0x41,0x33, - 0x43,0x45,0x39,0x44,0x38,0x41,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x73,0x74, - 0x52,0x65,0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65, - 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x64,0x69,0x64,0x3a,0x46,0x43,0x44,0x39,0x31,0x31, - 0x37,0x34,0x39,0x44,0x38,0x41,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x2f,0x3e,0x20, - 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63, - 0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c, - 0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20, - 0x3c,0x2f,0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74, - 0x61,0x3e,0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b, - 0x65,0x74,0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22, - 0x3f,0x3e,0x69,0x5e,0x78,0x11,0x00,0x00,0x03,0x33, - 0x49,0x44,0x41,0x54,0x78,0xda,0x8c,0x55,0xcf,0x8b, - 0x4f,0x51,0x14,0x3f,0xe7,0xbe,0x37,0x63,0x4c,0xca, - 0x2c,0x34,0xcd,0x42,0x21,0x23,0x62,0x43,0x52,0x52, - 0x9a,0x3f,0x80,0x05,0x76,0x36,0x2c,0x68,0x76,0x83, - 0xa5,0x29,0x36,0x9a,0xb2,0x52,0x92,0x15,0x59,0xd8, - 0x30,0x94,0x10,0x0d,0x1b,0x2b,0x1b,0x0b,0x35,0xa5, - 0xc6,0x8a,0xc2,0x42,0xa2,0xe4,0x47,0xf2,0x65,0xde, - 0xbd,0xc7,0xe7,0x9c,0x7b,0xdf,0x8f,0xef,0x7b,0x5f, - 0x72,0xeb,0xbc,0x77,0xdf,0xb9,0xe7,0x9e,0x1f,0x9f, - 0xf3,0xe3,0x71,0x6f,0x71,0x05,0xb1,0x0b,0x64,0x8b, - 0x89,0xb2,0x95,0x05,0x31,0x0b,0x91,0x50,0x7b,0x5d, - 0x02,0x1d,0x04,0xbd,0x03,0x1d,0x05,0xbd,0xea,0x3b, - 0xc5,0x5d,0x59,0x76,0x24,0x9e,0x49,0xb0,0xd7,0x87, - 0x80,0x5c,0x5b,0x8b,0x14,0xac,0xb2,0xed,0x75,0x1c, - 0x34,0x03,0x5a,0x0b,0xda,0x03,0xba,0xdd,0x56,0x4e, - 0x01,0x0a,0x83,0xa3,0xf6,0xe5,0xae,0x01,0xf5,0x22, - 0x50,0x5b,0xf0,0x4c,0x4b,0x6c,0x07,0x68,0xaa,0xc9, - 0x08,0xde,0xd1,0xa0,0x35,0x80,0xcb,0x14,0x96,0xf3, - 0xda,0x33,0xa2,0x59,0xd0,0xba,0x01,0x77,0xe7,0x2b, - 0x68,0x00,0x8b,0x46,0x40,0x2c,0xff,0x61,0x00,0x42, - 0x7a,0x21,0xfc,0xce,0x28,0x82,0xc9,0x73,0xf6,0x6e, - 0xde,0x8d,0xfb,0x09,0x28,0xdf,0x67,0xd0,0xa8,0xf7, - 0x03,0x94,0xff,0x25,0x02,0xe5,0xc2,0x08,0x2e,0x86, - 0xc2,0xcd,0x86,0x82,0x9d,0x98,0x77,0x8d,0x64,0x6a, - 0x02,0xbd,0xd1,0x05,0x28,0x1f,0xa1,0x7f,0xac,0x3c, - 0x5d,0xda,0x85,0xe7,0x06,0xd0,0x1a,0xd0,0x38,0x68, - 0x2b,0xbc,0xdc,0x84,0x84,0x6f,0x17,0x71,0x94,0x0d, - 0xf9,0xe8,0x4a,0x59,0x6c,0x30,0xe2,0x97,0x33,0xdd, - 0x6e,0x46,0xc5,0xbd,0xc6,0xfd,0x17,0xd8,0xbf,0x04, - 0xbd,0x07,0x7d,0x02,0x7d,0x04,0x3d,0x36,0xd9,0xde, - 0xe2,0xf0,0x39,0x08,0x9c,0x8d,0xa1,0x73,0x03,0x03, - 0x8e,0xe5,0x0a,0x72,0xc3,0x1e,0xa5,0x4c,0x35,0x4c, - 0xe0,0x85,0x22,0xb3,0x8a,0xab,0x93,0x25,0x55,0x94, - 0x1c,0xe1,0x7a,0x26,0xc4,0x47,0xf8,0xe7,0xf3,0x11, - 0x29,0x2f,0x55,0x4a,0x00,0x91,0x7a,0x69,0x82,0x6e, - 0x00,0xb6,0x1c,0xcf,0x45,0x92,0x53,0x56,0xf3,0x95, - 0x5f,0x06,0x6f,0x32,0x7b,0x3d,0xd7,0xf2,0x32,0x83, - 0x19,0x3c,0xcd,0x7c,0x23,0x2b,0x62,0x97,0xa4,0x3c, - 0x67,0xea,0x8b,0x4e,0xca,0xb4,0xa4,0x28,0x99,0x53, - 0x81,0x14,0x28,0x73,0x44,0x67,0x7b,0xa2,0x0f,0x39, - 0x12,0x75,0x18,0x49,0xbb,0x49,0x9e,0xec,0xd0,0x29, - 0xde,0x4c,0x7d,0x55,0x23,0x4d,0xe5,0x5c,0x37,0xa2, - 0x34,0x1a,0x8d,0x0d,0x36,0x67,0xc4,0xd1,0xf2,0x3d, - 0x44,0x3f,0xa7,0x49,0x9e,0x47,0x48,0x2a,0x3b,0x1f, - 0xb4,0x3c,0x81,0xab,0x1b,0x0e,0x51,0x48,0xa8,0xd9, - 0x0f,0x15,0x43,0xb8,0x0b,0x97,0x26,0x5d,0x52,0xb3, - 0x09,0xcb,0x5d,0x97,0xc9,0xa1,0xba,0x8a,0x88,0x6e, - 0xe1,0xf0,0x07,0x20,0x79,0x60,0x50,0x7a,0x8d,0x24, - 0x34,0x6a,0x3b,0x5a,0x63,0x66,0xea,0x8c,0x08,0xf0, - 0x15,0xe6,0xe8,0xb9,0x25,0xfa,0x2a,0x72,0x39,0x5d, - 0x3a,0xe3,0xd8,0x12,0x6a,0x38,0x3e,0x44,0x24,0x53, - 0xa0,0xcf,0x01,0xde,0x14,0xbf,0xf2,0x84,0x67,0x1a, - 0x60,0x49,0x89,0x91,0x46,0xea,0x23,0x3f,0x40,0xce, - 0xf7,0x72,0x4d,0x6c,0x11,0x82,0x9b,0x83,0xce,0x69, - 0xb6,0x82,0x49,0xf4,0xe5,0xc9,0x18,0x95,0x9d,0x9a, - 0xaa,0xe2,0x22,0x9e,0x27,0x4d,0x68,0x28,0x74,0x3c, - 0xe6,0x2a,0x17,0x65,0x52,0xb3,0xb2,0x93,0xbf,0x82, - 0x3f,0x96,0xa2,0xa8,0x92,0x9e,0xfb,0xde,0x50,0x5f, - 0x0d,0x63,0xbf,0x85,0xd5,0x60,0x06,0xe5,0xed,0x01, - 0x96,0xc6,0xb8,0x94,0x89,0xb6,0x92,0x24,0x8b,0x08, - 0xac,0xd5,0x38,0xd8,0x86,0xcf,0xa5,0x2a,0x49,0x90, - 0xcd,0x6d,0x72,0x52,0xc5,0x18,0x05,0xce,0x7b,0x6d, - 0x98,0x02,0x48,0xf6,0x92,0x0a,0x27,0x25,0x57,0x5c, - 0xdd,0x03,0xcd,0xd1,0x14,0xe2,0xec,0x87,0x1a,0x9d, - 0xb2,0x4b,0x7d,0xa3,0x42,0x31,0x6e,0xac,0x8d,0x90, - 0x1b,0x4d,0x03,0xb8,0xd2,0xa2,0x8a,0x4b,0x25,0x25, - 0xbe,0x54,0xe6,0x8e,0xd2,0x34,0x8d,0x06,0xc6,0xdb, - 0x3f,0xaa,0x5c,0xfa,0x61,0x98,0xa8,0x4b,0x0f,0x09, - 0xb4,0x9f,0x48,0x1a,0xc5,0x8d,0x41,0x67,0xdb,0x32, - 0x89,0x99,0xc4,0x4e,0x2e,0xcc,0xc0,0xfa,0xce,0xb0, - 0x53,0xfc,0x1a,0x6b,0x32,0xce,0x12,0x26,0xaf,0x8a, - 0xb4,0x7a,0xd2,0x70,0xc3,0xfb,0x11,0x3c,0xbe,0x86, - 0xcf,0x9d,0xe0,0xcc,0x00,0xda,0x55,0xd1,0x50,0xa8, - 0xff,0x68,0x44,0xbb,0x3b,0x06,0xec,0x37,0x57,0xf7, - 0xd1,0x5b,0xa2,0xd6,0xef,0x98,0xe9,0x3e,0x1a,0xe7, - 0x0a,0xbc,0x5d,0x48,0xed,0x70,0x07,0x51,0x5d,0xc6, - 0xfb,0x34,0xbe,0x8e,0x89,0xcf,0x46,0x1b,0xcd,0xf8, - 0xa6,0xfb,0x3f,0x28,0x87,0x54,0xd4,0xba,0x00,0xc8, - 0xce,0xa3,0xc6,0xbf,0x81,0x96,0xa0,0x68,0x3f,0xf8, - 0x07,0x94,0xdf,0x6a,0x31,0x1d,0xcb,0x27,0x70,0x3e, - 0x09,0xb9,0x1b,0x40,0xe1,0x3b,0x26,0xc0,0x53,0x44, - 0x71,0xaa,0x4f,0x1f,0xe8,0x8f,0x00,0x03,0x00,0xa3, - 0x22,0x9c,0x02,0x6c,0xe3,0xe8,0x90,0x00,0x00,0x00, - 0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82 -}; diff --git a/data/converted/star_filled_svg.cpp b/data/converted/star_filled_svg.cpp new file mode 100644 index 000000000..ef1e5863f --- /dev/null +++ b/data/converted/star_filled_svg.cpp @@ -0,0 +1,124 @@ +//this file was auto-generated from "star_filled.svg" by res2h + +#include "../Resources.h" + +const size_t star_filled_svg_size = 1169; +const unsigned char star_filled_svg_data[1169] = { + 0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20, + 0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22, + 0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a, + 0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62, + 0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61, + 0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33, + 0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e, + 0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72, + 0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30, + 0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20, + 0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f, + 0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20, + 0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f, + 0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20, + 0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45, + 0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44, + 0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64, + 0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22, + 0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45, + 0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a, + 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f, + 0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76, + 0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78, + 0x6c,0x69,0x6e,0x6b,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,0x78, + 0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30, + 0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78, + 0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68, + 0x3d,0x22,0x32,0x31,0x2e,0x37,0x37,0x36,0x70,0x78, + 0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22, + 0x32,0x30,0x2e,0x37,0x36,0x31,0x70,0x78,0x22,0x20, + 0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30, + 0x20,0x30,0x20,0x32,0x31,0x2e,0x37,0x37,0x36,0x20, + 0x32,0x30,0x2e,0x37,0x36,0x31,0x22,0x20,0x65,0x6e, + 0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67, + 0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77, + 0x20,0x30,0x20,0x30,0x20,0x32,0x31,0x2e,0x37,0x37, + 0x36,0x20,0x32,0x30,0x2e,0x37,0x36,0x31,0x22,0x20, + 0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d, + 0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22, + 0x3e,0x0d,0x0a,0x3c,0x70,0x61,0x74,0x68,0x20,0x66, + 0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37, + 0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,0x30, + 0x2e,0x38,0x38,0x38,0x2c,0x30,0x63,0x2d,0x30,0x2e, + 0x32,0x32,0x38,0x2c,0x30,0x2d,0x30,0x2e,0x34,0x35, + 0x35,0x2c,0x30,0x2e,0x31,0x37,0x35,0x2d,0x30,0x2e, + 0x36,0x32,0x37,0x2c,0x30,0x2e,0x35,0x32,0x34,0x4c, + 0x37,0x2e,0x39,0x33,0x38,0x2c,0x35,0x2e,0x32,0x33, + 0x32,0x63,0x2d,0x30,0x2e,0x33,0x34,0x35,0x2c,0x30, + 0x2e,0x36,0x39,0x39,0x2d,0x31,0x2e,0x32,0x35,0x39, + 0x2c,0x31,0x2e,0x33,0x36,0x33,0x2d,0x32,0x2e,0x30, + 0x33,0x2c,0x31,0x2e,0x34,0x37,0x35,0x4c,0x30,0x2e, + 0x37,0x31,0x35,0x2c,0x37,0x2e,0x34,0x36,0x31,0x0d, + 0x0a,0x09,0x43,0x2d,0x30,0x2e,0x30,0x35,0x37,0x2c, + 0x37,0x2e,0x35,0x37,0x33,0x2d,0x30,0x2e,0x32,0x33, + 0x31,0x2c,0x38,0x2e,0x31,0x31,0x2c,0x30,0x2e,0x33, + 0x32,0x37,0x2c,0x38,0x2e,0x36,0x35,0x34,0x6c,0x33, + 0x2e,0x37,0x35,0x39,0x2c,0x33,0x2e,0x36,0x36,0x34, + 0x63,0x30,0x2e,0x35,0x35,0x39,0x2c,0x30,0x2e,0x35, + 0x34,0x34,0x2c,0x30,0x2e,0x39,0x30,0x37,0x2c,0x31, + 0x2e,0x36,0x31,0x38,0x2c,0x30,0x2e,0x37,0x37,0x35, + 0x2c,0x32,0x2e,0x33,0x38,0x36,0x6c,0x2d,0x30,0x2e, + 0x38,0x38,0x38,0x2c,0x35,0x2e,0x31,0x37,0x34,0x0d, + 0x0a,0x09,0x63,0x2d,0x30,0x2e,0x30,0x39,0x36,0x2c, + 0x30,0x2e,0x35,0x35,0x37,0x2c,0x30,0x2e,0x31,0x31, + 0x38,0x2c,0x30,0x2e,0x38,0x38,0x34,0x2c,0x30,0x2e, + 0x35,0x30,0x36,0x2c,0x30,0x2e,0x38,0x38,0x34,0x63, + 0x30,0x2e,0x31,0x34,0x37,0x2c,0x30,0x2c,0x30,0x2e, + 0x33,0x31,0x39,0x2d,0x30,0x2e,0x30,0x34,0x37,0x2c, + 0x30,0x2e,0x35,0x30,0x39,0x2d,0x30,0x2e,0x31,0x34, + 0x36,0x6c,0x34,0x2e,0x36,0x34,0x36,0x2d,0x32,0x2e, + 0x34,0x34,0x33,0x63,0x30,0x2e,0x33,0x34,0x35,0x2d, + 0x30,0x2e,0x31,0x38,0x31,0x2c,0x30,0x2e,0x38,0x2d, + 0x30,0x2e,0x32,0x37,0x31,0x2c,0x31,0x2e,0x32,0x35, + 0x34,0x2d,0x30,0x2e,0x32,0x37,0x31,0x0d,0x0a,0x09, + 0x63,0x30,0x2e,0x34,0x35,0x35,0x2c,0x30,0x2c,0x30, + 0x2e,0x39,0x31,0x2c,0x30,0x2e,0x30,0x39,0x31,0x2c, + 0x31,0x2e,0x32,0x35,0x35,0x2c,0x30,0x2e,0x32,0x37, + 0x31,0x6c,0x34,0x2e,0x36,0x34,0x35,0x2c,0x32,0x2e, + 0x34,0x34,0x33,0x63,0x30,0x2e,0x31,0x38,0x39,0x2c, + 0x30,0x2e,0x31,0x2c,0x30,0x2e,0x33,0x36,0x32,0x2c, + 0x30,0x2e,0x31,0x34,0x36,0x2c,0x30,0x2e,0x35,0x30, + 0x39,0x2c,0x30,0x2e,0x31,0x34,0x36,0x63,0x30,0x2e, + 0x33,0x38,0x39,0x2c,0x30,0x2c,0x30,0x2e,0x36,0x30, + 0x33,0x2d,0x30,0x2e,0x33,0x32,0x37,0x2c,0x30,0x2e, + 0x35,0x30,0x37,0x2d,0x30,0x2e,0x38,0x38,0x34,0x6c, + 0x2d,0x30,0x2e,0x38,0x38,0x39,0x2d,0x35,0x2e,0x31, + 0x37,0x34,0x0d,0x0a,0x09,0x63,0x2d,0x30,0x2e,0x31, + 0x33,0x32,0x2d,0x30,0x2e,0x37,0x36,0x38,0x2c,0x30, + 0x2e,0x32,0x31,0x38,0x2d,0x31,0x2e,0x38,0x34,0x32, + 0x2c,0x30,0x2e,0x37,0x37,0x35,0x2d,0x32,0x2e,0x33, + 0x38,0x36,0x6c,0x33,0x2e,0x37,0x36,0x2d,0x33,0x2e, + 0x36,0x36,0x34,0x63,0x30,0x2e,0x35,0x35,0x38,0x2d, + 0x30,0x2e,0x35,0x34,0x34,0x2c,0x30,0x2e,0x33,0x38, + 0x34,0x2d,0x31,0x2e,0x30,0x38,0x31,0x2d,0x30,0x2e, + 0x33,0x38,0x38,0x2d,0x31,0x2e,0x31,0x39,0x33,0x6c, + 0x2d,0x35,0x2e,0x31,0x39,0x33,0x2d,0x30,0x2e,0x37, + 0x35,0x34,0x0d,0x0a,0x09,0x63,0x2d,0x30,0x2e,0x37, + 0x37,0x31,0x2d,0x30,0x2e,0x31,0x31,0x32,0x2d,0x31, + 0x2e,0x36,0x38,0x35,0x2d,0x30,0x2e,0x37,0x37,0x35, + 0x2d,0x32,0x2e,0x30,0x32,0x39,0x2d,0x31,0x2e,0x34, + 0x37,0x35,0x6c,0x2d,0x32,0x2e,0x33,0x32,0x34,0x2d, + 0x34,0x2e,0x37,0x30,0x38,0x43,0x31,0x31,0x2e,0x33, + 0x34,0x33,0x2c,0x30,0x2e,0x31,0x37,0x35,0x2c,0x31, + 0x31,0x2e,0x31,0x31,0x36,0x2c,0x30,0x2c,0x31,0x30, + 0x2e,0x38,0x38,0x38,0x2c,0x30,0x4c,0x31,0x30,0x2e, + 0x38,0x38,0x38,0x2c,0x30,0x7a,0x22,0x2f,0x3e,0x0d, + 0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d,0x0a +}; diff --git a/data/converted/star_unfilled_png.cpp b/data/converted/star_unfilled_png.cpp deleted file mode 100644 index a3f69fde3..000000000 --- a/data/converted/star_unfilled_png.cpp +++ /dev/null @@ -1,132 +0,0 @@ -//this file was auto-generated from "star_unfilled.png" by res2h - -#include "../Resources.h" - -const size_t star_unfilled_png_size = 1245; -const unsigned char star_unfilled_png_data[1245] = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x18, - 0x00,0x00,0x00,0x16,0x08,0x06,0x00,0x00,0x00,0xda, - 0x7d,0x5c,0x88,0x00,0x00,0x00,0x19,0x74,0x45,0x58, - 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, - 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, - 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, - 0x00,0x00,0x03,0x24,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,0x20,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,0x41, - 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, - 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, - 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, - 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, - 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, - 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0x22,0x3e,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,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,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, - 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,0x20,0x78,0x6d,0x6c, - 0x6e,0x73,0x3a,0x73,0x74,0x52,0x65,0x66,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,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d, - 0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54, - 0x6f,0x6f,0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65, - 0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70, - 0x20,0x43,0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69, - 0x6e,0x74,0x6f,0x73,0x68,0x29,0x22,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,0x46,0x44,0x45,0x41,0x33, - 0x43,0x43,0x39,0x44,0x38,0x41,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d, - 0x70,0x4d,0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65, - 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x64,0x69,0x64,0x3a,0x36,0x46,0x44,0x45,0x41,0x33, - 0x43,0x44,0x39,0x44,0x38,0x41,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x3e,0x20,0x3c, - 0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69, - 0x76,0x65,0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74, - 0x52,0x65,0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e, - 0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x69,0x69,0x64,0x3a,0x36,0x46,0x44,0x45,0x41,0x33, - 0x43,0x41,0x39,0x44,0x38,0x41,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x73,0x74, - 0x52,0x65,0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65, - 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, - 0x64,0x69,0x64,0x3a,0x36,0x46,0x44,0x45,0x41,0x33, - 0x43,0x42,0x39,0x44,0x38,0x41,0x31,0x31,0x45,0x33, - 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, - 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x2f,0x3e,0x20, - 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63, - 0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c, - 0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20, - 0x3c,0x2f,0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74, - 0x61,0x3e,0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b, - 0x65,0x74,0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22, - 0x3f,0x3e,0xef,0x54,0xed,0xff,0x00,0x00,0x01,0x4f, - 0x49,0x44,0x41,0x54,0x78,0xda,0x62,0xac,0xaf,0xaf, - 0x67,0x20,0x12,0x4c,0x02,0xe2,0x40,0x20,0x7e,0x04, - 0xc4,0xf1,0x40,0x7c,0x07,0x24,0xd8,0xd0,0xd0,0x80, - 0x57,0x13,0x0b,0x91,0x86,0xa7,0x00,0x71,0x2e,0x94, - 0x2d,0x03,0xc4,0xab,0x80,0xd8,0x88,0x18,0x8d,0x4c, - 0x44,0x5a,0x50,0x83,0xc6,0x37,0x04,0x62,0x7b,0x6a, - 0x59,0x50,0x09,0xc4,0xf2,0x58,0xc4,0x57,0x50,0xcb, - 0x82,0x16,0x1c,0xe2,0x12,0x40,0xec,0x4d,0xa9,0x05, - 0x95,0x04,0xd4,0xf4,0x02,0x23,0x99,0x03,0x9f,0x01, - 0x8c,0xd0,0x54,0x64,0x0a,0xc4,0x8a,0x40,0x2c,0x02, - 0xc4,0x62,0x40,0xac,0x05,0xc4,0xaa,0x40,0x6c,0x40, - 0x84,0x0f,0x9f,0x01,0xf1,0x25,0x20,0xbe,0x06,0x65, - 0xbf,0x06,0xe2,0x57,0x40,0x8b,0x77,0xc0,0x2c,0x68, - 0x02,0xd2,0xb5,0x0c,0xd4,0x07,0x27,0x80,0x38,0x8e, - 0x89,0x46,0x86,0x83,0x80,0x05,0x10,0x57,0x33,0x31, - 0xd0,0x16,0xbc,0x00,0x59,0x10,0x49,0x23,0xc3,0x37, - 0x80,0x52,0x20,0x0b,0x34,0x3d,0xff,0x27,0x36,0x5d, - 0x13,0x09,0xd6,0x03,0x23,0x39,0x08,0x39,0x99,0xae, - 0x04,0x62,0x5f,0x2a,0x19,0x3e,0x1b,0x66,0x38,0x7a, - 0x3e,0xd8,0x02,0xcd,0xfe,0xef,0xc8,0x34,0xf8,0x0f, - 0x28,0x48,0x80,0x86,0xa7,0xe1,0xcb,0x68,0x87,0x80, - 0x78,0x31,0x99,0x16,0x7c,0x05,0x1a,0x5e,0x4b,0x4c, - 0x4e,0xd6,0x20,0xd3,0x02,0x7e,0xa0,0x05,0xda,0x84, - 0x2c,0xe0,0x02,0x62,0x5b,0x0a,0xc2,0xdf,0x90,0x90, - 0x05,0xca,0x50,0x4b,0xc8,0x05,0x62,0x84,0x2c,0x90, - 0xa0,0x30,0x05,0x29,0x10,0xb2,0x40,0x05,0x8f,0xe6, - 0xed,0x40,0x1c,0x02,0xc4,0xed,0x40,0xfc,0x05,0x4f, - 0xf1,0x80,0xd7,0x82,0x87,0x58,0x34,0x6d,0x84,0x96, - 0xfb,0x5e,0x40,0xbc,0x16,0x88,0xab,0x80,0x58,0x1d, - 0x88,0x27,0x03,0xf1,0x37,0x34,0xb5,0x0f,0x08,0x59, - 0xb0,0x0d,0xea,0xc2,0x4f,0x40,0x7c,0x15,0x88,0x7d, - 0x80,0x38,0x00,0x2a,0x8e,0x5e,0x44,0xe7,0x41,0x7d, - 0xbc,0x0c,0x88,0x3f,0x03,0xf1,0x61,0x20,0x2e,0x40, - 0xb7,0x00,0x20,0xc0,0x00,0x05,0x84,0x44,0xdb,0x7c, - 0x04,0x1f,0x70,0x00,0x00,0x00,0x00,0x49,0x45,0x4e, - 0x44,0xae,0x42,0x60,0x82 -}; diff --git a/data/converted/star_unfilled_svg.cpp b/data/converted/star_unfilled_svg.cpp new file mode 100644 index 000000000..088a0e993 --- /dev/null +++ b/data/converted/star_unfilled_svg.cpp @@ -0,0 +1,199 @@ +//this file was auto-generated from "star_unfilled.svg" by res2h + +#include "../Resources.h" + +const size_t star_unfilled_svg_size = 1920; +const unsigned char star_unfilled_svg_data[1920] = { + 0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20, + 0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22, + 0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a, + 0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62, + 0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61, + 0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33, + 0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e, + 0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72, + 0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30, + 0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20, + 0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f, + 0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20, + 0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f, + 0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20, + 0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45, + 0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44, + 0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64, + 0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22, + 0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45, + 0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d, + 0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a, + 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f, + 0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76, + 0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78, + 0x6c,0x69,0x6e,0x6b,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,0x78, + 0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30, + 0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78, + 0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68, + 0x3d,0x22,0x32,0x31,0x2e,0x37,0x37,0x36,0x70,0x78, + 0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22, + 0x32,0x30,0x2e,0x37,0x36,0x31,0x70,0x78,0x22,0x20, + 0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30, + 0x20,0x30,0x20,0x32,0x31,0x2e,0x37,0x37,0x36,0x20, + 0x32,0x30,0x2e,0x37,0x36,0x31,0x22,0x20,0x65,0x6e, + 0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67, + 0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77, + 0x20,0x30,0x20,0x30,0x20,0x32,0x31,0x2e,0x37,0x37, + 0x36,0x20,0x32,0x30,0x2e,0x37,0x36,0x31,0x22,0x20, + 0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d, + 0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22, + 0x3e,0x0d,0x0a,0x3c,0x70,0x61,0x74,0x68,0x20,0x66, + 0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37, + 0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,0x30, + 0x2e,0x38,0x38,0x38,0x2c,0x30,0x2e,0x35,0x30,0x35, + 0x63,0x30,0x2e,0x30,0x33,0x32,0x2c,0x30,0x2e,0x30, + 0x32,0x31,0x2c,0x30,0x2e,0x31,0x30,0x33,0x2c,0x30, + 0x2e,0x30,0x38,0x37,0x2c,0x30,0x2e,0x31,0x37,0x39, + 0x2c,0x30,0x2e,0x32,0x34,0x31,0x6c,0x32,0x2e,0x33, + 0x32,0x34,0x2c,0x34,0x2e,0x37,0x30,0x38,0x63,0x30, + 0x2e,0x34,0x31,0x36,0x2c,0x30,0x2e,0x38,0x34,0x35, + 0x2c,0x31,0x2e,0x34,0x37,0x34,0x2c,0x31,0x2e,0x36, + 0x31,0x33,0x2c,0x32,0x2e,0x34,0x30,0x35,0x2c,0x31, + 0x2e,0x37,0x34,0x38,0x0d,0x0a,0x09,0x6c,0x35,0x2e, + 0x31,0x39,0x34,0x2c,0x30,0x2e,0x37,0x35,0x34,0x63, + 0x30,0x2e,0x31,0x38,0x38,0x2c,0x30,0x2e,0x30,0x32, + 0x37,0x2c,0x30,0x2e,0x32,0x37,0x32,0x2c,0x30,0x2e, + 0x30,0x38,0x33,0x2c,0x30,0x2e,0x32,0x38,0x34,0x2c, + 0x30,0x2e,0x30,0x38,0x33,0x63,0x30,0x2e,0x30,0x30, + 0x31,0x2c,0x30,0x2c,0x30,0x2e,0x30,0x30,0x31,0x2c, + 0x30,0x2c,0x30,0x2e,0x30,0x30,0x31,0x2c,0x30,0x63, + 0x30,0x2c,0x30,0x2e,0x30,0x32,0x33,0x2d,0x30,0x2e, + 0x30,0x33,0x33,0x2c,0x30,0x2e,0x31,0x31,0x39,0x2d, + 0x30,0x2e,0x31,0x37,0x35,0x2c,0x30,0x2e,0x32,0x35, + 0x38,0x6c,0x2d,0x33,0x2e,0x37,0x36,0x31,0x2c,0x33, + 0x2e,0x36,0x36,0x33,0x0d,0x0a,0x09,0x63,0x2d,0x30, + 0x2e,0x36,0x37,0x34,0x2c,0x30,0x2e,0x36,0x35,0x38, + 0x2d,0x31,0x2e,0x30,0x37,0x38,0x2c,0x31,0x2e,0x39, + 0x30,0x31,0x2d,0x30,0x2e,0x39,0x31,0x39,0x2c,0x32, + 0x2e,0x38,0x32,0x39,0x6c,0x30,0x2e,0x38,0x38,0x39, + 0x2c,0x35,0x2e,0x31,0x37,0x34,0x63,0x30,0x2e,0x30, + 0x33,0x34,0x2c,0x30,0x2e,0x31,0x39,0x35,0x2c,0x30, + 0x2e,0x30,0x30,0x34,0x2c,0x30,0x2e,0x32,0x39,0x33, + 0x2d,0x30,0x2e,0x30,0x31,0x34,0x2c,0x30,0x2e,0x32, + 0x39,0x39,0x63,0x2d,0x30,0x2e,0x30,0x33,0x31,0x2c, + 0x30,0x2d,0x30,0x2e,0x31,0x32,0x32,0x2d,0x30,0x2e, + 0x30,0x30,0x39,0x2d,0x30,0x2e,0x32,0x37,0x36,0x2d, + 0x30,0x2e,0x30,0x38,0x39,0x0d,0x0a,0x09,0x6c,0x2d, + 0x34,0x2e,0x36,0x34,0x35,0x2d,0x32,0x2e,0x34,0x34, + 0x33,0x63,0x2d,0x30,0x2e,0x34,0x30,0x34,0x2d,0x30, + 0x2e,0x32,0x31,0x33,0x2d,0x30,0x2e,0x39,0x33,0x33, + 0x2d,0x30,0x2e,0x33,0x32,0x39,0x2d,0x31,0x2e,0x34, + 0x38,0x37,0x2d,0x30,0x2e,0x33,0x32,0x39,0x73,0x2d, + 0x31,0x2e,0x30,0x38,0x33,0x2c,0x30,0x2e,0x31,0x31, + 0x36,0x2d,0x31,0x2e,0x34,0x38,0x37,0x2c,0x30,0x2e, + 0x33,0x32,0x39,0x6c,0x2d,0x34,0x2e,0x36,0x34,0x35, + 0x2c,0x32,0x2e,0x34,0x34,0x33,0x63,0x2d,0x30,0x2e, + 0x31,0x35,0x34,0x2c,0x30,0x2e,0x30,0x38,0x2d,0x30, + 0x2e,0x32,0x34,0x35,0x2c,0x30,0x2e,0x30,0x38,0x39, + 0x2d,0x30,0x2e,0x32,0x38,0x2c,0x30,0x2e,0x31,0x30, + 0x32,0x0d,0x0a,0x09,0x63,0x2d,0x30,0x2e,0x30,0x31, + 0x33,0x2d,0x30,0x2e,0x30,0x31,0x39,0x2d,0x30,0x2e, + 0x30,0x34,0x33,0x2d,0x30,0x2e,0x31,0x31,0x36,0x2d, + 0x30,0x2e,0x30,0x31,0x2d,0x30,0x2e,0x33,0x31,0x32, + 0x6c,0x30,0x2e,0x38,0x38,0x38,0x2d,0x35,0x2e,0x31, + 0x37,0x34,0x63,0x30,0x2e,0x31,0x36,0x2d,0x30,0x2e, + 0x39,0x32,0x39,0x2d,0x30,0x2e,0x32,0x34,0x34,0x2d, + 0x32,0x2e,0x31,0x37,0x32,0x2d,0x30,0x2e,0x39,0x31, + 0x39,0x2d,0x32,0x2e,0x38,0x32,0x39,0x4c,0x30,0x2e, + 0x36,0x37,0x36,0x2c,0x38,0x2e,0x32,0x39,0x35,0x0d, + 0x0a,0x09,0x43,0x30,0x2e,0x35,0x33,0x34,0x2c,0x38, + 0x2e,0x31,0x35,0x37,0x2c,0x30,0x2e,0x35,0x2c,0x38, + 0x2e,0x30,0x36,0x31,0x2c,0x30,0x2e,0x34,0x39,0x33, + 0x2c,0x38,0x2e,0x30,0x36,0x31,0x63,0x30,0x2c,0x30, + 0x2c,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x30,0x43,0x30, + 0x2e,0x35,0x30,0x36,0x2c,0x38,0x2e,0x30,0x34,0x33, + 0x2c,0x30,0x2e,0x35,0x39,0x2c,0x37,0x2e,0x39,0x38, + 0x34,0x2c,0x30,0x2e,0x37,0x38,0x37,0x2c,0x37,0x2e, + 0x39,0x35,0x36,0x6c,0x35,0x2e,0x31,0x39,0x32,0x2d, + 0x30,0x2e,0x37,0x35,0x34,0x0d,0x0a,0x09,0x63,0x30, + 0x2e,0x39,0x33,0x33,0x2d,0x30,0x2e,0x31,0x33,0x35, + 0x2c,0x31,0x2e,0x39,0x39,0x2d,0x30,0x2e,0x39,0x30, + 0x33,0x2c,0x32,0x2e,0x34,0x30,0x37,0x2d,0x31,0x2e, + 0x37,0x34,0x38,0x6c,0x32,0x2e,0x33,0x32,0x33,0x2d, + 0x34,0x2e,0x37,0x30,0x38,0x43,0x31,0x30,0x2e,0x37, + 0x38,0x35,0x2c,0x30,0x2e,0x35,0x39,0x32,0x2c,0x31, + 0x30,0x2e,0x38,0x35,0x36,0x2c,0x30,0x2e,0x35,0x32, + 0x35,0x2c,0x31,0x30,0x2e,0x38,0x38,0x38,0x2c,0x30, + 0x2e,0x35,0x30,0x35,0x20,0x4d,0x31,0x30,0x2e,0x38, + 0x38,0x38,0x2c,0x30,0x0d,0x0a,0x09,0x63,0x2d,0x30, + 0x2e,0x32,0x32,0x38,0x2c,0x30,0x2d,0x30,0x2e,0x34, + 0x35,0x35,0x2c,0x30,0x2e,0x31,0x37,0x35,0x2d,0x30, + 0x2e,0x36,0x32,0x37,0x2c,0x30,0x2e,0x35,0x32,0x34, + 0x4c,0x37,0x2e,0x39,0x33,0x38,0x2c,0x35,0x2e,0x32, + 0x33,0x32,0x63,0x2d,0x30,0x2e,0x33,0x34,0x35,0x2c, + 0x30,0x2e,0x36,0x39,0x39,0x2d,0x31,0x2e,0x32,0x35, + 0x39,0x2c,0x31,0x2e,0x33,0x36,0x33,0x2d,0x32,0x2e, + 0x30,0x33,0x2c,0x31,0x2e,0x34,0x37,0x35,0x4c,0x30, + 0x2e,0x37,0x31,0x35,0x2c,0x37,0x2e,0x34,0x36,0x31, + 0x0d,0x0a,0x09,0x43,0x2d,0x30,0x2e,0x30,0x35,0x37, + 0x2c,0x37,0x2e,0x35,0x37,0x33,0x2d,0x30,0x2e,0x32, + 0x33,0x31,0x2c,0x38,0x2e,0x31,0x31,0x2c,0x30,0x2e, + 0x33,0x32,0x37,0x2c,0x38,0x2e,0x36,0x35,0x34,0x6c, + 0x33,0x2e,0x37,0x35,0x39,0x2c,0x33,0x2e,0x36,0x36, + 0x34,0x63,0x30,0x2e,0x35,0x35,0x39,0x2c,0x30,0x2e, + 0x35,0x34,0x34,0x2c,0x30,0x2e,0x39,0x30,0x37,0x2c, + 0x31,0x2e,0x36,0x31,0x38,0x2c,0x30,0x2e,0x37,0x37, + 0x35,0x2c,0x32,0x2e,0x33,0x38,0x36,0x6c,0x2d,0x30, + 0x2e,0x38,0x38,0x38,0x2c,0x35,0x2e,0x31,0x37,0x34, + 0x0d,0x0a,0x09,0x63,0x2d,0x30,0x2e,0x30,0x39,0x36, + 0x2c,0x30,0x2e,0x35,0x35,0x37,0x2c,0x30,0x2e,0x31, + 0x31,0x38,0x2c,0x30,0x2e,0x38,0x38,0x34,0x2c,0x30, + 0x2e,0x35,0x30,0x36,0x2c,0x30,0x2e,0x38,0x38,0x34, + 0x63,0x30,0x2e,0x31,0x34,0x37,0x2c,0x30,0x2c,0x30, + 0x2e,0x33,0x31,0x39,0x2d,0x30,0x2e,0x30,0x34,0x37, + 0x2c,0x30,0x2e,0x35,0x30,0x39,0x2d,0x30,0x2e,0x31, + 0x34,0x36,0x6c,0x34,0x2e,0x36,0x34,0x36,0x2d,0x32, + 0x2e,0x34,0x34,0x33,0x63,0x30,0x2e,0x33,0x34,0x35, + 0x2d,0x30,0x2e,0x31,0x38,0x31,0x2c,0x30,0x2e,0x38, + 0x2d,0x30,0x2e,0x32,0x37,0x31,0x2c,0x31,0x2e,0x32, + 0x35,0x34,0x2d,0x30,0x2e,0x32,0x37,0x31,0x0d,0x0a, + 0x09,0x63,0x30,0x2e,0x34,0x35,0x35,0x2c,0x30,0x2c, + 0x30,0x2e,0x39,0x31,0x2c,0x30,0x2e,0x30,0x39,0x31, + 0x2c,0x31,0x2e,0x32,0x35,0x35,0x2c,0x30,0x2e,0x32, + 0x37,0x31,0x6c,0x34,0x2e,0x36,0x34,0x35,0x2c,0x32, + 0x2e,0x34,0x34,0x33,0x63,0x30,0x2e,0x31,0x38,0x39, + 0x2c,0x30,0x2e,0x31,0x2c,0x30,0x2e,0x33,0x36,0x32, + 0x2c,0x30,0x2e,0x31,0x34,0x36,0x2c,0x30,0x2e,0x35, + 0x30,0x39,0x2c,0x30,0x2e,0x31,0x34,0x36,0x63,0x30, + 0x2e,0x33,0x38,0x39,0x2c,0x30,0x2c,0x30,0x2e,0x36, + 0x30,0x33,0x2d,0x30,0x2e,0x33,0x32,0x37,0x2c,0x30, + 0x2e,0x35,0x30,0x37,0x2d,0x30,0x2e,0x38,0x38,0x34, + 0x6c,0x2d,0x30,0x2e,0x38,0x38,0x39,0x2d,0x35,0x2e, + 0x31,0x37,0x34,0x0d,0x0a,0x09,0x63,0x2d,0x30,0x2e, + 0x31,0x33,0x32,0x2d,0x30,0x2e,0x37,0x36,0x38,0x2c, + 0x30,0x2e,0x32,0x31,0x38,0x2d,0x31,0x2e,0x38,0x34, + 0x32,0x2c,0x30,0x2e,0x37,0x37,0x35,0x2d,0x32,0x2e, + 0x33,0x38,0x36,0x6c,0x33,0x2e,0x37,0x36,0x2d,0x33, + 0x2e,0x36,0x36,0x34,0x63,0x30,0x2e,0x35,0x35,0x38, + 0x2d,0x30,0x2e,0x35,0x34,0x34,0x2c,0x30,0x2e,0x33, + 0x38,0x34,0x2d,0x31,0x2e,0x30,0x38,0x31,0x2d,0x30, + 0x2e,0x33,0x38,0x38,0x2d,0x31,0x2e,0x31,0x39,0x33, + 0x6c,0x2d,0x35,0x2e,0x31,0x39,0x33,0x2d,0x30,0x2e, + 0x37,0x35,0x34,0x0d,0x0a,0x09,0x63,0x2d,0x30,0x2e, + 0x37,0x37,0x31,0x2d,0x30,0x2e,0x31,0x31,0x32,0x2d, + 0x31,0x2e,0x36,0x38,0x35,0x2d,0x30,0x2e,0x37,0x37, + 0x35,0x2d,0x32,0x2e,0x30,0x32,0x39,0x2d,0x31,0x2e, + 0x34,0x37,0x35,0x6c,0x2d,0x32,0x2e,0x33,0x32,0x34, + 0x2d,0x34,0x2e,0x37,0x30,0x38,0x43,0x31,0x31,0x2e, + 0x33,0x34,0x33,0x2c,0x30,0x2e,0x31,0x37,0x35,0x2c, + 0x31,0x31,0x2e,0x31,0x31,0x36,0x2c,0x30,0x2c,0x31, + 0x30,0x2e,0x38,0x38,0x38,0x2c,0x30,0x4c,0x31,0x30, + 0x2e,0x38,0x38,0x38,0x2c,0x30,0x7a,0x22,0x2f,0x3e, + 0x0d,0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d,0x0a +}; diff --git a/data/converted/textbox_glow_png.cpp b/data/converted/textbox_glow_png.cpp deleted file mode 100644 index 9c5293671..000000000 --- a/data/converted/textbox_glow_png.cpp +++ /dev/null @@ -1,359 +0,0 @@ -//this file was auto-generated from "textbox_glow.png" by res2h - -#include "../Resources.h" - -const size_t textbox_glow_png_size = 3517; -const unsigned char textbox_glow_png_data[3517] = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x30, - 0x00,0x00,0x00,0x30,0x08,0x06,0x00,0x00,0x00,0x57, - 0x02,0xf9,0x87,0x00,0x00,0x00,0x09,0x70,0x48,0x59, - 0x73,0x00,0x00,0x0b,0x13,0x00,0x00,0x0b,0x13,0x01, - 0x00,0x9a,0x9c,0x18,0x00,0x00,0x0a,0x4f,0x69,0x43, - 0x43,0x50,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f, - 0x70,0x20,0x49,0x43,0x43,0x20,0x70,0x72,0x6f,0x66, - 0x69,0x6c,0x65,0x00,0x00,0x78,0xda,0x9d,0x53,0x67, - 0x54,0x53,0xe9,0x16,0x3d,0xf7,0xde,0xf4,0x42,0x4b, - 0x88,0x80,0x94,0x4b,0x6f,0x52,0x15,0x08,0x20,0x52, - 0x42,0x8b,0x80,0x14,0x91,0x26,0x2a,0x21,0x09,0x10, - 0x4a,0x88,0x21,0xa1,0xd9,0x15,0x51,0xc1,0x11,0x45, - 0x45,0x04,0x1b,0xc8,0xa0,0x88,0x03,0x8e,0x8e,0x80, - 0x8c,0x15,0x51,0x2c,0x0c,0x8a,0x0a,0xd8,0x07,0xe4, - 0x21,0xa2,0x8e,0x83,0xa3,0x88,0x8a,0xca,0xfb,0xe1, - 0x7b,0xa3,0x6b,0xd6,0xbc,0xf7,0xe6,0xcd,0xfe,0xb5, - 0xd7,0x3e,0xe7,0xac,0xf3,0x9d,0xb3,0xcf,0x07,0xc0, - 0x08,0x0c,0x96,0x48,0x33,0x51,0x35,0x80,0x0c,0xa9, - 0x42,0x1e,0x11,0xe0,0x83,0xc7,0xc4,0xc6,0xe1,0xe4, - 0x2e,0x40,0x81,0x0a,0x24,0x70,0x00,0x10,0x08,0xb3, - 0x64,0x21,0x73,0xfd,0x23,0x01,0x00,0xf8,0x7e,0x3c, - 0x3c,0x2b,0x22,0xc0,0x07,0xbe,0x00,0x01,0x78,0xd3, - 0x0b,0x08,0x00,0xc0,0x4d,0x9b,0xc0,0x30,0x1c,0x87, - 0xff,0x0f,0xea,0x42,0x99,0x5c,0x01,0x80,0x84,0x01, - 0xc0,0x74,0x91,0x38,0x4b,0x08,0x80,0x14,0x00,0x40, - 0x7a,0x8e,0x42,0xa6,0x00,0x40,0x46,0x01,0x80,0x9d, - 0x98,0x26,0x53,0x00,0xa0,0x04,0x00,0x60,0xcb,0x63, - 0x62,0xe3,0x00,0x50,0x2d,0x00,0x60,0x27,0x7f,0xe6, - 0xd3,0x00,0x80,0x9d,0xf8,0x99,0x7b,0x01,0x00,0x5b, - 0x94,0x21,0x15,0x01,0xa0,0x91,0x00,0x20,0x13,0x65, - 0x88,0x44,0x00,0x68,0x3b,0x00,0xac,0xcf,0x56,0x8a, - 0x45,0x00,0x58,0x30,0x00,0x14,0x66,0x4b,0xc4,0x39, - 0x00,0xd8,0x2d,0x00,0x30,0x49,0x57,0x66,0x48,0x00, - 0xb0,0xb7,0x00,0xc0,0xce,0x10,0x0b,0xb2,0x00,0x08, - 0x0c,0x00,0x30,0x51,0x88,0x85,0x29,0x00,0x04,0x7b, - 0x00,0x60,0xc8,0x23,0x23,0x78,0x00,0x84,0x99,0x00, - 0x14,0x46,0xf2,0x57,0x3c,0xf1,0x2b,0xae,0x10,0xe7, - 0x2a,0x00,0x00,0x78,0x99,0xb2,0x3c,0xb9,0x24,0x39, - 0x45,0x81,0x5b,0x08,0x2d,0x71,0x07,0x57,0x57,0x2e, - 0x1e,0x28,0xce,0x49,0x17,0x2b,0x14,0x36,0x61,0x02, - 0x61,0x9a,0x40,0x2e,0xc2,0x79,0x99,0x19,0x32,0x81, - 0x34,0x0f,0xe0,0xf3,0xcc,0x00,0x00,0xa0,0x91,0x15, - 0x11,0xe0,0x83,0xf3,0xfd,0x78,0xce,0x0e,0xae,0xce, - 0xce,0x36,0x8e,0xb6,0x0e,0x5f,0x2d,0xea,0xbf,0x06, - 0xff,0x22,0x62,0x62,0xe3,0xfe,0xe5,0xcf,0xab,0x70, - 0x40,0x00,0x00,0xe1,0x74,0x7e,0xd1,0xfe,0x2c,0x2f, - 0xb3,0x1a,0x80,0x3b,0x06,0x80,0x6d,0xfe,0xa2,0x25, - 0xee,0x04,0x68,0x5e,0x0b,0xa0,0x75,0xf7,0x8b,0x66, - 0xb2,0x0f,0x40,0xb5,0x00,0xa0,0xe9,0xda,0x57,0xf3, - 0x70,0xf8,0x7e,0x3c,0x3c,0x45,0xa1,0x90,0xb9,0xd9, - 0xd9,0xe5,0xe4,0xe4,0xd8,0x4a,0xc4,0x42,0x5b,0x61, - 0xca,0x57,0x7d,0xfe,0x67,0xc2,0x5f,0xc0,0x57,0xfd, - 0x6c,0xf9,0x7e,0x3c,0xfc,0xf7,0xf5,0xe0,0xbe,0xe2, - 0x24,0x81,0x32,0x5d,0x81,0x47,0x04,0xf8,0xe0,0xc2, - 0xcc,0xf4,0x4c,0xa5,0x1c,0xcf,0x92,0x09,0x84,0x62, - 0xdc,0xe6,0x8f,0x47,0xfc,0xb7,0x0b,0xff,0xfc,0x1d, - 0xd3,0x22,0xc4,0x49,0x62,0xb9,0x58,0x2a,0x14,0xe3, - 0x51,0x12,0x71,0x8e,0x44,0x9a,0x8c,0xf3,0x32,0xa5, - 0x22,0x89,0x42,0x92,0x29,0xc5,0x25,0xd2,0xff,0x64, - 0xe2,0xdf,0x2c,0xfb,0x03,0x3e,0xdf,0x35,0x00,0xb0, - 0x6a,0x3e,0x01,0x7b,0x91,0x2d,0xa8,0x5d,0x63,0x03, - 0xf6,0x4b,0x27,0x10,0x58,0x74,0xc0,0xe2,0xf7,0x00, - 0x00,0xf2,0xbb,0x6f,0xc1,0xd4,0x28,0x08,0x03,0x80, - 0x68,0x83,0xe1,0xcf,0x77,0xff,0xef,0x3f,0xfd,0x47, - 0xa0,0x25,0x00,0x80,0x66,0x49,0x92,0x71,0x00,0x00, - 0x5e,0x44,0x24,0x2e,0x54,0xca,0xb3,0x3f,0xc7,0x08, - 0x00,0x00,0x44,0xa0,0x81,0x2a,0xb0,0x41,0x1b,0xf4, - 0xc1,0x18,0x2c,0xc0,0x06,0x1c,0xc1,0x05,0xdc,0xc1, - 0x0b,0xfc,0x60,0x36,0x84,0x42,0x24,0xc4,0xc2,0x42, - 0x10,0x42,0x0a,0x64,0x80,0x1c,0x72,0x60,0x29,0xac, - 0x82,0x42,0x28,0x86,0xcd,0xb0,0x1d,0x2a,0x60,0x2f, - 0xd4,0x40,0x1d,0x34,0xc0,0x51,0x68,0x86,0x93,0x70, - 0x0e,0x2e,0xc2,0x55,0xb8,0x0e,0x3d,0x70,0x0f,0xfa, - 0x61,0x08,0x9e,0xc1,0x28,0xbc,0x81,0x09,0x04,0x41, - 0xc8,0x08,0x13,0x61,0x21,0xda,0x88,0x01,0x62,0x8a, - 0x58,0x23,0x8e,0x08,0x17,0x99,0x85,0xf8,0x21,0xc1, - 0x48,0x04,0x12,0x8b,0x24,0x20,0xc9,0x88,0x14,0x51, - 0x22,0x4b,0x91,0x35,0x48,0x31,0x52,0x8a,0x54,0x20, - 0x55,0x48,0x1d,0xf2,0x3d,0x72,0x02,0x39,0x87,0x5c, - 0x46,0xba,0x91,0x3b,0xc8,0x00,0x32,0x82,0xfc,0x86, - 0xbc,0x47,0x31,0x94,0x81,0xb2,0x51,0x3d,0xd4,0x0c, - 0xb5,0x43,0xb9,0xa8,0x37,0x1a,0x84,0x46,0xa2,0x0b, - 0xd0,0x64,0x74,0x31,0x9a,0x8f,0x16,0xa0,0x9b,0xd0, - 0x72,0xb4,0x1a,0x3d,0x8c,0x36,0xa1,0xe7,0xd0,0xab, - 0x68,0x0f,0xda,0x8f,0x3e,0x43,0xc7,0x30,0xc0,0xe8, - 0x18,0x07,0x33,0xc4,0x6c,0x30,0x2e,0xc6,0xc3,0x42, - 0xb1,0x38,0x2c,0x09,0x93,0x63,0xcb,0xb1,0x22,0xac, - 0x0c,0xab,0xc6,0x1a,0xb0,0x56,0xac,0x03,0xbb,0x89, - 0xf5,0x63,0xcf,0xb1,0x77,0x04,0x12,0x81,0x45,0xc0, - 0x09,0x36,0x04,0x77,0x42,0x20,0x61,0x1e,0x41,0x48, - 0x58,0x4c,0x58,0x4e,0xd8,0x48,0xa8,0x20,0x1c,0x24, - 0x34,0x11,0xda,0x09,0x37,0x09,0x03,0x84,0x51,0xc2, - 0x27,0x22,0x93,0xa8,0x4b,0xb4,0x26,0xba,0x11,0xf9, - 0xc4,0x18,0x62,0x32,0x31,0x87,0x58,0x48,0x2c,0x23, - 0xd6,0x12,0x8f,0x13,0x2f,0x10,0x7b,0x88,0x43,0xc4, - 0x37,0x24,0x12,0x89,0x43,0x32,0x27,0xb9,0x90,0x02, - 0x49,0xb1,0xa4,0x54,0xd2,0x12,0xd2,0x46,0xd2,0x6e, - 0x52,0x23,0xe9,0x2c,0xa9,0x9b,0x34,0x48,0x1a,0x23, - 0x93,0xc9,0xda,0x64,0x6b,0xb2,0x07,0x39,0x94,0x2c, - 0x20,0x2b,0xc8,0x85,0xe4,0x9d,0xe4,0xc3,0xe4,0x33, - 0xe4,0x1b,0xe4,0x21,0xf2,0x5b,0x0a,0x9d,0x62,0x40, - 0x71,0xa4,0xf8,0x53,0xe2,0x28,0x52,0xca,0x6a,0x4a, - 0x19,0xe5,0x10,0xe5,0x34,0xe5,0x06,0x65,0x98,0x32, - 0x41,0x55,0xa3,0x9a,0x52,0xdd,0xa8,0xa1,0x54,0x11, - 0x35,0x8f,0x5a,0x42,0xad,0xa1,0xb6,0x52,0xaf,0x51, - 0x87,0xa8,0x13,0x34,0x75,0x9a,0x39,0xcd,0x83,0x16, - 0x49,0x4b,0xa5,0xad,0xa2,0x95,0xd3,0x1a,0x68,0x17, - 0x68,0xf7,0x69,0xaf,0xe8,0x74,0xba,0x11,0xdd,0x95, - 0x1e,0x4e,0x97,0xd0,0x57,0xd2,0xcb,0xe9,0x47,0xe8, - 0x97,0xe8,0x03,0xf4,0x77,0x0c,0x0d,0x86,0x15,0x83, - 0xc7,0x88,0x67,0x28,0x19,0x9b,0x18,0x07,0x18,0x67, - 0x19,0x77,0x18,0xaf,0x98,0x4c,0xa6,0x19,0xd3,0x8b, - 0x19,0xc7,0x54,0x30,0x37,0x31,0xeb,0x98,0xe7,0x99, - 0x0f,0x99,0x6f,0x55,0x58,0x2a,0xb6,0x2a,0x7c,0x15, - 0x91,0xca,0x0a,0x95,0x4a,0x95,0x26,0x95,0x1b,0x2a, - 0x2f,0x54,0xa9,0xaa,0xa6,0xaa,0xde,0xaa,0x0b,0x55, - 0xf3,0x55,0xcb,0x54,0x8f,0xa9,0x5e,0x53,0x7d,0xae, - 0x46,0x55,0x33,0x53,0xe3,0xa9,0x09,0xd4,0x96,0xab, - 0x55,0xaa,0x9d,0x50,0xeb,0x53,0x1b,0x53,0x67,0xa9, - 0x3b,0xa8,0x87,0xaa,0x67,0xa8,0x6f,0x54,0x3f,0xa4, - 0x7e,0x59,0xfd,0x89,0x06,0x59,0xc3,0x4c,0xc3,0x4f, - 0x43,0xa4,0x51,0xa0,0xb1,0x5f,0xe3,0xbc,0xc6,0x20, - 0x0b,0x63,0x19,0xb3,0x78,0x2c,0x21,0x6b,0x0d,0xab, - 0x86,0x75,0x81,0x35,0xc4,0x26,0xb1,0xcd,0xd9,0x7c, - 0x76,0x2a,0xbb,0x98,0xfd,0x1d,0xbb,0x8b,0x3d,0xaa, - 0xa9,0xa1,0x39,0x43,0x33,0x4a,0x33,0x57,0xb3,0x52, - 0xf3,0x94,0x66,0x3f,0x07,0xe3,0x98,0x71,0xf8,0x9c, - 0x74,0x4e,0x09,0xe7,0x28,0xa7,0x97,0xf3,0x7e,0x8a, - 0xde,0x14,0xef,0x29,0xe2,0x29,0x1b,0xa6,0x34,0x4c, - 0xb9,0x31,0x65,0x5c,0x6b,0xaa,0x96,0x97,0x96,0x58, - 0xab,0x48,0xab,0x51,0xab,0x47,0xeb,0xbd,0x36,0xae, - 0xed,0xa7,0x9d,0xa6,0xbd,0x45,0xbb,0x59,0xfb,0x81, - 0x0e,0x41,0xc7,0x4a,0x27,0x5c,0x27,0x47,0x67,0x8f, - 0xce,0x05,0x9d,0xe7,0x53,0xd9,0x53,0xdd,0xa7,0x0a, - 0xa7,0x16,0x4d,0x3d,0x3a,0xf5,0xae,0x2e,0xaa,0x6b, - 0xa5,0x1b,0xa1,0xbb,0x44,0x77,0xbf,0x6e,0xa7,0xee, - 0x98,0x9e,0xbe,0x5e,0x80,0x9e,0x4c,0x6f,0xa7,0xde, - 0x79,0xbd,0xe7,0xfa,0x1c,0x7d,0x2f,0xfd,0x54,0xfd, - 0x6d,0xfa,0xa7,0xf5,0x47,0x0c,0x58,0x06,0xb3,0x0c, - 0x24,0x06,0xdb,0x0c,0xce,0x18,0x3c,0xc5,0x35,0x71, - 0x6f,0x3c,0x1d,0x2f,0xc7,0xdb,0xf1,0x51,0x43,0x5d, - 0xc3,0x40,0x43,0xa5,0x61,0x95,0x61,0x97,0xe1,0x84, - 0x91,0xb9,0xd1,0x3c,0xa3,0xd5,0x46,0x8d,0x46,0x0f, - 0x8c,0x69,0xc6,0x5c,0xe3,0x24,0xe3,0x6d,0xc6,0x6d, - 0xc6,0xa3,0x26,0x06,0x26,0x21,0x26,0x4b,0x4d,0xea, - 0x4d,0xee,0x9a,0x52,0x4d,0xb9,0xa6,0x29,0xa6,0x3b, - 0x4c,0x3b,0x4c,0xc7,0xcd,0xcc,0xcd,0xa2,0xcd,0xd6, - 0x99,0x35,0x9b,0x3d,0x31,0xd7,0x32,0xe7,0x9b,0xe7, - 0x9b,0xd7,0x9b,0xdf,0xb7,0x60,0x5a,0x78,0x5a,0x2c, - 0xb6,0xa8,0xb6,0xb8,0x65,0x49,0xb2,0xe4,0x5a,0xa6, - 0x59,0xee,0xb6,0xbc,0x6e,0x85,0x5a,0x39,0x59,0xa5, - 0x58,0x55,0x5a,0x5d,0xb3,0x46,0xad,0x9d,0xad,0x25, - 0xd6,0xbb,0xad,0xbb,0xa7,0x11,0xa7,0xb9,0x4e,0x93, - 0x4e,0xab,0x9e,0xd6,0x67,0xc3,0xb0,0xf1,0xb6,0xc9, - 0xb6,0xa9,0xb7,0x19,0xb0,0xe5,0xd8,0x06,0xdb,0xae, - 0xb6,0x6d,0xb6,0x7d,0x61,0x67,0x62,0x17,0x67,0xb7, - 0xc5,0xae,0xc3,0xee,0x93,0xbd,0x93,0x7d,0xba,0x7d, - 0x8d,0xfd,0x3d,0x07,0x0d,0x87,0xd9,0x0e,0xab,0x1d, - 0x5a,0x1d,0x7e,0x73,0xb4,0x72,0x14,0x3a,0x56,0x3a, - 0xde,0x9a,0xce,0x9c,0xee,0x3f,0x7d,0xc5,0xf4,0x96, - 0xe9,0x2f,0x67,0x58,0xcf,0x10,0xcf,0xd8,0x33,0xe3, - 0xb6,0x13,0xcb,0x29,0xc4,0x69,0x9d,0x53,0x9b,0xd3, - 0x47,0x67,0x17,0x67,0xb9,0x73,0x83,0xf3,0x88,0x8b, - 0x89,0x4b,0x82,0xcb,0x2e,0x97,0x3e,0x2e,0x9b,0x1b, - 0xc6,0xdd,0xc8,0xbd,0xe4,0x4a,0x74,0xf5,0x71,0x5d, - 0xe1,0x7a,0xd2,0xf5,0x9d,0x9b,0xb3,0x9b,0xc2,0xed, - 0xa8,0xdb,0xaf,0xee,0x36,0xee,0x69,0xee,0x87,0xdc, - 0x9f,0xcc,0x34,0x9f,0x29,0x9e,0x59,0x33,0x73,0xd0, - 0xc3,0xc8,0x43,0xe0,0x51,0xe5,0xd1,0x3f,0x0b,0x9f, - 0x95,0x30,0x6b,0xdf,0xac,0x7e,0x4f,0x43,0x4f,0x81, - 0x67,0xb5,0xe7,0x23,0x2f,0x63,0x2f,0x91,0x57,0xad, - 0xd7,0xb0,0xb7,0xa5,0x77,0xaa,0xf7,0x61,0xef,0x17, - 0x3e,0xf6,0x3e,0x72,0x9f,0xe3,0x3e,0xe3,0x3c,0x37, - 0xde,0x32,0xde,0x59,0x5f,0xcc,0x37,0xc0,0xb7,0xc8, - 0xb7,0xcb,0x4f,0xc3,0x6f,0x9e,0x5f,0x85,0xdf,0x43, - 0x7f,0x23,0xff,0x64,0xff,0x7a,0xff,0xd1,0x00,0xa7, - 0x80,0x25,0x01,0x67,0x03,0x89,0x81,0x41,0x81,0x5b, - 0x02,0xfb,0xf8,0x7a,0x7c,0x21,0xbf,0x8e,0x3f,0x3a, - 0xdb,0x65,0xf6,0xb2,0xd9,0xed,0x41,0x8c,0xa0,0xb9, - 0x41,0x15,0x41,0x8f,0x82,0xad,0x82,0xe5,0xc1,0xad, - 0x21,0x68,0xc8,0xec,0x90,0xad,0x21,0xf7,0xe7,0x98, - 0xce,0x91,0xce,0x69,0x0e,0x85,0x50,0x7e,0xe8,0xd6, - 0xd0,0x07,0x61,0xe6,0x61,0x8b,0xc3,0x7e,0x0c,0x27, - 0x85,0x87,0x85,0x57,0x86,0x3f,0x8e,0x70,0x88,0x58, - 0x1a,0xd1,0x31,0x97,0x35,0x77,0xd1,0xdc,0x43,0x73, - 0xdf,0x44,0xfa,0x44,0x96,0x44,0xde,0x9b,0x67,0x31, - 0x4f,0x39,0xaf,0x2d,0x4a,0x35,0x2a,0x3e,0xaa,0x2e, - 0x6a,0x3c,0xda,0x37,0xba,0x34,0xba,0x3f,0xc6,0x2e, - 0x66,0x59,0xcc,0xd5,0x58,0x9d,0x58,0x49,0x6c,0x4b, - 0x1c,0x39,0x2e,0x2a,0xae,0x36,0x6e,0x6c,0xbe,0xdf, - 0xfc,0xed,0xf3,0x87,0xe2,0x9d,0xe2,0x0b,0xe3,0x7b, - 0x17,0x98,0x2f,0xc8,0x5d,0x70,0x79,0xa1,0xce,0xc2, - 0xf4,0x85,0xa7,0x16,0xa9,0x2e,0x12,0x2c,0x3a,0x96, - 0x40,0x4c,0x88,0x4e,0x38,0x94,0xf0,0x41,0x10,0x2a, - 0xa8,0x16,0x8c,0x25,0xf2,0x13,0x77,0x25,0x8e,0x0a, - 0x79,0xc2,0x1d,0xc2,0x67,0x22,0x2f,0xd1,0x36,0xd1, - 0x88,0xd8,0x43,0x5c,0x2a,0x1e,0x4e,0xf2,0x48,0x2a, - 0x4d,0x7a,0x92,0xec,0x91,0xbc,0x35,0x79,0x24,0xc5, - 0x33,0xa5,0x2c,0xe5,0xb9,0x84,0x27,0xa9,0x90,0xbc, - 0x4c,0x0d,0x4c,0xdd,0x9b,0x3a,0x9e,0x16,0x9a,0x76, - 0x20,0x6d,0x32,0x3d,0x3a,0xbd,0x31,0x83,0x92,0x91, - 0x90,0x71,0x42,0xaa,0x21,0x4d,0x93,0xb6,0x67,0xea, - 0x67,0xe6,0x66,0x76,0xcb,0xac,0x65,0x85,0xb2,0xfe, - 0xc5,0x6e,0x8b,0xb7,0x2f,0x1e,0x95,0x07,0xc9,0x6b, - 0xb3,0x90,0xac,0x05,0x59,0x2d,0x0a,0xb6,0x42,0xa6, - 0xe8,0x54,0x5a,0x28,0xd7,0x2a,0x07,0xb2,0x67,0x65, - 0x57,0x66,0xbf,0xcd,0x89,0xca,0x39,0x96,0xab,0x9e, - 0x2b,0xcd,0xed,0xcc,0xb3,0xca,0xdb,0x90,0x37,0x9c, - 0xef,0x9f,0xff,0xed,0x12,0xc2,0x12,0xe1,0x92,0xb6, - 0xa5,0x86,0x4b,0x57,0x2d,0x1d,0x58,0xe6,0xbd,0xac, - 0x6a,0x39,0xb2,0x3c,0x71,0x79,0xdb,0x0a,0xe3,0x15, - 0x05,0x2b,0x86,0x56,0x06,0xac,0x3c,0xb8,0x8a,0xb6, - 0x2a,0x6d,0xd5,0x4f,0xab,0xed,0x57,0x97,0xae,0x7e, - 0xbd,0x26,0x7a,0x4d,0x6b,0x81,0x5e,0xc1,0xca,0x82, - 0xc1,0xb5,0x01,0x6b,0xeb,0x0b,0x55,0x0a,0xe5,0x85, - 0x7d,0xeb,0xdc,0xd7,0xed,0x5d,0x4f,0x58,0x2f,0x59, - 0xdf,0xb5,0x61,0xfa,0x86,0x9d,0x1b,0x3e,0x15,0x89, - 0x8a,0xae,0x14,0xdb,0x17,0x97,0x15,0x7f,0xd8,0x28, - 0xdc,0x78,0xe5,0x1b,0x87,0x6f,0xca,0xbf,0x99,0xdc, - 0x94,0xb4,0xa9,0xab,0xc4,0xb9,0x64,0xcf,0x66,0xd2, - 0x66,0xe9,0xe6,0xde,0x2d,0x9e,0x5b,0x0e,0x96,0xaa, - 0x97,0xe6,0x97,0x0e,0x6e,0x0d,0xd9,0xda,0xb4,0x0d, - 0xdf,0x56,0xb4,0xed,0xf5,0xf6,0x45,0xdb,0x2f,0x97, - 0xcd,0x28,0xdb,0xbb,0x83,0xb6,0x43,0xb9,0xa3,0xbf, - 0x3c,0xb8,0xbc,0x65,0xa7,0xc9,0xce,0xcd,0x3b,0x3f, - 0x54,0xa4,0x54,0xf4,0x54,0xfa,0x54,0x36,0xee,0xd2, - 0xdd,0xb5,0x61,0xd7,0xf8,0x6e,0xd1,0xee,0x1b,0x7b, - 0xbc,0xf6,0x34,0xec,0xd5,0xdb,0x5b,0xbc,0xf7,0xfd, - 0x3e,0xc9,0xbe,0xdb,0x55,0x01,0x55,0x4d,0xd5,0x66, - 0xd5,0x65,0xfb,0x49,0xfb,0xb3,0xf7,0x3f,0xae,0x89, - 0xaa,0xe9,0xf8,0x96,0xfb,0x6d,0x5d,0xad,0x4e,0x6d, - 0x71,0xed,0xc7,0x03,0xd2,0x03,0xfd,0x07,0x23,0x0e, - 0xb6,0xd7,0xb9,0xd4,0xd5,0x1d,0xd2,0x3d,0x54,0x52, - 0x8f,0xd6,0x2b,0xeb,0x47,0x0e,0xc7,0x1f,0xbe,0xfe, - 0x9d,0xef,0x77,0x2d,0x0d,0x36,0x0d,0x55,0x8d,0x9c, - 0xc6,0xe2,0x23,0x70,0x44,0x79,0xe4,0xe9,0xf7,0x09, - 0xdf,0xf7,0x1e,0x0d,0x3a,0xda,0x76,0x8c,0x7b,0xac, - 0xe1,0x07,0xd3,0x1f,0x76,0x1d,0x67,0x1d,0x2f,0x6a, - 0x42,0x9a,0xf2,0x9a,0x46,0x9b,0x53,0x9a,0xfb,0x5b, - 0x62,0x5b,0xba,0x4f,0xcc,0x3e,0xd1,0xd6,0xea,0xde, - 0x7a,0xfc,0x47,0xdb,0x1f,0x0f,0x9c,0x34,0x3c,0x59, - 0x79,0x4a,0xf3,0x54,0xc9,0x69,0xda,0xe9,0x82,0xd3, - 0x93,0x67,0xf2,0xcf,0x8c,0x9d,0x95,0x9d,0x7d,0x7e, - 0x2e,0xf9,0xdc,0x60,0xdb,0xa2,0xb6,0x7b,0xe7,0x63, - 0xce,0xdf,0x6a,0x0f,0x6f,0xef,0xba,0x10,0x74,0xe1, - 0xd2,0x45,0xff,0x8b,0xe7,0x3b,0xbc,0x3b,0xce,0x5c, - 0xf2,0xb8,0x74,0xf2,0xb2,0xdb,0xe5,0x13,0x57,0xb8, - 0x57,0x9a,0xaf,0x3a,0x5f,0x6d,0xea,0x74,0xea,0x3c, - 0xfe,0x93,0xd3,0x4f,0xc7,0xbb,0x9c,0xbb,0x9a,0xae, - 0xb9,0x5c,0x6b,0xb9,0xee,0x7a,0xbd,0xb5,0x7b,0x66, - 0xf7,0xe9,0x1b,0x9e,0x37,0xce,0xdd,0xf4,0xbd,0x79, - 0xf1,0x16,0xff,0xd6,0xd5,0x9e,0x39,0x3d,0xdd,0xbd, - 0xf3,0x7a,0x6f,0xf7,0xc5,0xf7,0xf5,0xdf,0x16,0xdd, - 0x7e,0x72,0x27,0xfd,0xce,0xcb,0xbb,0xd9,0x77,0x27, - 0xee,0xad,0xbc,0x4f,0xbc,0x5f,0xf4,0x40,0xed,0x41, - 0xd9,0x43,0xdd,0x87,0xd5,0x3f,0x5b,0xfe,0xdc,0xd8, - 0xef,0xdc,0x7f,0x6a,0xc0,0x77,0xa0,0xf3,0xd1,0xdc, - 0x47,0xf7,0x06,0x85,0x83,0xcf,0xfe,0x91,0xf5,0x8f, - 0x0f,0x43,0x05,0x8f,0x99,0x8f,0xcb,0x86,0x0d,0x86, - 0xeb,0x9e,0x38,0x3e,0x39,0x39,0xe2,0x3f,0x72,0xfd, - 0xe9,0xfc,0xa7,0x43,0xcf,0x64,0xcf,0x26,0x9e,0x17, - 0xfe,0xa2,0xfe,0xcb,0xae,0x17,0x16,0x2f,0x7e,0xf8, - 0xd5,0xeb,0xd7,0xce,0xd1,0x98,0xd1,0xa1,0x97,0xf2, - 0x97,0x93,0xbf,0x6d,0x7c,0xa5,0xfd,0xea,0xc0,0xeb, - 0x19,0xaf,0xdb,0xc6,0xc2,0xc6,0x1e,0xbe,0xc9,0x78, - 0x33,0x31,0x5e,0xf4,0x56,0xfb,0xed,0xc1,0x77,0xdc, - 0x77,0x1d,0xef,0xa3,0xdf,0x0f,0x4f,0xe4,0x7c,0x20, - 0x7f,0x28,0xff,0x68,0xf9,0xb1,0xf5,0x53,0xd0,0xa7, - 0xfb,0x93,0x19,0x93,0x93,0xff,0x04,0x03,0x98,0xf3, - 0xfc,0x63,0x33,0x2d,0xdb,0x00,0x00,0x00,0x04,0x67, - 0x41,0x4d,0x41,0x00,0x00,0xb1,0x8e,0x7c,0xfb,0x51, - 0x93,0x00,0x00,0x00,0x20,0x63,0x48,0x52,0x4d,0x00, - 0x00,0x7a,0x25,0x00,0x00,0x80,0x83,0x00,0x00,0xf9, - 0xff,0x00,0x00,0x80,0xe9,0x00,0x00,0x75,0x30,0x00, - 0x00,0xea,0x60,0x00,0x00,0x3a,0x98,0x00,0x00,0x17, - 0x6f,0x92,0x5f,0xc5,0x46,0x00,0x00,0x02,0xd8,0x49, - 0x44,0x41,0x54,0x78,0xda,0xec,0x99,0x5d,0x72,0xda, - 0x30,0x14,0x46,0xcf,0x87,0x6d,0x20,0x21,0xdd,0x47, - 0xbb,0x8a,0xae,0xa0,0xfb,0x7f,0xcf,0x16,0x9a,0x50, - 0x0c,0x36,0x5f,0x1f,0x24,0x61,0xe1,0xc9,0x4c,0x0c, - 0x88,0xa4,0x99,0x5a,0x33,0x77,0x6c,0xcc,0x20,0xee, - 0x91,0xee,0xaf,0x2c,0xdb,0x7c,0xe5,0xb1,0xe0,0x8b, - 0x8f,0x19,0x60,0x06,0x98,0x01,0x66,0x80,0x19,0xe0, - 0xff,0x06,0xa8,0xef,0xb0,0x20,0xb9,0x28,0xfb,0xce, - 0xc0,0x71,0x24,0xff,0x0c,0x40,0x15,0xe7,0xaa,0xe3, - 0x7d,0x92,0x31,0x40,0x9f,0x49,0x17,0xa5,0xff,0x4c, - 0x80,0x05,0xd0,0xbc,0x21,0xf5,0x68,0x17,0xf2,0xd5, - 0xef,0x80,0xc3,0x1b,0x72,0xfc,0x68,0x80,0x0a,0x58, - 0x02,0x2b,0x60,0x65,0x58,0x29,0x7c,0x4e,0x10,0xd5, - 0x1b,0x00,0x7d,0xa6,0xf0,0x1e,0x68,0xa3,0x2c,0xe2, - 0xe7,0xfe,0xa3,0x00,0xea,0xa8,0xf8,0x3a,0x89,0xc2, - 0x75,0x15,0xa5,0xc1,0xd4,0x88,0x2a,0xfb,0x4d,0x8f, - 0xe9,0x10,0x07,0x70,0x8b,0xd5,0xa2,0xd3,0x6e,0x25, - 0xd8,0x36,0xee,0xd0,0x5d,0x01,0xaa,0xa8,0xe4,0x03, - 0xf0,0x20,0xe9,0xf9,0x16,0x1b,0xb4,0xfd,0x7d,0xe4, - 0xf0,0xbe,0x64,0x27,0xea,0x2b,0x6c,0x7e,0x19,0x57, - 0xfd,0x41,0xd2,0xb3,0x6d,0xdd,0x02,0x20,0xc9,0xb6, - 0x7f,0x44,0xcd,0xad,0x60,0x6a,0xed,0x54,0x9f,0xb8, - 0x14,0xa0,0x09,0xab,0xef,0x35,0xe8,0xb1,0x60,0xf8, - 0xdd,0x30,0x28,0xdf,0x33,0x40,0x14,0x05,0xa8,0x06, - 0x00,0xad,0xa3,0x09,0x95,0x04,0xc8,0x43,0xeb,0xe4, - 0x10,0x5b,0x5f,0xe8,0x2f,0x4d,0xe6,0xbc,0xc5,0x76, - 0xc0,0xb0,0xd1,0x29,0xbc,0xfa,0x00,0xda,0xc7,0x48, - 0xd5,0x4f,0xb1,0xe9,0xa9,0xb6,0x9f,0x00,0x96,0x19, - 0x44,0x91,0xa1,0xb0,0x18,0x21,0x8a,0x59,0xcb,0x51, - 0x2e,0x29,0x06,0x50,0x65,0x31,0xbe,0x28,0x40,0x16, - 0x8e,0x57,0x88,0x06,0x9f,0xe5,0x91,0x82,0x00,0x3e, - 0xed,0x42,0xe3,0xb0,0x13,0xa5,0xc6,0x0a,0x58,0x46, - 0xc5,0x1b,0x74,0x96,0x1b,0x0a,0x02,0x88,0x05,0xb8, - 0x02,0x6a,0x95,0x2d,0x04,0x83,0xc9,0x9c,0x2b,0x3e, - 0x09,0xa0,0x9e,0x6e,0xa6,0x08,0xbc,0x00,0x25,0x88, - 0xaa,0x70,0x55,0x5c,0x65,0x4a,0x2f,0x86,0xff,0x2c, - 0xda,0x0f,0x48,0x21,0x5c,0x2b,0xde,0x17,0x0b,0x43, - 0x69,0x81,0x98,0xaa,0xf8,0xb5,0x0d,0x8d,0x41,0xce, - 0x52,0x7e,0xa9,0x30,0xe4,0x38,0x77,0x9a,0xd7,0xa5, - 0x01,0x3c,0x2a,0x89,0xfb,0x5b,0xeb,0xf8,0xd1,0xe8, - 0x86,0x39,0x9d,0xfe,0x63,0x12,0xc8,0x54,0x80,0x23, - 0xd0,0x7b,0xb8,0x76,0x97,0x56,0x8d,0xef,0x8c,0x03, - 0xd0,0x85,0x79,0xd5,0x73,0x5e,0x52,0x94,0x03,0x48, - 0xd9,0x52,0x43,0x3d,0x5f,0xca,0x09,0x5a,0x60,0xaf, - 0xa1,0x57,0xe8,0xee,0x02,0x30,0xa4,0x7a,0x5a,0x60, - 0x57,0x0e,0x40,0xbb,0x38,0x5f,0x9b,0x35,0x3c,0xc5, - 0x01,0x62,0xad,0xa2,0x7d,0x69,0x00,0xc3,0x36,0x03, - 0xd8,0x67,0xbb,0xf0,0x2e,0x40,0x7d,0xa1,0xa3,0xa5, - 0xd5,0x0f,0xd9,0xd8,0xfe,0x29,0xe9,0xa6,0x68,0x64, - 0xfb,0x17,0xf8,0x15,0x14,0x20,0x4c,0x1b,0xba,0xb6, - 0x69,0x3e,0xa6,0x0b,0x5f,0x70,0xa4,0x4e,0x6c,0x03, - 0x3c,0x19,0x9e,0x04,0xdf,0x30,0x4f,0x88,0x27,0x60, - 0x63,0xfc,0xa8,0x50,0x6e,0x2f,0x71,0xca,0xde,0xc9, - 0x04,0xbd,0x8f,0xe6,0xb2,0x05,0x5e,0x81,0x17,0xf0, - 0x0b,0xe8,0x77,0xb8,0xe7,0x25,0x3e,0xff,0x73,0x8f, - 0x7e,0x20,0x45,0x8b,0x05,0x50,0x19,0x16,0x4a,0x09, - 0x47,0x83,0x8f,0x28,0x28,0xb8,0xc2,0x34,0xc8,0x35, - 0x48,0xb1,0xd3,0xea,0x8c,0x0e,0x82,0x16,0xb3,0x43, - 0x09,0x42,0xaf,0x51,0xe9,0x6d,0x7c,0x9e,0xfc,0xe0, - 0x2e,0x2d,0xe5,0x31,0xda,0xe8,0xa0,0xfc,0xd0,0xc3, - 0x76,0xe0,0xd6,0x68,0x2d,0x58,0x86,0xba,0x46,0x55, - 0x4a,0xdf,0x59,0x14,0xdb,0x23,0x92,0xd3,0x6e,0xe3, - 0x6a,0x87,0x6b,0x78,0xbe,0xbf,0xe4,0x88,0xe5,0x9a, - 0x82,0xac,0xcf,0xb6,0x37,0x25,0xb7,0xce,0xc1,0xc1, - 0x77,0x4a,0xa7,0x12,0xa9,0xbe,0xf1,0xa9,0x30,0xe8, - 0x47,0x7e,0x94,0x02,0x41,0x2e,0xed,0xa5,0x09,0xf2, - 0xda,0x8a,0xb2,0x1b,0x9d,0xf5,0x74,0xca,0x1c,0xdc, - 0xd0,0x28,0x15,0x66,0x9a,0x74,0x2e,0xd4,0x5e,0x7b, - 0x2e,0xa4,0x1b,0xdf,0x52,0x4e,0x3f,0x99,0x33,0xc7, - 0xe8,0x2b,0x5d,0x6c,0x1b,0x8b,0x9c,0xcc,0xa9,0xd0, - 0x6b,0xd6,0x4f,0x3b,0x1b,0x55,0xe1,0xf7,0xc4,0x1f, - 0x7e,0x3a,0xad,0xf9,0x45,0xf7,0x0c,0x30,0x03,0xcc, - 0x00,0x33,0xc0,0x2d,0xe3,0xef,0x00,0x24,0x2b,0x53, - 0x56,0xac,0xd2,0x8e,0xc8,0x00,0x00,0x00,0x00,0x49, - 0x45,0x4e,0x44,0xae,0x42,0x60,0x82 -}; diff --git a/data/converted/textbox_png.cpp b/data/converted/textbox_png.cpp deleted file mode 100644 index 91444a5ee..000000000 --- a/data/converted/textbox_png.cpp +++ /dev/null @@ -1,297 +0,0 @@ -//this file was auto-generated from "textbox.png" by res2h - -#include "../Resources.h" - -const size_t textbox_png_size = 2894; -const unsigned char textbox_png_data[2894] = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x30, - 0x00,0x00,0x00,0x30,0x08,0x06,0x00,0x00,0x00,0x57, - 0x02,0xf9,0x87,0x00,0x00,0x00,0x09,0x70,0x48,0x59, - 0x73,0x00,0x00,0x0b,0x13,0x00,0x00,0x0b,0x13,0x01, - 0x00,0x9a,0x9c,0x18,0x00,0x00,0x0a,0x4f,0x69,0x43, - 0x43,0x50,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f, - 0x70,0x20,0x49,0x43,0x43,0x20,0x70,0x72,0x6f,0x66, - 0x69,0x6c,0x65,0x00,0x00,0x78,0xda,0x9d,0x53,0x67, - 0x54,0x53,0xe9,0x16,0x3d,0xf7,0xde,0xf4,0x42,0x4b, - 0x88,0x80,0x94,0x4b,0x6f,0x52,0x15,0x08,0x20,0x52, - 0x42,0x8b,0x80,0x14,0x91,0x26,0x2a,0x21,0x09,0x10, - 0x4a,0x88,0x21,0xa1,0xd9,0x15,0x51,0xc1,0x11,0x45, - 0x45,0x04,0x1b,0xc8,0xa0,0x88,0x03,0x8e,0x8e,0x80, - 0x8c,0x15,0x51,0x2c,0x0c,0x8a,0x0a,0xd8,0x07,0xe4, - 0x21,0xa2,0x8e,0x83,0xa3,0x88,0x8a,0xca,0xfb,0xe1, - 0x7b,0xa3,0x6b,0xd6,0xbc,0xf7,0xe6,0xcd,0xfe,0xb5, - 0xd7,0x3e,0xe7,0xac,0xf3,0x9d,0xb3,0xcf,0x07,0xc0, - 0x08,0x0c,0x96,0x48,0x33,0x51,0x35,0x80,0x0c,0xa9, - 0x42,0x1e,0x11,0xe0,0x83,0xc7,0xc4,0xc6,0xe1,0xe4, - 0x2e,0x40,0x81,0x0a,0x24,0x70,0x00,0x10,0x08,0xb3, - 0x64,0x21,0x73,0xfd,0x23,0x01,0x00,0xf8,0x7e,0x3c, - 0x3c,0x2b,0x22,0xc0,0x07,0xbe,0x00,0x01,0x78,0xd3, - 0x0b,0x08,0x00,0xc0,0x4d,0x9b,0xc0,0x30,0x1c,0x87, - 0xff,0x0f,0xea,0x42,0x99,0x5c,0x01,0x80,0x84,0x01, - 0xc0,0x74,0x91,0x38,0x4b,0x08,0x80,0x14,0x00,0x40, - 0x7a,0x8e,0x42,0xa6,0x00,0x40,0x46,0x01,0x80,0x9d, - 0x98,0x26,0x53,0x00,0xa0,0x04,0x00,0x60,0xcb,0x63, - 0x62,0xe3,0x00,0x50,0x2d,0x00,0x60,0x27,0x7f,0xe6, - 0xd3,0x00,0x80,0x9d,0xf8,0x99,0x7b,0x01,0x00,0x5b, - 0x94,0x21,0x15,0x01,0xa0,0x91,0x00,0x20,0x13,0x65, - 0x88,0x44,0x00,0x68,0x3b,0x00,0xac,0xcf,0x56,0x8a, - 0x45,0x00,0x58,0x30,0x00,0x14,0x66,0x4b,0xc4,0x39, - 0x00,0xd8,0x2d,0x00,0x30,0x49,0x57,0x66,0x48,0x00, - 0xb0,0xb7,0x00,0xc0,0xce,0x10,0x0b,0xb2,0x00,0x08, - 0x0c,0x00,0x30,0x51,0x88,0x85,0x29,0x00,0x04,0x7b, - 0x00,0x60,0xc8,0x23,0x23,0x78,0x00,0x84,0x99,0x00, - 0x14,0x46,0xf2,0x57,0x3c,0xf1,0x2b,0xae,0x10,0xe7, - 0x2a,0x00,0x00,0x78,0x99,0xb2,0x3c,0xb9,0x24,0x39, - 0x45,0x81,0x5b,0x08,0x2d,0x71,0x07,0x57,0x57,0x2e, - 0x1e,0x28,0xce,0x49,0x17,0x2b,0x14,0x36,0x61,0x02, - 0x61,0x9a,0x40,0x2e,0xc2,0x79,0x99,0x19,0x32,0x81, - 0x34,0x0f,0xe0,0xf3,0xcc,0x00,0x00,0xa0,0x91,0x15, - 0x11,0xe0,0x83,0xf3,0xfd,0x78,0xce,0x0e,0xae,0xce, - 0xce,0x36,0x8e,0xb6,0x0e,0x5f,0x2d,0xea,0xbf,0x06, - 0xff,0x22,0x62,0x62,0xe3,0xfe,0xe5,0xcf,0xab,0x70, - 0x40,0x00,0x00,0xe1,0x74,0x7e,0xd1,0xfe,0x2c,0x2f, - 0xb3,0x1a,0x80,0x3b,0x06,0x80,0x6d,0xfe,0xa2,0x25, - 0xee,0x04,0x68,0x5e,0x0b,0xa0,0x75,0xf7,0x8b,0x66, - 0xb2,0x0f,0x40,0xb5,0x00,0xa0,0xe9,0xda,0x57,0xf3, - 0x70,0xf8,0x7e,0x3c,0x3c,0x45,0xa1,0x90,0xb9,0xd9, - 0xd9,0xe5,0xe4,0xe4,0xd8,0x4a,0xc4,0x42,0x5b,0x61, - 0xca,0x57,0x7d,0xfe,0x67,0xc2,0x5f,0xc0,0x57,0xfd, - 0x6c,0xf9,0x7e,0x3c,0xfc,0xf7,0xf5,0xe0,0xbe,0xe2, - 0x24,0x81,0x32,0x5d,0x81,0x47,0x04,0xf8,0xe0,0xc2, - 0xcc,0xf4,0x4c,0xa5,0x1c,0xcf,0x92,0x09,0x84,0x62, - 0xdc,0xe6,0x8f,0x47,0xfc,0xb7,0x0b,0xff,0xfc,0x1d, - 0xd3,0x22,0xc4,0x49,0x62,0xb9,0x58,0x2a,0x14,0xe3, - 0x51,0x12,0x71,0x8e,0x44,0x9a,0x8c,0xf3,0x32,0xa5, - 0x22,0x89,0x42,0x92,0x29,0xc5,0x25,0xd2,0xff,0x64, - 0xe2,0xdf,0x2c,0xfb,0x03,0x3e,0xdf,0x35,0x00,0xb0, - 0x6a,0x3e,0x01,0x7b,0x91,0x2d,0xa8,0x5d,0x63,0x03, - 0xf6,0x4b,0x27,0x10,0x58,0x74,0xc0,0xe2,0xf7,0x00, - 0x00,0xf2,0xbb,0x6f,0xc1,0xd4,0x28,0x08,0x03,0x80, - 0x68,0x83,0xe1,0xcf,0x77,0xff,0xef,0x3f,0xfd,0x47, - 0xa0,0x25,0x00,0x80,0x66,0x49,0x92,0x71,0x00,0x00, - 0x5e,0x44,0x24,0x2e,0x54,0xca,0xb3,0x3f,0xc7,0x08, - 0x00,0x00,0x44,0xa0,0x81,0x2a,0xb0,0x41,0x1b,0xf4, - 0xc1,0x18,0x2c,0xc0,0x06,0x1c,0xc1,0x05,0xdc,0xc1, - 0x0b,0xfc,0x60,0x36,0x84,0x42,0x24,0xc4,0xc2,0x42, - 0x10,0x42,0x0a,0x64,0x80,0x1c,0x72,0x60,0x29,0xac, - 0x82,0x42,0x28,0x86,0xcd,0xb0,0x1d,0x2a,0x60,0x2f, - 0xd4,0x40,0x1d,0x34,0xc0,0x51,0x68,0x86,0x93,0x70, - 0x0e,0x2e,0xc2,0x55,0xb8,0x0e,0x3d,0x70,0x0f,0xfa, - 0x61,0x08,0x9e,0xc1,0x28,0xbc,0x81,0x09,0x04,0x41, - 0xc8,0x08,0x13,0x61,0x21,0xda,0x88,0x01,0x62,0x8a, - 0x58,0x23,0x8e,0x08,0x17,0x99,0x85,0xf8,0x21,0xc1, - 0x48,0x04,0x12,0x8b,0x24,0x20,0xc9,0x88,0x14,0x51, - 0x22,0x4b,0x91,0x35,0x48,0x31,0x52,0x8a,0x54,0x20, - 0x55,0x48,0x1d,0xf2,0x3d,0x72,0x02,0x39,0x87,0x5c, - 0x46,0xba,0x91,0x3b,0xc8,0x00,0x32,0x82,0xfc,0x86, - 0xbc,0x47,0x31,0x94,0x81,0xb2,0x51,0x3d,0xd4,0x0c, - 0xb5,0x43,0xb9,0xa8,0x37,0x1a,0x84,0x46,0xa2,0x0b, - 0xd0,0x64,0x74,0x31,0x9a,0x8f,0x16,0xa0,0x9b,0xd0, - 0x72,0xb4,0x1a,0x3d,0x8c,0x36,0xa1,0xe7,0xd0,0xab, - 0x68,0x0f,0xda,0x8f,0x3e,0x43,0xc7,0x30,0xc0,0xe8, - 0x18,0x07,0x33,0xc4,0x6c,0x30,0x2e,0xc6,0xc3,0x42, - 0xb1,0x38,0x2c,0x09,0x93,0x63,0xcb,0xb1,0x22,0xac, - 0x0c,0xab,0xc6,0x1a,0xb0,0x56,0xac,0x03,0xbb,0x89, - 0xf5,0x63,0xcf,0xb1,0x77,0x04,0x12,0x81,0x45,0xc0, - 0x09,0x36,0x04,0x77,0x42,0x20,0x61,0x1e,0x41,0x48, - 0x58,0x4c,0x58,0x4e,0xd8,0x48,0xa8,0x20,0x1c,0x24, - 0x34,0x11,0xda,0x09,0x37,0x09,0x03,0x84,0x51,0xc2, - 0x27,0x22,0x93,0xa8,0x4b,0xb4,0x26,0xba,0x11,0xf9, - 0xc4,0x18,0x62,0x32,0x31,0x87,0x58,0x48,0x2c,0x23, - 0xd6,0x12,0x8f,0x13,0x2f,0x10,0x7b,0x88,0x43,0xc4, - 0x37,0x24,0x12,0x89,0x43,0x32,0x27,0xb9,0x90,0x02, - 0x49,0xb1,0xa4,0x54,0xd2,0x12,0xd2,0x46,0xd2,0x6e, - 0x52,0x23,0xe9,0x2c,0xa9,0x9b,0x34,0x48,0x1a,0x23, - 0x93,0xc9,0xda,0x64,0x6b,0xb2,0x07,0x39,0x94,0x2c, - 0x20,0x2b,0xc8,0x85,0xe4,0x9d,0xe4,0xc3,0xe4,0x33, - 0xe4,0x1b,0xe4,0x21,0xf2,0x5b,0x0a,0x9d,0x62,0x40, - 0x71,0xa4,0xf8,0x53,0xe2,0x28,0x52,0xca,0x6a,0x4a, - 0x19,0xe5,0x10,0xe5,0x34,0xe5,0x06,0x65,0x98,0x32, - 0x41,0x55,0xa3,0x9a,0x52,0xdd,0xa8,0xa1,0x54,0x11, - 0x35,0x8f,0x5a,0x42,0xad,0xa1,0xb6,0x52,0xaf,0x51, - 0x87,0xa8,0x13,0x34,0x75,0x9a,0x39,0xcd,0x83,0x16, - 0x49,0x4b,0xa5,0xad,0xa2,0x95,0xd3,0x1a,0x68,0x17, - 0x68,0xf7,0x69,0xaf,0xe8,0x74,0xba,0x11,0xdd,0x95, - 0x1e,0x4e,0x97,0xd0,0x57,0xd2,0xcb,0xe9,0x47,0xe8, - 0x97,0xe8,0x03,0xf4,0x77,0x0c,0x0d,0x86,0x15,0x83, - 0xc7,0x88,0x67,0x28,0x19,0x9b,0x18,0x07,0x18,0x67, - 0x19,0x77,0x18,0xaf,0x98,0x4c,0xa6,0x19,0xd3,0x8b, - 0x19,0xc7,0x54,0x30,0x37,0x31,0xeb,0x98,0xe7,0x99, - 0x0f,0x99,0x6f,0x55,0x58,0x2a,0xb6,0x2a,0x7c,0x15, - 0x91,0xca,0x0a,0x95,0x4a,0x95,0x26,0x95,0x1b,0x2a, - 0x2f,0x54,0xa9,0xaa,0xa6,0xaa,0xde,0xaa,0x0b,0x55, - 0xf3,0x55,0xcb,0x54,0x8f,0xa9,0x5e,0x53,0x7d,0xae, - 0x46,0x55,0x33,0x53,0xe3,0xa9,0x09,0xd4,0x96,0xab, - 0x55,0xaa,0x9d,0x50,0xeb,0x53,0x1b,0x53,0x67,0xa9, - 0x3b,0xa8,0x87,0xaa,0x67,0xa8,0x6f,0x54,0x3f,0xa4, - 0x7e,0x59,0xfd,0x89,0x06,0x59,0xc3,0x4c,0xc3,0x4f, - 0x43,0xa4,0x51,0xa0,0xb1,0x5f,0xe3,0xbc,0xc6,0x20, - 0x0b,0x63,0x19,0xb3,0x78,0x2c,0x21,0x6b,0x0d,0xab, - 0x86,0x75,0x81,0x35,0xc4,0x26,0xb1,0xcd,0xd9,0x7c, - 0x76,0x2a,0xbb,0x98,0xfd,0x1d,0xbb,0x8b,0x3d,0xaa, - 0xa9,0xa1,0x39,0x43,0x33,0x4a,0x33,0x57,0xb3,0x52, - 0xf3,0x94,0x66,0x3f,0x07,0xe3,0x98,0x71,0xf8,0x9c, - 0x74,0x4e,0x09,0xe7,0x28,0xa7,0x97,0xf3,0x7e,0x8a, - 0xde,0x14,0xef,0x29,0xe2,0x29,0x1b,0xa6,0x34,0x4c, - 0xb9,0x31,0x65,0x5c,0x6b,0xaa,0x96,0x97,0x96,0x58, - 0xab,0x48,0xab,0x51,0xab,0x47,0xeb,0xbd,0x36,0xae, - 0xed,0xa7,0x9d,0xa6,0xbd,0x45,0xbb,0x59,0xfb,0x81, - 0x0e,0x41,0xc7,0x4a,0x27,0x5c,0x27,0x47,0x67,0x8f, - 0xce,0x05,0x9d,0xe7,0x53,0xd9,0x53,0xdd,0xa7,0x0a, - 0xa7,0x16,0x4d,0x3d,0x3a,0xf5,0xae,0x2e,0xaa,0x6b, - 0xa5,0x1b,0xa1,0xbb,0x44,0x77,0xbf,0x6e,0xa7,0xee, - 0x98,0x9e,0xbe,0x5e,0x80,0x9e,0x4c,0x6f,0xa7,0xde, - 0x79,0xbd,0xe7,0xfa,0x1c,0x7d,0x2f,0xfd,0x54,0xfd, - 0x6d,0xfa,0xa7,0xf5,0x47,0x0c,0x58,0x06,0xb3,0x0c, - 0x24,0x06,0xdb,0x0c,0xce,0x18,0x3c,0xc5,0x35,0x71, - 0x6f,0x3c,0x1d,0x2f,0xc7,0xdb,0xf1,0x51,0x43,0x5d, - 0xc3,0x40,0x43,0xa5,0x61,0x95,0x61,0x97,0xe1,0x84, - 0x91,0xb9,0xd1,0x3c,0xa3,0xd5,0x46,0x8d,0x46,0x0f, - 0x8c,0x69,0xc6,0x5c,0xe3,0x24,0xe3,0x6d,0xc6,0x6d, - 0xc6,0xa3,0x26,0x06,0x26,0x21,0x26,0x4b,0x4d,0xea, - 0x4d,0xee,0x9a,0x52,0x4d,0xb9,0xa6,0x29,0xa6,0x3b, - 0x4c,0x3b,0x4c,0xc7,0xcd,0xcc,0xcd,0xa2,0xcd,0xd6, - 0x99,0x35,0x9b,0x3d,0x31,0xd7,0x32,0xe7,0x9b,0xe7, - 0x9b,0xd7,0x9b,0xdf,0xb7,0x60,0x5a,0x78,0x5a,0x2c, - 0xb6,0xa8,0xb6,0xb8,0x65,0x49,0xb2,0xe4,0x5a,0xa6, - 0x59,0xee,0xb6,0xbc,0x6e,0x85,0x5a,0x39,0x59,0xa5, - 0x58,0x55,0x5a,0x5d,0xb3,0x46,0xad,0x9d,0xad,0x25, - 0xd6,0xbb,0xad,0xbb,0xa7,0x11,0xa7,0xb9,0x4e,0x93, - 0x4e,0xab,0x9e,0xd6,0x67,0xc3,0xb0,0xf1,0xb6,0xc9, - 0xb6,0xa9,0xb7,0x19,0xb0,0xe5,0xd8,0x06,0xdb,0xae, - 0xb6,0x6d,0xb6,0x7d,0x61,0x67,0x62,0x17,0x67,0xb7, - 0xc5,0xae,0xc3,0xee,0x93,0xbd,0x93,0x7d,0xba,0x7d, - 0x8d,0xfd,0x3d,0x07,0x0d,0x87,0xd9,0x0e,0xab,0x1d, - 0x5a,0x1d,0x7e,0x73,0xb4,0x72,0x14,0x3a,0x56,0x3a, - 0xde,0x9a,0xce,0x9c,0xee,0x3f,0x7d,0xc5,0xf4,0x96, - 0xe9,0x2f,0x67,0x58,0xcf,0x10,0xcf,0xd8,0x33,0xe3, - 0xb6,0x13,0xcb,0x29,0xc4,0x69,0x9d,0x53,0x9b,0xd3, - 0x47,0x67,0x17,0x67,0xb9,0x73,0x83,0xf3,0x88,0x8b, - 0x89,0x4b,0x82,0xcb,0x2e,0x97,0x3e,0x2e,0x9b,0x1b, - 0xc6,0xdd,0xc8,0xbd,0xe4,0x4a,0x74,0xf5,0x71,0x5d, - 0xe1,0x7a,0xd2,0xf5,0x9d,0x9b,0xb3,0x9b,0xc2,0xed, - 0xa8,0xdb,0xaf,0xee,0x36,0xee,0x69,0xee,0x87,0xdc, - 0x9f,0xcc,0x34,0x9f,0x29,0x9e,0x59,0x33,0x73,0xd0, - 0xc3,0xc8,0x43,0xe0,0x51,0xe5,0xd1,0x3f,0x0b,0x9f, - 0x95,0x30,0x6b,0xdf,0xac,0x7e,0x4f,0x43,0x4f,0x81, - 0x67,0xb5,0xe7,0x23,0x2f,0x63,0x2f,0x91,0x57,0xad, - 0xd7,0xb0,0xb7,0xa5,0x77,0xaa,0xf7,0x61,0xef,0x17, - 0x3e,0xf6,0x3e,0x72,0x9f,0xe3,0x3e,0xe3,0x3c,0x37, - 0xde,0x32,0xde,0x59,0x5f,0xcc,0x37,0xc0,0xb7,0xc8, - 0xb7,0xcb,0x4f,0xc3,0x6f,0x9e,0x5f,0x85,0xdf,0x43, - 0x7f,0x23,0xff,0x64,0xff,0x7a,0xff,0xd1,0x00,0xa7, - 0x80,0x25,0x01,0x67,0x03,0x89,0x81,0x41,0x81,0x5b, - 0x02,0xfb,0xf8,0x7a,0x7c,0x21,0xbf,0x8e,0x3f,0x3a, - 0xdb,0x65,0xf6,0xb2,0xd9,0xed,0x41,0x8c,0xa0,0xb9, - 0x41,0x15,0x41,0x8f,0x82,0xad,0x82,0xe5,0xc1,0xad, - 0x21,0x68,0xc8,0xec,0x90,0xad,0x21,0xf7,0xe7,0x98, - 0xce,0x91,0xce,0x69,0x0e,0x85,0x50,0x7e,0xe8,0xd6, - 0xd0,0x07,0x61,0xe6,0x61,0x8b,0xc3,0x7e,0x0c,0x27, - 0x85,0x87,0x85,0x57,0x86,0x3f,0x8e,0x70,0x88,0x58, - 0x1a,0xd1,0x31,0x97,0x35,0x77,0xd1,0xdc,0x43,0x73, - 0xdf,0x44,0xfa,0x44,0x96,0x44,0xde,0x9b,0x67,0x31, - 0x4f,0x39,0xaf,0x2d,0x4a,0x35,0x2a,0x3e,0xaa,0x2e, - 0x6a,0x3c,0xda,0x37,0xba,0x34,0xba,0x3f,0xc6,0x2e, - 0x66,0x59,0xcc,0xd5,0x58,0x9d,0x58,0x49,0x6c,0x4b, - 0x1c,0x39,0x2e,0x2a,0xae,0x36,0x6e,0x6c,0xbe,0xdf, - 0xfc,0xed,0xf3,0x87,0xe2,0x9d,0xe2,0x0b,0xe3,0x7b, - 0x17,0x98,0x2f,0xc8,0x5d,0x70,0x79,0xa1,0xce,0xc2, - 0xf4,0x85,0xa7,0x16,0xa9,0x2e,0x12,0x2c,0x3a,0x96, - 0x40,0x4c,0x88,0x4e,0x38,0x94,0xf0,0x41,0x10,0x2a, - 0xa8,0x16,0x8c,0x25,0xf2,0x13,0x77,0x25,0x8e,0x0a, - 0x79,0xc2,0x1d,0xc2,0x67,0x22,0x2f,0xd1,0x36,0xd1, - 0x88,0xd8,0x43,0x5c,0x2a,0x1e,0x4e,0xf2,0x48,0x2a, - 0x4d,0x7a,0x92,0xec,0x91,0xbc,0x35,0x79,0x24,0xc5, - 0x33,0xa5,0x2c,0xe5,0xb9,0x84,0x27,0xa9,0x90,0xbc, - 0x4c,0x0d,0x4c,0xdd,0x9b,0x3a,0x9e,0x16,0x9a,0x76, - 0x20,0x6d,0x32,0x3d,0x3a,0xbd,0x31,0x83,0x92,0x91, - 0x90,0x71,0x42,0xaa,0x21,0x4d,0x93,0xb6,0x67,0xea, - 0x67,0xe6,0x66,0x76,0xcb,0xac,0x65,0x85,0xb2,0xfe, - 0xc5,0x6e,0x8b,0xb7,0x2f,0x1e,0x95,0x07,0xc9,0x6b, - 0xb3,0x90,0xac,0x05,0x59,0x2d,0x0a,0xb6,0x42,0xa6, - 0xe8,0x54,0x5a,0x28,0xd7,0x2a,0x07,0xb2,0x67,0x65, - 0x57,0x66,0xbf,0xcd,0x89,0xca,0x39,0x96,0xab,0x9e, - 0x2b,0xcd,0xed,0xcc,0xb3,0xca,0xdb,0x90,0x37,0x9c, - 0xef,0x9f,0xff,0xed,0x12,0xc2,0x12,0xe1,0x92,0xb6, - 0xa5,0x86,0x4b,0x57,0x2d,0x1d,0x58,0xe6,0xbd,0xac, - 0x6a,0x39,0xb2,0x3c,0x71,0x79,0xdb,0x0a,0xe3,0x15, - 0x05,0x2b,0x86,0x56,0x06,0xac,0x3c,0xb8,0x8a,0xb6, - 0x2a,0x6d,0xd5,0x4f,0xab,0xed,0x57,0x97,0xae,0x7e, - 0xbd,0x26,0x7a,0x4d,0x6b,0x81,0x5e,0xc1,0xca,0x82, - 0xc1,0xb5,0x01,0x6b,0xeb,0x0b,0x55,0x0a,0xe5,0x85, - 0x7d,0xeb,0xdc,0xd7,0xed,0x5d,0x4f,0x58,0x2f,0x59, - 0xdf,0xb5,0x61,0xfa,0x86,0x9d,0x1b,0x3e,0x15,0x89, - 0x8a,0xae,0x14,0xdb,0x17,0x97,0x15,0x7f,0xd8,0x28, - 0xdc,0x78,0xe5,0x1b,0x87,0x6f,0xca,0xbf,0x99,0xdc, - 0x94,0xb4,0xa9,0xab,0xc4,0xb9,0x64,0xcf,0x66,0xd2, - 0x66,0xe9,0xe6,0xde,0x2d,0x9e,0x5b,0x0e,0x96,0xaa, - 0x97,0xe6,0x97,0x0e,0x6e,0x0d,0xd9,0xda,0xb4,0x0d, - 0xdf,0x56,0xb4,0xed,0xf5,0xf6,0x45,0xdb,0x2f,0x97, - 0xcd,0x28,0xdb,0xbb,0x83,0xb6,0x43,0xb9,0xa3,0xbf, - 0x3c,0xb8,0xbc,0x65,0xa7,0xc9,0xce,0xcd,0x3b,0x3f, - 0x54,0xa4,0x54,0xf4,0x54,0xfa,0x54,0x36,0xee,0xd2, - 0xdd,0xb5,0x61,0xd7,0xf8,0x6e,0xd1,0xee,0x1b,0x7b, - 0xbc,0xf6,0x34,0xec,0xd5,0xdb,0x5b,0xbc,0xf7,0xfd, - 0x3e,0xc9,0xbe,0xdb,0x55,0x01,0x55,0x4d,0xd5,0x66, - 0xd5,0x65,0xfb,0x49,0xfb,0xb3,0xf7,0x3f,0xae,0x89, - 0xaa,0xe9,0xf8,0x96,0xfb,0x6d,0x5d,0xad,0x4e,0x6d, - 0x71,0xed,0xc7,0x03,0xd2,0x03,0xfd,0x07,0x23,0x0e, - 0xb6,0xd7,0xb9,0xd4,0xd5,0x1d,0xd2,0x3d,0x54,0x52, - 0x8f,0xd6,0x2b,0xeb,0x47,0x0e,0xc7,0x1f,0xbe,0xfe, - 0x9d,0xef,0x77,0x2d,0x0d,0x36,0x0d,0x55,0x8d,0x9c, - 0xc6,0xe2,0x23,0x70,0x44,0x79,0xe4,0xe9,0xf7,0x09, - 0xdf,0xf7,0x1e,0x0d,0x3a,0xda,0x76,0x8c,0x7b,0xac, - 0xe1,0x07,0xd3,0x1f,0x76,0x1d,0x67,0x1d,0x2f,0x6a, - 0x42,0x9a,0xf2,0x9a,0x46,0x9b,0x53,0x9a,0xfb,0x5b, - 0x62,0x5b,0xba,0x4f,0xcc,0x3e,0xd1,0xd6,0xea,0xde, - 0x7a,0xfc,0x47,0xdb,0x1f,0x0f,0x9c,0x34,0x3c,0x59, - 0x79,0x4a,0xf3,0x54,0xc9,0x69,0xda,0xe9,0x82,0xd3, - 0x93,0x67,0xf2,0xcf,0x8c,0x9d,0x95,0x9d,0x7d,0x7e, - 0x2e,0xf9,0xdc,0x60,0xdb,0xa2,0xb6,0x7b,0xe7,0x63, - 0xce,0xdf,0x6a,0x0f,0x6f,0xef,0xba,0x10,0x74,0xe1, - 0xd2,0x45,0xff,0x8b,0xe7,0x3b,0xbc,0x3b,0xce,0x5c, - 0xf2,0xb8,0x74,0xf2,0xb2,0xdb,0xe5,0x13,0x57,0xb8, - 0x57,0x9a,0xaf,0x3a,0x5f,0x6d,0xea,0x74,0xea,0x3c, - 0xfe,0x93,0xd3,0x4f,0xc7,0xbb,0x9c,0xbb,0x9a,0xae, - 0xb9,0x5c,0x6b,0xb9,0xee,0x7a,0xbd,0xb5,0x7b,0x66, - 0xf7,0xe9,0x1b,0x9e,0x37,0xce,0xdd,0xf4,0xbd,0x79, - 0xf1,0x16,0xff,0xd6,0xd5,0x9e,0x39,0x3d,0xdd,0xbd, - 0xf3,0x7a,0x6f,0xf7,0xc5,0xf7,0xf5,0xdf,0x16,0xdd, - 0x7e,0x72,0x27,0xfd,0xce,0xcb,0xbb,0xd9,0x77,0x27, - 0xee,0xad,0xbc,0x4f,0xbc,0x5f,0xf4,0x40,0xed,0x41, - 0xd9,0x43,0xdd,0x87,0xd5,0x3f,0x5b,0xfe,0xdc,0xd8, - 0xef,0xdc,0x7f,0x6a,0xc0,0x77,0xa0,0xf3,0xd1,0xdc, - 0x47,0xf7,0x06,0x85,0x83,0xcf,0xfe,0x91,0xf5,0x8f, - 0x0f,0x43,0x05,0x8f,0x99,0x8f,0xcb,0x86,0x0d,0x86, - 0xeb,0x9e,0x38,0x3e,0x39,0x39,0xe2,0x3f,0x72,0xfd, - 0xe9,0xfc,0xa7,0x43,0xcf,0x64,0xcf,0x26,0x9e,0x17, - 0xfe,0xa2,0xfe,0xcb,0xae,0x17,0x16,0x2f,0x7e,0xf8, - 0xd5,0xeb,0xd7,0xce,0xd1,0x98,0xd1,0xa1,0x97,0xf2, - 0x97,0x93,0xbf,0x6d,0x7c,0xa5,0xfd,0xea,0xc0,0xeb, - 0x19,0xaf,0xdb,0xc6,0xc2,0xc6,0x1e,0xbe,0xc9,0x78, - 0x33,0x31,0x5e,0xf4,0x56,0xfb,0xed,0xc1,0x77,0xdc, - 0x77,0x1d,0xef,0xa3,0xdf,0x0f,0x4f,0xe4,0x7c,0x20, - 0x7f,0x28,0xff,0x68,0xf9,0xb1,0xf5,0x53,0xd0,0xa7, - 0xfb,0x93,0x19,0x93,0x93,0xff,0x04,0x03,0x98,0xf3, - 0xfc,0x63,0x33,0x2d,0xdb,0x00,0x00,0x00,0x04,0x67, - 0x41,0x4d,0x41,0x00,0x00,0xb1,0x8e,0x7c,0xfb,0x51, - 0x93,0x00,0x00,0x00,0x20,0x63,0x48,0x52,0x4d,0x00, - 0x00,0x7a,0x25,0x00,0x00,0x80,0x83,0x00,0x00,0xf9, - 0xff,0x00,0x00,0x80,0xe9,0x00,0x00,0x75,0x30,0x00, - 0x00,0xea,0x60,0x00,0x00,0x3a,0x98,0x00,0x00,0x17, - 0x6f,0x92,0x5f,0xc5,0x46,0x00,0x00,0x00,0x69,0x49, - 0x44,0x41,0x54,0x78,0xda,0xec,0xd9,0xc1,0x09,0x00, - 0x31,0x08,0x04,0xc0,0xec,0x91,0xfe,0x5b,0xde,0xeb, - 0x21,0x3e,0x42,0x60,0xb6,0x00,0x71,0x1e,0x82,0x62, - 0xda,0xae,0x97,0xf3,0xad,0xc7,0x03,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xf0,0x70,0xf6,0xb4,0x40, - 0x92,0xd1,0x3e,0xde,0x36,0xd7,0x00,0x49,0x3a,0x6d, - 0x60,0x5a,0xc3,0x0c,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x9c,0xaf,0xe3,0xd3,0xff,0xc0, - 0xed,0x83,0x26,0x1e,0x1c,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xa7,0xf9,0x01,0x00,0x00, - 0xff,0xff,0x03,0x00,0x53,0xb1,0x19,0x59,0xd2,0x78, - 0x50,0x32,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44, - 0xae,0x42,0x60,0x82 -}; diff --git a/data/resources/arrow.png b/data/resources/arrow.png deleted file mode 100644 index cfd7353f8..000000000 Binary files a/data/resources/arrow.png and /dev/null differ diff --git a/data/resources/arrow.svg b/data/resources/arrow.svg new file mode 100644 index 000000000..442f00cb0 --- /dev/null +++ b/data/resources/arrow.svg @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/data/resources/checkbox_checked.png b/data/resources/checkbox_checked.png deleted file mode 100644 index c0253c3a3..000000000 Binary files a/data/resources/checkbox_checked.png and /dev/null differ diff --git a/data/resources/checkbox_checked.svg b/data/resources/checkbox_checked.svg new file mode 100644 index 000000000..952ce80d0 --- /dev/null +++ b/data/resources/checkbox_checked.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/data/resources/checkbox_unchecked.png b/data/resources/checkbox_unchecked.png deleted file mode 100644 index 0b7cb6f66..000000000 Binary files a/data/resources/checkbox_unchecked.png and /dev/null differ diff --git a/data/resources/checkbox_unchecked.svg b/data/resources/checkbox_unchecked.svg new file mode 100644 index 000000000..a1b48e55e --- /dev/null +++ b/data/resources/checkbox_unchecked.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/data/resources/fav_add.svg b/data/resources/fav_add.svg new file mode 100644 index 000000000..94aea1560 --- /dev/null +++ b/data/resources/fav_add.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + diff --git a/data/resources/fav_remove.svg b/data/resources/fav_remove.svg new file mode 100644 index 000000000..c086952db --- /dev/null +++ b/data/resources/fav_remove.svg @@ -0,0 +1,9 @@ + + + + + + + + diff --git a/data/resources/help/a.png b/data/resources/help/a.png deleted file mode 100644 index 0cfcece38..000000000 Binary files a/data/resources/help/a.png and /dev/null differ diff --git a/data/resources/help/b.png b/data/resources/help/b.png deleted file mode 100644 index 0112405d1..000000000 Binary files a/data/resources/help/b.png and /dev/null differ diff --git a/data/resources/help/button_a.svg b/data/resources/help/button_a.svg new file mode 100644 index 000000000..6a5e44039 --- /dev/null +++ b/data/resources/help/button_a.svg @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/data/resources/help/button_b.svg b/data/resources/help/button_b.svg new file mode 100644 index 000000000..f2e80e738 --- /dev/null +++ b/data/resources/help/button_b.svg @@ -0,0 +1,18 @@ + + + + + + + + + + diff --git a/data/resources/help/button_l.svg b/data/resources/help/button_l.svg new file mode 100644 index 000000000..6f747cac4 --- /dev/null +++ b/data/resources/help/button_l.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + diff --git a/data/resources/help/button_r.svg b/data/resources/help/button_r.svg new file mode 100644 index 000000000..3049b961c --- /dev/null +++ b/data/resources/help/button_r.svg @@ -0,0 +1,16 @@ + + + + + + + + + diff --git a/data/resources/help/button_select.svg b/data/resources/help/button_select.svg new file mode 100644 index 000000000..79e1854b1 --- /dev/null +++ b/data/resources/help/button_select.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + diff --git a/data/resources/help/button_start.svg b/data/resources/help/button_start.svg new file mode 100644 index 000000000..64ca0bdbb --- /dev/null +++ b/data/resources/help/button_start.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + diff --git a/data/resources/help/button_x.svg b/data/resources/help/button_x.svg new file mode 100644 index 000000000..bf5050812 --- /dev/null +++ b/data/resources/help/button_x.svg @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/data/resources/help/button_y.svg b/data/resources/help/button_y.svg new file mode 100644 index 000000000..3956f78ca --- /dev/null +++ b/data/resources/help/button_y.svg @@ -0,0 +1,12 @@ + + + + + + + + + + diff --git a/data/resources/help/dpad_all.png b/data/resources/help/dpad_all.png deleted file mode 100644 index 3f9d937f4..000000000 Binary files a/data/resources/help/dpad_all.png and /dev/null differ diff --git a/data/resources/help/dpad_all.svg b/data/resources/help/dpad_all.svg new file mode 100644 index 000000000..84574cecb --- /dev/null +++ b/data/resources/help/dpad_all.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/resources/help/dpad_down.png b/data/resources/help/dpad_down.png deleted file mode 100644 index 6b10315e0..000000000 Binary files a/data/resources/help/dpad_down.png and /dev/null differ diff --git a/data/resources/help/dpad_down.svg b/data/resources/help/dpad_down.svg new file mode 100644 index 000000000..b8b42abac --- /dev/null +++ b/data/resources/help/dpad_down.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/resources/help/dpad_left.png b/data/resources/help/dpad_left.png deleted file mode 100644 index a4a763cde..000000000 Binary files a/data/resources/help/dpad_left.png and /dev/null differ diff --git a/data/resources/help/dpad_left.svg b/data/resources/help/dpad_left.svg new file mode 100644 index 000000000..42af785fb --- /dev/null +++ b/data/resources/help/dpad_left.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/resources/help/dpad_left_right.png b/data/resources/help/dpad_left_right.png deleted file mode 100644 index 265e70d56..000000000 Binary files a/data/resources/help/dpad_left_right.png and /dev/null differ diff --git a/data/resources/help/dpad_leftright.svg b/data/resources/help/dpad_leftright.svg new file mode 100644 index 000000000..eeea7ef6c --- /dev/null +++ b/data/resources/help/dpad_leftright.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/resources/help/dpad_right.png b/data/resources/help/dpad_right.png deleted file mode 100644 index f86e5d489..000000000 Binary files a/data/resources/help/dpad_right.png and /dev/null differ diff --git a/data/resources/help/dpad_right.svg b/data/resources/help/dpad_right.svg new file mode 100644 index 000000000..fddf6bc91 --- /dev/null +++ b/data/resources/help/dpad_right.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + diff --git a/data/resources/help/dpad_up.png b/data/resources/help/dpad_up.png deleted file mode 100644 index dcbada67a..000000000 Binary files a/data/resources/help/dpad_up.png and /dev/null differ diff --git a/data/resources/help/dpad_up.svg b/data/resources/help/dpad_up.svg new file mode 100644 index 000000000..eb9c14e9c --- /dev/null +++ b/data/resources/help/dpad_up.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/resources/help/dpad_up_down.png b/data/resources/help/dpad_up_down.png deleted file mode 100644 index 8dd624515..000000000 Binary files a/data/resources/help/dpad_up_down.png and /dev/null differ diff --git a/data/resources/help/dpad_updown.svg b/data/resources/help/dpad_updown.svg new file mode 100644 index 000000000..d132ec272 --- /dev/null +++ b/data/resources/help/dpad_updown.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/resources/help/l.png b/data/resources/help/l.png deleted file mode 100644 index d4051920a..000000000 Binary files a/data/resources/help/l.png and /dev/null differ diff --git a/data/resources/help/r.png b/data/resources/help/r.png deleted file mode 100644 index ce5429d19..000000000 Binary files a/data/resources/help/r.png and /dev/null differ diff --git a/data/resources/help/select.png b/data/resources/help/select.png deleted file mode 100644 index 8bb23ce38..000000000 Binary files a/data/resources/help/select.png and /dev/null differ diff --git a/data/resources/help/start.png b/data/resources/help/start.png deleted file mode 100644 index 7545c1e81..000000000 Binary files a/data/resources/help/start.png and /dev/null differ diff --git a/data/resources/help/x.png b/data/resources/help/x.png deleted file mode 100644 index 202562e9a..000000000 Binary files a/data/resources/help/x.png and /dev/null differ diff --git a/data/resources/help/y.png b/data/resources/help/y.png deleted file mode 100644 index db5fd2103..000000000 Binary files a/data/resources/help/y.png and /dev/null differ diff --git a/data/resources/off.svg b/data/resources/off.svg new file mode 100644 index 000000000..70490ee4a --- /dev/null +++ b/data/resources/off.svg @@ -0,0 +1,13 @@ + + + + + + + diff --git a/data/resources/on.svg b/data/resources/on.svg new file mode 100644 index 000000000..7a9f81ad5 --- /dev/null +++ b/data/resources/on.svg @@ -0,0 +1,14 @@ + + + + + + + + + diff --git a/data/resources/option_arrow.svg b/data/resources/option_arrow.svg new file mode 100644 index 000000000..36d39eb8d --- /dev/null +++ b/data/resources/option_arrow.svg @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/data/resources/sq_bracket.png b/data/resources/sq_bracket.png deleted file mode 100644 index 891f43593..000000000 Binary files a/data/resources/sq_bracket.png and /dev/null differ diff --git a/data/resources/star_filled.png b/data/resources/star_filled.png deleted file mode 100644 index e7864e0fe..000000000 Binary files a/data/resources/star_filled.png and /dev/null differ diff --git a/data/resources/star_filled.svg b/data/resources/star_filled.svg new file mode 100644 index 000000000..2dc3920e2 --- /dev/null +++ b/data/resources/star_filled.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/data/resources/star_unfilled.png b/data/resources/star_unfilled.png deleted file mode 100644 index e34197407..000000000 Binary files a/data/resources/star_unfilled.png and /dev/null differ diff --git a/data/resources/star_unfilled.svg b/data/resources/star_unfilled.svg new file mode 100644 index 000000000..bb16674e9 --- /dev/null +++ b/data/resources/star_unfilled.svg @@ -0,0 +1,19 @@ + + + + + + diff --git a/data/resources/textbox.png b/data/resources/textbox.png deleted file mode 100644 index bb0500413..000000000 Binary files a/data/resources/textbox.png and /dev/null differ diff --git a/data/resources/textbox_glow.png b/data/resources/textbox_glow.png deleted file mode 100644 index 2ec627692..000000000 Binary files a/data/resources/textbox_glow.png and /dev/null differ diff --git a/src/components/HelpComponent.cpp b/src/components/HelpComponent.cpp index 74a7ff1c8..b9e27f92e 100644 --- a/src/components/HelpComponent.cpp +++ b/src/components/HelpComponent.cpp @@ -7,13 +7,17 @@ #include static const std::map ICON_PATH_MAP = boost::assign::map_list_of - ("up/down", ":/help/dpad_up_down.png") - ("left/right", ":/help/dpad_left_right.png") - ("up/down/left/right", ":/help/dpad_all.png") - ("a", ":/help/a.png") - ("b", ":/help/b.png") - ("start", ":/help/start.png") - ("select", ":/help/select.png"); + ("up/down", ":/help/dpad_updown.svg") + ("left/right", ":/help/dpad_leftright.svg") + ("up/down/left/right", ":/help/dpad_all.svg") + ("a", ":/help/button_a.svg") + ("b", ":/help/button_b.svg") + ("x", ":/help/button_x.svg") + ("y", ":/help/button_y.svg") + ("l", ":/help/button_l.svg") + ("r", ":/help/button_r.svg") + ("start", ":/help/button_start.svg") + ("select", ":/help/button_select.svg"); HelpComponent::HelpComponent(Window* window) : GuiComponent(window) { diff --git a/src/components/OptionListComponent.h b/src/components/OptionListComponent.h index 9d5cec1c7..8fbae485f 100644 --- a/src/components/OptionListComponent.h +++ b/src/components/OptionListComponent.h @@ -54,10 +54,7 @@ private: { // add checkbox auto checkbox = std::make_shared(mWindow); - checkbox->setImage(it->selected ? ":/checkbox_checked.png" : ":/checkbox_unchecked.png"); - - if(checkbox->getTextureSize().y() > (int)FONT_SIZE_MEDIUM) // downscale if necessary to match text - checkbox->setResize(0, (float)FONT_SIZE_MEDIUM); + checkbox->setImage(it->selected ? ":/checkbox_checked.svg" : ":/checkbox_unchecked.svg"); row.addElement(checkbox, false); @@ -66,7 +63,7 @@ private: row.makeAcceptInputHandler([this, &e, checkbox] { e.selected = !e.selected; - checkbox->setImage(e.selected ? ":/checkbox_checked.png" : ":/checkbox_unchecked.png"); + checkbox->setImage(e.selected ? ":/checkbox_checked.svg" : ":/checkbox_unchecked.svg"); mParent->onSelectedChanged(); }); }else{ @@ -121,38 +118,30 @@ public: if(mMultiSelect) { - mRightArrow.setImage(":/sq_bracket.png"); + mRightArrow.setImage(":/arrow.svg"); addChild(&mRightArrow); }else{ - mLeftArrow.setImage(":/arrow.png"); + mLeftArrow.setImage(":/option_arrow.svg"); mLeftArrow.setFlipX(true); addChild(&mLeftArrow); - mRightArrow.setImage(":/arrow.png"); + mRightArrow.setImage(":/option_arrow.svg"); addChild(&mRightArrow); } - setSize(mLeftArrow.getSize().x() + mRightArrow.getSize().x(), (float)font->getHeight()); + setSize(mLeftArrow.getSize().x() + mRightArrow.getSize().x(), font->getHeight()); } // handles positioning/resizing of text and arrows void onSizeChanged() override { - // size - if(mLeftArrow.getTextureSize().y() > mSize.y()) - mLeftArrow.setResize(0, mSize.y()); - else - mLeftArrow.setResize(0, 0); - - if(mRightArrow.getTextureSize().y() > mSize.y()) - mRightArrow.setResize(0, mSize.y()); - else - mRightArrow.setResize(0, 0); + mLeftArrow.setResize(0, mSize.y() * 0.5f); + mRightArrow.setResize(0, mSize.y() * 0.5f); if(mSize.x() < (mLeftArrow.getSize().x() + mRightArrow.getSize().x())) LOG(LogWarning) << "OptionListComponent too narrow!"; - mText.setSize(mSize.x() - mLeftArrow.getSize().x() - mRightArrow.getSize().x(), (float)mText.getFont()->getHeight()); + mText.setSize(mSize.x() - mLeftArrow.getSize().x() - mRightArrow.getSize().x(), mText.getFont()->getHeight()); // position mLeftArrow.setPosition(0, (mSize.y() - mLeftArrow.getSize().y()) / 2); diff --git a/src/components/SwitchComponent.cpp b/src/components/SwitchComponent.cpp index 15e3a7221..ed47a5757 100644 --- a/src/components/SwitchComponent.cpp +++ b/src/components/SwitchComponent.cpp @@ -5,12 +5,10 @@ SwitchComponent::SwitchComponent(Window* window, bool state) : GuiComponent(window), mImage(window), mState(state) { - mImage.setImage(":/checkbox_unchecked.png"); + mImage.setImage(":/checkbox_unchecked.svg"); float height = (float)FONT_SIZE_MEDIUM; - if(mImage.getTextureSize().y() > height) - mImage.setResize(0, height); - + mImage.setResize(0, height); mSize = mImage.getSize(); } @@ -48,7 +46,7 @@ void SwitchComponent::setState(bool state) void SwitchComponent::onStateChanged() { - mImage.setImage(mState ? ":/checkbox_checked.png" : ":/checkbox_unchecked.png"); + mImage.setImage(mState ? ":/checkbox_checked.svg" : ":/checkbox_unchecked.svg"); } std::vector SwitchComponent::getHelpPrompts() diff --git a/src/components/TextComponent.cpp b/src/components/TextComponent.cpp index b2ca17845..08586f7e1 100644 --- a/src/components/TextComponent.cpp +++ b/src/components/TextComponent.cpp @@ -64,12 +64,12 @@ void TextComponent::setText(const std::string& text) void TextComponent::render(const Eigen::Affine3f& parentTrans) { - Eigen::Affine3f trans = roundMatrix(parentTrans * getTransform()); + Eigen::Affine3f trans = parentTrans * getTransform(); Eigen::Vector3f dim(mSize.x(), mSize.y(), 0); dim = trans * dim - trans.translation(); - Renderer::pushClipRect(Eigen::Vector2i((int)trans.translation().x(), (int)trans.translation().y()), - Eigen::Vector2i((int)(dim.x() + 0.5f), (int)(dim.y() + 0.5f))); + //Renderer::pushClipRect(Eigen::Vector2i((int)trans.translation().x(), (int)trans.translation().y()), + // Eigen::Vector2i((int)(dim.x() + 0.5f), (int)(dim.y() + 0.5f))); if(mTextCache) { @@ -79,6 +79,7 @@ void TextComponent::render(const Eigen::Affine3f& parentTrans) switch(mAlignment) { case ALIGN_LEFT: + off << 0, (getSize().y() - textSize.y()) / 2, 0; break; case ALIGN_CENTER: @@ -86,21 +87,17 @@ void TextComponent::render(const Eigen::Affine3f& parentTrans) break; case ALIGN_RIGHT: - off << (getSize().x() - textSize.x()), 0, 0; + off << (getSize().x() - textSize.x()), (getSize().y() - textSize.y()) / 2, 0; break; } - off = roundVector(off); trans.translate(off); + trans = roundMatrix(trans); Renderer::setMatrix(trans); - trans.translate(-off); - mFont->renderTextCache(mTextCache.get()); } - Renderer::popClipRect(); - - GuiComponent::renderChildren(trans); + //Renderer::popClipRect(); } void TextComponent::calculateExtent() diff --git a/src/guis/GuiInputConfig.cpp b/src/guis/GuiInputConfig.cpp index 0b78a7ade..0c1ab47e4 100644 --- a/src/guis/GuiInputConfig.cpp +++ b/src/guis/GuiInputConfig.cpp @@ -10,8 +10,9 @@ static const int inputCount = 10; static const char* inputName[inputCount] = { "Up", "Down", "Left", "Right", "A", "B", "Start", "Select", "PageUp", "PageDown"}; static const char* inputDispName[inputCount] = { "Up", "Down", "Left", "Right", "A", "B", "Start", "Select", "Page Up", "Page Down"}; -static const char* inputIcon[inputCount] = { ":/help/dpad_up.png", ":/help/dpad_down.png", ":/help/dpad_left.png", ":/help/dpad_right.png", - ":/help/a.png", ":/help/b.png", ":/help/start.png", ":/help/select.png", ":/help/l.png", ":/help/r.png" }; +static const char* inputIcon[inputCount] = { ":/help/dpad_up.svg", ":/help/dpad_down.svg", ":/help/dpad_left.svg", ":/help/dpad_right.svg", + ":/help/button_a.svg", ":/help/button_b.svg", ":/help/button_start.svg", ":/help/button_select.svg", + ":/help/button_l.svg", ":/help/button_r.svg" }; //MasterVolUp and MasterVolDown are also hooked up, but do not appear on this screen. //If you want, you can manually add them to es_input.cfg. diff --git a/src/guis/GuiMenu.cpp b/src/guis/GuiMenu.cpp index 9491a1162..bab8438fb 100644 --- a/src/guis/GuiMenu.cpp +++ b/src/guis/GuiMenu.cpp @@ -20,12 +20,11 @@ std::shared_ptr makeBracket(Window* window) { auto bracket = std::make_shared(window); - bracket->setImage(":/sq_bracket.png"); + bracket->setImage(":/arrow.svg"); // resize - const float fontHeight = (float)Font::get(FONT_SIZE_MEDIUM)->getHeight(); - if(bracket->getTextureSize().y() > fontHeight) - bracket->setResize(0, fontHeight); + const float fontHeight = Font::get(FONT_SIZE_MEDIUM)->getHeight(); + bracket->setResize(0, round(fontHeight * 0.5f)); return bracket; } diff --git a/src/guis/GuiMetaDataEd.cpp b/src/guis/GuiMetaDataEd.cpp index 47f9f1b4f..9afc6d4cf 100644 --- a/src/guis/GuiMetaDataEd.cpp +++ b/src/guis/GuiMetaDataEd.cpp @@ -67,7 +67,7 @@ GuiMetaDataEd::GuiMetaDataEd(Window* window, MetaDataList* md, const std::vector row.addElement(ed, true); auto bracket = std::make_shared(mWindow); - bracket->setImage(":/sq_bracket.png"); + bracket->setImage(":/arrow.svg"); bracket->setResize(Eigen::Vector2f(0, lbl->getSize().y() * 0.8f)); row.addElement(bracket, false); diff --git a/src/resources/TextureResource.cpp b/src/resources/TextureResource.cpp index 98d3174c8..b49c33cc2 100644 --- a/src/resources/TextureResource.cpp +++ b/src/resources/TextureResource.cpp @@ -123,7 +123,11 @@ std::shared_ptr TextureResource::get(const std::string& path, b if(path.substr(path.size() - 4, std::string::npos) == ".svg") { // probably + // don't add it to our map because 2 svgs might be rasterized at different sizes tex = std::shared_ptr(new SVGResource(path, tile)); + rm->addReloadable(tex); + tex->reload(rm); + return tex; }else{ tex = std::shared_ptr(new TextureResource(path, tile)); }