Skip to content

Instantly share code, notes, and snippets.

@hyrious
Last active February 18, 2024 06:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hyrious/6a66d39b023bac2e5ae3cd0c966e520f to your computer and use it in GitHub Desktop.
Save hyrious/6a66d39b023bac2e5ae3cd0c966e520f to your computer and use it in GitHub Desktop.
RPG Maker Clipboard Data Dump
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <ctype.h>
#include <stdio.h>
int inspect_c(BYTE c) {
/**/ if (c == '\a') { printf("\\a"); }
else if (c == '\b') { printf("\\b"); }
else if (c == '\t') { printf("\\t"); }
else if (c == '\n') { printf("\\n"); }
else if (c == '\v') { printf("\\v"); }
else if (c == '\f') { printf("\\f"); }
else if (c == '\r') { printf("\\r"); }
else if (c == '\e') { printf("\\e"); }
else if (isprint(c)){ putchar(c); }
else { printf("<%#x>", c); }
return 0;
}
int inspect(LPBYTE str, size_t size) {
for (size_t i = 0; i < size; ++i) {
inspect_c(str[i]);
}
return 0;
}
int main() {
if (OpenClipboard(0)) {
UINT format = 0;
char name[80] = "";
do {
if (format = EnumClipboardFormats(format)) {
if (GetClipboardFormatName(format, name, 79)) {
HANDLE h = GetClipboardData(format);
if (h != 0) {
size_t size = GlobalSize(h);
printf("%8x: %s (%zu bytes)\n", format, name, size);
LPBYTE str = GlobalLock(h);
if (str != 0) {
printf(" | ");
inspect(str, size);
putchar('\n');
GlobalUnlock(h);
}
}
}
}
} while (format != 0);
CloseClipboard();
}
}
c246: RPGXP MAP (2142 bytes)
| Z\b<0><0><0x4>\b[\ao:\rRPG::Map<0x10>:\t@bgmo:<0x13>RPG::AudioFile\b:\f@volumeii:\n@name"<0>:\v@pitchii:<0x10>@tileset_idi<0x6>:\f@events{<0>:\t@bgso;\a\b;\biU;\t"<0>;\nii:<0x12>@autoplay_bgmF:\n@datau:\nTable<0x2><0x1c>\a<0x3><0><0><0><0x14><0><0><0><0xf><0><0><0><0x3><0><0><0><0x84><0x3><0><0><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0>:<0x12>@autoplay_bgsF:\f@heighti<0x14>:<0x14>@encounter_stepi#:\v@widthi<0x19>:<0x14>@encounter_list[<0>o:<0x11>RPG::MapInfo\v:<0xe>@scroll_xi<0x2>@<0x1>;\t"\vMAP001:<0xe>@expandedF:\v@orderi<0x6>:<0xe>@scroll_yi<0x1><0xf0>:<0xf>@parent_idi<0>
c264: RPGXP TROUP (455 bytes)
| <0xc3><0x1><0><0><0x4>\b[<0x6>o:<0xf>RPG::Troop\t:\v@pages[<0x6>o:<0x15>RPG::Troop::Page\b:\n@list[<0x6>o:<0x16>RPG::EventCommand\b:<0x10>@parameters[<0>:\f@indenti<0>:\n@codei<0>:<0xf>@conditiono: RPG::Troop::Page::Condition<0x10>:<0xe>@actor_idi<0x6>:\f@turn_ai<0>:<0x10>@turn_validF:<0xe>@enemy_hpi7:<0x12>@switch_validF:<0xf>@switch_idi<0x6>:<0x11>@enemy_indexi<0>:<0x11>@actor_validF:<0xe>@actor_hpi7:\f@turn_bi<0>:<0x11>@enemy_validF:\n@spani<0>:\n@name"\r<0xe5><0xb9><0xbd><0xe7><0x81><0xb5>*2:\b@idi<0x6>:\r@members[\ao:<0x17>RPG::Troop::Member\n:\f@hiddenF:\a@yi<0x2>0<0x1>:<0xe>@enemy_idi<0x6>:\a@xi<0x2><0xf><0x1>:<0xe>@immortalFo;<0x1e>\n;<0x1f>F; i<0x2>0<0x1>;!i<0x6>;"i<0x2>q<0x1>;#F
c265: RPGXP COMMON_EVENT (135 bytes)
| <0x83><0><0><0><0x4>\b[<0x6>o:<0x15>RPG::CommonEvent\n:\n@list[<0x6>o:<0x16>RPG::EventCommand\b:<0x10>@parameters[<0>:\f@indenti<0>:\n@codei<0>:\n@name"<0>:\r@triggeri<0>:<0xf>@switch_idi<0x6>:\b@idi<0x6>
c275: RPGXP CLASS (390 bytes)
| <0x82><0x1><0><0><0x4>\b[<0x6>o:<0xf>RPG::Class\r:\n@name"\v<0xe6><0x88><0x98><0xe5><0xa3><0xab>:<0xf>@armor_set[<0x1d>i<0x6>i\ai\bi\ti\ni\vi\fi\ri<0x12>i<0x13>i<0x14>i<0x15>i<0x16>i<0x17>i<0x18>i<0x19>i<0x1e>i<0x1f>i i!i"i#i$i%:<0xf>@learnings[\to:<0x19>RPG::Class::Learning\a:\v@leveli<0x6>:<0xe>@skill_idi>o;\t\a;\ni<0xe>;\vi?o;\t\a;\ni<0x16>;\vi@o;\t\a;\ni<0x1e>;\viA:<0x10>@weapon_set[\ti<0x6>i\ai\bi\t:<0x11>@state_ranksu:\nTable;<0x1><0><0><0><0x11><0><0><0><0x1><0><0><0><0x1><0><0><0><0x11><0><0><0><0><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0>:<0xe>@positioni<0>:\b@idi<0x6>:<0x13>@element_ranksu;<0xe>;<0x1><0><0><0><0x11><0><0><0><0x1><0><0><0><0x1><0><0><0><0x11><0><0><0><0><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0>
c27a: RPGXP ARMOR (296 bytes)
| $<0x1><0><0><0x4>\b[<0x6>o:<0xf>RPG::Armor<0x15>:\t@evai<0>:<0xe>@int_plusi<0>:<0xf>@icon_name"<0x11>009-Shield01:\n@mdefi<0x19>:\n@name"\v<0xe9><0x93><0x9c><0xe7><0x9b><0xbe>:<0x13>@auto_state_idi<0>:\v@pricei<0x2><0x86><0x1>:<0xe>@agi_plusi<0>:\n@pdefi\e:<0x15>@guard_state_set[<0>:\n@kindi<0>:<0xe>@dex_plusi<0>:<0x17>@guard_element_set[<0>:<0x11>@description"8<0xe9><0x9d><0x92><0xe9><0x93><0x9c><0xe5><0x88><0xb6><0xe9><0x80><0xa0><0xe7><0x9a><0x84><0xe7><0x9b><0xbe><0xe3><0x80><0x82><0xe5><0x89><0x8d><0xe5><0x8d><0xab><0xe7><0xb3><0xbb><0xe8><0x81><0x8c><0xe4><0xb8><0x9a><0xe5><0x8f><0xaf><0xe4><0xbb><0xa5><0xe8><0xa3><0x85><0xe5><0xa4><0x87><0xe3><0x80><0x82>:<0xe>@str_plusi<0>:\b@idi<0x6>
c2b5: RPGXP EVENT (710 bytes)
| <0xc2><0x2><0><0><0x4>\bo:<0xf>RPG::Event\n:\v@pages[<0x6>o:<0x15>RPG::Event::Page<0x12>:\n@list[<0x6>o:<0x16>RPG::EventCommand\b:<0x10>@parameters[<0>:\f@indenti<0>:\n@codei<0>:<0xf>@move_typei<0>:<0x13>@direction_fixF:<0xf>@conditiono: RPG::Event::Page::Condition<0xe>:<0x13>@switch2_validF:<0x14>@self_switch_ch"<0x6>A:<0x10>@switch1_idi<0x6>:<0x13>@switch1_validF:<0x14>@variable_valuei<0>:<0x17>@self_switch_validF:<0x11>@variable_idi<0x6>:<0x14>@variable_validF:<0x10>@switch2_idi<0x6>:<0x10>@move_routeo:<0x13>RPG::MoveRoute\b;\b[<0x6>o:<0x15>RPG::MoveCommand\a;\n[<0>;\fi<0>:<0xf>@skippableF:\f@repeatT:\r@triggeri<0>:<0x10>@step_animeF:<0x14>@move_frequencyi\b:<0x13>@always_on_topF:\r@graphico:<0x1e>RPG::Event::Page::Graphic\f:\r@opacityi<0x1><0xff>:<0x14>@character_name"<0>:\r@patterni<0>:\r@tile_idi<0>:<0xf>@directioni\a:<0x10>@blend_typei<0>:<0x13>@character_huei<0>:<0x10>@walk_animeT:<0x10>@move_speedi\b:\r@throughF:\n@name"\nEV001:\a@yi<0>:\a@xi<0>:\b@idi<0x6>
c2c9: RPGXP EVENT_COMMAND (64 bytes)
| <<0><0><0><0x4>\b[<0x6>o:<0x16>RPG::EventCommand\b:<0x10>@parameters[<0>:\f@indenti<0>:\n@codeiy
c2ca: RPGXP MAP_SECTION (36 bytes)
| <0><0><0><0x4><0><0><0><0x1><0><0><0><0x80><0x1><0x80><0x1><0x80><0x1><0x80><0x1><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0>
c2d0: RPGXP TILESET (3667 bytes)
| O<0xe><0><0><0x4>\b[<0x6>o:<0x11>RPG::Tileset<0x16>:<0x12>@panorama_huei<0>:<0x12>@terrain_tagsu:\nTable<0x2>4<0x4><0x1><0><0><0><0x10><0x2><0><0><0x1><0><0><0><0x1><0><0><0><0x10><0x2><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0>:\f@fog_syi<0>:\n@name"\v<0xe8><0x8d><0x89><0xe5><0x8e><0x9f>:<0x11>@fog_opacityiE:<0x13>@panorama_name"<0>:<0x10>@prioritiesu;\b<0x2>4<0x4><0x1><0><0><0><0x10><0x2><0><0><0x1><0><0><0><0x1><0><0><0><0x10><0x2><0><0><0x5><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0x5><0><0x5><0><0x5><0><0x5><0><0x5><0><0x5><0><0x5><0><0x5><0><0x4><0><0x4><0><0x4><0><0x4><0><0x4><0><0x4><0><0x4><0><0x4><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x2><0><0x2><0><0x2><0><0x2><0><0x2><0><0x2><0><0x2><0><0x2><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0x1><0><0x1><0><0x1><0><0x1><0><0x1><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0x1><0><0x1><0><0x1><0><0><0><0><0><0><0><0x2><0><0x2><0><0x2><0><0x2><0><0x2><0><0><0><0><0><0><0><0x1><0><0x1><0><0x1><0><0x1><0><0x1><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0>:\f@fog_sxi<0>:\r@fog_huei<0>:<0x14>@autotile_names[\f"<0x12>001-G_Water01"<0x13>002-G_Shadow01"<0x13>003-G_Ground01"<0x11>040-Ground01"<0x10>041-Grass01"<0x17>007-G_Undulation01"<0x17>008-G_Undulation02:<0xe>@passagesu;\b<0x2>4<0x4><0x1><0><0><0><0x10><0x2><0><0><0x1><0><0><0><0x1><0><0><0><0x10><0x2><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0><0><0><0><0><0><0><0><0xf><0><0><0><0xf><0><0xf><0><0><0><0><0><0><0><0><0><0xf><0><0><0><0><0><0xf><0>@<0>@<0>@<0><0><0>@<0><0><0><0xf><0><0xf><0>@<0>@<0>@<0>@<0>@<0><0xf><0><0xf><0><0xf><0><0><0><0><0><0><0>@<0>@<0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0xf><0><0xf><0><0><0><0><0><0xf><0><0xf><0><0><0><0><0><0><0><0xf><0><0xf><0><0xf><0><0x2><0><0><0><0x4><0><0xf><0><0xf><0>\b<0>\b<0>\b<0><0x2><0><0xf><0><0x4><0><0xf><0><0xf><0><0x1><0><0x1><0><0x1><0><0x6><0><0xf><0>\b<0><0><0><0><0><0><0><0><0><0><0>\t<0><0xf><0><0><0><0><0><0><0><0><0><0><0><0><0><0xf><0><0x1><0><0x1><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0xf><0><0><0><0><0><0><0><0xf><0><0xf><0><0><0><0xf><0><0xf><0><0><0><0><0><0><0>:<0xe>@fog_zoomi<0x1><0xc8>:<0xe>@fog_name"<0>:<0x12>@tileset_name"<0x14>001-Grassland01:<0x15>@battleback_name"<0x14>001-Grassland01:\b@idi<0x6>:<0x14>@fog_blend_typei<0>
c2d1: RPGXP EVENT_PAGE (653 bytes)
| <0x89><0x2><0><0><0x4>\bo:<0x15>RPG::Event::Page<0x12>:<0xf>@move_typei<0>:\n@list[<0x6>o:<0x16>RPG::EventCommand\b:<0x10>@parameters[<0>:\f@indenti<0>:\n@codei<0>:<0xf>@conditiono: RPG::Event::Page::Condition<0xe>:<0x13>@switch2_validF:<0x14>@self_switch_ch"<0x6>A:<0x10>@switch1_idi<0x6>:<0x13>@switch1_validF:<0x14>@variable_valuei<0>:<0x17>@self_switch_validF:<0x11>@variable_idi<0x6>:<0x14>@variable_validF:<0x10>@switch2_idi<0x6>:<0x13>@direction_fixF:<0x10>@move_routeo:<0x13>RPG::MoveRoute\b;\a[<0x6>o:<0x15>RPG::MoveCommand\a;\t[<0>;\vi<0>:<0xf>@skippableF:\f@repeatT:\r@triggeri<0>:<0x10>@step_animeF:<0x14>@move_frequencyi\b:\r@graphico:<0x1e>RPG::Event::Page::Graphic\f:\r@opacityi<0x1><0xff>:<0x14>@character_name"<0>:\r@patterni<0>:\r@tile_idi<0>:<0xf>@directioni\a:<0x10>@blend_typei<0>:<0x13>@character_huei<0>:<0x13>@always_on_topF:<0x10>@walk_animeT:<0x10>@move_speedi\b:\r@throughF
c2d6: RPGXP ANIMATION (1642 bytes)
| f<0x6><0><0><0x4>\b[<0x6>o:<0x13>RPG::Animation\r:\n@name"<0x11><0xe5><0x8f><0x91><0xe5><0x8a><0xa8><0xe7><0x89><0xb9><0xe6><0x8a><0x80>:<0x14>@animation_name"<0x11>001-Action01:\f@frames[<0x15>o:<0x1a>RPG::Animation::Frame\a:<0xe>@cell_maxi<0x6>:<0xf>@cell_datau:\nTable)<0x2><0><0><0><0x1><0><0><0>\b<0><0><0><0x1><0><0><0>\b<0><0><0><0><0><0><0><0x10><0><0x1e><0><0><0><0><0>d<0><0x1><0>o;\t\a;\ni<0x6>;\vu;\f)<0x2><0><0><0><0x1><0><0><0>\b<0><0><0><0x1><0><0><0>\b<0><0><0><0><0><0><0><0><0>2<0><0><0><0><0><0x82><0><0x1><0>o;\t\a;\ni<0x6>;\vu;\f)<0x2><0><0><0><0x1><0><0><0>\b<0><0><0><0x1><0><0><0>\b<0><0><0><0><0><0><0><0xf0><0xff>P<0><0><0><0><0><0x96><0><0x1><0>o;\t\a;\ni\a;\vu;\f9<0x2><0><0><0><0x2><0><0><0>\b<0><0><0><0x1><0><0><0><0x10><0><0><0><0><0><0x1><0><0><0><0x18><0><0xe8><0xff>\b<0>Z<0>d<0><0><0><0><0><0><0><0><0><0xb4><0><0xff><0><0x1><0><0x1><0>o;\t\a;\ni\a;\vu;\f9<0x2><0><0><0><0x2><0><0><0>\b<0><0><0><0x1><0><0><0><0x10><0><0><0><0><0><0x1><0><0><0><0x18><0><0xe8><0xff><0xf8><0xff>d<0>d<0><0><0><0><0><0><0><0><0><0xc8><0><0xff><0><0x1><0><0x1><0>o;\t\a;\ni\a;\vu;\f9<0x2><0><0><0><0x2><0><0><0>\b<0><0><0><0x1><0><0><0><0x10><0><0><0><0><0><0x1><0><0><0><0x18><0><0xe8><0xff><0xe0><0xff>d<0>d<0><0><0><0><0><0><0><0><0><0xff><0><0xff><0><0x1><0><0x1><0>o;\t\a;\ni\b;\vu;\fI<0x2><0><0><0><0x3><0><0><0>\b<0><0><0><0x1><0><0><0><0x18><0><0><0><0><0><0x1><0><0x1><0><0><0><0x18><0><0xe8><0xff><0xe8><0xff><0xd0><0xff><0x10><0>d<0>d<0>d<0><0><0><0><0><0><0><0><0><0><0><0><0><0xc8><0><0xc8><0><0xff><0><0x1><0><0x1><0><0x1><0>o;\t\a;\ni\b;\vu;\fI<0x2><0><0><0><0x3><0><0><0>\b<0><0><0><0x1><0><0><0><0x18><0><0><0><0><0><0x1><0><0x1><0><0><0><0x18><0><0xe8><0xff><0xe8><0xff><0xc0><0xff><0><0>d<0>d<0>d<0><0><0><0><0><0><0><0><0><0><0><0><0><0xff><0><0xc8><0><0xff><0><0x1><0><0x1><0><0x1><0>o;\t\a;\ni\t;\vu;\fY<0x2><0><0><0><0x4><0><0><0>\b<0><0><0><0x1><0><0><0> <0><0><0><0><0><0x1><0><0x1><0><0x1><0><0><0><0x18><0><0xe8><0xff><0><0><0xe0><0xff><0xb0><0xff><0xe8><0xff><0x18><0>n<0>d<0>d<0>d<0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0xc8><0><0x96><0><0xc8><0><0xff><0><0x1><0><0x1><0><0x1><0><0x1><0>o;\t\a;\ni\t;\vu;\fY<0x2><0><0><0><0x4><0><0><0>\b<0><0><0><0x1><0><0><0> <0><0><0><0><0><0x1><0><0x1><0><0x1><0><0><0><0x18><0><0xe8><0xff><0><0><0xe0><0xff><0xa0><0xff><0xd8><0xff>\b<0>n<0>d<0>d<0>d<0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0xff><0><0x96><0><0xc8><0><0xff><0><0x1><0><0x1><0><0x1><0><0x1><0>o;\t\a;\ni\t;\vu;\fY<0x2><0><0><0><0x4><0><0><0>\b<0><0><0><0x1><0><0><0> <0><0><0><0><0><0x1><0><0x1><0><0x1><0><0><0><0x18><0><0xe8><0xff><0><0><0xd8><0xff><0x90><0xff><0xc0><0xff><0xe0><0xff>x<0>d<0>d<0>d<0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0x96><0>d<0><0x96><0><0xc8><0><0x1><0><0x1><0><0x1><0><0x1><0>o;\t\a;\ni\t;\vu;\fY<0x2><0><0><0><0x4><0><0><0>\b<0><0><0><0x1><0><0><0> <0><0><0><0><0><0x1><0><0x1><0><0x1><0><0><0><0x18><0><0xe8><0xff><0><0><0xd8><0xff><0x88><0xff><0xb0><0xff><0xd0><0xff>x<0>d<0>d<0>d<0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0xff><0>d<0><0x96><0><0xc8><0><0x1><0><0x1><0><0x1><0><0x1><0>o;\t\a;\ni\b;\vu;\fI<0x2><0><0><0><0x3><0><0><0>\b<0><0><0><0x1><0><0><0><0x18><0><0><0><0><0><0x1><0><0x1><0><0><0><0xe8><0xff><0><0><0xd8><0xff><0x98><0xff><0xb8><0xff>x<0>d<0>d<0><0><0><0><0><0><0><0><0><0><0><0><0><0xc8><0>d<0><0x96><0><0x1><0><0x1><0><0x1><0>o;\t\a;\ni\b;\vu;\fI<0x2><0><0><0><0x3><0><0><0>\b<0><0><0><0x1><0><0><0><0x18><0><0><0><0><0><0x1><0><0x1><0><0><0><0xe8><0xff><0><0><0xd8><0xff><0x98><0xff><0xb8><0xff>x<0>d<0>d<0><0><0><0><0><0><0><0><0><0><0><0><0>d<0>d<0><0x96><0><0x1><0><0x1><0><0x1><0>o;\t\a;\ni<0x6>;\vu;\f)<0x2><0><0><0><0x1><0><0><0>\b<0><0><0><0x1><0><0><0>\b<0><0><0><0x1><0><0><0><0x88><0xff>d<0><0><0><0><0>d<0><0x1><0>o;\t\a;\ni<0x6>;\vu;\f)<0x2><0><0><0><0x1><0><0><0>\b<0><0><0><0x1><0><0><0>\b<0><0><0><0x1><0><0><0><0x88><0xff>d<0><0><0><0><0>d<0><0x1><0>:<0xf>@frame_maxi<0x15>:<0xe>@positioni\a:\b@idi<0x6>:\r@timings[\ao:\eRPG::Animation::Timing\v:<0x11>@flash_coloru:\nColor%<0><0><0><0><0><0xe0>o@<0><0><0><0><0><0xe0>o@<0><0><0><0><0><0xe0>o@<0><0><0><0><0><0xe0>o@:<0xf>@conditioni<0>:<0x11>@flash_scopei<0>:\b@seo:<0x13>RPG::AudioFile\b:\f@volumeiU;<0x6>"<0x11>086-Action01:\v@pitchii:<0x14>@flash_durationi\n:\v@framei<0>o;<0x11>\v;<0x12>u;<0x13>%<0><0><0><0><0><0xe0>o@<0><0><0><0><0><0xe0>o@<0><0><0><0><0>@U@<0><0><0><0><0>@e@;<0x14>i<0>;<0x15>i<0x6>;<0x16>o;<0x17>\b;<0x18>iU;<0x6>"<0>;<0x19>ii;<0x1a>i\n;\ei\b:<0x13>@animation_huei<0>
c2d9: RPGXP ANIME_FRAME (101 bytes)
| a<0><0><0><0x4>\bo:<0x1a>RPG::Animation::Frame\a:<0xe>@cell_maxi<0x6>:<0xf>@cell_datau:\nTable)<0x2><0><0><0><0x1><0><0><0>\b<0><0><0><0x1><0><0><0>\b<0><0><0><0><0><0><0><0><0>2<0><0><0><0><0><0x82><0><0x1><0>
c2df: RPGXP ACTOR (1609 bytes)
| E<0x6><0><0><0x4>\b[<0x6>o:<0xf>RPG::Actor\e:<0x13>@initial_leveli<0x6>:<0xf>@armor4_idi<0>:<0xf>@weapon_idi<0x6>:<0x14>@character_name"<0x12>001-Fighter01:\n@name"<0x11><0xe9><0x98><0xbf><0xe5><0xb0><0x94><0xe8><0xa5><0xbf><0xe6><0x96><0xaf>:<0x13>@exp_inflationi(:<0x10>@parametersu:\nTable<0x2><0xc4><0x4><0x2><0><0><0><0x6><0><0><0>d<0><0><0><0x1><0><0><0>X<0x2><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0xe5><0x2><0x16><0x2>C<0>6<0>:<0>$<0>*<0x3>I<0x2>I<0><<0>@<0>(<0>o<0x3>|<0x2>O<0>A<0>E<0>+<0><0xb3><0x3><0xaf><0x2>U<0>F<0>K<0>.<0><0xf8><0x3><0xe1><0x2>[<0>K<0>P<0>1<0>=<0x4><0x14><0x3>`<0>Q<0>U<0>4<0><0x81><0x4>G<0x3>f<0>V<0>[<0>8<0><0xc6><0x4>y<0x3>l<0>[<0>`<0>;<0>\v<0x5><0xac><0x3>r<0>`<0>e<0>><0>O<0x5><0xdf><0x3>x<0>e<0>k<0>A<0><0x94><0x5><0x11><0x4>}<0>k<0>p<0>D<0><0xd8><0x5>D<0x4><0x83><0>p<0>u<0>H<0><0x1d><0x6>w<0x4><0x89><0>u<0>{<0>K<0>b<0x6><0xa9><0x4><0x8f><0>z<0><0x80><0>N<0><0xa6><0x6><0xdc><0x4><0x95><0><0x7f><0><0x85><0>Q<0><0xeb><0x6><0xf><0x5><0x9a><0><0x85><0><0x8b><0>T<0>0\aA<0x5><0xa0><0><0x8a><0><0x90><0>X<0>t\at<0x5><0xa6><0><0x8f><0><0x95><0>[<0><0xb9>\a<0xa7><0x5><0xac><0><0x94><0><0x9b><0>^<0><0xfe>\a<0xd9><0x5><0xb2><0><0x99><0><0xa0><0>a<0>B\b\f<0x6><0xb7><0><0x9f><0><0xa5><0>d<0><0x87>\b?<0x6><0xbd><0><0xa4><0><0xab><0>h<0><0xcb>\bq<0x6><0xc3><0><0xa9><0><0xb0><0>k<0><0x10>\t<0xa4><0x6><0xc9><0><0xae><0><0xb5><0>n<0>U\t<0xd7><0x6><0xcf><0><0xb3><0><0xbb><0>q<0><0x99>\t\t\a<0xd4><0><0xb9><0><0xc0><0>t<0><0xde>\t<\a<0xda><0><0xbe><0><0xc6><0>x<0>#\no\a<0xe0><0><0xc3><0><0xcb><0>{<0>g\n<0xa1>\a<0xe6><0><0xc8><0><0xd0><0>~<0><0xac>\n<0xd4>\a<0xec><0><0xcd><0><0xd6><0><0x81><0><0xf0>\n\a\b<0xf1><0><0xd3><0><0xdb><0><0x84><0>5\v9\b<0xf7><0><0xd8><0><0xe0><0><0x88><0>z\vl\b<0xfd><0><0xdd><0><0xe6><0><0x8b><0><0xbe>\v<0x9f>\b<0x3><0x1><0xe2><0><0xeb><0><0x8e><0><0x3>\f<0xd1>\b\t<0x1><0xe7><0><0xf0><0><0x91><0>H\f<0x4>\t<0xe><0x1><0xed><0><0xf6><0><0x94><0><0x8c>\f7\t<0x14><0x1><0xf2><0><0xfb><0><0x97><0><0xd1>\fi\t<0x1a><0x1><0xf7><0><0><0x1><0x9b><0><0x16>\r<0x9c>\t <0x1><0xfc><0><0x6><0x1><0x9e><0>Z\r<0xcf>\t&<0x1><0x1><0x1>\v<0x1><0xa1><0><0x9f>\r<0x1>\n+<0x1>\a<0x1><0x10><0x1><0xa4><0><0xe3>\r4\n1<0x1>\f<0x1><0x16><0x1><0xa7><0>(<0xe>g\n7<0x1><0x11><0x1>\e<0x1><0xab><0>m<0xe><0x99>\n=<0x1><0x16><0x1> <0x1><0xae><0><0xb1><0xe><0xcc>\nC<0x1>\e<0x1>&<0x1><0xb1><0><0xf6><0xe><0xff>\nH<0x1>!<0x1>+<0x1><0xb4><0>;<0xf>1\vN<0x1>&<0x1>0<0x1><0xb7><0><0x7f><0xf>d\vT<0x1>+<0x1>6<0x1><0xbb><0><0xc4><0xf><0x97>\vZ<0x1>0<0x1>;<0x1><0xbe><0>\b<0x10><0xc9>\v_<0x1>5<0x1>@<0x1><0xc1><0>M<0x10><0xfc>\ve<0x1>;<0x1>F<0x1><0xc4><0><0x92><0x10>/\fk<0x1>@<0x1>K<0x1><0xc7><0><0xd6><0x10>b\fq<0x1>E<0x1>Q<0x1><0xcb><0>\e<0x11><0x94>\fw<0x1>J<0x1>V<0x1><0xce><0>`<0x11><0xc7>\f|<0x1>P<0x1>[<0x1><0xd1><0><0xa4><0x11><0xfa>\f<0x82><0x1>U<0x1>a<0x1><0xd4><0><0xe9><0x11>,\r<0x88><0x1>Z<0x1>f<0x1><0xd7><0>.<0x12>_\r<0x8e><0x1>_<0x1>k<0x1><0xdb><0>r<0x12><0x92>\r<0x94><0x1>d<0x1>q<0x1><0xde><0><0xb7><0x12><0xc4>\r<0x99><0x1>j<0x1>v<0x1><0xe1><0><0xfb><0x12><0xf7>\r<0x9f><0x1>o<0x1>{<0x1><0xe4><0>@<0x13>*<0xe><0xa5><0x1>t<0x1><0x81><0x1><0xe7><0><0x85><0x13>\<0xe><0xab><0x1>y<0x1><0x86><0x1><0xeb><0><0xc9><0x13><0x8f><0xe><0xb1><0x1>~<0x1><0x8b><0x1><0xee><0><0xe><0x14><0xc2><0xe><0xb6><0x1><0x84><0x1><0x91><0x1><0xf1><0>S<0x14><0xf4><0xe><0xbc><0x1><0x89><0x1><0x96><0x1><0xf4><0><0x97><0x14>'<0xf><0xc2><0x1><0x8e><0x1><0x9b><0x1><0xf7><0><0xdc><0x14>Z<0xf><0xc8><0x1><0x93><0x1><0xa1><0x1><0xfa><0>!<0x15><0x8c><0xf><0xce><0x1><0x98><0x1><0xa6><0x1><0xfe><0>e<0x15><0xbf><0xf><0xd3><0x1><0x9e><0x1><0xab><0x1><0x1><0x1><0xaa><0x15><0xf2><0xf><0xd9><0x1><0xa3><0x1><0xb1><0x1><0x4><0x1><0xee><0x15>$<0x10><0xdf><0x1><0xa8><0x1><0xb6><0x1>\a<0x1>3<0x16>W<0x10><0xe5><0x1><0xad><0x1><0xbb><0x1>\n<0x1>x<0x16><0x8a><0x10><0xeb><0x1><0xb2><0x1><0xc1><0x1><0xe><0x1><0xbc><0x16><0xbc><0x10><0xf0><0x1><0xb8><0x1><0xc6><0x1><0x11><0x1><0x1><0x17><0xef><0x10><0xf6><0x1><0xbd><0x1><0xcc><0x1><0x14><0x1>F<0x17>"<0x11><0xfc><0x1><0xc2><0x1><0xd1><0x1><0x17><0x1><0x8a><0x17>T<0x11><0x2><0x2><0xc7><0x1><0xd6><0x1><0x1a><0x1><0xcf><0x17><0x87><0x11>\b<0x2><0xcc><0x1><0xdc><0x1><0x1e><0x1><0x13><0x18><0xba><0x11>\r<0x2><0xd2><0x1><0xe1><0x1>!<0x1>X<0x18><0xec><0x11><0x13><0x2><0xd7><0x1><0xe6><0x1>$<0x1><0x9d><0x18><0x1f><0x12><0x19><0x2><0xdc><0x1><0xec><0x1>'<0x1><0xe1><0x18>R<0x12><0x1f><0x2><0xe1><0x1><0xf1><0x1>*<0x1>&<0x19><0x84><0x12>%<0x2><0xe6><0x1><0xf6><0x1>.<0x1>k<0x19><0xb7><0x12>*<0x2><0xec><0x1><0xfc><0x1>1<0x1><0xaf><0x19><0xea><0x12>0<0x2><0xf1><0x1><0x1><0x2>4<0x1><0xf4><0x19><0x1c><0x13>6<0x2><0xf6><0x1><0x6><0x2>7<0x1>9<0x1a>O<0x13><<0x2><0xfb><0x1>\f<0x2>:<0x1>}<0x1a><0x82><0x13>B<0x2><0><0x2><0x11><0x2>><0x1><0xc2><0x1a><0xb4><0x13>G<0x2><0x6><0x2><0x16><0x2>A<0x1><0x6>\e<0xe7><0x13>M<0x2>\v<0x2><0x1c><0x2>D<0x1>K\e<0x1a><0x14>S<0x2><0x10><0x2>!<0x2>G<0x1><0x90>\eL<0x14>Y<0x2><0x15><0x2>&<0x2>J<0x1><0xd4>\e<0x7f><0x14>_<0x2><0x1a><0x2>,<0x2>N<0x1><0x19><0x1c><0xb2><0x14>d<0x2> <0x2>1<0x2>Q<0x1>^<0x1c><0xe4><0x14>j<0x2>%<0x2>6<0x2>T<0x1><0xa2><0x1c><0x17><0x15>p<0x2>*<0x2><<0x2>W<0x1><0xe7><0x1c>J<0x15>v<0x2>/<0x2>A<0x2>Z<0x1>+<0x1d>|<0x15>{<0x2>4<0x2>F<0x2>]<0x1>:<0x10>@armor2_fixF:<0xe>@class_idi<0x6>:<0xf>@armor3_idi<0x12>:<0x10>@armor1_fixF:<0xf>@exp_basisi<0x1e>:<0xf>@armor2_idi\n:<0x11>@battler_huei<0>:<0x10>@armor4_fixF:<0x11>@final_levelih:<0x10>@weapon_fixF:<0xf>@armor1_idi<0x6>:\b@idi<0x6>:<0x13>@character_huei<0>:<0x12>@battler_name"<0x12>001-Fighter01:<0x10>@armor3_fixF
c2e1: RPGXP WEAPON (310 bytes)
| 2<0x1><0><0><0x4>\b[<0x6>o:<0x10>RPG::Weapon<0x16>:<0x13>@animation1_idi<0>:<0xe>@int_plusi<0>:<0xf>@icon_name"<0x11>001-Weapon01:\n@mdefi<0>:<0x15>@minus_state_set[<0>:\n@name"\v<0xe9><0x93><0x9c><0xe5><0x89><0x91>:\v@pricei<0x2><0xf4><0x1>:<0xe>@agi_plusi<0>:\n@pdefi<0>:<0x14>@plus_state_set[<0>:<0xe>@dex_plusi<0>:\t@atkiu:<0x11>@element_set[<0>:<0x13>@animation2_idi\f:<0x11>@description"/<0xe9><0x9d><0x92><0xe9><0x93><0x9c><0xe5><0x88><0xb6><0xe9><0x80><0xa0><0xe7><0x9a><0x84><0xe5><0x89><0x91><0xe3><0x80><0x82><0xe6><0x88><0x98><0xe5><0xa3><0xab><0xe5><0x8f><0xaf><0xe4><0xbb><0xa5><0xe8><0xa3><0x85><0xe5><0xa4><0x87><0xe3><0x80><0x82>:<0xe>@str_plusi<0>:\b@idi<0x6>
c2eb: RPGXP ENEMY (660 bytes)
| <0x90><0x2><0><0><0x4>\b[<0x6>o:<0xf>RPG::Enemy<0x1e>:\t@stri.:\t@evai<0>:<0x13>@animation1_idi<0>:\n@name"\v<0xe5><0xb9><0xbd><0xe7><0x81><0xb5>:\n@mdefid:\n@goldi<0x15>:<0xf>@weapon_idi<0>:\t@inti.:\v@maxspi<0x2><0xa3><0x1>:<0x13>@treasure_probii:\n@pdefid:\t@expi\a:\t@agii.:\v@maxhpi<0x2><0x1c><0x2>:<0xe>@armor_idi<0>:<0x11>@battler_huei<0>:\t@atkii:<0x11>@state_ranksu:\nTable;<0x1><0><0><0><0x11><0><0><0><0x1><0><0><0><0x1><0><0><0><0x11><0><0><0><0><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0>:\t@dexi,:<0x13>@animation2_idi\t:\b@idi<0x6>:\r@item_idi<0>:<0x12>@battler_name"<0x11>051-Undead01:<0x13>@element_ranksu;<0x18>;<0x1><0><0><0><0x11><0><0><0><0x1><0><0><0><0x1><0><0><0><0x11><0><0><0><0><0><0x2><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x1><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0><0x3><0>:\r@actions[\ao:<0x17>RPG::Enemy::Action<0xe>:\v@basici<0>:<0x12>@condition_hpii:\f@ratingi\n:<0x16>@condition_turn_bi<0x6>:\n@kindi<0>:<0x19>@condition_switch_idi<0>:<0x16>@condition_turn_ai<0>:<0xe>@skill_idi\f:<0x15>@condition_leveli<0x6>o; <0xe>;!i\b;"ii;#i\t;$i<0x6>;%i<0>;&i<0>;'i<0>;(i<0x6>;)i<0x6>
c2ee: RPGXP SKILL (432 bytes)
| <0xac><0x1><0><0><0x4>\b[<0x6>o:<0xf>RPG::Skill<0x1e>:<0x13>@animation1_idi\a:\v@int_fi7:<0xf>@icon_name"<0x10>045-Skill02:\v@eva_fi<0>:<0x15>@minus_state_set[<0>:\n@name"\v<0xe6><0xb2><0xbb><0xe7><0x96><0x97>:<0x15>@common_event_idi<0>:\f@mdef_fii:<0xe>@occasioni<0>:\v@agi_fi<0>:<0x14>@plus_state_set[<0>:\v@atk_fi<0>:\r@menu_seo:<0x13>RPG::AudioFile\b:\f@volumeiU;\v"<0xf>105-Heal01:\v@pitchii:\f@pdef_fi<0>:\v@scopei\b:\v@dex_fi<0>:\v@poweri<0xff>j:<0x11>@element_set[<0>:\t@hitii:<0x13>@animation2_idi<0x14>:<0x11>@description"<0x1d><0xe5><0x9b><0x9e><0xe5><0xa4><0x8d><0xe5><0xb7><0xb1><0xe6><0x96><0xb9><0xe5><0x8d><0x95><0xe4><0xbd><0x93> HP<0xe3><0x80><0x82>:\v@str_fi<0>:\b@idi<0x6>:\r@sp_costiU:<0xe>@variancei<0x14>
c2ef: RPGXP ITEM (489 bytes)
| <0xe5><0x1><0><0><0x4>\b[<0x6>o:<0xe>RPG::Item<0x1e>:<0x13>@animation1_idi\b:<0x10>@consumableT:<0xf>@icon_name"<0x11>021-Potion01:<0x15>@minus_state_set[<0>:\n@name"<0xe><0xe5><0x9b><0x9e><0xe5><0xa4><0x8d><0xe5><0x89><0x82>:\f@mdef_fi<0>:<0x15>@common_event_idi<0>:<0x15>@recover_hp_ratei<0>:<0xe>@occasioni<0>:\v@pricei7:<0x10>@recover_spi<0>:<0x14>@plus_state_set[<0>:\f@pdef_fi<0>:\r@menu_seo:<0x13>RPG::AudioFile\b:\f@volumeiU;\n"<0xf>105-Heal01:\v@pitchii:<0x16>@parameter_pointsi<0>:\v@scopei\b:<0x15>@recover_sp_ratei<0>:<0x11>@element_set[<0>:\t@hitii:<0x13>@animation2_idi<0x14>:<0x14>@parameter_typei<0>:<0x11>@description"<0x1e><0xe5><0xb7><0xb1><0xe6><0x96><0xb9><0xe5><0x8d><0x95><0xe4><0xbd><0x93> HP <0xe5><0x9b><0x9e><0xe5><0xa4><0x8d><0xe3><0x80><0x82>:\b@idi<0x6>:<0xe>@variancei<0>:<0x10>@recover_hpi<0x2><0xf4><0x1>
c2f0: RPGXP BATTLE_EVENT (310 bytes)
| 2<0x1><0><0><0x4>\bo:<0x15>RPG::Troop::Page\b:\n@list[\ao:<0x16>RPG::EventCommand\b:<0x10>@parameters[<0>:\f@indenti<0>:\n@codeiyo;\a\b;\b[<0>;\ti<0>;\ni<0>:<0xf>@conditiono: RPG::Troop::Page::Condition<0x10>:<0xe>@actor_idi<0x6>:\f@turn_ai<0>:<0x10>@turn_validF:<0xe>@enemy_hpi7:<0x12>@switch_validF:<0xf>@switch_idi<0x6>:<0x11>@enemy_indexi<0>:<0x11>@actor_validF:<0xe>@actor_hpi7:\f@turn_bi<0>:<0x11>@enemy_validF:\n@spani<0>
c2f2: RPGXP STATE (476 bytes)
| <0xd8><0x1><0><0><0x4>\b[<0x6>o:<0xf>RPG::State!:<0xe>@hit_rateii:<0xf>@hold_turni<0>:\t@evai<0>:\n@name"<0x11><0xe6><0x88><0x98><0xe6><0x96><0x97><0xe4><0xb8><0x8d><0xe8><0x83><0xbd>:\r@zero_hpT:<0xe>@atk_rateii:<0x15>@minus_state_set[<0x14>i\ai\bi\ti\ni\vi\fi\ri<0xe>i<0xf>i<0x10>i<0x11>i<0x12>i<0x13>i<0x14>i<0x15>:<0xe>@str_rateii:<0x11>@battle_onlyF:<0x11>@slip_damageF:\f@ratingi<0xf>:<0x13>@nonresistanceF:<0xe>@int_rateii:<0x14>@plus_state_set[<0>:<0x10>@maxsp_rateii:<0x18>@shock_release_probi<0>:<0x10>@cant_evadeF:<0xf>@mdef_rateii:<0x11>@restrictioni\t:<0xe>@agi_rateii:<0x17>@guard_element_set[<0>:<0x10>@maxhp_rateii:<0x17>@auto_release_probi<0>:\b@idi<0x6>:<0xf>@pdef_rateii:<0x12>@cant_get_expT:<0xe>@dex_rateii:<0x12>@animation_idi<0>
c2f3: RPGXP ANIME_TIMING (211 bytes)
| <0xcf><0><0><0><0x4>\bo:\eRPG::Animation::Timing\v:<0x11>@flash_coloru:\nColor%<0><0><0><0><0><0xe0>o@<0><0><0><0><0><0xe0>o@<0><0><0><0><0><0xe0>o@<0><0><0><0><0><0xe0>o@:<0xf>@conditioni<0>:<0x11>@flash_scopei<0>:\b@seo:<0x13>RPG::AudioFile\b:\f@volumeiU:\n@name"<0x11>086-Action01:\v@pitchii:<0x14>@flash_durationi\n:\v@framei<0>
c346: RPGXP SCRIPT (529 bytes)
| \r<0x2><0><0><0x4>\b[\bi<0x4><0x6>z<0xe><0x2>"\tMain"<0x2><0xf9><0x1>x<0x9c><0xad>R<0xcf>k<0x1a>A<0x14><0xbe>\a<0xf2>?<0xbc><0xac>9l<0xa0>YJ<0x8f><0x1><0x8f>6<0xa7><0xda>Cs+%lt<0x8c>\v:\evWB[\n<0xa6><0xfe>X<0xc5>6<0xb5>h<0x8c><0x86><0xa4>jP<0x9a>K5<0x10><0xda><0x1a><0xb7><0xd1><0xff><0xa5><0xee><0xcc><0xec><0xfe><0x17><0x9d>q<0x15><0x9a><0xbb>s<0x98><0x19><0xde>{<0xdf><0xf7><0xe6><0xfb><0xe6><0x85><0xc2>+]<0xeb>k!<0xf8><0xdb><0xe8><0xc0>\vU<0xc3><0xfc><0xbe><0xbd><0xd2>%<0xc8>g<0xd9>,<0xa9><0xe6><0xc9><0xe0><0xc2><0xbd>/3<0xa7>F<0xaf><0xda><0xa4>z:<0xcb><0x9e><0xb8><0xce><0xa9>7m<0xf9><0xf6>'<0xf2>'K<0xbe>W<0xc8><0xe0><0x9b><0xdf>*<0x90>^<0x9e>U<0x8b><0xb3><0xec>G<0x8e>\<0xb5><0xce><0xf5><0xb5><0x3>t(D<0x2><0x84><0x80><0xd8>E<0xd2><0xb3><0xbd><0xa9>MG<0xdd> <0xe2>\r&<0xec>a<0xc0><0xee><0x1c><0xe6><0xb4>}<0xa7><0xe9>\rz<0xe4><0xc7><0xb9><0xfb>P<0x13><0xd9><0xe7>:<0xb6><0x94>8J<0xa8><0x99><0x94><0xb5><0x8f><0xd5>4<0x82>0<0xc8><0xaf>%<0xdf><0xf9><0xca>\v<0xa4>7[<0xa2>f<0xd7>P<0x8f><0x92>Z<0xcc>T<0x12><0x6>B<0xef>P@<0xca><0xea>mZ<0xaa><0x92><0xcb>1m\r<0xc9><0xf0><0x9e><0xe4><0xbe><0x80>L;<0xb6><0x7f><0xdd>du<0xc7><0xbf><0xba><0x9e>#7<0xcd><0x18><0xc2><0x82><0xf2><0x95>8<0xf7><0xf7>4+<0x85><0x14><0x8c><0x8e><0x3><0x8a>E<0xd6><0x1d><0x8d><0xe9>e<0x99><0x9e><0x95><0xd8>E<0x9e><0xe6>\n<0xa4><0xf8><0xd3><0x1d>U<0xbc><0xdb><0x1c><0xab><0xdf>@<0x9a><0xff><0x1d>p-<0xec><0xa6>"0<0xc7>I-<0x85><0x96><0xb8><0x8d>0`-%<0xc2><0xcb>FJZ\r\@8<0x1e><0xb4><0xa0><0xbf><0xbb><0xa4><0xd0><0x17><0xbb>=~$<0xc5>2Tlj<0x96><0xa6>c<0xf9><0xd9>S<0xfe>V<0x3><0x99><0xb1>\f<0x82><0x88>a`}g'<0x12>}<0x19><0x89><0xee>-<0xdc><0xeb><0xf6>I<0xa1><0xf0>8<0x3><0xae><0xd3>'<0xbd><0x86>_oy<0xc3><0xe1><0xa2><0xd3>y<0x87><0xde><0x9d><0xd1>r<0x8d><0x7f>:m<0xd8><0xae><0xf3><0xeb><0x7f>9|*hs<0xc2>zcw<0xda><0xa5>'C>'<0xc1><0xc0>\bl<0x82>kZ8<0xbf><0xb9><0xa1><0xa4><0x91>i<0xaa><0x87>H13\a<0xb2><0x14><0xd5><0xc1><0xcc><0xc4><0x92><0xf3><0x12><0xd0>\r<0x88>k<0x6><0x8a>Y<0xba><0xf1><0x16><0xb6>Az<0x2><0x92>4w<0xf9><0xc8><0xd0><0xb0>%K<0xb4><qG<0x9f>I<0xe9>6h<0xf><0xa1><0xf7>K<0xe6><0xf>|<0xec>@<0xd4><0xce>}<0xf9>\a<0xba><0xf0>Q<0x9f>
c368: RPGXP MOVE_ROUTE (52 bytes)
| 0<0><0><0><0x4>\b[<0x6>o:<0x15>RPG::MoveCommand\a:<0x10>@parameters[<0>:\n@codei<0x6>
c344: VX Ace MAP (2383 bytes)
| K\t<0><0><0x4>\b[\ao:\rRPG::Map<0x1d>:<0x13>@parallax_nameI"<0><0x6>:<0x6>ET:\f@heighti<0x12>:\f@events{<0>:<0x11>@parallax_sxi<0>:\t@bgmo:\rRPG::BGM\b:\n@nameI"<0><0x6>;\aT:\f@volumeii:\v@pitchii:<0x10>@tileset_idi<0x6>:<0x14>@encounter_stepi#:\v@widthi<0x16>:\n@datau:\nTable<0x2><0xfc><0x6><0x3><0><0><0><0x11><0><0><0>\r<0><0><0><0x4><0><0><0>t<0x3><0><0><0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0>\b<0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0>:\t@bgso:\rRPG::BGS\b;\rI"<0><0x6>;\aT;<0xe>iU;<0xf>ii:<0x15>@parallax_loop_yF:<0x12>@autoplay_bgmF:<0x14>@encounter_list[<0>:<0x12>@autoplay_bgsF:<0x13>@parallax_showF:<0x11>@scroll_typei<0>:<0x15>@parallax_loop_xF:<0x15>@disable_dashingF:<0x11>@parallax_syi<0>:<0x12>@display_nameI"<0><0x6>;\aT:<0x18>@specify_battlebackF:\n@noteI"<0><0x6>;\aT:<0x16>@battleback1_nameI"<0><0x6>;\aT:<0x16>@battleback2_nameI"<0><0x6>;\aTo:<0x11>RPG::MapInfo\v:<0xe>@scroll_xi<0x2><0x10><0x1>;\rI"\vMAP001<0x6>;\aT:<0xe>@expandedF:\v@orderi<0x6>:<0xe>@scroll_yi<0x1><0xd0>:<0xf>@parent_idi<0>
c347: VX Ace FEATURE (66 bytes)
| ><0><0><0><0x4>\b[<0x6>o:\eRPG::BaseItem::Feature\b:\n@codei<0x10>:\r@data_idi<0x6>:\v@valuef<0x6>1
c348: VX Ace ACTOR (453 bytes)
| <0xc1><0x1><0><0><0x4>\b[<0x6>o:<0xf>RPG::Actor<0x13>:\n@nameI"<0xe><0xe8><0x89><0xbe><0xe9><0x87><0x8c><0xe5><0x85><0x8b><0x6>:<0x6>ET:<0x10>@face_indexi<0>:<0x15>@character_indexi<0>:<0x13>@initial_leveli<0x6>:<0xf>@face_nameI"\vActor4<0x6>;\aT:<0xe>@class_idi<0x6>:<0x14>@character_nameI"\vActor4<0x6>;\aT:\b@idi<0x6>:<0xe>@features[<0x6>o:\eRPG::BaseItem::Feature\b:\n@codei<0x10>:\r@data_idi<0x6>:\v@valuef<0x6>1:\n@note"<0>:\f@equips[\ni<0x6>i3i<0>i<0x6>i<0>:<0xe>@nicknameI"<0x11><0xe9><0x93><0xb6><0xe4><0xb9><0x8b><0xe6><0xad><0xbb><0xe7><0xa5><0x9e><0x6>;\aT:<0x11>@descriptionI"v<0xe5><0x8e><0x86><0xe7><0xbb><0x8f><0xe6><0x95><0xb0><0xe6><0xac><0xa1><0xe6><0x88><0x98><0xe5><0x9c><0xba><0xe6><0xb4><0x97><0xe7><0xa4><0xbc><0xe7><0x9a><0x84><0xe9><0x9b><0x87><0xe4><0xbd><0xa3><0xe5><0x85><0xb5><0xe3><0x80><0x82><0xe8><0x99><0xbd><0xe7><0x84><0xb6><0xe5><0xb9><0xb3><0xe6><0x97><0xb6><0xe5><0xbe><0x88><0xe6><0xb8><0xa9><0xe5><0x92><0x8c><0xef><0xbc><0x8c>\r\n<0xe4><0xbd><0x86><0xe6><0x98><0xaf><0xe4><0xb8><0x80><0xe8><0xbf><0x9b><0xe5><0x85><0xa5><0xe6><0x88><0x98><0xe6><0x96><0x97><0xe5><0xb0><0xb1><0xe4><0xbc><0x9a><0xe5><0x8c><0x96><0xe8><0xba><0xab><0xe4><0xb8><0xba><0xe7><0x8b><0x82><0xe6><0x88><0x98><0xe5><0xa3><0xab><0xe3><0x80><0x82><0x6>;\aT:<0xf>@max_levelih
c349: VX Ace LEARNING (70 bytes)
| B<0><0><0><0x4>\b[<0x6>o:<0x19>RPG::Class::Learning\b:\v@leveli\n:<0xe>@skill_idiU:\n@noteI"<0><0x6>:<0x6>ET
c34a: VX Ace CLASS (2215 bytes)
| <0xa3>\b<0><0><0x4>\b[<0x6>o:<0xf>RPG::Class<0xe>:\n@nameI"\v<0xe6><0x88><0x98><0xe5><0xa3><0xab><0x6>:<0x6>ET:<0xf>@learnings[\no:<0x19>RPG::Class::Learning\b:\v@leveli\n:<0xe>@skill_idiU:\n@noteI"<0><0x6>;\aTo;\t\b;\ni<0xf>;\viV;\fI"<0><0x6>;\aTo;\t\b;\ni<0x14>;\viW;\fI"<0><0x6>;\aTo;\t\b;\ni<0x19>;\viX;\fI"<0><0x6>;\aTo;\t\b;\ni<0x1e>;\viY;\fI"<0><0x6>;\aT:\b@idi<0x6>:<0xe>@features[<0x10>o:\eRPG::BaseItem::Feature\b:\n@codei<0x1c>:\r@data_idi<0>:\v@valuei<0x6>o;<0xf>\b;<0x10>i\e;<0x11>i<0>;<0x12>f\e0.94999999999999996<0>ffo;<0xf>\b;<0x10>i\e;<0x11>i<0x6>;<0x12>f<0x1c>0.050000000000000003<0><0x99><0x9a>o;<0xf>\b;<0x10>i\e;<0x11>i\a;<0x12>f<0x1c>0.040000000000000001<0><0x14>{o;<0xf>\b;<0x10>i.;<0x11>i<0x6>;<0x12>i<0>o;<0xf>\b;<0x10>i8;<0x11>i<0x6>;<0x12>f<0x6>0o;<0xf>\b;<0x10>i9;<0x11>i<0x6>;<0x12>i<0>o;<0xf>\b;<0x10>i9;<0x11>i\b;<0x12>f<0x6>0o;<0xf>\b;<0x10>i9;<0x11>i\t;<0x12>f<0x6>0o;<0xf>\b;<0x10>i9;<0x11>i\n;<0x12>f<0x6>0o;<0xf>\b;<0x10>i9;<0x11>i\v;<0x12>f<0x6>0;\f"<0>:\f@paramsu:\nTable<0x2>T<0x6><0x2><0><0><0>\b<0><0><0>d<0><0><0><0x1><0><0><0> <0x3><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0>2<0x2>)<0><0x14><0><0x10><0>\n<0>\n<0><0x14><0><0xf><0>w<0x2>2<0><0x17><0><0x12><0>\f<0>\f<0><0x17><0><0x12><0><0xbc><0x2>:<0><0x19><0><0x14><0>\r<0>\r<0><0x1a><0><0x14><0><0x1><0x3>B<0>\e<0><0x15><0><0xe><0><0xe><0><0x1c><0><0x16><0>F<0x3>J<0><0x1d><0><0x17><0><0xf><0><0xf><0><0x1f><0><0x18><0><0x8b><0x3>R<0><0x1f><0><0x19><0><0x10><0><0x10><0>"<0>\e<0><0xd0><0x3>Z<0>!<0><0x1a><0><0x11><0><0x11><0>$<0><0x1d><0><0x15><0x4>c<0>#<0><0x1c><0><0x12><0><0x12><0>'<0><0x1f><0>Z<0x4>k<0>%<0><0x1d><0><0x13><0><0x13><0>)<0>!<0><0x9f><0x4>s<0>'<0><0x1f><0><0x14><0><0x14><0>,<0>$<0><0xe4><0x4>{<0>)<0>!<0><0x15><0><0x15><0>/<0>&<0>)<0x5><0x83><0>+<0>"<0><0x16><0><0x16><0>1<0>(<0>n<0x5><0x8b><0>-<0>$<0><0x17><0><0x17><0>4<0>*<0><0xb3><0x5><0x94><0>/<0>%<0><0x18><0><0x18><0>7<0>-<0><0xf8><0x5><0x9c><0>1<0>'<0><0x19><0><0x19><0>9<0>/<0>=<0x6><0xa4><0>3<0>)<0><0x1a><0><0x1a><0><<0>1<0><0x82><0x6><0xac><0>5<0>*<0>\e<0>\e<0>><0>3<0><0xc7><0x6><0xb4><0>7<0>,<0><0x1d><0><0x1c><0>A<0>5<0>\f\a<0xbc><0>9<0>.<0><0x1e><0><0x1d><0>D<0>8<0>Q\a<0xc5><0>;<0>/<0><0x1f><0><0x1e><0>F<0>:<0><0x95>\a<0xcd><0>=<0>1<0> <0><0x1f><0>I<0><<0><0xda>\a<0xd5><0>?<0>2<0>!<0> <0>L<0>><0><0x1f>\b<0xdd><0>A<0>4<0>"<0>!<0>N<0>A<0>d\b<0xe5><0>C<0>6<0>#<0>"<0>Q<0>C<0><0xa9>\b<0xed><0>E<0>7<0>$<0>#<0>S<0>E<0><0xee>\b<0xf6><0>G<0>9<0>%<0>$<0>V<0>G<0>3\t<0xfe><0>I<0>:<0>&<0>%<0>Y<0>J<0>x\t<0x6><0x1>K<0><<0>'<0>&<0>[<0>L<0><0xbd>\t<0xe><0x1>M<0>><0>(<0>'<0>^<0>N<0><0x2>\n<0x16><0x1>O<0>?<0>)<0>(<0>a<0>P<0>G\n<0x1e><0x1>Q<0>A<0>*<0>)<0>c<0>S<0><0x8c>\n'<0x1>S<0>B<0>+<0>*<0>f<0>U<0><0xd1>\n/<0x1>U<0>D<0>,<0>+<0>h<0>W<0><0x16>\v7<0x1>W<0>F<0>.<0>-<0>k<0>Y<0>[\v?<0x1>Y<0>G<0>/<0>.<0>n<0>[<0><0xa0>\vG<0x1>[<0>I<0>0<0>/<0>p<0>^<0><0xe5>\vO<0x1>]<0>K<0>1<0>0<0>s<0>`<0>*\fX<0x1>_<0>L<0>2<0>1<0>v<0>b<0>o\f`<0x1>a<0>N<0>3<0>2<0>x<0>d<0><0xb4>\fh<0x1>c<0>O<0>4<0>3<0>{<0>g<0><0xf8>\fp<0x1>e<0>Q<0>5<0>4<0>}<0>i<0>=\rx<0x1>g<0>S<0>6<0>5<0><0x80><0>k<0><0x82>\r<0x80><0x1>i<0>T<0>7<0>6<0><0x83><0>m<0><0xc7>\r<0x89><0x1>k<0>V<0>8<0>7<0><0x85><0>p<0>\f<0xe><0x91><0x1>m<0>W<0>9<0>8<0><0x88><0>r<0>Q<0xe><0x99><0x1>o<0>Y<0>:<0>9<0><0x8b><0>t<0><0x96><0xe><0xa1><0x1>q<0>[<0>;<0>:<0><0x8d><0>v<0><0xdb><0xe><0xa9><0x1>s<0>\<0><<0>;<0><0x90><0>y<0> <0xf><0xb1><0x1>u<0>^<0>=<0><<0><0x92><0>{<0>e<0xf><0xb9><0x1>w<0>_<0>><0>=<0><0x95><0>}<0><0xaa><0xf><0xc2><0x1>y<0>a<0>@<0>><0><0x98><0><0x7f><0><0xef><0xf><0xca><0x1>{<0>c<0>A<0>?<0><0x9a><0><0x81><0>4<0x10><0xd2><0x1>}<0>d<0>B<0>@<0><0x9d><0><0x84><0>y<0x10><0xda><0x1><0x7f><0>f<0>C<0>A<0><0x9f><0><0x86><0><0xbe><0x10><0xe2><0x1><0x81><0>h<0>D<0>B<0><0xa2><0><0x88><0><0x3><0x11><0xea><0x1><0x83><0>i<0>E<0>C<0><0xa5><0><0x8a><0>H<0x11><0xf3><0x1><0x85><0>k<0>F<0>D<0><0xa7><0><0x8d><0><0x8d><0x11><0xfb><0x1><0x87><0>l<0>G<0>E<0><0xaa><0><0x8f><0><0xd2><0x11><0x3><0x2><0x89><0>n<0>H<0>F<0><0xad><0><0x91><0><0x16><0x12>\v<0x2><0x8b><0>p<0>I<0>G<0><0xaf><0><0x93><0>[<0x12><0x13><0x2><0x8d><0>q<0>J<0>H<0><0xb2><0><0x96><0><0xa0><0x12>\e<0x2><0x8f><0>s<0>K<0>I<0><0xb4><0><0x98><0><0xe5><0x12>$<0x2><0x91><0>t<0>L<0>J<0><0xb7><0><0x9a><0>*<0x13>,<0x2><0x93><0>v<0>M<0>K<0><0xba><0><0x9c><0>o<0x13>4<0x2><0x95><0>x<0>N<0>L<0><0xbc><0><0x9f><0><0xb4><0x13><<0x2><0x97><0>y<0>O<0>M<0><0xbf><0><0xa1><0><0xf9><0x13>D<0x2><0x99><0>{<0>Q<0>O<0><0xc2><0><0xa3><0>><0x14>L<0x2><0x9b><0>}<0>R<0>P<0><0xc4><0><0xa5><0><0x83><0x14>U<0x2><0x9d><0>~<0>S<0>Q<0><0xc7><0><0xa7><0><0xc8><0x14>]<0x2><0x9f><0><0x80><0>T<0>R<0><0xc9><0><0xaa><0>\r<0x15>e<0x2><0xa1><0><0x81><0>U<0>S<0><0xcc><0><0xac><0>R<0x15>m<0x2><0xa3><0><0x83><0>V<0>T<0><0xcf><0><0xae><0><0x97><0x15>u<0x2><0xa5><0><0x85><0>W<0>U<0><0xd1><0><0xb0><0><0xdc><0x15>}<0x2><0xa7><0><0x86><0>X<0>V<0><0xd4><0><0xb3><0>!<0x16><0x86><0x2><0xa9><0><0x88><0>Y<0>W<0><0xd7><0><0xb5><0>f<0x16><0x8e><0x2><0xab><0><0x89><0>Z<0>X<0><0xd9><0><0xb7><0><0xab><0x16><0x96><0x2><0xad><0><0x8b><0>[<0>Y<0><0xdc><0><0xb9><0><0xf0><0x16><0x9e><0x2><0xaf><0><0x8d><0>\<0>Z<0><0xde><0><0xbc><0>5<0x17><0xa6><0x2><0xb1><0><0x8e><0>]<0>[<0><0xe1><0><0xbe><0>y<0x17><0xae><0x2><0xb3><0><0x90><0>^<0>\<0><0xe4><0><0xc0><0><0xbe><0x17><0xb7><0x2><0xb5><0><0x91><0>_<0>]<0><0xe6><0><0xc2><0><0x3><0x18><0xbf><0x2><0xb7><0><0x93><0>`<0>^<0><0xe9><0><0xc5><0>H<0x18><0xc7><0x2><0xb9><0><0x95><0>b<0>_<0><0xec><0><0xc7><0><0x8d><0x18><0xcf><0x2><0xbb><0><0x96><0>c<0>`<0><0xee><0><0xc9><0><0xd2><0x18><0xd7><0x2><0xbd><0><0x98><0>d<0>a<0><0xf1><0><0xcb><0><0x17><0x19><0xdf><0x2><0xbf><0><0x9a><0>e<0>b<0><0xf3><0><0xcd><0>\<0x19><0xe8><0x2><0xc1><0><0x9b><0>f<0>c<0><0xf6><0><0xd0><0><0xa1><0x19><0xf0><0x2><0xc3><0><0x9d><0>g<0>d<0><0xf9><0><0xd2><0><0xe6><0x19><0xf8><0x2><0xc5><0><0x9e><0>h<0>e<0><0xfb><0><0xd4><0>+<0x1a><0><0x3><0xc7><0><0xa0><0>i<0>f<0><0xfe><0><0xd6><0>p<0x1a>\b<0x3><0xc9><0><0xa2><0>j<0>g<0><0x1><0x1><0xd9><0><0xb5><0x1a><0x10><0x3><0xcb><0><0xa3><0>k<0>h<0><0x3><0x1><0xdb><0><0xfa><0x1a><0x19><0x3><0xcd><0><0xa5><0>l<0>i<0><0x6><0x1><0xdd><0>?\e!<0x3><0xcf><0><0xa6><0>m<0>j<0>\b<0x1><0xdf><0><0x84>\e)<0x3><0xd1><0><0xa8><0>n<0>k<0>\v<0x1><0xe2><0><0xc9>\e1<0x3><0xd3><0><0xaa><0>o<0>l<0><0xe><0x1><0xe4><0><0xe><0x1c>9<0x3><0xd5><0><0xab><0>p<0>m<0><0x10><0x1><0xe6><0>S<0x1c>A<0x3><0xd7><0><0xad><0>q<0>n<0><0x13><0x1><0xe8><0><0x97><0x1c>I<0x3><0xd9><0><0xae><0>r<0>o<0><0x15><0x1><0xea><0>:<0x10>@exp_params[\ti#i<0x19>i#i#:<0x10>@icon_indexi<0>:<0x11>@descriptionI"<0><0x6>;\aT
c34c: VX Ace EFFECT (80 bytes)
| L<0><0><0><0x4>\b[<0x6>o:<0x1c>RPG::UsableItem::Effect\t:\n@codei<0x1a>:\r@data_idi<0>:\f@value1f<0x6>1:\f@value2f<0x6>0
c34d: VX Ace SKILL (632 bytes)
| t<0x2><0><0><0x4>\b[<0x6>o:<0xf>RPG::Skill<0x1c>:<0xe>@message2"<0>:<0x11>@descriptionI" <0xe7><0xbb><0x99><0xe4><0xba><0x88><0xe5><0x8d><0x95><0xe4><0xb8><0xaa><0xe6><0x95><0x8c><0xe4><0xba><0xba><0xe4><0xbc><0xa4><0xe5><0xae><0xb3><0xe3><0x80><0x82><0x6>:<0x6>ET:\n@nameI"\v<0xe6><0x94><0xbb><0xe5><0x87><0xbb><0x6>;\bT:<0xe>@occasioni<0x6>:<0x10>@icon_indexiy:<0xe>@message1I"<0x11><0xe7><0x9a><0x84><0xe6><0x94><0xbb><0xe5><0x87><0xbb><0xef><0xbc><0x81><0x6>;\bT:\v@scopei<0x6>:<0x12>@animation_idi<0xfa>:\n@noteI"<1<0xe5><0x8f><0xb7><0xe6><0x8a><0x80><0xe8><0x83><0xbd><0xe7><0x94><0xa8><0xe4><0xba><0x8e><0xe6><0x8c><0x87><0xe4><0xbb><0xa4><0xe9><0x80><0x89><0xe6><0x8b><0xa9><0xe4><0xb8><0xad><0xe7><0x9a><0x84><0xe2><0x80><0x9c><0xe6><0x94><0xbb><0xe5><0x87><0xbb><0xe2><0x80><0x9d><0xe6><0x8c><0x87><0xe4><0xbb><0xa4><0xe3><0x80><0x82><0x6>;\bT:\r@mp_costi<0>:\v@speedi<0>:\b@idi<0x6>:<0xe>@features[<0>:\r@effects[<0x6>o:<0x1c>RPG::UsableItem::Effect\t:\n@codei<0x1a>:\r@data_idi<0>:\f@value1f<0x6>1:\f@value2f<0x6>0:\f@damageo:<0x1c>RPG::UsableItem::Damage\n:\n@typei<0x6>:<0x10>@element_idi<0xfa>:\r@formulaI"<0x1a>a.atk * 4 - b.def * 2<0x6>;\bT:<0xe>@variancei<0x19>:<0xe>@criticalT:<0x12>@success_rateii:<0xe>@hit_typei<0x6>:<0xe>@stype_idi<0>:\r@tp_costi<0>:<0x18>@required_wtype_id1i<0>:<0x18>@required_wtype_id2i<0>:\r@repeatsi<0x6>:\r@tp_gaini\n
c34e: VX Ace ITEM (458 bytes)
| <0xc6><0x1><0><0><0x4>\b[<0x6>o:<0xe>RPG::Item<0x18>:<0x11>@descriptionI"<0x16><0xe6><0x81><0xa2><0xe5><0xa4><0x8d>500<0xe7><0x82><0xb9>HP<0xe3><0x80><0x82><0x6>:<0x6>ET:\n@nameI"<0xe><0xe6><0x81><0xa2><0xe5><0xa4><0x8d><0xe5><0x89><0x82><0x6>;\aT:<0x10>@consumableT:<0xe>@occasioni<0>:<0x10>@icon_indexi<0x1><0xc0>:\v@pricei7:\v@scopei\f:<0x12>@animation_idi*:\n@note"<0>:\v@speedi<0>:\b@idi<0x6>:<0xe>@features[<0>:\r@effects[<0x6>o:<0x1c>RPG::UsableItem::Effect\t:\n@codei<0x10>:\r@data_idi<0>:\f@value1f<0x6>0:\f@value2f\b500:\f@damageo:<0x1c>RPG::UsableItem::Damage\n:\n@typei<0>:<0x10>@element_idi<0>:\r@formulaI"<0x6>0<0x6>;\aT:<0xe>@variancei<0x19>:<0xe>@criticalF:<0x12>@success_rateii:<0xe>@hit_typei<0>:<0xe>@itype_idi<0x6>:\r@repeatsi<0x6>:\r@tp_gaini<0>
c34f: VX Ace WEAPON (331 bytes)
| G<0x1><0><0><0x4>\b[<0x6>o:<0x10>RPG::Weapon<0x10>:<0x11>@descriptionI" <0xe9><0x87><0x87><0xe4><0xbc><0x90><0xe7><0x94><0xa8><0xe7><0x9a><0x84><0xe5><0xb0><0x8f><0xe5><0x9e><0x8b><0xe6><0x96><0xa7><0xe5><0xa4><0xb4><0xe3><0x80><0x82><0x6>:<0x6>ET:\n@nameI"\v<0xe6><0x89><0x8b><0xe6><0x96><0xa7><0x6>;\aT:<0x10>@icon_indexi<0x1><0x90>:\v@priceii:<0x12>@animation_idi\f:\n@note"<0>:\b@idi<0x6>:<0xe>@features[\bo:\eRPG::BaseItem::Feature\b:\n@codei$:\r@data_idi<0x6>:\v@valuei<0>o;<0xf>\b;<0x10>i\e;<0x11>i<0>;<0x12>f<0x1c>-0.10000000000000001<0><0x99><0x9a>o;<0xf>\b;<0x10>i&;<0x11>i<0>;<0x12>f\a-5:\f@params[\ri<0>i<0>i<0x14>i<0>i<0>i<0>i<0>i<0>:<0xe>@etype_idi<0>:<0xe>@wtype_idi<0x6>
c350: VX Ace ARMOR (262 bytes)
| <0x2><0x1><0><0><0x4>\b[<0x6>o:<0xf>RPG::Armor<0xf>:<0x11>@descriptionI"&<0xe9><0x80><0x8f><0xe6><0xb0><0x94><0xe6><0x80><0xa7><0xe5><0xbe><0x88><0xe5><0xa5><0xbd><0xe7><0x9a><0x84><0xe5><0xb8><0x83><0xe5><0x88><0xb6><0xe8><0xa1><0xa3><0xe6><0x9c><0x8d><0xe3><0x80><0x82><0x6>:<0x6>ET:\n@nameI"\v<0xe5><0xb8><0x83><0xe8><0xa1><0xa3><0x6>;\aT:<0x10>@icon_indexi<0x1><0xa8>:\v@priceii:\n@note"<0>:\b@idi<0x6>:<0xe>@features[<0x6>o:\eRPG::BaseItem::Feature\b:\n@codei\e:\r@data_idi<0x6>:\v@valuei<0>:\f@params[\ri<0>i<0>i<0>i<0x6>i<0>i<0>i<0>i<0>:<0xe>@etype_idi\b:<0xe>@atype_idi<0x6>
c351: VX Ace ENEMY_ACTION (115 bytes)
| o<0><0><0><0x4>\b[<0x6>o:<0x17>RPG::Enemy::Action\n:<0x14>@condition_typei<0>:\f@ratingi\n:<0xe>@skill_idi<0x6>:<0x16>@condition_param2i<0>:<0x16>@condition_param1i<0>
c352: VX Ace ENEMY (548 bytes)
| <0x2><0><0><0x4>\b[<0x6>o:<0xf>RPG::Enemy<0x12>:\n@nameI"<0xe><0xe5><0x8f><0xb2><0xe8><0x8e><0xb1><0xe5><0xa7><0x86><0x6>:<0x6>ET:\n@goldi\n:<0x11>@battler_huei<0>:\t@expi\b:\t@hitid:<0x12>@battler_nameI"\nSlime<0x6>;\aT:\r@actions[<0x6>o:<0x17>RPG::Enemy::Action\n:<0x14>@condition_typei<0>:\f@ratingi\n:<0xe>@skill_idi<0x6>:<0x16>@condition_param2i<0>:<0x16>@condition_param1i<0>:\n@note"<0>:\b@idi<0x6>:\t@evai\n:<0xe>@features[\to:\eRPG::BaseItem::Feature\b:\n@codei\e:\r@data_idi<0>:\v@valuef\e0.94999999999999996<0>ffo;<0x18>\b;<0x19>i\e;<0x1a>i<0x6>;\ef<0x1c>0.050000000000000003<0><0x99><0x9a>o;<0x18>\b;<0x19>i$;<0x1a>i<0x6>;\eiio;<0x18>\b;<0x19>i<0x10>;<0x1a>i\t;\ef<0x6>2:\f@params[\riii<0>i<0x11>i\ti\ri\ri<0xf>i<0xf>:<0x10>@drop_items[\bo:<0x19>RPG::Enemy::DropItem\b:<0x11>@denominatori<0x6>:\n@kindi<0>;<0x1a>i<0x6>o;<0x1e>\b;<0x1f>i<0x6>; i<0>;<0x1a>i<0x6>o;<0x1e>\b;<0x1f>i<0x6>; i<0>;<0x1a>i<0x6>
c353: VX Ace TROOP (463 bytes)
| <0xcb><0x1><0><0><0x4>\b[<0x6>o:<0xf>RPG::Troop\t:\r@members[\ao:<0x17>RPG::Troop::Member\t:\a@yi<0x2> <0x1>:\f@hiddenF:\a@xi<0x1><0xc4>:<0xe>@enemy_idi<0x6>o;\a\t;\bi<0x2> <0x1>;\tF;\ni<0x2>\<0x1>;\vi<0x6>:\n@nameI"<0x10><0xe5><0x8f><0xb2><0xe8><0x8e><0xb1><0xe5><0xa7><0x86>*2<0x6>:<0x6>ET:\v@pages[<0x6>o:<0x15>RPG::Troop::Page\b:\n@list[<0x6>o:<0x16>RPG::EventCommand\b:\f@indenti<0>:\n@codei<0>:<0x10>@parameters[<0>:\n@spani<0>:<0xf>@conditiono: RPG::Troop::Page::Condition<0x11>:<0x10>@turn_validF:<0xe>@actor_hpi7:\f@turn_ai<0>:<0x11>@turn_endingF:<0xe>@enemy_hpi7:<0x12>@switch_validF:<0x11>@enemy_indexi<0>:<0x11>@actor_validF:<0xe>@actor_idi<0x6>:<0x11>@enemy_validF:<0xf>@switch_idi<0x6>:\f@turn_bi<0>:\b@idi<0x6>
c355: VX Ace BATTLE_EVENT (325 bytes)
| A<0x1><0><0><0x4>\bo:<0x15>RPG::Troop::Page\b:\n@list[\ao:<0x16>RPG::EventCommand\b:\f@indenti<0>:\n@codeix:<0x10>@parameters[<0>o;\a\b;\bi<0>;\ti<0>;\n[<0>:\n@spani<0>:<0xf>@conditiono: RPG::Troop::Page::Condition<0x11>:<0x10>@turn_validF:<0xe>@actor_hpi7:\f@turn_ai<0>:<0x11>@turn_endingF:<0xe>@enemy_hpi7:<0x12>@switch_validF:<0x11>@enemy_indexi<0>:<0x11>@actor_validF:<0xe>@actor_idi<0x6>:<0x11>@enemy_validF:<0xf>@switch_idi<0x6>:\f@turn_bi<0>
c356: VX Ace EVENT_COMMAND (64 bytes)
| <<0><0><0><0x4>\b[<0x6>o:<0x16>RPG::EventCommand\b:\f@indenti<0>:\n@codeix:<0x10>@parameters[<0>
c357: VX Ace STATE (550 bytes)
| "<0x2><0><0><0x4>\b[<0x6>o:<0xf>RPG::State<0x1a>:<0xe>@message2I"<0x14><0xe8><0xa2><0xab><0xe6><0x89><0x93><0xe5><0x80><0x92><0xe4><0xba><0x86><0xef><0xbc><0x81><0x6>:<0x6>ET:\n@nameI"<0x11><0xe6><0x97><0xa0><0xe6><0xb3><0x95><0xe6><0x88><0x98><0xe6><0x96><0x97><0x6>;\aT:<0xe>@priorityii:<0x10>@icon_indexi<0x16>:<0xe>@message1I"<0x11><0xe5><0x80><0x92><0xe4><0xb8><0x8b><0xe4><0xba><0x86><0xef><0xbc><0x81><0x6>;\aT:<0xe>@message4I"<0x17><0xe5><0x8f><0x88><0xe7><0xab><0x99><0xe8><0xb5><0xb7><0xe6><0x9d><0xa5><0xe4><0xba><0x86><0xef><0xbc><0x81><0x6>;\aT:<0x11>@restrictioni\t:<0x17>@release_by_damageF:<0xe>@message3"<0>:\n@noteI"61<0xe5><0x8f><0xb7><0xe7><0x8a><0xb6><0xe6><0x80><0x81><0xe4><0xbc><0x9a><0xe5><0x9c><0xa8><0xe4><0xbd><0x93><0xe5><0x8a><0x9b><0xe5><0x80><0xbc><0xe4><0xb8><0xba><0xe9><0x9b><0xb6><0xe6><0x97><0xb6><0xe8><0x87><0xaa><0xe5><0x8a><0xa8><0xe9><0x99><0x84><0xe5><0x8a><0xa0><0xe3><0x80><0x82><0x6>;\aT:\b@idi<0x6>:<0xe>@features[<0x6>o:\eRPG::BaseItem::Feature\b:\n@codei<0x1c>:\r@data_idi<0xe>:\v@valuef<0x6>0:<0x19>@auto_removal_timingi<0>:<0xf>@min_turnsi<0x6>:<0xf>@max_turnsi<0x6>:<0x16>@chance_by_damageii:<0x15>@steps_to_removeii:<0x17>@remove_by_walkingF:<0x1a>@remove_at_battle_endF:<0x16>@remove_by_damageF:\e@remove_by_restrictionF
c358: VX Ace ANIMATION (1167 bytes)
| <0x8b><0x4><0><0><0x4>\b[<0x6>o:<0x13>RPG::Animation<0xf>:<0x14>@animation2_huei<0>:<0xe>@positioni<0x6>:\n@nameI"<0x12><0xe6><0xa0><0xbc><0xe6><0x96><0x97>/<0xe7><0x89><0xa9><0xe7><0x90><0x86><0x6>:<0x6>ET:<0x15>@animation2_name"<0>:\f@frames[<0xf>o:<0x1a>RPG::Animation::Frame\a:<0xf>@cell_datau:\nTable)<0x2><0><0><0><0x1><0><0><0>\b<0><0><0><0x1><0><0><0>\b<0><0><0><0><0><0><0><0x18><0>d<0><0><0><0><0><0xff><0><0x1><0>:<0xe>@cell_maxi<0x6>o;\f\a;\ru;<0xe>)<0x2><0><0><0><0x1><0><0><0>\b<0><0><0><0x1><0><0><0>\b<0><0><0><0x1><0><0><0><0x18><0>d<0><0><0><0><0><0xff><0><0x1><0>;<0xf>i<0x6>o;\f\a;\ru;<0xe>9<0x2><0><0><0><0x2><0><0><0>\b<0><0><0><0x1><0><0><0><0x10><0><0><0><0x2><0><0><0><0><0><0xd8><0xff><0x18><0><0xe8><0xff>d<0>d<0><0><0><0><0><0><0><0><0><0xff><0><0xff><0><0x1><0><0x1><0>;<0xf>i\ao;\f\a;\ru;<0xe>9<0x2><0><0><0><0x2><0><0><0>\b<0><0><0><0x1><0><0><0><0x10><0><0><0><0x2><0><0x1><0><0><0><0xd8><0xff><0x18><0><0xe8><0xff>n<0>d<0><0><0><0><0><0><0><0><0><0xb4><0><0xff><0><0x1><0><0x1><0>;<0xf>i\ao;\f\a;\ru;<0xe>9<0x2><0><0><0><0x2><0><0><0>\b<0><0><0><0x1><0><0><0><0x10><0><0><0><0x2><0><0x2><0><0><0><0xd8><0xff><0x18><0><0xe8><0xff>s<0>d<0><0><0><0><0><0><0><0><0>d<0><0xff><0><0x1><0><0x1><0>;<0xf>i\ao;\f\a;\ru;<0xe>9<0x2><0><0><0><0x2><0><0><0>\b<0><0><0><0x1><0><0><0><0x10><0><0><0><0x2><0><0><0><0xd8><0xff> <0><0xe8><0xff>\b<0>n<0>d<0><0><0><0><0><0><0><0><0><0xb4><0><0xff><0><0x1><0><0x1><0>;<0xf>i\ao;\f\a;\ru;<0xe>9<0x2><0><0><0><0x2><0><0><0>\b<0><0><0><0x1><0><0><0><0x10><0><0><0><0x2><0><0x1><0><0xd8><0xff> <0><0xe8><0xff>\b<0>s<0>d<0><0><0><0><0><0><0><0><0>d<0><0xff><0><0x1><0><0x1><0>;<0xf>i\ao;\f\a;\ru;<0xe>)<0x2><0><0><0><0x1><0><0><0>\b<0><0><0><0x1><0><0><0>\b<0><0><0><0x2><0> <0>\b<0>d<0><0><0><0><0><0xff><0><0x1><0>;<0xf>i<0x6>o;\f\a;\ru;<0xe>)<0x2><0><0><0><0x1><0><0><0>\b<0><0><0><0x1><0><0><0>\b<0><0><0><0x2><0> <0>\b<0>n<0><0><0><0><0><0xb4><0><0x1><0>;<0xf>i<0x6>o;\f\a;\ru;<0xe>)<0x2><0><0><0><0x1><0><0><0>\b<0><0><0><0x1><0><0><0>\b<0><0><0><0x2><0> <0>\b<0>s<0><0><0><0><0>d<0><0x1><0>;<0xf>i<0x6>:<0x14>@animation1_huei<0>:<0xf>@frame_maxi<0xf>:<0x15>@animation1_nameI"\fAttack1<0x6>;\tT:\r@timings[\bo:\eRPG::Animation::Timing\n:<0x14>@flash_durationi<0x6>:\b@seo:\fRPG::SE\b;\bI"\nBlow3<0x6>;\tT:\v@pitchii:\f@volumeid:<0x11>@flash_coloru:\nColor%<0><0><0><0><0><0xe0>o@<0><0><0><0><0><0xe0>o@<0><0><0><0><0><0xe0>o@<0><0><0><0><0><0xa0>k@:\v@framei<0>:<0x11>@flash_scopei<0x6>o;<0x14>\n;<0x15>i<0x6>;<0x16>o;<0x17>\b;\bI"\nBlow1<0x6>;\tT;<0x18>ii;<0x19>ii;<0x1a>u;\e%<0><0><0><0><0><0xe0>o@<0><0><0><0><0><0xe0>o@<0><0><0><0><0><0xe0>o@<0><0><0><0><0><0xa0>k@;<0x1c>i\a;<0x1d>i<0x6>o;<0x14>\n;<0x15>i<0x6>;<0x16>o;<0x17>\b;\bI"\nBlow3<0x6>;\tT;<0x18>ii;<0x19>ii;<0x1a>u;\e%<0><0><0><0><0><0xe0>o@<0><0><0><0><0><0xe0>o@<0><0><0><0><0><0xe0>o@<0><0><0><0><0><0xa0>k@;<0x1c>i\n;<0x1d>i<0x6>:\b@idi<0x6>
c359: VX Ace ANIME_TIMING (189 bytes)
| <0xb9><0><0><0><0x4>\bo:\eRPG::Animation::Timing\n:<0x14>@flash_durationi<0x6>:\b@seo:\fRPG::SE\b:\n@nameI"\nBlow3<0x6>:<0x6>ET:\v@pitchii:\f@volumeid:<0x11>@flash_coloru:\nColor%<0><0><0><0><0><0xe0>o@<0><0><0><0><0><0xe0>o@<0><0><0><0><0><0xe0>o@<0><0><0><0><0><0xa0>k@:\v@framei<0>:<0x11>@flash_scopei<0x6>
c35a: VX Ace ANIME_FRAME (101 bytes)
| a<0><0><0><0x4>\bo:<0x1a>RPG::Animation::Frame\a:<0xf>@cell_datau:\nTable)<0x2><0><0><0><0x1><0><0><0>\b<0><0><0><0x1><0><0><0>\b<0><0><0><0><0><0><0><0x18><0>d<0><0><0><0><0><0xff><0><0x1><0>:<0xe>@cell_maxi<0x6>
c35b: VX Ace TILESET (16573 bytes)
| <0xb9>@<0><0><0x4>\b[<0x6>o:<0x11>RPG::Tileset\v:\b@idi<0x6>:\n@nameI"<0x11><0xe4><0xb8><0x96><0xe7><0x95><0x8c><0xe5><0x9c><0xb0><0xe5><0x9b><0xbe><0x6>:<0x6>ET:\n@modei<0>:<0x13>@tileset_names[<0xe>I"\rWorld_A1<0x6>;\bTI"\rWorld_A2<0x6>;\bT"<0>"<0>"<0>I"\fWorld_B<0x6>;\bT"<0>"<0>"<0>:\v@flagsu:\nTable<0x2><0x14>@<0x1><0><0><0><0> <0><0><0x1><0><0><0><0x1><0><0><0><0> <0><0><0x10><0><0xf><0x6><0xf><0x6><0xf><0x6><0><0x6><0><0x6><0><0x6><0xf><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0xf><0x6><0xf><0x6><0><0x6><0><0x6><0><0x6><0xf><0x6><0><0x6><0><0x6><0xf><0x6><0><0x6><0><0x6><0xf><0x6><0><0x6><0x10><0x6><0x10><0x6><0x10><0x6><0x10><0x6><0x10><0x6><0x10><0x6><0x10><0x6><0x10><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0x10><0x6><0x10><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0xf><0x6><0xf><0x6><0><0x6><0><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0xf><0x6><0><0x6><0xf><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0xf><0x6><0x10><0x6><0x10><0x6><0x10><0x6><0x10><0x6><0x10><0x6><0x10><0x6><0x10><0x6><0x10><0x6><0x10><0x6><0x10><0x6><0x10><0x6><0x10><0x6><0x10><0x6><0x10><0x6><0x10><0x6><0x10><0x6><0x10><0x6><0x10><0x6><0><0x6><0><0x6><0x10><0x6><0x10><0x6><0x10><0x6><0x10><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0><0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf>\n<0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf>@<0xf><0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf>\b<0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe><0><0xe><0><0xe><0><0xe><0><0xe>@<0xe><0><0xe><0><0xe><0><0xe><0><0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe><0><0xe><0><0xe><0><0xe><0><0xe>@<0xe><0><0xe><0><0xe><0><0xe><0><0xe>@<0xe><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe><0><0xe><0><0xe><0><0xe><0><0xe>@<0xe><0><0xe><0><0xe><0><0xe><0><0xe>@<0xe><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe><0><0xe><0><0xe><0><0xe><0><0xe>@<0xe><0><0xe><0><0xe><0><0xe><0><0xe>@<0xe><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe>@<0xe><0><0xe><0><0xe><0><0xe><0><0xe>@<0xe><0><0xe><0><0xe><0><0xe><0><0xe>@<0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0><0x6><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x2><0xe><0x2><0xe><0x2><0xe><0x2><0xe>\b<0xe>\b<0xe>\b<0xe>\b<0xe><0x4><0xe><0x4><0xe><0x4><0xe><0x4><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x6><0xe>\b<0xe>\n<0xe>\n<0xe>\f<0xe>\f<0xe><0x4><0xe><0x4><0xe><0x2><0xe><0x2><0xe><0xe><0xe>\n<0xe><0x6><0xe>\f<0xe><0xe><0xe><0xf><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x2><0xe><0x2><0xe><0x2><0xe><0x2><0xe>\b<0xe>\b<0xe>\b<0xe>\b<0xe><0x4><0xe><0x4><0xe><0x4><0xe><0x4><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x6><0xe>\b<0xe>\n<0xe>\n<0xe>\f<0xe>\f<0xe><0x4><0xe><0x4><0xe><0x2><0xe><0x2><0xe><0xe><0xe>\n<0xe><0x6><0xe>\f<0xe><0xe><0xe><0xf><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x2><0xe><0x2><0xe><0x2><0xe><0x2><0xe>\b<0xe>\b<0xe>\b<0xe>\b<0xe><0x4><0xe><0x4><0xe><0x4><0xe><0x4><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x6><0xe>\b<0xe>\n<0xe>\n<0xe>\f<0xe>\f<0xe><0x4><0xe><0x4><0xe><0x2><0xe><0x2><0xe><0xe><0xe>\n<0xe><0x6><0xe>\f<0xe><0xe><0xe><0xf><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x2><0xe><0x2><0xe><0x2><0xe><0x2><0xe>\b<0xe>\b<0xe>\b<0xe>\b<0xe><0x4><0xe><0x4><0xe><0x4><0xe><0x4><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x6><0xe>\b<0xe>\n<0xe>\n<0xe>\f<0xe>\f<0xe><0x4><0xe><0x4><0xe><0x2><0xe><0x2><0xe><0xe><0xe>\n<0xe><0x6><0xe>\f<0xe><0xe><0xe><0xf><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x2><0xe><0x2><0xe><0x2><0xe><0x2><0xe>\b<0xe>\b<0xe>\b<0xe>\b<0xe><0x4><0xe><0x4><0xe><0x4><0xe><0x4><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x6><0xe>\b<0xe>\n<0xe>\n<0xe>\f<0xe>\f<0xe><0x4><0xe><0x4><0xe><0x2><0xe><0x2><0xe><0xe><0xe>\n<0xe><0x6><0xe>\f<0xe><0xe><0xe><0xf><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x2><0xe><0x2><0xe><0x2><0xe><0x2><0xe>\b<0xe>\b<0xe>\b<0xe>\b<0xe><0x4><0xe><0x4><0xe><0x4><0xe><0x4><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x6><0xe>\b<0xe>\n<0xe>\n<0xe>\f<0xe>\f<0xe><0x4><0xe><0x4><0xe><0x2><0xe><0x2><0xe><0xe><0xe>\n<0xe><0x6><0xe>\f<0xe><0xe><0xe><0xf><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x2><0xe><0x2><0xe><0x2><0xe><0x2><0xe>\b<0xe>\b<0xe>\b<0xe>\b<0xe><0x4><0xe><0x4><0xe><0x4><0xe><0x4><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x6><0xe>\b<0xe>\n<0xe>\n<0xe>\f<0xe>\f<0xe><0x4><0xe><0x4><0xe><0x2><0xe><0x2><0xe><0xe><0xe>\n<0xe><0x6><0xe>\f<0xe><0xe><0xe><0xf><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x2><0xe><0x2><0xe><0x2><0xe><0x2><0xe>\b<0xe>\b<0xe>\b<0xe>\b<0xe><0x4><0xe><0x4><0xe><0x4><0xe><0x4><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x6><0xe>\b<0xe>\n<0xe>\n<0xe>\f<0xe>\f<0xe><0x4><0xe><0x4><0xe><0x2><0xe><0x2><0xe><0xe><0xe>\n<0xe><0x6><0xe>\f<0xe><0xe><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x2><0xe><0x2><0xe><0x2><0xe><0x2><0xe>\b<0xe>\b<0xe>\b<0xe>\b<0xe><0x4><0xe><0x4><0xe><0x4><0xe><0x4><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x6><0xe>\b<0xe>\n<0xe>\n<0xe>\f<0xe>\f<0xe><0x4><0xe><0x4><0xe><0x2><0xe><0x2><0xe><0xe><0xe>\n<0xe><0x6><0xe>\f<0xe><0xe><0xe><0xf><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x2><0xe><0x2><0xe><0x2><0xe><0x2><0xe>\b<0xe>\b<0xe>\b<0xe>\b<0xe><0x4><0xe><0x4><0xe><0x4><0xe><0x4><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x6><0xe>\b<0xe>\n<0xe>\n<0xe>\f<0xe>\f<0xe><0x4><0xe><0x4><0xe><0x2><0xe><0x2><0xe><0xe><0xe>\n<0xe><0x6><0xe>\f<0xe><0xe><0xe><0xf><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x2><0xe><0x2><0xe><0x2><0xe><0x2><0xe>\b<0xe>\b<0xe>\b<0xe>\b<0xe><0x4><0xe><0x4><0xe><0x4><0xe><0x4><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x6><0xe>\b<0xe>\n<0xe>\n<0xe>\f<0xe>\f<0xe><0x4><0xe><0x4><0xe><0x2><0xe><0x2><0xe><0xe><0xe>\n<0xe><0x6><0xe>\f<0xe><0xe><0xe><0xf><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x2><0xe><0x2><0xe><0x2><0xe><0x2><0xe>\b<0xe>\b<0xe>\b<0xe>\b<0xe><0x4><0xe><0x4><0xe><0x4><0xe><0x4><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x6><0xe>\b<0xe>\n<0xe>\n<0xe>\f<0xe>\f<0xe><0x4><0xe><0x4><0xe><0x2><0xe><0x2><0xe><0xe><0xe>\n<0xe><0x6><0xe>\f<0xe><0xe><0xe><0xf><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x2><0xe><0x2><0xe><0x2><0xe><0x2><0xe>\b<0xe>\b<0xe>\b<0xe>\b<0xe><0x4><0xe><0x4><0xe><0x4><0xe><0x4><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x6><0xe>\b<0xe>\n<0xe>\n<0xe>\f<0xe>\f<0xe><0x4><0xe><0x4><0xe><0x2><0xe><0x2><0xe><0xe><0xe>\n<0xe><0x6><0xe>\f<0xe><0xe><0xe><0xf><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x2><0xe><0x2><0xe><0x2><0xe><0x2><0xe>\b<0xe>\b<0xe>\b<0xe>\b<0xe><0x4><0xe><0x4><0xe><0x4><0xe><0x4><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x6><0xe>\b<0xe>\n<0xe>\n<0xe>\f<0xe>\f<0xe><0x4><0xe><0x4><0xe><0x2><0xe><0x2><0xe><0xe><0xe>\n<0xe><0x6><0xe>\f<0xe><0xe><0xe><0xf><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x2><0xe><0x2><0xe><0x2><0xe><0x2><0xe>\b<0xe>\b<0xe>\b<0xe>\b<0xe><0x4><0xe><0x4><0xe><0x4><0xe><0x4><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x6><0xe>\b<0xe>\n<0xe>\n<0xe>\f<0xe>\f<0xe><0x4><0xe><0x4><0xe><0x2><0xe><0x2><0xe><0xe><0xe>\n<0xe><0x6><0xe>\f<0xe><0xe><0xe><0xf><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x2><0xe><0x2><0xe><0x2><0xe><0x2><0xe>\b<0xe>\b<0xe>\b<0xe>\b<0xe><0x4><0xe><0x4><0xe><0x4><0xe><0x4><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x6><0xe>\b<0xe>\n<0xe>\n<0xe>\f<0xe>\f<0xe><0x4><0xe><0x4><0xe><0x2><0xe><0x2><0xe><0xe><0xe>\n<0xe><0x6><0xe>\f<0xe><0xe><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x2><0xe><0x2><0xe><0x2><0xe><0x2><0xe>\b<0xe>\b<0xe>\b<0xe>\b<0xe><0x4><0xe><0x4><0xe><0x4><0xe><0x4><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x6><0xe>\b<0xe>\n<0xe>\n<0xe>\f<0xe>\f<0xe><0x4><0xe><0x4><0xe><0x2><0xe><0x2><0xe><0xe><0xe>\n<0xe><0x6><0xe>\f<0xe><0xe><0xe><0xf><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x2><0xe><0x2><0xe><0x2><0xe><0x2><0xe>\b<0xe>\b<0xe>\b<0xe>\b<0xe><0x4><0xe><0x4><0xe><0x4><0xe><0x4><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x6><0xe>\b<0xe>\n<0xe>\n<0xe>\f<0xe>\f<0xe><0x4><0xe><0x4><0xe><0x2><0xe><0x2><0xe><0xe><0xe>\n<0xe><0x6><0xe>\f<0xe><0xe><0xe><0xf><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x2><0xe><0x2><0xe><0x2><0xe><0x2><0xe>\b<0xe>\b<0xe>\b<0xe>\b<0xe><0x4><0xe><0x4><0xe><0x4><0xe><0x4><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x6><0xe>\b<0xe>\n<0xe>\n<0xe>\f<0xe>\f<0xe><0x4><0xe><0x4><0xe><0x2><0xe><0x2><0xe><0xe><0xe>\n<0xe><0x6><0xe>\f<0xe><0xe><0xe><0xf><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x2><0xe><0x2><0xe><0x2><0xe><0x2><0xe>\b<0xe>\b<0xe>\b<0xe>\b<0xe><0x4><0xe><0x4><0xe><0x4><0xe><0x4><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x6><0xe>\b<0xe>\n<0xe>\n<0xe>\f<0xe>\f<0xe><0x4><0xe><0x4><0xe><0x2><0xe><0x2><0xe><0xe><0xe>\n<0xe><0x6><0xe>\f<0xe><0xe><0xe><0xf><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x2><0xe><0x2><0xe><0x2><0xe><0x2><0xe>\b<0xe>\b<0xe>\b<0xe>\b<0xe><0x4><0xe><0x4><0xe><0x4><0xe><0x4><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x6><0xe>\b<0xe>\n<0xe>\n<0xe>\f<0xe>\f<0xe><0x4><0xe><0x4><0xe><0x2><0xe><0x2><0xe><0xe><0xe>\n<0xe><0x6><0xe>\f<0xe><0xe><0xe><0xf><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x2><0xe><0x2><0xe><0x2><0xe><0x2><0xe>\b<0xe>\b<0xe>\b<0xe>\b<0xe><0x4><0xe><0x4><0xe><0x4><0xe><0x4><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x6><0xe>\b<0xe>\n<0xe>\n<0xe>\f<0xe>\f<0xe><0x4><0xe><0x4><0xe><0x2><0xe><0x2><0xe><0xe><0xe>\n<0xe><0x6><0xe>\f<0xe><0xe><0xe><0xf><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x2><0xe><0x2><0xe><0x2><0xe><0x2><0xe>\b<0xe>\b<0xe>\b<0xe>\b<0xe><0x4><0xe><0x4><0xe><0x4><0xe><0x4><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x6><0xe>\b<0xe>\n<0xe>\n<0xe>\f<0xe>\f<0xe><0x4><0xe><0x4><0xe><0x2><0xe><0x2><0xe><0xe><0xe>\n<0xe><0x6><0xe>\f<0xe><0xe><0xe><0xf><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x2><0xe><0x2><0xe><0x2><0xe><0x2><0xe>\b<0xe>\b<0xe>\b<0xe>\b<0xe><0x4><0xe><0x4><0xe><0x4><0xe><0x4><0xe><0><0xe><0><0xe><0><0xe><0><0xe><0x6><0xe>\b<0xe>\n<0xe>\n<0xe>\f<0xe>\f<0xe><0x4><0xe><0x4><0xe><0x2><0xe><0x2><0xe><0xe><0xe>\n<0xe><0x6><0xe>\f<0xe><0xe><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe><0xf><0xe>:\n@note"<0>
c35c: VX Ace COMMON_EVENT (135 bytes)
| <0x83><0><0><0><0x4>\b[<0x6>o:<0x15>RPG::CommonEvent\n:\r@triggeri<0>:\n@name"<0>:<0xf>@switch_idi<0x6>:\n@list[<0x6>o:<0x16>RPG::EventCommand\b:\f@indenti<0>:\n@codei<0>:<0x10>@parameters[<0>:\b@idi<0x6>
c35f: VX Ace EVENT_PAGE (690 bytes)
| <0xae><0x2><0><0><0x4>\bo:<0x15>RPG::Event::Page<0x12>:<0xf>@conditiono: RPG::Event::Page::Condition<0x12>:<0x13>@switch1_validF:<0x13>@switch2_validF:<0x14>@variable_validF:<0x17>@self_switch_validF:<0x10>@item_validF:<0x11>@actor_validF:<0x10>@switch1_idi<0x6>:<0x10>@switch2_idi<0x6>:<0x11>@variable_idi<0x6>:<0x14>@variable_valuei<0>:<0x14>@self_switch_ch"<0x6>A:\r@item_idi<0x6>:<0xe>@actor_idi<0x6>:\r@graphico:<0x1e>RPG::Event::Page::Graphic\n:\r@tile_idi<0>:<0x14>@character_name"<0>:<0x15>@character_indexi<0>:<0xf>@directioni\a:\r@patterni<0>:<0xf>@move_typei<0>:<0x10>@move_speedi\b:<0x14>@move_frequencyi\b:<0x10>@move_routeo:<0x13>RPG::MoveRoute\t:\f@repeatT:<0xf>@skippableF:\n@waitF:\n@list[<0x6>o:<0x15>RPG::MoveCommand\a:\n@codei<0>:<0x10>@parameters[<0>:<0x10>@walk_animeT:<0x10>@step_animeF:<0x13>@direction_fixF:\r@throughF:<0x13>@priority_typei<0>:\r@triggeri<0>;$[<0x6>o:<0x16>RPG::EventCommand\b:\f@indenti<0>;&i<0>;'[<0>
c360: VX Ace MOVE_ROUTE (52 bytes)
| 0<0><0><0><0x4>\b[<0x6>o:<0x15>RPG::MoveCommand\a:\n@codei<0x6>:<0x10>@parameters[<0>
c364: VX Ace SCRIPT (174 bytes)
| <0xaa><0><0><0><0x4>\b[\bi<0x3><0x1><0xcd><0x1d>I"\tMain<0x6>:<0x6>ET"<0x1><0x92>x<0x9c>SN<0xcd>K<0xce>O<0xc9><0xcc>K<0xb7>*-I<0xd3><0xb5><0xe0>R<0xb6><0xa5>*<0xe0><0xe5>RVx4m<0x81><0x82>obf<0x1e><0x90><0xad>KU<0>2<0xfc>qC<0xc3><0xd3>\t-<0xcf><0x97><0xf7>>]7<0xeb><0xc9><0xce><0xce><0xe7><0xbb>'?<0x9b>;<0xff><0xe9><0x84><0xbe><0xf7>{z<0x9e><0xec><0xee>{<0xb1><0x7f><0xe6><0xcb><0xf6><0x9e><0xa7>{<0x1a><0x9e>.<0xef>~<0xba>n<0xde><0xcb><0x99><0xad>/<0xf6>Ox<0xb1><0xb0><0xe7>qC<0x13>/<0xf5><0xbd><0xca><0xcb>U<0x94>^\<0x1c><0x9f>\v<0xf4><0xab>B<0xb5>Bprj^<0xaa>ob^bzj<0x91>^Qi<0x9e>B-/<0x17><0><0xcf>6p<0xbe>
@hyrious
Copy link
Author

hyrious commented Feb 18, 2024

Note: the number at left (which is an unsigned int format) will be different on each boot. To get the format number by name, use code below

UINT format = RegisterClipboardFormat("VX Ace SCRIPT");

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment