improve scrollbar

This commit is contained in:
lixianjing 2023-04-27 18:09:03 +08:00
parent 628f273752
commit 1d354d8e8f
63 changed files with 3489 additions and 3282 deletions

View File

@ -987,6 +987,31 @@ static ret_t on_click_clone_combo_box_ex(void* ctx, event_t* e) {
return RET_OK;
}
static ret_t on_click_scroll(void* ctx, event_t* e) {
const char* name = (const char*)ctx;
widget_t* scroll_bar = widget_lookup(window_manager(), "scroll_bar", TRUE);
widget_t* scroll_view = widget_lookup(window_manager(), "scroll_view", TRUE);
return_value_if_fail(name != NULL && scroll_bar != NULL && scroll_view != NULL, RET_BAD_PARAMS);
if (tk_str_eq(name, "bar_top")) {
widget_set_prop_int(scroll_bar, WIDGET_PROP_VALUE, 0);
} else if (tk_str_eq(name, "view_top")) {
widget_set_prop_int(scroll_view, WIDGET_PROP_YOFFSET, 0);
} else if (tk_str_eq(name, "bar_bot")) {
int32_t max = widget_get_prop_int(scroll_bar, WIDGET_PROP_MAX, 0);
widget_set_prop_int(scroll_bar, WIDGET_PROP_VALUE, max);
} else if (tk_str_eq(name, "view_bot")) {
int32_t h = widget_get_prop_int(scroll_view, WIDGET_PROP_H, 0);
int32_t vh = widget_get_prop_int(scroll_view, WIDGET_PROP_VIRTUAL_H, 0);
widget_set_prop_int(scroll_view, WIDGET_PROP_YOFFSET, vh - h);
} else if (tk_str_eq(name, "item1") || tk_str_eq(name, "item2")) {
widget_t* item = widget_lookup(window_manager(), name, TRUE);
widget_ensure_visible_in_viewport(item);
}
return RET_OK;
}
static ret_t install_one(void* ctx, const void* iter) {
widget_t* widget = WIDGET(iter);
widget_t* win = widget_get_window(widget);
@ -1107,6 +1132,8 @@ static ret_t install_one(void* ctx, const void* iter) {
widget_on(widget, EVT_CLICK, on_click_clone_combo_box_ex, win);
} else if (strstr(name, "combo_box_ex_for_clone") == name) {
combo_box_set_on_item_click(widget, on_combo_box_ex_item_click, win);
} else if (strstr(name, "scroll:") == name) {
widget_on(widget, EVT_CLICK, on_click_scroll, (void*)(name + strlen("scroll:")));
}
} else if (tk_str_eq(widget->vt->type, "combo_box")) {
widget_on(widget, EVT_VALUE_CHANGED, on_combo_box_changed, widget);

View File

@ -14,6 +14,7 @@
<button name="open:accordion1" text="Accordion"/>
<button name="open:accordion2" text="Accordion Exclusive"/>
<button name="open:list_view_animate" text="Animate"/>
<button name="open:list_view_sync" text="Sync Scrolling"/>
<button name="close" text="Close"/>
</scroll_view>
<scroll_bar_d name="bar" x="right" y="0" w="12" h="100%" animator_time="0" value="0"/>

View File

@ -0,0 +1,25 @@
<window anim_hint="htranslate" text="Sync Scrolling">
<list_view x="0" y="0" w="100%" h="50%" default_item_height="60">
<scroll_view name="scroll_view" x="0" y="0" w="-10" h="100%">
<list_item style="odd_clickable" w="100%" text="item"/>
<list_item style="even_clickable" name="item1" w="100%" text="item1"/>
<list_item style="odd_clickable" w="100%" text="item"/>
<list_item style="even_clickable" w="100%" text="item"/>
<list_item style="odd_clickable" w="100%" text="item"/>
<list_item style="even_clickable" w="100%" text="item"/>
<list_item style="odd_clickable" w="100%" text="item"/>
<list_item style="even_clickable" name="item2" w="100%" text="item2"/>
<list_item style="odd_clickable" w="100%" text="item"/>
</scroll_view>
<scroll_bar_d name="scroll_bar" x="r" y="0" w="10" h="100%"/>
</list_view>
<view x="0" y="b" w="100%" h="50%" children_layout="default(c=2,r=4,m=5,s=5)">
<button name="scroll:item1" text="ensure item1 visiable"/>
<button name="scroll:item2" text="ensure item2 visiable"/>
<button name="scroll:view_top" text="scroll view to top"/>
<button name="scroll:view_bot" text="scroll view to bottom"/>
<button name="scroll:bar_top" text="scroll bar to top"/>
<button name="scroll:bar_bot" text="scroll bar to bottom"/>
</view>
<button name="close" x="center" y="bottom:5" w="50%" h="30" text="close"/>
</window>

View File

@ -1,5 +1,8 @@
# 最新动态
2023/04/27
* 修复scroll\_bar滑块位置没有正确更新(感谢煜楷提供补丁)
2023/04/26
* 修复object\_date\_time\_test.cc中的错误(感谢[szsam](https://github.com/szsam)提供补丁)
* 修复tools/common/utils.c中没有检查空指针的问题(感谢[szsam](https://github.com/szsam)提供补丁)

View File

@ -104,6 +104,7 @@ extern TK_CONST_DATA_ALIGN(const unsigned char ui_main_fscript[]);
extern TK_CONST_DATA_ALIGN(const unsigned char ui_mutable_image[]);
extern TK_CONST_DATA_ALIGN(const unsigned char ui_calibration_win[]);
extern TK_CONST_DATA_ALIGN(const unsigned char ui_memtest[]);
extern TK_CONST_DATA_ALIGN(const unsigned char ui_list_view_sync[]);
extern TK_CONST_DATA_ALIGN(const unsigned char ui_slide_view_h2[]);
extern TK_CONST_DATA_ALIGN(const unsigned char ui_slide_view_h3[]);
extern TK_CONST_DATA_ALIGN(const unsigned char ui_folder_chooser[]);
@ -1019,6 +1020,7 @@ ret_t assets_init_dark(void) {
assets_manager_add(am, ui_mutable_image);
assets_manager_add(am, ui_calibration_win);
assets_manager_add(am, ui_memtest);
assets_manager_add(am, ui_list_view_sync);
assets_manager_add(am, ui_slide_view_h2);
assets_manager_add(am, ui_slide_view_h3);
assets_manager_add(am, ui_folder_chooser);

View File

@ -104,6 +104,7 @@
#include "default/inc/ui/mutable_image.data"
#include "default/inc/ui/calibration_win.data"
#include "default/inc/ui/memtest.data"
#include "default/inc/ui/list_view_sync.data"
#include "default/inc/ui/slide_view_h2.data"
#include "default/inc/ui/slide_view_h3.data"
#include "default/inc/ui/folder_chooser.data"
@ -1019,6 +1020,7 @@ ret_t assets_init_default(void) {
assets_manager_add(am, ui_mutable_image);
assets_manager_add(am, ui_calibration_win);
assets_manager_add(am, ui_memtest);
assets_manager_add(am, ui_list_view_sync);
assets_manager_add(am, ui_slide_view_h2);
assets_manager_add(am, ui_slide_view_h3);
assets_manager_add(am, ui_folder_chooser);

View File

@ -99,6 +99,7 @@ extern TK_CONST_DATA_ALIGN(const unsigned char ui_main_fscript[]);
extern TK_CONST_DATA_ALIGN(const unsigned char ui_mutable_image[]);
extern TK_CONST_DATA_ALIGN(const unsigned char ui_calibration_win[]);
extern TK_CONST_DATA_ALIGN(const unsigned char ui_memtest[]);
extern TK_CONST_DATA_ALIGN(const unsigned char ui_list_view_sync[]);
extern TK_CONST_DATA_ALIGN(const unsigned char ui_slide_view_h2[]);
extern TK_CONST_DATA_ALIGN(const unsigned char ui_slide_view_h3[]);
extern TK_CONST_DATA_ALIGN(const unsigned char ui_folder_chooser[]);
@ -635,6 +636,7 @@ ret_t assets_init_dark(void) {
assets_manager_add(am, ui_mutable_image);
assets_manager_add(am, ui_calibration_win);
assets_manager_add(am, ui_memtest);
assets_manager_add(am, ui_list_view_sync);
assets_manager_add(am, ui_slide_view_h2);
assets_manager_add(am, ui_slide_view_h3);
assets_manager_add(am, ui_folder_chooser);

View File

@ -99,6 +99,7 @@
#include "default/inc/ui/mutable_image.data"
#include "default/inc/ui/calibration_win.data"
#include "default/inc/ui/memtest.data"
#include "default/inc/ui/list_view_sync.data"
#include "default/inc/ui/slide_view_h2.data"
#include "default/inc/ui/slide_view_h3.data"
#include "default/inc/ui/folder_chooser.data"
@ -635,6 +636,7 @@ ret_t assets_init_default(void) {
assets_manager_add(am, ui_mutable_image);
assets_manager_add(am, ui_calibration_win);
assets_manager_add(am, ui_memtest);
assets_manager_add(am, ui_list_view_sync);
assets_manager_add(am, ui_slide_view_h2);
assets_manager_add(am, ui_slide_view_h3);
assets_manager_add(am, ui_folder_chooser);

View File

@ -2,29 +2,29 @@ TK_CONST_DATA_ALIGN(const unsigned char image_computer_dark[]) = {
0x02,0x00,0x05,0x01,0x10,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x15,0x11,0x18,0x20,0x02,0x00,0x00,0x00,0xc8,0x00,0x00,0x00,0xc8,0x00,0x00,0x00,
0x02,0x01,0x00,0x00,0x00,0x00,0x48,0x3e,0xcc,0xcc,0xcc,0xff,0x01,0x02,0x10,0x03,0xbc,0xfb,0x33,0x43,
0x01,0x00,0x70,0x41,0x02,0xae,0xe5,0xbc,0x22,0x22,0xa0,0x41,0x01,0x00,0x70,0x41,0x03,0x46,0xa0,0xab,
0x02,0x01,0x00,0x00,0x00,0x00,0x48,0x3e,0xcc,0xcc,0xcc,0xff,0x01,0x42,0xb1,0x0c,0xbc,0xfb,0x33,0x43,
0x01,0x00,0x70,0x41,0x02,0x6e,0x44,0xb3,0x22,0x22,0xa0,0x41,0x01,0x00,0x70,0x41,0x03,0x59,0xf0,0xea,
0xb4,0x6e,0x4a,0x41,0x82,0x52,0x70,0x41,0x5d,0xfa,0xd5,0x40,0x04,0xe2,0xa7,0x41,0x54,0x55,0xd5,0x40,
0xcc,0xcc,0xe2,0x41,0x02,0xae,0xe5,0xbc,0x54,0x55,0xd5,0x40,0x11,0x51,0x0a,0x43,0x03,0x46,0xa0,0xab,
0xcc,0xcc,0xe2,0x41,0x02,0x6e,0x44,0xb3,0x54,0x55,0xd5,0x40,0x11,0x51,0x0a,0x43,0x03,0x59,0xf0,0xea,
0x5e,0xfa,0xd5,0x40,0x6a,0xae,0x11,0x43,0xb4,0x6e,0x4a,0x41,0x82,0xa5,0x17,0x43,0x22,0x22,0xa0,0x41,
0xab,0xaa,0x17,0x43,0x02,0xae,0xe5,0xbc,0x5e,0x8f,0x62,0x42,0xab,0xaa,0x17,0x43,0x03,0x46,0xa0,0xab,
0xab,0xaa,0x17,0x43,0x02,0x6e,0x44,0xb3,0x5e,0x8f,0x62,0x42,0xab,0xaa,0x17,0x43,0x03,0x59,0xf0,0xea,
0x57,0x55,0x7a,0x42,0xab,0xaa,0x17,0x43,0x04,0x1d,0x83,0x42,0x4e,0xdb,0x1e,0x43,0xfe,0x62,0x75,0x42,
0xa7,0x0d,0x23,0x43,0x02,0xae,0xe5,0xbc,0xd2,0x69,0x45,0x42,0x8f,0x02,0x2f,0x43,0x03,0x46,0xa0,0xab,
0xa7,0x0d,0x23,0x43,0x02,0x6e,0x44,0xb3,0xd2,0x69,0x45,0x42,0x8f,0x02,0x2f,0x43,0x03,0x59,0xf0,0xea,
0x35,0x33,0x3b,0x42,0x0e,0x74,0x33,0x43,0xd6,0x06,0x48,0x42,0x00,0x00,0x39,0x43,0x8b,0x88,0x5c,0x42,
0x00,0x00,0x39,0x43,0x02,0xae,0xe5,0xbc,0x6e,0x60,0x12,0x43,0x00,0x00,0x39,0x43,0x03,0x46,0xa0,0xab,
0x00,0x00,0x39,0x43,0x02,0x6e,0x44,0xb3,0x6e,0x60,0x12,0x43,0x00,0x00,0x39,0x43,0x03,0x59,0xf0,0xea,
0xdb,0x80,0x17,0x43,0x00,0x00,0x39,0x43,0xc4,0xb5,0x1a,0x43,0xe8,0x74,0x33,0x43,0x1d,0x28,0x18,0x43,
0x6a,0x03,0x2f,0x43,0x02,0xae,0xe5,0xbc,0xd1,0x29,0x0c,0x43,0x82,0x0e,0x23,0x43,0x03,0x46,0xa0,0xab,
0x6a,0x03,0x2f,0x43,0x02,0x6e,0x44,0xb3,0xd1,0x29,0x0c,0x43,0x82,0x0e,0x23,0x43,0x03,0x59,0xf0,0xea,
0x0f,0xf4,0x07,0x43,0x29,0xdc,0x1e,0x43,0x3b,0xed,0x0a,0x43,0x85,0xab,0x17,0x43,0xba,0xde,0x10,0x43,
0x85,0xab,0x17,0x43,0x02,0xae,0xe5,0xbc,0xbd,0xfb,0x33,0x43,0x85,0xab,0x17,0x43,0x03,0x46,0xa0,0xab,
0x85,0xab,0x17,0x43,0x02,0x6e,0x44,0xb3,0xbd,0xfb,0x33,0x43,0x85,0xab,0x17,0x43,0x03,0x59,0xf0,0xea,
0x16,0x59,0x3b,0x43,0x5c,0xa6,0x17,0x43,0x2d,0x50,0x41,0x43,0x44,0xaf,0x11,0x43,0x55,0x55,0x41,0x43,
0xec,0x51,0x0a,0x43,0x02,0xae,0xe5,0xbc,0x55,0x55,0x41,0x43,0xcc,0xcc,0xe2,0x41,0x03,0x46,0xa0,0xab,
0xec,0x51,0x0a,0x43,0x02,0x6e,0x44,0xb3,0x55,0x55,0x41,0x43,0xcc,0xcc,0xe2,0x41,0x03,0x59,0xf0,0xea,
0x2d,0x50,0x41,0x43,0x04,0xe2,0xa7,0x41,0x15,0x59,0x3b,0x43,0x82,0x52,0x70,0x41,0xbc,0xfb,0x33,0x43,
0x01,0x00,0x70,0x41,0x04,0x00,0x00,0x00,0x01,0x02,0x10,0x03,0xdd,0x1d,0x22,0x43,0xc6,0x12,0xfa,0x42,
0x02,0xae,0xe5,0xbc,0xcb,0xcc,0x0d,0x42,0xc6,0x12,0xfa,0x42,0x03,0x46,0xa0,0xab,0x41,0x44,0xfe,0x41,
0x01,0x00,0x70,0x41,0x04,0x00,0x00,0x00,0x01,0x42,0xb1,0x0c,0xdd,0x1d,0x22,0x43,0xc6,0x12,0xfa,0x42,
0x02,0x6e,0x44,0xb3,0xcb,0xcc,0x0d,0x42,0xc6,0x12,0xfa,0x42,0x03,0x59,0xf0,0xea,0x41,0x44,0xfe,0x41,
0xc6,0x12,0xfa,0x42,0x41,0x44,0xe6,0x41,0xc7,0x12,0xf4,0x42,0x41,0x44,0xe6,0x41,0x72,0xbd,0xec,0x42,
0x03,0x46,0xa0,0xab,0x41,0x44,0xe6,0x41,0x1d,0x68,0xe5,0x42,0x41,0x44,0xfe,0x41,0x1d,0x68,0xdf,0x42,
0xcb,0xcc,0x0d,0x42,0x1d,0x68,0xdf,0x42,0x02,0xae,0xe5,0xbc,0xdd,0x1d,0x22,0x43,0x1d,0x68,0xdf,0x42,
0x03,0x46,0xa0,0xab,0x88,0xc8,0x25,0x43,0x1d,0x68,0xdf,0x42,0x88,0xc8,0x28,0x43,0x1d,0x68,0xe5,0x42,
0x88,0xc8,0x28,0x43,0x72,0xbd,0xec,0x42,0x03,0x46,0xa0,0xab,0x88,0xc8,0x28,0x43,0xc7,0x12,0xf4,0x42,
0x03,0x59,0xf0,0xea,0x41,0x44,0xe6,0x41,0x1d,0x68,0xe5,0x42,0x41,0x44,0xfe,0x41,0x1d,0x68,0xdf,0x42,
0xcb,0xcc,0x0d,0x42,0x1d,0x68,0xdf,0x42,0x02,0x6e,0x44,0xb3,0xdd,0x1d,0x22,0x43,0x1d,0x68,0xdf,0x42,
0x03,0x59,0xf0,0xea,0x88,0xc8,0x25,0x43,0x1d,0x68,0xdf,0x42,0x88,0xc8,0x28,0x43,0x1d,0x68,0xe5,0x42,
0x88,0xc8,0x28,0x43,0x72,0xbd,0xec,0x42,0x03,0x59,0xf0,0xea,0x88,0xc8,0x28,0x43,0xc7,0x12,0xf4,0x42,
0x89,0xc8,0x25,0x43,0xc6,0x12,0xfa,0x42,0xdd,0x1d,0x22,0x43,0xc6,0x12,0xfa,0x42,0x04,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,};/*576*/

View File

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

View File

@ -2,45 +2,45 @@ TK_CONST_DATA_ALIGN(const unsigned char image_china[]) = {
0x02,0x00,0x05,0x01,0x4c,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x63,0x68,0x69,0x6e,0x61,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x15,0x11,0x18,0x20,0x02,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x00,0x00,
0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x3d,0xde,0x29,0x10,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x80,0x41,
0x00,0x00,0x80,0x41,0x01,0x92,0xf5,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x41,0x03,0x6d,0x00,0x09,
0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x3d,0xde,0x29,0x10,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x80,0x41,
0x00,0x00,0x80,0x41,0x01,0xd2,0x21,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x41,0x03,0xa1,0x00,0xbe,
0x37,0x25,0x06,0xb5,0xe1,0xba,0xad,0x41,0x58,0x2c,0x43,0x40,0x7b,0xfc,0xd7,0x41,0xfe,0xff,0xff,0x40,
0xec,0xd9,0xee,0x41,0x03,0x6d,0x00,0x09,0xe8,0x34,0x4f,0x41,0xae,0xdb,0x02,0x42,0x8b,0x65,0x98,0x41,
0xae,0xdb,0x02,0x42,0x00,0x00,0xc0,0x41,0xec,0xd9,0xee,0x41,0x03,0x6d,0x00,0x09,0x75,0x9a,0xe7,0x41,
0xec,0xd9,0xee,0x41,0x03,0xa1,0x00,0xbe,0xe8,0x34,0x4f,0x41,0xae,0xdb,0x02,0x42,0x8b,0x65,0x98,0x41,
0xae,0xdb,0x02,0x42,0x00,0x00,0xc0,0x41,0xec,0xd9,0xee,0x41,0x03,0xa1,0x00,0xbe,0x75,0x9a,0xe7,0x41,
0x7c,0xfc,0xd7,0x41,0x00,0x00,0x00,0x42,0xe1,0xba,0xad,0x41,0x00,0x00,0x00,0x42,0x00,0x00,0x80,0x41,
0x03,0x6d,0x00,0x09,0x00,0x00,0x00,0x42,0xf0,0x3a,0xe5,0x40,0x45,0xb1,0xc6,0x41,0x9c,0x15,0x33,0x35,
0x01,0x00,0x80,0x41,0x00,0x00,0x00,0x00,0x03,0x6d,0x00,0x09,0xf4,0x3a,0xe5,0x40,0x9c,0x15,0x33,0xb5,
0x03,0xa1,0x00,0xbe,0x00,0x00,0x00,0x42,0xf0,0x3a,0xe5,0x40,0x45,0xb1,0xc6,0x41,0x9c,0x15,0x33,0x35,
0x01,0x00,0x80,0x41,0x00,0x00,0x00,0x00,0x03,0xa1,0x00,0xbe,0xf4,0x3a,0xe5,0x40,0x9c,0x15,0x33,0xb5,
0x9c,0x15,0xb3,0x35,0xea,0x3a,0xe5,0x40,0x00,0x00,0x00,0x00,0xfd,0xff,0x7f,0x41,0x04,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x3d,0xff,0xde,0x00,0xff,0x01,0x92,0xf5,0x04,
0x44,0x44,0x04,0x41,0x55,0x55,0x95,0x40,0x02,0x1e,0x00,0xbb,0x77,0x77,0x17,0x41,0x66,0x66,0xe6,0x40,
0x02,0x1e,0x00,0xbb,0x44,0x44,0x44,0x41,0x77,0x77,0xf7,0x40,0x02,0x1e,0x00,0xbb,0x44,0x44,0x24,0x41,
0x99,0x99,0x19,0x41,0x02,0x1e,0x00,0xbb,0xcd,0xcc,0x2c,0x41,0x88,0x88,0x48,0x41,0x02,0x1e,0x00,0xbb,
0x44,0x44,0x04,0x41,0x33,0x33,0x33,0x41,0x02,0x1e,0x00,0xbb,0x77,0x77,0xb7,0x40,0x88,0x88,0x48,0x41,
0x02,0x1e,0x00,0xbb,0x44,0x44,0xc4,0x40,0x99,0x99,0x19,0x41,0x02,0x1e,0x00,0xbb,0x44,0x44,0x84,0x40,
0x76,0x77,0xf7,0x40,0x02,0x1e,0x00,0xbb,0xde,0xdd,0xdd,0x40,0x65,0x66,0xe6,0x40,0x04,0x00,0x00,0x00,
0x01,0x92,0xf5,0x04,0x00,0x00,0x90,0x41,0xcd,0xcc,0xcc,0x3f,0x02,0x1e,0x00,0xbb,0x11,0x11,0x91,0x41,
0xaa,0xaa,0x2a,0x40,0x02,0x1e,0x00,0xbb,0x88,0x88,0x98,0x41,0xcc,0xcc,0x4c,0x40,0x02,0x1e,0x00,0xbb,
0x00,0x00,0x90,0x41,0x66,0x66,0x66,0x40,0x02,0x1e,0x00,0xbb,0xef,0xee,0x8e,0x41,0x55,0x55,0x95,0x40,
0x02,0x1e,0x00,0xbb,0x9a,0x99,0x89,0x41,0x77,0x77,0x77,0x40,0x02,0x1e,0x00,0xbb,0x12,0x11,0x81,0x41,
0x77,0x77,0x77,0x40,0x02,0x1e,0x00,0xbb,0x56,0x55,0x85,0x41,0x44,0x44,0x44,0x40,0x02,0x1e,0x00,0xbb,
0x23,0x22,0x82,0x41,0x00,0x00,0x00,0x40,0x02,0x1e,0x00,0xbb,0x9a,0x99,0x89,0x41,0x11,0x11,0x11,0x40,
0x04,0x00,0x00,0x00,0x01,0x92,0xf5,0x04,0x22,0x22,0xb2,0x41,0x77,0x77,0xb7,0x40,0x02,0x1e,0x00,0xbb,
0xef,0xee,0xae,0x41,0x55,0x55,0xd5,0x40,0x02,0x1e,0x00,0xbb,0x33,0x33,0xb3,0x41,0x33,0x33,0xf3,0x40,
0x02,0x1e,0x00,0xbb,0xbc,0xbb,0xab,0x41,0xef,0xee,0xee,0x40,0x02,0x1e,0x00,0xbb,0x67,0x66,0xa6,0x41,
0x66,0x66,0x06,0x41,0x02,0x1e,0x00,0xbb,0x45,0x44,0xa4,0x41,0xaa,0xaa,0xea,0x40,0x02,0x1e,0x00,0xbb,
0xbc,0xbb,0x9b,0x41,0x21,0x22,0xe2,0x40,0x02,0x1e,0x00,0xbb,0x33,0x33,0xa3,0x41,0xcc,0xcc,0xcc,0x40,
0x02,0x1e,0x00,0xbb,0x33,0x33,0xa3,0x41,0xab,0xaa,0xaa,0x40,0x02,0x1e,0x00,0xbb,0x99,0x99,0xa9,0x41,
0x00,0x00,0xc0,0x40,0x04,0x00,0x00,0x00,0x01,0x92,0xf5,0x04,0x9a,0x99,0xa9,0x41,0x55,0x55,0x35,0x41,
0x02,0x1e,0x00,0xbb,0xcd,0xcc,0xac,0x41,0x44,0x44,0x44,0x41,0x02,0x1e,0x00,0xbb,0x56,0x55,0xb5,0x41,
0x66,0x66,0x46,0x41,0x02,0x1e,0x00,0xbb,0xf0,0xee,0xae,0x41,0x11,0x11,0x51,0x41,0x02,0x1e,0x00,0xbb,
0x12,0x11,0xb1,0x41,0x22,0x22,0x62,0x41,0x02,0x1e,0x00,0xbb,0x9b,0x99,0xa9,0x41,0xbc,0xbb,0x5b,0x41,
0x02,0x1e,0x00,0xbb,0x24,0x22,0xa2,0x41,0x22,0x22,0x62,0x41,0x02,0x1e,0x00,0xbb,0x35,0x33,0xa3,0x41,
0x11,0x11,0x51,0x41,0x02,0x1e,0x00,0xbb,0xcf,0xcc,0x9c,0x41,0x66,0x66,0x46,0x41,0x02,0x1e,0x00,0xbb,
0x58,0x55,0xa5,0x41,0x44,0x44,0x44,0x41,0x04,0x00,0x00,0x00,0x01,0x92,0xf5,0x04,0x22,0x22,0x82,0x41,
0xde,0xdd,0x7d,0x41,0x02,0x1e,0x00,0xbb,0xab,0xaa,0x8a,0x41,0x00,0x00,0x80,0x41,0x02,0x1e,0x00,0xbb,
0x11,0x11,0x91,0x41,0x33,0x33,0x73,0x41,0x02,0x1e,0x00,0xbb,0x22,0x22,0x92,0x41,0x22,0x22,0x82,0x41,
0x02,0x1e,0x00,0xbb,0x99,0x99,0x99,0x41,0x55,0x55,0x85,0x41,0x02,0x1e,0x00,0xbb,0x22,0x22,0x92,0x41,
0x99,0x99,0x89,0x41,0x02,0x1e,0x00,0xbb,0x11,0x11,0x91,0x41,0x22,0x22,0x92,0x41,0x02,0x1e,0x00,0xbb,
0xab,0xaa,0x8a,0x41,0xbc,0xbb,0x8b,0x41,0x02,0x1e,0x00,0xbb,0x34,0x33,0x83,0x41,0xde,0xdd,0x8d,0x41,
0x02,0x1e,0x00,0xbb,0x67,0x66,0x86,0x41,0x67,0x66,0x86,0x41,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x3d,0xff,0xde,0x00,0xff,0x01,0xd2,0x21,0x0a,
0x44,0x44,0x04,0x41,0x55,0x55,0x95,0x40,0x02,0xde,0xd3,0xb5,0x77,0x77,0x17,0x41,0x66,0x66,0xe6,0x40,
0x02,0xde,0xd3,0xb5,0x44,0x44,0x44,0x41,0x77,0x77,0xf7,0x40,0x02,0xde,0xd3,0xb5,0x44,0x44,0x24,0x41,
0x99,0x99,0x19,0x41,0x02,0xde,0xd3,0xb5,0xcd,0xcc,0x2c,0x41,0x88,0x88,0x48,0x41,0x02,0xde,0xd3,0xb5,
0x44,0x44,0x04,0x41,0x33,0x33,0x33,0x41,0x02,0xde,0xd3,0xb5,0x77,0x77,0xb7,0x40,0x88,0x88,0x48,0x41,
0x02,0xde,0xd3,0xb5,0x44,0x44,0xc4,0x40,0x99,0x99,0x19,0x41,0x02,0xde,0xd3,0xb5,0x44,0x44,0x84,0x40,
0x76,0x77,0xf7,0x40,0x02,0xde,0xd3,0xb5,0xde,0xdd,0xdd,0x40,0x65,0x66,0xe6,0x40,0x04,0x00,0x00,0x00,
0x01,0xd2,0x21,0x0a,0x00,0x00,0x90,0x41,0xcd,0xcc,0xcc,0x3f,0x02,0xde,0xd3,0xb5,0x11,0x11,0x91,0x41,
0xaa,0xaa,0x2a,0x40,0x02,0xde,0xd3,0xb5,0x88,0x88,0x98,0x41,0xcc,0xcc,0x4c,0x40,0x02,0xde,0xd3,0xb5,
0x00,0x00,0x90,0x41,0x66,0x66,0x66,0x40,0x02,0xde,0xd3,0xb5,0xef,0xee,0x8e,0x41,0x55,0x55,0x95,0x40,
0x02,0xde,0xd3,0xb5,0x9a,0x99,0x89,0x41,0x77,0x77,0x77,0x40,0x02,0xde,0xd3,0xb5,0x12,0x11,0x81,0x41,
0x77,0x77,0x77,0x40,0x02,0xde,0xd3,0xb5,0x56,0x55,0x85,0x41,0x44,0x44,0x44,0x40,0x02,0xde,0xd3,0xb5,
0x23,0x22,0x82,0x41,0x00,0x00,0x00,0x40,0x02,0xde,0xd3,0xb5,0x9a,0x99,0x89,0x41,0x11,0x11,0x11,0x40,
0x04,0x00,0x00,0x00,0x01,0xd2,0x21,0x0a,0x22,0x22,0xb2,0x41,0x77,0x77,0xb7,0x40,0x02,0xde,0xd3,0xb5,
0xef,0xee,0xae,0x41,0x55,0x55,0xd5,0x40,0x02,0xde,0xd3,0xb5,0x33,0x33,0xb3,0x41,0x33,0x33,0xf3,0x40,
0x02,0xde,0xd3,0xb5,0xbc,0xbb,0xab,0x41,0xef,0xee,0xee,0x40,0x02,0xde,0xd3,0xb5,0x67,0x66,0xa6,0x41,
0x66,0x66,0x06,0x41,0x02,0xde,0xd3,0xb5,0x45,0x44,0xa4,0x41,0xaa,0xaa,0xea,0x40,0x02,0xde,0xd3,0xb5,
0xbc,0xbb,0x9b,0x41,0x21,0x22,0xe2,0x40,0x02,0xde,0xd3,0xb5,0x33,0x33,0xa3,0x41,0xcc,0xcc,0xcc,0x40,
0x02,0xde,0xd3,0xb5,0x33,0x33,0xa3,0x41,0xab,0xaa,0xaa,0x40,0x02,0xde,0xd3,0xb5,0x99,0x99,0xa9,0x41,
0x00,0x00,0xc0,0x40,0x04,0x00,0x00,0x00,0x01,0xd2,0x21,0x0a,0x9a,0x99,0xa9,0x41,0x55,0x55,0x35,0x41,
0x02,0xde,0xd3,0xb5,0xcd,0xcc,0xac,0x41,0x44,0x44,0x44,0x41,0x02,0xde,0xd3,0xb5,0x56,0x55,0xb5,0x41,
0x66,0x66,0x46,0x41,0x02,0xde,0xd3,0xb5,0xf0,0xee,0xae,0x41,0x11,0x11,0x51,0x41,0x02,0xde,0xd3,0xb5,
0x12,0x11,0xb1,0x41,0x22,0x22,0x62,0x41,0x02,0xde,0xd3,0xb5,0x9b,0x99,0xa9,0x41,0xbc,0xbb,0x5b,0x41,
0x02,0xde,0xd3,0xb5,0x24,0x22,0xa2,0x41,0x22,0x22,0x62,0x41,0x02,0xde,0xd3,0xb5,0x35,0x33,0xa3,0x41,
0x11,0x11,0x51,0x41,0x02,0xde,0xd3,0xb5,0xcf,0xcc,0x9c,0x41,0x66,0x66,0x46,0x41,0x02,0xde,0xd3,0xb5,
0x58,0x55,0xa5,0x41,0x44,0x44,0x44,0x41,0x04,0x00,0x00,0x00,0x01,0xd2,0x21,0x0a,0x22,0x22,0x82,0x41,
0xde,0xdd,0x7d,0x41,0x02,0xde,0xd3,0xb5,0xab,0xaa,0x8a,0x41,0x00,0x00,0x80,0x41,0x02,0xde,0xd3,0xb5,
0x11,0x11,0x91,0x41,0x33,0x33,0x73,0x41,0x02,0xde,0xd3,0xb5,0x22,0x22,0x92,0x41,0x22,0x22,0x82,0x41,
0x02,0xde,0xd3,0xb5,0x99,0x99,0x99,0x41,0x55,0x55,0x85,0x41,0x02,0xde,0xd3,0xb5,0x22,0x22,0x92,0x41,
0x99,0x99,0x89,0x41,0x02,0xde,0xd3,0xb5,0x11,0x11,0x91,0x41,0x22,0x22,0x92,0x41,0x02,0xde,0xd3,0xb5,
0xab,0xaa,0x8a,0x41,0xbc,0xbb,0x8b,0x41,0x02,0xde,0xd3,0xb5,0x34,0x33,0x83,0x41,0xde,0xdd,0x8d,0x41,
0x02,0xde,0xd3,0xb5,0x67,0x66,0x86,0x41,0x67,0x66,0x86,0x41,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,};/*892*/

View File

@ -2,29 +2,29 @@ TK_CONST_DATA_ALIGN(const unsigned char image_computer[]) = {
0x02,0x00,0x05,0x01,0x10,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x15,0x11,0x18,0x20,0x02,0x00,0x00,0x00,0xc8,0x00,0x00,0x00,0xc8,0x00,0x00,0x00,
0x02,0x01,0x00,0x00,0x00,0x00,0x48,0x3e,0x33,0x33,0x33,0xff,0x01,0x92,0xf5,0x04,0xbc,0xfb,0x33,0x43,
0x01,0x00,0x70,0x41,0x02,0x1e,0x00,0xbb,0x22,0x22,0xa0,0x41,0x01,0x00,0x70,0x41,0x03,0x8a,0xf0,0x07,
0x02,0x01,0x00,0x00,0x00,0x00,0x48,0x3e,0x33,0x33,0x33,0xff,0x01,0xd2,0x21,0x0a,0xbc,0xfb,0x33,0x43,
0x01,0x00,0x70,0x41,0x02,0xde,0xd3,0xb5,0x22,0x22,0xa0,0x41,0x01,0x00,0x70,0x41,0x03,0x5f,0x30,0xbe,
0xb4,0x6e,0x4a,0x41,0x82,0x52,0x70,0x41,0x5d,0xfa,0xd5,0x40,0x04,0xe2,0xa7,0x41,0x54,0x55,0xd5,0x40,
0xcc,0xcc,0xe2,0x41,0x02,0x1e,0x00,0xbb,0x54,0x55,0xd5,0x40,0x11,0x51,0x0a,0x43,0x03,0x8a,0xf0,0x07,
0xcc,0xcc,0xe2,0x41,0x02,0xde,0xd3,0xb5,0x54,0x55,0xd5,0x40,0x11,0x51,0x0a,0x43,0x03,0x5f,0x30,0xbe,
0x5e,0xfa,0xd5,0x40,0x6a,0xae,0x11,0x43,0xb4,0x6e,0x4a,0x41,0x82,0xa5,0x17,0x43,0x22,0x22,0xa0,0x41,
0xab,0xaa,0x17,0x43,0x02,0x1e,0x00,0xbb,0x5e,0x8f,0x62,0x42,0xab,0xaa,0x17,0x43,0x03,0x8a,0xf0,0x07,
0xab,0xaa,0x17,0x43,0x02,0xde,0xd3,0xb5,0x5e,0x8f,0x62,0x42,0xab,0xaa,0x17,0x43,0x03,0x5f,0x30,0xbe,
0x57,0x55,0x7a,0x42,0xab,0xaa,0x17,0x43,0x04,0x1d,0x83,0x42,0x4e,0xdb,0x1e,0x43,0xfe,0x62,0x75,0x42,
0xa7,0x0d,0x23,0x43,0x02,0x1e,0x00,0xbb,0xd2,0x69,0x45,0x42,0x8f,0x02,0x2f,0x43,0x03,0x8a,0xf0,0x07,
0xa7,0x0d,0x23,0x43,0x02,0xde,0xd3,0xb5,0xd2,0x69,0x45,0x42,0x8f,0x02,0x2f,0x43,0x03,0x5f,0x30,0xbe,
0x35,0x33,0x3b,0x42,0x0e,0x74,0x33,0x43,0xd6,0x06,0x48,0x42,0x00,0x00,0x39,0x43,0x8b,0x88,0x5c,0x42,
0x00,0x00,0x39,0x43,0x02,0x1e,0x00,0xbb,0x6e,0x60,0x12,0x43,0x00,0x00,0x39,0x43,0x03,0x8a,0xf0,0x07,
0x00,0x00,0x39,0x43,0x02,0xde,0xd3,0xb5,0x6e,0x60,0x12,0x43,0x00,0x00,0x39,0x43,0x03,0x5f,0x30,0xbe,
0xdb,0x80,0x17,0x43,0x00,0x00,0x39,0x43,0xc4,0xb5,0x1a,0x43,0xe8,0x74,0x33,0x43,0x1d,0x28,0x18,0x43,
0x6a,0x03,0x2f,0x43,0x02,0x1e,0x00,0xbb,0xd1,0x29,0x0c,0x43,0x82,0x0e,0x23,0x43,0x03,0x8a,0xf0,0x07,
0x6a,0x03,0x2f,0x43,0x02,0xde,0xd3,0xb5,0xd1,0x29,0x0c,0x43,0x82,0x0e,0x23,0x43,0x03,0x5f,0x30,0xbe,
0x0f,0xf4,0x07,0x43,0x29,0xdc,0x1e,0x43,0x3b,0xed,0x0a,0x43,0x85,0xab,0x17,0x43,0xba,0xde,0x10,0x43,
0x85,0xab,0x17,0x43,0x02,0x1e,0x00,0xbb,0xbd,0xfb,0x33,0x43,0x85,0xab,0x17,0x43,0x03,0x8a,0xf0,0x07,
0x85,0xab,0x17,0x43,0x02,0xde,0xd3,0xb5,0xbd,0xfb,0x33,0x43,0x85,0xab,0x17,0x43,0x03,0x5f,0x30,0xbe,
0x16,0x59,0x3b,0x43,0x5c,0xa6,0x17,0x43,0x2d,0x50,0x41,0x43,0x44,0xaf,0x11,0x43,0x55,0x55,0x41,0x43,
0xec,0x51,0x0a,0x43,0x02,0x1e,0x00,0xbb,0x55,0x55,0x41,0x43,0xcc,0xcc,0xe2,0x41,0x03,0x8a,0xf0,0x07,
0xec,0x51,0x0a,0x43,0x02,0xde,0xd3,0xb5,0x55,0x55,0x41,0x43,0xcc,0xcc,0xe2,0x41,0x03,0x5f,0x30,0xbe,
0x2d,0x50,0x41,0x43,0x04,0xe2,0xa7,0x41,0x15,0x59,0x3b,0x43,0x82,0x52,0x70,0x41,0xbc,0xfb,0x33,0x43,
0x01,0x00,0x70,0x41,0x04,0x00,0x00,0x00,0x01,0x92,0xf5,0x04,0xdd,0x1d,0x22,0x43,0xc6,0x12,0xfa,0x42,
0x02,0x1e,0x00,0xbb,0xcb,0xcc,0x0d,0x42,0xc6,0x12,0xfa,0x42,0x03,0x8a,0xf0,0x07,0x41,0x44,0xfe,0x41,
0x01,0x00,0x70,0x41,0x04,0x00,0x00,0x00,0x01,0xd2,0x21,0x0a,0xdd,0x1d,0x22,0x43,0xc6,0x12,0xfa,0x42,
0x02,0xde,0xd3,0xb5,0xcb,0xcc,0x0d,0x42,0xc6,0x12,0xfa,0x42,0x03,0x5f,0x30,0xbe,0x41,0x44,0xfe,0x41,
0xc6,0x12,0xfa,0x42,0x41,0x44,0xe6,0x41,0xc7,0x12,0xf4,0x42,0x41,0x44,0xe6,0x41,0x72,0xbd,0xec,0x42,
0x03,0x8a,0xf0,0x07,0x41,0x44,0xe6,0x41,0x1d,0x68,0xe5,0x42,0x41,0x44,0xfe,0x41,0x1d,0x68,0xdf,0x42,
0xcb,0xcc,0x0d,0x42,0x1d,0x68,0xdf,0x42,0x02,0x1e,0x00,0xbb,0xdd,0x1d,0x22,0x43,0x1d,0x68,0xdf,0x42,
0x03,0x8a,0xf0,0x07,0x88,0xc8,0x25,0x43,0x1d,0x68,0xdf,0x42,0x88,0xc8,0x28,0x43,0x1d,0x68,0xe5,0x42,
0x88,0xc8,0x28,0x43,0x72,0xbd,0xec,0x42,0x03,0x8a,0xf0,0x07,0x88,0xc8,0x28,0x43,0xc7,0x12,0xf4,0x42,
0x03,0x5f,0x30,0xbe,0x41,0x44,0xe6,0x41,0x1d,0x68,0xe5,0x42,0x41,0x44,0xfe,0x41,0x1d,0x68,0xdf,0x42,
0xcb,0xcc,0x0d,0x42,0x1d,0x68,0xdf,0x42,0x02,0xde,0xd3,0xb5,0xdd,0x1d,0x22,0x43,0x1d,0x68,0xdf,0x42,
0x03,0x5f,0x30,0xbe,0x88,0xc8,0x25,0x43,0x1d,0x68,0xdf,0x42,0x88,0xc8,0x28,0x43,0x1d,0x68,0xe5,0x42,
0x88,0xc8,0x28,0x43,0x72,0xbd,0xec,0x42,0x03,0x5f,0x30,0xbe,0x88,0xc8,0x28,0x43,0xc7,0x12,0xf4,0x42,
0x89,0xc8,0x25,0x43,0xc6,0x12,0xfa,0x42,0xdd,0x1d,0x22,0x43,0xc6,0x12,0xfa,0x42,0x04,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,};/*576*/

View File

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

View File

@ -3,7 +3,7 @@ TK_CONST_DATA_ALIGN(const unsigned char image_gradient[]) = {
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x15,0x11,0x18,0x20,0x02,0x00,0x00,0x00,0xc8,0x00,0x00,0x00,0xc8,0x00,0x00,0x00,
0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x40,0x01,0x00,0x70,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x43,
0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x02,0x1e,0x00,0xbb,0x00,0x00,0x48,0x43,0x00,0x00,0x00,0x00,0x02,0x1e,0x00,0xbb,
0x00,0x00,0x48,0x43,0x00,0x00,0x48,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x43,
0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x02,0xde,0xd3,0xb5,0x00,0x00,0x48,0x43,0x00,0x00,0x00,0x00,0x02,0xde,0xd3,0xb5,
0x00,0x00,0x48,0x43,0x00,0x00,0x48,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x43,
0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,};/*160*/

View File

@ -2,86 +2,86 @@ TK_CONST_DATA_ALIGN(const unsigned char image_htest[]) = {
0x02,0x00,0x05,0x01,0x78,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x68,0x74,0x65,0x73,0x74,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x15,0x11,0x18,0x20,0x02,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x18,0x00,0x00,0x00,
0x02,0x01,0x00,0x00,0x00,0x00,0x80,0x3f,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x48,0xe1,0x6a,0x40,
0xe1,0x7a,0xc4,0x40,0x03,0xa8,0x80,0x08,0x48,0xe1,0x6a,0x40,0xe1,0x7a,0xc4,0x40,0xc3,0xf5,0xe8,0x3f,
0xb8,0x1e,0xfd,0x40,0xf6,0x28,0xdc,0x3f,0xe1,0x7a,0x1c,0x41,0x02,0x1e,0x00,0xbb,0xf6,0x28,0xdc,0x3f,
0x7b,0x14,0x22,0x41,0x03,0xa8,0x80,0x08,0x67,0x66,0xe6,0x3f,0x71,0x3d,0x3a,0x41,0xf6,0x28,0x3c,0x40,
0xe2,0x7a,0x48,0x41,0xf6,0x28,0x3c,0x40,0xe2,0x7a,0x48,0x41,0x03,0xa8,0x80,0x08,0xd7,0xa3,0x98,0x40,
0x02,0x01,0x00,0x00,0x00,0x00,0x80,0x3f,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x48,0xe1,0x6a,0x40,
0xe1,0x7a,0xc4,0x40,0x03,0xa6,0x00,0xbd,0x48,0xe1,0x6a,0x40,0xe1,0x7a,0xc4,0x40,0xc3,0xf5,0xe8,0x3f,
0xb8,0x1e,0xfd,0x40,0xf6,0x28,0xdc,0x3f,0xe1,0x7a,0x1c,0x41,0x02,0xde,0xd3,0xb5,0xf6,0x28,0xdc,0x3f,
0x7b,0x14,0x22,0x41,0x03,0xa6,0x00,0xbd,0x67,0x66,0xe6,0x3f,0x71,0x3d,0x3a,0x41,0xf6,0x28,0x3c,0x40,
0xe2,0x7a,0x48,0x41,0xf6,0x28,0x3c,0x40,0xe2,0x7a,0x48,0x41,0x03,0xa6,0x00,0xbd,0xd7,0xa3,0x98,0x40,
0xb9,0x1e,0x65,0x41,0x34,0x33,0x13,0x41,0x5c,0x8f,0x84,0x41,0x0a,0xd7,0x23,0x41,0xd8,0xa3,0x88,0x41,
0x03,0xa8,0x80,0x08,0x0a,0xd7,0x23,0x41,0xd8,0xa3,0x88,0x41,0xcd,0xcc,0x24,0x41,0x49,0xe1,0x88,0x41,
0xa4,0x70,0x25,0x41,0x5d,0x8f,0x88,0x41,0x02,0x1e,0x00,0xbb,0x90,0xc2,0x25,0x41,0x71,0x3d,0x88,0x41,
0x02,0x1e,0x00,0xbb,0x90,0xc2,0x25,0x41,0x00,0x00,0x88,0x41,0x02,0x1e,0x00,0xbb,0x90,0xc2,0x25,0x41,
0x85,0xeb,0x87,0x41,0x03,0xa8,0x80,0x08,0xd7,0xa3,0xf0,0x40,0xcd,0xcc,0x2c,0x41,0x48,0xe1,0x6a,0x40,
0xe1,0x7a,0xc4,0x40,0x48,0xe1,0x6a,0x40,0xe1,0x7a,0xc4,0x40,0x04,0x00,0x00,0x00,0x01,0x92,0xf5,0x04,
0x66,0x66,0x1a,0x41,0xcd,0xcc,0x94,0x41,0x03,0xa8,0x80,0x08,0x7a,0x14,0x1a,0x41,0xf6,0x28,0x94,0x41,
0xcc,0xcc,0x18,0x41,0xf6,0x28,0x94,0x41,0xcc,0xcc,0x18,0x41,0xf6,0x28,0x94,0x41,0x02,0x1e,0x00,0xbb,
0x44,0xe1,0x0a,0x40,0x71,0x3d,0x96,0x41,0x03,0xa8,0x80,0x08,0x77,0x14,0x3e,0x40,0x15,0xae,0xa1,0x41,
0x6f,0x3d,0x8a,0x40,0xe2,0x7a,0xaa,0x41,0x27,0x5c,0xb7,0x40,0x0b,0xd7,0xa7,0x41,0x03,0xa8,0x80,0x08,
0x03,0xa6,0x00,0xbd,0x0a,0xd7,0x23,0x41,0xd8,0xa3,0x88,0x41,0xcd,0xcc,0x24,0x41,0x49,0xe1,0x88,0x41,
0xa4,0x70,0x25,0x41,0x5d,0x8f,0x88,0x41,0x02,0xde,0xd3,0xb5,0x90,0xc2,0x25,0x41,0x71,0x3d,0x88,0x41,
0x02,0xde,0xd3,0xb5,0x90,0xc2,0x25,0x41,0x00,0x00,0x88,0x41,0x02,0xde,0xd3,0xb5,0x90,0xc2,0x25,0x41,
0x85,0xeb,0x87,0x41,0x03,0xa6,0x00,0xbd,0xd7,0xa3,0xf0,0x40,0xcd,0xcc,0x2c,0x41,0x48,0xe1,0x6a,0x40,
0xe1,0x7a,0xc4,0x40,0x48,0xe1,0x6a,0x40,0xe1,0x7a,0xc4,0x40,0x04,0x00,0x00,0x00,0x01,0xd2,0x21,0x0a,
0x66,0x66,0x1a,0x41,0xcd,0xcc,0x94,0x41,0x03,0xa6,0x00,0xbd,0x7a,0x14,0x1a,0x41,0xf6,0x28,0x94,0x41,
0xcc,0xcc,0x18,0x41,0xf6,0x28,0x94,0x41,0xcc,0xcc,0x18,0x41,0xf6,0x28,0x94,0x41,0x02,0xde,0xd3,0xb5,
0x44,0xe1,0x0a,0x40,0x71,0x3d,0x96,0x41,0x03,0xa6,0x00,0xbd,0x77,0x14,0x3e,0x40,0x15,0xae,0xa1,0x41,
0x6f,0x3d,0x8a,0x40,0xe2,0x7a,0xaa,0x41,0x27,0x5c,0xb7,0x40,0x0b,0xd7,0xa7,0x41,0x03,0xa6,0x00,0xbd,
0x79,0x14,0xd6,0x40,0x0b,0xd7,0xa5,0x41,0x70,0x3d,0x0e,0x41,0x9a,0x99,0x99,0x41,0x8e,0xc2,0x19,0x41,
0xa5,0x70,0x95,0x41,0x03,0xa8,0x80,0x08,0x51,0xb8,0x1a,0x41,0x3f,0x0a,0x95,0x41,0x65,0x66,0x1a,0x41,
0x53,0xb8,0x94,0x41,0x65,0x66,0x1a,0x41,0x53,0xb8,0x94,0x41,0x04,0x00,0x00,0x00,0x01,0x92,0xf5,0x04,
0x14,0xae,0x1b,0x41,0x5c,0x8f,0x8e,0x41,0x03,0xa8,0x80,0x08,0x14,0xae,0xcf,0x40,0x7b,0x14,0x7a,0x41,
0x3d,0x0a,0x57,0x3e,0xe1,0x7a,0x44,0x41,0x3d,0x0a,0x57,0x3e,0xe1,0x7a,0x44,0x41,0x03,0xa8,0x80,0x08,
0xa5,0x70,0x95,0x41,0x03,0xa6,0x00,0xbd,0x51,0xb8,0x1a,0x41,0x3f,0x0a,0x95,0x41,0x65,0x66,0x1a,0x41,
0x53,0xb8,0x94,0x41,0x65,0x66,0x1a,0x41,0x53,0xb8,0x94,0x41,0x04,0x00,0x00,0x00,0x01,0xd2,0x21,0x0a,
0x14,0xae,0x1b,0x41,0x5c,0x8f,0x8e,0x41,0x03,0xa6,0x00,0xbd,0x14,0xae,0xcf,0x40,0x7b,0x14,0x7a,0x41,
0x3d,0x0a,0x57,0x3e,0xe1,0x7a,0x44,0x41,0x3d,0x0a,0x57,0x3e,0xe1,0x7a,0x44,0x41,0x03,0xa6,0x00,0xbd,
0x8c,0xc2,0x75,0x3d,0x0a,0xd7,0x4b,0x41,0x00,0xd7,0x23,0x3c,0x47,0xe1,0x52,0x41,0x00,0x00,0x00,0x00,
0xae,0x47,0x59,0x41,0x02,0x1e,0x00,0xbb,0x00,0x00,0x00,0x00,0x66,0x66,0x5a,0x41,0x03,0xa8,0x80,0x08,
0xae,0x47,0x59,0x41,0x02,0xde,0xd3,0xb5,0x00,0x00,0x00,0x00,0x66,0x66,0x5a,0x41,0x03,0xa6,0x00,0xbd,
0x00,0x00,0x00,0x00,0x1e,0x85,0x6b,0x41,0xcd,0xcc,0xcc,0x3e,0x1e,0x85,0x77,0x41,0xcd,0xcc,0xcc,0x3e,
0x1e,0x85,0x77,0x41,0x03,0xa8,0x80,0x08,0x9a,0x99,0x99,0x3f,0xae,0x47,0x89,0x41,0x29,0x5c,0x2f,0x40,
0x29,0x5c,0x8d,0x41,0x29,0x5c,0x2f,0x40,0x29,0x5c,0x8d,0x41,0x03,0xa8,0x80,0x08,0xf6,0x28,0x5c,0x40,
0x1e,0x85,0x77,0x41,0x03,0xa6,0x00,0xbd,0x9a,0x99,0x99,0x3f,0xae,0x47,0x89,0x41,0x29,0x5c,0x2f,0x40,
0x29,0x5c,0x8d,0x41,0x29,0x5c,0x2f,0x40,0x29,0x5c,0x8d,0x41,0x03,0xa6,0x00,0xbd,0xf6,0x28,0x5c,0x40,
0x8f,0xc2,0x8f,0x41,0xe1,0x7a,0x84,0x40,0x0a,0xd7,0x8f,0x41,0xe1,0x7a,0x84,0x40,0x0a,0xd7,0x8f,0x41,
0x03,0xa8,0x80,0x08,0xeb,0x51,0x88,0x40,0x00,0x00,0x90,0x41,0xd7,0xa3,0x08,0x41,0x0a,0xd7,0x8f,0x41,
0x48,0xe1,0x1a,0x41,0x0a,0xd7,0x8f,0x41,0x03,0xa8,0x80,0x08,0x15,0xae,0x1b,0x41,0x0a,0xd7,0x8f,0x41,
0xf6,0x28,0x1c,0x41,0xa4,0x70,0x8f,0x41,0xf6,0x28,0x1c,0x41,0xa4,0x70,0x8f,0x41,0x02,0x1e,0x00,0xbb,
0xf6,0x28,0x1c,0x41,0xc3,0xf5,0x8e,0x41,0x03,0xa8,0x80,0x08,0xf6,0x28,0x1c,0x41,0x52,0xb8,0x8e,0x41,
0x03,0xa6,0x00,0xbd,0xeb,0x51,0x88,0x40,0x00,0x00,0x90,0x41,0xd7,0xa3,0x08,0x41,0x0a,0xd7,0x8f,0x41,
0x48,0xe1,0x1a,0x41,0x0a,0xd7,0x8f,0x41,0x03,0xa6,0x00,0xbd,0x15,0xae,0x1b,0x41,0x0a,0xd7,0x8f,0x41,
0xf6,0x28,0x1c,0x41,0xa4,0x70,0x8f,0x41,0xf6,0x28,0x1c,0x41,0xa4,0x70,0x8f,0x41,0x02,0xde,0xd3,0xb5,
0xf6,0x28,0x1c,0x41,0xc3,0xf5,0x8e,0x41,0x03,0xa6,0x00,0xbd,0xf6,0x28,0x1c,0x41,0x52,0xb8,0x8e,0x41,
0x15,0xae,0x1b,0x41,0x5d,0x8f,0x8e,0x41,0x15,0xae,0x1b,0x41,0x5d,0x8f,0x8e,0x41,0x04,0x00,0x00,0x00,
0x01,0x92,0xf5,0x04,0xc3,0xf5,0x10,0x41,0xf6,0x28,0x4c,0x40,0x03,0xa8,0x80,0x08,0x15,0x58,0xf3,0x40,
0x01,0xd2,0x21,0x0a,0xc3,0xf5,0x10,0x41,0xf6,0x28,0x4c,0x40,0x03,0xa6,0x00,0xbd,0x15,0x58,0xf3,0x40,
0xc1,0xf1,0x63,0x40,0x15,0xfb,0xd1,0x40,0x6c,0xdd,0x9a,0x40,0x16,0xae,0xcf,0x40,0x49,0xe1,0xca,0x40,
0x02,0x1e,0x00,0xbb,0x16,0xae,0xcf,0x40,0x00,0x00,0xd8,0x40,0x03,0xa8,0x80,0x08,0xd9,0xa3,0xd0,0x40,
0x02,0xde,0xd3,0xb5,0x16,0xae,0xcf,0x40,0x00,0x00,0xd8,0x40,0x03,0xa6,0x00,0xbd,0xd9,0xa3,0xd0,0x40,
0x33,0x33,0xeb,0x40,0xce,0xcc,0xd4,0x40,0x9a,0x99,0xf9,0x40,0xce,0xcc,0xd4,0x40,0x9a,0x99,0xf9,0x40,
0x03,0xa8,0x80,0x08,0x86,0xeb,0xe9,0x40,0x34,0x33,0x2b,0x41,0xf6,0x28,0x28,0x41,0x34,0x33,0x77,0x41,
0x34,0x33,0x33,0x41,0x9a,0x99,0x83,0x41,0x03,0xa8,0x80,0x08,0x01,0x00,0x34,0x41,0x00,0x00,0x84,0x41,
0xce,0xcc,0x34,0x41,0x0b,0xd7,0x83,0x41,0xce,0xcc,0x34,0x41,0x0b,0xd7,0x83,0x41,0x03,0xa8,0x80,0x08,
0x03,0xa6,0x00,0xbd,0x86,0xeb,0xe9,0x40,0x34,0x33,0x2b,0x41,0xf6,0x28,0x28,0x41,0x34,0x33,0x77,0x41,
0x34,0x33,0x33,0x41,0x9a,0x99,0x83,0x41,0x03,0xa6,0x00,0xbd,0x01,0x00,0x34,0x41,0x00,0x00,0x84,0x41,
0xce,0xcc,0x34,0x41,0x0b,0xd7,0x83,0x41,0xce,0xcc,0x34,0x41,0x0b,0xd7,0x83,0x41,0x03,0xa6,0x00,0xbd,
0x19,0x6e,0x35,0x41,0x33,0xb4,0x83,0x41,0xfa,0xd0,0x35,0x41,0xcd,0x61,0x83,0x41,0x91,0xc2,0x35,0x41,
0x3e,0x0a,0x83,0x41,0x03,0xa8,0x80,0x08,0x54,0xb8,0x46,0x41,0xc4,0xf5,0xb8,0x40,0x02,0x00,0x24,0x41,
0xa8,0x70,0x3d,0x40,0x02,0x00,0x24,0x41,0xa8,0x70,0x3d,0x40,0x03,0xa8,0x80,0x08,0x4a,0xe1,0x1e,0x41,
0x3e,0x0a,0x83,0x41,0x03,0xa6,0x00,0xbd,0x54,0xb8,0x46,0x41,0xc4,0xf5,0xb8,0x40,0x02,0x00,0x24,0x41,
0xa8,0x70,0x3d,0x40,0x02,0x00,0x24,0x41,0xa8,0x70,0x3d,0x40,0x03,0xa6,0x00,0xbd,0x4a,0xe1,0x1e,0x41,
0x56,0xb8,0x3e,0x40,0xc4,0xf5,0x10,0x41,0xfa,0x28,0x4c,0x40,0xc4,0xf5,0x10,0x41,0xfa,0x28,0x4c,0x40,
0x04,0x00,0x00,0x00,0x01,0x92,0xf5,0x04,0x48,0xe1,0x8a,0x41,0x52,0xb8,0xae,0x40,0x03,0xa8,0x80,0x08,
0x04,0x00,0x00,0x00,0x01,0xd2,0x21,0x0a,0x48,0xe1,0x8a,0x41,0x52,0xb8,0xae,0x40,0x03,0xa6,0x00,0xbd,
0x48,0xe1,0x8a,0x41,0x52,0xb8,0xae,0x40,0xc3,0xf5,0x86,0x41,0x71,0x3d,0x6a,0x40,0x52,0xb8,0x6e,0x41,
0x1f,0x85,0x4b,0x40,0x03,0xa8,0x80,0x08,0x52,0xb8,0x6e,0x41,0x1f,0x85,0x4b,0x40,0x9a,0x99,0x65,0x41,
0x5c,0x8f,0x42,0x40,0x00,0x00,0x5c,0x41,0xa4,0x70,0x3d,0x40,0x03,0xa8,0x80,0x08,0x00,0x00,0x5c,0x41,
0x1f,0x85,0x4b,0x40,0x03,0xa6,0x00,0xbd,0x52,0xb8,0x6e,0x41,0x1f,0x85,0x4b,0x40,0x9a,0x99,0x65,0x41,
0x5c,0x8f,0x42,0x40,0x00,0x00,0x5c,0x41,0xa4,0x70,0x3d,0x40,0x03,0xa6,0x00,0xbd,0x00,0x00,0x5c,0x41,
0xa4,0x70,0x3d,0x40,0xb8,0x1e,0x39,0x41,0xd7,0xa3,0xb8,0x40,0x7b,0x14,0x4a,0x41,0xb8,0x1e,0x83,0x41,
0x03,0xa8,0x80,0x08,0x71,0x3d,0x4a,0x41,0x14,0xae,0x83,0x41,0x3e,0x0a,0x4b,0x41,0x8f,0xc2,0x83,0x41,
0x3e,0x0a,0x4b,0x41,0x8f,0xc2,0x83,0x41,0x03,0xa8,0x80,0x08,0xf6,0x28,0x4c,0x41,0x00,0x00,0x84,0x41,
0xd8,0xa3,0x4c,0x41,0x1e,0x85,0x83,0x41,0xd8,0xa3,0x4c,0x41,0x1e,0x85,0x83,0x41,0x03,0xa8,0x80,0x08,
0x03,0xa6,0x00,0xbd,0x71,0x3d,0x4a,0x41,0x14,0xae,0x83,0x41,0x3e,0x0a,0x4b,0x41,0x8f,0xc2,0x83,0x41,
0x3e,0x0a,0x4b,0x41,0x8f,0xc2,0x83,0x41,0x03,0xa6,0x00,0xbd,0xf6,0x28,0x4c,0x41,0x00,0x00,0x84,0x41,
0xd8,0xa3,0x4c,0x41,0x1e,0x85,0x83,0x41,0xd8,0xa3,0x4c,0x41,0x1e,0x85,0x83,0x41,0x03,0xa6,0x00,0xbd,
0xf7,0x28,0x58,0x41,0x5b,0x8f,0x76,0x41,0x1f,0x85,0x85,0x41,0x46,0xe1,0x2a,0x41,0x52,0xb8,0x8a,0x41,
0x96,0x99,0xf9,0x40,0x03,0xa8,0x80,0x08,0x52,0xb8,0x8a,0x41,0x96,0x99,0xf9,0x40,0x9a,0x99,0x8d,0x41,
0xc9,0xcc,0xcc,0x40,0x48,0xe1,0x8a,0x41,0x4e,0xb8,0xae,0x40,0x04,0x00,0x00,0x00,0x01,0x92,0xf5,0x04,
0x3d,0x0a,0x67,0x41,0x71,0x3d,0x94,0x41,0x03,0xa8,0x80,0x08,0x3d,0x0a,0x67,0x41,0x71,0x3d,0x94,0x41,
0x85,0xeb,0x65,0x41,0x71,0x3d,0x94,0x41,0x99,0x99,0x65,0x41,0xd7,0xa3,0x94,0x41,0x03,0xa8,0x80,0x08,
0x96,0x99,0xf9,0x40,0x03,0xa6,0x00,0xbd,0x52,0xb8,0x8a,0x41,0x96,0x99,0xf9,0x40,0x9a,0x99,0x8d,0x41,
0xc9,0xcc,0xcc,0x40,0x48,0xe1,0x8a,0x41,0x4e,0xb8,0xae,0x40,0x04,0x00,0x00,0x00,0x01,0xd2,0x21,0x0a,
0x3d,0x0a,0x67,0x41,0x71,0x3d,0x94,0x41,0x03,0xa6,0x00,0xbd,0x3d,0x0a,0x67,0x41,0x71,0x3d,0x94,0x41,
0x85,0xeb,0x65,0x41,0x71,0x3d,0x94,0x41,0x99,0x99,0x65,0x41,0xd7,0xa3,0x94,0x41,0x03,0xa6,0x00,0xbd,
0x99,0x99,0x65,0x41,0xd7,0xa3,0x94,0x41,0xa3,0x70,0x65,0x41,0x33,0x33,0x95,0x41,0x7a,0x14,0x66,0x41,
0xa4,0x70,0x95,0x41,0x03,0xa8,0x80,0x08,0xad,0x47,0x71,0x41,0x1f,0x85,0x99,0x41,0x0a,0xd7,0x89,0x41,
0xa4,0x70,0xa5,0x41,0x7a,0x14,0x92,0x41,0x0a,0xd7,0xa7,0x41,0x03,0xa8,0x80,0x08,0x7a,0x14,0x92,0x41,
0xa4,0x70,0x95,0x41,0x03,0xa6,0x00,0xbd,0xad,0x47,0x71,0x41,0x1f,0x85,0x99,0x41,0x0a,0xd7,0x89,0x41,
0xa4,0x70,0xa5,0x41,0x7a,0x14,0x92,0x41,0x0a,0xd7,0xa7,0x41,0x03,0xa6,0x00,0xbd,0x7a,0x14,0x92,0x41,
0x0a,0xd7,0xa7,0x41,0x28,0x5c,0x93,0x41,0x70,0x3d,0xa8,0x41,0x1e,0x85,0x95,0x41,0xeb,0x51,0xa8,0x41,
0x02,0x1e,0x00,0xbb,0xd6,0xa3,0x96,0x41,0xeb,0x51,0xa8,0x41,0x03,0xa8,0x80,0x08,0xf5,0x28,0x9c,0x41,
0x02,0xde,0xd3,0xb5,0xd6,0xa3,0x96,0x41,0xeb,0x51,0xa8,0x41,0x03,0xa6,0x00,0xbd,0xf5,0x28,0x9c,0x41,
0xf5,0x28,0xa8,0x41,0x09,0xd7,0xa5,0x41,0x28,0x5c,0xa5,0x41,0xd6,0xa3,0xae,0x41,0x70,0x3d,0x96,0x41,
0x02,0x1e,0x00,0xbb,0x46,0xe1,0x66,0x41,0x70,0x3d,0x94,0x41,0x04,0x00,0x00,0x00,0x01,0x92,0xf5,0x04,
0xf6,0x28,0xb2,0x41,0x85,0xeb,0x21,0x41,0x03,0xa8,0x80,0x08,0xae,0x47,0xb3,0x41,0xc2,0xf5,0x00,0x41,
0xd7,0xa3,0xa2,0x41,0xcc,0xcc,0xc4,0x40,0xd7,0xa3,0xa2,0x41,0xe1,0x7a,0xc4,0x40,0x03,0xa8,0x80,0x08,
0x02,0xde,0xd3,0xb5,0x46,0xe1,0x66,0x41,0x70,0x3d,0x94,0x41,0x04,0x00,0x00,0x00,0x01,0xd2,0x21,0x0a,
0xf6,0x28,0xb2,0x41,0x85,0xeb,0x21,0x41,0x03,0xa6,0x00,0xbd,0xae,0x47,0xb3,0x41,0xc2,0xf5,0x00,0x41,
0xd7,0xa3,0xa2,0x41,0xcc,0xcc,0xc4,0x40,0xd7,0xa3,0xa2,0x41,0xe1,0x7a,0xc4,0x40,0x03,0xa6,0x00,0xbd,
0xd7,0xa3,0xa2,0x41,0xe1,0x7a,0xc4,0x40,0x0a,0xd7,0x83,0x41,0xcc,0xcc,0x2c,0x41,0x5c,0x8f,0x5a,0x41,
0x1f,0x85,0x87,0x41,0x03,0xa8,0x80,0x08,0x5c,0x8f,0x5a,0x41,0x1f,0x85,0x87,0x41,0x7b,0x14,0x5a,0x41,
0xf6,0x28,0x88,0x41,0x48,0xe1,0x5a,0x41,0x5c,0x8f,0x88,0x41,0x02,0x1e,0x00,0xbb,0x1f,0x85,0x5b,0x41,
0xd7,0xa3,0x88,0x41,0x02,0x1e,0x00,0xbb,0xe2,0x7a,0x5c,0x41,0xd7,0xa3,0x88,0x41,0x03,0xa8,0x80,0x08,
0x1f,0x85,0x87,0x41,0x03,0xa6,0x00,0xbd,0x5c,0x8f,0x5a,0x41,0x1f,0x85,0x87,0x41,0x7b,0x14,0x5a,0x41,
0xf6,0x28,0x88,0x41,0x48,0xe1,0x5a,0x41,0x5c,0x8f,0x88,0x41,0x02,0xde,0xd3,0xb5,0x1f,0x85,0x5b,0x41,
0xd7,0xa3,0x88,0x41,0x02,0xde,0xd3,0xb5,0xe2,0x7a,0x5c,0x41,0xd7,0xa3,0x88,0x41,0x03,0xa6,0x00,0xbd,
0xa4,0x70,0x6d,0x41,0x66,0x66,0x84,0x41,0x86,0xeb,0x99,0x41,0xc2,0xf5,0x64,0x41,0xe2,0x7a,0xa8,0x41,
0xd7,0xa3,0x48,0x41,0x03,0xa8,0x80,0x08,0xe2,0x7a,0xa8,0x41,0xd7,0xa3,0x48,0x41,0x15,0xae,0xb1,0x41,
0x8f,0xc2,0x39,0x41,0xf6,0x28,0xb2,0x41,0x85,0xeb,0x21,0x41,0x04,0x00,0x00,0x00,0x01,0x92,0xf5,0x04,
0xec,0x51,0xbe,0x41,0xf6,0x28,0x44,0x41,0x03,0xa8,0x80,0x08,0xec,0x51,0xbe,0x41,0xf6,0x28,0x44,0x41,
0x7b,0x14,0x8c,0x41,0x7b,0x14,0x7a,0x41,0xec,0x51,0x64,0x41,0xe2,0x7a,0x8e,0x41,0x03,0xa8,0x80,0x08,
0xd7,0xa3,0x48,0x41,0x03,0xa6,0x00,0xbd,0xe2,0x7a,0xa8,0x41,0xd7,0xa3,0x48,0x41,0x15,0xae,0xb1,0x41,
0x8f,0xc2,0x39,0x41,0xf6,0x28,0xb2,0x41,0x85,0xeb,0x21,0x41,0x04,0x00,0x00,0x00,0x01,0xd2,0x21,0x0a,
0xec,0x51,0xbe,0x41,0xf6,0x28,0x44,0x41,0x03,0xa6,0x00,0xbd,0xec,0x51,0xbe,0x41,0xf6,0x28,0x44,0x41,
0x7b,0x14,0x8c,0x41,0x7b,0x14,0x7a,0x41,0xec,0x51,0x64,0x41,0xe2,0x7a,0x8e,0x41,0x03,0xa6,0x00,0xbd,
0xec,0x51,0x64,0x41,0xe2,0x7a,0x8e,0x41,0x1f,0x85,0x63,0x41,0xce,0xcc,0x8e,0x41,0x0b,0xd7,0x63,0x41,
0x2a,0x5c,0x8f,0x41,0x03,0xa8,0x80,0x08,0x0b,0xd7,0x63,0x41,0x2a,0x5c,0x8f,0x41,0xec,0x51,0x64,0x41,
0x0b,0xd7,0x8f,0x41,0xc3,0xf5,0x64,0x41,0x0b,0xd7,0x8f,0x41,0x03,0xa8,0x80,0x08,0x1f,0x85,0x77,0x41,
0x2a,0x5c,0x8f,0x41,0x03,0xa6,0x00,0xbd,0x0b,0xd7,0x63,0x41,0x2a,0x5c,0x8f,0x41,0xec,0x51,0x64,0x41,
0x0b,0xd7,0x8f,0x41,0xc3,0xf5,0x64,0x41,0x0b,0xd7,0x8f,0x41,0x03,0xa6,0x00,0xbd,0x1f,0x85,0x77,0x41,
0x0b,0xd7,0x8f,0x41,0xc3,0xf5,0x9e,0x41,0x0b,0xd7,0x8f,0x41,0x0a,0xd7,0x9f,0x41,0x15,0xae,0x8f,0x41,
0x03,0xa8,0x80,0x08,0x0a,0xd7,0x9f,0x41,0x15,0xae,0x8f,0x41,0x66,0x66,0xa4,0x41,0x1f,0x85,0x8f,0x41,
0x00,0x00,0xaa,0x41,0x29,0x5c,0x8d,0x41,0x03,0xa8,0x80,0x08,0x00,0x00,0xaa,0x41,0x29,0x5c,0x8d,0x41,
0xe1,0x7a,0xb6,0x41,0x29,0x5c,0x89,0x41,0xc2,0xf5,0xbc,0x41,0x66,0x66,0x76,0x41,0x03,0xa8,0x80,0x08,
0x03,0xa6,0x00,0xbd,0x0a,0xd7,0x9f,0x41,0x15,0xae,0x8f,0x41,0x66,0x66,0xa4,0x41,0x1f,0x85,0x8f,0x41,
0x00,0x00,0xaa,0x41,0x29,0x5c,0x8d,0x41,0x03,0xa6,0x00,0xbd,0x00,0x00,0xaa,0x41,0x29,0x5c,0x8d,0x41,
0xe1,0x7a,0xb6,0x41,0x29,0x5c,0x89,0x41,0xc2,0xf5,0xbc,0x41,0x66,0x66,0x76,0x41,0x03,0xa6,0x00,0xbd,
0xc2,0xf5,0xbc,0x41,0x66,0x66,0x76,0x41,0xcc,0xcc,0xc2,0x41,0x33,0x33,0x5f,0x41,0xeb,0x51,0xbe,0x41,
0xf5,0x28,0x44,0x41,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,};/*1704*/

View File

@ -2,8 +2,8 @@ TK_CONST_DATA_ALIGN(const unsigned char image_meter_pointer[]) = {
0x02,0x00,0x05,0x01,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x6d,0x65,0x74,0x65,0x72,0x5f,0x70,0x6f,
0x69,0x6e,0x74,0x65,0x72,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x15,0x11,0x18,0x20,0x02,0x00,0x00,0x00,0x12,0x00,0x00,0x00,0xf0,0x00,0x00,0x00,
0x02,0x01,0x00,0x00,0x00,0x00,0x80,0x3f,0x7f,0xe7,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x02,0x1e,0x00,0xbb,0x00,0x00,0xa0,0x40,0x00,0x00,0x00,0x41,0x02,0x1e,0x00,0xbb,
0x00,0x00,0xa0,0x40,0x00,0x00,0x64,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x30,0x41,0x00,0x00,0x64,0x42,
0x02,0x1e,0x00,0xbb,0x00,0x00,0x30,0x41,0x00,0x00,0x00,0x41,0x02,0x1e,0x00,0xbb,0x00,0x00,0x80,0x41,
0x02,0x01,0x00,0x00,0x00,0x00,0x80,0x3f,0x7f,0xe7,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x02,0xde,0xd3,0xb5,0x00,0x00,0xa0,0x40,0x00,0x00,0x00,0x41,0x02,0xde,0xd3,0xb5,
0x00,0x00,0xa0,0x40,0x00,0x00,0x64,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x30,0x41,0x00,0x00,0x64,0x42,
0x02,0xde,0xd3,0xb5,0x00,0x00,0x30,0x41,0x00,0x00,0x00,0x41,0x02,0xde,0xd3,0xb5,0x00,0x00,0x80,0x41,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,};/*160*/

View File

@ -4,66 +4,66 @@ TK_CONST_DATA_ALIGN(const unsigned char image_painting_stroke_05_t[]) = {
0x00,0x00,0x00,0x00,0x15,0x11,0x18,0x20,0x02,0x00,0x00,0x00,0x2c,0x01,0x00,0x00,0xe1,0x00,0x00,0x00,
0x01,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x16,0x43,0x00,0x00,0x96,0x41,0x00,0x00,0x00,0xff,
0x52,0x65,0x6e,0x64,0x65,0x72,0x69,0x6e,0x67,0x20,0x74,0x68,0x69,0x6e,0x20,0x73,0x74,0x72,0x6f,0x6b,
0x65,0x73,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,
0x00,0x96,0x41,0x00,0x00,0xfa,0x41,0x02,0x1e,0x00,0xbb,0x00,0x00,0x96,0x41,0x00,0x80,0x3b,0x43,0x00,
0x65,0x73,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,
0x00,0x96,0x41,0x00,0x00,0xfa,0x41,0x02,0xde,0xd3,0xb5,0x00,0x00,0x96,0x41,0x00,0x80,0x3b,0x43,0x00,
0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0x80,0x3d,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,
0x92,0xf5,0x04,0x00,0x00,0xfa,0x41,0x00,0x00,0xfa,0x41,0x02,0x1e,0x00,0xbb,0x00,0x00,0xfa,0x41,0x00,
0xd2,0x21,0x0a,0x00,0x00,0xfa,0x41,0x00,0x00,0xfa,0x41,0x02,0xde,0xd3,0xb5,0x00,0x00,0xfa,0x41,0x00,
0x80,0x3b,0x43,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x3e,0x00,0x00,0x00,0xff,0x00,
0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x2f,0x42,0x00,0x00,0xfa,0x41,0x02,0x1e,0x00,0xbb,0x00,
0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x2f,0x42,0x00,0x00,0xfa,0x41,0x02,0xde,0xd3,0xb5,0x00,
0x00,0x2f,0x42,0x00,0x80,0x3b,0x43,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0x40,0x3e,0x00,
0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x61,0x42,0x00,0x00,0xfa,0x41,0x02,
0x1e,0x00,0xbb,0x00,0x00,0x61,0x42,0x00,0x80,0x3b,0x43,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,
0x00,0x80,0x3e,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x80,0x89,0x42,0x00,
0x00,0xfa,0x41,0x02,0x1e,0x00,0xbb,0x00,0x80,0x89,0x42,0x00,0x80,0x3b,0x43,0x00,0x00,0x00,0x00,0x02,
0x01,0x01,0x00,0x00,0x00,0xa0,0x3e,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,
0x80,0xa2,0x42,0x00,0x00,0xfa,0x41,0x02,0x1e,0x00,0xbb,0x00,0x80,0xa2,0x42,0x00,0x80,0x3b,0x43,0x00,
0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x61,0x42,0x00,0x00,0xfa,0x41,0x02,
0xde,0xd3,0xb5,0x00,0x00,0x61,0x42,0x00,0x80,0x3b,0x43,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,
0x00,0x80,0x3e,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x80,0x89,0x42,0x00,
0x00,0xfa,0x41,0x02,0xde,0xd3,0xb5,0x00,0x80,0x89,0x42,0x00,0x80,0x3b,0x43,0x00,0x00,0x00,0x00,0x02,
0x01,0x01,0x00,0x00,0x00,0xa0,0x3e,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,
0x80,0xa2,0x42,0x00,0x00,0xfa,0x41,0x02,0xde,0xd3,0xb5,0x00,0x80,0xa2,0x42,0x00,0x80,0x3b,0x43,0x00,
0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0xc0,0x3e,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,
0x92,0xf5,0x04,0x00,0x80,0xbb,0x42,0x00,0x00,0xfa,0x41,0x02,0x1e,0x00,0xbb,0x00,0x80,0xbb,0x42,0x00,
0xd2,0x21,0x0a,0x00,0x80,0xbb,0x42,0x00,0x00,0xfa,0x41,0x02,0xde,0xd3,0xb5,0x00,0x80,0xbb,0x42,0x00,
0x80,0x3b,0x43,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0xe0,0x3e,0x00,0x00,0x00,0xff,0x00,
0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x80,0xd4,0x42,0x00,0x00,0xfa,0x41,0x02,0x1e,0x00,0xbb,0x00,
0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x80,0xd4,0x42,0x00,0x00,0xfa,0x41,0x02,0xde,0xd3,0xb5,0x00,
0x80,0xd4,0x42,0x00,0x80,0x3b,0x43,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x3f,0x00,
0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x80,0xed,0x42,0x00,0x00,0xfa,0x41,0x02,
0x1e,0x00,0xbb,0x00,0x80,0xed,0x42,0x00,0x80,0x3b,0x43,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,
0x00,0x10,0x3f,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x40,0x03,0x43,0x00,
0x00,0xfa,0x41,0x02,0x1e,0x00,0xbb,0x00,0x40,0x03,0x43,0x00,0x80,0x3b,0x43,0x00,0x00,0x00,0x00,0x02,
0x01,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,
0xc0,0x0f,0x43,0x00,0x00,0xfa,0x41,0x02,0x1e,0x00,0xbb,0x00,0xc0,0x0f,0x43,0x00,0x80,0x3b,0x43,0x00,
0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x80,0xed,0x42,0x00,0x00,0xfa,0x41,0x02,
0xde,0xd3,0xb5,0x00,0x80,0xed,0x42,0x00,0x80,0x3b,0x43,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,
0x00,0x10,0x3f,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x40,0x03,0x43,0x00,
0x00,0xfa,0x41,0x02,0xde,0xd3,0xb5,0x00,0x40,0x03,0x43,0x00,0x80,0x3b,0x43,0x00,0x00,0x00,0x00,0x02,
0x01,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,
0xc0,0x0f,0x43,0x00,0x00,0xfa,0x41,0x02,0xde,0xd3,0xb5,0x00,0xc0,0x0f,0x43,0x00,0x80,0x3b,0x43,0x00,
0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0x30,0x3f,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,
0x92,0xf5,0x04,0x00,0x40,0x1c,0x43,0x00,0x00,0xfa,0x41,0x02,0x1e,0x00,0xbb,0x00,0x40,0x1c,0x43,0x00,
0xd2,0x21,0x0a,0x00,0x40,0x1c,0x43,0x00,0x00,0xfa,0x41,0x02,0xde,0xd3,0xb5,0x00,0x40,0x1c,0x43,0x00,
0x80,0x3b,0x43,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0x40,0x3f,0x00,0x00,0x00,0xff,0x00,
0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0xc0,0x28,0x43,0x00,0x00,0xfa,0x41,0x02,0x1e,0x00,0xbb,0x00,
0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0xc0,0x28,0x43,0x00,0x00,0xfa,0x41,0x02,0xde,0xd3,0xb5,0x00,
0xc0,0x28,0x43,0x00,0x80,0x3b,0x43,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0x50,0x3f,0x00,
0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x40,0x35,0x43,0x00,0x00,0xfa,0x41,0x02,
0x1e,0x00,0xbb,0x00,0x40,0x35,0x43,0x00,0x80,0x3b,0x43,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,
0x00,0x60,0x3f,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0xc0,0x41,0x43,0x00,
0x00,0xfa,0x41,0x02,0x1e,0x00,0xbb,0x00,0xc0,0x41,0x43,0x00,0x80,0x3b,0x43,0x00,0x00,0x00,0x00,0x02,
0x01,0x01,0x00,0x00,0x00,0x70,0x3f,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,
0x40,0x4e,0x43,0x00,0x00,0xfa,0x41,0x02,0x1e,0x00,0xbb,0x00,0x40,0x4e,0x43,0x00,0x80,0x3b,0x43,0x00,
0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x40,0x35,0x43,0x00,0x00,0xfa,0x41,0x02,
0xde,0xd3,0xb5,0x00,0x40,0x35,0x43,0x00,0x80,0x3b,0x43,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,
0x00,0x60,0x3f,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0xc0,0x41,0x43,0x00,
0x00,0xfa,0x41,0x02,0xde,0xd3,0xb5,0x00,0xc0,0x41,0x43,0x00,0x80,0x3b,0x43,0x00,0x00,0x00,0x00,0x02,
0x01,0x01,0x00,0x00,0x00,0x70,0x3f,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,
0x40,0x4e,0x43,0x00,0x00,0xfa,0x41,0x02,0xde,0xd3,0xb5,0x00,0x40,0x4e,0x43,0x00,0x80,0x3b,0x43,0x00,
0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0x80,0x3f,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,
0x92,0xf5,0x04,0x00,0xc0,0x5a,0x43,0x00,0x00,0xfa,0x41,0x02,0x1e,0x00,0xbb,0x00,0xc0,0x5a,0x43,0x00,
0xd2,0x21,0x0a,0x00,0xc0,0x5a,0x43,0x00,0x00,0xfa,0x41,0x02,0xde,0xd3,0xb5,0x00,0xc0,0x5a,0x43,0x00,
0x80,0x3b,0x43,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0x88,0x3f,0x00,0x00,0x00,0xff,0x00,
0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x40,0x67,0x43,0x00,0x00,0xfa,0x41,0x02,0x1e,0x00,0xbb,0x00,
0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x40,0x67,0x43,0x00,0x00,0xfa,0x41,0x02,0xde,0xd3,0xb5,0x00,
0x40,0x67,0x43,0x00,0x80,0x3b,0x43,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0x90,0x3f,0x00,
0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0xc0,0x73,0x43,0x00,0x00,0xfa,0x41,0x02,
0x1e,0x00,0xbb,0x00,0xc0,0x73,0x43,0x00,0x80,0x3b,0x43,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,
0x00,0x98,0x3f,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x20,0x80,0x43,0x00,
0x00,0xfa,0x41,0x02,0x1e,0x00,0xbb,0x00,0x20,0x80,0x43,0x00,0x80,0x3b,0x43,0x00,0x00,0x00,0x00,0x02,
0x01,0x01,0x00,0x00,0x00,0xa0,0x3f,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,
0x60,0x86,0x43,0x00,0x00,0xfa,0x41,0x02,0x1e,0x00,0xbb,0x00,0x60,0x86,0x43,0x00,0x80,0x3b,0x43,0x00,
0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0xc0,0x73,0x43,0x00,0x00,0xfa,0x41,0x02,
0xde,0xd3,0xb5,0x00,0xc0,0x73,0x43,0x00,0x80,0x3b,0x43,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,
0x00,0x98,0x3f,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x20,0x80,0x43,0x00,
0x00,0xfa,0x41,0x02,0xde,0xd3,0xb5,0x00,0x20,0x80,0x43,0x00,0x80,0x3b,0x43,0x00,0x00,0x00,0x00,0x02,
0x01,0x01,0x00,0x00,0x00,0xa0,0x3f,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,
0x60,0x86,0x43,0x00,0x00,0xfa,0x41,0x02,0xde,0xd3,0xb5,0x00,0x60,0x86,0x43,0x00,0x80,0x3b,0x43,0x00,
0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0xa8,0x3f,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,
0x92,0xf5,0x04,0x00,0xa0,0x8c,0x43,0x00,0x00,0xfa,0x41,0x02,0x1e,0x00,0xbb,0x00,0xa0,0x8c,0x43,0x00,
0xd2,0x21,0x0a,0x00,0xa0,0x8c,0x43,0x00,0x00,0xfa,0x41,0x02,0xde,0xd3,0xb5,0x00,0xa0,0x8c,0x43,0x00,
0x80,0x3b,0x43,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0x80,0x3d,0x00,0x00,0x00,0xff,0x00,
0x00,0x8b,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0xc8,0x40,0x00,0x00,0x7a,0x42,0x02,0x1e,0x00,0xbb,0x00,
0x00,0x8b,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0xc8,0x40,0x00,0x00,0x7a,0x42,0x02,0xde,0xd3,0xb5,0x00,
0xe0,0x92,0x43,0x00,0x00,0x7a,0x42,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0xa0,0x3e,0x00,
0x00,0x00,0xff,0x00,0x00,0x8b,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0xc8,0x40,0x00,0x80,0xbb,0x42,0x02,
0x1e,0x00,0xbb,0x00,0xe0,0x92,0x43,0x00,0x80,0xbb,0x42,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,
0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x00,0x00,0x8b,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0xc8,0x40,0x00,
0x00,0xfa,0x42,0x02,0x1e,0x00,0xbb,0x00,0xe0,0x92,0x43,0x00,0x00,0xfa,0x42,0x00,0x00,0x00,0x00,0x02,
0x01,0x01,0x00,0x00,0x00,0xa0,0x3f,0x00,0x00,0x00,0xff,0x00,0x00,0x8b,0xff,0x01,0x92,0xf5,0x04,0x00,
0x00,0xc8,0x40,0x00,0x40,0x1c,0x43,0x02,0x1e,0x00,0xbb,0x00,0xe0,0x92,0x43,0x00,0x40,0x1c,0x43,0x00,
0x00,0x00,0xff,0x00,0x00,0x8b,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0xc8,0x40,0x00,0x80,0xbb,0x42,0x02,
0xde,0xd3,0xb5,0x00,0xe0,0x92,0x43,0x00,0x80,0xbb,0x42,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,
0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x00,0x00,0x8b,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0xc8,0x40,0x00,
0x00,0xfa,0x42,0x02,0xde,0xd3,0xb5,0x00,0xe0,0x92,0x43,0x00,0x00,0xfa,0x42,0x00,0x00,0x00,0x00,0x02,
0x01,0x01,0x00,0x00,0x00,0xa0,0x3f,0x00,0x00,0x00,0xff,0x00,0x00,0x8b,0xff,0x01,0xd2,0x21,0x0a,0x00,
0x00,0xc8,0x40,0x00,0x40,0x1c,0x43,0x02,0xde,0xd3,0xb5,0x00,0xe0,0x92,0x43,0x00,0x40,0x1c,0x43,0x00,
0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xc8,0x40,0x00,0x80,0x54,0x43,0x00,
0x00,0x00,0xff,0x24,0x52,0x65,0x76,0x69,0x73,0x69,0x6f,0x6e,0x3a,0x20,0x31,0x2e,0x38,0x20,0x24,0x00,
0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x20,0x3f,
0x00,0x00,0x20,0x3f,0x02,0x1e,0x00,0xbb,0x00,0xb0,0x95,0x43,0x00,0x00,0x20,0x3f,0x02,0x1e,0x00,0xbb,
0x00,0xb0,0x95,0x43,0x00,0x60,0x60,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0x20,0x3f,0x00,0x60,0x60,0x43,
0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x20,0x3f,
0x00,0x00,0x20,0x3f,0x02,0xde,0xd3,0xb5,0x00,0xb0,0x95,0x43,0x00,0x00,0x20,0x3f,0x02,0xde,0xd3,0xb5,
0x00,0xb0,0x95,0x43,0x00,0x60,0x60,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0x20,0x3f,0x00,0x60,0x60,0x43,
0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,};/*1360*/

View File

@ -5,151 +5,151 @@ TK_CONST_DATA_ALIGN(const unsigned char image_paths_data_01_t[]) = {
0x01,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x7a,0x42,0x00,0x00,0x0c,0x41,0x00,0x00,0x00,0xff,
0x43,0x75,0x62,0x69,0x63,0x20,0x62,0x65,0x7a,0x69,0x65,0x72,0x20,0x63,0x75,0x72,0x76,0x65,0x73,0x20,
0x64,0x72,0x61,0x77,0x6e,0x20,0x77,0x69,0x74,0x68,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x73,0x3a,
0x00,0x02,0x01,0x01,0x00,0x00,0x00,0x20,0x3f,0xff,0x00,0x00,0xff,0x00,0xc0,0x00,0xff,0x01,0x92,0xf5,
0x04,0x00,0x40,0x03,0x43,0x00,0x80,0xa2,0x42,0x03,0x9a,0x80,0x09,0x00,0x40,0xb5,0x42,0x00,0x80,0xa2,
0x42,0x00,0x80,0x89,0x42,0x00,0x00,0x48,0x42,0x00,0x80,0x89,0x42,0x00,0x00,0x48,0x42,0x03,0x9a,0x80,
0x09,0x00,0x80,0x89,0x42,0x00,0x00,0x48,0x42,0x00,0x80,0x3b,0x42,0x00,0x00,0x7a,0x41,0x00,0x00,0xc8,
0x40,0x00,0x00,0x7a,0x41,0x01,0x92,0xf5,0x04,0x00,0x00,0xc8,0x40,0x00,0x80,0xa2,0x42,0x03,0x9a,0x80,
0x09,0x00,0x80,0x3b,0x42,0x00,0x80,0xa2,0x42,0x00,0x80,0x89,0x42,0x00,0x00,0x48,0x42,0x00,0x80,0x89,
0x42,0x00,0x00,0x48,0x42,0x03,0x9a,0x80,0x09,0x00,0x80,0x89,0x42,0x00,0x00,0x48,0x42,0x00,0x40,0xb5,
0x00,0x02,0x01,0x01,0x00,0x00,0x00,0x20,0x3f,0xff,0x00,0x00,0xff,0x00,0xc0,0x00,0xff,0x01,0xd2,0x21,
0x0a,0x00,0x40,0x03,0x43,0x00,0x80,0xa2,0x42,0x03,0xd6,0x01,0xbd,0x00,0x40,0xb5,0x42,0x00,0x80,0xa2,
0x42,0x00,0x80,0x89,0x42,0x00,0x00,0x48,0x42,0x00,0x80,0x89,0x42,0x00,0x00,0x48,0x42,0x03,0xd6,0x01,
0xbd,0x00,0x80,0x89,0x42,0x00,0x00,0x48,0x42,0x00,0x80,0x3b,0x42,0x00,0x00,0x7a,0x41,0x00,0x00,0xc8,
0x40,0x00,0x00,0x7a,0x41,0x01,0xd2,0x21,0x0a,0x00,0x00,0xc8,0x40,0x00,0x80,0xa2,0x42,0x03,0xd6,0x01,
0xbd,0x00,0x80,0x3b,0x42,0x00,0x80,0xa2,0x42,0x00,0x80,0x89,0x42,0x00,0x00,0x48,0x42,0x00,0x80,0x89,
0x42,0x00,0x00,0x48,0x42,0x03,0xd6,0x01,0xbd,0x00,0x80,0x89,0x42,0x00,0x00,0x48,0x42,0x00,0x40,0xb5,
0x42,0x00,0x00,0x7a,0x41,0x00,0x40,0x03,0x43,0x00,0x00,0x7a,0x41,0x00,0x00,0x00,0x00,0x02,0x01,0x00,
0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x02,0x43,0x00,0x00,0xa0,
0x42,0x02,0x1e,0x00,0xbb,0x00,0x80,0x04,0x43,0x00,0x00,0xa0,0x42,0x02,0x1e,0x00,0xbb,0x00,0x80,0x04,
0x43,0x00,0x00,0xa5,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x02,0x43,0x00,0x00,0xa5,0x42,0x04,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0x92,0xf5,
0x04,0x00,0x00,0x87,0x42,0x00,0x00,0x43,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x8c,0x42,0x00,0x00,0x43,
0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x8c,0x42,0x00,0x00,0x4d,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x87,
0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x02,0x43,0x00,0x00,0xa0,
0x42,0x02,0xde,0xd3,0xb5,0x00,0x80,0x04,0x43,0x00,0x00,0xa0,0x42,0x02,0xde,0xd3,0xb5,0x00,0x80,0x04,
0x43,0x00,0x00,0xa5,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x02,0x43,0x00,0x00,0xa5,0x42,0x04,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0xd2,0x21,
0x0a,0x00,0x00,0x87,0x42,0x00,0x00,0x43,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x8c,0x42,0x00,0x00,0x43,
0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x8c,0x42,0x00,0x00,0x4d,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x87,
0x42,0x00,0x00,0x4d,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,
0x3f,0x4a,0x83,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0xa0,0x40,0x00,0x00,0x66,0x41,0x02,0x1e,0x00,
0xbb,0x00,0x00,0xf0,0x40,0x00,0x00,0x66,0x41,0x02,0x1e,0x00,0xbb,0x00,0x00,0xf0,0x40,0x00,0x00,0x87,
0x41,0x02,0x1e,0x00,0xbb,0x00,0x00,0xa0,0x40,0x00,0x00,0x87,0x41,0x04,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0xa0,
0x40,0x00,0x00,0xa0,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0xf0,0x40,0x00,0x00,0xa0,0x42,0x02,0x1e,0x00,
0xbb,0x00,0x00,0xf0,0x40,0x00,0x00,0xa5,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0xa0,0x40,0x00,0x00,0xa5,
0x3f,0x4a,0x83,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0xa0,0x40,0x00,0x00,0x66,0x41,0x02,0xde,0xd3,
0xb5,0x00,0x00,0xf0,0x40,0x00,0x00,0x66,0x41,0x02,0xde,0xd3,0xb5,0x00,0x00,0xf0,0x40,0x00,0x00,0x87,
0x41,0x02,0xde,0xd3,0xb5,0x00,0x00,0xa0,0x40,0x00,0x00,0x87,0x41,0x04,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0xa0,
0x40,0x00,0x00,0xa0,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0xf0,0x40,0x00,0x00,0xa0,0x42,0x02,0xde,0xd3,
0xb5,0x00,0x00,0xf0,0x40,0x00,0x00,0xa5,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0xa0,0x40,0x00,0x00,0xa5,
0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,
0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x87,0x42,0x00,0x00,0x43,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x8c,
0x42,0x00,0x00,0x43,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x8c,0x42,0x00,0x00,0x4d,0x42,0x02,0x1e,0x00,
0xbb,0x00,0x00,0x87,0x42,0x00,0x00,0x4d,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,
0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x02,0x43,0x00,0x00,0x66,
0x41,0x02,0x1e,0x00,0xbb,0x00,0x80,0x04,0x43,0x00,0x00,0x66,0x41,0x02,0x1e,0x00,0xbb,0x00,0x80,0x04,
0x43,0x00,0x00,0x87,0x41,0x02,0x1e,0x00,0xbb,0x00,0x00,0x02,0x43,0x00,0x00,0x87,0x41,0x04,0x00,0x00,
0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x87,0x42,0x00,0x00,0x43,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x8c,
0x42,0x00,0x00,0x43,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x8c,0x42,0x00,0x00,0x4d,0x42,0x02,0xde,0xd3,
0xb5,0x00,0x00,0x87,0x42,0x00,0x00,0x4d,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,
0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x02,0x43,0x00,0x00,0x66,
0x41,0x02,0xde,0xd3,0xb5,0x00,0x80,0x04,0x43,0x00,0x00,0x66,0x41,0x02,0xde,0xd3,0xb5,0x00,0x80,0x04,
0x43,0x00,0x00,0x87,0x41,0x02,0xde,0xd3,0xb5,0x00,0x00,0x02,0x43,0x00,0x00,0x87,0x41,0x04,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x48,0x40,0x00,0x00,0x4d,
0x42,0x00,0x00,0x00,0xff,0x4d,0x2c,0x20,0x43,0x2c,0x20,0x53,0x2c,0x20,0x6d,0x2c,0x20,0x63,0x2c,0x20,
0x73,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,
0x16,0x43,0x00,0x00,0x61,0x42,0x03,0x9a,0x80,0x09,0x00,0x00,0x16,0x43,0x00,0x00,0x96,0x42,0x00,0x60,
0x1a,0x43,0x00,0x00,0xaf,0x42,0x00,0x40,0x35,0x43,0x00,0x00,0x61,0x42,0x03,0x9a,0x80,0x09,0x00,0x20,
0x73,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,
0x16,0x43,0x00,0x00,0x61,0x42,0x03,0xd6,0x01,0xbd,0x00,0x00,0x16,0x43,0x00,0x00,0x96,0x42,0x00,0x60,
0x1a,0x43,0x00,0x00,0xaf,0x42,0x00,0x40,0x35,0x43,0x00,0x00,0x61,0x42,0x03,0xd6,0x01,0xbd,0x00,0x20,
0x50,0x43,0x00,0x00,0xc8,0x41,0x00,0x80,0x54,0x43,0x00,0x00,0x16,0x42,0x00,0x80,0x54,0x43,0x00,0x00,
0x61,0x42,0x03,0x9a,0x80,0x09,0x00,0x80,0x54,0x43,0x00,0x40,0xd8,0x42,0x00,0x00,0x2a,0x43,0x00,0x00,
0x0c,0x42,0x00,0x40,0x1c,0x43,0x00,0x00,0x16,0x42,0x03,0x9a,0x80,0x09,0x00,0x00,0x16,0x43,0x00,0x00,
0x61,0x42,0x03,0xd6,0x01,0xbd,0x00,0x80,0x54,0x43,0x00,0x40,0xd8,0x42,0x00,0x00,0x2a,0x43,0x00,0x00,
0x0c,0x42,0x00,0x40,0x1c,0x43,0x00,0x00,0x16,0x42,0x03,0xd6,0x01,0xbd,0x00,0x00,0x16,0x43,0x00,0x00,
0x16,0x42,0x00,0x00,0x16,0x43,0x00,0x00,0x61,0x42,0x00,0x00,0x16,0x43,0x00,0x00,0x61,0x42,0x04,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0x92,
0xf5,0x04,0x00,0xc0,0x14,0x43,0x00,0x00,0x5c,0x42,0x02,0x1e,0x00,0xbb,0x00,0x40,0x17,0x43,0x00,0x00,
0x5c,0x42,0x02,0x1e,0x00,0xbb,0x00,0x40,0x17,0x43,0x00,0x00,0x66,0x42,0x02,0x1e,0x00,0xbb,0x00,0xc0,
0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0xd2,
0x21,0x0a,0x00,0xc0,0x14,0x43,0x00,0x00,0x5c,0x42,0x02,0xde,0xd3,0xb5,0x00,0x40,0x17,0x43,0x00,0x00,
0x5c,0x42,0x02,0xde,0xd3,0xb5,0x00,0x40,0x17,0x43,0x00,0x00,0x66,0x42,0x02,0xde,0xd3,0xb5,0x00,0xc0,
0x14,0x43,0x00,0x00,0x66,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,
0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x34,0x43,0x00,0x00,0x5c,0x42,0x02,0x1e,
0x00,0xbb,0x00,0x80,0x36,0x43,0x00,0x00,0x5c,0x42,0x02,0x1e,0x00,0xbb,0x00,0x80,0x36,0x43,0x00,0x00,
0x66,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x34,0x43,0x00,0x00,0x66,0x42,0x04,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x40,
0x53,0x43,0x00,0x00,0x5c,0x42,0x02,0x1e,0x00,0xbb,0x00,0xc0,0x55,0x43,0x00,0x00,0x5c,0x42,0x02,0x1e,
0x00,0xbb,0x00,0xc0,0x55,0x43,0x00,0x00,0x66,0x42,0x02,0x1e,0x00,0xbb,0x00,0x40,0x53,0x43,0x00,0x00,
0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x34,0x43,0x00,0x00,0x5c,0x42,0x02,0xde,
0xd3,0xb5,0x00,0x80,0x36,0x43,0x00,0x00,0x5c,0x42,0x02,0xde,0xd3,0xb5,0x00,0x80,0x36,0x43,0x00,0x00,
0x66,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x34,0x43,0x00,0x00,0x66,0x42,0x04,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x40,
0x53,0x43,0x00,0x00,0x5c,0x42,0x02,0xde,0xd3,0xb5,0x00,0xc0,0x55,0x43,0x00,0x00,0x5c,0x42,0x02,0xde,
0xd3,0xb5,0x00,0xc0,0x55,0x43,0x00,0x00,0x66,0x42,0x02,0xde,0xd3,0xb5,0x00,0x40,0x53,0x43,0x00,0x00,
0x66,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,
0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x1b,0x43,0x00,0x00,0x11,0x42,0x02,0x1e,0x00,0xbb,0x00,0x80,
0x1d,0x43,0x00,0x00,0x11,0x42,0x02,0x1e,0x00,0xbb,0x00,0x80,0x1d,0x43,0x00,0x00,0x1b,0x42,0x02,0x1e,
0x00,0xbb,0x00,0x00,0x1b,0x43,0x00,0x00,0x1b,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,
0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x1b,0x43,0x00,0x00,0x11,0x42,0x02,0xde,0xd3,0xb5,0x00,0x80,
0x1d,0x43,0x00,0x00,0x11,0x42,0x02,0xde,0xd3,0xb5,0x00,0x80,0x1d,0x43,0x00,0x00,0x1b,0x42,0x02,0xde,
0xd3,0xb5,0x00,0x00,0x1b,0x43,0x00,0x00,0x1b,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,
0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x20,0x1e,0x43,0x00,0x00,0xfa,0x41,0x00,0x00,0x00,0xff,0x4d,0x2c,
0x20,0x63,0x2c,0x20,0x63,0x2c,0x20,0x63,0x2c,0x20,0x43,0x2c,0x20,0x7a,0x00,0x02,0x00,0x01,0x00,0x00,
0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x48,0x42,0x00,0x80,0xd4,0x42,0x03,
0x9a,0x80,0x09,0x00,0x00,0x7a,0x42,0x00,0x80,0xd4,0x42,0x00,0x00,0xc8,0x42,0x00,0x80,0xd4,0x42,0x00,
0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x48,0x42,0x00,0x80,0xd4,0x42,0x03,
0xd6,0x01,0xbd,0x00,0x00,0x7a,0x42,0x00,0x80,0xd4,0x42,0x00,0x00,0xc8,0x42,0x00,0x80,0xd4,0x42,0x00,
0x00,0xe1,0x42,0x00,0x80,0xd4,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,
0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x43,0x42,0x00,0x00,0xd2,0x42,0x02,
0x1e,0x00,0xbb,0x00,0x00,0x4d,0x42,0x00,0x00,0xd2,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x4d,0x42,0x00,
0x00,0xd7,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x43,0x42,0x00,0x00,0xd7,0x42,0x04,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,
0x80,0xde,0x42,0x00,0x00,0xd2,0x42,0x02,0x1e,0x00,0xbb,0x00,0x80,0xe3,0x42,0x00,0x00,0xd2,0x42,0x02,
0x1e,0x00,0xbb,0x00,0x80,0xe3,0x42,0x00,0x00,0xd7,0x42,0x02,0x1e,0x00,0xbb,0x00,0x80,0xde,0x42,0x00,
0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x43,0x42,0x00,0x00,0xd2,0x42,0x02,
0xde,0xd3,0xb5,0x00,0x00,0x4d,0x42,0x00,0x00,0xd2,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x4d,0x42,0x00,
0x00,0xd7,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x43,0x42,0x00,0x00,0xd7,0x42,0x04,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,
0x80,0xde,0x42,0x00,0x00,0xd2,0x42,0x02,0xde,0xd3,0xb5,0x00,0x80,0xe3,0x42,0x00,0x00,0xd2,0x42,0x02,
0xde,0xd3,0xb5,0x00,0x80,0xe3,0x42,0x00,0x00,0xd7,0x42,0x02,0xde,0xd3,0xb5,0x00,0x80,0xde,0x42,0x00,
0x00,0xd7,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,
0x80,0x89,0x42,0x00,0x80,0xed,0x42,0x00,0x00,0x00,0xff,0x4d,0x2c,0x20,0x43,0x2c,0x20,0x5a,0x00,0x02,
0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0xc0,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x48,0x40,0x00,
0x80,0x22,0x43,0x03,0x9a,0x80,0x09,0x00,0x00,0xc8,0x41,0x00,0x80,0x22,0x43,0x00,0x00,0x16,0x42,0x00,
0xc0,0xda,0x42,0x00,0x80,0x09,0x42,0x00,0x00,0xc8,0x42,0x03,0x9a,0x80,0x09,0x00,0x00,0xfa,0x41,0x00,
0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0xc0,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x48,0x40,0x00,
0x80,0x22,0x43,0x03,0xd6,0x01,0xbd,0x00,0x00,0xc8,0x41,0x00,0x80,0x22,0x43,0x00,0x00,0x16,0x42,0x00,
0xc0,0xda,0x42,0x00,0x80,0x09,0x42,0x00,0x00,0xc8,0x42,0x03,0xd6,0x01,0xbd,0x00,0x00,0xfa,0x41,0x00,
0xc0,0xda,0x42,0x00,0x00,0x2f,0x42,0x00,0x80,0x22,0x43,0x00,0x40,0x83,0x42,0x00,0x80,0x22,0x43,0x04,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,
0x92,0xf5,0x04,0x00,0x00,0xf0,0x3f,0x00,0x40,0x21,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0x8c,0x40,0x00,
0x40,0x21,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0x8c,0x40,0x00,0xc0,0x23,0x43,0x02,0x1e,0x00,0xbb,0x00,
0xd2,0x21,0x0a,0x00,0x00,0xf0,0x3f,0x00,0x40,0x21,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0x8c,0x40,0x00,
0x40,0x21,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0x8c,0x40,0x00,0xc0,0x23,0x43,0x02,0xde,0xd3,0xb5,0x00,
0x00,0xf0,0x3f,0x00,0xc0,0x23,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,
0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x80,0x04,0x42,0x00,0x80,0xc5,0x42,0x02,
0x1e,0x00,0xbb,0x00,0x80,0x0e,0x42,0x00,0x80,0xc5,0x42,0x02,0x1e,0x00,0xbb,0x00,0x80,0x0e,0x42,0x00,
0x80,0xca,0x42,0x02,0x1e,0x00,0xbb,0x00,0x80,0x04,0x42,0x00,0x80,0xca,0x42,0x04,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,
0xc0,0x80,0x42,0x00,0x40,0x21,0x43,0x02,0x1e,0x00,0xbb,0x00,0xc0,0x85,0x42,0x00,0x40,0x21,0x43,0x02,
0x1e,0x00,0xbb,0x00,0xc0,0x85,0x42,0x00,0xc0,0x23,0x43,0x02,0x1e,0x00,0xbb,0x00,0xc0,0x80,0x42,0x00,
0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x80,0x04,0x42,0x00,0x80,0xc5,0x42,0x02,
0xde,0xd3,0xb5,0x00,0x80,0x0e,0x42,0x00,0x80,0xc5,0x42,0x02,0xde,0xd3,0xb5,0x00,0x80,0x0e,0x42,0x00,
0x80,0xca,0x42,0x02,0xde,0xd3,0xb5,0x00,0x80,0x04,0x42,0x00,0x80,0xca,0x42,0x04,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,
0xc0,0x80,0x42,0x00,0x40,0x21,0x43,0x02,0xde,0xd3,0xb5,0x00,0xc0,0x85,0x42,0x00,0x40,0x21,0x43,0x02,
0xde,0xd3,0xb5,0x00,0xc0,0x85,0x42,0x00,0xc0,0x23,0x43,0x02,0xde,0xd3,0xb5,0x00,0xc0,0x80,0x42,0x00,
0xc0,0x23,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,
0x80,0x54,0x42,0x00,0x80,0x09,0x43,0x00,0x00,0x00,0xff,0x4d,0x2c,0x20,0x43,0x2c,0x20,0x63,0x2c,0x20,
0x5a,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,
0xfa,0x42,0x00,0x80,0x22,0x43,0x03,0x9a,0x80,0x09,0x00,0x40,0x1c,0x43,0x00,0x80,0x09,0x43,0x00,0x40,
0x1c,0x43,0x00,0x00,0xc8,0x42,0x00,0xa0,0x0c,0x43,0x00,0x00,0xc8,0x42,0x03,0x9a,0x80,0x09,0x00,0x00,
0x5a,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,
0xfa,0x42,0x00,0x80,0x22,0x43,0x03,0xd6,0x01,0xbd,0x00,0x40,0x1c,0x43,0x00,0x80,0x09,0x43,0x00,0x40,
0x1c,0x43,0x00,0x00,0xc8,0x42,0x00,0xa0,0x0c,0x43,0x00,0x00,0xc8,0x42,0x03,0xd6,0x01,0xbd,0x00,0x00,
0xfa,0x42,0x00,0x00,0xc8,0x42,0x00,0x00,0xfa,0x42,0x00,0x80,0x09,0x43,0x00,0x40,0x1c,0x43,0x00,0x80,
0x22,0x43,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0x92,
0xf5,0x04,0x00,0x80,0xf7,0x42,0x00,0x40,0x21,0x43,0x02,0x1e,0x00,0xbb,0x00,0x80,0xfc,0x42,0x00,0x40,
0x21,0x43,0x02,0x1e,0x00,0xbb,0x00,0x80,0xfc,0x42,0x00,0xc0,0x23,0x43,0x02,0x1e,0x00,0xbb,0x00,0x80,
0x22,0x43,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0xd2,
0x21,0x0a,0x00,0x80,0xf7,0x42,0x00,0x40,0x21,0x43,0x02,0xde,0xd3,0xb5,0x00,0x80,0xfc,0x42,0x00,0x40,
0x21,0x43,0x02,0xde,0xd3,0xb5,0x00,0x80,0xfc,0x42,0x00,0xc0,0x23,0x43,0x02,0xde,0xd3,0xb5,0x00,0x80,
0xf7,0x42,0x00,0xc0,0x23,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,
0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x60,0x0b,0x43,0x00,0x80,0xc5,0x42,0x02,0x1e,
0x00,0xbb,0x00,0xe0,0x0d,0x43,0x00,0x80,0xc5,0x42,0x02,0x1e,0x00,0xbb,0x00,0xe0,0x0d,0x43,0x00,0x80,
0xca,0x42,0x02,0x1e,0x00,0xbb,0x00,0x60,0x0b,0x43,0x00,0x80,0xca,0x42,0x04,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,
0x1b,0x43,0x00,0x40,0x21,0x43,0x02,0x1e,0x00,0xbb,0x00,0x80,0x1d,0x43,0x00,0x40,0x21,0x43,0x02,0x1e,
0x00,0xbb,0x00,0x80,0x1d,0x43,0x00,0xc0,0x23,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0x1b,0x43,0x00,0xc0,
0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x60,0x0b,0x43,0x00,0x80,0xc5,0x42,0x02,0xde,
0xd3,0xb5,0x00,0xe0,0x0d,0x43,0x00,0x80,0xc5,0x42,0x02,0xde,0xd3,0xb5,0x00,0xe0,0x0d,0x43,0x00,0x80,
0xca,0x42,0x02,0xde,0xd3,0xb5,0x00,0x60,0x0b,0x43,0x00,0x80,0xca,0x42,0x04,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,
0x1b,0x43,0x00,0x40,0x21,0x43,0x02,0xde,0xd3,0xb5,0x00,0x80,0x1d,0x43,0x00,0x40,0x21,0x43,0x02,0xde,
0xd3,0xb5,0x00,0x80,0x1d,0x43,0x00,0xc0,0x23,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0x1b,0x43,0x00,0xc0,
0x23,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x40,
0xce,0x42,0x00,0x40,0x03,0x43,0x00,0x00,0x00,0xff,0x6d,0x2c,0x20,0x63,0x2c,0x20,0x73,0x00,0x02,0x01,
0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,
0x61,0x43,0x00,0x00,0x7a,0x42,0x03,0x9a,0x80,0x09,0x00,0x40,0x83,0x43,0x00,0x00,0x61,0x42,0x00,0xc0,
0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,
0x61,0x43,0x00,0x00,0x7a,0x42,0x03,0xd6,0x01,0xbd,0x00,0x40,0x83,0x43,0x00,0x00,0x61,0x42,0x00,0xc0,
0x8f,0x43,0x00,0x00,0xaf,0x42,0x00,0xa0,0x8c,0x43,0x00,0x80,0xed,0x42,0x00,0x00,0x00,0x00,0x02,0x01,
0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0xc0,0x5f,0x43,0x00,0x00,
0x75,0x42,0x02,0x1e,0x00,0xbb,0x00,0x40,0x62,0x43,0x00,0x00,0x75,0x42,0x02,0x1e,0x00,0xbb,0x00,0x40,
0x62,0x43,0x00,0x00,0x7f,0x42,0x02,0x1e,0x00,0xbb,0x00,0xc0,0x5f,0x43,0x00,0x00,0x7f,0x42,0x04,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0x92,
0xf5,0x04,0x00,0x00,0x8c,0x43,0x00,0x00,0xeb,0x42,0x02,0x1e,0x00,0xbb,0x00,0x40,0x8d,0x43,0x00,0x00,
0xeb,0x42,0x02,0x1e,0x00,0xbb,0x00,0x40,0x8d,0x43,0x00,0x00,0xf0,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,
0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0xc0,0x5f,0x43,0x00,0x00,
0x75,0x42,0x02,0xde,0xd3,0xb5,0x00,0x40,0x62,0x43,0x00,0x00,0x75,0x42,0x02,0xde,0xd3,0xb5,0x00,0x40,
0x62,0x43,0x00,0x00,0x7f,0x42,0x02,0xde,0xd3,0xb5,0x00,0xc0,0x5f,0x43,0x00,0x00,0x7f,0x42,0x04,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0xd2,
0x21,0x0a,0x00,0x00,0x8c,0x43,0x00,0x00,0xeb,0x42,0x02,0xde,0xd3,0xb5,0x00,0x40,0x8d,0x43,0x00,0x00,
0xeb,0x42,0x02,0xde,0xd3,0xb5,0x00,0x40,0x8d,0x43,0x00,0x00,0xf0,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,
0x8c,0x43,0x00,0x00,0xf0,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,
0x20,0x3f,0x00,0x00,0x61,0x43,0x00,0x80,0xbb,0x42,0x00,0x00,0x00,0xff,0x4d,0x2c,0x20,0x43,0x00,0x02,
0x01,0x01,0x00,0x00,0x00,0x20,0x3f,0xff,0xff,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,
0x00,0x61,0x43,0x00,0x40,0x03,0x43,0x03,0x9a,0x80,0x09,0x00,0x00,0x61,0x43,0x00,0xc0,0x0f,0x43,0x00,
0x00,0x57,0x43,0x00,0xc0,0x19,0x43,0x00,0x80,0x4a,0x43,0x00,0xc0,0x19,0x43,0x03,0x9a,0x80,0x09,0x00,
0x01,0x01,0x00,0x00,0x00,0x20,0x3f,0xff,0xff,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,
0x00,0x61,0x43,0x00,0x40,0x03,0x43,0x03,0xd6,0x01,0xbd,0x00,0x00,0x61,0x43,0x00,0xc0,0x0f,0x43,0x00,
0x00,0x57,0x43,0x00,0xc0,0x19,0x43,0x00,0x80,0x4a,0x43,0x00,0xc0,0x19,0x43,0x03,0xd6,0x01,0xbd,0x00,
0x00,0x3e,0x43,0x00,0xc0,0x19,0x43,0x00,0x00,0x34,0x43,0x00,0xc0,0x0f,0x43,0x00,0x00,0x34,0x43,0x00,
0x40,0x03,0x43,0x03,0x9a,0x80,0x09,0x00,0x00,0x34,0x43,0x00,0x80,0xed,0x42,0x00,0x00,0x3e,0x43,0x00,
0x80,0xd9,0x42,0x00,0x80,0x4a,0x43,0x00,0x80,0xd9,0x42,0x03,0x9a,0x80,0x09,0x00,0x00,0x57,0x43,0x00,
0x40,0x03,0x43,0x03,0xd6,0x01,0xbd,0x00,0x00,0x34,0x43,0x00,0x80,0xed,0x42,0x00,0x00,0x3e,0x43,0x00,
0x80,0xd9,0x42,0x00,0x80,0x4a,0x43,0x00,0x80,0xd9,0x42,0x03,0xd6,0x01,0xbd,0x00,0x00,0x57,0x43,0x00,
0x80,0xd9,0x42,0x00,0x00,0x61,0x43,0x00,0x80,0xed,0x42,0x00,0x00,0x61,0x43,0x00,0x40,0x03,0x43,0x04,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,
0x92,0xf5,0x04,0x00,0xc0,0x5f,0x43,0x00,0x00,0x02,0x43,0x02,0x1e,0x00,0xbb,0x00,0x40,0x62,0x43,0x00,
0x00,0x02,0x43,0x02,0x1e,0x00,0xbb,0x00,0x40,0x62,0x43,0x00,0x80,0x04,0x43,0x02,0x1e,0x00,0xbb,0x00,
0xd2,0x21,0x0a,0x00,0xc0,0x5f,0x43,0x00,0x00,0x02,0x43,0x02,0xde,0xd3,0xb5,0x00,0x40,0x62,0x43,0x00,
0x00,0x02,0x43,0x02,0xde,0xd3,0xb5,0x00,0x40,0x62,0x43,0x00,0x80,0x04,0x43,0x02,0xde,0xd3,0xb5,0x00,
0xc0,0x5f,0x43,0x00,0x80,0x04,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,
0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x40,0x49,0x43,0x00,0x80,0x18,0x43,0x02,
0x1e,0x00,0xbb,0x00,0xc0,0x4b,0x43,0x00,0x80,0x18,0x43,0x02,0x1e,0x00,0xbb,0x00,0xc0,0x4b,0x43,0x00,
0x00,0x1b,0x43,0x02,0x1e,0x00,0xbb,0x00,0x40,0x49,0x43,0x00,0x00,0x1b,0x43,0x04,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,
0xc0,0x32,0x43,0x00,0x00,0x02,0x43,0x02,0x1e,0x00,0xbb,0x00,0x40,0x35,0x43,0x00,0x00,0x02,0x43,0x02,
0x1e,0x00,0xbb,0x00,0x40,0x35,0x43,0x00,0x80,0x04,0x43,0x02,0x1e,0x00,0xbb,0x00,0xc0,0x32,0x43,0x00,
0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x40,0x49,0x43,0x00,0x80,0x18,0x43,0x02,
0xde,0xd3,0xb5,0x00,0xc0,0x4b,0x43,0x00,0x80,0x18,0x43,0x02,0xde,0xd3,0xb5,0x00,0xc0,0x4b,0x43,0x00,
0x00,0x1b,0x43,0x02,0xde,0xd3,0xb5,0x00,0x40,0x49,0x43,0x00,0x00,0x1b,0x43,0x04,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,
0xc0,0x32,0x43,0x00,0x00,0x02,0x43,0x02,0xde,0xd3,0xb5,0x00,0x40,0x35,0x43,0x00,0x00,0x02,0x43,0x02,
0xde,0xd3,0xb5,0x00,0x40,0x35,0x43,0x00,0x80,0x04,0x43,0x02,0xde,0xd3,0xb5,0x00,0xc0,0x32,0x43,0x00,
0x80,0x04,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,
0x83,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x40,0x49,0x43,0x00,0x00,0xd7,0x42,0x02,0x1e,0x00,0xbb,0x00,
0xc0,0x4b,0x43,0x00,0x00,0xd7,0x42,0x02,0x1e,0x00,0xbb,0x00,0xc0,0x4b,0x43,0x00,0x00,0xdc,0x42,0x02,
0x1e,0x00,0xbb,0x00,0x40,0x49,0x43,0x00,0x00,0xdc,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,
0x83,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x40,0x49,0x43,0x00,0x00,0xd7,0x42,0x02,0xde,0xd3,0xb5,0x00,
0xc0,0x4b,0x43,0x00,0x00,0xd7,0x42,0x02,0xde,0xd3,0xb5,0x00,0xc0,0x4b,0x43,0x00,0x00,0xdc,0x42,0x02,
0xde,0xd3,0xb5,0x00,0x40,0x49,0x43,0x00,0x00,0xdc,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,
0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x40,0x35,0x43,0x00,0xa0,0x25,0x43,0x00,0x00,0x00,0xff,0x4d,
0x2c,0x20,0x63,0x2c,0x20,0x73,0x2c,0x20,0x73,0x2c,0x20,0x73,0x2c,0x20,0x7a,0x00,0x02,0x01,0x01,0x00,
0x00,0x00,0x20,0x3f,0xf0,0xff,0x00,0xff,0xff,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x61,0x43,
0x00,0x20,0x4b,0x43,0x03,0x9a,0x80,0x09,0x00,0x00,0x48,0x43,0x00,0xa0,0x25,0x43,0x00,0x30,0x8e,0x43,
0x00,0x00,0x20,0x3f,0xf0,0xff,0x00,0xff,0xff,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x61,0x43,
0x00,0x20,0x4b,0x43,0x03,0xd6,0x01,0xbd,0x00,0x00,0x48,0x43,0x00,0xa0,0x25,0x43,0x00,0x30,0x8e,0x43,
0x00,0xa0,0x0c,0x43,0x00,0x80,0x89,0x43,0x00,0x20,0x4b,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0xc0,0x5f,0x43,
0x00,0xe0,0x49,0x43,0x02,0x1e,0x00,0xbb,0x00,0x40,0x62,0x43,0x00,0xe0,0x49,0x43,0x02,0x1e,0x00,0xbb,
0x00,0x40,0x62,0x43,0x00,0x60,0x4c,0x43,0x02,0x1e,0x00,0xbb,0x00,0xc0,0x5f,0x43,0x00,0x60,0x4c,0x43,
0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0xc0,0x5f,0x43,
0x00,0xe0,0x49,0x43,0x02,0xde,0xd3,0xb5,0x00,0x40,0x62,0x43,0x00,0xe0,0x49,0x43,0x02,0xde,0xd3,0xb5,
0x00,0x40,0x62,0x43,0x00,0x60,0x4c,0x43,0x02,0xde,0xd3,0xb5,0x00,0xc0,0x5f,0x43,0x00,0x60,0x4c,0x43,
0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x4a,0x83,0xff,0xff,
0x01,0x92,0xf5,0x04,0x00,0xe0,0x88,0x43,0x00,0xe0,0x49,0x43,0x02,0x1e,0x00,0xbb,0x00,0x20,0x8a,0x43,
0x00,0xe0,0x49,0x43,0x02,0x1e,0x00,0xbb,0x00,0x20,0x8a,0x43,0x00,0x60,0x4c,0x43,0x02,0x1e,0x00,0xbb,
0x01,0xd2,0x21,0x0a,0x00,0xe0,0x88,0x43,0x00,0xe0,0x49,0x43,0x02,0xde,0xd3,0xb5,0x00,0x20,0x8a,0x43,
0x00,0xe0,0x49,0x43,0x02,0xde,0xd3,0xb5,0x00,0x20,0x8a,0x43,0x00,0x60,0x4c,0x43,0x02,0xde,0xd3,0xb5,
0x00,0xe0,0x88,0x43,0x00,0x60,0x4c,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,
0x00,0x00,0x20,0x3f,0x00,0x80,0x6d,0x43,0x00,0x80,0x54,0x43,0x00,0x00,0x00,0xff,0x6d,0x2c,0x20,0x63,
0x2c,0x20,0x7a,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xc8,0x40,0x00,0x80,0x54,0x43,
0x00,0x00,0x00,0xff,0x24,0x52,0x65,0x76,0x69,0x73,0x69,0x6f,0x6e,0x3a,0x20,0x31,0x2e,0x36,0x20,0x24,
0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x20,
0x3f,0x00,0x00,0x20,0x3f,0x02,0x1e,0x00,0xbb,0x00,0xb0,0x95,0x43,0x00,0x00,0x20,0x3f,0x02,0x1e,0x00,
0xbb,0x00,0xb0,0x95,0x43,0x00,0x60,0x60,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0x20,0x3f,0x00,0x60,0x60,
0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x20,
0x3f,0x00,0x00,0x20,0x3f,0x02,0xde,0xd3,0xb5,0x00,0xb0,0x95,0x43,0x00,0x00,0x20,0x3f,0x02,0xde,0xd3,
0xb5,0x00,0xb0,0x95,0x43,0x00,0x60,0x60,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0x20,0x3f,0x00,0x60,0x60,
0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,};/*3061*/

View File

@ -5,157 +5,157 @@ TK_CONST_DATA_ALIGN(const unsigned char image_paths_data_02_t[]) = {
0x01,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x96,0x42,0x00,0x00,0x0c,0x41,0x00,0x00,0x00,0xff,
0x51,0x75,0x61,0x64,0x72,0x69,0x63,0x20,0x62,0x65,0x7a,0x69,0x65,0x72,0x20,0x63,0x75,0x72,0x76,0x65,
0x73,0x20,0x64,0x72,0x61,0x77,0x6e,0x20,0x77,0x69,0x74,0x68,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,
0x73,0x3a,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0xf0,0x3f,0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,
0x00,0x16,0x41,0x00,0x00,0x48,0x41,0x03,0x08,0x81,0x09,0x00,0x00,0x7a,0x41,0xaa,0xaa,0x58,0x42,0x55,
0x55,0x1e,0x42,0x00,0x00,0x61,0x42,0x00,0x80,0xa2,0x42,0x00,0x00,0x96,0x41,0x01,0x92,0xf5,0x04,0x00,
0x00,0xe1,0x42,0x00,0x00,0x48,0x42,0x03,0x08,0x81,0x09,0x00,0x80,0xa2,0x42,0x55,0x55,0x05,0x41,0xaa,
0x73,0x3a,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0xf0,0x3f,0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,
0x00,0x16,0x41,0x00,0x00,0x48,0x41,0x03,0x82,0x80,0xbd,0x00,0x00,0x7a,0x41,0xaa,0xaa,0x58,0x42,0x55,
0x55,0x1e,0x42,0x00,0x00,0x61,0x42,0x00,0x80,0xa2,0x42,0x00,0x00,0x96,0x41,0x01,0xd2,0x21,0x0a,0x00,
0x00,0xe1,0x42,0x00,0x00,0x48,0x42,0x03,0x82,0x80,0xbd,0x00,0x80,0xa2,0x42,0x55,0x55,0x05,0x41,0xaa,
0x2a,0x3d,0x42,0x55,0x55,0x85,0xc0,0x00,0x00,0x2a,0x41,0x00,0x00,0x48,0x41,0x04,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x48,0x42,0x00,0x00,0x57,0x42,0x00,
0x00,0x00,0xff,0x4d,0x2c,0x20,0x51,0x2c,0x20,0x4d,0x2c,0x20,0x71,0x2c,0x20,0x7a,0x00,0x02,0x01,0x00,
0x00,0x00,0x00,0x20,0x3f,0x00,0xc0,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x02,0x41,0x00,0x00,0x34,
0x41,0x02,0x1e,0x00,0xbb,0x00,0x00,0x2a,0x41,0x00,0x00,0x34,0x41,0x02,0x1e,0x00,0xbb,0x00,0x00,0x2a,
0x41,0x00,0x00,0x5c,0x41,0x02,0x1e,0x00,0xbb,0x00,0x00,0x02,0x41,0x00,0x00,0x5c,0x41,0x04,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0xc0,0x00,0xff,0x01,0x92,0xf5,
0x04,0x00,0x00,0xa0,0x42,0x00,0x00,0x8c,0x41,0x02,0x1e,0x00,0xbb,0x00,0x00,0xa5,0x42,0x00,0x00,0x8c,
0x41,0x02,0x1e,0x00,0xbb,0x00,0x00,0xa5,0x42,0x00,0x00,0xa0,0x41,0x02,0x1e,0x00,0xbb,0x00,0x00,0xa0,
0x00,0x00,0x00,0x20,0x3f,0x00,0xc0,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x02,0x41,0x00,0x00,0x34,
0x41,0x02,0xde,0xd3,0xb5,0x00,0x00,0x2a,0x41,0x00,0x00,0x34,0x41,0x02,0xde,0xd3,0xb5,0x00,0x00,0x2a,
0x41,0x00,0x00,0x5c,0x41,0x02,0xde,0xd3,0xb5,0x00,0x00,0x02,0x41,0x00,0x00,0x5c,0x41,0x04,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0xc0,0x00,0xff,0x01,0xd2,0x21,
0x0a,0x00,0x00,0xa0,0x42,0x00,0x00,0x8c,0x41,0x02,0xde,0xd3,0xb5,0x00,0x00,0xa5,0x42,0x00,0x00,0x8c,
0x41,0x02,0xde,0xd3,0xb5,0x00,0x00,0xa5,0x42,0x00,0x00,0xa0,0x41,0x02,0xde,0xd3,0xb5,0x00,0x00,0xa0,
0x42,0x00,0x00,0xa0,0x41,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,
0x3f,0x00,0xc0,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x80,0xde,0x42,0x00,0x00,0x43,0x42,0x02,0x1e,0x00,
0xbb,0x00,0x80,0xe3,0x42,0x00,0x00,0x43,0x42,0x02,0x1e,0x00,0xbb,0x00,0x80,0xe3,0x42,0x00,0x00,0x4d,
0x42,0x02,0x1e,0x00,0xbb,0x00,0x80,0xde,0x42,0x00,0x00,0x4d,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0xc0,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x16,
0x41,0x00,0x00,0x34,0x41,0x02,0x1e,0x00,0xbb,0x00,0x00,0x3e,0x41,0x00,0x00,0x34,0x41,0x02,0x1e,0x00,
0xbb,0x00,0x00,0x3e,0x41,0x00,0x00,0x5c,0x41,0x02,0x1e,0x00,0xbb,0x00,0x00,0x16,0x41,0x00,0x00,0x5c,
0x3f,0x00,0xc0,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x80,0xde,0x42,0x00,0x00,0x43,0x42,0x02,0xde,0xd3,
0xb5,0x00,0x80,0xe3,0x42,0x00,0x00,0x43,0x42,0x02,0xde,0xd3,0xb5,0x00,0x80,0xe3,0x42,0x00,0x00,0x4d,
0x42,0x02,0xde,0xd3,0xb5,0x00,0x80,0xde,0x42,0x00,0x00,0x4d,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0xc0,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x16,
0x41,0x00,0x00,0x34,0x41,0x02,0xde,0xd3,0xb5,0x00,0x00,0x3e,0x41,0x00,0x00,0x34,0x41,0x02,0xde,0xd3,
0xb5,0x00,0x00,0x3e,0x41,0x00,0x00,0x5c,0x41,0x02,0xde,0xd3,0xb5,0x00,0x00,0x16,0x41,0x00,0x00,0x5c,
0x41,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0x20,0x3f,0xff,0xff,0x00,
0xff,0xcf,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x80,0x68,0x43,0x00,0x80,0xa2,0x42,0x03,0x08,0x81,
0x09,0x56,0xd5,0x3e,0x43,0xaa,0xaa,0x3f,0x42,0x00,0x40,0x49,0x43,0x56,0x55,0xb7,0x41,0x00,0xe0,0x83,
0x43,0x00,0x00,0xc8,0x40,0x04,0x00,0x00,0x00,0x01,0x92,0xf5,0x04,0x00,0x20,0x8a,0x43,0x00,0x80,0xa2,
0x42,0x03,0x08,0x81,0x09,0xab,0x8a,0x94,0x43,0x00,0x00,0x96,0x41,0x55,0x35,0x8c,0x43,0x00,0x00,0x00,
0xff,0xcf,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x80,0x68,0x43,0x00,0x80,0xa2,0x42,0x03,0x82,0x80,
0xbd,0x56,0xd5,0x3e,0x43,0xaa,0xaa,0x3f,0x42,0x00,0x40,0x49,0x43,0x56,0x55,0xb7,0x41,0x00,0xe0,0x83,
0x43,0x00,0x00,0xc8,0x40,0x04,0x00,0x00,0x00,0x01,0xd2,0x21,0x0a,0x00,0x20,0x8a,0x43,0x00,0x80,0xa2,
0x42,0x03,0x82,0x80,0xbd,0xab,0x8a,0x94,0x43,0x00,0x00,0x96,0x41,0x55,0x35,0x8c,0x43,0x00,0x00,0x00,
0x00,0x00,0x40,0x62,0x43,0x00,0x00,0xc8,0x41,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,
0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x5c,0x43,0x00,0x80,0xbb,0x42,0x00,0x00,0x00,0xff,0x6d,0x2c,0x20,
0x71,0x2c,0x20,0x7a,0x2c,0x20,0x6d,0x2c,0x20,0x71,0x2c,0x20,0x7a,0x00,0x02,0x01,0x00,0x00,0x00,0x00,
0x20,0x3f,0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x40,0x67,0x43,0x00,0x00,0xa0,0x42,0x02,0x1e,
0x00,0xbb,0x00,0xc0,0x69,0x43,0x00,0x00,0xa0,0x42,0x02,0x1e,0x00,0xbb,0x00,0xc0,0x69,0x43,0x00,0x00,
0xa5,0x42,0x02,0x1e,0x00,0xbb,0x00,0x40,0x67,0x43,0x00,0x00,0xa5,0x42,0x04,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x40,
0x83,0x43,0x00,0x00,0xa0,0x40,0x02,0x1e,0x00,0xbb,0x00,0x80,0x84,0x43,0x00,0x00,0xa0,0x40,0x02,0x1e,
0x00,0xbb,0x00,0x80,0x84,0x43,0x00,0x00,0xf0,0x40,0x02,0x1e,0x00,0xbb,0x00,0x40,0x83,0x43,0x00,0x00,
0x20,0x3f,0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x40,0x67,0x43,0x00,0x00,0xa0,0x42,0x02,0xde,
0xd3,0xb5,0x00,0xc0,0x69,0x43,0x00,0x00,0xa0,0x42,0x02,0xde,0xd3,0xb5,0x00,0xc0,0x69,0x43,0x00,0x00,
0xa5,0x42,0x02,0xde,0xd3,0xb5,0x00,0x40,0x67,0x43,0x00,0x00,0xa5,0x42,0x04,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x40,
0x83,0x43,0x00,0x00,0xa0,0x40,0x02,0xde,0xd3,0xb5,0x00,0x80,0x84,0x43,0x00,0x00,0xa0,0x40,0x02,0xde,
0xd3,0xb5,0x00,0x80,0x84,0x43,0x00,0x00,0xf0,0x40,0x02,0xde,0xd3,0xb5,0x00,0x40,0x83,0x43,0x00,0x00,
0xf0,0x40,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,
0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x80,0x89,0x43,0x00,0x00,0xa0,0x42,0x02,0x1e,0x00,0xbb,0x00,0xc0,
0x8a,0x43,0x00,0x00,0xa0,0x42,0x02,0x1e,0x00,0xbb,0x00,0xc0,0x8a,0x43,0x00,0x00,0xa5,0x42,0x02,0x1e,
0x00,0xbb,0x00,0x80,0x89,0x43,0x00,0x00,0xa5,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,
0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x61,0x43,0x00,0x00,
0xbe,0x41,0x02,0x1e,0x00,0xbb,0x00,0x80,0x63,0x43,0x00,0x00,0xbe,0x41,0x02,0x1e,0x00,0xbb,0x00,0x80,
0x63,0x43,0x00,0x00,0xd2,0x41,0x02,0x1e,0x00,0xbb,0x00,0x00,0x61,0x43,0x00,0x00,0xd2,0x41,0x04,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0xff,0xff,0xff,0x01,0x92,
0xf5,0x04,0x00,0x00,0x0c,0x43,0x00,0xc0,0x80,0x42,0x03,0x08,0x81,0x09,0xab,0x2a,0x10,0x43,0xab,0xaa,
0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x80,0x89,0x43,0x00,0x00,0xa0,0x42,0x02,0xde,0xd3,0xb5,0x00,0xc0,
0x8a,0x43,0x00,0x00,0xa0,0x42,0x02,0xde,0xd3,0xb5,0x00,0xc0,0x8a,0x43,0x00,0x00,0xa5,0x42,0x02,0xde,
0xd3,0xb5,0x00,0x80,0x89,0x43,0x00,0x00,0xa5,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,
0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x61,0x43,0x00,0x00,
0xbe,0x41,0x02,0xde,0xd3,0xb5,0x00,0x80,0x63,0x43,0x00,0x00,0xbe,0x41,0x02,0xde,0xd3,0xb5,0x00,0x80,
0x63,0x43,0x00,0x00,0xd2,0x41,0x02,0xde,0xd3,0xb5,0x00,0x00,0x61,0x43,0x00,0x00,0xd2,0x41,0x04,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0xff,0xff,0xff,0x01,0xd2,
0x21,0x0a,0x00,0x00,0x0c,0x43,0x00,0xc0,0x80,0x42,0x03,0x82,0x80,0xbd,0xab,0x2a,0x10,0x43,0xab,0xaa,
0x83,0x41,0x56,0xd5,0x20,0x43,0x00,0x00,0xf0,0x3f,0x00,0x00,0x3e,0x43,0x00,0x00,0xa5,0x41,0x04,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xf0,0x42,0x00,0x00,
0xb4,0x41,0x00,0x00,0x00,0xff,0x4d,0x2c,0x20,0x51,0x2c,0x20,0x5a,0x00,0x02,0x01,0x00,0x00,0x00,0x00,
0x20,0x3f,0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0xc0,0x0a,0x43,0x00,0x80,0x7c,0x42,0x02,0x1e,
0x00,0xbb,0x00,0x40,0x0d,0x43,0x00,0x80,0x7c,0x42,0x02,0x1e,0x00,0xbb,0x00,0x40,0x0d,0x43,0x00,0x40,
0x83,0x42,0x02,0x1e,0x00,0xbb,0x00,0xc0,0x0a,0x43,0x00,0x40,0x83,0x42,0x04,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0xc0,
0x3c,0x43,0x00,0x00,0x9b,0x41,0x02,0x1e,0x00,0xbb,0x00,0x40,0x3f,0x43,0x00,0x00,0x9b,0x41,0x02,0x1e,
0x00,0xbb,0x00,0x40,0x3f,0x43,0x00,0x00,0xaf,0x41,0x02,0x1e,0x00,0xbb,0x00,0xc0,0x3c,0x43,0x00,0x00,
0x20,0x3f,0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0xc0,0x0a,0x43,0x00,0x80,0x7c,0x42,0x02,0xde,
0xd3,0xb5,0x00,0x40,0x0d,0x43,0x00,0x80,0x7c,0x42,0x02,0xde,0xd3,0xb5,0x00,0x40,0x0d,0x43,0x00,0x40,
0x83,0x42,0x02,0xde,0xd3,0xb5,0x00,0xc0,0x0a,0x43,0x00,0x40,0x83,0x42,0x04,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0xc0,
0x3c,0x43,0x00,0x00,0x9b,0x41,0x02,0xde,0xd3,0xb5,0x00,0x40,0x3f,0x43,0x00,0x00,0x9b,0x41,0x02,0xde,
0xd3,0xb5,0x00,0x40,0x3f,0x43,0x00,0x00,0xaf,0x41,0x02,0xde,0xd3,0xb5,0x00,0xc0,0x3c,0x43,0x00,0x00,
0xaf,0x41,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0xc0,
0x00,0xff,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x02,0x43,0x00,0x00,0xd2,0x42,0x03,0x08,
0x81,0x09,0x55,0xd5,0x16,0x43,0xab,0xaa,0x12,0x43,0xaa,0xaa,0x2b,0x43,0xab,0xaa,0x12,0x43,0x00,0x80,
0x40,0x43,0x00,0x00,0xd2,0x42,0x03,0x08,0x81,0x09,0x56,0x55,0x55,0x43,0x56,0x55,0x7d,0x42,0xaa,0xea,
0x4a,0x43,0xaa,0xaa,0x53,0x42,0x00,0x40,0x21,0x43,0x00,0x80,0x93,0x42,0x03,0x08,0x81,0x09,0xaa,0x2a,
0x00,0xff,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x02,0x43,0x00,0x00,0xd2,0x42,0x03,0x82,
0x80,0xbd,0x55,0xd5,0x16,0x43,0xab,0xaa,0x12,0x43,0xaa,0xaa,0x2b,0x43,0xab,0xaa,0x12,0x43,0x00,0x80,
0x40,0x43,0x00,0x00,0xd2,0x42,0x03,0x82,0x80,0xbd,0x56,0x55,0x55,0x43,0x56,0x55,0x7d,0x42,0xaa,0xea,
0x4a,0x43,0xaa,0xaa,0x53,0x42,0x00,0x40,0x21,0x43,0x00,0x80,0x93,0x42,0x03,0x82,0x80,0xbd,0xaa,0x2a,
0xd6,0x42,0x00,0x00,0x75,0x42,0x56,0x55,0xc1,0x42,0x55,0x55,0x8f,0x42,0x00,0x00,0x02,0x43,0x00,0x00,
0xd2,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x80,
0x40,0x43,0x00,0x00,0xeb,0x42,0x00,0x00,0x00,0xff,0x4d,0x2c,0x20,0x51,0x2c,0x20,0x54,0x2c,0x20,0x51,
0x2c,0x20,0x7a,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,
0x00,0xc0,0x00,0x43,0x00,0x80,0xcf,0x42,0x02,0x1e,0x00,0xbb,0x00,0x40,0x03,0x43,0x00,0x80,0xcf,0x42,
0x02,0x1e,0x00,0xbb,0x00,0x40,0x03,0x43,0x00,0x80,0xd4,0x42,0x02,0x1e,0x00,0xbb,0x00,0xc0,0x00,0x43,
0x2c,0x20,0x7a,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,
0x00,0xc0,0x00,0x43,0x00,0x80,0xcf,0x42,0x02,0xde,0xd3,0xb5,0x00,0x40,0x03,0x43,0x00,0x80,0xcf,0x42,
0x02,0xde,0xd3,0xb5,0x00,0x40,0x03,0x43,0x00,0x80,0xd4,0x42,0x02,0xde,0xd3,0xb5,0x00,0xc0,0x00,0x43,
0x00,0x80,0xd4,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,
0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x40,0x3f,0x43,0x00,0x80,0xcf,0x42,0x02,0x1e,0x00,0xbb,
0x00,0xc0,0x41,0x43,0x00,0x80,0xcf,0x42,0x02,0x1e,0x00,0xbb,0x00,0xc0,0x41,0x43,0x00,0x80,0xd4,0x42,
0x02,0x1e,0x00,0xbb,0x00,0x40,0x3f,0x43,0x00,0x80,0xd4,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x20,0x43,
0x00,0x00,0x91,0x42,0x02,0x1e,0x00,0xbb,0x00,0x80,0x22,0x43,0x00,0x00,0x91,0x42,0x02,0x1e,0x00,0xbb,
0x00,0x80,0x22,0x43,0x00,0x00,0x96,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x20,0x43,0x00,0x00,0x96,0x42,
0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x40,0x3f,0x43,0x00,0x80,0xcf,0x42,0x02,0xde,0xd3,0xb5,
0x00,0xc0,0x41,0x43,0x00,0x80,0xcf,0x42,0x02,0xde,0xd3,0xb5,0x00,0xc0,0x41,0x43,0x00,0x80,0xd4,0x42,
0x02,0xde,0xd3,0xb5,0x00,0x40,0x3f,0x43,0x00,0x80,0xd4,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x20,0x43,
0x00,0x00,0x91,0x42,0x02,0xde,0xd3,0xb5,0x00,0x80,0x22,0x43,0x00,0x00,0x91,0x42,0x02,0xde,0xd3,0xb5,
0x00,0x80,0x22,0x43,0x00,0x00,0x96,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x20,0x43,0x00,0x00,0x96,0x42,
0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xff,0xff,
0x01,0x92,0xf5,0x04,0x00,0xc0,0x00,0x43,0x00,0xc0,0x00,0x43,0x02,0x1e,0x00,0xbb,0x00,0x40,0x03,0x43,
0x00,0xc0,0x00,0x43,0x02,0x1e,0x00,0xbb,0x00,0x40,0x03,0x43,0x00,0x40,0x03,0x43,0x02,0x1e,0x00,0xbb,
0x01,0xd2,0x21,0x0a,0x00,0xc0,0x00,0x43,0x00,0xc0,0x00,0x43,0x02,0xde,0xd3,0xb5,0x00,0x40,0x03,0x43,
0x00,0xc0,0x00,0x43,0x02,0xde,0xd3,0xb5,0x00,0x40,0x03,0x43,0x00,0x40,0x03,0x43,0x02,0xde,0xd3,0xb5,
0x00,0xc0,0x00,0x43,0x00,0x40,0x03,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,
0x00,0x00,0x20,0x3f,0xcf,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x16,0x42,0x00,0x00,0x7a,0x42,
0x03,0x08,0x81,0x09,0x55,0x55,0x85,0xc0,0xaa,0xaa,0xa6,0x42,0x55,0x55,0x85,0xc0,0x56,0x55,0xd0,0x42,
0x00,0x00,0x16,0x42,0x00,0x00,0xfa,0x42,0x03,0x08,0x81,0x09,0x55,0x55,0x9e,0x42,0x56,0x55,0xd0,0x42,
0x00,0x00,0x20,0x3f,0xcf,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x16,0x42,0x00,0x00,0x7a,0x42,
0x03,0x82,0x80,0xbd,0x55,0x55,0x85,0xc0,0xaa,0xaa,0xa6,0x42,0x55,0x55,0x85,0xc0,0x56,0x55,0xd0,0x42,
0x00,0x00,0x16,0x42,0x00,0x00,0xfa,0x42,0x03,0x82,0x80,0xbd,0x55,0x55,0x9e,0x42,0x56,0x55,0xd0,0x42,
0x55,0x55,0x9e,0x42,0xaa,0xaa,0xa6,0x42,0x00,0x00,0x16,0x42,0x00,0x00,0x7a,0x42,0x04,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x48,0x42,0x00,0x00,0xfa,0x42,
0x00,0x00,0x00,0xff,0x4d,0x2c,0x20,0x51,0x2c,0x20,0x51,0x2c,0x20,0x7a,0x00,0x02,0x01,0x00,0x00,0x00,
0x00,0x20,0x3f,0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x11,0x42,0x00,0x00,0x75,0x42,0x02,
0x1e,0x00,0xbb,0x00,0x00,0x1b,0x42,0x00,0x00,0x75,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x1b,0x42,0x00,
0x00,0x7f,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x11,0x42,0x00,0x00,0x7f,0x42,0x04,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,
0x00,0x11,0x42,0x00,0x80,0xf7,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x1b,0x42,0x00,0x80,0xf7,0x42,0x02,
0x1e,0x00,0xbb,0x00,0x00,0x1b,0x42,0x00,0x80,0xfc,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x11,0x42,0x00,
0x00,0x20,0x3f,0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x11,0x42,0x00,0x00,0x75,0x42,0x02,
0xde,0xd3,0xb5,0x00,0x00,0x1b,0x42,0x00,0x00,0x75,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x1b,0x42,0x00,
0x00,0x7f,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x11,0x42,0x00,0x00,0x7f,0x42,0x04,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,
0x00,0x11,0x42,0x00,0x80,0xf7,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x1b,0x42,0x00,0x80,0xf7,0x42,0x02,
0xde,0xd3,0xb5,0x00,0x00,0x1b,0x42,0x00,0x80,0xfc,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x11,0x42,0x00,
0x80,0xfc,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,
0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x11,0x42,0x00,0x00,0x75,0x42,0x02,0x1e,0x00,0xbb,0x00,
0x00,0x1b,0x42,0x00,0x00,0x75,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x1b,0x42,0x00,0x00,0x7f,0x42,0x02,
0x1e,0x00,0xbb,0x00,0x00,0x11,0x42,0x00,0x00,0x7f,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,
0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0xff,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x16,0x43,0x00,
0x00,0x39,0x43,0x03,0x08,0x81,0x09,0xaa,0x6a,0x20,0x43,0x55,0x55,0x0f,0x43,0x56,0x35,0x2a,0x43,0x55,
0x55,0x0f,0x43,0x00,0x60,0x33,0x43,0x00,0x00,0x39,0x43,0x03,0x08,0x81,0x09,0xaa,0x8a,0x3c,0x43,0xaa,
0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x11,0x42,0x00,0x00,0x75,0x42,0x02,0xde,0xd3,0xb5,0x00,
0x00,0x1b,0x42,0x00,0x00,0x75,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x1b,0x42,0x00,0x00,0x7f,0x42,0x02,
0xde,0xd3,0xb5,0x00,0x00,0x11,0x42,0x00,0x00,0x7f,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,
0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0xff,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x16,0x43,0x00,
0x00,0x39,0x43,0x03,0x82,0x80,0xbd,0xaa,0x6a,0x20,0x43,0x55,0x55,0x0f,0x43,0x56,0x35,0x2a,0x43,0x55,
0x55,0x0f,0x43,0x00,0x60,0x33,0x43,0x00,0x00,0x39,0x43,0x03,0x82,0x80,0xbd,0xaa,0x8a,0x3c,0x43,0xaa,
0xaa,0x62,0x43,0x56,0x55,0x46,0x43,0xaa,0xaa,0x62,0x43,0x00,0xc0,0x50,0x43,0x00,0x00,0x39,0x43,0x03,
0x08,0x81,0x09,0xaa,0x2a,0x5b,0x43,0x55,0x55,0x0f,0x43,0x56,0xf5,0x64,0x43,0x55,0x55,0x0f,0x43,0x00,
0x20,0x6e,0x43,0x00,0x00,0x39,0x43,0x03,0x08,0x81,0x09,0xaa,0x4a,0x77,0x43,0xaa,0xaa,0x62,0x43,0xab,
0x8a,0x80,0x43,0xaa,0xaa,0x62,0x43,0x00,0xc0,0x85,0x43,0x00,0x00,0x39,0x43,0x03,0x08,0x81,0x09,0x55,
0x82,0x80,0xbd,0xaa,0x2a,0x5b,0x43,0x55,0x55,0x0f,0x43,0x56,0xf5,0x64,0x43,0x55,0x55,0x0f,0x43,0x00,
0x20,0x6e,0x43,0x00,0x00,0x39,0x43,0x03,0x82,0x80,0xbd,0xaa,0x4a,0x77,0x43,0xaa,0xaa,0x62,0x43,0xab,
0x8a,0x80,0x43,0xaa,0xaa,0x62,0x43,0x00,0xc0,0x85,0x43,0x00,0x00,0x39,0x43,0x03,0x82,0x80,0xbd,0x55,
0xf5,0x8a,0x43,0x55,0x55,0x0f,0x43,0xab,0xda,0x8f,0x43,0x55,0x55,0x0f,0x43,0x00,0x70,0x94,0x43,0x00,
0x00,0x39,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,
0x80,0x6d,0x43,0x00,0x80,0x13,0x43,0x00,0x00,0x00,0xff,0x4d,0x2c,0x20,0x71,0x2c,0x20,0x74,0x2c,0x20,
0x74,0x2c,0x20,0x74,0x2c,0x20,0x74,0x2c,0x20,0x7a,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,
0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0xc0,0x14,0x43,0x00,0xc0,0x37,0x43,0x02,0x1e,0x00,0xbb,0x00,
0x40,0x17,0x43,0x00,0xc0,0x37,0x43,0x02,0x1e,0x00,0xbb,0x00,0x40,0x17,0x43,0x00,0x40,0x3a,0x43,0x02,
0x1e,0x00,0xbb,0x00,0xc0,0x14,0x43,0x00,0x40,0x3a,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,
0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x20,0x32,0x43,0x00,
0xc0,0x37,0x43,0x02,0x1e,0x00,0xbb,0x00,0xa0,0x34,0x43,0x00,0xc0,0x37,0x43,0x02,0x1e,0x00,0xbb,0x00,
0xa0,0x34,0x43,0x00,0x40,0x3a,0x43,0x02,0x1e,0x00,0xbb,0x00,0x20,0x32,0x43,0x00,0x40,0x3a,0x43,0x04,
0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0xc0,0x14,0x43,0x00,0xc0,0x37,0x43,0x02,0xde,0xd3,0xb5,0x00,
0x40,0x17,0x43,0x00,0xc0,0x37,0x43,0x02,0xde,0xd3,0xb5,0x00,0x40,0x17,0x43,0x00,0x40,0x3a,0x43,0x02,
0xde,0xd3,0xb5,0x00,0xc0,0x14,0x43,0x00,0x40,0x3a,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,
0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x20,0x32,0x43,0x00,
0xc0,0x37,0x43,0x02,0xde,0xd3,0xb5,0x00,0xa0,0x34,0x43,0x00,0xc0,0x37,0x43,0x02,0xde,0xd3,0xb5,0x00,
0xa0,0x34,0x43,0x00,0x40,0x3a,0x43,0x02,0xde,0xd3,0xb5,0x00,0x20,0x32,0x43,0x00,0x40,0x3a,0x43,0x04,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xff,0xff,0x01,
0x92,0xf5,0x04,0x00,0x80,0x4f,0x43,0x00,0xc0,0x37,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0x52,0x43,0x00,
0xc0,0x37,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0x52,0x43,0x00,0x40,0x3a,0x43,0x02,0x1e,0x00,0xbb,0x00,
0xd2,0x21,0x0a,0x00,0x80,0x4f,0x43,0x00,0xc0,0x37,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0x52,0x43,0x00,
0xc0,0x37,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0x52,0x43,0x00,0x40,0x3a,0x43,0x02,0xde,0xd3,0xb5,0x00,
0x80,0x4f,0x43,0x00,0x40,0x3a,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,
0x00,0x20,0x3f,0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0xe0,0x6c,0x43,0x00,0xc0,0x37,0x43,0x02,
0x1e,0x00,0xbb,0x00,0x60,0x6f,0x43,0x00,0xc0,0x37,0x43,0x02,0x1e,0x00,0xbb,0x00,0x60,0x6f,0x43,0x00,
0x40,0x3a,0x43,0x02,0x1e,0x00,0xbb,0x00,0xe0,0x6c,0x43,0x00,0x40,0x3a,0x43,0x04,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,
0x20,0x85,0x43,0x00,0xc0,0x37,0x43,0x02,0x1e,0x00,0xbb,0x00,0x60,0x86,0x43,0x00,0xc0,0x37,0x43,0x02,
0x1e,0x00,0xbb,0x00,0x60,0x86,0x43,0x00,0x40,0x3a,0x43,0x02,0x1e,0x00,0xbb,0x00,0x20,0x85,0x43,0x00,
0x00,0x20,0x3f,0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0xe0,0x6c,0x43,0x00,0xc0,0x37,0x43,0x02,
0xde,0xd3,0xb5,0x00,0x60,0x6f,0x43,0x00,0xc0,0x37,0x43,0x02,0xde,0xd3,0xb5,0x00,0x60,0x6f,0x43,0x00,
0x40,0x3a,0x43,0x02,0xde,0xd3,0xb5,0x00,0xe0,0x6c,0x43,0x00,0x40,0x3a,0x43,0x04,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,
0x20,0x85,0x43,0x00,0xc0,0x37,0x43,0x02,0xde,0xd3,0xb5,0x00,0x60,0x86,0x43,0x00,0xc0,0x37,0x43,0x02,
0xde,0xd3,0xb5,0x00,0x60,0x86,0x43,0x00,0x40,0x3a,0x43,0x02,0xde,0xd3,0xb5,0x00,0x20,0x85,0x43,0x00,
0x40,0x3a,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,
0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0xd0,0x93,0x43,0x00,0xc0,0x37,0x43,0x02,0x1e,0x00,0xbb,0x00,
0x10,0x95,0x43,0x00,0xc0,0x37,0x43,0x02,0x1e,0x00,0xbb,0x00,0x10,0x95,0x43,0x00,0x40,0x3a,0x43,0x02,
0x1e,0x00,0xbb,0x00,0xd0,0x93,0x43,0x00,0x40,0x3a,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,
0x01,0x01,0x00,0x00,0x00,0xa0,0x3f,0x00,0x00,0xc0,0xff,0x00,0xcf,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,
0x00,0xd7,0x42,0x00,0x40,0xf1,0x42,0x03,0x08,0x81,0x09,0xab,0xaa,0x83,0x42,0x55,0x75,0x0d,0x43,0xab,
0xaa,0x83,0x42,0x00,0xe0,0x17,0x43,0x00,0x00,0xd7,0x42,0x00,0xe0,0x17,0x43,0x03,0x08,0x81,0x09,0xab,
0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0xd0,0x93,0x43,0x00,0xc0,0x37,0x43,0x02,0xde,0xd3,0xb5,0x00,
0x10,0x95,0x43,0x00,0xc0,0x37,0x43,0x02,0xde,0xd3,0xb5,0x00,0x10,0x95,0x43,0x00,0x40,0x3a,0x43,0x02,
0xde,0xd3,0xb5,0x00,0xd0,0x93,0x43,0x00,0x40,0x3a,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,
0x01,0x01,0x00,0x00,0x00,0xa0,0x3f,0x00,0x00,0xc0,0xff,0x00,0xcf,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,
0x00,0xd7,0x42,0x00,0x40,0xf1,0x42,0x03,0x82,0x80,0xbd,0xab,0xaa,0x83,0x42,0x55,0x75,0x0d,0x43,0xab,
0xaa,0x83,0x42,0x00,0xe0,0x17,0x43,0x00,0x00,0xd7,0x42,0x00,0xe0,0x17,0x43,0x03,0x82,0x80,0xbd,0xab,
0xaa,0x83,0x42,0x00,0xe0,0x17,0x43,0xab,0xaa,0x83,0x42,0xaa,0x4a,0x22,0x43,0x00,0x00,0xd7,0x42,0x00,
0x20,0x37,0x43,0x03,0x08,0x81,0x09,0xab,0x2a,0x15,0x43,0xaa,0x4a,0x22,0x43,0xab,0x2a,0x15,0x43,0x00,
0xe0,0x17,0x43,0x00,0x00,0xd7,0x42,0x00,0xe0,0x17,0x43,0x03,0x08,0x81,0x09,0xab,0x2a,0x15,0x43,0x00,
0x20,0x37,0x43,0x03,0x82,0x80,0xbd,0xab,0x2a,0x15,0x43,0xaa,0x4a,0x22,0x43,0xab,0x2a,0x15,0x43,0x00,
0xe0,0x17,0x43,0x00,0x00,0xd7,0x42,0x00,0xe0,0x17,0x43,0x03,0x82,0x80,0xbd,0xab,0x2a,0x15,0x43,0x00,
0xe0,0x17,0x43,0xab,0x2a,0x15,0x43,0x55,0x75,0x0d,0x43,0x00,0x00,0xd7,0x42,0x00,0x40,0xf1,0x42,0x04,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xf0,0x41,0x00,
0x00,0x2f,0x43,0x00,0x00,0x00,0xff,0x4d,0x2c,0x20,0x71,0x2c,0x20,0x51,0x2c,0x20,0x71,0x2c,0x20,0x51,
0x2c,0x20,0x7a,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0xff,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,
0x00,0x80,0xd4,0x42,0x00,0xc0,0xee,0x42,0x02,0x1e,0x00,0xbb,0x00,0x80,0xd9,0x42,0x00,0xc0,0xee,0x42,
0x02,0x1e,0x00,0xbb,0x00,0x80,0xd9,0x42,0x00,0xc0,0xf3,0x42,0x02,0x1e,0x00,0xbb,0x00,0x80,0xd4,0x42,
0x2c,0x20,0x7a,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0xff,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,
0x00,0x80,0xd4,0x42,0x00,0xc0,0xee,0x42,0x02,0xde,0xd3,0xb5,0x00,0x80,0xd9,0x42,0x00,0xc0,0xee,0x42,
0x02,0xde,0xd3,0xb5,0x00,0x80,0xd9,0x42,0x00,0xc0,0xf3,0x42,0x02,0xde,0xd3,0xb5,0x00,0x80,0xd4,0x42,
0x00,0xc0,0xf3,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,
0xff,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x80,0xd4,0x42,0x00,0xa0,0x16,0x43,0x02,0x1e,0x00,0xbb,
0x00,0x80,0xd9,0x42,0x00,0xa0,0x16,0x43,0x02,0x1e,0x00,0xbb,0x00,0x80,0xd9,0x42,0x00,0x20,0x19,0x43,
0x02,0x1e,0x00,0xbb,0x00,0x80,0xd4,0x42,0x00,0x20,0x19,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0xff,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x80,0xd4,0x42,
0x00,0xe0,0x35,0x43,0x02,0x1e,0x00,0xbb,0x00,0x80,0xd9,0x42,0x00,0xe0,0x35,0x43,0x02,0x1e,0x00,0xbb,
0x00,0x80,0xd9,0x42,0x00,0x60,0x38,0x43,0x02,0x1e,0x00,0xbb,0x00,0x80,0xd4,0x42,0x00,0x60,0x38,0x43,
0xff,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x80,0xd4,0x42,0x00,0xa0,0x16,0x43,0x02,0xde,0xd3,0xb5,
0x00,0x80,0xd9,0x42,0x00,0xa0,0x16,0x43,0x02,0xde,0xd3,0xb5,0x00,0x80,0xd9,0x42,0x00,0x20,0x19,0x43,
0x02,0xde,0xd3,0xb5,0x00,0x80,0xd4,0x42,0x00,0x20,0x19,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0xff,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x80,0xd4,0x42,
0x00,0xe0,0x35,0x43,0x02,0xde,0xd3,0xb5,0x00,0x80,0xd9,0x42,0x00,0xe0,0x35,0x43,0x02,0xde,0xd3,0xb5,
0x00,0x80,0xd9,0x42,0x00,0x60,0x38,0x43,0x02,0xde,0xd3,0xb5,0x00,0x80,0xd4,0x42,0x00,0x60,0x38,0x43,
0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0xff,0x00,0x00,0xff,
0x01,0x92,0xf5,0x04,0x00,0x80,0xd4,0x42,0x00,0xa0,0x16,0x43,0x02,0x1e,0x00,0xbb,0x00,0x80,0xd9,0x42,
0x00,0xa0,0x16,0x43,0x02,0x1e,0x00,0xbb,0x00,0x80,0xd9,0x42,0x00,0x20,0x19,0x43,0x02,0x1e,0x00,0xbb,
0x01,0xd2,0x21,0x0a,0x00,0x80,0xd4,0x42,0x00,0xa0,0x16,0x43,0x02,0xde,0xd3,0xb5,0x00,0x80,0xd9,0x42,
0x00,0xa0,0x16,0x43,0x02,0xde,0xd3,0xb5,0x00,0x80,0xd9,0x42,0x00,0x20,0x19,0x43,0x02,0xde,0xd3,0xb5,
0x00,0x80,0xd4,0x42,0x00,0x20,0x19,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,
0x00,0x00,0x20,0x3f,0xff,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x80,0xd4,0x42,0x00,0xc0,0xee,0x42,
0x02,0x1e,0x00,0xbb,0x00,0x80,0xd9,0x42,0x00,0xc0,0xee,0x42,0x02,0x1e,0x00,0xbb,0x00,0x80,0xd9,0x42,
0x00,0xc0,0xf3,0x42,0x02,0x1e,0x00,0xbb,0x00,0x80,0xd4,0x42,0x00,0xc0,0xf3,0x42,0x04,0x00,0x00,0x00,
0x00,0x00,0x20,0x3f,0xff,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x80,0xd4,0x42,0x00,0xc0,0xee,0x42,
0x02,0xde,0xd3,0xb5,0x00,0x80,0xd9,0x42,0x00,0xc0,0xee,0x42,0x02,0xde,0xd3,0xb5,0x00,0x80,0xd9,0x42,
0x00,0xc0,0xf3,0x42,0x02,0xde,0xd3,0xb5,0x00,0x80,0xd4,0x42,0x00,0xc0,0xf3,0x42,0x04,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xc8,0x40,0x00,0x80,0x54,0x43,
0x00,0x00,0x00,0xff,0x24,0x52,0x65,0x76,0x69,0x73,0x69,0x6f,0x6e,0x3a,0x20,0x31,0x2e,0x36,0x20,0x24,
0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x20,
0x3f,0x00,0x00,0x20,0x3f,0x02,0x1e,0x00,0xbb,0x00,0xb0,0x95,0x43,0x00,0x00,0x20,0x3f,0x02,0x1e,0x00,
0xbb,0x00,0xb0,0x95,0x43,0x00,0x60,0x60,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0x20,0x3f,0x00,0x60,0x60,
0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x20,
0x3f,0x00,0x00,0x20,0x3f,0x02,0xde,0xd3,0xb5,0x00,0xb0,0x95,0x43,0x00,0x00,0x20,0x3f,0x02,0xde,0xd3,
0xb5,0x00,0xb0,0x95,0x43,0x00,0x60,0x60,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0x20,0x3f,0x00,0x60,0x60,
0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,};/*3181*/

View File

@ -2,17 +2,17 @@ TK_CONST_DATA_ALIGN(const unsigned char image_pointer[]) = {
0x02,0x00,0x05,0x01,0x18,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x15,0x11,0x18,0x20,0x02,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x00,0x00,
0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x3d,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x22,0x22,0xd2,0x41,
0xef,0xee,0x4e,0x41,0x02,0x1e,0x00,0xbb,0xbc,0xbb,0x7b,0x41,0xab,0xaa,0xaa,0x3f,0x02,0x1e,0x00,0xbb,
0x66,0x66,0xa6,0x40,0xef,0xee,0x4e,0x41,0x03,0x43,0x10,0x09,0x89,0x88,0x88,0x40,0xef,0xee,0x5e,0x41,
0x55,0x55,0x95,0x40,0xbc,0xbb,0x6b,0x41,0x00,0x00,0xc0,0x40,0xbc,0xbb,0x6b,0x41,0x02,0x1e,0x00,0xbb,
0xde,0xdd,0x2d,0x41,0xbc,0xbb,0x6b,0x41,0x02,0x1e,0x00,0xbb,0xde,0xdd,0x2d,0x41,0x11,0x11,0xe1,0x41,
0x03,0x43,0x10,0x09,0xde,0xdd,0x2d,0x41,0xbc,0xbb,0xeb,0x41,0xef,0xee,0x3e,0x41,0xcd,0xcc,0xf4,0x41,
0x56,0x55,0x55,0x41,0xcd,0xcc,0xf4,0x41,0x02,0x1e,0x00,0xbb,0x9a,0x99,0x91,0x41,0xcd,0xcc,0xf4,0x41,
0x03,0x43,0x10,0x09,0xef,0xee,0x96,0x41,0xcd,0xcc,0xf4,0x41,0xbc,0xbb,0x9b,0x41,0xab,0xaa,0xf2,0x41,
0x78,0x77,0x9f,0x41,0xef,0xee,0xee,0x41,0x03,0x43,0x10,0x09,0x34,0x33,0xa3,0x41,0x33,0x33,0xeb,0x41,
0x56,0x55,0xa5,0x41,0x66,0x66,0xe6,0x41,0x56,0x55,0xa5,0x41,0x11,0x11,0xe1,0x41,0x02,0x1e,0x00,0xbb,
0x56,0x55,0xa5,0x41,0xbc,0xbb,0x6b,0x41,0x02,0x1e,0x00,0xbb,0x45,0x44,0xcc,0x41,0xbc,0xbb,0x6b,0x41,
0x03,0x43,0x10,0x09,0xf0,0xee,0xd6,0x41,0xbc,0xbb,0x6b,0x41,0x9a,0x99,0xd9,0x41,0xef,0xee,0x5e,0x41,
0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x3d,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x22,0x22,0xd2,0x41,
0xef,0xee,0x4e,0x41,0x02,0xde,0xd3,0xb5,0xbc,0xbb,0x7b,0x41,0xab,0xaa,0xaa,0x3f,0x02,0xde,0xd3,0xb5,
0x66,0x66,0xa6,0x40,0xef,0xee,0x4e,0x41,0x03,0x43,0x00,0xbe,0x89,0x88,0x88,0x40,0xef,0xee,0x5e,0x41,
0x55,0x55,0x95,0x40,0xbc,0xbb,0x6b,0x41,0x00,0x00,0xc0,0x40,0xbc,0xbb,0x6b,0x41,0x02,0xde,0xd3,0xb5,
0xde,0xdd,0x2d,0x41,0xbc,0xbb,0x6b,0x41,0x02,0xde,0xd3,0xb5,0xde,0xdd,0x2d,0x41,0x11,0x11,0xe1,0x41,
0x03,0x43,0x00,0xbe,0xde,0xdd,0x2d,0x41,0xbc,0xbb,0xeb,0x41,0xef,0xee,0x3e,0x41,0xcd,0xcc,0xf4,0x41,
0x56,0x55,0x55,0x41,0xcd,0xcc,0xf4,0x41,0x02,0xde,0xd3,0xb5,0x9a,0x99,0x91,0x41,0xcd,0xcc,0xf4,0x41,
0x03,0x43,0x00,0xbe,0xef,0xee,0x96,0x41,0xcd,0xcc,0xf4,0x41,0xbc,0xbb,0x9b,0x41,0xab,0xaa,0xf2,0x41,
0x78,0x77,0x9f,0x41,0xef,0xee,0xee,0x41,0x03,0x43,0x00,0xbe,0x34,0x33,0xa3,0x41,0x33,0x33,0xeb,0x41,
0x56,0x55,0xa5,0x41,0x66,0x66,0xe6,0x41,0x56,0x55,0xa5,0x41,0x11,0x11,0xe1,0x41,0x02,0xde,0xd3,0xb5,
0x56,0x55,0xa5,0x41,0xbc,0xbb,0x6b,0x41,0x02,0xde,0xd3,0xb5,0x45,0x44,0xcc,0x41,0xbc,0xbb,0x6b,0x41,
0x03,0x43,0x00,0xbe,0xf0,0xee,0xd6,0x41,0xbc,0xbb,0x6b,0x41,0x9a,0x99,0xd9,0x41,0xef,0xee,0x5e,0x41,
0x23,0x22,0xd2,0x41,0xef,0xee,0x4e,0x41,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,};/*328*/

View File

@ -2,63 +2,63 @@ TK_CONST_DATA_ALIGN(const unsigned char image_pointer_1[]) = {
0x02,0x00,0x05,0x01,0xac,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x5f,
0x31,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x15,0x11,0x18,0x20,0x02,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x00,0x00,
0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x3d,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x1b,0x2f,0xe9,0x41,
0xfa,0x7e,0x36,0x41,0x03,0x38,0x81,0x08,0xf6,0x28,0xe4,0x41,0xfe,0xd4,0x2c,0x41,0x7f,0x6a,0xde,0x41,
0xec,0x51,0x2c,0x41,0xe6,0xd0,0xdc,0x41,0xb0,0x72,0x2c,0x41,0x02,0x1e,0x00,0xbb,0x90,0xc2,0xcb,0x41,
0xb0,0x72,0x2c,0x41,0x03,0x38,0x81,0x08,0xc5,0x20,0xc8,0x41,0xfc,0xa9,0x19,0x41,0xbf,0x9f,0xc0,0x41,
0x29,0x5c,0x13,0x41,0x94,0x18,0xbc,0x41,0x79,0xe9,0x12,0x41,0x02,0x1e,0x00,0xbb,0xaa,0xf1,0xa8,0x41,
0x79,0xe9,0x12,0x41,0x03,0x38,0x81,0x08,0xae,0x47,0xa5,0x41,0xbc,0x74,0xfb,0x40,0x5c,0x8f,0x9c,0x41,
0xf8,0x53,0xeb,0x40,0x42,0x60,0x97,0x41,0xfe,0xd4,0xe8,0x40,0x02,0x1e,0x00,0xbb,0xc3,0xf5,0x96,0x41,
0x75,0x93,0xe8,0x40,0x02,0x1e,0x00,0xbb,0x29,0x5c,0x83,0x41,0x75,0x93,0xe8,0x40,0x02,0x1e,0x00,0xbb,
0x29,0x5c,0x83,0x41,0x0c,0x02,0x2b,0x40,0x03,0x38,0x81,0x08,0xd5,0x78,0x83,0x41,0x0c,0x02,0x1b,0x40,
0x42,0x60,0x83,0x41,0x72,0x68,0xd1,0x3f,0x56,0x0e,0x7d,0x41,0x7c,0x3f,0x75,0x3f,0x03,0x38,0x81,0x08,
0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x3d,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x1b,0x2f,0xe9,0x41,
0xfa,0x7e,0x36,0x41,0x03,0xae,0x00,0xbd,0xf6,0x28,0xe4,0x41,0xfe,0xd4,0x2c,0x41,0x7f,0x6a,0xde,0x41,
0xec,0x51,0x2c,0x41,0xe6,0xd0,0xdc,0x41,0xb0,0x72,0x2c,0x41,0x02,0xde,0xd3,0xb5,0x90,0xc2,0xcb,0x41,
0xb0,0x72,0x2c,0x41,0x03,0xae,0x00,0xbd,0xc5,0x20,0xc8,0x41,0xfc,0xa9,0x19,0x41,0xbf,0x9f,0xc0,0x41,
0x29,0x5c,0x13,0x41,0x94,0x18,0xbc,0x41,0x79,0xe9,0x12,0x41,0x02,0xde,0xd3,0xb5,0xaa,0xf1,0xa8,0x41,
0x79,0xe9,0x12,0x41,0x03,0xae,0x00,0xbd,0xae,0x47,0xa5,0x41,0xbc,0x74,0xfb,0x40,0x5c,0x8f,0x9c,0x41,
0xf8,0x53,0xeb,0x40,0x42,0x60,0x97,0x41,0xfe,0xd4,0xe8,0x40,0x02,0xde,0xd3,0xb5,0xc3,0xf5,0x96,0x41,
0x75,0x93,0xe8,0x40,0x02,0xde,0xd3,0xb5,0x29,0x5c,0x83,0x41,0x75,0x93,0xe8,0x40,0x02,0xde,0xd3,0xb5,
0x29,0x5c,0x83,0x41,0x0c,0x02,0x2b,0x40,0x03,0xae,0x00,0xbd,0xd5,0x78,0x83,0x41,0x0c,0x02,0x1b,0x40,
0x42,0x60,0x83,0x41,0x72,0x68,0xd1,0x3f,0x56,0x0e,0x7d,0x41,0x7c,0x3f,0x75,0x3f,0x03,0xae,0x00,0xbd,
0x9e,0xef,0x73,0x41,0x2f,0xdd,0xa4,0x3e,0x54,0xe3,0x65,0x41,0x00,0x00,0x00,0x00,0x96,0x43,0x53,0x41,
0x00,0x00,0x00,0x00,0x03,0x38,0x81,0x08,0x87,0x16,0x41,0x41,0x00,0x00,0x00,0x00,0xdb,0xf9,0x32,0x41,
0x9c,0xc4,0xa0,0x3e,0x42,0x60,0x29,0x41,0xc5,0x20,0x70,0x3f,0x03,0x38,0x81,0x08,0x71,0x3d,0x1e,0x41,
0x00,0x00,0x00,0x00,0x03,0xae,0x00,0xbd,0x87,0x16,0x41,0x41,0x00,0x00,0x00,0x00,0xdb,0xf9,0x32,0x41,
0x9c,0xc4,0xa0,0x3e,0x42,0x60,0x29,0x41,0xc5,0x20,0x70,0x3f,0x03,0xae,0x00,0xbd,0x71,0x3d,0x1e,0x41,
0x58,0x39,0xd4,0x3f,0x5e,0xba,0x1d,0x41,0x73,0x68,0x21,0x40,0x8f,0xc2,0x1d,0x41,0x68,0x91,0x2d,0x40,
0x02,0x1e,0x00,0xbb,0x8f,0xc2,0x1d,0x41,0xe1,0x7a,0x5c,0x41,0x03,0x38,0x81,0x08,0xaa,0xf1,0x0a,0x41,
0x02,0xde,0xd3,0xb5,0x8f,0xc2,0x1d,0x41,0xe1,0x7a,0x5c,0x41,0x03,0xae,0x00,0xbd,0xaa,0xf1,0x0a,0x41,
0xd5,0x78,0x49,0x41,0x98,0x6e,0xf2,0x40,0x77,0xbe,0x3f,0x41,0x35,0x5e,0xd2,0x40,0x77,0xbe,0x3f,0x41,
0x03,0x38,0x81,0x08,0x76,0xbe,0x7f,0x40,0x77,0xbe,0x3f,0x41,0xc6,0x4b,0x67,0x40,0x46,0xb6,0x57,0x41,
0xc6,0x4b,0x67,0x40,0xe8,0xfb,0x65,0x41,0x03,0x38,0x81,0x08,0xc6,0x4b,0x67,0x40,0x7b,0x14,0x72,0x41,
0x6c,0xe7,0x7b,0x40,0x06,0x81,0x81,0x41,0x04,0x56,0x7e,0x40,0xc9,0x76,0x82,0x41,0x02,0x1e,0x00,0xbb,
0x89,0x41,0x80,0x40,0x29,0x5c,0x83,0x41,0x02,0x1e,0x00,0xbb,0x40,0x35,0x36,0x41,0x77,0xbe,0xe1,0x41,
0x02,0x1e,0x00,0xbb,0x3f,0x35,0x36,0x41,0x00,0x00,0x00,0x42,0x02,0x1e,0x00,0xbb,0x14,0xae,0xd3,0x41,
0x00,0x00,0x00,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0xf0,0x41,0xdd,0x24,0xb6,0x41,0x02,0x1e,0x00,0xbb,
0x00,0x00,0xf0,0x41,0xcd,0xcc,0x5c,0x41,0x03,0x38,0x81,0x08,0x00,0x00,0xf0,0x41,0x31,0x08,0x4c,0x41,
0x03,0xae,0x00,0xbd,0x76,0xbe,0x7f,0x40,0x77,0xbe,0x3f,0x41,0xc6,0x4b,0x67,0x40,0x46,0xb6,0x57,0x41,
0xc6,0x4b,0x67,0x40,0xe8,0xfb,0x65,0x41,0x03,0xae,0x00,0xbd,0xc6,0x4b,0x67,0x40,0x7b,0x14,0x72,0x41,
0x6c,0xe7,0x7b,0x40,0x06,0x81,0x81,0x41,0x04,0x56,0x7e,0x40,0xc9,0x76,0x82,0x41,0x02,0xde,0xd3,0xb5,
0x89,0x41,0x80,0x40,0x29,0x5c,0x83,0x41,0x02,0xde,0xd3,0xb5,0x40,0x35,0x36,0x41,0x77,0xbe,0xe1,0x41,
0x02,0xde,0xd3,0xb5,0x3f,0x35,0x36,0x41,0x00,0x00,0x00,0x42,0x02,0xde,0xd3,0xb5,0x14,0xae,0xd3,0x41,
0x00,0x00,0x00,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0xf0,0x41,0xdd,0x24,0xb6,0x41,0x02,0xde,0xd3,0xb5,
0x00,0x00,0xf0,0x41,0xcd,0xcc,0x5c,0x41,0x03,0xae,0x00,0xbd,0x00,0x00,0xf0,0x41,0x31,0x08,0x4c,0x41,
0x46,0xb6,0xed,0x41,0x02,0x2b,0x3f,0x41,0x1b,0x2f,0xe9,0x41,0xfa,0x7e,0x36,0x41,0x04,0x00,0x00,0x00,
0x01,0x92,0xf5,0x04,0x7d,0x3f,0xe1,0x41,0x8b,0x6c,0xb3,0x41,0x02,0x1e,0x00,0xbb,0x50,0x8d,0xc9,0x41,
0x7d,0x3f,0xf1,0x41,0x02,0x1e,0x00,0xbb,0x77,0xbe,0x53,0x41,0x7d,0x3f,0xf1,0x41,0x02,0x1e,0x00,0xbb,
0x77,0xbe,0x53,0x41,0x1f,0x85,0xdd,0x41,0x02,0x1e,0x00,0xbb,0x66,0x66,0xb6,0x40,0x04,0x56,0x7a,0x41,
0x03,0x38,0x81,0x08,0xf7,0x53,0xb3,0x40,0x25,0x06,0x75,0x41,0x2b,0x87,0xae,0x40,0xc7,0x4b,0x6b,0x41,
0x2b,0x87,0xae,0x40,0xe7,0xfb,0x65,0x41,0x03,0x38,0x81,0x08,0x2b,0x87,0xae,0x40,0x8f,0xc2,0x61,0x41,
0x27,0x31,0xb0,0x40,0xf3,0xfd,0x60,0x41,0x39,0xb4,0xb0,0x40,0x39,0xb4,0x60,0x41,0x03,0x38,0x81,0x08,
0x01,0xd2,0x21,0x0a,0x7d,0x3f,0xe1,0x41,0x8b,0x6c,0xb3,0x41,0x02,0xde,0xd3,0xb5,0x50,0x8d,0xc9,0x41,
0x7d,0x3f,0xf1,0x41,0x02,0xde,0xd3,0xb5,0x77,0xbe,0x53,0x41,0x7d,0x3f,0xf1,0x41,0x02,0xde,0xd3,0xb5,
0x77,0xbe,0x53,0x41,0x1f,0x85,0xdd,0x41,0x02,0xde,0xd3,0xb5,0x66,0x66,0xb6,0x40,0x04,0x56,0x7a,0x41,
0x03,0xae,0x00,0xbd,0xf7,0x53,0xb3,0x40,0x25,0x06,0x75,0x41,0x2b,0x87,0xae,0x40,0xc7,0x4b,0x6b,0x41,
0x2b,0x87,0xae,0x40,0xe7,0xfb,0x65,0x41,0x03,0xae,0x00,0xbd,0x2b,0x87,0xae,0x40,0x8f,0xc2,0x61,0x41,
0x27,0x31,0xb0,0x40,0xf3,0xfd,0x60,0x41,0x39,0xb4,0xb0,0x40,0x39,0xb4,0x60,0x41,0x03,0xae,0x00,0xbd,
0xa8,0xc6,0xb3,0x40,0xd1,0x22,0x5f,0x41,0x66,0x66,0xbe,0x40,0xae,0x47,0x5d,0x41,0x35,0x5e,0xd2,0x40,
0xae,0x47,0x5d,0x41,0x03,0x38,0x81,0x08,0x9e,0xef,0xef,0x40,0xae,0x47,0x5d,0x41,0xc2,0xf5,0x10,0x41,
0x0a,0xd7,0x77,0x41,0x7d,0x3f,0x1d,0x41,0x79,0xe9,0x84,0x41,0x02,0x1e,0x00,0xbb,0x8f,0xc2,0x1d,0x41,
0x83,0xc0,0x84,0x41,0x02,0x1e,0x00,0xbb,0x8f,0xc2,0x1d,0x41,0x10,0x58,0x9d,0x41,0x02,0x1e,0x00,0xbb,
0x95,0x43,0x3b,0x41,0x10,0x58,0x9d,0x41,0x02,0x1e,0x00,0xbb,0x95,0x43,0x3b,0x41,0xe0,0x4f,0x2d,0x40,
0x02,0x1e,0x00,0xbb,0x64,0x3b,0x3b,0x41,0xd1,0x22,0x2b,0x40,0x03,0x38,0x81,0x08,0x64,0x3b,0x3b,0x41,
0xae,0x47,0x5d,0x41,0x03,0xae,0x00,0xbd,0x9e,0xef,0xef,0x40,0xae,0x47,0x5d,0x41,0xc2,0xf5,0x10,0x41,
0x0a,0xd7,0x77,0x41,0x7d,0x3f,0x1d,0x41,0x79,0xe9,0x84,0x41,0x02,0xde,0xd3,0xb5,0x8f,0xc2,0x1d,0x41,
0x83,0xc0,0x84,0x41,0x02,0xde,0xd3,0xb5,0x8f,0xc2,0x1d,0x41,0x10,0x58,0x9d,0x41,0x02,0xde,0xd3,0xb5,
0x95,0x43,0x3b,0x41,0x10,0x58,0x9d,0x41,0x02,0xde,0xd3,0xb5,0x95,0x43,0x3b,0x41,0xe0,0x4f,0x2d,0x40,
0x02,0xde,0xd3,0xb5,0x64,0x3b,0x3b,0x41,0xd1,0x22,0x2b,0x40,0x03,0xae,0x00,0xbd,0x64,0x3b,0x3b,0x41,
0x0c,0x02,0x2b,0x40,0x1e,0x85,0x3b,0x41,0x83,0xc0,0x1a,0x40,0xbe,0x9f,0x3e,0x41,0xf2,0xd2,0x0d,0x40,
0x03,0x38,0x81,0x08,0x66,0x66,0x42,0x41,0x80,0x6a,0xfc,0x3f,0x06,0x81,0x49,0x41,0xa8,0xc6,0xeb,0x3f,
0x95,0x43,0x53,0x41,0xa8,0xc6,0xeb,0x3f,0x03,0x38,0x81,0x08,0xd7,0xa3,0x5c,0x41,0xa8,0xc6,0xeb,0x3f,
0xe3,0xa5,0x63,0x41,0xbe,0x9f,0xfa,0x3f,0x47,0xe1,0x66,0x41,0x0c,0x02,0x0b,0x40,0x03,0x38,0x81,0x08,
0x03,0xae,0x00,0xbd,0x66,0x66,0x42,0x41,0x80,0x6a,0xfc,0x3f,0x06,0x81,0x49,0x41,0xa8,0xc6,0xeb,0x3f,
0x95,0x43,0x53,0x41,0xa8,0xc6,0xeb,0x3f,0x03,0xae,0x00,0xbd,0xd7,0xa3,0x5c,0x41,0xa8,0xc6,0xeb,0x3f,
0xe3,0xa5,0x63,0x41,0xbe,0x9f,0xfa,0x3f,0x47,0xe1,0x66,0x41,0x0c,0x02,0x0b,0x40,0x03,0xae,0x00,0xbd,
0x55,0x0e,0x69,0x41,0xcf,0xf7,0x13,0x40,0x7c,0x3f,0x69,0x41,0xed,0x7c,0x1f,0x40,0xdf,0x4f,0x69,0x41,
0x6e,0x12,0x23,0x40,0x02,0x1e,0x00,0xbb,0x4c,0x37,0x69,0x41,0x93,0x18,0x24,0x40,0x02,0x1e,0x00,0xbb,
0x4c,0x37,0x69,0x41,0x39,0xb4,0x58,0x41,0x02,0x1e,0x00,0xbb,0x29,0x5c,0x83,0x41,0x39,0xb4,0x58,0x41,
0x02,0x1e,0x00,0xbb,0x29,0x5c,0x83,0x41,0xc1,0xca,0x11,0x41,0x02,0x1e,0x00,0xbb,0x3b,0xdf,0x95,0x41,
0xc1,0xca,0x11,0x41,0x03,0x38,0x81,0x08,0x56,0x0e,0x97,0x41,0x98,0x6e,0x12,0x41,0x6c,0xe7,0x9b,0x41,
0xb7,0xf3,0x15,0x41,0x6c,0xe7,0x9b,0x41,0xcd,0xcc,0x28,0x41,0x02,0x1e,0x00,0xbb,0x6c,0xe7,0x9b,0x41,
0x6b,0xbc,0x58,0x41,0x02,0x1e,0x00,0xbb,0xbe,0x9f,0xaa,0x41,0x6b,0xbc,0x58,0x41,0x02,0x1e,0x00,0xbb,
0xbe,0x9f,0xaa,0x41,0x80,0x6a,0x30,0x41,0x02,0x1e,0x00,0xbb,0x33,0x33,0xbb,0x41,0x7f,0x6a,0x30,0x41,
0x02,0x1e,0x00,0xbb,0x4c,0x37,0xbb,0x41,0x7f,0x6a,0x30,0x41,0x02,0x1e,0x00,0xbb,0x5e,0xba,0xbb,0x41,
0x7f,0x6a,0x30,0x41,0x02,0x1e,0x00,0xbb,0x64,0x3b,0xbb,0x41,0xb0,0x72,0x30,0x41,0x03,0x38,0x81,0x08,
0x6e,0x12,0x23,0x40,0x02,0xde,0xd3,0xb5,0x4c,0x37,0x69,0x41,0x93,0x18,0x24,0x40,0x02,0xde,0xd3,0xb5,
0x4c,0x37,0x69,0x41,0x39,0xb4,0x58,0x41,0x02,0xde,0xd3,0xb5,0x29,0x5c,0x83,0x41,0x39,0xb4,0x58,0x41,
0x02,0xde,0xd3,0xb5,0x29,0x5c,0x83,0x41,0xc1,0xca,0x11,0x41,0x02,0xde,0xd3,0xb5,0x3b,0xdf,0x95,0x41,
0xc1,0xca,0x11,0x41,0x03,0xae,0x00,0xbd,0x56,0x0e,0x97,0x41,0x98,0x6e,0x12,0x41,0x6c,0xe7,0x9b,0x41,
0xb7,0xf3,0x15,0x41,0x6c,0xe7,0x9b,0x41,0xcd,0xcc,0x28,0x41,0x02,0xde,0xd3,0xb5,0x6c,0xe7,0x9b,0x41,
0x6b,0xbc,0x58,0x41,0x02,0xde,0xd3,0xb5,0xbe,0x9f,0xaa,0x41,0x6b,0xbc,0x58,0x41,0x02,0xde,0xd3,0xb5,
0xbe,0x9f,0xaa,0x41,0x80,0x6a,0x30,0x41,0x02,0xde,0xd3,0xb5,0x33,0x33,0xbb,0x41,0x7f,0x6a,0x30,0x41,
0x02,0xde,0xd3,0xb5,0x4c,0x37,0xbb,0x41,0x7f,0x6a,0x30,0x41,0x02,0xde,0xd3,0xb5,0x5e,0xba,0xbb,0x41,
0x7f,0x6a,0x30,0x41,0x02,0xde,0xd3,0xb5,0x64,0x3b,0xbb,0x41,0xb0,0x72,0x30,0x41,0x03,0xae,0x00,0xbd,
0x83,0xc0,0xbc,0x41,0xae,0x47,0x31,0x41,0x87,0x16,0xbf,0x41,0x5c,0x8f,0x36,0x41,0x87,0x16,0xbf,0x41,
0xdf,0x4f,0x45,0x41,0x02,0x1e,0x00,0xbb,0x87,0x16,0xbf,0x41,0xae,0x47,0x75,0x41,0x02,0x1e,0x00,0xbb,
0xf2,0xd2,0xcd,0x41,0xae,0x47,0x75,0x41,0x02,0x1e,0x00,0xbb,0xf2,0xd2,0xcd,0x41,0x85,0xeb,0x49,0x41,
0x02,0x1e,0x00,0xbb,0x61,0xe5,0xdc,0x41,0x85,0xeb,0x49,0x41,0x02,0x1e,0x00,0xbb,0x4d,0x37,0xdd,0x41,
0x23,0xdb,0x49,0x41,0x03,0x38,0x81,0x08,0x4d,0x37,0xdd,0x41,0x23,0xdb,0x49,0x41,0x41,0x35,0xde,0x41,
0x04,0x56,0x4a,0x41,0xdc,0xf9,0xde,0x41,0xd9,0xce,0x4b,0x41,0x03,0x38,0x81,0x08,0xb1,0x72,0xe0,0x41,
0xdf,0x4f,0x45,0x41,0x02,0xde,0xd3,0xb5,0x87,0x16,0xbf,0x41,0xae,0x47,0x75,0x41,0x02,0xde,0xd3,0xb5,
0xf2,0xd2,0xcd,0x41,0xae,0x47,0x75,0x41,0x02,0xde,0xd3,0xb5,0xf2,0xd2,0xcd,0x41,0x85,0xeb,0x49,0x41,
0x02,0xde,0xd3,0xb5,0x61,0xe5,0xdc,0x41,0x85,0xeb,0x49,0x41,0x02,0xde,0xd3,0xb5,0x4d,0x37,0xdd,0x41,
0x23,0xdb,0x49,0x41,0x03,0xae,0x00,0xbd,0x4d,0x37,0xdd,0x41,0x23,0xdb,0x49,0x41,0x41,0x35,0xde,0x41,
0x04,0x56,0x4a,0x41,0xdc,0xf9,0xde,0x41,0xd9,0xce,0x4b,0x41,0x03,0xae,0x00,0xbd,0xb1,0x72,0xe0,0x41,
0x8d,0x97,0x4e,0x41,0x7e,0x3f,0xe1,0x41,0x08,0xac,0x54,0x41,0x7e,0x3f,0xe1,0x41,0xfe,0xd4,0x5c,0x41,
0x02,0x1e,0x00,0xbb,0x7d,0x3f,0xe1,0x41,0x8b,0x6c,0xb3,0x41,0x02,0x1e,0x00,0xbb,0x7d,0x3f,0xe1,0x41,
0x02,0xde,0xd3,0xb5,0x7d,0x3f,0xe1,0x41,0x8b,0x6c,0xb3,0x41,0x02,0xde,0xd3,0xb5,0x7d,0x3f,0xe1,0x41,
0x8b,0x6c,0xb3,0x41,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,};/*1244*/

View File

@ -2,7 +2,7 @@ TK_CONST_DATA_ALIGN(const unsigned char image_pointer_4[]) = {
0x02,0x00,0x05,0x01,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x5f,
0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x15,0x11,0x18,0x20,0x02,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x10,0x00,0x00,0x00,
0x02,0x01,0x00,0x00,0x00,0x00,0x80,0x3c,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x71,0x0d,0x65,0x41,
0x00,0x00,0x80,0x41,0x02,0x1e,0x00,0xbb,0x7b,0x94,0xd7,0x3f,0x00,0x00,0x80,0x41,0x02,0x1e,0x00,0xbb,
0x02,0x01,0x00,0x00,0x00,0x00,0x80,0x3c,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x71,0x0d,0x65,0x41,
0x00,0x00,0x80,0x41,0x02,0xde,0xd3,0xb5,0x7b,0x94,0xd7,0x3f,0x00,0x00,0x80,0x41,0x02,0xde,0xd3,0xb5,
0xb8,0xfe,0xff,0x40,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,};/*128*/

View File

@ -3,44 +3,44 @@ TK_CONST_DATA_ALIGN(const unsigned char image_pservers_grad_99_b[]) = {
0x5f,0x67,0x72,0x61,0x64,0x5f,0x39,0x39,0x5f,0x62,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x15,0x11,0x18,0x20,0x02,0x00,0x00,0x00,0x2c,0x01,0x00,0x00,0xe1,0x00,0x00,0x00,
0x02,0x02,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x9b,0x42,0x00,0x00,0xaa,0x41,0x00,0x00,0xc3,0x42,
0x00,0x00,0x25,0x42,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x7a,0x42,
0x00,0x00,0xc8,0x40,0x02,0x1e,0x00,0xbb,0x00,0x00,0xe1,0x42,0x00,0x00,0xc8,0x40,0x02,0x1e,0x00,0xbb,
0x00,0x00,0xe1,0x42,0x00,0x00,0x61,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x7a,0x42,0x00,0x00,0x61,0x42,
0x00,0x00,0x25,0x42,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x7a,0x42,
0x00,0x00,0xc8,0x40,0x02,0xde,0xd3,0xb5,0x00,0x00,0xe1,0x42,0x00,0x00,0xc8,0x40,0x02,0xde,0xd3,0xb5,
0x00,0x00,0xe1,0x42,0x00,0x00,0x61,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x7a,0x42,0x00,0x00,0x61,0x42,
0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xfa,0x42,
0x00,0x00,0xaa,0x41,0x00,0x00,0xfa,0x42,0x00,0x00,0x25,0x42,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0xff,
0x01,0x92,0xf5,0x04,0x00,0x00,0xfa,0x42,0x00,0x00,0xc8,0x40,0x02,0x1e,0x00,0xbb,0x00,0x00,0x2f,0x43,
0x00,0x00,0xc8,0x40,0x02,0x1e,0x00,0xbb,0x00,0x00,0x2f,0x43,0x00,0x00,0x61,0x42,0x02,0x1e,0x00,0xbb,
0x01,0xd2,0x21,0x0a,0x00,0x00,0xfa,0x42,0x00,0x00,0xc8,0x40,0x02,0xde,0xd3,0xb5,0x00,0x00,0x2f,0x43,
0x00,0x00,0xc8,0x40,0x02,0xde,0xd3,0xb5,0x00,0x00,0x2f,0x43,0x00,0x00,0x61,0x42,0x02,0xde,0xd3,0xb5,
0x00,0x00,0xfa,0x42,0x00,0x00,0x61,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x00,
0x00,0x00,0x20,0x3f,0x00,0x80,0x5e,0x43,0x00,0x00,0xaa,0x41,0x00,0x80,0x4a,0x43,0x00,0x00,0x25,0x42,
0x00,0x00,0xff,0xff,0xff,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x80,0x3b,0x43,0x00,0x00,0xc8,0x40,
0x02,0x1e,0x00,0xbb,0x00,0x80,0x6d,0x43,0x00,0x00,0xc8,0x40,0x02,0x1e,0x00,0xbb,0x00,0x80,0x6d,0x43,
0x00,0x00,0x61,0x42,0x02,0x1e,0x00,0xbb,0x00,0x80,0x3b,0x43,0x00,0x00,0x61,0x42,0x04,0x00,0x00,0x00,
0x00,0x00,0xff,0xff,0xff,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x80,0x3b,0x43,0x00,0x00,0xc8,0x40,
0x02,0xde,0xd3,0xb5,0x00,0x80,0x6d,0x43,0x00,0x00,0xc8,0x40,0x02,0xde,0xd3,0xb5,0x00,0x80,0x6d,0x43,
0x00,0x00,0x61,0x42,0x02,0xde,0xd3,0xb5,0x00,0x80,0x3b,0x43,0x00,0x00,0x61,0x42,0x04,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x9b,0x42,0x00,0x80,0x89,0x42,
0x00,0x00,0xc3,0x42,0x00,0x80,0x89,0x42,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,
0x00,0x00,0x7a,0x42,0x00,0x80,0x89,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0xe1,0x42,0x00,0x80,0x89,0x42,
0x02,0x1e,0x00,0xbb,0x00,0x00,0xe1,0x42,0x00,0x80,0xed,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x7a,0x42,
0x00,0x00,0xc3,0x42,0x00,0x80,0x89,0x42,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,
0x00,0x00,0x7a,0x42,0x00,0x80,0x89,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0xe1,0x42,0x00,0x80,0x89,0x42,
0x02,0xde,0xd3,0xb5,0x00,0x00,0xe1,0x42,0x00,0x80,0xed,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x7a,0x42,
0x00,0x80,0xed,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x20,0x3f,
0x00,0x80,0x5e,0x43,0x00,0x80,0x89,0x42,0x00,0x80,0x4a,0x43,0x00,0x80,0x89,0x42,0x00,0x00,0xff,0xff,
0xff,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x80,0x3b,0x43,0x00,0x80,0x89,0x42,0x02,0x1e,0x00,0xbb,
0x00,0x80,0x6d,0x43,0x00,0x80,0x89,0x42,0x02,0x1e,0x00,0xbb,0x00,0x80,0x6d,0x43,0x00,0x80,0xed,0x42,
0x02,0x1e,0x00,0xbb,0x00,0x80,0x3b,0x43,0x00,0x80,0xed,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0xff,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x80,0x3b,0x43,0x00,0x80,0x89,0x42,0x02,0xde,0xd3,0xb5,
0x00,0x80,0x6d,0x43,0x00,0x80,0x89,0x42,0x02,0xde,0xd3,0xb5,0x00,0x80,0x6d,0x43,0x00,0x80,0xed,0x42,
0x02,0xde,0xd3,0xb5,0x00,0x80,0x3b,0x43,0x00,0x80,0xed,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x02,0x02,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x9b,0x42,0x00,0x40,0x26,0x43,0x00,0x00,0xc3,0x42,
0x00,0x40,0x12,0x43,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x7a,0x42,
0x00,0x40,0x03,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0xe1,0x42,0x00,0x40,0x03,0x43,0x02,0x1e,0x00,0xbb,
0x00,0x00,0xe1,0x42,0x00,0x40,0x35,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0x7a,0x42,0x00,0x40,0x35,0x43,
0x00,0x40,0x12,0x43,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x7a,0x42,
0x00,0x40,0x03,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0xe1,0x42,0x00,0x40,0x03,0x43,0x02,0xde,0xd3,0xb5,
0x00,0x00,0xe1,0x42,0x00,0x40,0x35,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0x7a,0x42,0x00,0x40,0x35,0x43,
0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xfa,0x42,
0x00,0x40,0x26,0x43,0x00,0x00,0xfa,0x42,0x00,0x40,0x12,0x43,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0xff,
0x01,0x92,0xf5,0x04,0x00,0x00,0xfa,0x42,0x00,0x40,0x03,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0x2f,0x43,
0x00,0x40,0x03,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0x2f,0x43,0x00,0x40,0x35,0x43,0x02,0x1e,0x00,0xbb,
0x01,0xd2,0x21,0x0a,0x00,0x00,0xfa,0x42,0x00,0x40,0x03,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0x2f,0x43,
0x00,0x40,0x03,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0x2f,0x43,0x00,0x40,0x35,0x43,0x02,0xde,0xd3,0xb5,
0x00,0x00,0xfa,0x42,0x00,0x40,0x35,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x00,
0x00,0x00,0x20,0x3f,0x00,0x80,0x5e,0x43,0x00,0x40,0x26,0x43,0x00,0x80,0x4a,0x43,0x00,0x40,0x12,0x43,
0x00,0x00,0xff,0xff,0xff,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x80,0x3b,0x43,0x00,0x40,0x03,0x43,
0x02,0x1e,0x00,0xbb,0x00,0x80,0x6d,0x43,0x00,0x40,0x03,0x43,0x02,0x1e,0x00,0xbb,0x00,0x80,0x6d,0x43,
0x00,0x40,0x35,0x43,0x02,0x1e,0x00,0xbb,0x00,0x80,0x3b,0x43,0x00,0x40,0x35,0x43,0x04,0x00,0x00,0x00,
0x00,0x00,0xff,0xff,0xff,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x80,0x3b,0x43,0x00,0x40,0x03,0x43,
0x02,0xde,0xd3,0xb5,0x00,0x80,0x6d,0x43,0x00,0x40,0x03,0x43,0x02,0xde,0xd3,0xb5,0x00,0x80,0x6d,0x43,
0x00,0x40,0x35,0x43,0x02,0xde,0xd3,0xb5,0x00,0x80,0x3b,0x43,0x00,0x40,0x35,0x43,0x04,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xc8,0x40,0x00,0x80,0x54,0x43,
0x00,0x00,0x00,0xff,0x24,0x52,0x65,0x76,0x69,0x73,0x69,0x6f,0x6e,0x3a,0x20,0x31,0x2e,0x35,0x20,0x24,
0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x20,
0x3f,0x00,0x00,0x20,0x3f,0x02,0x1e,0x00,0xbb,0x00,0xb0,0x95,0x43,0x00,0x00,0x20,0x3f,0x02,0x1e,0x00,
0xbb,0x00,0xb0,0x95,0x43,0x00,0x60,0x60,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0x20,0x3f,0x00,0x60,0x60,
0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x20,
0x3f,0x00,0x00,0x20,0x3f,0x02,0xde,0xd3,0xb5,0x00,0xb0,0x95,0x43,0x00,0x00,0x20,0x3f,0x02,0xde,0xd3,
0xb5,0x00,0xb0,0x95,0x43,0x00,0x60,0x60,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0x20,0x3f,0x00,0x60,0x60,
0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,};/*881*/

View File

@ -2,53 +2,53 @@ TK_CONST_DATA_ALIGN(const unsigned char image_shapes_circle_01_t[]) = {
0x02,0x00,0x05,0x01,0xed,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x73,0x68,0x61,0x70,0x65,0x73,0x5f,0x63,
0x69,0x72,0x63,0x6c,0x65,0x5f,0x30,0x31,0x5f,0x74,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x15,0x11,0x18,0x20,0x02,0x00,0x00,0x00,0x2c,0x01,0x00,0x00,0xe1,0x00,0x00,0x00,
0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x80,0xbb,0x42,
0x00,0x00,0x7a,0x42,0x03,0x7a,0x10,0x09,0x00,0x80,0xbb,0x42,0x8e,0x84,0x9f,0x42,0x8e,0x84,0x9f,0x42,
0x00,0x80,0xbb,0x42,0x00,0x00,0x7a,0x42,0x00,0x80,0xbb,0x42,0x03,0x7a,0x10,0x09,0xe4,0xf6,0x34,0x42,
0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x80,0xbb,0x42,
0x00,0x00,0x7a,0x42,0x03,0x75,0x30,0xbe,0x00,0x80,0xbb,0x42,0x8e,0x84,0x9f,0x42,0x8e,0x84,0x9f,0x42,
0x00,0x80,0xbb,0x42,0x00,0x00,0x7a,0x42,0x00,0x80,0xbb,0x42,0x03,0x75,0x30,0xbe,0xe4,0xf6,0x34,0x42,
0x00,0x80,0xbb,0x42,0x00,0x00,0xfa,0x41,0x8e,0x84,0x9f,0x42,0x00,0x00,0xfa,0x41,0x00,0x00,0x7a,0x42,
0x03,0x7a,0x10,0x09,0x00,0x00,0xfa,0x41,0xe4,0xf6,0x34,0x42,0xe4,0xf6,0x34,0x42,0x00,0x00,0xfa,0x41,
0x00,0x00,0x7a,0x42,0x00,0x00,0xfa,0x41,0x03,0x7a,0x10,0x09,0x8e,0x84,0x9f,0x42,0x00,0x00,0xfa,0x41,
0x03,0x75,0x30,0xbe,0x00,0x00,0xfa,0x41,0xe4,0xf6,0x34,0x42,0xe4,0xf6,0x34,0x42,0x00,0x00,0xfa,0x41,
0x00,0x00,0x7a,0x42,0x00,0x00,0xfa,0x41,0x03,0x75,0x30,0xbe,0x8e,0x84,0x9f,0x42,0x00,0x00,0xfa,0x41,
0x00,0x80,0xbb,0x42,0xe4,0xf6,0x34,0x42,0x00,0x80,0xbb,0x42,0x00,0x00,0x7a,0x42,0x04,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0x20,0x3f,0xff,0x00,0x00,0xff,0x00,0x00,0x00,0xff,
0x01,0x92,0xf5,0x04,0x00,0x60,0x1f,0x43,0x00,0x00,0x7a,0x42,0x03,0x7a,0x10,0x09,0x00,0x60,0x1f,0x43,
0x01,0xd2,0x21,0x0a,0x00,0x60,0x1f,0x43,0x00,0x00,0x7a,0x42,0x03,0x75,0x30,0xbe,0x00,0x60,0x1f,0x43,
0x97,0x29,0x95,0x42,0xcc,0x94,0x15,0x43,0x00,0xc0,0xa8,0x42,0x00,0x80,0x09,0x43,0x00,0xc0,0xa8,0x42,
0x03,0x7a,0x10,0x09,0x69,0xd6,0xfa,0x42,0x00,0xc0,0xa8,0x42,0x00,0x40,0xe7,0x42,0x97,0x29,0x95,0x42,
0x00,0x40,0xe7,0x42,0x00,0x00,0x7a,0x42,0x03,0x7a,0x10,0x09,0x00,0x40,0xe7,0x42,0xd3,0xac,0x49,0x42,
0x69,0xd6,0xfa,0x42,0x00,0x80,0x22,0x42,0x00,0x80,0x09,0x43,0x00,0x80,0x22,0x42,0x03,0x7a,0x10,0x09,
0x03,0x75,0x30,0xbe,0x69,0xd6,0xfa,0x42,0x00,0xc0,0xa8,0x42,0x00,0x40,0xe7,0x42,0x97,0x29,0x95,0x42,
0x00,0x40,0xe7,0x42,0x00,0x00,0x7a,0x42,0x03,0x75,0x30,0xbe,0x00,0x40,0xe7,0x42,0xd3,0xac,0x49,0x42,
0x69,0xd6,0xfa,0x42,0x00,0x80,0x22,0x42,0x00,0x80,0x09,0x43,0x00,0x80,0x22,0x42,0x03,0x75,0x30,0xbe,
0xcc,0x94,0x15,0x43,0x00,0x80,0x22,0x42,0x00,0x60,0x1f,0x43,0xd3,0xac,0x49,0x42,0x00,0x60,0x1f,0x43,
0x00,0x00,0x7a,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0x20,0x40,
0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x61,0x43,0x00,0x00,0x7a,0x42,
0x03,0x7a,0x10,0x09,0x00,0x00,0x61,0x43,0x9f,0xce,0x8a,0x42,0x4f,0x67,0x5b,0x43,0x00,0x00,0x96,0x42,
0x00,0x80,0x54,0x43,0x00,0x00,0x96,0x42,0x03,0x7a,0x10,0x09,0xb1,0x98,0x4d,0x43,0x00,0x00,0x96,0x42,
0x00,0x00,0x48,0x43,0x9f,0xce,0x8a,0x42,0x00,0x00,0x48,0x43,0x00,0x00,0x7a,0x42,0x03,0x7a,0x10,0x09,
0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x61,0x43,0x00,0x00,0x7a,0x42,
0x03,0x75,0x30,0xbe,0x00,0x00,0x61,0x43,0x9f,0xce,0x8a,0x42,0x4f,0x67,0x5b,0x43,0x00,0x00,0x96,0x42,
0x00,0x80,0x54,0x43,0x00,0x00,0x96,0x42,0x03,0x75,0x30,0xbe,0xb1,0x98,0x4d,0x43,0x00,0x00,0x96,0x42,
0x00,0x00,0x48,0x43,0x9f,0xce,0x8a,0x42,0x00,0x00,0x48,0x43,0x00,0x00,0x7a,0x42,0x03,0x75,0x30,0xbe,
0x00,0x00,0x48,0x43,0xc2,0x62,0x5e,0x42,0xb1,0x98,0x4d,0x43,0x00,0x00,0x48,0x42,0x00,0x80,0x54,0x43,
0x00,0x00,0x48,0x42,0x03,0x7a,0x10,0x09,0x4f,0x67,0x5b,0x43,0x00,0x00,0x48,0x42,0x00,0x00,0x61,0x43,
0x00,0x00,0x48,0x42,0x03,0x75,0x30,0xbe,0x4f,0x67,0x5b,0x43,0x00,0x00,0x48,0x42,0x00,0x00,0x61,0x43,
0xc2,0x62,0x5e,0x42,0x00,0x00,0x61,0x43,0x00,0x00,0x7a,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x02,0x01,0x01,0x00,0x00,0x00,0x20,0x40,0xff,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x01,0x92,0xf5,0x04,
0x00,0x00,0x96,0x42,0x00,0x80,0x22,0x43,0x03,0x7a,0x10,0x09,0x00,0x00,0x96,0x42,0x4f,0x67,0x29,0x43,
0x9f,0xce,0x8a,0x42,0x00,0x00,0x2f,0x43,0x00,0x00,0x7a,0x42,0x00,0x00,0x2f,0x43,0x03,0x7a,0x10,0x09,
0x02,0x01,0x01,0x00,0x00,0x00,0x20,0x40,0xff,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x01,0xd2,0x21,0x0a,
0x00,0x00,0x96,0x42,0x00,0x80,0x22,0x43,0x03,0x75,0x30,0xbe,0x00,0x00,0x96,0x42,0x4f,0x67,0x29,0x43,
0x9f,0xce,0x8a,0x42,0x00,0x00,0x2f,0x43,0x00,0x00,0x7a,0x42,0x00,0x00,0x2f,0x43,0x03,0x75,0x30,0xbe,
0xc2,0x62,0x5e,0x42,0x00,0x00,0x2f,0x43,0x00,0x00,0x48,0x42,0x4f,0x67,0x29,0x43,0x00,0x00,0x48,0x42,
0x00,0x80,0x22,0x43,0x03,0x7a,0x10,0x09,0x00,0x00,0x48,0x42,0xb0,0x98,0x1b,0x43,0xc2,0x62,0x5e,0x42,
0x00,0x00,0x16,0x43,0x00,0x00,0x7a,0x42,0x00,0x00,0x16,0x43,0x03,0x7a,0x10,0x09,0x9f,0xce,0x8a,0x42,
0x00,0x80,0x22,0x43,0x03,0x75,0x30,0xbe,0x00,0x00,0x48,0x42,0xb0,0x98,0x1b,0x43,0xc2,0x62,0x5e,0x42,
0x00,0x00,0x16,0x43,0x00,0x00,0x7a,0x42,0x00,0x00,0x16,0x43,0x03,0x75,0x30,0xbe,0x9f,0xce,0x8a,0x42,
0x00,0x00,0x16,0x43,0x00,0x00,0x96,0x42,0xb0,0x98,0x1b,0x43,0x00,0x00,0x96,0x42,0x00,0x80,0x22,0x43,
0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xff,0xff,
0x01,0x92,0xf5,0x04,0x00,0x60,0x1f,0x43,0x00,0x80,0x22,0x43,0x03,0x7a,0x10,0x09,0x00,0x60,0x1f,0x43,
0x01,0xd2,0x21,0x0a,0x00,0x60,0x1f,0x43,0x00,0x80,0x22,0x43,0x03,0x75,0x30,0xbe,0x00,0x60,0x1f,0x43,
0xcb,0x94,0x2e,0x43,0xcc,0x94,0x15,0x43,0x00,0x60,0x38,0x43,0x00,0x80,0x09,0x43,0x00,0x60,0x38,0x43,
0x03,0x7a,0x10,0x09,0x69,0xd6,0xfa,0x42,0x00,0x60,0x38,0x43,0x00,0x40,0xe7,0x42,0xcb,0x94,0x2e,0x43,
0x00,0x40,0xe7,0x42,0x00,0x80,0x22,0x43,0x03,0x7a,0x10,0x09,0x00,0x40,0xe7,0x42,0x34,0x6b,0x16,0x43,
0x69,0xd6,0xfa,0x42,0x00,0xa0,0x0c,0x43,0x00,0x80,0x09,0x43,0x00,0xa0,0x0c,0x43,0x03,0x7a,0x10,0x09,
0x03,0x75,0x30,0xbe,0x69,0xd6,0xfa,0x42,0x00,0x60,0x38,0x43,0x00,0x40,0xe7,0x42,0xcb,0x94,0x2e,0x43,
0x00,0x40,0xe7,0x42,0x00,0x80,0x22,0x43,0x03,0x75,0x30,0xbe,0x00,0x40,0xe7,0x42,0x34,0x6b,0x16,0x43,
0x69,0xd6,0xfa,0x42,0x00,0xa0,0x0c,0x43,0x00,0x80,0x09,0x43,0x00,0xa0,0x0c,0x43,0x03,0x75,0x30,0xbe,
0xcc,0x94,0x15,0x43,0x00,0xa0,0x0c,0x43,0x00,0x60,0x1f,0x43,0x34,0x6b,0x16,0x43,0x00,0x60,0x1f,0x43,
0x00,0x80,0x22,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0xc8,0x40,
0xff,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0xc0,0x73,0x43,0x00,0x80,0x22,0x43,0x03,0x7a,0x10,0x09,
0xff,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0xc0,0x73,0x43,0x00,0x80,0x22,0x43,0x03,0x75,0x30,0xbe,
0x00,0xc0,0x73,0x43,0x47,0xc2,0x33,0x43,0x47,0xc2,0x65,0x43,0x00,0xc0,0x41,0x43,0x00,0x80,0x54,0x43,
0x00,0xc0,0x41,0x43,0x03,0x7a,0x10,0x09,0xb9,0x3d,0x43,0x43,0x00,0xc0,0x41,0x43,0x00,0x40,0x35,0x43,
0x47,0xc2,0x33,0x43,0x00,0x40,0x35,0x43,0x00,0x80,0x22,0x43,0x03,0x7a,0x10,0x09,0x00,0x40,0x35,0x43,
0x00,0xc0,0x41,0x43,0x03,0x75,0x30,0xbe,0xb9,0x3d,0x43,0x43,0x00,0xc0,0x41,0x43,0x00,0x40,0x35,0x43,
0x47,0xc2,0x33,0x43,0x00,0x40,0x35,0x43,0x00,0x80,0x22,0x43,0x03,0x75,0x30,0xbe,0x00,0x40,0x35,0x43,
0xb9,0x3d,0x11,0x43,0xb9,0x3d,0x43,0x43,0x00,0x40,0x03,0x43,0x00,0x80,0x54,0x43,0x00,0x40,0x03,0x43,
0x03,0x7a,0x10,0x09,0x47,0xc2,0x65,0x43,0x00,0x40,0x03,0x43,0x00,0xc0,0x73,0x43,0xb9,0x3d,0x11,0x43,
0x03,0x75,0x30,0xbe,0x47,0xc2,0x65,0x43,0x00,0x40,0x03,0x43,0x00,0xc0,0x73,0x43,0xb9,0x3d,0x11,0x43,
0x00,0xc0,0x73,0x43,0x00,0x80,0x22,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,
0x00,0x00,0x20,0x3f,0x00,0x00,0xc8,0x40,0x00,0x80,0x54,0x43,0x00,0x00,0x00,0xff,0x24,0x52,0x65,0x76,
0x69,0x73,0x69,0x6f,0x6e,0x3a,0x20,0x31,0x2e,0x37,0x20,0x24,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x20,
0x3f,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x20,0x3f,0x00,0x00,0x20,0x3f,0x02,0x1e,0x00,
0xbb,0x00,0xb0,0x95,0x43,0x00,0x00,0x20,0x3f,0x02,0x1e,0x00,0xbb,0x00,0xb0,0x95,0x43,0x00,0x60,0x60,
0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0x20,0x3f,0x00,0x60,0x60,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,
0x3f,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x20,0x3f,0x00,0x00,0x20,0x3f,0x02,0xde,0xd3,
0xb5,0x00,0xb0,0x95,0x43,0x00,0x00,0x20,0x3f,0x02,0xde,0xd3,0xb5,0x00,0xb0,0x95,0x43,0x00,0x60,0x60,
0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0x20,0x3f,0x00,0x60,0x60,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,};/*1053*/

View File

@ -2,60 +2,60 @@ TK_CONST_DATA_ALIGN(const unsigned char image_shapes_ellipse_01_t[]) = {
0x02,0x00,0x05,0x01,0x79,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x73,0x68,0x61,0x70,0x65,0x73,0x5f,0x65,
0x6c,0x6c,0x69,0x70,0x73,0x65,0x5f,0x30,0x31,0x5f,0x74,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x15,0x11,0x18,0x20,0x02,0x00,0x00,0x00,0x2c,0x01,0x00,0x00,0xe1,0x00,0x00,0x00,
0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x48,0x42,
0x00,0x80,0x3b,0x42,0x03,0xa2,0x80,0x08,0x00,0x00,0x48,0x42,0x8e,0x44,0x80,0x42,0xde,0x6b,0x26,0x42,
0x00,0x40,0x9c,0x42,0x00,0x00,0xfa,0x41,0x00,0x40,0x9c,0x42,0x03,0xa2,0x80,0x08,0x44,0x28,0xa7,0x41,
0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x48,0x42,
0x00,0x80,0x3b,0x42,0x03,0xa0,0x00,0xbd,0x00,0x00,0x48,0x42,0x8e,0x44,0x80,0x42,0xde,0x6b,0x26,0x42,
0x00,0x40,0x9c,0x42,0x00,0x00,0xfa,0x41,0x00,0x40,0x9c,0x42,0x03,0xa0,0x00,0xbd,0x44,0x28,0xa7,0x41,
0x00,0x40,0x9c,0x42,0x00,0x00,0x48,0x41,0x8e,0x44,0x80,0x42,0x00,0x00,0x48,0x41,0x00,0x80,0x3b,0x42,
0x03,0xa2,0x80,0x08,0x00,0x00,0x48,0x41,0xc6,0xed,0xec,0x41,0x44,0x28,0xa7,0x41,0x00,0x00,0x7a,0x41,
0x00,0x00,0xfa,0x41,0x00,0x00,0x7a,0x41,0x03,0xa2,0x80,0x08,0xde,0x6b,0x26,0x42,0x00,0x00,0x7a,0x41,
0x03,0xa0,0x00,0xbd,0x00,0x00,0x48,0x41,0xc6,0xed,0xec,0x41,0x44,0x28,0xa7,0x41,0x00,0x00,0x7a,0x41,
0x00,0x00,0xfa,0x41,0x00,0x00,0x7a,0x41,0x03,0xa0,0x00,0xbd,0xde,0x6b,0x26,0x42,0x00,0x00,0x7a,0x41,
0x00,0x00,0x48,0x42,0xc6,0xed,0xec,0x41,0x00,0x00,0x48,0x42,0x00,0x80,0x3b,0x42,0x04,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0xff,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,
0x00,0x80,0xed,0x42,0x00,0x80,0x3b,0x42,0x03,0xa2,0x80,0x08,0x00,0x80,0xed,0x42,0x8e,0x44,0x80,0x42,
0xef,0xb5,0xdc,0x42,0x00,0x40,0x9c,0x42,0x00,0x00,0xc8,0x42,0x00,0x40,0x9c,0x42,0x03,0xa2,0x80,0x08,
0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0xff,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,
0x00,0x80,0xed,0x42,0x00,0x80,0x3b,0x42,0x03,0xa0,0x00,0xbd,0x00,0x80,0xed,0x42,0x8e,0x44,0x80,0x42,
0xef,0xb5,0xdc,0x42,0x00,0x40,0x9c,0x42,0x00,0x00,0xc8,0x42,0x00,0x40,0x9c,0x42,0x03,0xa0,0x00,0xbd,
0x11,0x4a,0xb3,0x42,0x00,0x40,0x9c,0x42,0x00,0x80,0xa2,0x42,0x8e,0x44,0x80,0x42,0x00,0x80,0xa2,0x42,
0x00,0x80,0x3b,0x42,0x03,0xa2,0x80,0x08,0x00,0x80,0xa2,0x42,0xc6,0xed,0xec,0x41,0x11,0x4a,0xb3,0x42,
0x00,0x00,0x7a,0x41,0x00,0x00,0xc8,0x42,0x00,0x00,0x7a,0x41,0x03,0xa2,0x80,0x08,0xef,0xb5,0xdc,0x42,
0x00,0x80,0x3b,0x42,0x03,0xa0,0x00,0xbd,0x00,0x80,0xa2,0x42,0xc6,0xed,0xec,0x41,0x11,0x4a,0xb3,0x42,
0x00,0x00,0x7a,0x41,0x00,0x00,0xc8,0x42,0x00,0x00,0x7a,0x41,0x03,0xa0,0x00,0xbd,0xef,0xb5,0xdc,0x42,
0x00,0x00,0x7a,0x41,0x00,0x80,0xed,0x42,0xc6,0xed,0xec,0x41,0x00,0x80,0xed,0x42,0x00,0x80,0x3b,0x42,
0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,
0x01,0x92,0xf5,0x04,0x00,0xa0,0x3e,0x43,0x00,0x00,0x48,0x42,0x03,0xa2,0x80,0x08,0x00,0xa0,0x3e,0x43,
0x01,0xd2,0x21,0x0a,0x00,0xa0,0x3e,0x43,0x00,0x00,0x48,0x42,0x03,0xa0,0x00,0xbd,0x00,0xa0,0x3e,0x43,
0x2d,0x53,0x78,0x42,0xcb,0xd4,0x34,0x43,0x00,0xc0,0x8f,0x42,0x00,0xc0,0x28,0x43,0x00,0xc0,0x8f,0x42,
0x03,0xa2,0x80,0x08,0x34,0xab,0x1c,0x43,0x00,0xc0,0x8f,0x42,0x00,0xe0,0x12,0x43,0x2d,0x53,0x78,0x42,
0x00,0xe0,0x12,0x43,0x00,0x00,0x48,0x42,0x03,0xa2,0x80,0x08,0x00,0xe0,0x12,0x43,0xd2,0xac,0x17,0x42,
0x34,0xab,0x1c,0x43,0x00,0x00,0xe1,0x41,0x00,0xc0,0x28,0x43,0x00,0x00,0xe1,0x41,0x03,0xa2,0x80,0x08,
0x03,0xa0,0x00,0xbd,0x34,0xab,0x1c,0x43,0x00,0xc0,0x8f,0x42,0x00,0xe0,0x12,0x43,0x2d,0x53,0x78,0x42,
0x00,0xe0,0x12,0x43,0x00,0x00,0x48,0x42,0x03,0xa0,0x00,0xbd,0x00,0xe0,0x12,0x43,0xd2,0xac,0x17,0x42,
0x34,0xab,0x1c,0x43,0x00,0x00,0xe1,0x41,0x00,0xc0,0x28,0x43,0x00,0x00,0xe1,0x41,0x03,0xa0,0x00,0xbd,
0xcb,0xd4,0x34,0x43,0x00,0x00,0xe1,0x41,0x00,0xa0,0x3e,0x43,0xd2,0xac,0x17,0x42,0x00,0xa0,0x3e,0x43,
0x00,0x00,0x48,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,
0xff,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x20,0x7d,0x43,0x00,0x00,0x48,0x42,0x03,0xa2,0x80,0x08,
0xff,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x20,0x7d,0x43,0x00,0x00,0x48,0x42,0x03,0xa0,0x00,0xbd,
0x00,0x20,0x7d,0x43,0x2d,0x53,0x78,0x42,0xcb,0x54,0x73,0x43,0x00,0xc0,0x8f,0x42,0x00,0x40,0x67,0x43,
0x00,0xc0,0x8f,0x42,0x03,0xa2,0x80,0x08,0x35,0x2b,0x5b,0x43,0x00,0xc0,0x8f,0x42,0x00,0x60,0x51,0x43,
0x2d,0x53,0x78,0x42,0x00,0x60,0x51,0x43,0x00,0x00,0x48,0x42,0x03,0xa2,0x80,0x08,0x00,0x60,0x51,0x43,
0x00,0xc0,0x8f,0x42,0x03,0xa0,0x00,0xbd,0x35,0x2b,0x5b,0x43,0x00,0xc0,0x8f,0x42,0x00,0x60,0x51,0x43,
0x2d,0x53,0x78,0x42,0x00,0x60,0x51,0x43,0x00,0x00,0x48,0x42,0x03,0xa0,0x00,0xbd,0x00,0x60,0x51,0x43,
0xd2,0xac,0x17,0x42,0x35,0x2b,0x5b,0x43,0x00,0x00,0xe1,0x41,0x00,0x40,0x67,0x43,0x00,0x00,0xe1,0x41,
0x03,0xa2,0x80,0x08,0xcb,0x54,0x73,0x43,0x00,0x00,0xe1,0x41,0x00,0x20,0x7d,0x43,0xd2,0xac,0x17,0x42,
0x03,0xa0,0x00,0xbd,0xcb,0x54,0x73,0x43,0x00,0x00,0xe1,0x41,0x00,0x20,0x7d,0x43,0xd2,0xac,0x17,0x42,
0x00,0x20,0x7d,0x43,0x00,0x00,0x48,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x01,0x00,
0x00,0x00,0xa0,0x40,0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x48,0x42,0x00,0x80,0x09,0x43,
0x03,0xa2,0x80,0x08,0x00,0x00,0x48,0x42,0x47,0xc2,0x1a,0x43,0xde,0x6b,0x26,0x42,0x00,0xc0,0x28,0x43,
0x00,0x00,0xfa,0x41,0x00,0xc0,0x28,0x43,0x03,0xa2,0x80,0x08,0x44,0x28,0xa7,0x41,0x00,0xc0,0x28,0x43,
0x00,0x00,0x48,0x41,0x47,0xc2,0x1a,0x43,0x00,0x00,0x48,0x41,0x00,0x80,0x09,0x43,0x03,0xa2,0x80,0x08,
0x00,0x00,0xa0,0x40,0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x48,0x42,0x00,0x80,0x09,0x43,
0x03,0xa0,0x00,0xbd,0x00,0x00,0x48,0x42,0x47,0xc2,0x1a,0x43,0xde,0x6b,0x26,0x42,0x00,0xc0,0x28,0x43,
0x00,0x00,0xfa,0x41,0x00,0xc0,0x28,0x43,0x03,0xa0,0x00,0xbd,0x44,0x28,0xa7,0x41,0x00,0xc0,0x28,0x43,
0x00,0x00,0x48,0x41,0x47,0xc2,0x1a,0x43,0x00,0x00,0x48,0x41,0x00,0x80,0x09,0x43,0x03,0xa0,0x00,0xbd,
0x00,0x00,0x48,0x41,0x71,0x7b,0xf0,0x42,0x44,0x28,0xa7,0x41,0x00,0x80,0xd4,0x42,0x00,0x00,0xfa,0x41,
0x00,0x80,0xd4,0x42,0x03,0xa2,0x80,0x08,0xde,0x6b,0x26,0x42,0x00,0x80,0xd4,0x42,0x00,0x00,0x48,0x42,
0x00,0x80,0xd4,0x42,0x03,0xa0,0x00,0xbd,0xde,0x6b,0x26,0x42,0x00,0x80,0xd4,0x42,0x00,0x00,0x48,0x42,
0x71,0x7b,0xf0,0x42,0x00,0x00,0x48,0x42,0x00,0x80,0x09,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x02,0x01,0x01,0x00,0x00,0x00,0xa0,0x40,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,
0x00,0x80,0xed,0x42,0x00,0x80,0x09,0x43,0x03,0xa2,0x80,0x08,0x00,0x80,0xed,0x42,0x47,0xc2,0x1a,0x43,
0xef,0xb5,0xdc,0x42,0x00,0xc0,0x28,0x43,0x00,0x00,0xc8,0x42,0x00,0xc0,0x28,0x43,0x03,0xa2,0x80,0x08,
0x02,0x01,0x01,0x00,0x00,0x00,0xa0,0x40,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,
0x00,0x80,0xed,0x42,0x00,0x80,0x09,0x43,0x03,0xa0,0x00,0xbd,0x00,0x80,0xed,0x42,0x47,0xc2,0x1a,0x43,
0xef,0xb5,0xdc,0x42,0x00,0xc0,0x28,0x43,0x00,0x00,0xc8,0x42,0x00,0xc0,0x28,0x43,0x03,0xa0,0x00,0xbd,
0x11,0x4a,0xb3,0x42,0x00,0xc0,0x28,0x43,0x00,0x80,0xa2,0x42,0x47,0xc2,0x1a,0x43,0x00,0x80,0xa2,0x42,
0x00,0x80,0x09,0x43,0x03,0xa2,0x80,0x08,0x00,0x80,0xa2,0x42,0x71,0x7b,0xf0,0x42,0x11,0x4a,0xb3,0x42,
0x00,0x80,0xd4,0x42,0x00,0x00,0xc8,0x42,0x00,0x80,0xd4,0x42,0x03,0xa2,0x80,0x08,0xef,0xb5,0xdc,0x42,
0x00,0x80,0x09,0x43,0x03,0xa0,0x00,0xbd,0x00,0x80,0xa2,0x42,0x71,0x7b,0xf0,0x42,0x11,0x4a,0xb3,0x42,
0x00,0x80,0xd4,0x42,0x00,0x00,0xc8,0x42,0x00,0x80,0xd4,0x42,0x03,0xa0,0x00,0xbd,0xef,0xb5,0xdc,0x42,
0x00,0x80,0xd4,0x42,0x00,0x80,0xed,0x42,0x71,0x7b,0xf0,0x42,0x00,0x80,0xed,0x42,0x00,0x80,0x09,0x43,
0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0xa0,0x40,0x00,0xff,0x00,0xff,
0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x7a,0x43,0x00,0x80,0x09,0x43,0x03,0xa2,0x80,0x08,
0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x7a,0x43,0x00,0x80,0x09,0x43,0x03,0xa0,0x00,0xbd,
0x00,0x00,0x7a,0x43,0x9f,0x4e,0x17,0x43,0x97,0x69,0x66,0x43,0x00,0x80,0x22,0x43,0x00,0x40,0x4e,0x43,
0x00,0x80,0x22,0x43,0x03,0xa2,0x80,0x08,0x69,0x16,0x36,0x43,0x00,0x80,0x22,0x43,0x00,0x80,0x22,0x43,
0x9f,0x4e,0x17,0x43,0x00,0x80,0x22,0x43,0x00,0x80,0x09,0x43,0x03,0xa2,0x80,0x08,0x00,0x80,0x22,0x43,
0x00,0x80,0x22,0x43,0x03,0xa0,0x00,0xbd,0x69,0x16,0x36,0x43,0x00,0x80,0x22,0x43,0x00,0x80,0x22,0x43,
0x9f,0x4e,0x17,0x43,0x00,0x80,0x22,0x43,0x00,0x80,0x09,0x43,0x03,0xa0,0x00,0xbd,0x00,0x80,0x22,0x43,
0xc2,0x62,0xf7,0x42,0x69,0x16,0x36,0x43,0x00,0x00,0xe1,0x42,0x00,0x40,0x4e,0x43,0x00,0x00,0xe1,0x42,
0x03,0xa2,0x80,0x08,0x97,0x69,0x66,0x43,0x00,0x00,0xe1,0x42,0x00,0x00,0x7a,0x43,0xc2,0x62,0xf7,0x42,
0x03,0xa0,0x00,0xbd,0x97,0x69,0x66,0x43,0x00,0x00,0xe1,0x42,0x00,0x00,0x7a,0x43,0xc2,0x62,0xf7,0x42,
0x00,0x00,0x7a,0x43,0x00,0x80,0x09,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,
0x00,0x00,0x20,0x3f,0x00,0x00,0xc8,0x40,0x00,0x80,0x54,0x43,0x00,0x00,0x00,0xff,0x24,0x52,0x65,0x76,
0x69,0x73,0x69,0x6f,0x6e,0x3a,0x20,0x31,0x2e,0x37,0x20,0x24,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x20,
0x3f,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x20,0x3f,0x00,0x00,0x20,0x3f,0x02,0x1e,0x00,
0xbb,0x00,0xb0,0x95,0x43,0x00,0x00,0x20,0x3f,0x02,0x1e,0x00,0xbb,0x00,0xb0,0x95,0x43,0x00,0x60,0x60,
0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0x20,0x3f,0x00,0x60,0x60,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,
0x3f,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x20,0x3f,0x00,0x00,0x20,0x3f,0x02,0xde,0xd3,
0xb5,0x00,0xb0,0x95,0x43,0x00,0x00,0x20,0x3f,0x02,0xde,0xd3,0xb5,0x00,0xb0,0x95,0x43,0x00,0x60,0x60,
0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0x20,0x3f,0x00,0x60,0x60,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,};/*1193*/

View File

@ -2,52 +2,52 @@ TK_CONST_DATA_ALIGN(const unsigned char image_shapes_line_01_t[]) = {
0x02,0x00,0x05,0x01,0xdd,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x73,0x68,0x61,0x70,0x65,0x73,0x5f,0x6c,
0x69,0x6e,0x65,0x5f,0x30,0x31,0x5f,0x74,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x15,0x11,0x18,0x20,0x02,0x00,0x00,0x00,0x2c,0x01,0x00,0x00,0xe1,0x00,0x00,0x00,
0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x80,0xbb,0x41,
0x00,0x40,0xab,0x42,0x02,0x1e,0x00,0xbb,0x00,0xa0,0x8c,0x42,0x00,0x00,0xfa,0x41,0x00,0x00,0x00,0x00,
0x02,0x00,0x01,0x00,0x00,0x00,0x48,0x40,0xff,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0xa0,0x8c,0x42,
0x00,0x40,0xab,0x42,0x02,0x1e,0x00,0xbb,0x00,0x60,0xea,0x42,0x00,0x00,0xfa,0x41,0x00,0x00,0x00,0x00,
0x02,0x00,0x01,0x00,0x00,0x00,0x96,0x40,0x00,0x80,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x60,0xea,0x42,
0x00,0x40,0xab,0x42,0x02,0x1e,0x00,0xbb,0x00,0x10,0x24,0x43,0x00,0x00,0xfa,0x41,0x00,0x00,0x00,0x00,
0x02,0x00,0x01,0x00,0x00,0x00,0xc8,0x40,0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x10,0x24,0x43,
0x00,0x40,0xab,0x42,0x02,0x1e,0x00,0xbb,0x00,0xf0,0x52,0x43,0x00,0x00,0xfa,0x41,0x00,0x00,0x00,0x00,
0x02,0x00,0x01,0x00,0x00,0x00,0xfa,0x40,0xff,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0xf0,0x52,0x43,
0x00,0x40,0xab,0x42,0x02,0x1e,0x00,0xbb,0x00,0xe8,0x80,0x43,0x00,0x00,0xfa,0x41,0x00,0x00,0x00,0x00,
0x02,0x01,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,
0x00,0x80,0xd4,0x42,0x00,0x00,0xfa,0x42,0x02,0x1e,0x00,0xbb,0x00,0x80,0x09,0x43,0x00,0x00,0xfa,0x42,
0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x80,0xbb,0x41,
0x00,0x40,0xab,0x42,0x02,0xde,0xd3,0xb5,0x00,0xa0,0x8c,0x42,0x00,0x00,0xfa,0x41,0x00,0x00,0x00,0x00,
0x02,0x00,0x01,0x00,0x00,0x00,0x48,0x40,0xff,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0xa0,0x8c,0x42,
0x00,0x40,0xab,0x42,0x02,0xde,0xd3,0xb5,0x00,0x60,0xea,0x42,0x00,0x00,0xfa,0x41,0x00,0x00,0x00,0x00,
0x02,0x00,0x01,0x00,0x00,0x00,0x96,0x40,0x00,0x80,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x60,0xea,0x42,
0x00,0x40,0xab,0x42,0x02,0xde,0xd3,0xb5,0x00,0x10,0x24,0x43,0x00,0x00,0xfa,0x41,0x00,0x00,0x00,0x00,
0x02,0x00,0x01,0x00,0x00,0x00,0xc8,0x40,0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x10,0x24,0x43,
0x00,0x40,0xab,0x42,0x02,0xde,0xd3,0xb5,0x00,0xf0,0x52,0x43,0x00,0x00,0xfa,0x41,0x00,0x00,0x00,0x00,
0x02,0x00,0x01,0x00,0x00,0x00,0xfa,0x40,0xff,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0xf0,0x52,0x43,
0x00,0x40,0xab,0x42,0x02,0xde,0xd3,0xb5,0x00,0xe8,0x80,0x43,0x00,0x00,0xfa,0x41,0x00,0x00,0x00,0x00,
0x02,0x01,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,
0x00,0x80,0xd4,0x42,0x00,0x00,0xfa,0x42,0x02,0xde,0xd3,0xb5,0x00,0x80,0x09,0x43,0x00,0x00,0xfa,0x42,
0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,
0x01,0x92,0xf5,0x04,0x00,0x80,0x09,0x43,0x00,0x00,0xfa,0x42,0x02,0x1e,0x00,0xbb,0x00,0x80,0x09,0x43,
0x01,0xd2,0x21,0x0a,0x00,0x80,0x09,0x43,0x00,0x00,0xfa,0x42,0x02,0xde,0xd3,0xb5,0x00,0x80,0x09,0x43,
0x00,0x40,0x1c,0x43,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,
0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x80,0x09,0x43,0x00,0x40,0x1c,0x43,0x02,0x1e,0x00,0xbb,
0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x80,0x09,0x43,0x00,0x40,0x1c,0x43,0x02,0xde,0xd3,0xb5,
0x00,0xc0,0x28,0x43,0x00,0x40,0x1c,0x43,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0x20,0x3f,
0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0xc0,0x28,0x43,0x00,0x40,0x1c,0x43,
0x02,0x1e,0x00,0xbb,0x00,0xc0,0x28,0x43,0x00,0x00,0xfa,0x42,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,
0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0xc0,0x28,0x43,
0x00,0x00,0xfa,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x48,0x43,0x00,0x00,0xfa,0x42,0x00,0x00,0x00,0x00,
0x02,0x01,0x01,0x00,0x00,0x00,0xc8,0x40,0x00,0x00,0x00,0xff,0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,
0x00,0x00,0x7a,0x41,0x00,0x00,0xfa,0x42,0x02,0x1e,0x00,0xbb,0x00,0x80,0x3b,0x42,0x00,0x00,0xfa,0x42,
0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0xc0,0x28,0x43,0x00,0x40,0x1c,0x43,
0x02,0xde,0xd3,0xb5,0x00,0xc0,0x28,0x43,0x00,0x00,0xfa,0x42,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,
0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0xc0,0x28,0x43,
0x00,0x00,0xfa,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x48,0x43,0x00,0x00,0xfa,0x42,0x00,0x00,0x00,0x00,
0x02,0x01,0x01,0x00,0x00,0x00,0xc8,0x40,0x00,0x00,0x00,0xff,0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,
0x00,0x00,0x7a,0x41,0x00,0x00,0xfa,0x42,0x02,0xde,0xd3,0xb5,0x00,0x80,0x3b,0x42,0x00,0x00,0xfa,0x42,
0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0xc8,0x40,0x00,0x00,0x00,0xff,0x00,0x00,0xff,0xff,
0x01,0x92,0xf5,0x04,0x00,0x80,0x3b,0x42,0x00,0x00,0xfa,0x42,0x02,0x1e,0x00,0xbb,0x00,0x80,0x3b,0x42,
0x01,0xd2,0x21,0x0a,0x00,0x80,0x3b,0x42,0x00,0x00,0xfa,0x42,0x02,0xde,0xd3,0xb5,0x00,0x80,0x3b,0x42,
0x00,0x40,0x1c,0x43,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0xc8,0x40,0x00,0x00,0x00,0xff,
0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x80,0x3b,0x42,0x00,0x40,0x1c,0x43,0x02,0x1e,0x00,0xbb,
0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x80,0x3b,0x42,0x00,0x40,0x1c,0x43,0x02,0xde,0xd3,0xb5,
0x00,0x40,0x9c,0x42,0x00,0x40,0x1c,0x43,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0xc8,0x40,
0x00,0x00,0x00,0xff,0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x40,0x9c,0x42,0x00,0x40,0x1c,0x43,
0x02,0x1e,0x00,0xbb,0x00,0x40,0x9c,0x42,0x00,0x00,0xfa,0x42,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,
0x00,0x00,0xc8,0x40,0x00,0x00,0x00,0xff,0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x40,0x9c,0x42,
0x00,0x00,0xfa,0x42,0x02,0x1e,0x00,0xbb,0x00,0xc0,0xda,0x42,0x00,0x00,0xfa,0x42,0x00,0x00,0x00,0x00,
0x02,0x01,0x01,0x00,0x00,0x00,0xc8,0x40,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,
0x00,0x40,0x67,0x43,0x00,0x40,0x1c,0x43,0x02,0x1e,0x00,0xbb,0x00,0x40,0x83,0x43,0x00,0x40,0x1c,0x43,
0x00,0x00,0x00,0xff,0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x40,0x9c,0x42,0x00,0x40,0x1c,0x43,
0x02,0xde,0xd3,0xb5,0x00,0x40,0x9c,0x42,0x00,0x00,0xfa,0x42,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,
0x00,0x00,0xc8,0x40,0x00,0x00,0x00,0xff,0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x40,0x9c,0x42,
0x00,0x00,0xfa,0x42,0x02,0xde,0xd3,0xb5,0x00,0xc0,0xda,0x42,0x00,0x00,0xfa,0x42,0x00,0x00,0x00,0x00,
0x02,0x01,0x01,0x00,0x00,0x00,0xc8,0x40,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,
0x00,0x40,0x67,0x43,0x00,0x40,0x1c,0x43,0x02,0xde,0xd3,0xb5,0x00,0x40,0x83,0x43,0x00,0x40,0x1c,0x43,
0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0xc8,0x40,0x00,0x00,0x00,0xff,0xff,0x00,0xff,0xff,
0x01,0x92,0xf5,0x04,0x00,0x40,0x83,0x43,0x00,0x00,0xfa,0x42,0x02,0x1e,0x00,0xbb,0x00,0xe0,0x92,0x43,
0x01,0xd2,0x21,0x0a,0x00,0x40,0x83,0x43,0x00,0x00,0xfa,0x42,0x02,0xde,0xd3,0xb5,0x00,0xe0,0x92,0x43,
0x00,0x00,0xfa,0x42,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0xc8,0x40,0x00,0x00,0x00,0xff,
0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x48,0x43,0x00,0x00,0xfa,0x42,0x02,0x1e,0x00,0xbb,
0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x48,0x43,0x00,0x00,0xfa,0x42,0x02,0xde,0xd3,0xb5,
0x00,0x40,0x67,0x43,0x00,0x00,0xfa,0x42,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0xc8,0x40,
0x00,0x00,0x00,0xff,0x00,0x80,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x40,0x67,0x43,0x00,0x00,0xfa,0x42,
0x02,0x1e,0x00,0xbb,0x00,0x40,0x67,0x43,0x00,0x40,0x1c,0x43,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,
0x00,0x00,0xc8,0x40,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x40,0x83,0x43,
0x00,0x40,0x1c,0x43,0x02,0x1e,0x00,0xbb,0x00,0x40,0x83,0x43,0x00,0x00,0xfa,0x42,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0xff,0x00,0x80,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x40,0x67,0x43,0x00,0x00,0xfa,0x42,
0x02,0xde,0xd3,0xb5,0x00,0x40,0x67,0x43,0x00,0x40,0x1c,0x43,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,
0x00,0x00,0xc8,0x40,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x40,0x83,0x43,
0x00,0x40,0x1c,0x43,0x02,0xde,0xd3,0xb5,0x00,0x40,0x83,0x43,0x00,0x00,0xfa,0x42,0x00,0x00,0x00,0x00,
0x01,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xc8,0x40,0x00,0x80,0x54,0x43,0x00,0x00,0x00,0xff,
0x24,0x52,0x65,0x76,0x69,0x73,0x69,0x6f,0x6e,0x3a,0x20,0x31,0x2e,0x37,0x20,0x24,0x00,0x02,0x00,0x01,
0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x20,0x3f,0x00,0x00,0x20,
0x3f,0x02,0x1e,0x00,0xbb,0x00,0xb0,0x95,0x43,0x00,0x00,0x20,0x3f,0x02,0x1e,0x00,0xbb,0x00,0xb0,0x95,
0x43,0x00,0x60,0x60,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0x20,0x3f,0x00,0x60,0x60,0x43,0x04,0x00,0x00,
0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x20,0x3f,0x00,0x00,0x20,
0x3f,0x02,0xde,0xd3,0xb5,0x00,0xb0,0x95,0x43,0x00,0x00,0x20,0x3f,0x02,0xde,0xd3,0xb5,0x00,0xb0,0x95,
0x43,0x00,0x60,0x60,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0x20,0x3f,0x00,0x60,0x60,0x43,0x04,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,};/*1037*/

View File

@ -2,44 +2,44 @@ TK_CONST_DATA_ALIGN(const unsigned char image_shapes_polygon_01_t[]) = {
0x02,0x00,0x05,0x01,0x35,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x73,0x68,0x61,0x70,0x65,0x73,0x5f,0x70,
0x6f,0x6c,0x79,0x67,0x6f,0x6e,0x5f,0x30,0x31,0x5f,0x74,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x15,0x11,0x18,0x20,0x02,0x00,0x00,0x00,0x2c,0x01,0x00,0x00,0xe1,0x00,0x00,0x00,
0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x80,0x13,0x42,
0x00,0x00,0xe1,0x41,0x02,0x1e,0x00,0xbb,0x00,0x80,0x6d,0x42,0x00,0x80,0x1d,0x42,0x02,0x1e,0x00,0xbb,
0x00,0x00,0x87,0x42,0x00,0x40,0x83,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x4d,0x42,0x00,0xc0,0xad,0x42,
0x02,0x1e,0x00,0xbb,0x00,0x00,0xc3,0x41,0x00,0x00,0xaf,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0xdc,0x40,
0x00,0xc0,0x85,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x3e,0x41,0x00,0x80,0x22,0x42,0x04,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0xff,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,
0x00,0xc0,0xdf,0x42,0x00,0x00,0xe1,0x41,0x02,0x1e,0x00,0xbb,0x00,0x40,0x08,0x43,0x00,0x80,0x1d,0x42,
0x02,0x1e,0x00,0xbb,0x00,0x80,0x0e,0x43,0x00,0x40,0x83,0x42,0x02,0x1e,0x00,0xbb,0x00,0x80,0xfc,0x42,
0x00,0xc0,0xad,0x42,0x02,0x1e,0x00,0xbb,0x00,0xc0,0xc6,0x42,0x00,0x00,0xaf,0x42,0x02,0x1e,0x00,0xbb,
0x00,0xc0,0xa3,0x42,0x00,0xc0,0x85,0x42,0x02,0x1e,0x00,0xbb,0x00,0xc0,0xad,0x42,0x00,0x80,0x22,0x42,
0x02,0x1e,0x00,0xbb,0x00,0xc0,0xdf,0x42,0x00,0x00,0xe1,0x41,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x02,0x01,0x01,0x00,0x00,0x00,0x70,0x40,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,
0x00,0xc0,0x5a,0x43,0x00,0x00,0xe1,0x41,0x02,0x1e,0x00,0xbb,0x00,0x60,0x6a,0x43,0x00,0x00,0x48,0x42,
0x02,0x1e,0x00,0xbb,0x00,0x20,0x80,0x43,0x00,0x80,0x6d,0x42,0x02,0x1e,0x00,0xbb,0x00,0x60,0x6a,0x43,
0x00,0x80,0x89,0x42,0x02,0x1e,0x00,0xbb,0x00,0xc0,0x5a,0x43,0x00,0x40,0xb5,0x42,0x02,0x1e,0x00,0xbb,
0x00,0x20,0x4b,0x43,0x00,0x00,0x96,0x42,0x02,0x1e,0x00,0xbb,0x00,0x40,0x35,0x43,0x00,0x80,0x6d,0x42,
0x02,0x1e,0x00,0xbb,0x00,0x20,0x4b,0x43,0x00,0x00,0x2f,0x42,0x02,0x1e,0x00,0xbb,0x00,0xc0,0x5a,0x43,
0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x80,0x13,0x42,
0x00,0x00,0xe1,0x41,0x02,0xde,0xd3,0xb5,0x00,0x80,0x6d,0x42,0x00,0x80,0x1d,0x42,0x02,0xde,0xd3,0xb5,
0x00,0x00,0x87,0x42,0x00,0x40,0x83,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x4d,0x42,0x00,0xc0,0xad,0x42,
0x02,0xde,0xd3,0xb5,0x00,0x00,0xc3,0x41,0x00,0x00,0xaf,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0xdc,0x40,
0x00,0xc0,0x85,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x3e,0x41,0x00,0x80,0x22,0x42,0x04,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0xff,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,
0x00,0xc0,0xdf,0x42,0x00,0x00,0xe1,0x41,0x02,0xde,0xd3,0xb5,0x00,0x40,0x08,0x43,0x00,0x80,0x1d,0x42,
0x02,0xde,0xd3,0xb5,0x00,0x80,0x0e,0x43,0x00,0x40,0x83,0x42,0x02,0xde,0xd3,0xb5,0x00,0x80,0xfc,0x42,
0x00,0xc0,0xad,0x42,0x02,0xde,0xd3,0xb5,0x00,0xc0,0xc6,0x42,0x00,0x00,0xaf,0x42,0x02,0xde,0xd3,0xb5,
0x00,0xc0,0xa3,0x42,0x00,0xc0,0x85,0x42,0x02,0xde,0xd3,0xb5,0x00,0xc0,0xad,0x42,0x00,0x80,0x22,0x42,
0x02,0xde,0xd3,0xb5,0x00,0xc0,0xdf,0x42,0x00,0x00,0xe1,0x41,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x02,0x01,0x01,0x00,0x00,0x00,0x70,0x40,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,
0x00,0xc0,0x5a,0x43,0x00,0x00,0xe1,0x41,0x02,0xde,0xd3,0xb5,0x00,0x60,0x6a,0x43,0x00,0x00,0x48,0x42,
0x02,0xde,0xd3,0xb5,0x00,0x20,0x80,0x43,0x00,0x80,0x6d,0x42,0x02,0xde,0xd3,0xb5,0x00,0x60,0x6a,0x43,
0x00,0x80,0x89,0x42,0x02,0xde,0xd3,0xb5,0x00,0xc0,0x5a,0x43,0x00,0x40,0xb5,0x42,0x02,0xde,0xd3,0xb5,
0x00,0x20,0x4b,0x43,0x00,0x00,0x96,0x42,0x02,0xde,0xd3,0xb5,0x00,0x40,0x35,0x43,0x00,0x80,0x6d,0x42,
0x02,0xde,0xd3,0xb5,0x00,0x20,0x4b,0x43,0x00,0x00,0x2f,0x42,0x02,0xde,0xd3,0xb5,0x00,0xc0,0x5a,0x43,
0x00,0x00,0xe1,0x41,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0xa0,0x40,
0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x80,0x13,0x42,0x00,0x40,0xe7,0x42,0x02,0x1e,0x00,0xbb,
0x00,0x00,0x75,0x42,0x00,0xc0,0xfd,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x87,0x42,0x00,0x20,0x19,0x43,
0x02,0x1e,0x00,0xbb,0x00,0x00,0x4d,0x42,0x00,0x60,0x2e,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0xc3,0x41,
0x00,0x00,0x2f,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0xdc,0x40,0x00,0x60,0x1a,0x43,0x02,0x1e,0x00,0xbb,
0x00,0x00,0x3e,0x41,0x00,0x20,0x00,0x43,0x02,0x1e,0x00,0xbb,0x00,0x80,0x13,0x42,0x00,0x40,0xe7,0x42,
0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x80,0x13,0x42,0x00,0x40,0xe7,0x42,0x02,0xde,0xd3,0xb5,
0x00,0x00,0x75,0x42,0x00,0xc0,0xfd,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x87,0x42,0x00,0x20,0x19,0x43,
0x02,0xde,0xd3,0xb5,0x00,0x00,0x4d,0x42,0x00,0x60,0x2e,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0xc3,0x41,
0x00,0x00,0x2f,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0xdc,0x40,0x00,0x60,0x1a,0x43,0x02,0xde,0xd3,0xb5,
0x00,0x00,0x3e,0x41,0x00,0x20,0x00,0x43,0x02,0xde,0xd3,0xb5,0x00,0x80,0x13,0x42,0x00,0x40,0xe7,0x42,
0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0xa0,0x40,0x00,0xff,0x00,0xff,
0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0xc0,0xdf,0x42,0x00,0x40,0xe7,0x42,0x02,0x1e,0x00,0xbb,
0x00,0x40,0x08,0x43,0x00,0xc0,0xfd,0x42,0x02,0x1e,0x00,0xbb,0x00,0x80,0x0e,0x43,0x00,0x20,0x19,0x43,
0x02,0x1e,0x00,0xbb,0x00,0x80,0xfc,0x42,0x00,0x60,0x2e,0x43,0x02,0x1e,0x00,0xbb,0x00,0xc0,0xc6,0x42,
0x00,0x00,0x2f,0x43,0x02,0x1e,0x00,0xbb,0x00,0xc0,0xa3,0x42,0x00,0x60,0x1a,0x43,0x02,0x1e,0x00,0xbb,
0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0xc0,0xdf,0x42,0x00,0x40,0xe7,0x42,0x02,0xde,0xd3,0xb5,
0x00,0x40,0x08,0x43,0x00,0xc0,0xfd,0x42,0x02,0xde,0xd3,0xb5,0x00,0x80,0x0e,0x43,0x00,0x20,0x19,0x43,
0x02,0xde,0xd3,0xb5,0x00,0x80,0xfc,0x42,0x00,0x60,0x2e,0x43,0x02,0xde,0xd3,0xb5,0x00,0xc0,0xc6,0x42,
0x00,0x00,0x2f,0x43,0x02,0xde,0xd3,0xb5,0x00,0xc0,0xa3,0x42,0x00,0x60,0x1a,0x43,0x02,0xde,0xd3,0xb5,
0x00,0xc0,0xad,0x42,0x00,0x20,0x00,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x01,0x00,
0x00,0x00,0xa0,0x40,0x00,0xff,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0xc0,0x28,0x43,0x00,0xa0,0x0c,0x43,
0x02,0x1e,0x00,0xbb,0x00,0x80,0x3b,0x43,0x00,0x20,0x19,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0x48,0x43,
0x00,0xa0,0x0c,0x43,0x02,0x1e,0x00,0xbb,0x00,0x80,0x54,0x43,0x00,0x20,0x19,0x43,0x02,0x1e,0x00,0xbb,
0x00,0x00,0x2f,0x43,0x00,0x00,0x2f,0x43,0x02,0x1e,0x00,0xbb,0x00,0xc0,0x73,0x43,0x00,0x00,0x2f,0x43,
0x02,0x1e,0x00,0xbb,0x00,0x40,0x83,0x43,0x00,0x00,0x16,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0x2f,0x43,
0x00,0x00,0xa0,0x40,0x00,0xff,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0xc0,0x28,0x43,0x00,0xa0,0x0c,0x43,
0x02,0xde,0xd3,0xb5,0x00,0x80,0x3b,0x43,0x00,0x20,0x19,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0x48,0x43,
0x00,0xa0,0x0c,0x43,0x02,0xde,0xd3,0xb5,0x00,0x80,0x54,0x43,0x00,0x20,0x19,0x43,0x02,0xde,0xd3,0xb5,
0x00,0x00,0x2f,0x43,0x00,0x00,0x2f,0x43,0x02,0xde,0xd3,0xb5,0x00,0xc0,0x73,0x43,0x00,0x00,0x2f,0x43,
0x02,0xde,0xd3,0xb5,0x00,0x40,0x83,0x43,0x00,0x00,0x16,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0x2f,0x43,
0x00,0x40,0xe7,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,
0x00,0x00,0xc8,0x40,0x00,0x80,0x54,0x43,0x00,0x00,0x00,0xff,0x24,0x52,0x65,0x76,0x69,0x73,0x69,0x6f,
0x6e,0x3a,0x20,0x31,0x2e,0x37,0x20,0x24,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,
0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x20,0x3f,0x00,0x00,0x20,0x3f,0x02,0x1e,0x00,0xbb,0x00,0xb0,0x95,
0x43,0x00,0x00,0x20,0x3f,0x02,0x1e,0x00,0xbb,0x00,0xb0,0x95,0x43,0x00,0x60,0x60,0x43,0x02,0x1e,0x00,
0xbb,0x00,0x00,0x20,0x3f,0x00,0x60,0x60,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x20,0x3f,0x00,0x00,0x20,0x3f,0x02,0xde,0xd3,0xb5,0x00,0xb0,0x95,
0x43,0x00,0x00,0x20,0x3f,0x02,0xde,0xd3,0xb5,0x00,0xb0,0x95,0x43,0x00,0x60,0x60,0x43,0x02,0xde,0xd3,
0xb5,0x00,0x00,0x20,0x3f,0x00,0x60,0x60,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,};/*869*/

View File

@ -2,39 +2,39 @@ TK_CONST_DATA_ALIGN(const unsigned char image_shapes_polyline_01_t[]) = {
0x02,0x00,0x05,0x01,0xc9,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x73,0x68,0x61,0x70,0x65,0x73,0x5f,0x70,
0x6f,0x6c,0x79,0x6c,0x69,0x6e,0x65,0x5f,0x30,0x31,0x5f,0x74,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x15,0x11,0x18,0x20,0x02,0x00,0x00,0x00,0x2c,0x01,0x00,0x00,0xe1,0x00,0x00,0x00,
0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0xc8,0x40,
0x00,0x00,0xfa,0x41,0x02,0x1e,0x00,0xbb,0x00,0x00,0xaf,0x41,0x00,0x80,0xbb,0x42,0x02,0x1e,0x00,0xbb,
0x00,0x00,0x16,0x42,0x00,0x00,0xfa,0x41,0x02,0x1e,0x00,0xbb,0x00,0x80,0x54,0x42,0x00,0x80,0xbb,0x42,
0x02,0x1e,0x00,0xbb,0x00,0x80,0x89,0x42,0x00,0x00,0xfa,0x41,0x02,0x1e,0x00,0xbb,0x00,0xc0,0xa8,0x42,
0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0xc8,0x40,
0x00,0x00,0xfa,0x41,0x02,0xde,0xd3,0xb5,0x00,0x00,0xaf,0x41,0x00,0x80,0xbb,0x42,0x02,0xde,0xd3,0xb5,
0x00,0x00,0x16,0x42,0x00,0x00,0xfa,0x41,0x02,0xde,0xd3,0xb5,0x00,0x80,0x54,0x42,0x00,0x80,0xbb,0x42,
0x02,0xde,0xd3,0xb5,0x00,0x80,0x89,0x42,0x00,0x00,0xfa,0x41,0x02,0xde,0xd3,0xb5,0x00,0xc0,0xa8,0x42,
0x00,0x80,0xbb,0x42,0x00,0x00,0x00,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0xa0,0x40,0x00,0x00,0xff,0xff,
0x01,0x92,0xf5,0x04,0x00,0x80,0x09,0x43,0x00,0x00,0xfa,0x41,0x02,0x1e,0x00,0xbb,0x00,0xe0,0x26,0x43,
0x00,0x00,0x52,0x42,0x02,0x1e,0x00,0xbb,0x00,0xa0,0x1b,0x43,0x00,0x00,0xaf,0x42,0x02,0x1e,0x00,0xbb,
0x00,0x80,0xed,0x42,0x00,0x00,0xaf,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0xd7,0x42,0x00,0x00,0x52,0x42,
0x02,0x1e,0x00,0xbb,0x00,0x80,0x09,0x43,0x00,0x00,0xfa,0x41,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,
0x00,0x00,0x20,0x40,0x00,0x00,0xff,0xff,0x00,0xff,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0xc0,0x41,0x43,
0x00,0x00,0xfa,0x41,0x02,0x1e,0x00,0xbb,0x00,0x60,0x51,0x43,0x00,0x80,0xbb,0x42,0x02,0x1e,0x00,0xbb,
0x00,0x00,0x61,0x43,0x00,0x00,0xfa,0x41,0x02,0x1e,0x00,0xbb,0x00,0xa0,0x70,0x43,0x00,0x80,0xbb,0x42,
0x02,0x1e,0x00,0xbb,0x00,0x20,0x80,0x43,0x00,0x00,0xfa,0x41,0x02,0x1e,0x00,0xbb,0x00,0xf0,0x87,0x43,
0x01,0xd2,0x21,0x0a,0x00,0x80,0x09,0x43,0x00,0x00,0xfa,0x41,0x02,0xde,0xd3,0xb5,0x00,0xe0,0x26,0x43,
0x00,0x00,0x52,0x42,0x02,0xde,0xd3,0xb5,0x00,0xa0,0x1b,0x43,0x00,0x00,0xaf,0x42,0x02,0xde,0xd3,0xb5,
0x00,0x80,0xed,0x42,0x00,0x00,0xaf,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0xd7,0x42,0x00,0x00,0x52,0x42,
0x02,0xde,0xd3,0xb5,0x00,0x80,0x09,0x43,0x00,0x00,0xfa,0x41,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,
0x00,0x00,0x20,0x40,0x00,0x00,0xff,0xff,0x00,0xff,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0xc0,0x41,0x43,
0x00,0x00,0xfa,0x41,0x02,0xde,0xd3,0xb5,0x00,0x60,0x51,0x43,0x00,0x80,0xbb,0x42,0x02,0xde,0xd3,0xb5,
0x00,0x00,0x61,0x43,0x00,0x00,0xfa,0x41,0x02,0xde,0xd3,0xb5,0x00,0xa0,0x70,0x43,0x00,0x80,0xbb,0x42,
0x02,0xde,0xd3,0xb5,0x00,0x20,0x80,0x43,0x00,0x00,0xfa,0x41,0x02,0xde,0xd3,0xb5,0x00,0xf0,0x87,0x43,
0x00,0x80,0xbb,0x42,0x00,0x00,0x00,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0xa0,0x40,0xff,0x00,0x00,0xff,
0x01,0x92,0xf5,0x04,0x00,0x80,0x13,0x42,0x00,0x40,0xe7,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x75,0x42,
0x00,0xc0,0xfd,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x87,0x42,0x00,0x20,0x19,0x43,0x02,0x1e,0x00,0xbb,
0x00,0x00,0x4d,0x42,0x00,0x60,0x2e,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0xc3,0x41,0x00,0x00,0x2f,0x43,
0x02,0x1e,0x00,0xbb,0x00,0x00,0xdc,0x40,0x00,0x60,0x1a,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0x3e,0x41,
0x01,0xd2,0x21,0x0a,0x00,0x80,0x13,0x42,0x00,0x40,0xe7,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x75,0x42,
0x00,0xc0,0xfd,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x87,0x42,0x00,0x20,0x19,0x43,0x02,0xde,0xd3,0xb5,
0x00,0x00,0x4d,0x42,0x00,0x60,0x2e,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0xc3,0x41,0x00,0x00,0x2f,0x43,
0x02,0xde,0xd3,0xb5,0x00,0x00,0xdc,0x40,0x00,0x60,0x1a,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0x3e,0x41,
0x00,0x20,0x00,0x43,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0xa0,0x40,0x00,0xff,0x00,0xff,
0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x40,0xec,0x42,0x00,0x40,0xe7,0x42,0x02,0x1e,0x00,0xbb,
0x00,0x80,0x0e,0x43,0x00,0xc0,0xfd,0x42,0x02,0x1e,0x00,0xbb,0x00,0xc0,0x14,0x43,0x00,0x20,0x19,0x43,
0x02,0x1e,0x00,0xbb,0x00,0x80,0x04,0x43,0x00,0x60,0x2e,0x43,0x02,0x1e,0x00,0xbb,0x00,0x40,0xd3,0x42,
0x00,0x00,0x2f,0x43,0x02,0x1e,0x00,0xbb,0x00,0x40,0xb0,0x42,0x00,0x60,0x1a,0x43,0x02,0x1e,0x00,0xbb,
0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x40,0xec,0x42,0x00,0x40,0xe7,0x42,0x02,0xde,0xd3,0xb5,
0x00,0x80,0x0e,0x43,0x00,0xc0,0xfd,0x42,0x02,0xde,0xd3,0xb5,0x00,0xc0,0x14,0x43,0x00,0x20,0x19,0x43,
0x02,0xde,0xd3,0xb5,0x00,0x80,0x04,0x43,0x00,0x60,0x2e,0x43,0x02,0xde,0xd3,0xb5,0x00,0x40,0xd3,0x42,
0x00,0x00,0x2f,0x43,0x02,0xde,0xd3,0xb5,0x00,0x40,0xb0,0x42,0x00,0x60,0x1a,0x43,0x02,0xde,0xd3,0xb5,
0x00,0x40,0xba,0x42,0x00,0x20,0x00,0x43,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0xa0,0x40,
0xff,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0xc0,0x28,0x43,0x00,0xa0,0x0c,0x43,0x02,0x1e,0x00,0xbb,
0x00,0x80,0x3b,0x43,0x00,0x20,0x19,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0x48,0x43,0x00,0xa0,0x0c,0x43,
0x02,0x1e,0x00,0xbb,0x00,0x80,0x54,0x43,0x00,0x20,0x19,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0x2f,0x43,
0x00,0x00,0x2f,0x43,0x02,0x1e,0x00,0xbb,0x00,0xc0,0x73,0x43,0x00,0x00,0x2f,0x43,0x02,0x1e,0x00,0xbb,
0x00,0x40,0x83,0x43,0x00,0x00,0x16,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0x2f,0x43,0x00,0x40,0xe7,0x42,
0xff,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0xc0,0x28,0x43,0x00,0xa0,0x0c,0x43,0x02,0xde,0xd3,0xb5,
0x00,0x80,0x3b,0x43,0x00,0x20,0x19,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0x48,0x43,0x00,0xa0,0x0c,0x43,
0x02,0xde,0xd3,0xb5,0x00,0x80,0x54,0x43,0x00,0x20,0x19,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0x2f,0x43,
0x00,0x00,0x2f,0x43,0x02,0xde,0xd3,0xb5,0x00,0xc0,0x73,0x43,0x00,0x00,0x2f,0x43,0x02,0xde,0xd3,0xb5,
0x00,0x40,0x83,0x43,0x00,0x00,0x16,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0x2f,0x43,0x00,0x40,0xe7,0x42,
0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xc8,0x40,0x00,0x80,0x54,0x43,
0x00,0x00,0x00,0xff,0x24,0x52,0x65,0x76,0x69,0x73,0x69,0x6f,0x6e,0x3a,0x20,0x31,0x2e,0x37,0x20,0x24,
0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x20,
0x3f,0x00,0x00,0x20,0x3f,0x02,0x1e,0x00,0xbb,0x00,0xb0,0x95,0x43,0x00,0x00,0x20,0x3f,0x02,0x1e,0x00,
0xbb,0x00,0xb0,0x95,0x43,0x00,0x60,0x60,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0x20,0x3f,0x00,0x60,0x60,
0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x20,
0x3f,0x00,0x00,0x20,0x3f,0x02,0xde,0xd3,0xb5,0x00,0xb0,0x95,0x43,0x00,0x00,0x20,0x3f,0x02,0xde,0xd3,
0xb5,0x00,0xb0,0x95,0x43,0x00,0x60,0x60,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0x20,0x3f,0x00,0x60,0x60,
0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,};/*761*/

View File

@ -2,37 +2,37 @@ TK_CONST_DATA_ALIGN(const unsigned char image_shapes_rect_01_t[]) = {
0x02,0x00,0x05,0x01,0xa5,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x73,0x68,0x61,0x70,0x65,0x73,0x5f,0x72,
0x65,0x63,0x74,0x5f,0x30,0x31,0x5f,0x74,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x15,0x11,0x18,0x20,0x02,0x00,0x00,0x00,0x2c,0x01,0x00,0x00,0xe1,0x00,0x00,0x00,
0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x96,0x41,
0x00,0x00,0xe6,0x41,0x02,0x1e,0x00,0xbb,0x00,0x00,0x48,0x42,0x00,0x00,0xe6,0x41,0x02,0x1e,0x00,0xbb,
0x00,0x00,0x48,0x42,0x00,0x80,0x9d,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x96,0x41,0x00,0x80,0x9d,0x42,
0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x96,0x41,
0x00,0x00,0xe6,0x41,0x02,0xde,0xd3,0xb5,0x00,0x00,0x48,0x42,0x00,0x00,0xe6,0x41,0x02,0xde,0xd3,0xb5,
0x00,0x00,0x48,0x42,0x00,0x80,0x9d,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x96,0x41,0x00,0x80,0x9d,0x42,
0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0xff,0x00,0x00,0xff,
0x01,0x92,0xf5,0x04,0x00,0x80,0xa2,0x42,0x00,0x00,0xe6,0x41,0x02,0x1e,0x00,0xbb,0x00,0x00,0xe1,0x42,
0x00,0x00,0xe6,0x41,0x02,0x1e,0x00,0xbb,0x00,0x00,0xe1,0x42,0x00,0x80,0x9d,0x42,0x02,0x1e,0x00,0xbb,
0x01,0xd2,0x21,0x0a,0x00,0x80,0xa2,0x42,0x00,0x00,0xe6,0x41,0x02,0xde,0xd3,0xb5,0x00,0x00,0xe1,0x42,
0x00,0x00,0xe6,0x41,0x02,0xde,0xd3,0xb5,0x00,0x00,0xe1,0x42,0x00,0x80,0x9d,0x42,0x02,0xde,0xd3,0xb5,
0x00,0x80,0xa2,0x42,0x00,0x80,0x9d,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x01,0x00,
0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0x40,0x1c,0x43,0x00,0x00,0xe6,0x41,
0x02,0x1e,0x00,0xbb,0x00,0x80,0x3b,0x43,0x00,0x00,0xe6,0x41,0x02,0x1e,0x00,0xbb,0x00,0x80,0x3b,0x43,
0x00,0x80,0x9d,0x42,0x02,0x1e,0x00,0xbb,0x00,0x40,0x1c,0x43,0x00,0x80,0x9d,0x42,0x04,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0xff,0x00,0x00,0xff,0x01,0x92,0xf5,0x04,
0x00,0xc0,0x5a,0x43,0x00,0x00,0xe6,0x41,0x02,0x1e,0x00,0xbb,0x00,0x00,0x7a,0x43,0x00,0x00,0xe6,0x41,
0x02,0x1e,0x00,0xbb,0x00,0x00,0x7a,0x43,0x00,0x80,0x9d,0x42,0x02,0x1e,0x00,0xbb,0x00,0xc0,0x5a,0x43,
0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0x40,0x1c,0x43,0x00,0x00,0xe6,0x41,
0x02,0xde,0xd3,0xb5,0x00,0x80,0x3b,0x43,0x00,0x00,0xe6,0x41,0x02,0xde,0xd3,0xb5,0x00,0x80,0x3b,0x43,
0x00,0x80,0x9d,0x42,0x02,0xde,0xd3,0xb5,0x00,0x40,0x1c,0x43,0x00,0x80,0x9d,0x42,0x04,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0xff,0x00,0x00,0xff,0x01,0xd2,0x21,0x0a,
0x00,0xc0,0x5a,0x43,0x00,0x00,0xe6,0x41,0x02,0xde,0xd3,0xb5,0x00,0x00,0x7a,0x43,0x00,0x00,0xe6,0x41,
0x02,0xde,0xd3,0xb5,0x00,0x00,0x7a,0x43,0x00,0x80,0x9d,0x42,0x02,0xde,0xd3,0xb5,0x00,0xc0,0x5a,0x43,
0x00,0x80,0x9d,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0xa0,0x40,
0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0x96,0x41,0x00,0x00,0xf5,0x42,0x02,0x1e,0x00,0xbb,
0x00,0x00,0x48,0x42,0x00,0x00,0xf5,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x48,0x42,0x00,0x80,0x2c,0x43,
0x02,0x1e,0x00,0xbb,0x00,0x00,0x96,0x41,0x00,0x80,0x2c,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x02,0x01,0x01,0x00,0x00,0x00,0xa0,0x40,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,
0x00,0x80,0xa2,0x42,0x00,0x00,0xf5,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0xe1,0x42,0x00,0x00,0xf5,0x42,
0x02,0x1e,0x00,0xbb,0x00,0x00,0xe1,0x42,0x00,0x80,0x2c,0x43,0x02,0x1e,0x00,0xbb,0x00,0x80,0xa2,0x42,
0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0x96,0x41,0x00,0x00,0xf5,0x42,0x02,0xde,0xd3,0xb5,
0x00,0x00,0x48,0x42,0x00,0x00,0xf5,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x48,0x42,0x00,0x80,0x2c,0x43,
0x02,0xde,0xd3,0xb5,0x00,0x00,0x96,0x41,0x00,0x80,0x2c,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x02,0x01,0x01,0x00,0x00,0x00,0xa0,0x40,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,
0x00,0x80,0xa2,0x42,0x00,0x00,0xf5,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0xe1,0x42,0x00,0x00,0xf5,0x42,
0x02,0xde,0xd3,0xb5,0x00,0x00,0xe1,0x42,0x00,0x80,0x2c,0x43,0x02,0xde,0xd3,0xb5,0x00,0x80,0xa2,0x42,
0x00,0x80,0x2c,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0xa0,0x40,
0x00,0x00,0xff,0xff,0x01,0x92,0xf5,0x04,0x00,0x40,0x1c,0x43,0x00,0x00,0xf5,0x42,0x02,0x1e,0x00,0xbb,
0x00,0x80,0x3b,0x43,0x00,0x00,0xf5,0x42,0x02,0x1e,0x00,0xbb,0x00,0x80,0x3b,0x43,0x00,0x80,0x2c,0x43,
0x02,0x1e,0x00,0xbb,0x00,0x40,0x1c,0x43,0x00,0x80,0x2c,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0xff,0x00,0xff,0x01,0x92,0xf5,0x04,0x00,0xc0,0x5a,0x43,
0x00,0x00,0xf5,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x7a,0x43,0x00,0x00,0xf5,0x42,0x02,0x1e,0x00,0xbb,
0x00,0x00,0x7a,0x43,0x00,0x80,0x2c,0x43,0x02,0x1e,0x00,0xbb,0x00,0xc0,0x5a,0x43,0x00,0x80,0x2c,0x43,
0x00,0x00,0xff,0xff,0x01,0xd2,0x21,0x0a,0x00,0x40,0x1c,0x43,0x00,0x00,0xf5,0x42,0x02,0xde,0xd3,0xb5,
0x00,0x80,0x3b,0x43,0x00,0x00,0xf5,0x42,0x02,0xde,0xd3,0xb5,0x00,0x80,0x3b,0x43,0x00,0x80,0x2c,0x43,
0x02,0xde,0xd3,0xb5,0x00,0x40,0x1c,0x43,0x00,0x80,0x2c,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0xff,0x00,0xff,0x01,0xd2,0x21,0x0a,0x00,0xc0,0x5a,0x43,
0x00,0x00,0xf5,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x7a,0x43,0x00,0x00,0xf5,0x42,0x02,0xde,0xd3,0xb5,
0x00,0x00,0x7a,0x43,0x00,0x80,0x2c,0x43,0x02,0xde,0xd3,0xb5,0x00,0xc0,0x5a,0x43,0x00,0x80,0x2c,0x43,
0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0xc8,0x40,
0x00,0x80,0x54,0x43,0x00,0x00,0x00,0xff,0x24,0x52,0x65,0x76,0x69,0x73,0x69,0x6f,0x6e,0x3a,0x20,0x31,
0x2e,0x37,0x20,0x24,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0x92,0xf5,
0x04,0x00,0x00,0x20,0x3f,0x00,0x00,0x20,0x3f,0x02,0x1e,0x00,0xbb,0x00,0xb0,0x95,0x43,0x00,0x00,0x20,
0x3f,0x02,0x1e,0x00,0xbb,0x00,0xb0,0x95,0x43,0x00,0x60,0x60,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0x20,
0x2e,0x37,0x20,0x24,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x3f,0x00,0x00,0x00,0xff,0x01,0xd2,0x21,
0x0a,0x00,0x00,0x20,0x3f,0x00,0x00,0x20,0x3f,0x02,0xde,0xd3,0xb5,0x00,0xb0,0x95,0x43,0x00,0x00,0x20,
0x3f,0x02,0xde,0xd3,0xb5,0x00,0xb0,0x95,0x43,0x00,0x60,0x60,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0x20,
0x3f,0x00,0x60,0x60,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,};/*725*/

File diff suppressed because it is too large Load Diff

View File

@ -2,76 +2,76 @@ TK_CONST_DATA_ALIGN(const unsigned char image_windmill[]) = {
0x02,0x00,0x05,0x01,0xb4,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x77,0x69,0x6e,0x64,0x6d,0x69,0x6c,0x6c,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x15,0x11,0x18,0x20,0x02,0x00,0x00,0x00,0xc8,0x00,0x00,0x00,0xc8,0x00,0x00,0x00,
0x02,0x01,0x00,0x00,0x00,0x00,0x48,0x3e,0x25,0x1c,0x4e,0xff,0x01,0x92,0xf5,0x04,0xcd,0xcc,0x2c,0x43,
0xff,0xff,0xd3,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0xc6,0x42,0xff,0xff,0xd3,0x42,0x03,0x92,0x81,0x08,
0x02,0x01,0x00,0x00,0x00,0x00,0x48,0x3e,0x25,0x1c,0x4e,0xff,0x01,0xd2,0x21,0x0a,0xcd,0xcc,0x2c,0x43,
0xff,0xff,0xd3,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0xc6,0x42,0xff,0xff,0xd3,0x42,0x03,0x9e,0x01,0xbd,
0xcd,0xcc,0xc2,0x42,0xff,0xff,0xd3,0x42,0x00,0x00,0xc0,0x42,0x32,0x33,0xd1,0x42,0x00,0x00,0xc0,0x42,
0x00,0x00,0xce,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0xc0,0x42,0xff,0xff,0x85,0x42,0x03,0x92,0x81,0x08,
0x00,0x00,0xce,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0xc0,0x42,0xff,0xff,0x85,0x42,0x03,0x9e,0x01,0xbd,
0x00,0x00,0xc0,0x42,0xcd,0xcc,0x82,0x42,0xcd,0xcc,0xc2,0x42,0x00,0x00,0x80,0x42,0x00,0x00,0xc6,0x42,
0x00,0x00,0x80,0x42,0x02,0x1e,0x00,0xbb,0xcd,0xcc,0x08,0x43,0x00,0x00,0x80,0x42,0x03,0x92,0x81,0x08,
0x00,0x00,0x80,0x42,0x02,0xde,0xd3,0xb5,0xcd,0xcc,0x08,0x43,0x00,0x00,0x80,0x42,0x03,0x9e,0x01,0xbd,
0x9a,0x99,0x09,0x43,0x00,0x00,0x80,0x42,0x67,0x66,0x0a,0x43,0xcd,0xcc,0x80,0x42,0x00,0x00,0x0b,0x43,
0x9a,0x99,0x81,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x2f,0x43,0x9a,0x99,0xc9,0x42,0x03,0x92,0x81,0x08,
0x9a,0x99,0x81,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x2f,0x43,0x9a,0x99,0xc9,0x42,0x03,0x9e,0x01,0xbd,
0xcd,0xcc,0x2f,0x43,0x34,0x33,0xcb,0x42,0x33,0x33,0x30,0x43,0x00,0x00,0xce,0x42,0x9a,0x99,0x2f,0x43,
0x00,0x00,0xd0,0x42,0x03,0x92,0x81,0x08,0x01,0x00,0x2f,0x43,0xff,0xff,0xd1,0x42,0x00,0x00,0x2e,0x43,
0xff,0xff,0xd3,0x42,0xcd,0xcc,0x2c,0x43,0xff,0xff,0xd3,0x42,0x04,0x00,0x00,0x00,0x01,0x92,0xf5,0x04,
0x00,0x00,0xcc,0x42,0x00,0x00,0xc8,0x42,0x02,0x1e,0x00,0xbb,0x99,0x99,0x25,0x43,0x00,0x00,0xc8,0x42,
0x02,0x1e,0x00,0xbb,0x99,0x99,0x07,0x43,0x00,0x00,0x8c,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0xcc,0x42,
0x00,0x00,0x8c,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0xcc,0x42,0x00,0x00,0xc8,0x42,0x04,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x48,0x3e,0x25,0x1c,0x4e,0xff,0x01,0x92,0xf5,0x04,
0x00,0x00,0xc6,0x42,0xff,0xff,0xd3,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x7c,0x42,0xff,0xff,0xd3,0x42,
0x03,0x92,0x81,0x08,0x9a,0x99,0x75,0x42,0xff,0xff,0xd3,0x42,0x01,0x00,0x70,0x42,0x32,0x33,0xd1,0x42,
0x01,0x00,0x70,0x42,0x00,0x00,0xce,0x42,0x02,0x1e,0x00,0xbb,0x01,0x00,0x70,0x42,0xce,0xcc,0x7c,0x42,
0x03,0x92,0x81,0x08,0x01,0x00,0x70,0x42,0x9a,0x99,0x79,0x42,0x9a,0x99,0x71,0x42,0x68,0x66,0x76,0x42,
0x34,0x33,0x73,0x42,0x00,0x00,0x74,0x42,0x02,0x1e,0x00,0xbb,0x9a,0x99,0xc1,0x42,0x00,0x00,0xc8,0x41,
0x03,0x92,0x81,0x08,0x34,0x33,0xc3,0x42,0x9a,0x99,0xc1,0x41,0x01,0x00,0xc6,0x42,0x67,0x66,0xbe,0x41,
0x00,0x00,0xc8,0x42,0x33,0x33,0xc3,0x41,0x03,0x92,0x81,0x08,0x66,0x66,0xca,0x42,0x66,0x66,0xc6,0x41,
0x9a,0x99,0xcb,0x42,0x00,0x00,0xd0,0x41,0x9a,0x99,0xcb,0x42,0x9a,0x99,0xd9,0x41,0x02,0x1e,0x00,0xbb,
0x9a,0x99,0xcb,0x42,0x00,0x00,0xce,0x42,0x03,0x92,0x81,0x08,0x00,0x00,0xcc,0x42,0x33,0x33,0xd1,0x42,
0x00,0x00,0xd0,0x42,0x03,0x9e,0x01,0xbd,0x01,0x00,0x2f,0x43,0xff,0xff,0xd1,0x42,0x00,0x00,0x2e,0x43,
0xff,0xff,0xd3,0x42,0xcd,0xcc,0x2c,0x43,0xff,0xff,0xd3,0x42,0x04,0x00,0x00,0x00,0x01,0xd2,0x21,0x0a,
0x00,0x00,0xcc,0x42,0x00,0x00,0xc8,0x42,0x02,0xde,0xd3,0xb5,0x99,0x99,0x25,0x43,0x00,0x00,0xc8,0x42,
0x02,0xde,0xd3,0xb5,0x99,0x99,0x07,0x43,0x00,0x00,0x8c,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0xcc,0x42,
0x00,0x00,0x8c,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0xcc,0x42,0x00,0x00,0xc8,0x42,0x04,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x48,0x3e,0x25,0x1c,0x4e,0xff,0x01,0xd2,0x21,0x0a,
0x00,0x00,0xc6,0x42,0xff,0xff,0xd3,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x7c,0x42,0xff,0xff,0xd3,0x42,
0x03,0x9e,0x01,0xbd,0x9a,0x99,0x75,0x42,0xff,0xff,0xd3,0x42,0x01,0x00,0x70,0x42,0x32,0x33,0xd1,0x42,
0x01,0x00,0x70,0x42,0x00,0x00,0xce,0x42,0x02,0xde,0xd3,0xb5,0x01,0x00,0x70,0x42,0xce,0xcc,0x7c,0x42,
0x03,0x9e,0x01,0xbd,0x01,0x00,0x70,0x42,0x9a,0x99,0x79,0x42,0x9a,0x99,0x71,0x42,0x68,0x66,0x76,0x42,
0x34,0x33,0x73,0x42,0x00,0x00,0x74,0x42,0x02,0xde,0xd3,0xb5,0x9a,0x99,0xc1,0x42,0x00,0x00,0xc8,0x41,
0x03,0x9e,0x01,0xbd,0x34,0x33,0xc3,0x42,0x9a,0x99,0xc1,0x41,0x01,0x00,0xc6,0x42,0x67,0x66,0xbe,0x41,
0x00,0x00,0xc8,0x42,0x33,0x33,0xc3,0x41,0x03,0x9e,0x01,0xbd,0x66,0x66,0xca,0x42,0x66,0x66,0xc6,0x41,
0x9a,0x99,0xcb,0x42,0x00,0x00,0xd0,0x41,0x9a,0x99,0xcb,0x42,0x9a,0x99,0xd9,0x41,0x02,0xde,0xd3,0xb5,
0x9a,0x99,0xcb,0x42,0x00,0x00,0xce,0x42,0x03,0x9e,0x01,0xbd,0x00,0x00,0xcc,0x42,0x33,0x33,0xd1,0x42,
0x34,0x33,0xc9,0x42,0xff,0xff,0xd3,0x42,0x00,0x00,0xc6,0x42,0xff,0xff,0xd3,0x42,0x04,0x00,0x00,0x00,
0x01,0x92,0xf5,0x04,0x00,0x00,0x84,0x42,0x00,0x00,0xc8,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0xc0,0x42,
0x00,0x00,0xc8,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0xc0,0x42,0x9a,0x99,0x09,0x42,0x02,0x1e,0x00,0xbb,
0x00,0x00,0x84,0x42,0xce,0xcc,0x80,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0x84,0x42,0x00,0x00,0xc8,0x42,
0x01,0xd2,0x21,0x0a,0x00,0x00,0x84,0x42,0x00,0x00,0xc8,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0xc0,0x42,
0x00,0x00,0xc8,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0xc0,0x42,0x9a,0x99,0x09,0x42,0x02,0xde,0xd3,0xb5,
0x00,0x00,0x84,0x42,0xce,0xcc,0x80,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0x84,0x42,0x00,0x00,0xc8,0x42,
0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x48,0x3e,0x25,0x1c,0x4e,0xff,
0x01,0x92,0xf5,0x04,0x00,0x00,0xc6,0x42,0x00,0x00,0x0e,0x43,0x02,0x1e,0x00,0xbb,0xce,0xcc,0x7c,0x42,
0x00,0x00,0x0e,0x43,0x03,0x92,0x81,0x08,0x9a,0x99,0x79,0x42,0x00,0x00,0x0e,0x43,0x68,0x66,0x76,0x42,
0x9a,0x99,0x0d,0x43,0x00,0x00,0x74,0x42,0x33,0x33,0x0d,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0xc8,0x41,
0x65,0x66,0xd2,0x42,0x03,0x92,0x81,0x08,0x9a,0x99,0xc1,0x41,0xcc,0xcc,0xd0,0x42,0x67,0x66,0xbe,0x41,
0x00,0x00,0xce,0x42,0x33,0x33,0xc3,0x41,0x00,0x00,0xcc,0x42,0x03,0x92,0x81,0x08,0x00,0x00,0xc8,0x41,
0x01,0xd2,0x21,0x0a,0x00,0x00,0xc6,0x42,0x00,0x00,0x0e,0x43,0x02,0xde,0xd3,0xb5,0xce,0xcc,0x7c,0x42,
0x00,0x00,0x0e,0x43,0x03,0x9e,0x01,0xbd,0x9a,0x99,0x79,0x42,0x00,0x00,0x0e,0x43,0x68,0x66,0x76,0x42,
0x9a,0x99,0x0d,0x43,0x00,0x00,0x74,0x42,0x33,0x33,0x0d,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0xc8,0x41,
0x65,0x66,0xd2,0x42,0x03,0x9e,0x01,0xbd,0x9a,0x99,0xc1,0x41,0xcc,0xcc,0xd0,0x42,0x67,0x66,0xbe,0x41,
0x00,0x00,0xce,0x42,0x33,0x33,0xc3,0x41,0x00,0x00,0xcc,0x42,0x03,0x9e,0x01,0xbd,0x00,0x00,0xc8,0x41,
0x00,0x00,0xca,0x42,0x00,0x00,0xd0,0x41,0x00,0x00,0xc8,0x42,0x9a,0x99,0xd9,0x41,0x00,0x00,0xc8,0x42,
0x02,0x1e,0x00,0xbb,0x00,0x00,0xc6,0x42,0x00,0x00,0xc8,0x42,0x03,0x92,0x81,0x08,0x34,0x33,0xc9,0x42,
0x02,0xde,0xd3,0xb5,0x00,0x00,0xc6,0x42,0x00,0x00,0xc8,0x42,0x03,0x9e,0x01,0xbd,0x34,0x33,0xc9,0x42,
0x00,0x00,0xc8,0x42,0x00,0x00,0xcc,0x42,0xce,0xcc,0xca,0x42,0x00,0x00,0xcc,0x42,0x00,0x00,0xce,0x42,
0x02,0x1e,0x00,0xbb,0x00,0x00,0xcc,0x42,0x00,0x00,0x0b,0x43,0x03,0x92,0x81,0x08,0x00,0x00,0xcc,0x42,
0x02,0xde,0xd3,0xb5,0x00,0x00,0xcc,0x42,0x00,0x00,0x0b,0x43,0x03,0x9e,0x01,0xbd,0x00,0x00,0xcc,0x42,
0x9a,0x99,0x0c,0x43,0x32,0x33,0xc9,0x42,0x00,0x00,0x0e,0x43,0x00,0x00,0xc6,0x42,0x00,0x00,0x0e,0x43,
0x04,0x00,0x00,0x00,0x01,0x92,0xf5,0x04,0xce,0xcc,0x80,0x42,0x00,0x00,0x08,0x43,0x02,0x1e,0x00,0xbb,
0x00,0x00,0xc0,0x42,0x00,0x00,0x08,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0xc0,0x42,0xff,0xff,0xd3,0x42,
0x02,0x1e,0x00,0xbb,0x9a,0x99,0x09,0x42,0xff,0xff,0xd3,0x42,0x02,0x1e,0x00,0xbb,0xce,0xcc,0x80,0x42,
0x04,0x00,0x00,0x00,0x01,0xd2,0x21,0x0a,0xce,0xcc,0x80,0x42,0x00,0x00,0x08,0x43,0x02,0xde,0xd3,0xb5,
0x00,0x00,0xc0,0x42,0x00,0x00,0x08,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0xc0,0x42,0xff,0xff,0xd3,0x42,
0x02,0xde,0xd3,0xb5,0x9a,0x99,0x09,0x42,0xff,0xff,0xd3,0x42,0x02,0xde,0xd3,0xb5,0xce,0xcc,0x80,0x42,
0xff,0xff,0x07,0x43,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x48,0x3e,
0x25,0x1c,0x4e,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0xc6,0x42,0xcd,0xcc,0x2f,0x43,0x03,0x92,0x81,0x08,
0x25,0x1c,0x4e,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0xc6,0x42,0xcd,0xcc,0x2f,0x43,0x03,0x9e,0x01,0xbd,
0x33,0x33,0xc5,0x42,0xcd,0xcc,0x2f,0x43,0x66,0x66,0xc4,0x42,0xcd,0xcc,0x2f,0x43,0x99,0x99,0xc3,0x42,
0x9a,0x99,0x2f,0x43,0x03,0x92,0x81,0x08,0x9a,0x99,0xc1,0x42,0x34,0x33,0x2f,0x43,0x00,0x00,0xc0,0x42,
0x00,0x00,0x2e,0x43,0x00,0x00,0xc0,0x42,0xcd,0xcc,0x2c,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0xc0,0x42,
0x00,0x00,0xce,0x42,0x03,0x92,0x81,0x08,0x00,0x00,0xc0,0x42,0xcc,0xcc,0xca,0x42,0xcc,0xcc,0xc2,0x42,
0x00,0x00,0xc8,0x42,0xff,0xff,0xc5,0x42,0x00,0x00,0xc8,0x42,0x02,0x1e,0x00,0xbb,0xff,0xff,0x06,0x43,
0x00,0x00,0xc8,0x42,0x03,0x92,0x81,0x08,0x99,0x99,0x08,0x43,0x00,0x00,0xc8,0x42,0xff,0xff,0x09,0x43,
0xce,0xcc,0xca,0x42,0xff,0xff,0x09,0x43,0x00,0x00,0xce,0x42,0x02,0x1e,0x00,0xbb,0xff,0xff,0x09,0x43,
0xcd,0xcc,0x08,0x43,0x03,0x92,0x81,0x08,0xff,0xff,0x09,0x43,0x9a,0x99,0x09,0x43,0x99,0x99,0x09,0x43,
0x67,0x66,0x0a,0x43,0x32,0x33,0x09,0x43,0x00,0x00,0x0b,0x43,0x02,0x1e,0x00,0xbb,0x64,0x66,0xca,0x42,
0x00,0x00,0x2f,0x43,0x03,0x92,0x81,0x08,0x31,0x33,0xc9,0x42,0x9a,0x99,0x2f,0x43,0x98,0x99,0xc7,0x42,
0xcd,0xcc,0x2f,0x43,0xfe,0xff,0xc5,0x42,0xcd,0xcc,0x2f,0x43,0x04,0x00,0x00,0x00,0x01,0x92,0xf5,0x04,
0x00,0x00,0xcc,0x42,0xff,0xff,0xd3,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0xcc,0x42,0x99,0x99,0x25,0x43,
0x02,0x1e,0x00,0xbb,0x00,0x00,0x04,0x43,0x99,0x99,0x07,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0x04,0x43,
0xff,0xff,0xd3,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0xcc,0x42,0xff,0xff,0xd3,0x42,0x04,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x48,0x3e,0x72,0xc6,0x9c,0xff,0x01,0x92,0xf5,0x04,
0x00,0x00,0xc4,0x42,0x00,0x00,0xd0,0x42,0x02,0x1e,0x00,0xbb,0xcd,0xcc,0x2c,0x43,0x00,0x00,0xd0,0x42,
0x02,0x1e,0x00,0xbb,0xcd,0xcc,0x08,0x43,0xff,0xff,0x87,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0xc4,0x42,
0x9a,0x99,0x2f,0x43,0x03,0x9e,0x01,0xbd,0x9a,0x99,0xc1,0x42,0x34,0x33,0x2f,0x43,0x00,0x00,0xc0,0x42,
0x00,0x00,0x2e,0x43,0x00,0x00,0xc0,0x42,0xcd,0xcc,0x2c,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0xc0,0x42,
0x00,0x00,0xce,0x42,0x03,0x9e,0x01,0xbd,0x00,0x00,0xc0,0x42,0xcc,0xcc,0xca,0x42,0xcc,0xcc,0xc2,0x42,
0x00,0x00,0xc8,0x42,0xff,0xff,0xc5,0x42,0x00,0x00,0xc8,0x42,0x02,0xde,0xd3,0xb5,0xff,0xff,0x06,0x43,
0x00,0x00,0xc8,0x42,0x03,0x9e,0x01,0xbd,0x99,0x99,0x08,0x43,0x00,0x00,0xc8,0x42,0xff,0xff,0x09,0x43,
0xce,0xcc,0xca,0x42,0xff,0xff,0x09,0x43,0x00,0x00,0xce,0x42,0x02,0xde,0xd3,0xb5,0xff,0xff,0x09,0x43,
0xcd,0xcc,0x08,0x43,0x03,0x9e,0x01,0xbd,0xff,0xff,0x09,0x43,0x9a,0x99,0x09,0x43,0x99,0x99,0x09,0x43,
0x67,0x66,0x0a,0x43,0x32,0x33,0x09,0x43,0x00,0x00,0x0b,0x43,0x02,0xde,0xd3,0xb5,0x64,0x66,0xca,0x42,
0x00,0x00,0x2f,0x43,0x03,0x9e,0x01,0xbd,0x31,0x33,0xc9,0x42,0x9a,0x99,0x2f,0x43,0x98,0x99,0xc7,0x42,
0xcd,0xcc,0x2f,0x43,0xfe,0xff,0xc5,0x42,0xcd,0xcc,0x2f,0x43,0x04,0x00,0x00,0x00,0x01,0xd2,0x21,0x0a,
0x00,0x00,0xcc,0x42,0xff,0xff,0xd3,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0xcc,0x42,0x99,0x99,0x25,0x43,
0x02,0xde,0xd3,0xb5,0x00,0x00,0x04,0x43,0x99,0x99,0x07,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0x04,0x43,
0xff,0xff,0xd3,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0xcc,0x42,0xff,0xff,0xd3,0x42,0x04,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x48,0x3e,0x72,0xc6,0x9c,0xff,0x01,0xd2,0x21,0x0a,
0x00,0x00,0xc4,0x42,0x00,0x00,0xd0,0x42,0x02,0xde,0xd3,0xb5,0xcd,0xcc,0x2c,0x43,0x00,0x00,0xd0,0x42,
0x02,0xde,0xd3,0xb5,0xcd,0xcc,0x08,0x43,0xff,0xff,0x87,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0xc4,0x42,
0xff,0xff,0x87,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x48,0x3e,
0xfd,0xd8,0x38,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0xc4,0x42,0x00,0x00,0xd0,0x42,0x02,0x1e,0x00,0xbb,
0x00,0x00,0xc4,0x42,0x9a,0x99,0xd9,0x41,0x02,0x1e,0x00,0xbb,0x00,0x00,0x78,0x42,0xce,0xcc,0x7c,0x42,
0x02,0x1e,0x00,0xbb,0x00,0x00,0x78,0x42,0x00,0x00,0xd0,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x02,0x01,0x00,0x00,0x00,0x00,0x48,0x3e,0x72,0xc6,0x9c,0xff,0x01,0x92,0xf5,0x04,0x00,0x00,0xc4,0x42,
0x00,0x00,0xd0,0x42,0x02,0x1e,0x00,0xbb,0x9a,0x99,0xd9,0x41,0x00,0x00,0xd0,0x42,0x02,0x1e,0x00,0xbb,
0xce,0xcc,0x7c,0x42,0x00,0x00,0x0c,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0xc4,0x42,0x00,0x00,0x0c,0x43,
0xfd,0xd8,0x38,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0xc4,0x42,0x00,0x00,0xd0,0x42,0x02,0xde,0xd3,0xb5,
0x00,0x00,0xc4,0x42,0x9a,0x99,0xd9,0x41,0x02,0xde,0xd3,0xb5,0x00,0x00,0x78,0x42,0xce,0xcc,0x7c,0x42,
0x02,0xde,0xd3,0xb5,0x00,0x00,0x78,0x42,0x00,0x00,0xd0,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x02,0x01,0x00,0x00,0x00,0x00,0x48,0x3e,0x72,0xc6,0x9c,0xff,0x01,0xd2,0x21,0x0a,0x00,0x00,0xc4,0x42,
0x00,0x00,0xd0,0x42,0x02,0xde,0xd3,0xb5,0x9a,0x99,0xd9,0x41,0x00,0x00,0xd0,0x42,0x02,0xde,0xd3,0xb5,
0xce,0xcc,0x7c,0x42,0x00,0x00,0x0c,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0xc4,0x42,0x00,0x00,0x0c,0x43,
0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x48,0x3e,0xfd,0xd8,0x38,0xff,
0x01,0x92,0xf5,0x04,0x00,0x00,0xc4,0x42,0x00,0x00,0xd0,0x42,0x02,0x1e,0x00,0xbb,0x00,0x00,0xc4,0x42,
0xcc,0xcc,0x2c,0x43,0x02,0x1e,0x00,0xbb,0x00,0x00,0x06,0x43,0xcc,0xcc,0x08,0x43,0x02,0x1e,0x00,0xbb,
0x01,0xd2,0x21,0x0a,0x00,0x00,0xc4,0x42,0x00,0x00,0xd0,0x42,0x02,0xde,0xd3,0xb5,0x00,0x00,0xc4,0x42,
0xcc,0xcc,0x2c,0x43,0x02,0xde,0xd3,0xb5,0x00,0x00,0x06,0x43,0xcc,0xcc,0x08,0x43,0x02,0xde,0xd3,0xb5,
0x00,0x00,0x06,0x43,0x00,0x00,0xd0,0x42,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,};/*1508*/

View File

@ -1,5 +1,5 @@
TK_CONST_DATA_ALIGN(const unsigned char ui_list_view[]) = {
0x04,0x00,0x01,0x01,0xd7,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x6c,0x69,0x73,0x74,0x5f,0x76,0x69,0x65,
0x04,0x00,0x01,0x01,0x36,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x6c,0x69,0x73,0x74,0x5f,0x76,0x69,0x65,
0x77,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x12,0x12,0x22,0x11,0x77,0x69,0x6e,0x64,0x6f,0x77,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
@ -81,11 +81,16 @@ TK_CONST_DATA_ALIGN(const unsigned char ui_list_view[]) = {
0x74,0x00,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x00,0x00,0x00,0x62,0x75,0x74,0x74,0x6f,0x6e,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x6e,0x61,0x6d,0x65,0x00,0x63,0x6c,0x6f,0x73,0x65,0x00,0x74,0x65,0x78,0x74,0x00,0x43,0x6c,0x6f,0x73,
0x65,0x00,0x00,0x00,0x00,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x5f,0x62,0x61,0x72,0x5f,0x64,0x00,0x00,0x00,
0x6e,0x61,0x6d,0x65,0x00,0x6f,0x70,0x65,0x6e,0x3a,0x6c,0x69,0x73,0x74,0x5f,0x76,0x69,0x65,0x77,0x5f,
0x73,0x79,0x6e,0x63,0x00,0x74,0x65,0x78,0x74,0x00,0x53,0x79,0x6e,0x63,0x20,0x53,0x63,0x72,0x6f,0x6c,
0x6c,0x69,0x6e,0x67,0x00,0x00,0x00,0x62,0x75,0x74,0x74,0x6f,0x6e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x64,0x00,0x00,0x00,0x73,0x65,0x6c,0x66,0x5f,0x6c,0x61,
0x79,0x6f,0x75,0x74,0x00,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x78,0x3d,0x72,0x69,0x67,0x68,0x74,
0x2c,0x79,0x3d,0x30,0x2c,0x77,0x3d,0x31,0x32,0x2c,0x68,0x3d,0x31,0x30,0x30,0x25,0x29,0x00,0x6e,0x61,
0x6d,0x65,0x00,0x62,0x61,0x72,0x00,0x61,0x6e,0x69,0x6d,0x61,0x74,0x6f,0x72,0x5f,0x74,0x69,0x6d,0x65,
0x00,0x30,0x00,0x76,0x61,0x6c,0x75,0x65,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,};/*1799*/
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x6e,0x61,0x6d,0x65,0x00,
0x63,0x6c,0x6f,0x73,0x65,0x00,0x74,0x65,0x78,0x74,0x00,0x43,0x6c,0x6f,0x73,0x65,0x00,0x00,0x00,0x00,
0x73,0x63,0x72,0x6f,0x6c,0x6c,0x5f,0x62,0x61,0x72,0x5f,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x0c,0x00,0x00,0x00,0x64,0x00,0x00,0x00,0x73,0x65,0x6c,0x66,0x5f,0x6c,0x61,0x79,0x6f,0x75,0x74,0x00,
0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x78,0x3d,0x72,0x69,0x67,0x68,0x74,0x2c,0x79,0x3d,0x30,0x2c,
0x77,0x3d,0x31,0x32,0x2c,0x68,0x3d,0x31,0x30,0x30,0x25,0x29,0x00,0x6e,0x61,0x6d,0x65,0x00,0x62,0x61,
0x72,0x00,0x61,0x6e,0x69,0x6d,0x61,0x74,0x6f,0x72,0x5f,0x74,0x69,0x6d,0x65,0x00,0x30,0x00,0x76,0x61,
0x6c,0x75,0x65,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,};/*1894*/

View File

@ -0,0 +1,117 @@
TK_CONST_DATA_ALIGN(const unsigned char ui_list_view_sync[]) = {
0x04,0x00,0x01,0x01,0xcf,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x6c,0x69,0x73,0x74,0x5f,0x76,0x69,0x65,
0x77,0x5f,0x73,0x79,0x6e,0x63,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x12,0x12,0x22,0x11,0x77,0x69,0x6e,0x64,0x6f,0x77,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x61,0x6e,0x69,0x6d,
0x5f,0x68,0x69,0x6e,0x74,0x00,0x68,0x74,0x72,0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x00,0x74,0x65,0x78,
0x74,0x00,0x53,0x79,0x6e,0x63,0x20,0x53,0x63,0x72,0x6f,0x6c,0x6c,0x69,0x6e,0x67,0x00,0x00,0x6c,0x69,
0x73,0x74,0x5f,0x76,0x69,0x65,0x77,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x00,
0x00,0x00,0x32,0x00,0x00,0x00,0x73,0x65,0x6c,0x66,0x5f,0x6c,0x61,0x79,0x6f,0x75,0x74,0x00,0x64,0x65,
0x66,0x61,0x75,0x6c,0x74,0x28,0x78,0x3d,0x30,0x2c,0x79,0x3d,0x30,0x2c,0x77,0x3d,0x31,0x30,0x30,0x25,
0x2c,0x68,0x3d,0x35,0x30,0x25,0x29,0x00,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x5f,0x69,0x74,0x65,0x6d,
0x5f,0x68,0x65,0x69,0x67,0x68,0x74,0x00,0x36,0x30,0x00,0x00,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x5f,0x76,
0x69,0x65,0x77,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf6,0xff,0xff,0xff,0x64,0x00,0x00,0x00,
0x73,0x65,0x6c,0x66,0x5f,0x6c,0x61,0x79,0x6f,0x75,0x74,0x00,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,
0x78,0x3d,0x30,0x2c,0x79,0x3d,0x30,0x2c,0x77,0x3d,0x2d,0x31,0x30,0x2c,0x68,0x3d,0x31,0x30,0x30,0x25,
0x29,0x00,0x6e,0x61,0x6d,0x65,0x00,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x5f,0x76,0x69,0x65,0x77,0x00,0x00,
0x6c,0x69,0x73,0x74,0x5f,0x69,0x74,0x65,0x6d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x73,0x65,0x6c,0x66,0x5f,0x6c,0x61,0x79,0x6f,0x75,0x74,0x00,
0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x77,0x3d,0x31,0x30,0x30,0x25,0x29,0x00,0x73,0x74,0x79,0x6c,
0x65,0x00,0x6f,0x64,0x64,0x5f,0x63,0x6c,0x69,0x63,0x6b,0x61,0x62,0x6c,0x65,0x00,0x74,0x65,0x78,0x74,
0x00,0x69,0x74,0x65,0x6d,0x00,0x00,0x00,0x6c,0x69,0x73,0x74,0x5f,0x69,0x74,0x65,0x6d,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x73,0x65,0x6c,0x66,
0x5f,0x6c,0x61,0x79,0x6f,0x75,0x74,0x00,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x77,0x3d,0x31,0x30,
0x30,0x25,0x29,0x00,0x73,0x74,0x79,0x6c,0x65,0x00,0x65,0x76,0x65,0x6e,0x5f,0x63,0x6c,0x69,0x63,0x6b,
0x61,0x62,0x6c,0x65,0x00,0x6e,0x61,0x6d,0x65,0x00,0x69,0x74,0x65,0x6d,0x31,0x00,0x74,0x65,0x78,0x74,
0x00,0x69,0x74,0x65,0x6d,0x31,0x00,0x00,0x00,0x6c,0x69,0x73,0x74,0x5f,0x69,0x74,0x65,0x6d,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x73,0x65,0x6c,
0x66,0x5f,0x6c,0x61,0x79,0x6f,0x75,0x74,0x00,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x77,0x3d,0x31,
0x30,0x30,0x25,0x29,0x00,0x73,0x74,0x79,0x6c,0x65,0x00,0x6f,0x64,0x64,0x5f,0x63,0x6c,0x69,0x63,0x6b,
0x61,0x62,0x6c,0x65,0x00,0x74,0x65,0x78,0x74,0x00,0x69,0x74,0x65,0x6d,0x00,0x00,0x00,0x6c,0x69,0x73,
0x74,0x5f,0x69,0x74,0x65,0x6d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x73,0x65,0x6c,0x66,0x5f,0x6c,0x61,0x79,0x6f,0x75,0x74,0x00,0x64,0x65,0x66,
0x61,0x75,0x6c,0x74,0x28,0x77,0x3d,0x31,0x30,0x30,0x25,0x29,0x00,0x73,0x74,0x79,0x6c,0x65,0x00,0x65,
0x76,0x65,0x6e,0x5f,0x63,0x6c,0x69,0x63,0x6b,0x61,0x62,0x6c,0x65,0x00,0x74,0x65,0x78,0x74,0x00,0x69,
0x74,0x65,0x6d,0x00,0x00,0x00,0x6c,0x69,0x73,0x74,0x5f,0x69,0x74,0x65,0x6d,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x73,0x65,0x6c,0x66,0x5f,0x6c,
0x61,0x79,0x6f,0x75,0x74,0x00,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x77,0x3d,0x31,0x30,0x30,0x25,
0x29,0x00,0x73,0x74,0x79,0x6c,0x65,0x00,0x6f,0x64,0x64,0x5f,0x63,0x6c,0x69,0x63,0x6b,0x61,0x62,0x6c,
0x65,0x00,0x74,0x65,0x78,0x74,0x00,0x69,0x74,0x65,0x6d,0x00,0x00,0x00,0x6c,0x69,0x73,0x74,0x5f,0x69,
0x74,0x65,0x6d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x73,0x65,0x6c,0x66,0x5f,0x6c,0x61,0x79,0x6f,0x75,0x74,0x00,0x64,0x65,0x66,0x61,0x75,0x6c,
0x74,0x28,0x77,0x3d,0x31,0x30,0x30,0x25,0x29,0x00,0x73,0x74,0x79,0x6c,0x65,0x00,0x65,0x76,0x65,0x6e,
0x5f,0x63,0x6c,0x69,0x63,0x6b,0x61,0x62,0x6c,0x65,0x00,0x74,0x65,0x78,0x74,0x00,0x69,0x74,0x65,0x6d,
0x00,0x00,0x00,0x6c,0x69,0x73,0x74,0x5f,0x69,0x74,0x65,0x6d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x73,0x65,0x6c,0x66,0x5f,0x6c,0x61,0x79,0x6f,
0x75,0x74,0x00,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x77,0x3d,0x31,0x30,0x30,0x25,0x29,0x00,0x73,
0x74,0x79,0x6c,0x65,0x00,0x6f,0x64,0x64,0x5f,0x63,0x6c,0x69,0x63,0x6b,0x61,0x62,0x6c,0x65,0x00,0x74,
0x65,0x78,0x74,0x00,0x69,0x74,0x65,0x6d,0x00,0x00,0x00,0x6c,0x69,0x73,0x74,0x5f,0x69,0x74,0x65,0x6d,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x73,
0x65,0x6c,0x66,0x5f,0x6c,0x61,0x79,0x6f,0x75,0x74,0x00,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x77,
0x3d,0x31,0x30,0x30,0x25,0x29,0x00,0x73,0x74,0x79,0x6c,0x65,0x00,0x65,0x76,0x65,0x6e,0x5f,0x63,0x6c,
0x69,0x63,0x6b,0x61,0x62,0x6c,0x65,0x00,0x6e,0x61,0x6d,0x65,0x00,0x69,0x74,0x65,0x6d,0x32,0x00,0x74,
0x65,0x78,0x74,0x00,0x69,0x74,0x65,0x6d,0x32,0x00,0x00,0x00,0x6c,0x69,0x73,0x74,0x5f,0x69,0x74,0x65,
0x6d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x73,0x65,0x6c,0x66,0x5f,0x6c,0x61,0x79,0x6f,0x75,0x74,0x00,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,
0x77,0x3d,0x31,0x30,0x30,0x25,0x29,0x00,0x73,0x74,0x79,0x6c,0x65,0x00,0x6f,0x64,0x64,0x5f,0x63,0x6c,
0x69,0x63,0x6b,0x61,0x62,0x6c,0x65,0x00,0x74,0x65,0x78,0x74,0x00,0x69,0x74,0x65,0x6d,0x00,0x00,0x00,
0x00,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x5f,0x62,0x61,0x72,0x5f,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x0a,0x00,0x00,0x00,0x64,0x00,0x00,0x00,0x73,0x65,0x6c,0x66,0x5f,0x6c,0x61,0x79,0x6f,0x75,0x74,
0x00,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x78,0x3d,0x72,0x2c,0x79,0x3d,0x30,0x2c,0x77,0x3d,0x31,
0x30,0x2c,0x68,0x3d,0x31,0x30,0x30,0x25,0x29,0x00,0x6e,0x61,0x6d,0x65,0x00,0x73,0x63,0x72,0x6f,0x6c,
0x6c,0x5f,0x62,0x61,0x72,0x00,0x00,0x00,0x00,0x76,0x69,0x65,0x77,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x73,0x65,0x6c,
0x66,0x5f,0x6c,0x61,0x79,0x6f,0x75,0x74,0x00,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x78,0x3d,0x30,
0x2c,0x79,0x3d,0x62,0x2c,0x77,0x3d,0x31,0x30,0x30,0x25,0x2c,0x68,0x3d,0x35,0x30,0x25,0x29,0x00,0x63,
0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x5f,0x6c,0x61,0x79,0x6f,0x75,0x74,0x00,0x64,0x65,0x66,0x61,0x75,
0x6c,0x74,0x28,0x63,0x3d,0x32,0x2c,0x72,0x3d,0x34,0x2c,0x6d,0x3d,0x35,0x2c,0x73,0x3d,0x35,0x29,0x00,
0x00,0x62,0x75,0x74,0x74,0x6f,0x6e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x6e,0x61,0x6d,0x65,0x00,0x73,0x63,0x72,0x6f,0x6c,0x6c,
0x3a,0x69,0x74,0x65,0x6d,0x31,0x00,0x74,0x65,0x78,0x74,0x00,0x65,0x6e,0x73,0x75,0x72,0x65,0x20,0x69,
0x74,0x65,0x6d,0x31,0x20,0x76,0x69,0x73,0x69,0x61,0x62,0x6c,0x65,0x00,0x00,0x00,0x62,0x75,0x74,0x74,
0x6f,0x6e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x6e,0x61,0x6d,0x65,0x00,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x3a,0x69,0x74,0x65,0x6d,
0x32,0x00,0x74,0x65,0x78,0x74,0x00,0x65,0x6e,0x73,0x75,0x72,0x65,0x20,0x69,0x74,0x65,0x6d,0x32,0x20,
0x76,0x69,0x73,0x69,0x61,0x62,0x6c,0x65,0x00,0x00,0x00,0x62,0x75,0x74,0x74,0x6f,0x6e,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x6e,
0x61,0x6d,0x65,0x00,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x3a,0x76,0x69,0x65,0x77,0x5f,0x74,0x6f,0x70,0x00,
0x74,0x65,0x78,0x74,0x00,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x20,0x76,0x69,0x65,0x77,0x20,0x74,0x6f,0x20,
0x74,0x6f,0x70,0x00,0x00,0x00,0x62,0x75,0x74,0x74,0x6f,0x6e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x6e,0x61,0x6d,0x65,0x00,0x73,
0x63,0x72,0x6f,0x6c,0x6c,0x3a,0x76,0x69,0x65,0x77,0x5f,0x62,0x6f,0x74,0x00,0x74,0x65,0x78,0x74,0x00,
0x73,0x63,0x72,0x6f,0x6c,0x6c,0x20,0x76,0x69,0x65,0x77,0x20,0x74,0x6f,0x20,0x62,0x6f,0x74,0x74,0x6f,
0x6d,0x00,0x00,0x00,0x62,0x75,0x74,0x74,0x6f,0x6e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x6e,0x61,0x6d,0x65,0x00,0x73,0x63,0x72,
0x6f,0x6c,0x6c,0x3a,0x62,0x61,0x72,0x5f,0x74,0x6f,0x70,0x00,0x74,0x65,0x78,0x74,0x00,0x73,0x63,0x72,
0x6f,0x6c,0x6c,0x20,0x62,0x61,0x72,0x20,0x74,0x6f,0x20,0x74,0x6f,0x70,0x00,0x00,0x00,0x62,0x75,0x74,
0x74,0x6f,0x6e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x6e,0x61,0x6d,0x65,0x00,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x3a,0x62,0x61,0x72,
0x5f,0x62,0x6f,0x74,0x00,0x74,0x65,0x78,0x74,0x00,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x20,0x62,0x61,0x72,
0x20,0x74,0x6f,0x20,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x00,0x00,0x00,0x00,0x62,0x75,0x74,0x74,0x6f,0x6e,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x1e,0x00,
0x00,0x00,0x73,0x65,0x6c,0x66,0x5f,0x6c,0x61,0x79,0x6f,0x75,0x74,0x00,0x64,0x65,0x66,0x61,0x75,0x6c,
0x74,0x28,0x78,0x3d,0x63,0x65,0x6e,0x74,0x65,0x72,0x2c,0x79,0x3d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,
0x35,0x2c,0x77,0x3d,0x35,0x30,0x25,0x2c,0x68,0x3d,0x33,0x30,0x29,0x00,0x6e,0x61,0x6d,0x65,0x00,0x63,
0x6c,0x6f,0x73,0x65,0x00,0x74,0x65,0x78,0x74,0x00,0x63,0x6c,0x6f,0x73,0x65,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,};/*2303*/

Binary file not shown.

View File

@ -104,6 +104,7 @@
#include "assets/default/inc/ui/mutable_image.data"
#include "assets/default/inc/ui/calibration_win.data"
#include "assets/default/inc/ui/memtest.data"
#include "assets/default/inc/ui/list_view_sync.data"
#include "assets/default/inc/ui/slide_view_h2.data"
#include "assets/default/inc/ui/slide_view_h3.data"
#include "assets/default/inc/ui/folder_chooser.data"
@ -1019,6 +1020,7 @@ ret_t assets_init(void) {
assets_manager_add(am, ui_mutable_image);
assets_manager_add(am, ui_calibration_win);
assets_manager_add(am, ui_memtest);
assets_manager_add(am, ui_list_view_sync);
assets_manager_add(am, ui_slide_view_h2);
assets_manager_add(am, ui_slide_view_h3);
assets_manager_add(am, ui_folder_chooser);

View File

@ -104,6 +104,7 @@
#include "assets/default/inc/ui/mutable_image.data"
#include "assets/default/inc/ui/calibration_win.data"
#include "assets/default/inc/ui/memtest.data"
#include "assets/default/inc/ui/list_view_sync.data"
#include "assets/default/inc/ui/slide_view_h2.data"
#include "assets/default/inc/ui/slide_view_h3.data"
#include "assets/default/inc/ui/folder_chooser.data"
@ -1019,6 +1020,7 @@ ret_t assets_init(void) {
assets_manager_add(am, ui_mutable_image);
assets_manager_add(am, ui_calibration_win);
assets_manager_add(am, ui_memtest);
assets_manager_add(am, ui_list_view_sync);
assets_manager_add(am, ui_slide_view_h2);
assets_manager_add(am, ui_slide_view_h3);
assets_manager_add(am, ui_folder_chooser);

View File

@ -99,6 +99,7 @@
#include "assets/default/inc/ui/mutable_image.data"
#include "assets/default/inc/ui/calibration_win.data"
#include "assets/default/inc/ui/memtest.data"
#include "assets/default/inc/ui/list_view_sync.data"
#include "assets/default/inc/ui/slide_view_h2.data"
#include "assets/default/inc/ui/slide_view_h3.data"
#include "assets/default/inc/ui/folder_chooser.data"
@ -635,6 +636,7 @@ ret_t assets_init(void) {
assets_manager_add(am, ui_mutable_image);
assets_manager_add(am, ui_calibration_win);
assets_manager_add(am, ui_memtest);
assets_manager_add(am, ui_list_view_sync);
assets_manager_add(am, ui_slide_view_h2);
assets_manager_add(am, ui_slide_view_h3);
assets_manager_add(am, ui_folder_chooser);

View File

@ -99,6 +99,7 @@
#include "assets/default/inc/ui/mutable_image.data"
#include "assets/default/inc/ui/calibration_win.data"
#include "assets/default/inc/ui/memtest.data"
#include "assets/default/inc/ui/list_view_sync.data"
#include "assets/default/inc/ui/slide_view_h2.data"
#include "assets/default/inc/ui/slide_view_h3.data"
#include "assets/default/inc/ui/folder_chooser.data"
@ -635,6 +636,7 @@ ret_t assets_init(void) {
assets_manager_add(am, ui_mutable_image);
assets_manager_add(am, ui_calibration_win);
assets_manager_add(am, ui_memtest);
assets_manager_add(am, ui_list_view_sync);
assets_manager_add(am, ui_slide_view_h2);
assets_manager_add(am, ui_slide_view_h3);
assets_manager_add(am, ui_folder_chooser);

View File

@ -652,6 +652,23 @@ static ret_t scroll_bar_update_dragger(widget_t* widget) {
return RET_OK;
}
static ret_t scroll_bar_set_value_only_impl(widget_t* widget, int32_t value) {
scroll_bar_t* scroll_bar = SCROLL_BAR(widget);
return_value_if_fail(scroll_bar != NULL, RET_BAD_PARAMS);
if (value < 0) {
value = 0;
}
if (value > scroll_bar->virtual_size) {
value = scroll_bar->virtual_size;
}
scroll_bar->value = value;
return RET_OK;
}
ret_t scroll_bar_set_value(widget_t* widget, int32_t value) {
scroll_bar_t* scroll_bar = SCROLL_BAR(widget);
return_value_if_fail(scroll_bar != NULL || value >= 0, RET_BAD_PARAMS);
@ -663,7 +680,7 @@ ret_t scroll_bar_set_value(widget_t* widget, int32_t value) {
value_set_int(&(evt.new_value), value);
if (widget_dispatch(widget, (event_t*)&evt) != RET_STOP) {
scroll_bar_set_value_only(widget, value);
scroll_bar_set_value_only_impl(widget, value);
evt.e.type = EVT_VALUE_CHANGED;
widget_dispatch(widget, (event_t*)&evt);
widget_invalidate(widget, NULL);
@ -679,16 +696,12 @@ ret_t scroll_bar_set_value_only(widget_t* widget, int32_t value) {
scroll_bar_t* scroll_bar = SCROLL_BAR(widget);
return_value_if_fail(scroll_bar != NULL, RET_BAD_PARAMS);
if (value < 0) {
value = 0;
if (scroll_bar->value != value) {
scroll_bar_set_value_only_impl(widget, value);
/*解决调用此接口设置value后界面滑块位置没更新的问题。*/
scroll_bar_update_dragger(widget);
}
if (value > scroll_bar->virtual_size) {
value = scroll_bar->virtual_size;
}
scroll_bar->value = value;
return RET_OK;
}