// https://syzkaller.appspot.com/bug?id=f2940f7d9fee418623152855d1658924b594e6c3 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } #define MAX_FDS 30 //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define XT_TABLE_SIZE 1536 #define XT_MAX_ENTRIES 10 struct xt_counters { uint64_t pcnt, bcnt; }; struct ipt_getinfo { char name[32]; unsigned int valid_hooks; unsigned int hook_entry[5]; unsigned int underflow[5]; unsigned int num_entries; unsigned int size; }; struct ipt_get_entries { char name[32]; unsigned int size; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct ipt_replace { char name[32]; unsigned int valid_hooks; unsigned int num_entries; unsigned int size; unsigned int hook_entry[5]; unsigned int underflow[5]; unsigned int num_counters; struct xt_counters* counters; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct ipt_table_desc { const char* name; struct ipt_getinfo info; struct ipt_replace replace; }; static struct ipt_table_desc ipv4_tables[] = { {.name = "filter"}, {.name = "nat"}, {.name = "mangle"}, {.name = "raw"}, {.name = "security"}, }; static struct ipt_table_desc ipv6_tables[] = { {.name = "filter"}, {.name = "nat"}, {.name = "mangle"}, {.name = "raw"}, {.name = "security"}, }; #define IPT_BASE_CTL 64 #define IPT_SO_SET_REPLACE (IPT_BASE_CTL) #define IPT_SO_GET_INFO (IPT_BASE_CTL) #define IPT_SO_GET_ENTRIES (IPT_BASE_CTL + 1) struct arpt_getinfo { char name[32]; unsigned int valid_hooks; unsigned int hook_entry[3]; unsigned int underflow[3]; unsigned int num_entries; unsigned int size; }; struct arpt_get_entries { char name[32]; unsigned int size; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct arpt_replace { char name[32]; unsigned int valid_hooks; unsigned int num_entries; unsigned int size; unsigned int hook_entry[3]; unsigned int underflow[3]; unsigned int num_counters; struct xt_counters* counters; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct arpt_table_desc { const char* name; struct arpt_getinfo info; struct arpt_replace replace; }; static struct arpt_table_desc arpt_tables[] = { {.name = "filter"}, }; #define ARPT_BASE_CTL 96 #define ARPT_SO_SET_REPLACE (ARPT_BASE_CTL) #define ARPT_SO_GET_INFO (ARPT_BASE_CTL) #define ARPT_SO_GET_ENTRIES (ARPT_BASE_CTL + 1) static void checkpoint_iptables(struct ipt_table_desc* tables, int num_tables, int family, int level) { int fd = socket(family, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (int i = 0; i < num_tables; i++) { struct ipt_table_desc* table = &tables[i]; strcpy(table->info.name, table->name); strcpy(table->replace.name, table->name); socklen_t optlen = sizeof(table->info); if (getsockopt(fd, level, IPT_SO_GET_INFO, &table->info, &optlen)) { switch (errno) { case EPERM: case ENOENT: case ENOPROTOOPT: continue; } exit(1); } if (table->info.size > sizeof(table->replace.entrytable)) exit(1); if (table->info.num_entries > XT_MAX_ENTRIES) exit(1); struct ipt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + table->info.size; if (getsockopt(fd, level, IPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); table->replace.valid_hooks = table->info.valid_hooks; table->replace.num_entries = table->info.num_entries; table->replace.size = table->info.size; memcpy(table->replace.hook_entry, table->info.hook_entry, sizeof(table->replace.hook_entry)); memcpy(table->replace.underflow, table->info.underflow, sizeof(table->replace.underflow)); memcpy(table->replace.entrytable, entries.entrytable, table->info.size); } close(fd); } static void reset_iptables(struct ipt_table_desc* tables, int num_tables, int family, int level) { int fd = socket(family, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (int i = 0; i < num_tables; i++) { struct ipt_table_desc* table = &tables[i]; if (table->info.valid_hooks == 0) continue; struct ipt_getinfo info; memset(&info, 0, sizeof(info)); strcpy(info.name, table->name); socklen_t optlen = sizeof(info); if (getsockopt(fd, level, IPT_SO_GET_INFO, &info, &optlen)) exit(1); if (memcmp(&table->info, &info, sizeof(table->info)) == 0) { struct ipt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + entries.size; if (getsockopt(fd, level, IPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); if (memcmp(table->replace.entrytable, entries.entrytable, table->info.size) == 0) continue; } struct xt_counters counters[XT_MAX_ENTRIES]; table->replace.num_counters = info.num_entries; table->replace.counters = counters; optlen = sizeof(table->replace) - sizeof(table->replace.entrytable) + table->replace.size; if (setsockopt(fd, level, IPT_SO_SET_REPLACE, &table->replace, optlen)) exit(1); } close(fd); } static void checkpoint_arptables(void) { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (unsigned i = 0; i < sizeof(arpt_tables) / sizeof(arpt_tables[0]); i++) { struct arpt_table_desc* table = &arpt_tables[i]; strcpy(table->info.name, table->name); strcpy(table->replace.name, table->name); socklen_t optlen = sizeof(table->info); if (getsockopt(fd, SOL_IP, ARPT_SO_GET_INFO, &table->info, &optlen)) { switch (errno) { case EPERM: case ENOENT: case ENOPROTOOPT: continue; } exit(1); } if (table->info.size > sizeof(table->replace.entrytable)) exit(1); if (table->info.num_entries > XT_MAX_ENTRIES) exit(1); struct arpt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + table->info.size; if (getsockopt(fd, SOL_IP, ARPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); table->replace.valid_hooks = table->info.valid_hooks; table->replace.num_entries = table->info.num_entries; table->replace.size = table->info.size; memcpy(table->replace.hook_entry, table->info.hook_entry, sizeof(table->replace.hook_entry)); memcpy(table->replace.underflow, table->info.underflow, sizeof(table->replace.underflow)); memcpy(table->replace.entrytable, entries.entrytable, table->info.size); } close(fd); } static void reset_arptables() { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (unsigned i = 0; i < sizeof(arpt_tables) / sizeof(arpt_tables[0]); i++) { struct arpt_table_desc* table = &arpt_tables[i]; if (table->info.valid_hooks == 0) continue; struct arpt_getinfo info; memset(&info, 0, sizeof(info)); strcpy(info.name, table->name); socklen_t optlen = sizeof(info); if (getsockopt(fd, SOL_IP, ARPT_SO_GET_INFO, &info, &optlen)) exit(1); if (memcmp(&table->info, &info, sizeof(table->info)) == 0) { struct arpt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + entries.size; if (getsockopt(fd, SOL_IP, ARPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); if (memcmp(table->replace.entrytable, entries.entrytable, table->info.size) == 0) continue; } else { } struct xt_counters counters[XT_MAX_ENTRIES]; table->replace.num_counters = info.num_entries; table->replace.counters = counters; optlen = sizeof(table->replace) - sizeof(table->replace.entrytable) + table->replace.size; if (setsockopt(fd, SOL_IP, ARPT_SO_SET_REPLACE, &table->replace, optlen)) exit(1); } close(fd); } #define NF_BR_NUMHOOKS 6 #define EBT_TABLE_MAXNAMELEN 32 #define EBT_CHAIN_MAXNAMELEN 32 #define EBT_BASE_CTL 128 #define EBT_SO_SET_ENTRIES (EBT_BASE_CTL) #define EBT_SO_GET_INFO (EBT_BASE_CTL) #define EBT_SO_GET_ENTRIES (EBT_SO_GET_INFO + 1) #define EBT_SO_GET_INIT_INFO (EBT_SO_GET_ENTRIES + 1) #define EBT_SO_GET_INIT_ENTRIES (EBT_SO_GET_INIT_INFO + 1) struct ebt_replace { char name[EBT_TABLE_MAXNAMELEN]; unsigned int valid_hooks; unsigned int nentries; unsigned int entries_size; struct ebt_entries* hook_entry[NF_BR_NUMHOOKS]; unsigned int num_counters; struct ebt_counter* counters; char* entries; }; struct ebt_entries { unsigned int distinguisher; char name[EBT_CHAIN_MAXNAMELEN]; unsigned int counter_offset; int policy; unsigned int nentries; char data[0] __attribute__((aligned(__alignof__(struct ebt_replace)))); }; struct ebt_table_desc { const char* name; struct ebt_replace replace; char entrytable[XT_TABLE_SIZE]; }; static struct ebt_table_desc ebt_tables[] = { {.name = "filter"}, {.name = "nat"}, {.name = "broute"}, }; static void checkpoint_ebtables(void) { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (size_t i = 0; i < sizeof(ebt_tables) / sizeof(ebt_tables[0]); i++) { struct ebt_table_desc* table = &ebt_tables[i]; strcpy(table->replace.name, table->name); socklen_t optlen = sizeof(table->replace); if (getsockopt(fd, SOL_IP, EBT_SO_GET_INIT_INFO, &table->replace, &optlen)) { switch (errno) { case EPERM: case ENOENT: case ENOPROTOOPT: continue; } exit(1); } if (table->replace.entries_size > sizeof(table->entrytable)) exit(1); table->replace.num_counters = 0; table->replace.entries = table->entrytable; optlen = sizeof(table->replace) + table->replace.entries_size; if (getsockopt(fd, SOL_IP, EBT_SO_GET_INIT_ENTRIES, &table->replace, &optlen)) exit(1); } close(fd); } static void reset_ebtables() { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (unsigned i = 0; i < sizeof(ebt_tables) / sizeof(ebt_tables[0]); i++) { struct ebt_table_desc* table = &ebt_tables[i]; if (table->replace.valid_hooks == 0) continue; struct ebt_replace replace; memset(&replace, 0, sizeof(replace)); strcpy(replace.name, table->name); socklen_t optlen = sizeof(replace); if (getsockopt(fd, SOL_IP, EBT_SO_GET_INFO, &replace, &optlen)) exit(1); replace.num_counters = 0; table->replace.entries = 0; for (unsigned h = 0; h < NF_BR_NUMHOOKS; h++) table->replace.hook_entry[h] = 0; if (memcmp(&table->replace, &replace, sizeof(table->replace)) == 0) { char entrytable[XT_TABLE_SIZE]; memset(&entrytable, 0, sizeof(entrytable)); replace.entries = entrytable; optlen = sizeof(replace) + replace.entries_size; if (getsockopt(fd, SOL_IP, EBT_SO_GET_ENTRIES, &replace, &optlen)) exit(1); if (memcmp(table->entrytable, entrytable, replace.entries_size) == 0) continue; } for (unsigned j = 0, h = 0; h < NF_BR_NUMHOOKS; h++) { if (table->replace.valid_hooks & (1 << h)) { table->replace.hook_entry[h] = (struct ebt_entries*)table->entrytable + j; j++; } } table->replace.entries = table->entrytable; optlen = sizeof(table->replace) + table->replace.entries_size; if (setsockopt(fd, SOL_IP, EBT_SO_SET_ENTRIES, &table->replace, optlen)) exit(1); } close(fd); } static void checkpoint_net_namespace(void) { checkpoint_ebtables(); checkpoint_arptables(); checkpoint_iptables(ipv4_tables, sizeof(ipv4_tables) / sizeof(ipv4_tables[0]), AF_INET, SOL_IP); checkpoint_iptables(ipv6_tables, sizeof(ipv6_tables) / sizeof(ipv6_tables[0]), AF_INET6, SOL_IPV6); } static void reset_net_namespace(void) { reset_ebtables(); reset_arptables(); reset_iptables(ipv4_tables, sizeof(ipv4_tables) / sizeof(ipv4_tables[0]), AF_INET, SOL_IP); reset_iptables(ipv6_tables, sizeof(ipv6_tables) / sizeof(ipv6_tables[0]), AF_INET6, SOL_IPV6); } static void mount_cgroups(const char* dir, const char** controllers, int count) { if (mkdir(dir, 0777)) { return; } char enabled[128] = {0}; int i = 0; for (; i < count; i++) { if (mount("none", dir, "cgroup", 0, controllers[i])) { continue; } umount(dir); strcat(enabled, ","); strcat(enabled, controllers[i]); } if (enabled[0] == 0) { if (rmdir(dir) && errno != EBUSY) exit(1); return; } if (mount("none", dir, "cgroup", 0, enabled + 1)) { if (rmdir(dir) && errno != EBUSY) exit(1); } if (chmod(dir, 0777)) { } } static void mount_cgroups2(const char** controllers, int count) { if (mkdir("/syzcgroup/unified", 0777)) { return; } if (mount("none", "/syzcgroup/unified", "cgroup2", 0, NULL)) { if (rmdir("/syzcgroup/unified") && errno != EBUSY) exit(1); return; } if (chmod("/syzcgroup/unified", 0777)) { } int control = open("/syzcgroup/unified/cgroup.subtree_control", O_WRONLY); if (control == -1) return; int i; for (i = 0; i < count; i++) if (write(control, controllers[i], strlen(controllers[i])) < 0) { } close(control); } static void setup_cgroups() { const char* unified_controllers[] = {"+cpu", "+io", "+pids"}; const char* net_controllers[] = {"net", "net_prio", "devices", "blkio", "freezer"}; const char* cpu_controllers[] = {"cpuset", "cpuacct", "hugetlb", "rlimit", "memory"}; if (mkdir("/syzcgroup", 0777)) { return; } mount_cgroups2(unified_controllers, sizeof(unified_controllers) / sizeof(unified_controllers[0])); mount_cgroups("/syzcgroup/net", net_controllers, sizeof(net_controllers) / sizeof(net_controllers[0])); mount_cgroups("/syzcgroup/cpu", cpu_controllers, sizeof(cpu_controllers) / sizeof(cpu_controllers[0])); write_file("/syzcgroup/cpu/cgroup.clone_children", "1"); write_file("/syzcgroup/cpu/cpuset.memory_pressure_enabled", "1"); } static void setup_cgroups_loop() { int pid = getpid(); char file[128]; char cgroupdir[64]; snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/unified/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/pids.max", cgroupdir); write_file(file, "32"); snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/cpu/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); snprintf(file, sizeof(file), "%s/memory.soft_limit_in_bytes", cgroupdir); write_file(file, "%d", 299 << 20); snprintf(file, sizeof(file), "%s/memory.limit_in_bytes", cgroupdir); write_file(file, "%d", 300 << 20); snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/net/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); } static void setup_cgroups_test() { char cgroupdir[64]; snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/unified/syz%llu", procid); if (symlink(cgroupdir, "./cgroup")) { } snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/cpu/syz%llu", procid); if (symlink(cgroupdir, "./cgroup.cpu")) { } snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/net/syz%llu", procid); if (symlink(cgroupdir, "./cgroup.net")) { } } static void initialize_cgroups() { if (mkdir("./syz-tmp/newroot/syzcgroup", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/unified", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/cpu", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/net", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/syzcgroup/unified", "./syz-tmp/newroot/syzcgroup/unified", NULL, bind_mount_flags, NULL)) { } if (mount("/syzcgroup/cpu", "./syz-tmp/newroot/syzcgroup/cpu", NULL, bind_mount_flags, NULL)) { } if (mount("/syzcgroup/net", "./syz-tmp/newroot/syzcgroup/net", NULL, bind_mount_flags, NULL)) { } } static void setup_gadgetfs(); static void setup_binderfs(); static void setup_fusectl(); static void sandbox_common_mount_tmpfs(void) { write_file("/proc/sys/fs/mount-max", "100000"); if (mkdir("./syz-tmp", 0777)) exit(1); if (mount("", "./syz-tmp", "tmpfs", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot", 0777)) exit(1); if (mkdir("./syz-tmp/newroot/dev", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/dev", "./syz-tmp/newroot/dev", NULL, bind_mount_flags, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/proc", 0700)) exit(1); if (mount("syz-proc", "./syz-tmp/newroot/proc", "proc", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/selinux", 0700)) exit(1); const char* selinux_path = "./syz-tmp/newroot/selinux"; if (mount("/selinux", selinux_path, NULL, bind_mount_flags, NULL)) { if (errno != ENOENT) exit(1); if (mount("/sys/fs/selinux", selinux_path, NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); } if (mkdir("./syz-tmp/newroot/sys", 0700)) exit(1); if (mount("/sys", "./syz-tmp/newroot/sys", 0, bind_mount_flags, NULL)) exit(1); if (mount("/sys/kernel/debug", "./syz-tmp/newroot/sys/kernel/debug", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/sys/fs/smackfs", "./syz-tmp/newroot/sys/fs/smackfs", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/proc/sys/fs/binfmt_misc", "./syz-tmp/newroot/proc/sys/fs/binfmt_misc", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/newroot/syz-inputs", 0700)) exit(1); if (mount("/syz-inputs", "./syz-tmp/newroot/syz-inputs", NULL, bind_mount_flags | MS_RDONLY, NULL) && errno != ENOENT) exit(1); initialize_cgroups(); if (mkdir("./syz-tmp/pivot", 0777)) exit(1); if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) { if (chdir("./syz-tmp")) exit(1); } else { if (chdir("/")) exit(1); if (umount2("./pivot", MNT_DETACH)) exit(1); } if (chroot("./newroot")) exit(1); if (chdir("/")) exit(1); setup_gadgetfs(); setup_binderfs(); setup_fusectl(); } static void setup_gadgetfs() { if (mkdir("/dev/gadgetfs", 0777)) { } if (mount("gadgetfs", "/dev/gadgetfs", "gadgetfs", 0, NULL)) { } } static void setup_fusectl() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void setup_binderfs() { if (mkdir("/dev/binderfs", 0777)) { } if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); if (getppid() == 1) exit(1); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 128 << 20; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); sandbox_common_mount_tmpfs(); loop(); exit(1); } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void setup_loop() { setup_cgroups_loop(); checkpoint_net_namespace(); } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } reset_net_namespace(); } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); setup_cgroups_test(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { setup_loop(); int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); close_fds(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x0 (8 bytes) // opts: ptr[in, fs_options[jfs_options]] { // fs_options[jfs_options] { // elems: array[fs_opt_elem[jfs_options]] { // fs_opt_elem[jfs_options] { // elem: union jfs_options { // iocharset: fs_opt["iocharset", stringnoz[codepages_names]] { // name: buffer: {69 6f 63 68 61 72 73 65 74} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {63 70 39 34 39} (length 0x5) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // quota: buffer: {71 75 6f 74 61} (length 0x5) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // discard_size: fs_opt["discard", fmt[hex, int32]] { // name: buffer: {64 69 73 63 61 72 64} (length 0x7) // eq: const = 0x3d (1 bytes) // val: int32 = 0x8 (18 bytes) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // gid: fs_opt["gid", fmt[hex, gid]] { // name: buffer: {67 69 64} (length 0x3) // eq: const = 0x3d (1 bytes) // val: gid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // gid: fs_opt["gid", fmt[hex, gid]] { // name: buffer: {67 69 64} (length 0x3) // eq: const = 0x3d (1 bytes) // val: gid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // errors_continue: buffer: {65 72 72 6f 72 73 3d 63 6f 6e 74 69 // 6e 75 65} (length 0xf) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // errors_remount: buffer: {65 72 72 6f 72 73 3d 72 65 6d 6f 75 // 6e 74 2d 72 6f} (length 0x11) // } // comma: const = 0x0 (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // discard: buffer: {64 69 73 63 61 72 64} (length 0x7) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // iocharset: fs_opt["iocharset", stringnoz[codepages_names]] { // name: buffer: {69 6f 63 68 61 72 73 65 74} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {6d 61 63 69 63 65 6c 61 6e 64} (length 0xa) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // umask: fs_opt["umask", fmt[hex, int32]] { // name: buffer: {75 6d 61 73 6b} (length 0x5) // eq: const = 0x3d (1 bytes) // val: int32 = 0xfce (18 bytes) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // quota: buffer: {71 75 6f 74 61} (length 0x5) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // noquota: buffer: {6e 6f 71 75 6f 74 61} (length 0x7) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // iocharset: fs_opt["iocharset", stringnoz[codepages_names]] { // name: buffer: {69 6f 63 68 61 72 73 65 74} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {63 70 38 36 30} (length 0x5) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // gid: fs_opt["gid", fmt[hex, gid]] { // name: buffer: {67 69 64} (length 0x3) // eq: const = 0x3d (1 bytes) // val: gid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // fs_opt_elem[fs_options_common] { // elem: union fs_options_common { // defcontext: fs_opt["defcontext", // stringnoz[selinux_user_context]] { // name: buffer: {64 65 66 63 6f 6e 74 65 78 74} (length 0xa) // eq: const = 0x3d (1 bytes) // val: buffer: {75 73 65 72 5f 75} (length 0x6) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[fs_options_common] { // elem: union fs_options_common { // euid_eq: fs_opt["euid", fmt[dec, uid]] { // name: buffer: {65 75 69 64} (length 0x4) // eq: const = 0x3d (1 bytes) // val: uid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[fs_options_common] { // elem: union fs_options_common { // seclabel: buffer: {73 65 63 6c 61 62 65 6c} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[fs_options_common] { // elem: union fs_options_common { // euid_gt: fs_opt_nodelim["euid>", fmt[dec, uid]] { // name: buffer: {65 75 69 64 3e} (length 0x5) // val: uid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[fs_options_common] { // elem: union fs_options_common { // uid_lt: fs_opt_nodelim["uid<", fmt[dec, uid]] { // name: buffer: {75 69 64 3c} (length 0x4) // val: uid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[fs_options_common] { // elem: union fs_options_common { // fowner_gt: fs_opt_nodelim["fowner>", fmt[dec, uid]] { // name: buffer: {66 6f 77 6e 65 72 3e} (length 0x7) // val: uid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[fs_options_common] { // elem: union fs_options_common { // subj_role: fs_opt["subj_role", stringnoz] { // name: buffer: {73 75 62 6a 5f 72 6f 6c 65} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {75 73 65 72 5f 75} (length 0x6) // } // } // comma: const = 0x2c (1 bytes) // } // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x0 (1 bytes) // size: len = 0x6168 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6168) // } // ] // returns fd_dir memcpy((void*)0x200000000000, "jfs\000", 4); memcpy((void*)0x2000000000c0, "./file0\000", 8); memcpy((void*)0x200000000280, "iocharset", 9); *(uint8_t*)0x200000000289 = 0x3d; memcpy((void*)0x20000000028a, "cp949", 5); *(uint8_t*)0x20000000028f = 0x2c; memcpy((void*)0x200000000290, "quota", 5); *(uint8_t*)0x200000000295 = 0x2c; memcpy((void*)0x200000000296, "discard", 7); *(uint8_t*)0x20000000029d = 0x3d; sprintf((char*)0x20000000029e, "0x%016llx", (long long)8); *(uint8_t*)0x2000000002b0 = 0x2c; memcpy((void*)0x2000000002b1, "gid", 3); *(uint8_t*)0x2000000002b4 = 0x3d; sprintf((char*)0x2000000002b5, "0x%016llx", (long long)0); *(uint8_t*)0x2000000002c7 = 0x2c; memcpy((void*)0x2000000002c8, "gid", 3); *(uint8_t*)0x2000000002cb = 0x3d; sprintf((char*)0x2000000002cc, "0x%016llx", (long long)0); *(uint8_t*)0x2000000002de = 0x2c; memcpy((void*)0x2000000002df, "errors=continue", 15); *(uint8_t*)0x2000000002ee = 0x2c; memcpy((void*)0x2000000002ef, "errors=remount-ro", 17); *(uint8_t*)0x200000000300 = 0; memcpy((void*)0x200000000301, "discard", 7); *(uint8_t*)0x200000000308 = 0x2c; memcpy((void*)0x200000000309, "iocharset", 9); *(uint8_t*)0x200000000312 = 0x3d; memcpy((void*)0x200000000313, "maciceland", 10); *(uint8_t*)0x20000000031d = 0x2c; memcpy((void*)0x20000000031e, "umask", 5); *(uint8_t*)0x200000000323 = 0x3d; sprintf((char*)0x200000000324, "0x%016llx", (long long)0xfce); *(uint8_t*)0x200000000336 = 0x2c; memcpy((void*)0x200000000337, "quota", 5); *(uint8_t*)0x20000000033c = 0x2c; memcpy((void*)0x20000000033d, "noquota", 7); *(uint8_t*)0x200000000344 = 0x2c; memcpy((void*)0x200000000345, "iocharset", 9); *(uint8_t*)0x20000000034e = 0x3d; memcpy((void*)0x20000000034f, "cp860", 5); *(uint8_t*)0x200000000354 = 0x2c; memcpy((void*)0x200000000355, "gid", 3); *(uint8_t*)0x200000000358 = 0x3d; sprintf((char*)0x200000000359, "0x%016llx", (long long)0); *(uint8_t*)0x20000000036b = 0x2c; memcpy((void*)0x20000000036c, "defcontext", 10); *(uint8_t*)0x200000000376 = 0x3d; memcpy((void*)0x200000000377, "user_u", 6); *(uint8_t*)0x20000000037d = 0x2c; memcpy((void*)0x20000000037e, "euid", 4); *(uint8_t*)0x200000000382 = 0x3d; sprintf((char*)0x200000000383, "%020llu", (long long)0); *(uint8_t*)0x200000000397 = 0x2c; memcpy((void*)0x200000000398, "seclabel", 8); *(uint8_t*)0x2000000003a0 = 0x2c; memcpy((void*)0x2000000003a1, "euid>", 5); sprintf((char*)0x2000000003a6, "%020llu", (long long)0); *(uint8_t*)0x2000000003ba = 0x2c; memcpy((void*)0x2000000003bb, "uid<", 4); sprintf((char*)0x2000000003bf, "%020llu", (long long)0); *(uint8_t*)0x2000000003d3 = 0x2c; memcpy((void*)0x2000000003d4, "fowner>", 7); sprintf((char*)0x2000000003db, "%020llu", (long long)0); *(uint8_t*)0x2000000003ef = 0x2c; memcpy((void*)0x2000000003f0, "subj_role", 9); *(uint8_t*)0x2000000003f9 = 0x3d; memcpy((void*)0x2000000003fa, "user_u", 6); *(uint8_t*)0x200000000400 = 0x2c; *(uint8_t*)0x200000000401 = 0; memcpy( (void*)0x200000006400, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xbe\xfa\xa5\xb4\xb5\x7a" "\xa8\x4a\x84\x90\x9b\x96\x97\x52\x9a\xc4\x49\x09\x81\x02\x6d\x0f\x70\xe0" "\xd2\x03\xca\x15\x25\x72\xdd\x2a\x22\x05\x94\x04\x94\x56\x16\x71\xe5\x0b" "\x07\x4e\xfc\x05\x20\x24\x8e\x08\x71\x44\x1c\xf8\x03\x7a\xe0\xca\x8d\x13" "\x27\x22\xd9\x48\xa0\x9e\x18\x34\xf6\xf3\xc4\xe3\xcd\x6e\xed\xd4\xf1\xce" "\xda\xcf\xe7\x23\x39\x33\xbf\x79\x66\xbd\xcf\xf8\xbb\xb3\x2f\x99\x99\x7d" "\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\xef\x7f\xef" "\x07\x2b\x9d\x88\xb8\xf6\xf3\xb4\x60\x29\xe2\x33\xd1\x8b\xe8\x46\x2c\xd4" "\xf5\x72\x44\x2c\x2c\x2f\xe5\xf5\xfb\x11\xf1\x5c\xec\x34\xc7\xb3\x11\x31" "\x98\x8b\xa8\x6f\xbf\xf3\xcf\xd3\x11\xaf\x46\xc4\x47\x4f\x45\x6c\x6d\xaf" "\xaf\xd6\x8b\x2f\x1e\xb2\x1f\xdf\xfd\xe3\xdf\x7f\xf7\xc3\x27\xde\xfa\xdb" "\x1f\x06\xe7\xff\xfb\xa7\x3b\xbd\xd7\x26\xad\x77\xf7\xee\xaf\xfe\xf3\xe7" "\x7b\x47\xdb\x66\x00\x00\x00\x28\x4d\x55\x55\x55\x27\x7d\xcc\x3f\x93\x3e" "\xdf\x77\xdb\xee\x14\x00\x30\x15\xf9\xf5\xbf\x4a\xf2\xf2\x53\x5f\xff\xfa" "\x9f\x6f\xfd\x65\x96\xfa\xa3\x56\xab\xd5\x6a\xf5\x14\xea\xa6\x6a\xbc\x7b" "\xcd\x22\x22\x36\x9a\xb7\xa9\xdf\x33\x38\x1c\x0f\x00\x27\xcc\x46\x7c\xdc" "\x76\x17\x68\x91\xfc\x8b\xd6\x8f\x88\x27\xda\xee\x04\x30\xd3\x3a\x6d\x77" "\x80\x63\xb1\xb5\xbd\xbe\xda\x49\xf9\x76\x9a\xaf\x07\xcb\xbb\xed\xf9\x5c" "\x90\x7d\xf9\x6f\x74\x1e\x5c\xdf\x31\x69\x7a\x90\xd1\x73\x4c\xa6\xf5\xf8" "\xda\x8c\x5e\x3c\x33\xa1\x3f\x0b\x53\xea\xc3\x2c\xc9\xf9\x77\x47\xf3\xbf" "\xb6\xdb\x3e\x4c\xeb\x1d\x77\xfe\xd3\x32\x29\xff\xe1\xee\xa5\x4f\xc5\xc9" "\xf9\xf7\x46\xf3\x1f\x71\x7a\xf2\xef\x8e\xcd\xbf\x54\x39\xff\xfe\x23\xe5" "\xdf\x93\x3f\x00\x00\x00\x00\x00\xcc\xb0\xfc\xff\xff\x4b\x2d\x1f\xff\x9d" "\x3b\xfa\xa6\x1c\xca\x27\x1d\xff\x5d\x9e\x52\x1f\x00\x00\x00\x00\x00\x00" "\x00\xe0\x71\x3b\xea\xf8\x7f\x0f\x18\xff\x0f\x00\x00\x00\x66\x56\xfd\x59" "\xbd\xf6\x9b\xa7\xf6\x96\x4d\xfa\x2e\xb6\x7a\xf9\xd5\x4e\xc4\x93\x23\xeb" "\x03\x85\x49\x17\xcb\x2c\xb6\xdd\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x28\x49\x7f\xf7\x1c\xde\xab\x9d\x88\x41\x44\x3c\xb9\xb8\x58\x55\x55" "\xfd\xd3\x34\x5a\x3f\xaa\xa3\xde\xfe\xa4\x2b\x7d\xfb\xa1\x64\x6d\x3f\xc9" "\x03\x00\xc0\xae\x8f\x9e\x1a\xb9\x96\xbf\x13\x31\x1f\x11\x57\xd3\x77\xfd" "\x0d\x16\x17\x17\xab\x6a\x7e\x61\xb1\x5a\xac\x16\xe6\xf2\xfb\xd9\xe1\xdc" "\x7c\xb5\xd0\xf8\x5c\x9b\xa7\xf5\xb2\xb9\xe1\x21\xde\x10\xf7\x87\x55\xfd" "\xcb\xe6\x1b\xb7\x6b\x3a\xe8\xf3\xf2\x41\xed\xa3\xbf\xaf\xbe\xaf\x61\xd5" "\x3b\x44\xc7\x1e\x93\x41\xfa\x6b\x4e\x68\x6e\x29\x6c\x00\x48\x76\x5f\x8d" "\xb6\xbc\x22\x9d\x32\x55\xf5\xf4\xa4\x37\x1f\xb0\x8f\xfd\xff\x14\x5a\x8a" "\xa5\xb6\x1f\x57\xcc\xbe\xb6\x1f\xa6\x00\x00\x00\xc0\xf1\xab\xaa\xaa\xea" "\xa4\xaf\xf3\x3e\x93\x8e\xf9\x77\xdb\xee\x14\x00\x30\x15\xf9\xf5\x7f\xf4" "\xb8\xc0\x91\xea\xee\x84\xf6\x88\xc7\xf3\xfb\xd5\x6a\xb5\x5a\xad\x56\x7f" "\xaa\xba\xa9\x1a\xef\x5e\xb3\x88\x88\x8d\xe6\x6d\xea\xf7\x0c\x86\xe3\x07" "\x80\x13\x66\x23\x3e\x6e\xbb\x0b\xb4\x48\xfe\x45\xeb\x47\xc4\x73\x6d\x77" "\x02\x98\x69\x9d\xb6\x3b\xc0\xb1\xd8\xda\x5e\x5f\xed\xa4\x7c\x3b\xcd\xd7" "\x83\x34\xbe\x7b\x3e\x17\x64\x5f\xfe\x1b\x9d\x9d\xdb\xe5\xdb\x8f\x9b\x1e" "\x64\xf4\x1c\x93\x69\x3d\xbe\x36\xa3\x17\xcf\x4c\xe8\xcf\xb3\x53\xea\xc3" "\x2c\xc9\xf9\x77\x47\xf3\xbf\xb6\xdb\x3e\x4c\xeb\x1d\x77\xfe\xd3\x32\x29" "\xff\xe1\xce\x25\x73\xe5\xc9\xf9\xf7\x46\xf3\x1f\x71\x7a\xf2\xef\x8e\xcd" "\xbf\x54\x39\xff\xfe\x23\xe5\xdf\x93\x3f\x00\x00\x00\x00\x00\xcc\xb0\xfc" "\xff\xff\x4b\x8e\xff\xe6\x4d\x06\x00\x00\x00\x00\x00\x00\x80\x13\x67\x6b" "\x7b\x7d\x35\x5f\xf7\x9a\x8f\xff\x7f\x6e\xcc\x7a\xae\xff\x3c\x9d\x72\xfe" "\x9d\x47\xcd\x7f\x21\xcd\xcb\xff\x44\xcb\xf9\x77\x47\xf2\xff\xf2\xc8\x7a" "\xbd\xc6\xfc\xfd\x37\xf7\xf6\xff\x7f\x6f\xaf\xaf\xfe\xfe\xce\xbf\x3e\x9b" "\xa7\x87\xcd\x7f\x2e\xcf\x74\xd2\x23\xab\x93\x1e\x11\x9d\x74\x4f\x9d\x7e" "\x9a\x1e\x65\xeb\x1e\xb6\x39\xe8\x0d\xeb\x7b\x1a\x74\xba\xbd\x7e\x3a\xe7" "\xa7\x1a\xbc\x13\x37\xe2\x66\xac\xc5\x85\x7d\xeb\x76\xd3\xdf\x63\xaf\x7d" "\x65\x5f\x7b\xdd\xd3\xc1\xbe\xf6\x8b\xfb\xda\xfb\x0f\xb5\x5f\xda\xd7\x3e" "\x48\xdf\x3b\x50\x2d\xe4\xf6\x73\xb1\x1a\x3f\x89\x9b\xf1\xf6\x4e\x7b\xdd" "\x36\x77\xc0\xf6\xcf\x1f\xd0\x5e\x1d\xd0\x9e\xf3\xef\x79\xfe\x2f\x52\xce" "\xbf\xdf\xf8\xa9\xf3\x5f\x4c\xed\x9d\x91\x69\xed\xfe\x87\xdd\x87\xf6\xfb" "\xe6\x74\xdc\xfd\xbc\x71\xe3\xf3\xbf\xbc\x70\xfc\x9b\x73\xa0\xcd\xe8\x3d" "\xd8\xb6\xa6\x7a\xfb\xce\xb6\xd0\x9f\x9d\xbf\xc9\x13\xc3\xf8\xd9\xed\xb5" "\x5b\xe7\xee\x5e\xbf\x73\xe7\xd6\x4a\xa4\xc9\xbe\xa5\x17\x23\x4d\x1e\xb3" "\x9c\xff\x60\xe7\x67\x6e\xef\xf9\xff\x85\xdd\xf6\xfc\xbc\xdf\xdc\x5f\xef" "\x7f\x38\x7c\xe4\xfc\x67\xc5\x66\xf4\x27\xe6\xff\x42\x63\xbe\xde\xde\x97" "\xa6\xdc\xb7\x36\xe4\xfc\x87\xe9\x27\xe7\xff\x76\x6a\x1f\xbf\xff\x9f\xe4" "\xfc\x27\xef\xff\x2f\xb7\xd0\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xf8\x24\x55\x55\xed\x5c\x22\xfa\x46\x44\x5c\x4e\xd7\xff\xb4\x75" "\x6d\x26\x00\x30\x5d\xf9\xf5\xbf\x4a\xf2\x72\xb5\x5a\xad\x56\xab\xd5\xa7" "\xaf\x6e\xaa\xc6\x7b\xbd\x59\x44\xc4\x5f\x9b\xb7\xa9\xdf\x33\xfc\x62\xdc" "\x2f\x03\x00\x66\xd9\xff\x22\xe2\x1f\x6d\x77\x82\xd6\xc8\xbf\x60\xf9\xfb" "\xfe\xea\xe9\x8b\x6d\x77\x06\x98\xaa\xdb\xef\x7f\xf0\xa3\xeb\x37\x6f\xae" "\xdd\xba\xdd\x76\x4f\x00\x00\x00\x00\x00\x00\x00\x80\x4f\x2b\x8f\xff\xb9" "\xdc\x18\xff\xf9\xc5\x88\x58\x1a\x59\x6f\xdf\xf8\xaf\x6f\xc6\xf2\x51\xc7" "\xff\xec\xe7\x99\x07\x03\x8c\x3e\xe6\x81\xbe\x27\xd8\xec\x0e\x7b\xdd\xc6" "\x70\xe3\xcf\xc7\xce\xf8\xdc\xe7\x26\x8d\xff\x7d\x36\x1e\x1e\xff\x3b\x8f" "\x89\xdb\x6b\x6e\xc7\x04\x83\x03\xda\x87\x07\xb4\xcf\x1d\xd0\x3e\x3f\x76" "\xe9\x5e\x5a\x63\x2f\xf4\x68\xc8\xf9\x3f\xdf\x18\xef\xbc\xce\xff\xcc\xc8" "\xf0\xeb\x25\x8c\xff\x3a\x3a\xe6\x7d\x09\x72\xfe\x67\x1b\x8f\xe7\x3a\xff" "\x2f\x8d\xac\xd7\xcc\xbf\xfa\xed\xcc\xe5\xbf\x71\xd8\x15\x37\xa3\xbb\x2f" "\xff\xf3\x77\xde\xfb\xe9\xf9\xdb\xef\x7f\xf0\xca\x8d\xf7\xae\xbf\xbb\xf6" "\xee\xda\x8f\x2f\xad\xac\x5c\xb8\x74\xf9\xf2\x95\x2b\x57\xce\xbf\x73\xe3" "\xe6\xda\x85\xdd\x7f\x8f\xa7\xd7\x33\x20\xe7\x9f\xc7\xbe\x76\x1e\x68\x59" "\x72\xfe\x39\x73\xf9\x97\x25\xe7\xff\x85\x54\xcb\xbf\x2c\x39\xff\x2f\xa6" "\x5a\xfe\x65\xc9\xf9\xe7\xf7\x7b\xf2\x2f\x4b\xce\x3f\x7f\xf6\x91\x7f\x59" "\x72\xfe\x2f\xa5\x5a\xfe\x65\xc9\xf9\x7f\x25\xd5\xf2\x2f\xcb\xd6\xf6\xfa" "\x5c\x9d\xff\xcb\xa9\x96\x7f\x59\xf2\xfe\xff\xd5\x54\xcb\xbf\x2c\x39\xff" "\x57\x52\x2d\xff\xb2\xe4\xfc\xcf\xa5\x5a\xfe\x65\xc9\xf9\x9f\x4f\xf5\x21" "\xf2\xf7\xf5\xf0\xa7\x48\xce\x3f\x1f\xe1\xb2\xff\x97\x25\xe7\xbf\x92\x6a" "\xf9\x97\x25\xe7\x7f\x31\xd5\xf2\x2f\x4b\xce\xff\x52\xaa\xe5\x5f\x96\x9c" "\xff\xab\xa9\x96\x7f\x59\x72\xfe\x5f\x4b\xb5\xfc\xcb\x92\xf3\xbf\x9c\x6a" "\xf9\x97\x25\xe7\xff\xf5\x54\xcb\xbf\x2c\x39\xff\x2b\xa9\x96\x7f\x59\x72" "\xfe\xdf\x48\xb5\xfc\xcb\x92\xf3\xff\x66\xaa\xe5\x5f\x96\x9c\xff\x6b\xa9" "\x96\x7f\x59\x72\xfe\xdf\x4a\xb5\xfc\xcb\x92\xf3\xff\x76\xaa\xe5\x5f\x96" "\x9c\xff\x77\x52\x2d\xff\xb2\xe4\xfc\x5f\x4f\xb5\xfc\xcb\xb2\xf7\xfd\xff" "\x66\xcc\x98\x31\x93\x67\xda\x7e\x66\x02\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x46\x4d\xe3\x74\xe2\xb6\xb7\x11\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x80\xff\xb3\x03\x07\x02\x00\x00\x00\x00\x40\xfe\xaf\x8d\x50\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x85\x1d\x38\x10\x00\x00\x00\x00\x00\xf2" "\x7f\x6d\x84\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x2a\xec\xdd\x6b\x8c\x5c" "\x67\x7d\x06\xf0\x33\x7b\xb1\xd7\x0e\x21\x06\x42\x70\x52\x03\x6b\xc7\x18" "\xe3\x2c\xd9\xf5\x25\xbe\xb4\x75\x31\xe1\xda\x00\xa5\x40\x42\xa1\x17\x6c" "\xd7\xbb\x36\x0b\xbe\xe1\xb5\x4b\xa0\x48\x36\x0d\x94\x48\x18\x15\x55\x54" "\x4d\x3f\xb4\x05\x84\xda\x48\x55\x85\x55\xf1\x81\x22\x4a\xf3\xa1\xea\xe5" "\x53\xd3\x7e\xa0\x5f\x2a\xaa\x4a\x48\x8d\xaa\x10\x05\x54\xa4\xb6\xa2\xd9" "\x6a\xe6\xbc\xef\xeb\x99\xd9\xd9\x99\x5d\xef\x78\x3d\x7b\xde\xdf\x4f\x4a" "\xfe\xde\x9d\x33\x73\xce\x9c\x79\x67\x76\x9f\xb5\x9f\x1d\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xa0\xd9\xd6\x37\xcd\x7c\xae\x56\x14\x45" "\xfd\xbf\xc6\xff\x36\x15\xc5\x8b\xea\x7f\xde\x30\xbe\xa9\x56\xac\xbb\xd5" "\x87\x07\x00\x00\x00\xf4\xc1\xff\x35\xfe\xff\xfc\x1d\xe9\x13\x47\x96\x70" "\xa5\xa6\x6d\xfe\xee\x55\xff\xf8\x8d\xf9\xf9\xf9\xf9\xe2\x03\xc3\xbf\x37" "\xfa\xa5\xf9\xf9\x74\xc1\x78\x51\x8c\xae\x2f\x8a\xc6\x65\xd1\xb5\x7f\xff" "\x60\xad\x79\x9b\xe0\xb1\x62\xac\x36\xd4\xf4\xf1\x50\x8f\xdd\x0f\xf7\xb8" "\x7c\xa4\xc7\xe5\xa3\x3d\x2e\xef\xf5\x53\x8f\xf5\x3d\x2e\x1f\xeb\x71\xf9" "\x82\x13\xb0\xc0\x86\xf2\xe7\x31\x8d\x1b\xdb\xde\xf8\xe3\xa6\xf2\x94\x16" "\x77\x16\xa3\x8d\xcb\xb6\x77\xb8\xd6\x63\xb5\xf5\x43\x43\xf1\x67\x39\x0d" "\xb5\xc6\x75\xe6\x47\x4f\x16\xb3\xc5\xe9\x62\xa6\x98\x6a\xd9\xbe\xdc\xb6" "\xd6\xd8\xfe\xdb\x5b\xeb\xfb\x7a\x7b\x11\xf7\x35\xd4\xb4\xaf\x2d\xf5\x15" "\xf2\xc3\x4f\x9d\x88\xc7\x50\x0b\xe7\x78\x7b\xcb\xbe\xae\xdf\x66\xf4\x83" "\x37\x16\xe3\x3f\xfa\xe1\xa7\x4e\xfc\xc9\xc5\x67\xef\xee\x34\x7b\x9e\x86" "\x96\xdb\x2b\x8f\x73\xe7\xb6\xfa\x71\x7e\x26\x7c\xa6\x3c\xd6\x5a\xb1\x3e" "\x9d\x93\x78\x9c\x43\x4d\xc7\xb9\xa5\xc3\x63\x32\xdc\x72\x9c\xb5\xc6\xf5" "\xea\x7f\x6e\x3f\xce\xe7\x97\x78\x9c\xc3\xd7\x0f\x73\x55\xb5\x3f\xe6\x63" "\xc5\x50\xe3\xcf\x4f\x37\xce\xd3\x48\xf3\x8f\xf5\xd2\x79\xda\x12\x3e\xf7" "\xdf\xf7\x16\x45\x71\xe5\xfa\x61\xb7\x6f\xb3\x60\x5f\xc5\x50\xb1\xb1\xe5" "\x33\x43\xd7\x1f\x9f\xb1\x72\x45\xd6\x6f\xa3\xbe\x94\x5e\x5a\x8c\x2c\x6b" "\x9d\x6e\x5d\xc2\x3a\xad\xcf\xe9\xed\xad\xeb\xb4\xfd\x39\x11\x1f\xff\xad" "\xe1\x7a\x23\x8b\x1c\x43\xf3\xc3\xf4\x83\x4f\xaf\x5b\xf0\xb8\x2f\x77\x9d" "\x46\xf5\x7b\xbd\xd8\x73\xa5\x7d\x0d\xf6\xfb\xb9\x32\x28\x6b\x30\xae\x8b" "\xa7\x1b\x77\xfa\xf1\x8e\x6b\x70\x7b\xb8\xff\x9f\xda\xb1\xf8\x1a\xec\xb8" "\x76\x3a\xac\xc1\x74\xbf\x9b\xd6\xe0\xb6\x5e\x6b\x70\x68\xdd\x70\xe3\x98" "\xd3\x83\x50\x6b\x5c\xe7\xfa\x1a\xdc\xdd\xb2\xfd\x70\x63\x4f\xb5\xc6\x7c" "\x66\x47\xf7\x35\x38\x79\xf1\xcc\xf9\xc9\xb9\x4f\x7c\xf2\xf5\xb3\x67\x8e" "\x9f\x9a\x39\x35\x73\x76\xef\xee\xdd\x53\x7b\xf7\xef\x3f\x78\xf0\xe0\xe4" "\xc9\xd9\xd3\x33\x53\xe5\xff\x6f\xf0\x6c\x0f\xbe\x8d\xc5\x50\x7a\x0e\x6c" "\x0b\xe7\x2e\x3e\x07\x5e\xdb\xb6\x6d\xf3\x52\x9d\xff\x4a\xff\x9e\x87\x63" "\x5d\x9e\x87\x9b\xda\xb6\xed\xf7\xf3\x70\xa4\xfd\xce\xd5\x56\xe7\x09\xb9" "\x70\x4d\x97\xcf\x8d\x87\xeb\x27\x7d\xec\xea\x50\xb1\xc8\x73\xac\xf1\xf8" "\xec\x5a\xf9\xf3\x30\xdd\xef\xa6\xe7\xe1\x48\xd3\xf3\xb0\xe3\xd7\x94\x0e" "\xcf\xc3\x91\x25\x3c\x0f\xeb\xdb\x9c\xdf\xb5\xb4\xef\x59\x46\x9a\xfe\xeb" "\x74\x0c\x37\xeb\x6b\xc1\xa6\xa6\x35\xd8\xfe\xfd\x48\xfb\x1a\xec\xf7\xf7" "\x23\x83\xb2\x06\xc7\xc2\xba\xf8\xd7\x5d\x8b\x7f\x2d\xd8\x12\x8e\xf7\xf1" "\x89\xe5\x7e\x3f\x32\xbc\x60\x0d\xa6\xbb\x1b\x5e\x7b\xea\x9f\x49\xdf\xef" "\x8f\x1d\x6c\x8c\x4e\xeb\xf2\x9e\xfa\x05\xb7\xad\x2b\x2e\xcd\xcd\x5c\xb8" "\xff\xd1\xe3\x17\x2f\x5e\xd8\x5d\x84\xb1\x2a\x5e\xd6\xb4\x56\xda\xd7\xeb" "\xc6\xa6\xfb\x54\x2c\x58\xaf\x43\xcb\x5e\xaf\x47\x66\x5f\xf5\xf8\x3d\x1d" "\x42\xcc\xa6\x70\xae\xc6\x5e\x5f\xff\xdf\xd8\xa2\x8f\x55\x7d\x9b\x7d\xf7" "\x77\x7f\xac\x1a\x5f\xdd\x3a\x9f\xcf\x96\xcf\xee\x29\xc2\xe8\xb3\xd5\x3e" "\x9f\x9d\xbe\x9a\xd7\xcf\x67\xca\x92\x5d\xce\x67\x7d\x9b\xcf\x4c\xae\xfc" "\x7b\xf1\xf4\x90\x36\xbd\xfe\x8e\x2e\xf2\xfa\x1b\x73\xff\x0b\xe5\xfe\xd2" "\x4d\x3d\x36\x3c\x3a\x52\x3e\x7f\x87\xd3\xd9\x19\x6d\x79\x3d\x6e\x7d\xa8" "\x46\x1a\xaf\x5d\xb5\xc6\xbe\x9f\x9f\x5c\xda\xeb\xf1\x68\xf8\x6f\xb5\x5f" "\x8f\xef\xec\xf2\x7a\xbc\xb9\x6d\xdb\x7e\xbf\x1e\x8f\xb6\xdf\xb9\xf8\x7a" "\x5c\xeb\xf5\xd3\x8e\x95\x69\x7f\x3c\xc7\xc2\x3a\x39\x3d\xd5\xfd\xf5\xb8" "\xbe\xcd\xe6\x3d\xcb\x5d\x93\x23\x5d\x5f\x8f\xef\x0d\xb3\x16\xce\xff\xeb" "\x42\x52\x48\xb9\xa8\x69\xed\x2c\xb6\x6e\xd3\xbe\x46\x46\x46\xc3\xfd\x1a" "\x89\x7b\x68\x5d\xa7\x7b\x5b\xb6\x1f\x0d\xd9\xac\xbe\xaf\x27\xf7\xdc\xd8" "\x3a\xdd\x79\x6f\x79\x5b\xc3\xe9\xde\x5d\xb7\x5a\xeb\x74\xbc\x6d\xdb\x7e" "\xaf\xd3\xf4\x7a\xb5\xd8\x3a\xad\xf5\xfa\xe9\xdb\x8d\x69\x7f\x3c\xc7\xc2" "\xba\xb8\x73\x6f\xf7\x75\x5a\xdf\xe6\xa9\x7d\x2b\x7f\xed\xdc\x10\xff\xd8" "\xf4\xda\xb9\xae\xd7\x1a\x1c\x1d\x5e\x57\x3f\xe6\xd1\xb4\x08\xcb\xd7\xfb" "\xf9\x0d\x71\x0d\xde\x5f\x9c\x28\xce\x15\xa7\x8b\xe9\xc6\xa5\xeb\x1a\xeb" "\xa9\xd6\xd8\xd7\xc4\x03\x4b\x5b\x83\xeb\xc2\x7f\xab\xfd\x5a\xb9\xb9\xcb" "\x1a\xdc\xd9\xb6\x6d\xbf\xd7\x60\xfa\x3a\xb6\xd8\xda\xab\x8d\x2c\xbc\xf3" "\x7d\xd0\xfe\x78\x8e\x85\x75\xf1\xc4\x03\xdd\xd7\x60\x7d\x9b\x37\x1f\xe8" "\xef\xf7\xae\x3b\xc3\x67\xd2\x36\x4d\xdf\xbb\xb6\xff\x7c\x6d\xb1\x9f\x79" "\xdd\xd3\x76\x9a\x6e\xe6\xcf\xbc\xea\xc7\xf9\x37\x07\xba\xff\x6c\xb6\xbe" "\xcd\xe9\x83\xcb\xcd\x99\xdd\xcf\xd3\x7d\xe1\x33\xb7\x75\x38\x4f\xed\xcf" "\xdf\xc5\x9e\x53\xd3\xc5\xea\x9c\xa7\xcd\xe1\x38\x9f\x3d\xb8\xf8\x79\xaa" "\x1f\x4f\x7d\x9b\x2f\x1d\x5a\xe2\x7a\x3a\x52\x14\xc5\xe5\x8f\x3d\xd8\xf8" "\x79\x6f\xf8\xfb\x95\xbf\xb8\xf4\xdd\x6f\xb4\xfc\xbd\x4b\xa7\xbf\xd3\xb9" "\xfc\xb1\x07\x9f\xbb\xfd\xe4\xdf\x2e\xe7\xf8\x01\x58\xfb\x5e\x28\xc7\xc6" "\xf2\x6b\x5d\xd3\xdf\x4c\x2d\xe5\xef\xff\x01\x00\x00\x80\x35\x21\xe6\xfe" "\xa1\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xf8\xaf\xc2\x13\xf9\x1f" "\x00\x00\x00\x2a\x23\xe6\xfe\x91\x30\x93\x4c\xf2\xff\xe6\x37\x3f\x3b\xfb" "\xc2\xe5\x22\x35\xf3\xe7\x83\x78\x79\x3a\x0d\x0f\x95\xdb\xc5\x8e\xeb\x54" "\xf8\x78\x7c\xfe\xba\xfa\xe7\x1f\xfc\xda\xcc\x8f\xbf\x75\x79\x69\xfb\x1e" "\x2a\x8a\xe2\x27\x0f\xfd\x66\xc7\xed\x37\x3f\x14\x8f\xab\x34\x1e\x8e\xf3" "\xda\x5b\x5a\x3f\xbf\xf0\x8a\x97\x97\xb4\xff\x63\x8f\x5c\xdf\xae\xb9\xbf" "\xfe\xe5\x70\xfb\xf1\xfe\x2c\x75\x19\x74\xaa\xe0\x4e\x15\x45\xf1\xed\x3b" "\xbe\xd0\xd8\xcf\xf8\x07\xaf\x36\xe6\x53\x0f\x1d\x6b\xcc\xf7\x5e\x79\xfc" "\xb1\xfa\x36\xcf\x1f\x2a\x3f\x8e\xd7\x7f\xe6\x65\xe5\xf6\x7f\x18\xca\xbf" "\x47\x4e\x1e\x6f\xb9\xfe\x33\xe1\x3c\x7c\x3f\xcc\xa9\x77\x74\x3e\x1f\xf1" "\x7a\x5f\xbf\xfa\xba\x2d\x07\xde\x7f\x7d\x7f\xf1\x7a\xb5\x6d\x2f\x6e\xdc" "\xed\x27\x3e\x54\xde\x6e\xfc\x3d\x39\x5f\x7c\xac\xdc\x3e\x9e\xe7\xc5\x8e" "\xff\xaf\x3e\xff\xe4\xd7\xeb\xdb\x3f\xfa\x9a\xce\xc7\x7f\x79\xa8\xf3\xf1" "\x3f\x19\x6e\xf7\x6b\x61\xfe\xcf\x2b\xcb\xed\x9b\x1f\x83\x6f\x5d\x8e\xcb" "\xf0\x72\xf1\xd9\x70\xfc\x71\x7f\xf1\x7a\xf7\x7f\xf5\x3b\x1d\x8f\xff\xda" "\xe7\xca\xed\xcf\xbf\xb5\xdc\xee\x58\x98\x71\xff\x3b\xc3\xc7\xdb\xdf\xfa" "\xec\x6c\xf3\xf9\x7a\xb4\x76\xbc\xe5\x7e\x15\x6f\x2b\xb7\x8b\xfb\x9f\xfa" "\xee\xef\x34\x2e\x8f\xb7\x17\x6f\xbf\xfd\xf8\xc7\x8e\x5e\x6d\x39\x1f\xed" "\xeb\xe3\xa9\x7f\x2e\x6f\x67\xb2\x6d\xfb\xf8\xf9\xb8\x9f\xe8\x2f\xdb\xf6" "\x5f\xbf\x9d\xe6\xf5\x19\xf7\xff\xe4\x6f\x1f\x6b\x39\xcf\xbd\xf6\x7f\xed" "\xbd\xcf\xbc\xb2\x7e\xbb\xed\xfb\xbf\xaf\x6d\xbb\xe1\xb6\xeb\xb7\xff\xc6" "\xa6\x3f\xfa\xec\x17\x3a\xee\x2f\x1e\xcf\x91\x3f\x3f\xdf\x72\x7f\x8e\xbc" "\x27\x3c\x8f\xc3\xfe\x9f\xf8\x50\x58\x8f\xe1\xf2\xff\xbd\xf6\x85\x96\xfd" "\x46\xc7\xde\xd3\xfa\xfa\x13\xb7\xff\xf2\xa6\xcb\x2d\xf7\x27\x7a\xfb\x8f" "\xca\xfd\x5f\x7b\xc3\xa9\xc6\xfc\x8f\xf1\x1f\xff\xc1\x6d\x2f\xba\xfd\xc5" "\x57\x5e\x5d\x3f\x77\x45\xf1\xf4\xfb\xca\xdb\xeb\xb5\xff\x53\x7f\x7c\xae" "\xe5\xf8\xbf\x72\xd7\xae\xc6\xe3\x11\x2f\x8f\x1d\xfd\xf6\xfd\x2f\x26\xee" "\xff\xc2\xc7\x27\xce\x9e\x9b\xbb\x34\x3b\xdd\x74\x56\x1b\xbf\x3b\xe7\x9d" "\xe5\xf1\xac\x1f\xdb\xb0\xb1\x7e\xbc\x77\x84\x67\x42\xfb\xc7\x47\xcf\x5d" "\xfc\xf0\xcc\x85\xf1\xa9\xf1\xa9\xa2\x18\xaf\xee\xaf\xd0\xbb\x61\x5f\x0d" "\xf3\xb9\x72\x5c\x59\xee\xf5\x77\x3d\x12\x1e\xcf\x7b\x7e\xff\xdb\x1b\x77" "\xfc\xd3\xe7\xe3\xe7\xff\xe5\xe1\xf2\xf3\x57\xdf\x51\x7e\xdd\x7a\x6d\xd8" "\xee\x8b\xe1\xf3\x9b\xca\xc7\x6f\xbe\xb6\xc2\xfd\x3f\xb1\xf5\xae\xc6\xf3" "\xbb\xf6\x54\xf9\x71\x4b\x8f\xbd\x0f\xb6\x6c\xff\xcf\x83\x4b\xda\x30\xdc" "\xff\xf6\xef\x0b\xe2\x7a\x3f\xff\xf2\x0f\x37\xce\x43\xfd\xb2\xc6\xd7\x8d" "\xf8\xbc\x5e\xe1\xf1\x7f\x6f\xba\xbc\x9d\x6f\x86\xf3\x3a\x1f\x7e\x33\xf3" "\xb6\xbb\xae\xef\xaf\x79\xfb\xf8\xbb\x11\xae\xbe\xaf\x7c\xbe\xaf\xf8\xfc" "\x85\x97\xb9\xf8\xb8\xfe\x69\x78\xbc\xdf\xf5\xfd\xf2\xf6\xe3\x71\xc5\xfb" "\xfb\xbd\xf0\x7d\xcc\x77\x36\xb7\xbe\xde\xc5\xf5\xf1\xcd\xcb\x43\xed\xb7" "\xdf\xf8\x2d\x1e\x57\xc2\xeb\x49\x71\xa5\xbc\x3c\x6e\x15\xcf\xf7\xd5\xe7" "\xef\xea\x78\x78\xf1\xf7\x90\x14\x57\xee\x6e\x7c\xfc\xbb\xe9\x76\xee\x5e" "\xd6\xdd\x5c\xcc\xdc\x27\xe6\x26\x4f\xcf\x9e\xbd\xf4\xe8\xe4\xc5\x99\xb9" "\x8b\x93\x73\x9f\xf8\xe4\xd1\x33\xe7\x2e\x9d\xbd\x78\xb4\xf1\xbb\x3c\x8f" "\x7e\xa4\xd7\xf5\xaf\xbf\x3e\x6d\x6c\xbc\x3e\x4d\xcf\xec\xdf\x57\x4c\x6d" "\x28\x8a\xe2\x5c\x31\xb5\x0a\x2f\x58\x37\xe7\xf8\xeb\x7f\x5a\xda\xf1\x9f" "\x7f\xe4\xc4\xf4\x81\xa9\x1d\xd3\x33\x27\x8f\x5f\x3a\x79\xf1\x91\xf3\x33" "\x17\x4e\x9d\x98\x9b\x3b\x31\x33\x3d\xb7\xe3\xf8\xc9\x93\x33\x1f\xef\x75" "\xfd\xd9\xe9\xc3\xbb\xf7\x1c\xda\x7b\x60\xcf\xc4\xa9\xd9\xe9\xc3\x07\x0f" "\x1d\xda\x7b\x68\x62\xf6\xec\xb9\xfa\x61\x94\x07\xd5\xc3\xfe\xa9\x8f\x4e" "\x9c\xbd\x70\xb4\x71\x95\xb9\xc3\xfb\x0e\xed\x7e\xe0\x81\x7d\x53\x13\x67" "\xce\x4d\xcf\x1c\x3e\x30\x35\x35\x71\xa9\xd7\xf5\x1b\x5f\x9b\x26\xea\xd7" "\xfe\x8d\x89\x0b\x33\xa7\x8f\x5f\x9c\x3d\x33\x33\x31\x37\xfb\xc9\x99\xc3" "\xbb\x0f\xed\xdf\xbf\xa7\xe7\x6f\x03\x3c\x73\xfe\xe4\xdc\xf8\xe4\x85\x4b" "\x67\x27\x2f\xcd\xcd\x5c\x98\x2c\xef\xcb\xf8\xc5\xc6\xa7\xeb\x5f\xfb\x7a" "\x5d\x9f\x6a\x9a\xfb\xb7\xf2\xfb\xd9\x76\xb5\xf2\x17\xf1\x15\xef\xbe\x6f" "\x7f\xfa\xfd\xac\x75\x5f\xfb\xf4\xa2\x37\x55\x6e\xd2\xf6\x0b\x44\x9f\x0d" "\xbf\x8b\xe6\x1f\x5e\x72\xfe\xe0\x52\x3e\x8e\xb9\x7f\x34\xcc\x24\x93\xfc" "\x0f\x00\x00\x00\x39\x88\xb9\x7f\x5d\x98\x89\xfc\x0f\x00\x00\x00\x95\x11" "\x73\xff\xfa\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xb1\x30\x93\x4c" "\xf2\xbf\xfe\xbf\xfe\xff\xd2\xfa\xff\xe5\xe5\xab\xd4\xff\x4f\xd7\xd3\xff" "\xbf\xb5\xfd\xff\xf3\x1f\x2b\x7b\xa5\x6b\xbd\xff\x1f\xfb\xf3\xfa\xff\x79" "\xb8\xc5\xfd\xff\x15\xef\x5f\xff\x5f\xff\xbf\x7a\xfd\xff\xa5\xf7\xe7\xd7" "\xfa\xf1\xeb\xff\xeb\xff\xb3\xd0\xa0\xf5\xff\x63\xee\xdf\x50\x14\x59\xe6" "\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x1b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c" "\x98\xfb\x6f\x0b\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x7f\x51\x98\x49" "\x26\xf9\x5f\xff\x7f\x49\xfd\xff\x3d\xbd\x0a\x57\xd5\xef\xff\xaf\xea\xfb" "\xff\xeb\xff\x07\xfa\xff\xa5\x15\xf5\xff\xe3\x83\xa3\xff\x9f\x8d\x65\xf7" "\xef\xdf\xff\x70\xcb\x87\xfa\xff\x81\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe" "\x3f\x2b\x36\xba\xe8\x25\xb7\xaa\xff\x1f\x73\xff\xed\x61\x26\x99\xe4\x7f" "\x00\x00\x00\xc8\x41\xcc\xfd\x2f\x0e\x33\x91\xff\x01\x00\x00\xa0\x32\x62" "\xee\xbf\x23\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x53\x98\x49\x26" "\xf9\x5f\xff\xdf\xfb\xff\xeb\xff\xeb\xff\x57\xba\xff\xbf\xd2\xf7\xff\x6f" "\x3a\x18\xfd\xff\xb5\xc1\xfb\xff\x77\xa7\xff\xdf\xc3\x0d\xf7\xff\xc7\xf4" "\xff\xd7\x62\xff\x7f\xb4\xbf\xc7\x3f\xd8\xfd\xff\x9e\x87\xaf\xff\xcf\x4d" "\x31\x68\xef\xff\x1f\x73\xff\x4b\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83" "\x98\xfb\x5f\x1a\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xb2\x30\x13" "\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x3b\xc3\x4c\x32\xc9\xff\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\x9d\xf7\xdf\xfb\xfd\xff\xcb\x3f\xe9\xff\x0f" "\x16\xfd\xff\xee\xf4\xff\x7b\xf0\xfe\xff\x79\xf5\xff\xfb\x7c\xfc\x83\xdd" "\xff\xef\xf7\xfb\xff\x8f\xbe\xa5\xfd\xfa\xfa\xff\x74\x32\x68\xfd\xff\x98" "\xfb\x5f\x1e\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\x7f\x57\x98\x89" "\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x2b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8" "\x8c\x98\xfb\x37\x87\x99\x64\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\x3b\xef\xbf\x77\xff\xbf\xa4\xff\x3f\x58\xf4\xff\xbb\xd3\xff\xef\x41" "\xff\x5f\xff\x5f\xff\x7f\x69\xfd\xff\x0e\xdf\xfc\xea\xff\xd3\xc9\xa0\xf5" "\xff\x63\xee\xbf\x3b\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\x9e" "\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x9f\x0a\x33\x91\xff\x01\x00" "\x00\xa0\x32\x62\xee\xdf\x12\x66\x92\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xcf" "\xab\xff\x7f\xdf\x3a\xfd\x7f\xfd\xff\x6a\xd3\xff\xef\x4e\xff\xbf\x07\xfd" "\x7f\xfd\x7f\xfd\xff\x25\xbe\xff\xff\x42\xcb\xe9\xff\xaf\xef\x75\x63\x54" "\xc6\xa0\xf5\xff\x63\xee\x7f\x65\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10" "\x73\xff\xab\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x5f\x1d\x66\x22" "\xff\x03\x00\x00\x40\x65\xc4\xdc\x3f\x1e\x66\x92\x49\xfe\xd7\xff\xaf\x56" "\xff\xff\xcf\xfe\xfa\x89\x57\x17\xfa\xff\xfa\xff\x3d\xf6\x5f\xd1\xfe\x7f" "\x5c\x06\xfa\xff\x99\xd3\xff\xef\x4e\xff\xbf\x07\xfd\x7f\xfd\x7f\xfd\xff" "\x55\xe9\xff\x93\x8f\x41\xeb\xff\xc7\xdc\xbf\x35\xcc\x24\x93\xfc\x0f\x00" "\x00\x00\x39\x88\xb9\x7f\x5b\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff" "\xbd\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xdb\xc3\x4c\x32\xc9\xff" "\xfa\xff\xd5\xea\xff\x47\xfa\xff\xfa\xff\xdd\xf6\x5f\xd1\xfe\x7f\xa2\xff" "\x9f\x37\xfd\xff\x0e\x9a\x9e\xa4\xfa\xff\x3d\xe8\xff\xeb\xff\x67\xdf\xff" "\x8f\xdf\xfd\xea\xff\xd3\x1f\x83\xd6\xff\x8f\xb9\xff\x35\x61\x26\x99\xe4" "\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x3b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c" "\x98\xfb\x5f\x1b\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x33\xcc\x24" "\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x79\xff\xfa\xff\x6b" "\x93\xfe\x7f\x77\xcb\xed\xff\xaf\xd3\xff\xd7\xff\xd7\xff\xcf\xac\xff\xef" "\xfd\xff\xe9\xaf\x41\xeb\xff\xc7\xdc\xff\xba\x30\x93\x4c\xf2\x3f\x00\x00" "\x00\xe4\x20\xe6\xfe\x5d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xfc\xf7\x9b" "\xe5\xbf\x7b\x95\xff\x01\x00\x00\xa0\x8a\x62\xee\x9f\x08\x33\xc9\x24\xff" "\xeb\xff\xeb\xff\xe7\xd4\xff\xaf\xe9\xff\xeb\xff\xeb\xff\x57\x9e\xfe\x7f" "\x77\xde\xff\xbf\x07\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfa\x6a\xd0\xfa\xff" "\x31\xf7\xbf\x3e\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\xfe\x30" "\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xc9\x30\x13\xf9\x1f\x00\x00\x00" "\x2a\x23\xe6\xfe\xa9\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe\x7f\x4e\xfd\x7f\xef" "\xff\xaf\xff\xaf\xff\x5f\x7d\xfa\xff\xdd\xe9\xff\xf7\xa0\xff\xaf\xff\x5f" "\xb5\xfe\x7f\x51\xe8\xff\x73\x4b\x0d\x5a\xff\x3f\xe6\xfe\xdd\x61\x26\x99" "\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x7b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8" "\x8c\x98\xfb\xf7\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xef\x0b\x33" "\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x77\xde\xbf\xfe\xff" "\xda\xa4\xff\xdf\x5d\xd5\xfa\xff\xf1\xf5\x57\xff\x5f\xff\x7f\x10\x8e\x7f" "\x20\xfb\xff\xde\xff\x9f\x5b\x6c\xd0\xfa\xff\x31\xf7\x3f\x10\x66\x92\x49" "\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xbf\x3f\xcc\x44\xfe\x07\x00\x00\x80\xca" "\x88\xb9\xff\x40\x98\x49\xc8\xff\x9d\xfe\x5d\x37\x00\x00\x00\xb0\xb6\xc4" "\xdc\x7f\x30\xcc\x24\x93\xbf\xff\xd7\xff\xaf\x48\xff\xff\xb7\xfe\xbe\x65" "\xdf\xfa\xff\xfa\xff\xdd\xf6\xdf\x9f\xfe\xff\x06\xfd\xff\x30\xf5\xff\x07" "\x4b\x45\xfb\xff\xed\x4f\x8b\x1b\x56\xb5\xfe\xbf\xf7\xff\xd7\xff\x1f\xa4" "\xe3\xd7\xff\xd7\xff\x67\xa1\x41\xeb\xff\xc7\xdc\x7f\x28\xcc\x24\x93\xfc" "\x0f\x00\x00\x00\x39\x88\xb9\xff\xa7\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c" "\x98\xfb\x7f\x26\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x67\xc3\x4c" "\x32\xc9\xff\xfa\xff\x15\xe9\xff\xb7\xd1\xff\xd7\xff\xef\xb6\x7f\xef\xff" "\xaf\xff\x5f\x65\x15\xed\xff\xf7\x4d\xa5\xfa\xff\x43\xfa\xff\xfa\xff\x83" "\x75\xfc\xfa\xff\xfa\xff\x2c\x74\xf3\xfb\xff\xf1\x4f\x4b\xeb\xff\xc7\xdc" "\x7f\x38\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\xe7\xc2\x4c\xe4" "\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xdf\x10\x66\x22\xff\x03\x00\x00\x40\x65" "\xc4\xdc\x7f\x24\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x7f\x73" "\xfa\xff\x6f\x28\xda\x0d\x62\xff\xbf\xbe\x78\xf4\xff\xab\x45\xff\xbf\xbb" "\x4a\xf5\xff\xbd\xff\xbf\xfe\xff\x80\x1d\xbf\xfe\xbf\xfe\x3f\x0b\x0d\xda" "\xfb\xff\xc7\xdc\xff\xc6\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe" "\x07\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xdf\x14\x66\x22\xff\x03" "\x00\x00\x40\x65\xc4\xdc\xff\xe6\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xf7\xff\xef\xbc\x7f\xfd\xff\xb5\x49\xff\xbf\x3b\xfd\xff\x1e" "\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xab\x41\xeb\xff\xc7\xdc\xff\x96\x30" "\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\xb7\x86\x99\xc8\xff\x00\x00" "\x00\x50\x19\x31\xf7\xbf\x2d\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff" "\xed\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xce\xfb" "\xd7\xff\x5f\x9b\xf4\xff\xbb\xd3\xff\xef\x41\xff\x5f\xff\x5f\xff\x5f\xff" "\x9f\xbe\x1a\xb4\xfe\x7f\xcc\xfd\x3f\x1f\x66\x92\x49\xfe\x07\x00\x00\x80" "\x1c\xc4\xdc\xff\x50\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x3b\xc2" "\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xdf\x19\x66\x92\x49\xfe\xd7\xff" "\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\xbc\x7f\xfd\xff\xb5\x49\xff\xbf\x3b" "\xfd\xff\x1e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xab\x41\xeb\xff\xc7\xdc" "\xff\xae\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\x5f\x08\x33\x91" "\xff\x01\x00\x00\xa0\x32\x62\xee\x7f\x77\x98\x89\xfc\x0f\x00\x00\x00\x95" "\x11\x73\xff\x2f\x86\x99\x64\x92\xff\xf5\xff\xf5\xff\x07\xab\xff\x3f\x7f" "\xb9\xf9\x7a\xfa\xff\xfa\xff\x45\xbf\xfa\xff\xf5\x2b\xe9\xff\x67\x41\xff" "\xbf\x3b\xfd\xff\x1e\x3a\xf4\xff\xd7\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x73" "\xc3\x06\xad\xff\x1f\x73\xff\x7b\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83" "\x98\xfb\xdf\x1b\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xbe\x30\x13" "\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x87\xc3\x4c\x32\xc9\xff\xfa\xff\x59" "\xf6\xff\xd3\x5d\x1e\xbc\xfe\xbf\xf7\xff\xd7\xff\xf7\xfe\xff\xfa\xff\x2b" "\xa3\xff\xdf\x9d\xfe\x7f\x0f\xde\xff\x5f\xff\x5f\xff\x5f\xff\x9f\xbe\x1a" "\xb4\xfe\x7f\xcc\xfd\x8f\x84\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7" "\xbf\x3f\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x97\xc2\x4c\xe4\x7f" "\x00\x00\x00\xa8\x8c\x98\xfb\x3f\x10\x66\x92\x49\xfe\xd7\xff\xcf\xb2\xff" "\x3f\xc0\xef\xff\x5f\xb5\xfe\xff\x48\xcb\xfa\xc8\xa9\xff\x3f\xd6\xf4\x78" "\xa6\x75\xa9\xff\xaf\xff\xbf\x0a\xf4\xff\xbb\xd3\xff\xef\x41\xff\x5f\xff" "\x7f\x90\xfb\xff\x61\x35\x6f\x58\xe4\xfa\xfa\xff\x0c\xa2\x41\xeb\xff\xc7" "\xdc\xff\xc1\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\x5f\x0e\x33" "\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\x95\x30\x13\xf9\x1f\x00\x00\x00" "\x2a\x23\xe6\xfe\x5f\x0d\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff\x7b\xff" "\x7f\xef\xff\xdf\x79\xff\xfa\xff\x6b\x93\xfe\x7f\x77\xfa\xff\x3d\xe8\xff" "\xeb\xff\x0f\x72\xff\xbf\x07\xfd\x7f\x06\xd1\xa0\xf5\xff\x63\xee\xff\xb5" "\x30\x93\x45\x83\xdf\x73\xff\xb5\x84\xbb\x09\x00\x00\x00\x0c\x90\x98\xfb" "\x3f\x14\x66\x92\xc9\xdf\xff\x03\x00\x00\x40\x0e\x62\xee\x3f\x1a\x66\x22" "\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x2c\xcc\x24\x93\xfc\xaf\xff\xdf\xde" "\xff\x8f\xef\xa8\xaa\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xbf\x16\xf5\xaf" "\xff\xff\x8a\xdb\x8b\x42\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x9f" "\x95\x18\xb4\xfe\x7f\xcc\xfd\xc7\xc3\x4c\x32\xc9\xff\x00\x00\x00\x90\x83" "\x98\xfb\x7f\x3d\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x44\x98\x89" "\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x74\x98\x49\x26\xf9\xff\x16\xf6\xff" "\x47\x07\xb3\xff\xef\xfd\xff\x6f\xb4\xff\xff\x13\xfd\x7f\xfd\xff\x40\xff" "\xbf\x33\xfd\xff\xd5\xe1\xfd\xff\xbb\xd3\xff\xef\x41\xff\x5f\xff\x5f\xff" "\x5f\xff\x9f\xbe\x1a\xb4\xfe\x7f\xcc\xfd\x33\x61\x26\x99\xe4\x7f\x00\x00" "\x00\xa8\xb0\xf4\xe3\xe0\x98\xfb\x4f\x86\x99\xc8\xff\x00\x00\x00\x50\x19" "\x31\xf7\x9f\x0a\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\x70\x98\x49" "\x26\xf9\xdf\xfb\xff\xeb\xff\x7b\xff\xff\x5b\xd1\xff\x1f\x69\xd9\x5e\xff" "\xbf\xa4\xff\xaf\xff\xdf\x0f\xfa\xff\xdd\xe9\xff\xf7\xa0\xff\xaf\xff\xaf" "\xff\xaf\xff\x4f\x5f\x0d\x5a\xff\x3f\xe6\xfe\xd9\x30\x93\x4c\xf2\x3f\x00" "\x00\x00\xe4\x20\xe6\xfe\x8f\x84\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7" "\x7f\x34\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x74\x98\x49\x26\xf9" "\x5f\xff\x5f\xff\x3f\xf7\xfe\x7f\xad\x28\xae\x78\xff\x7f\xfd\xff\x4e\xfb" "\xd7\xff\x5f\x9b\xf4\xff\xbb\xd3\xff\xef\x41\xff\x5f\xff\x5f\xff\x5f\xff" "\x9f\xbe\x1a\xb4\xfe\x7f\xcc\xfd\x67\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90" "\x83\x98\xfb\xcf\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x9f\x0b\xf3" "\xff\xd9\xbb\x8f\x26\xb9\xce\xeb\x8e\xc3\x6d\x06\x84\x95\xfd\x11\xbc\xf2" "\xc2\x2b\x2f\xed\x15\xfd\x11\xbc\xf5\xce\x55\x5e\xbb\xca\x92\x28\x2a\x8b" "\xa4\x72\x96\xa8\x9c\x03\x95\x73\xce\x89\xca\x39\xe7\x4c\xe5\x1c\xa9\x48" "\xa9\x0a\x2a\x0e\xce\x39\xc0\x60\x1a\xf7\x22\x34\x66\xee\x7d\xcf\xf3\x6c" "\x8e\x30\x85\x51\xf7\x10\x43\xaa\xfe\x1a\xfe\xea\x16\xfb\x1f\x00\x00\x00" "\x86\x91\xbb\xff\xff\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xef\xde\xff\x6f\x8e" "\xe4\xf9\xff\xfb\x7f\xbf\xfe\xff\x34\xfd\xbf\xfe\x7f\x17\x0e\xf4\xf7\xd7" "\x6c\xff\x7d\xe7\x8b\xc2\xcf\xdb\xff\xff\xdb\xbf\x5f\xff\x3f\xfa\x7f\xfd" "\xbf\xfe\x7f\x92\xfe\x5f\xff\xaf\xff\xe7\x5c\x4b\xeb\xff\x73\xf7\xdf\x2d" "\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x77\x8f\x5b\xec\x7f\x00\x00" "\x00\x18\x46\xee\xfe\x7b\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xf5" "\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfb\xfa\xff\xdb\xf4\xff" "\xfa\xff\x75\xf3\xfc\xff\x69\xfa\xff\x19\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf" "\x4e\x2d\xad\xff\xcf\xdd\x7f\xcf\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72" "\xf7\xdf\x10\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xf7\x8a\x5b\xec\x7f" "\x00\x00\x00\x18\x46\xee\xfe\x7b\xc7\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff" "\x5f\x4b\xff\x7f\xcc\xf3\xff\xcf\xf9\x7a\xf4\xff\xfa\xff\x6d\xf4\xff\xd3" "\xf4\xff\x33\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x9d\x5a\x5a\xff\x9f\xbb\xff" "\x3e\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xbf\x6f\xdc\x62\xff\x03" "\x00\x00\xc0\x30\x72\xf7\xdf\x2f\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb" "\xef\x1f\xb7\x34\xd9\xff\xad\xfb\xff\x13\x67\xde\x47\xd2\xff\xeb\xff\xf7" "\x3e\xb0\xc8\xfe\xff\x90\x9e\xff\xaf\xff\xd7\xff\xaf\xdc\xad\x9b\x33\xff" "\x4c\xd0\xff\x1f\xa4\xff\x9f\x31\xd3\xff\x6f\x36\xfa\xff\x29\x17\xdc\xcf" "\x6f\xff\xf2\xd6\xf3\xfe\xcf\x43\xff\xaf\xff\xe7\xa0\xa5\xf5\xff\xb9\xfb" "\x1f\x10\xb7\xfc\xe7\x66\x73\xec\x52\xbf\x48\x00\x00\x00\x60\x51\x72\xf7" "\x3f\x30\x6e\x69\xf2\xf3\x7f\x00\x00\x00\xe8\x20\x77\xff\x8d\x71\x8b\xfd" "\x0f\x00\x00\x00\xc3\xc8\xdd\x7f\x53\xdc\xd2\x64\xff\xb7\xee\xff\x3d\xff" "\x5f\xff\x1f\xf4\xff\xfa\xff\x6d\xaf\xaf\xff\x5f\x27\xcf\xff\x9f\x76\xf9" "\xfd\xff\xbf\xfe\xd3\xff\xfd\x6f\xdf\xfe\xdf\xf3\xff\xa7\x79\xfe\xff\xae" "\xfb\xff\xbb\xbe\x33\xf4\xff\xac\xdb\xd2\xfa\xff\xdc\xfd\x37\xc7\x2d\x4d" "\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x41\x71\x8b\xfd\x0f\x00\x00\x00\xc3" "\xc8\xdd\xff\xe0\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x48\xdc\xd2" "\x64\xff\xeb\xff\x47\xeb\xff\xaf\xde\xf7\x79\x67\xf5\xff\x7b\xb5\x8b\xfe" "\x5f\xff\xaf\xff\xd7\xff\x8f\x4e\xff\x3f\xcd\xf3\xff\x67\xec\xfd\x63\xee" "\x64\xfd\x52\xff\xaf\xff\xf7\xfc\x7f\xfd\x3f\x97\x67\x69\xfd\x7f\xee\xfe" "\x87\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x61\x71\x8b\xfd\x0f" "\x00\x00\x00\xc3\xc8\xdd\xff\xf0\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee" "\x7f\x44\xdc\xd2\x64\xff\xeb\xff\x47\xeb\xff\xf7\x7f\x9e\xe7\xff\xeb\xff" "\xb7\xbd\xbe\xfe\x5f\xff\x3f\x32\xfd\xff\x34\xfd\xff\x8c\x51\x9e\xff\x7f" "\x89\xdf\x35\x47\xdd\xcf\x5f\xae\xa3\x7e\xff\xfa\x7f\xfd\x3f\x07\x2d\xad" "\xff\xcf\xdd\xff\xc8\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x2a" "\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x1f\x1d\xb7\xd8\xff\x00\x00\x00" "\x30\x8c\xdc\xfd\x8f\x89\x5b\x9a\xec\x7f\xfd\xbf\xfe\x7f\x1d\xfd\x7f\xbe" "\x82\xfe\x5f\xff\x7f\xe5\xfb\xff\xa4\xff\x5f\x27\xfd\xff\x34\xfd\xff\x8c" "\x51\xfa\xff\x4b\x74\xd4\xfd\xfc\xda\xdf\xbf\xfe\x5f\xff\xcf\x41\x4b\xeb" "\xff\x73\xf7\x3f\x36\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x8f\x8b" "\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xc7\xc7\x2d\xf6\x3f\x00\x00\x00" "\x0c\x23\x77\xff\x13\xe2\x96\x26\xfb\x5f\xff\xaf\xff\x5f\x47\xff\xef\xf9" "\xff\xfa\x7f\xcf\xff\xd7\xff\x5f\x18\xfd\xff\x34\xfd\xff\x0c\xfd\xbf\xfe" "\x5f\xff\xaf\xff\x67\xa7\x96\xd6\xff\xe7\xee\xbf\x25\x6e\x69\xb2\xff\x01" "\x00\x00\xa0\x83\xdc\xfd\x4f\x8c\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe" "\x27\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x93\xe3\x96\x26\xfb\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xdb\x5f\x5f\xff\xbf\x4e\xfa\xff\x69" "\xfa\xff\x19\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x4e\x2d\xa8\xff\x3f\xeb\xb3" "\x4e\x6c\x9e\x12\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xa7\xc6\x2d" "\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xd3\xe2\x16\xfb\x1f\x00\x00\x00\x86" "\x91\xbb\xff\xe9\x71\x4b\x93\xfd\xaf\xff\x5f\x4c\xff\xbf\x97\xf3\x8d\xd5" "\xff\x9f\xdc\x6c\x36\xfa\xff\x4d\xd3\xfe\xff\xe4\x59\x7f\x9e\xf5\x7d\xa9" "\xff\xd7\xff\x1f\x02\xfd\xff\x34\xfd\xff\x0c\xfd\xbf\xfe\x5f\xff\xaf\xff" "\x67\xa7\x16\xd4\xff\xef\xfd\x3a\x77\xff\x33\xe2\x96\x26\xfb\x1f\x00\x00" "\x00\x3a\xc8\xdd\xff\xcc\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x56" "\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x3b\x6e\x69\xb2\xff\xf5\xff" "\x8b\xe9\xff\xf7\x8c\xd5\xff\x7b\xfe\xff\xb9\xdf\x1f\x9d\xfa\x7f\xcf\xff" "\x3f\x48\xff\x7f\x38\xf4\xff\xd3\xf4\xff\x33\xf4\xff\xfa\x7f\xfd\xbf\xfe" "\x9f\x9d\x5a\x5a\xff\x9f\xbb\xff\x39\x71\xd3\xb1\x6b\x2f\xf9\x4b\x04\x00" "\x00\x00\x16\x26\x77\xff\x73\xe3\x96\x26\x3f\xff\x07\x00\x00\x80\x0e\x72" "\xf7\x3f\x2f\x6e\xb1\xff\x01\x00\x00\x60\xa5\x6e\x39\xf0\x91\xdc\xfd\xcf" "\x8f\x5b\x9a\xec\x7f\xfd\xff\x6e\xfb\xff\x63\x67\x7d\x4c\xff\xaf\xff\x3f" "\xf7\xfb\x43\xff\xaf\xff\xd7\xff\x5f\x79\x4b\xea\xff\xaf\xd6\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xbf\xfe\xbf\xb9\xa5\xf5\xff\xb9\xfb\x5f\x10\xb7\x34" "\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x5b\xe3\x16\xfb\x1f\x00\x00\x00\x86" "\x91\xbb\xff\x85\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xa2\xb8\xa5" "\xc9\xfe\xd7\xff\x7b\xfe\xbf\xfe\x5f\xff\xaf\xff\xdf\xfe\xfa\xfa\xff\x75" "\x5a\x52\xff\xef\xf9\xff\xfa\x7f\xfd\xbf\xfe\xff\x22\xfb\xff\xe3\x67\xfe" "\xa3\xfe\x9f\x31\x5c\x44\xff\x7f\xea\xd4\xa9\x1b\xaf\x78\xff\x9f\xbb\xff" "\xc5\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x49\xdc\x62\xff\x03" "\x00\x00\xc0\x30\x72\xf7\xbf\x34\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb" "\x5f\x16\xb7\x34\xd9\xff\xfa\xff\xa6\xfd\x7f\x7e\xab\xaf\xab\xff\xbf\x69" "\xb3\xd1\xff\xeb\xff\xf5\xff\xfa\xff\x69\xfa\xff\x69\xfa\xff\x19\xfa\x7f" "\xfd\xbf\xe7\xff\xeb\xff\xd9\xa9\xa5\x3d\xff\x3f\x77\xff\xcb\xe3\x96\x26" "\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x8a\xb8\xc5\xfe\x07\x00\x00\x80\x61" "\xe4\xee\x7f\x65\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x2a\x6e\x69" "\xb2\xff\xf5\xff\x4d\xfb\x7f\xcf\xff\xd7\xff\xeb\xff\x0f\xbb\xff\xbf\x73" "\xa3\xff\x3f\x14\xab\xe8\xff\x4f\x9e\xff\xf5\x97\xde\xff\xdf\xac\xff\xd7" "\xff\x4f\x68\xd7\xff\xff\xd7\x7f\xec\xfb\xa5\xfe\x5f\xff\xcf\x41\x4b\xeb" "\xff\x73\xf7\xbf\x3a\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xaf\x89" "\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xd7\xc6\x2d\xf6\x3f\x00\x00\x00" "\x0c\x23\x77\xff\xeb\xe2\xa6\x6b\x9a\xec\x7f\xfd\xff\xc2\xfa\xff\x8d\xfe" "\x5f\xff\x7f\xe6\xf3\xf4\xff\xa7\x0d\xd2\xff\xcf\x3d\xff\xff\xd8\x66\xb3" "\xd1\xff\xef\xc0\x2a\xfa\xff\x09\x4b\xef\xff\x77\xf3\xfc\xff\x73\xff\x2e" "\x3f\x43\xff\xaf\xff\x5f\xf3\xfb\xd7\xff\xeb\xff\x39\x68\x69\xfd\x7f\xee" "\xfe\xd7\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x0d\x71\x8b\xfd" "\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xc6\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4" "\xee\x7f\x53\xdc\xd2\x64\xff\xeb\xff\x17\xd6\xff\x7b\xfe\xbf\xfe\x5f\xff" "\xbf\xfb\xfe\xff\xe6\x55\xf4\xff\x9e\xff\xbf\x23\xfa\xff\x69\xcb\xe8\xff" "\xcf\x4f\xff\xaf\xff\x5f\xf3\xfb\xd7\xff\xeb\xff\xb9\x70\x47\xd5\xff\xe7" "\xee\x7f\x73\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xdf\x12\xb7\xd8" "\xff\x00\x00\x00\x30\x8c\xdc\xfd\x6f\x8d\x5b\xec\x7f\x00\x00\x00\x18\x46" "\xee\xfe\xb7\xc5\x2d\x4d\xf6\xff\x95\xec\xff\x8f\xcf\xbc\xb6\xfe\x7f\x7d" "\xfd\x7f\xbe\x4f\xfd\xff\x58\xfd\xff\xf1\xc5\xf5\xff\x27\xf6\xfd\xf7\x35" "\x79\xfe\xbf\xfe\x7f\x47\xf4\xff\xd3\xf4\xff\x33\xf4\xff\xfa\x7f\xfd\xff" "\x2d\xfa\x7f\x76\x69\x69\xcf\xff\xcf\xdd\xff\xf6\xb8\xa5\xc9\xfe\x07\x00" "\x00\x80\x0e\x72\xf7\xbf\x23\x6e\xfd\x5f\xb7\xf6\x3f\x00\x00\x00\x0c\x23" "\x77\xff\x3b\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x5d\x71\x4b\x93" "\xfd\xef\xf9\xff\xfa\x7f\xcf\xff\xd7\xff\x0f\xff\xfc\x7f\xfd\x7f\x2b\xfa" "\xff\x69\xfa\xff\x19\xfa\x7f\xfd\xbf\xfe\xdf\xf3\xff\xd9\xa9\xa5\xf5\xff" "\xb9\xfb\xdf\x1d\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xf7\xc4\x2d" "\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x7b\xe3\x16\xfb\x1f\x00\x00\x00\x86" "\x91\xbb\xff\xb6\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff" "\xe9\x3f\x43\xfd\xff\x18\xf4\xff\xd3\x0e\xa7\xff\x3f\xa9\xff\xd7\xff\x57" "\x3f\xff\x0f\xf1\x77\x81\xfe\x5f\xff\x3f\xf7\xf9\x8c\x69\x69\xfd\x7f\xee" "\xfe\xf7\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xfd\x71\x8b\xfd" "\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x81\xb8\xc5\xfe\x07\x00\x00\x80\x55\xba" "\x66\xcb\xc7\x72\xf7\x7f\x30\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xbf\xfd\xf5\xf5\xff\xeb\x74\x24\xfd\x7f\x7e\x53\xe8\xff\x3d\xff" "\x3f\xf4\xe9\xff\xff\x79\xdf\xaf\xd6\xf6\xfc\xff\x73\xff\xf7\x4b\xff\xaf" "\xff\x67\xf7\x96\xd6\xff\xe7\xee\xff\x50\xdc\xd2\x64\xff\x03\x00\x00\x40" "\x07\xb9\xfb\x3f\x1c\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x1f\x89\x5b" "\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x8f\xc6\x2d\x4d\xf6\xbf\xfe\x5f\xff" "\xaf\xff\xd7\xff\xeb\xff\xb7\xbf\xbe\xfe\x7f\x9d\x3c\xff\x7f\x9a\xfe\x7f" "\x86\xfe\xff\x48\x9f\x9f\xbf\xf6\xf7\xaf\xff\xd7\xff\x73\xd0\xd2\xfa\xff" "\xdc\xfd\x1f\x8b\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xc7\xe3\x16" "\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x13\x71\x8b\xfd\x0f\x00\x00\x00\xc3" "\xd8\xdb\xfd\x19\x97\x35\xdc\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf" "\xfe\xfa\xfa\xff\x75\xd2\xff\x4f\xd3\xff\xcf\xd0\xff\xeb\xff\xf5\xff\xfa" "\x7f\x76\x6a\x69\xfd\xff\x27\xf7\x3e\xeb\xc4\xe6\x53\x71\x4b\x93\xfd\x0f" "\x00\x00\x00\x1d\xe4\xee\xff\x74\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7" "\x7f\x26\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x3f\x1b\xb7\x34\xd9\xff" "\xfa\x7f\xfd\xff\x3a\xfa\xff\x53\xa7\x4e\xdd\xa8\xff\xd7\xff\xef\xff\x7a" "\xce\xf4\xff\xb7\xeb\xff\x29\xfa\xff\x69\xfa\xff\x19\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xcf\x4e\x2d\xad\xff\xcf\xdd\xff\xb9\xb8\xa5\xc9\xfe\x07\x00\x00" "\x80\x0e\x72\xf7\x7f\x3e\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xbf\x10" "\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x5f\x8c\x5b\x9a\xec\x7f\xfd\xff" "\x02\xfa\xff\x13\xfa\x7f\xcf\xff\xd7\xff\x6f\x3c\xff\x5f\xff\xbf\x23\xfa" "\xff\x69\xfa\xff\x19\x23\xf6\xff\x27\x2e\xfc\xcb\x3f\xea\x7e\xfe\x72\x1d" "\xf5\xfb\xd7\xff\xeb\xff\x39\x68\x69\xfd\x7f\xee\xfe\x2f\xc5\x2d\x4d\xf6" "\x3f\x00\x00\x00\x74\x90\xbb\xff\xcb\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8" "\xdd\xff\x95\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x6a\xdc\xd2\x64" "\xff\xeb\xff\x0f\xaf\xff\xbf\xeb\xaf\x5d\x97\xe7\xff\x9f\xdc\x6c\x7f\xff" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\x7f\xa5\xe9\xff\xa7\xe9\xff\x67\x8c\xd8\xff" "\x5f\x84\xa3\xee\xe7\xd7\xfe\xfe\xf5\xff\xfa\x7f\x0e\x5a\x5a\xff\x9f\xbb" "\xff\x6b\x71\xcb\xfe\xe1\x77\xed\xc5\x7d\x95\x00\x00\x00\xc0\x92\xe4\xee" "\xff\x7a\xdc\xd2\xe4\xe7\xff\x00\x00\x00\xd0\x41\xee\xfe\x6f\xc4\x2d\xf6" "\x3f\x00\x00\x00\x0c\x23\x77\xff\x37\xe3\x96\x26\xfb\x5f\xff\xbf\x80\xe7" "\xff\x0f\xd8\xff\x7b\xfe\xff\xf6\xef\x0f\xfd\xff\xa2\xfb\xff\xab\xf4\xff" "\x63\xd0\xff\x4f\xd3\xff\xcf\xd0\xff\xeb\xff\xf5\xff\x3b\xea\xff\xf3\xbb" "\x59\xff\xdf\xdd\xd2\xfa\xff\xdc\xfd\xdf\x8a\x5b\x9a\xec\x7f\x00\x00\x00" "\xe8\x20\x77\xff\xb7\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x3b\x71" "\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\x7f\x7b\xdc\x72\xd6\xfe\xdf\xd6\x76" "\x8f\x42\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xdb\x5f\x5f\xff\xbf\x4e\xfa" "\xff\x69\x17\xda\xff\x1f\xdf\x5c\x5e\xff\x9f\xf4\xff\xfa\x7f\xfd\x7f\xd7" "\xfe\xdf\xf3\xff\x39\x6d\x69\xfd\x7f\xee\xfe\xef\xc6\x2d\x7e\xfe\x0f\x00" "\x00\x00\xab\x73\xed\x79\x3e\x9e\xbb\xff\x7b\x71\x8b\xfd\x0f\x00\x00\x00" "\xc3\xc8\xdd\xff\xfd\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x41\xdc" "\x72\xc7\x55\x47\xf5\x96\x0e\x95\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xb7" "\xbf\xbe\xfe\x7f\x9d\xf4\xff\xd3\x3c\xff\x7f\x86\xfe\x7f\x17\xfd\xfc\x75" "\xfa\xff\x31\xfa\xff\xcd\x46\xff\xcf\xe5\x5b\x5a\xff\x9f\xbb\xff\x87\x71" "\x8b\x9f\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x28\x6e\xb1\xff\x01\x00\x00" "\x60\x18\xb9\xfb\x7f\x1c\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x3f\x89" "\x5b\x9a\xec\x7f\xfd\xbf\xfe\xff\x32\xfb\xff\xbd\x34\x53\xff\x7f\x9a\xfe" "\xff\x34\xfd\xff\x76\xfa\xff\xc3\xa1\xff\x9f\xa6\xff\x9f\xa1\xff\xf7\xfc" "\x7f\xfd\xbf\xe7\xff\xb3\x53\x4b\xeb\xff\x73\xf7\xff\x34\x6e\x69\xb2\xff" "\x01\x00\x00\xa0\x83\xdc\xfd\x3f\x8b\x5b\xec\x7f\x00\x00\x00\x18\x46\xee" "\xfe\x9f\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x2f\xe2\x96\x26\xfb" "\xff\xc8\xfa\xff\xf8\x4b\xad\xff\x5f\x7d\xff\xef\xf9\xff\xfa\x7f\xfd\xbf" "\xfe\x7f\x51\xf4\xff\xd3\xf4\xff\x33\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x9d" "\x5a\x5a\xff\x9f\xbb\xff\x97\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee" "\xff\x55\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x3a\x6e\xb1\xff\x01" "\x00\x00\x60\x18\xb9\xfb\x7f\x13\xb7\x34\xd9\xff\x9e\xff\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\xdb\x5f\x5f\xff\xbf\x4e\xfa\xff\x69\xfa\xff\xed\xea\x0f" "\x4a\xff\xaf\xff\xd7\xff\xeb\xff\xd9\xa9\xa5\xf5\xff\xb9\xfb\x7f\x1b\xb7" "\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xdf\xc5\x2d\xf6\x3f\x00\x00\x00" "\x0c\x23\x77\xff\x1d\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xfb\xb8" "\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf6\xd7\xd7\xff\xaf" "\x93\xfe\x7f\xda\x51\xf6\xff\xff\xfd\x8f\xf3\x2f\xeb\xf9\xff\x47\xde\xff" "\xe7\x5b\xd0\xff\xeb\xff\xf5\xff\xec\xc4\xd2\xfa\xff\xdc\xfd\x7f\x88\x5b" "\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x1f\xe3\x16\xfb\x1f\x00\x00\x00" "\x86\x91\xbb\xff\x4f\x71\x4b\xec\xff\x7f\xb9\x61\xb7\xff\xde\x1d\x00\x00" "\x00\x70\xf8\x72\xf7\xff\x39\x6e\x69\xf2\xf3\xff\x99\xfe\xff\x78\xfd\x46" "\xfd\xff\x24\xfd\xff\xfe\xf7\xaf\xff\xdf\xfe\xfd\xa1\xff\xd7\xff\xeb\xff" "\xaf\x3c\xfd\xff\x34\xcf\xff\x9f\xa1\xff\xf7\xfc\x7f\xfd\xbf\xfe\x9f\x9d" "\x5a\x5a\xff\x9f\xbb\xff\x2f\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee" "\xbf\x33\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xff\x1a\xb7\xd8\xff\x00" "\x00\x00\x30\x8c\xdc\xfd\x7f\x8b\x5b\x9a\xec\x7f\xcf\xff\x5f\x53\xff\x7f" "\x9d\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x67\xe8\xff\xa7\xe9\xff\x67\xe8" "\xff\xf5\xff\xfa\x7f\xfd\x3f\x3b\xb5\xb4\xfe\x3f\x77\xff\xdf\x03\x00\x00" "\xff\xff\x44\x68\x5b\xd8", 24936); syz_mount_image(/*fs=*/0x200000000000, /*dir=*/0x2000000000c0, /*flags=*/0, /*opts=*/0x200000000280, /*chdir=*/0, /*size=*/0x6168, /*img=*/0x200000006400); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); setup_cgroups(); const char* reason; (void)reason; for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); do_sandbox_none(); } } sleep(1000000); return 0; }