// https://syzkaller.appspot.com/bug?id=f67dc02e17c08c6182702aa9df980d049359f31b // 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 #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; 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; } //% 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"); } 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; } static void setup_common() { 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)) { } if (symlink("/dev/binderfs", "./binderfs")) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setsid(); 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); setup_common(); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); setup_binderfs(); loop(); exit(1); } uint64_t r[1] = {0xffffffffffffffff}; void loop(void) { intptr_t res = 0; memcpy((void*)0x20005e00, "jfs\000", 4); memcpy((void*)0x20005e40, "./file0\000", 8); memcpy( (void*)0x2000de40, "\x78\x9c\xec\xdd\xcb\x6f\x1d\x57\x1d\x07\xf0\xdf\xdc\x97\x1f\xa1\x69\xd4" "\x45\x55\x22\x84\xd2\xb4\x3c\x4a\x69\x9e\x25\x04\x0a\xb4\x5d\xc0\x82\x0d" "\x0b\x94\x2d\x4a\xe4\xba\x55\x44\x0a\x28\x09\x28\xad\x22\xe2\xca\x1b\x16" "\xfc\x11\x20\x24\x96\x08\xb1\x64\xc5\x1f\xd0\x05\x5b\x76\xfc\x01\x44\x8a" "\x91\x40\x5d\x31\x68\xec\x73\x9c\xf1\xe4\x3a\xd7\x69\xea\x3b\xb6\xcf\xe7" "\x23\xd9\x33\xbf\x39\x33\xbe\x67\xf2\xbd\xcf\xcc\xcc\x3d\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc4\x0f\x7f\xf0\xe3\xf3\x55\x44" "\x5c\xfd\x55\x5a\x70\x22\xe2\x73\x31\x8c\x18\x44\x2c\x35\xf5\xa9\x38\xd5" "\xdd\xe6\x85\xd8\x6c\x8e\xe7\x23\x62\xbc\x10\xd1\x6c\xbf\xf9\xeb\xd9\x88" "\xd7\x23\xe2\xe3\xe3\x11\x0f\x36\xee\xae\x34\x8b\x2f\xec\xb1\x1f\xdf\xff" "\xf3\x3f\xfe\xf0\x93\x63\x3f\xfa\xfb\x9f\xc6\x67\xff\xfb\x97\xdb\xc3\x37" "\x76\x5b\xef\xce\x9d\xdf\xfe\xe7\xaf\xf7\x3e\xdd\xbe\x02\x00\x00\x40\xa9" "\xea\xba\xae\xab\xcd\x8f\xf9\x11\x27\x23\x62\x94\x3e\xdb\x03\x00\x47\x5f" "\x7e\xfd\xaf\x93\xbc\x5c\xad\x56\xab\xd5\x6a\xf5\xd1\xab\xdb\xea\xe9\xee" "\xb5\x8b\x88\x58\x6b\x6f\xd3\xbc\x67\x70\x38\x1e\x00\x0e\x99\xb5\xf8\xa4" "\xef\x2e\xd0\x23\xf9\x17\x6d\x14\x11\xc7\xfa\xee\x04\x70\xa0\x55\x7d\x77" "\x80\x7d\xf1\x60\xe3\xee\x4a\x95\xf2\xad\xda\xaf\x07\xe9\xaa\x8f\x7c\x2e" "\xc8\x8e\xfc\xd7\xaa\xed\xeb\x3b\x76\x9b\xce\xd2\x3d\xc7\x64\x5e\xf7\xaf" "\xf5\x18\xc6\x73\xbb\xf4\x67\x69\x4e\x7d\x38\x48\x72\xfe\x83\x6e\xfe\x57" "\xb7\xda\x27\x69\xbd\xfd\xce\x7f\x5e\x76\xcb\x7f\xb2\x75\xe9\x53\x71\x72" "\xfe\xc3\x6e\xfe\x1d\x47\x27\xff\xc1\xd4\xfc\x4b\x95\xf3\x1f\x3d\x51\xfe" "\x43\xf9\x03\x00\x00\x00\x00\xc0\x01\x96\xff\xff\xff\x44\xcf\xc7\x7f\x17" "\x9e\x7e\x57\xf6\xe4\x71\xc7\x7f\x1f\xf9\xa2\x43\x00\x00\x00\x00\x00\x00" "\x00\x38\x24\xf6\x30\xfe\x5f\xc4\xd2\xa9\xed\x4b\x63\x47\x9d\xf1\xff\xb6" "\x19\xff\x0f\x00\x00\x00\x0e\xac\xe6\xb3\x7a\xe3\x77\xc7\x1f\x2e\xdb\xed" "\xbb\xd8\x9a\xe5\x57\xaa\x88\x67\x3a\xeb\x03\x85\x49\x17\xcb\x2c\xf7\xdd" "\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x28\xc9\x68\xeb\x1c\xde\x2b" "\x55\xc4\x38\x22\x9e\x59\x5e\xae\xeb\xba\xf9\x69\xeb\xd6\x4f\xea\x69\xb7" "\x3f\xec\x4a\xdf\x7f\x28\x59\xdf\x4f\xf2\x00\x00\xb0\xe5\xe3\xe3\xed\x6b" "\xf9\x17\xb7\x7f\x5f\x49\xdf\xf5\x37\x5e\x5e\x5e\xae\xeb\xc5\xa5\xe5\x7a" "\xb9\x5e\x5a\xc8\xef\x67\x27\x0b\x8b\xf5\x52\xeb\x73\x6d\x9e\x36\xcb\x16" "\x26\x7b\x78\x43\x3c\x9a\xd4\xcd\x1f\x5b\x6c\x6d\xd7\x36\xeb\xf3\xf2\xac" "\xf6\xee\xdf\x6b\x6e\x6b\x52\x0f\xf7\xd0\xb1\xf9\xe8\x33\x71\x00\x88\xd8" "\x7a\x35\x7a\xe0\x15\xe9\x88\xa9\xeb\x67\xa3\xef\x77\x39\x1c\x0e\x1e\xff" "\x47\x8f\xc7\x3f\x7b\xd1\xf7\xfd\x14\x00\x00\x00\xd8\x7f\x75\x5d\xd7\x55" "\xfa\x3a\xef\x93\xe9\x98\xff\xa0\xef\x4e\x01\x00\x73\x91\x5f\xff\xbb\xc7" "\x05\xd4\x6a\xb5\x5a\xad\x56\x1f\xbd\xba\xad\x9e\xee\x5e\xbb\x88\x88\xb5" "\xf6\x36\xcd\x7b\x06\xc3\xf1\x03\xc0\x21\xb3\x16\x9f\xf4\xdd\x05\x7a\x24" "\xff\xa2\x8d\x22\xe2\x85\xbe\x3b\x01\x1c\x68\x55\xdf\x1d\x60\x5f\x3c\xd8" "\xb8\xbb\x52\xa5\x7c\xab\xf6\xeb\x41\x1a\xdf\x3d\x9f\x0b\xb2\x23\xff\xb5" "\x6a\x73\xbb\xbc\xfd\xb4\xe9\x2c\xdd\x73\x4c\xe6\x75\xff\x5a\x8f\x61\x3c" "\xb7\x4b\x7f\x9e\x9f\x53\x1f\x0e\x92\x9c\xff\xa0\x9b\xff\xd5\xad\xf6\x49" "\x5a\x6f\xbf\xf3\x9f\x97\xdd\xf2\x6f\xf6\xf3\x44\x0f\xfd\xe9\x5b\xce\x7f" "\xd8\xcd\xbf\xe3\xe8\xe4\x3f\x98\x9a\x7f\xa9\x72\xfe\xa3\x27\xca\x7f\x28" "\x7f\x00\x00\x00\x00\x00\x38\xc0\xf2\xff\xff\x9f\x70\xfc\x37\xef\x32\x00" "\x00\x00\x00\x00\x00\x00\x1c\x3a\x0f\x36\xee\xae\xe4\xeb\x5e\xf3\xf1\xff" "\x2f\x4c\x59\xcf\xf5\x9f\x47\x53\xce\xbf\x92\x7f\x91\x72\xfe\x83\x4e\xfe" "\x5f\xed\xac\x37\x6c\xcd\xdf\x7f\xfb\x61\xfe\xff\xde\xb8\xbb\xf2\xc7\xdb" "\xff\xfa\x7c\x9e\xee\x35\xff\x85\x3c\x53\xa5\x7b\x56\x95\xee\x11\x55\xba" "\xa5\x6a\x94\xa6\x4f\xb3\x77\x8f\x5a\x1f\x0f\x27\xcd\x2d\x8d\xab\xc1\x70" "\x94\xce\xf9\xa9\xc7\xef\xc6\xf5\xb8\x11\xab\x71\x6e\xc7\xba\x83\xf4\xef" "\xf1\xb0\xfd\xfc\x8e\xf6\xa6\xa7\xe3\x1d\xed\x17\x76\xb4\x8f\x1e\x69\xbf" "\xb8\xa3\x7d\x9c\xbe\x77\xa0\x5e\xca\xed\x67\x62\x25\x7e\x1e\x37\xe2\x9d" "\xcd\xf6\xa6\x6d\x61\xc6\xfe\x2f\xce\x68\xaf\x67\xb4\xe7\xfc\x87\x1e\xff" "\x45\xca\xf9\x8f\x5a\x3f\x4d\xfe\xcb\xa9\xbd\xea\x4c\x1b\xf7\x3f\x1a\x3c" "\xf2\xb8\x6f\x4f\xa7\xdd\xce\x5b\xd7\xbf\xf8\x9b\x73\xfb\xbf\x3b\x33\xad" "\xc7\x70\x7b\xdf\xda\x9a\xfd\x3b\xdd\x43\x7f\x36\xff\x4d\x8e\x4d\xe2\x97" "\xb7\x56\x6f\x9e\xb9\x73\xed\xf6\xed\x9b\xe7\x23\x4d\x76\x2c\xbd\x10\x69" "\xf2\x19\xcb\xf9\x8f\xd3\xcf\xf6\xf3\xff\x4b\x5b\xed\xf9\x79\xbf\xfd\x78" "\xbd\xff\xd1\xe4\x89\xf3\x3f\x28\xd6\x63\xb4\x6b\xfe\x2f\xb5\xe6\x9b\xfd" "\x7d\x65\xce\x7d\xeb\x43\xce\x7f\x92\x7e\x72\xfe\xef\xa4\xf6\xe9\x8f\xff" "\xc3\x9c\xff\xee\x8f\xff\x57\x7b\xe8\x0f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x3c\x4e\x5d\xd7\x9b\x97\x88\xbe\x15\x11\x97\xd2\xf5\x3f" "\x7d\x5d\x9b\x09\x00\xcc\x57\x7e\xfd\xaf\x93\xbc\x5c\xad\x56\xab\xd5\x6a" "\xf5\xd1\xab\xdb\xea\xe9\xde\x6c\x17\x11\xf1\xb7\xf6\x36\xcd\x7b\x86\x5f" "\x4f\xfb\x63\x00\xc0\x41\xf6\xbf\x88\xf8\x67\xdf\x9d\xa0\x37\xf2\x2f\x58" "\xfe\xbe\xbf\x66\xfa\x72\xdf\x9d\x01\xe6\xea\xd6\x07\x1f\xfe\xf4\xda\x8d" "\x1b\xab\x37\x6f\xf5\xdd\x13\x00\x00\x00\x00\x00\x00\x00\xe0\xd3\xca\xe3" "\x7f\x9e\x6a\x8d\xff\xfc\x72\x44\x9c\xe8\xac\xb7\x63\xfc\xd7\xb7\xe3\xd4" "\xd3\x8e\xff\x39\xca\x33\xdb\x03\x8c\x7e\xc6\x03\x7d\xef\x62\x7d\x30\x19" "\x0e\x5a\xc3\x8d\xbf\x18\x8f\x1f\xff\xfb\x74\x3c\x7e\xfc\xef\xd1\x8c\xdb" "\x1b\xcf\x68\x9f\xcc\x68\x5f\x98\xd1\xbe\x38\xa3\x7d\xea\x85\x1e\x2d\x39" "\xff\x17\x5b\xe3\x9d\x37\xf9\x9f\xec\x0c\xbf\x5e\xc2\xf8\xaf\xdd\x31\xef" "\x4b\x90\xf3\x3f\xdd\xba\x3f\x37\xf9\x7f\xa5\xb3\x5e\x3b\xff\xfa\xf7\x87" "\x39\xff\xc1\x8e\xfc\xcf\xde\x7e\xff\x17\x67\x6f\x7d\xf0\xe1\x6b\xd7\xdf" "\xbf\xf6\xde\xea\x7b\xab\x3f\xbb\x78\xfe\xfc\xb9\x8b\x97\x2e\x5d\xbe\x7c" "\xf9\xec\xbb\xd7\x6f\xac\x9e\xdb\xfa\xdd\x63\x8f\xf7\x57\xce\x3f\x8f\x7d" "\xed\x3c\xd0\xb2\xe4\xfc\x73\xe6\xf2\x2f\x4b\xce\xff\x4b\xa9\x96\x7f\x59" "\x72\xfe\x5f\x4e\xb5\xfc\xcb\x92\xf3\xcf\xef\xf7\xe4\x5f\x96\x9c\x7f\xfe" "\xec\x23\xff\xb2\xe4\xfc\x5f\x49\xb5\xfc\xcb\x92\xf3\xff\x5a\xaa\xe5\x5f" "\x96\x9c\xff\xab\xa9\x96\x7f\x59\x72\xfe\x5f\x4f\xb5\xfc\xcb\x92\xf3\x7f" "\x2d\xd5\xf2\x2f\x4b\xce\xff\x4c\xaa\xe5\x5f\x96\x9c\xff\xd9\x54\xcb\xbf" "\x2c\x39\xff\x7c\x84\x4b\xfe\x65\xc9\xf9\xe7\x33\x1b\xe4\x5f\x96\x9c\xff" "\x85\x54\xcb\xbf\x2c\x39\xff\x8b\xa9\x96\x7f\x59\x72\xfe\xaf\xa7\x5a\xfe" "\x65\xc9\xf9\x7f\x23\xd5\xf2\x2f\x4b\xce\xff\x52\xaa\xe5\x5f\x96\x9c\xff" "\x37\x53\x2d\xff\xb2\xe4\xfc\x2f\xa7\x5a\xfe\x65\xc9\xf9\x7f\x2b\xd5\xf2" "\x2f\x4b\xce\xff\xdb\xa9\x96\x7f\x59\x72\xfe\x6f\xa4\x5a\xfe\x65\xc9\xf9" "\x7f\x27\xd5\xf2\x2f\x4b\xce\xff\xbb\xa9\x96\x7f\x59\x72\xfe\xdf\x4b\xb5" "\xfc\xcb\x92\xf3\x7f\x33\xd5\xf2\x2f\xcb\xc3\xef\xff\x37\x63\xc6\x8c\x99" "\x3c\xd3\xf7\x33\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd0\x35\x8f" "\xd3\x89\xfb\xde\x47\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xe0\xff\xec\xc0\x81\x00\x00\x00\x00\x00\x90" "\xff\x6b\x23\x54\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x61\x07\x0e\x04\x00" "\x00\x00\x00\x80\xfc\x5f\x1b\xa1\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x0a" "\x7b\x77\x17\x23\x57\x79\xdf\x0f\xfc\xcc\x7a\xd7\x5e\x9b\x37\x27\x10\xfe" "\x86\xbf\x21\x6b\xe3\x18\x63\x16\x76\xfd\x82\x5f\xd2\xba\x71\x08\x21\x14" "\x92\xa6\xbc\xa5\xa1\x2f\xd8\xae\x77\x6d\x36\xf1\x1b\xde\x75\x03\x14\xc9" "\x8e\x9c\x34\x48\x71\xd4\xa8\x4a\x55\x6e\xda\x26\x11\x6a\xb9\xa9\x62\x55" "\xb9\x48\x2b\x1a\x71\x51\xb5\xea\x55\x69\x2f\xd2\x9b\x2a\x55\xa5\x5c\xa0" "\xca\x89\x48\xa4\x4a\x7d\x65\xab\x99\xf3\x3c\xcf\xce\xcc\x9e\x9d\x59\xe3" "\xc1\xcc\x9c\xf3\xf9\x48\xe1\xe7\x9d\x39\x33\xcf\x99\x33\x67\x66\xf7\xbb" "\xce\x77\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x40\xb3\x0d\x1f\x9b\xfe\x4a\x2d\xcb\xb2\xfa\xff\x1a" "\xff\x59\x9b\x65\xd7\xd6\xff\xbc\x7a\x6c\x6d\xe3\xb2\x0f\xbf\xd7\x7b\x08" "\x00\x00\x00\x5c\xa9\xff\x6d\xfc\xf7\xad\x1b\xd2\x05\xfb\x97\x71\xa3\xa6" "\x6d\xfe\xf6\xf6\xbf\xff\xee\xfc\xfc\xfc\x7c\xf6\xd9\x15\xbf\x3f\xf2\x8d" "\xf9\xf9\x74\xc5\x58\x96\x8d\xac\xca\xb2\xc6\x75\xd1\xc5\x7f\x7d\xaa\xd6" "\xbc\x4d\x70\x3e\x1b\xad\x0d\x35\x7d\x3d\xd4\x65\xf9\x15\x5d\xae\x1f\xee" "\x72\xfd\x48\x97\xeb\x57\x76\xb9\x7e\x55\x97\xeb\x47\xbb\x5c\xbf\xe8\x00" "\x2c\xb2\x3a\xff\x7d\x4c\xe3\xce\x36\x35\xfe\xb8\x36\x3f\xa4\xd9\x4d\xd9" "\x48\xe3\xba\x4d\x05\xb7\x3a\x5f\x5b\x35\x34\x14\x7f\x97\xd3\x50\x6b\xdc" "\x66\x7e\xe4\x48\x36\x93\x1d\xcb\xa6\xb3\xc9\x96\xed\xf3\x6d\x6b\x8d\xed" "\x5f\xdb\x50\x5f\xeb\xa1\x2c\xae\x35\xd4\xb4\xd6\xfa\xfa\x19\xf2\xd3\x17" "\x0f\xc7\x7d\xa8\x85\x63\xbc\xa9\x65\xad\x85\xfb\x8c\x7e\xfc\xd1\x6c\xec" "\x67\x3f\x7d\xf1\xf0\x9f\xcc\x5d\xba\xa5\x68\x76\x3d\x0c\x2d\xf7\x97\xef" "\xe7\x96\x8d\xf5\xfd\xfc\x52\xb8\x24\xdf\xd7\x5a\xb6\x2a\x1d\x93\xb8\x9f" "\x43\x4d\xfb\xb9\xbe\xe0\x39\x59\xd1\xb2\x9f\xb5\xc6\xed\xea\x7f\x6e\xdf" "\xcf\xb7\x96\xb9\x9f\x2b\x16\x76\xf3\xaa\x3a\xff\xdf\xf3\x2d\xcf\xf9\x68" "\x36\xd4\xf8\xf3\x1b\x8d\xe3\x34\xdc\xfc\x6b\xbd\x74\x9c\xd6\x87\xcb\xfe" "\xe3\x8e\x2c\xcb\xce\x2d\xec\x76\xfb\x36\x8b\xd6\xca\x86\xb2\x35\x2d\x97" "\x0c\x2d\x3c\x3f\xa3\xf9\x19\x59\xbf\x8f\xfa\xa9\xf4\xfe\x6c\xf8\xb2\xce" "\xd3\x0d\xcb\x38\x4f\xeb\x73\x6a\x53\xeb\x79\xda\xfe\x9a\x88\xcf\xff\x86" "\x70\xbb\xe1\x25\xf6\xa1\xf9\x69\xfa\xf1\x17\x57\x2e\x7a\xde\x2f\xf7\x3c" "\x8d\xea\x8f\x7a\xa9\xd7\x4a\xfb\x39\xd8\xeb\xd7\xca\x7b\x76\x0e\x2e\x7a" "\x3e\xf3\xf3\xe2\x8d\xc6\x83\x7e\xa9\xf0\x1c\xdc\x14\x1e\xff\x8b\x9b\x97" "\x3e\x07\x0b\xcf\x9d\x82\x73\x30\x3d\xee\xa6\x73\x70\x63\xb7\x73\x70\x68" "\xe5\x8a\xc6\x3e\xa7\x27\xa1\xd6\xb8\xcd\xc2\x39\xb8\xad\x65\xfb\x15\x8d" "\x95\x6a\x8d\xf9\xe6\xe6\xce\xe7\xe0\xc4\xdc\xf1\x53\x13\xb3\xcf\xbf\x70" "\xcf\xcc\xf1\x43\x47\xa7\x8f\x4e\x9f\xd8\xb1\x6d\xdb\xe4\x8e\x5d\xbb\xf6" "\xec\xd9\x33\x71\x64\xe6\xd8\xf4\x64\xfe\xdf\x77\x78\xb4\xfb\xdf\x9a\x6c" "\x28\xbd\x06\x36\x86\x63\x17\x5f\x03\x77\xb6\x6d\xdb\x7c\xaa\xce\x7f\xab" "\x77\xaf\xc3\xd1\x0e\xaf\xc3\xb5\x6d\xdb\xf6\xfa\x75\x38\xdc\xfe\xe0\x6a" "\x57\xe7\x05\xb9\xf8\x9c\xce\x5f\x1b\x4f\xd4\x0f\xfa\xe8\x85\xa1\x6c\x89" "\xd7\x58\xe3\xf9\xd9\x7a\xe5\xaf\xc3\xf4\xb8\x9b\x5e\x87\xc3\x4d\xaf\xc3" "\xc2\xef\x29\x05\xaf\xc3\xe1\x65\xbc\x0e\xeb\xdb\x9c\xda\xba\xbc\x9f\x59" "\x86\x9b\xfe\x57\xb4\x0f\xef\xd6\xf7\x82\xb5\x4d\xe7\x60\xfb\xcf\x23\xed" "\xe7\x60\xaf\x7f\x1e\xe9\x97\x73\x70\x34\x9c\x17\xff\xbc\x75\xe9\xef\x05" "\xeb\xc3\xfe\xbe\x34\x7e\xb9\x3f\x8f\xac\x58\x74\x0e\xa6\x87\x1b\xde\x7b" "\xea\x97\xa4\x9f\xf7\x47\xf7\x34\x46\xd1\x79\x79\x6b\xfd\x8a\x6b\x56\x66" "\x67\x66\xa7\x4f\xdf\xfb\xdc\xa1\xb9\xb9\xd3\xdb\xb2\x30\xae\x8a\x1b\x9b" "\xce\x95\xf6\xf3\x75\x4d\xd3\x63\xca\x16\x9d\xaf\x43\x97\x7d\xbe\xee\x9f" "\xb9\xfd\xa5\x5b\x0b\x2e\x5f\x1b\x8e\xd5\xe8\x3d\xf5\xff\x8c\x2e\xf9\x5c" "\xd5\xb7\xd9\x79\x6f\xe7\xe7\xaa\xf1\xdd\xad\xf8\x78\xb6\x5c\xba\x3d\x0b" "\xa3\xc7\xae\xf6\xf1\x2c\xfa\x6e\x5e\x3f\x9e\x29\x4b\x76\x38\x9e\xf5\x6d" "\xbe\x34\x71\xe5\x3f\x8b\xa7\x5c\xda\xf4\xfe\x3b\xb2\xc4\xfb\x6f\xcc\xfd" "\x6f\xe7\xeb\xa5\xbb\x3a\xbf\x62\x64\x38\x7f\xfd\xae\x48\x47\x67\xa4\xe5" "\xfd\xb8\xf5\xa9\x1a\x6e\xbc\x77\xd5\x1a\x6b\xbf\x35\xb1\xbc\xf7\xe3\x91" "\xf0\xbf\xab\xfd\x7e\x7c\x53\x87\xf7\xe3\x75\x6d\xdb\xf6\xfa\xfd\x78\xa4" "\xfd\xc1\xc5\xf7\xe3\x5a\xb7\xdf\x76\x5c\x99\xf6\xe7\x73\x34\x9c\x27\xc7" "\x26\x3b\xbf\x1f\xd7\xb7\x59\xb7\xfd\x72\xcf\xc9\xe1\x8e\xef\xc7\x77\x84" "\x59\x0b\xc7\xff\xae\x90\x14\x52\x2e\x6a\x3a\x77\x96\x3a\x6f\xd3\x5a\xc3" "\xc3\x23\xe1\x71\x0d\xc7\x15\x5a\xcf\xd3\x1d\x2d\xdb\x8f\x84\x6c\x56\x5f" "\xeb\xd5\xed\xef\xec\x3c\xdd\x72\x47\x7e\x5f\x2b\xd2\xa3\x5b\x70\xb5\xce" "\xd3\xb1\xb6\x6d\x7b\x7d\x9e\xa6\xf7\xab\xa5\xce\xd3\x5a\xb7\xdf\xbe\xbd" "\x33\xed\xcf\xe7\x68\x38\x2f\x6e\xda\xd1\xf9\x3c\xad\x6f\xf3\xfa\xce\x2b" "\x7f\xef\x5c\x1d\xff\xd8\xf4\xde\xb9\xb2\xdb\x39\x38\xb2\x62\x65\x7d\x9f" "\x47\xd2\x49\x98\xbf\xdf\xcf\xaf\x8e\xe7\xe0\xbd\xd9\xe1\xec\x64\x76\x2c" "\x9b\x6a\x5c\xbb\xb2\x71\x3e\xd5\x1a\x6b\x8d\xdf\xb7\xbc\x73\x70\x65\xf8" "\xdf\xd5\x7e\xaf\x5c\xd7\xe1\x1c\xdc\xd2\xb6\x6d\xaf\xcf\xc1\xf4\x7d\x6c" "\xa9\x73\xaf\x36\xbc\xf8\xc1\xf7\x40\xfb\xf3\x39\x1a\xce\x8b\x97\xef\xeb" "\x7c\x0e\xd6\xb7\x79\x60\x77\x6f\x7f\x76\xdd\x12\x2e\x49\xdb\x34\xfd\xec" "\xda\xfe\xfb\xb5\xa5\x7e\xe7\x75\x6b\xdb\x61\x7a\x37\x7f\xe7\x55\xdf\xcf" "\xbf\xde\xdd\xf9\x77\xb3\xf5\x6d\x8e\xed\xb9\xdc\x9c\xd9\xf9\x38\xdd\x1d" "\x2e\xb9\xa6\xe0\x38\xb5\xbf\x7e\x97\x7a\x4d\x4d\x65\x57\xe7\x38\xad\x0b" "\xfb\x79\x69\xcf\xd2\xc7\xa9\xbe\x3f\xf5\x6d\xbe\xb1\x77\x99\xe7\xd3\xfe" "\x2c\xcb\xce\x3e\x7b\x7f\xe3\xf7\xbd\xe1\xef\x57\xfe\xfc\xcc\x0f\xbe\xdb" "\xf2\xf7\x2e\x45\x7f\xa7\x73\xf6\xd9\xfb\x7f\x72\xdd\x91\xbf\xb9\x9c\xfd" "\x07\x60\xf0\xbd\x9d\x8f\x35\xf9\xf7\xba\xa6\xbf\x99\x5a\xce\xdf\xff\x03" "\x00\x00\x00\x03\x21\xe6\xfe\xa1\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6" "\xfe\xf8\xff\x0a\x4f\x17\xca\xff\x00\x00\x00\x50\x1a\x31\xf7\x0f\x87\x99" "\x54\x24\xff\xaf\x7b\xe0\xd2\xcc\xdb\x67\xb3\xd4\xcc\x9f\x0f\xe2\xf5\xe9" "\x30\x3c\x9c\x6f\x17\x3b\xae\x93\xe1\xeb\xb1\xf9\x05\xf5\xcb\xef\x7f\x65" "\xfa\xdf\xff\xf2\xec\xf2\xd6\x1e\xca\xb2\xec\x7f\x1e\xfe\xed\xc2\xed\xd7" "\x3d\x1c\xf7\x2b\x37\x16\xf6\xf3\xe2\xc7\x5b\x2f\x5f\x7c\xc3\xb3\xcb\x5a" "\xff\xe0\x93\x0b\xdb\x35\xf7\xd7\xbf\x19\xee\x3f\x3e\x9e\xe5\x9e\x06\x45" "\x15\xdc\xc9\x2c\xcb\x5e\xbb\xe1\x6b\x8d\x75\xc6\x9e\xba\xd0\x98\xaf\x3f" "\x7c\xb0\x31\x1f\x3b\xf7\xd2\xf9\xfa\x36\x6f\xed\xcd\xbf\x8e\xb7\x7f\xf3" "\xc6\x7c\xfb\x3f\x0c\xe5\xdf\xfd\x47\x0e\xb5\xdc\xfe\xcd\x70\x1c\x7e\x14" "\xe6\xe4\x23\xc5\xc7\x23\xde\xee\x3b\x17\xee\x5a\xbf\xfb\x33\x0b\xeb\xc5" "\xdb\xd5\x36\x5e\xdf\x78\xd8\x2f\x3f\x9d\xdf\x6f\xfc\x9c\x9c\xaf\x9f\xcf" "\xb7\x8f\xc7\x79\xa9\xfd\xff\xab\xaf\xbe\xfa\x9d\xfa\xf6\xcf\x7d\xa8\x78" "\xff\xcf\x0e\x15\xef\xff\xab\xe1\x7e\x5f\x09\xf3\x3f\x6f\xcb\xb7\x6f\x7e" "\x0e\xea\x5f\xc7\xdb\x7d\x39\xec\x7f\x5c\x2f\xde\xee\xde\x6f\x7f\xbf\x70" "\xff\x2f\x7e\x25\xdf\xfe\xd4\x83\xf9\x76\x07\xc3\x8c\xeb\x6f\x09\x5f\x6f" "\x7a\xf0\xd2\x4c\xf3\xf1\x7a\xae\x76\xa8\xe5\x71\x65\x9f\xc8\xb7\x8b\xeb" "\x4f\xfe\xe0\x77\x1b\xd7\xc7\xfb\x8b\xf7\xdf\xbe\xff\xa3\x07\x2e\xb4\x1c" "\x8f\xf6\xf3\xe3\xf5\x7f\xcc\xef\x67\xa2\x6d\xfb\x78\x79\x5c\x27\xfa\x8b" "\xb6\xf5\xeb\xf7\xd3\x7c\x7e\xc6\xf5\x5f\xfd\x9d\x83\x2d\xc7\xb9\xdb\xfa" "\x17\x1f\x7b\xf3\xb6\xfa\xfd\xb6\xaf\x7f\x77\xdb\x76\xa7\x9e\xdd\xda\x58" "\x7f\xe1\xfe\x5a\x3f\xb1\xe9\x8f\xbe\xfc\xb5\xc2\xf5\xe2\xfe\xec\xff\xb3" "\x53\x2d\x8f\x67\xff\xa3\xe1\x75\x1c\xd6\x7f\xf9\xe9\x70\x3e\x86\xeb\xff" "\xeb\x62\x7e\x7f\xed\x9f\xae\x70\xf0\xd1\xd6\xf7\x9f\xb8\xfd\x37\xd7\x9e" "\x6d\x79\x3c\xd1\x43\x3f\xcb\xd7\xbf\xf8\x91\xa3\x8d\xb9\x6a\x74\xf5\x9a" "\x6b\xae\xbd\xee\xfa\x73\x1f\xac\x1f\xbb\x2c\x7b\xe3\xf1\xfc\xfe\xba\xad" "\x7f\xf4\x8f\x4f\xb6\xec\xff\xb7\x6e\xce\x8f\x47\xbc\x3e\x76\xf4\xdb\xd7" "\x5f\x4a\x5c\xff\xf4\x17\xc6\x4f\x9c\x9c\x3d\x33\x33\xd5\x74\x54\x1b\x9f" "\x9d\xf3\xc9\x7c\x7f\xe2\xfe\xde\x10\xde\x5b\xdb\xbf\x3e\x70\x72\xee\x99" "\xe9\xd3\x63\x93\x63\x93\x59\x36\x56\xde\x8f\xd0\x7b\xc7\xbe\x1d\xe6\x4f" "\xf2\x71\xee\x72\x6f\xbf\xf5\xc9\xf0\x7c\xde\xfa\x07\xaf\xad\xd9\xfc\x0f" "\x5f\x8d\x97\xff\xd3\x13\xf9\xe5\x17\x1e\xc9\xbf\x6f\xdd\x19\xb6\xfb\x7a" "\xb8\x7c\x6d\x78\xfe\xae\x74\xfd\x97\x37\xdc\xdc\x78\x7d\xd7\x5e\xcf\xbf" "\x6e\xe9\xb1\xf7\xc0\xfa\x4d\xff\xb6\x67\x59\x1b\x86\xc7\xdf\xfa\x73\x41" "\x2d\xbd\x5e\x4e\x7d\xe0\x99\xc6\x71\xa8\x5f\xd7\xf8\xbe\x11\x5f\xd7\x57" "\xb8\xff\x3f\x9c\xca\xef\xe7\x7b\xe1\xb8\xce\x87\x4f\x66\xde\x78\xf3\xc2" "\x7a\xcd\xdb\xc7\xcf\x46\xb8\xf0\x78\xfe\x7a\xbf\xe2\xe3\x17\xde\xe6\xe2" "\xf3\xfa\xa7\xe1\xf9\xfe\xd4\x8f\xf2\xfb\x8f\xfb\x15\x1f\xef\x0f\xc3\xcf" "\x31\xdf\x5f\xd7\xfa\x7e\x17\xcf\x8f\xef\x9d\x1d\x6a\xbf\xff\xc6\xa7\x78" "\x9c\x0b\xef\x27\xd9\xb9\xfc\xfa\xb8\x55\x3c\xde\x17\xde\xba\xb9\x70\xf7" "\xe2\xe7\x90\x64\xe7\x6e\x69\x7c\xfd\x7b\xe9\x7e\x6e\xb9\xac\x87\xb9\x94" "\xd9\xe7\x67\x27\x8e\xcd\x9c\x38\xf3\xdc\xc4\xdc\xf4\xec\xdc\xc4\xec\xf3" "\x2f\x1c\x38\x7e\xf2\xcc\x89\xb9\x03\x8d\xcf\xf2\x3c\xf0\xb9\x6e\xb7\x5f" "\x78\x7f\x5a\xd3\x78\x7f\x9a\x9a\xde\xb5\x33\x6b\xbc\x5b\x9d\xcc\xc7\xbb" "\xec\xbd\xde\xff\x53\x4f\x1e\x9e\xda\x3d\xb9\x79\x6a\xfa\xc8\xa1\x33\x47" "\xe6\x9e\x3c\x35\x7d\xfa\xe8\xe1\xd9\xd9\xc3\xd3\x53\xb3\x9b\x0f\x1d\x39" "\x32\xfd\x85\x6e\xb7\x9f\x99\xda\xb7\x6d\xfb\xde\x1d\xbb\xb7\x8f\x1f\x9d" "\x99\xda\xb7\x67\xef\xde\x1d\x7b\xc7\x67\x4e\x9c\xac\xef\x46\xbe\x53\x5d" "\xec\x9a\xfc\xfc\xf8\x89\xd3\x07\x1a\x37\x99\xdd\xb7\x73\xef\xb6\xfb\xee" "\xdb\x39\x39\x7e\xfc\xe4\xd4\xf4\xbe\xdd\x93\x93\xe3\x67\xba\xdd\xbe\xf1" "\xbd\x69\xbc\x7e\xeb\xdf\x1a\x3f\x3d\x7d\xec\xd0\xdc\xcc\xf1\xe9\xf1\xd9" "\x99\x17\xa6\xf7\x6d\xdb\xbb\x6b\xd7\xf6\xae\x9f\x06\x78\xfc\xd4\x91\xd9" "\xb1\x89\xd3\x67\x4e\x4c\x9c\x99\x9d\x3e\x3d\x91\x3f\x96\xb1\xb9\xc6\xc5" "\xf5\xef\x7d\xdd\x6e\x4f\x39\xcd\xfe\x4b\xfe\xf3\x6c\xbb\x5a\xfe\x41\x7c" "\xd9\xa7\xef\xde\x95\x3e\x9f\xb5\xee\x95\x2f\x2e\x79\x57\xf9\x26\x6d\x1f" "\x20\x7a\x29\x7c\x16\xcd\xdf\xbd\xef\xd4\x9e\xe5\x7c\x1d\x73\xff\x48\x98" "\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x2b\xc3\x4c\xe4\x7f\x00\x00" "\x00\x28\x8d\x98\xfb\x57\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x8f" "\x86\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x17\xaf\xaf" "\xff\x3f\x98\xf4\xff\x3b\xbb\xb2\xfe\xff\xc2\xf9\xae\xff\xaf\xff\x5f\x44" "\xff\x5f\xff\x5f\xff\x9f\x76\xfd\xd6\xff\x8f\xb9\x7f\x75\x96\x55\x32\xff" "\x03\x00\x00\x40\x15\xc4\xdc\xbf\x26\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88" "\xb9\xff\x9a\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x6b\xc3\x4c\x2a" "\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x8b\xd7\xd7\xff\x1f\x4c" "\xfa\xff\x9d\xe9\xff\x77\xa1\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x4f\xf5\x5b" "\xff\x3f\xe6\xfe\xeb\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xbf" "\x3e\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x86\x30\x13\xf9\x1f\x00" "\x00\x00\x4a\x23\xe6\xfe\xb5\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff\x57\xbb" "\xff\x1f\xd7\xd2\xff\xd7\xff\xd7\xff\x5f\x38\xaa\xfa\xff\xbd\xa3\xff\xdf" "\x99\xfe\x7f\x17\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xf4\x54\xbf\xf5\xff\x63" "\xee\x7f\x5f\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\xef\x0f\x33" "\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xbf\x31\xcc\x44\xfe\x07\x00\x00\x80" "\xd2\x88\xb9\xff\xa6\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xff\xfe\xbf\xfe" "\xbf\xfe\x7f\xf1\xfa\xfa\xff\x83\x49\xff\xbf\x33\xfd\xff\x2e\xf4\xff\xf5" "\xff\xf5\xff\xf5\xff\xe9\xa9\x7e\xeb\xff\xc7\xdc\xff\x81\x30\x93\x8a\xe4" "\x7f\x00\x00\x00\xa8\x82\x98\xfb\x6f\x0e\x33\x91\xff\x01\x00\x00\xa0\x34" "\x62\xee\xff\x7f\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xeb\xc2\x4c" "\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x8b\xd7\xd7\xff\x1f" "\x4c\xfa\xff\x9d\xe9\xff\x77\xa1\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x4f\xf5" "\x5b\xff\x3f\xe6\xfe\x5b\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee" "\xbf\x35\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\xff\x87\x99\xc8\xff" "\x00\x00\x00\x50\x1a\x31\xf7\xaf\x0f\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7" "\xff\xd7\xff\xd7\xff\x2f\x5e\x5f\xff\x7f\x30\xe9\xff\x77\xa6\xff\xdf\x85" "\xfe\xff\xd5\xeb\xcf\x0f\xf7\x64\x97\xdf\xbb\xfd\x2f\xa0\xff\xaf\xff\xcf" "\x62\xfd\xd6\xff\x8f\xb9\xff\xb6\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82" "\x98\xfb\x6f\x0f\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xff\x60\x98\x89" "\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x58\x98\x49\x45\xf2\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xf1\xfa\xfa\xff\x83\x49\xff\xbf\x33\xfd\xff" "\x2e\xf4\xff\xfd\xfb\xff\xfa\xff\xfa\xff\xf4\x54\xbf\xf5\xff\x63\xee\xdf" "\x10\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\xc6\x30\x13\xf9\x1f" "\x00\x00\x00\x4a\x23\xe6\xfe\x3b\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98" "\xfb\x37\x85\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x17" "\xaf\xaf\xff\x3f\x98\xf4\xff\x3b\xd3\xff\xef\x42\xff\x5f\xff\xbf\x14\xfd" "\xff\xd5\xe1\x12\xfd\x7f\xde\x7b\xfd\xd6\xff\x8f\xb9\xff\x43\x61\x26\x15" "\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\x6f\x0e\x33\x91\xff\x01\x00\x00\xa0" "\x34\x62\xee\xbf\x33\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x7f\x4b\x98" "\x49\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xf1\xfa\xfa\xff" "\x83\x49\xff\xbf\x33\xfd\xff\x2e\xf4\xff\xf5\xff\x4b\xd1\xff\xf7\xef\xff" "\xd3\x3f\xfa\xad\xff\x1f\x73\xff\x5d\x61\x26\x15\xc9\xff\x00\x00\x00\x50" "\x05\x31\xf7\x6f\x0d\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xbf\x3b\xcc" "\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x7f\x3c\xcc\xa4\x22\xf9\x5f\xff\x5f" "\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x78\x7d\xfd\xff\xc1\xa4\xff\xdf\x99\xfe" "\x7f\x17\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xf4\x54\xbf\xf5\xff\x63\xee\xbf" "\x27\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\x7b\xc3\x4c\xe4\x7f" "\x00\x00\x00\x28\x8d\x98\xfb\x27\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98" "\xfb\x27\xc3\x4c\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x8b" "\xd7\xd7\xff\x1f\x4c\xfa\xff\x9d\xe9\xff\x77\xa1\xff\xaf\xff\xaf\xff\xaf" "\xff\x4f\x4f\xf5\x5b\xff\x3f\xe6\xfe\x6d\x61\x26\x15\xc9\xff\x00\x00\x00" "\x50\x05\x31\xf7\x6f\x0f\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xdf\x11" "\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xbf\x33\xcc\xa4\x22\xf9\x5f\xff" "\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x78\x7d\xfd\xff\xc1\xa4\xff\xdf\x99" "\xfe\x7f\x17\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xf4\x54\xbf\xf5\xff\x63\xee" "\xbf\x2f\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\x5d\x61\x26\xf2" "\x3f\x00\x00\x00\x94\x46\xcc\xfd\xbb\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d" "\x98\xfb\xf7\x84\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb\xff\x0f\x72\xff\xbf" "\xa6\xff\xaf\xff\x4f\x1b\xfd\xff\xce\xf4\xff\xbb\xd0\xff\xd7\xff\xd7\xff" "\xd7\xff\xa7\xa7\xfa\xad\xff\x1f\x73\xff\xde\x30\x93\x8a\xe4\x7f\x00\x00" "\x00\xa8\x82\x98\xfb\x3f\x1c\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff" "\x73\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x3f\x1f\x66\x52\x91\xfc" "\xff\xee\xf7\xff\x8b\x9a\xf1\x39\xfd\x7f\xfd\x7f\xfd\x7f\xff\xfe\xbf\xfe" "\xbf\xfe\x7f\xaf\xe9\xff\x77\xa6\xff\xdf\x85\xfe\xbf\xfe\xbf\xfe\xbf\xfe" "\x3f\x3d\xd5\x6f\xfd\xff\x98\xfb\xf7\x85\x99\x54\x24\xff\x03\x00\x00\x40" "\x15\xc4\xdc\xff\x0b\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x1f\x09" "\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xdf\x1f\x66\x52\x91\xfc\xef\xdf" "\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x2f\x5e\x5f\xff\x7f\x30\xe9\xff\x77" "\xa6\xff\xdf\x85\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x3d\xd5\x6f\xfd\xff\x98" "\xfb\x3f\x1a\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\xfd\x61\x26" "\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x1f\x0b\x33\x91\xff\x01\x00\x00\xa0" "\x34\x62\xee\x7f\x20\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f" "\xff\xbf\x78\x7d\xfd\xff\xc1\xa4\xff\xdf\x99\xfe\x7f\x17\xfa\xff\xfa\xff" "\xfa\xff\xfa\xff\xf4\x54\xbf\xf5\xff\x63\xee\xff\x78\x98\x49\x45\xf2\x3f" "\x00\x00\x00\x54\x41\xcc\xfd\x0f\x86\x99\xc8\xff\x00\x00\x00\x50\x1a\x31" "\xf7\x7f\x22\xcc\xe4\x32\xf2\xff\xca\x9e\xef\x15\x00\x00\x00\xd0\x4b\x31" "\xf7\x3f\x14\x66\x52\x91\xbf\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff" "\x2f\x5e\x5f\xff\x7f\x30\xe9\xff\x77\x76\x69\x78\x99\x1b\xea\xff\xeb\xff" "\xeb\xff\xeb\xff\xeb\xff\xd3\x03\xfd\xd6\xff\x8f\xb9\xff\x17\xc3\x4c\x2a" "\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\x7f\x38\xcc\x44\xfe\x07\x00\x00\x80" "\xd2\x88\xb9\xff\x91\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x4f\x86" "\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x17\xaf\xaf\xff" "\x3f\x98\xf4\xff\x3b\xf3\xef\xff\x77\xa1\xff\xaf\xff\xaf\xff\xaf\xff\x4f" "\x4f\xf5\x5b\xff\x3f\xe6\xfe\x4f\x85\x99\x54\x24\xff\x03\x00\x00\x40\x15" "\xc4\xdc\xff\x4b\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x9f\x0e\x33" "\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xff\xe5\x30\x93\x8a\xe4\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xe2\xf5\xf5\xff\x07\x93\xfe\x7f\x67\xfa" "\xff\x5d\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x53\xfd\xd6\xff\x8f\xb9\xff" "\xd1\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\x1f\x0b\x33\x91\xff" "\x01\x00\x00\xa0\x34\x62\xee\x7f\x3c\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88" "\xb9\xff\x89\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff" "\xe2\xf5\xf5\xff\x07\x93\xfe\x7f\x67\xfa\xff\x5d\xe8\xff\xeb\xff\xeb\xff" "\xeb\xff\xd3\x53\xfd\xd6\xff\x8f\xb9\xff\xc9\x30\x93\x8a\xe4\x7f\x00\x00" "\x00\xa8\x82\x98\xfb\x3f\x13\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff" "\x2b\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x9f\x0d\x33\xa9\x48\xfe" "\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x2f\x5e\x5f\xff\x7f\x30\xe9\xff" "\x77\xa6\xff\xdf\x85\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x3d\xd5\x6f\xfd\xff" "\x98\xfb\x9f\x0a\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\x57\xc3" "\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x7f\x2d\xcc\x44\xfe\x07\x00\x00" "\x80\xd2\x88\xb9\xff\xd7\xc3\x4c\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\x8b\xd7\xd7\xff\x1f\x4c\xfa\xff\x9d\xe9\xff\x77\xa1\xff\xaf" "\xff\xaf\xff\xaf\xff\x4f\x4f\xf5\x5b\xff\x3f\xe6\xfe\xdf\x08\x33\xa9\x48" "\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\xe9\x30\x13\xf9\x1f\x00\x00\x00\x4a" "\x23\xe6\xfe\x03\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x07\xc3\x4c" "\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x8b\xd7\xd7\xff\x1f" "\x4c\xfa\xff\x9d\xe9\xff\x77\xa1\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x4f\xf5" "\x5b\xff\x3f\xe6\xfe\x43\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7" "\xff\x66\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xe1\x30\x13\xf9\x1f" "\x00\x00\x00\x4a\x23\xe6\xfe\xa9\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\xff\xe2\xf5\xf5\xff\x07\x93\xfe\x7f\x67\xfa\xff\x5d\xe8" "\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x53\xfd\xd6\xff\x8f\xb9\x7f\x3a\xcc\xa4" "\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\x23\x61\x26\xf2\x3f\x00\x00\x00" "\x94\x46\xcc\xfd\x47\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x9f\x09" "\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x2f\x5e\x5f\xff" "\x7f\x30\xe9\xff\x77\xa6\xff\xdf\x85\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x3d" "\xd5\x6f\xfd\xff\x98\xfb\x67\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62" "\xee\xff\x5c\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xe7\xc3\x4c\xe4" "\x7f\x00\x00\x00\x28\x8d\x98\xfb\x8f\x85\x99\x54\x24\xff\xeb\xff\xeb\xff" "\xeb\xff\xeb\xff\xeb\xff\x17\xaf\xaf\xff\x3f\x98\xf4\xff\x3b\xd3\xff\xef" "\x42\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x9e\xea\xb7\xfe\x7f\xcc\xfd\xc7\xc3" "\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\x3f\x11\x66\x22\xff\x03\x00" "\x00\x40\x69\xc4\xdc\x7f\x32\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff" "\x54\x98\x49\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xf1\xfa" "\xfa\xff\x83\x49\xff\xbf\x33\xfd\xff\x2e\xf4\xff\xf5\xff\xf5\xff\xf5\xff" "\xe9\xa9\x7e\xeb\xff\xc7\xdc\xff\x6c\x98\x49\x45\xf2\x3f\x00\x00\x00\x54" "\x41\xcc\xfd\xa7\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x67\xc3\x4c" "\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xe7\xc2\x4c\x2a\x92\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\xf5\xff\x8b\xd7\xd7\xff\x1f\x4c\xfa\xff\x9d\xe9\xff" "\x77\xa1\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x4f\xf5\x5b\xff\x3f\xe6\xfe\xfc" "\x05\x71\xc3\x75\xe9\x8e\x2a\x92\xff\x01\xe0\xff\xd8\xbb\x8b\x1d\x51\xae" "\x23\x8e\xc3\xce\x22\x89\xf3\x14\xce\x53\x86\xc1\x61\x66\x8e\xc3\xcc\xcc" "\xcc\xcc\xcc\xcc\xe8\x30\x2e\xb2\x70\x55\x69\xc6\xb7\x7d\x7a\x24\xb7\xe3" "\xd3\xa7\xbe\x6f\x53\x57\x96\xc6\x67\x16\x77\xe1\xbf\xac\x9f\x1a\x00\xa0" "\x83\x5b\x76\xff\xf5\xd7\xdd\x2b\x6e\xb1\xff\x01\x00\x00\x60\x19\xb9\xfb" "\xef\x1d\xb7\xd8\xff\x00\x00\x00\x70\x76\x37\xe4\x1f\x72\xf7\xdf\x27\x6e" "\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfd\xbe\xfe\xff\x9c" "\xf4\xff\x63\xfa\xff\x1d\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xa1\x66\xeb\xff" "\x73\xf7\xdf\x37\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xf7\x8b\x5b" "\xec\x7f\x00\x00\x00\x58\x46\xee\xfe\xfb\xc7\x2d\xf6\x3f\x00\x00\x00\x2c" "\x23\x77\xff\x03\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff" "\xdb\xef\xeb\xff\xcf\x49\xff\x3f\xa6\xff\xdf\xa1\xff\xd7\xff\xeb\xff\xf5" "\xff\x1c\x6a\xb6\xfe\x3f\x77\xff\x03\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a" "\xc8\xdd\xff\xa0\xb8\xc5\xfe\x07\x00\x00\x80\x65\xe4\xee\x7f\x70\xdc\x62" "\xff\x03\x00\x00\xc0\x32\x72\xf7\xdf\x18\xb7\x34\xd9\xff\xfa\xff\x2b\xf6" "\xff\x37\xde\x34\x0c\x08\xf5\xff\x97\x7f\x7f\xfd\xff\xf6\xdf\x0f\xfd\xbf" "\xfe\x5f\xff\x7f\xc7\xbb\x62\x7f\x7f\xc3\x6d\xfd\xbc\xfe\x3f\xe8\xff\xf5" "\xff\xfa\x7f\xfd\xbf\xfe\x9f\x03\xcc\xd6\xff\xe7\xee\x7f\x48\xdc\xd2\x64" "\xff\x03\x00\x00\x40\x07\xb9\xfb\x1f\x1a\xb7\xd8\xff\x00\x00\x00\xb0\x8c" "\xdc\xfd\x0f\x8b\x5b\xec\x7f\x00\x00\x00\x58\x46\xee\xfe\x87\xc7\x2d\x4d" "\xf6\xbf\xfe\xdf\xf7\xff\xf5\xff\xfa\x7f\xfd\xff\xf6\xfb\xfa\xff\x73\xf2" "\xfd\xff\x31\xfd\xff\x0e\xfd\xbf\xfe\x5f\xff\xaf\xff\xe7\x50\xb3\xf5\xff" "\xb9\xfb\x1f\x11\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x47\xc6\x2d" "\xf6\x3f\x00\x00\x00\x2c\x23\x77\xff\xa3\xe2\x16\xfb\x1f\x00\x00\x00\x96" "\x91\xbb\xff\xd1\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff" "\xed\xf7\xf5\xff\xe7\xa4\xff\x1f\x3b\xba\xff\xbf\xbb\xfe\x5f\xff\x7f\x81" "\xfe\x5f\xff\xaf\xff\xe7\xd6\x66\xeb\xff\x73\xf7\x3f\x26\x6e\x69\xb2\xff" "\x01\x00\x00\xa0\x83\xdc\xfd\x8f\x8d\x5b\xec\x7f\x00\x00\x00\x58\x46\xee" "\xfe\xc7\xc5\x2d\xf6\x3f\x00\x00\x00\x2c\x23\x77\xff\xe3\xe3\x96\x2b\xef" "\xff\xbb\xdc\x7c\xb9\x8c\x3b\x17\xfd\xff\x24\xfd\xff\x3d\x6e\xf9\x19\xfd" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xdf\x3e\xfa\xff\x31\xdf\xff\xdf\xa1\xff" "\xd7\xff\xeb\xff\xf5\xff\x1c\x6a\xb6\xfe\x3f\x77\xff\x13\xe2\x16\xff\xff" "\x1f\x00\x00\x00\x96\x91\xbb\xff\x89\x71\x8b\xfd\x0f\x00\x00\x00\xcb\xc8" "\xdd\xff\xa4\xb8\xc5\xfe\x07\x00\x00\x80\x65\xe4\xee\x7f\x72\xdc\xd2\x64" "\xff\xeb\xff\x27\xe9\xff\xe3\x67\xf4\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x7f" "\xfb\xe8\xff\xc7\xf4\xff\x3b\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x43\xcd\xd6" "\xff\xe7\xee\x7f\x4a\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x9f\x1a" "\xb7\xd8\xff\x00\x00\x00\xb0\x8c\xdc\xfd\x4f\x8b\x5b\xec\x7f\x00\x00\x00" "\x58\x46\xee\xfe\xa7\xc7\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb" "\xff\xb7\xdf\xd7\xff\x9f\x93\xfe\x7f\x4c\xff\xbf\x43\xff\xaf\xff\xd7\xff" "\xeb\xff\x39\xd4\x6c\xfd\x7f\xee\xfe\x67\xc4\x2d\x4d\xf6\x3f\x00\x00\x00" "\x74\x90\xbb\xff\x99\x71\x8b\xfd\x0f\x00\x00\x00\xcb\xc8\xdd\xff\xac\xb8" "\xc5\xfe\x07\x00\x00\x80\x65\xe4\xee\x7f\x76\xdc\xd2\x64\xff\xeb\xff\xf5" "\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfb\x7d\xfd\xff\x39\xe9\xff\xc7\xf4\xff\x3b" "\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x43\xcd\xd6\xff\xe7\xee\x7f\x4e\xdc\xd2" "\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x9f\x1b\xb7\xd8\xff\x00\x00\x00\xb0" "\x8c\xdc\xfd\x37\xc5\x2d\xf6\x3f\x00\x00\x00\x2c\x23\x77\xff\xf3\xe2\x96" "\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xdb\xef\xeb\xff\xcf\x49" "\xff\x3f\xa6\xff\xdf\xa1\xff\xd7\xff\xeb\xff\xf5\xff\x1c\x6a\xb6\xfe\x3f" "\x77\xff\xf3\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x82\xb8\xc5" "\xfe\x07\x00\x00\x80\x65\xe4\xee\x7f\x61\xdc\x62\xff\x03\x00\x00\xc0\x32" "\x72\xf7\xbf\x28\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf" "\xfd\xbe\xfe\xff\x9c\xf4\xff\x63\x7b\xfd\xff\x3d\xf3\x0f\xfa\xff\x61\xff" "\x9f\xff\xc5\xa8\xff\xbf\x4c\xff\xaf\xff\xd7\xff\x73\x6b\xb3\xf5\xff\xb9" "\xfb\x5f\x1c\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x97\xc4\x2d\xf6" "\x3f\x00\x00\x00\x2c\x23\x77\xff\x4b\xe3\x16\xfb\x1f\x00\x00\x00\x96\x91" "\xbb\xff\x65\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xed" "\xf7\xf5\xff\xe7\xa4\xff\x1f\xf3\xfd\xff\x1d\xbe\xff\xaf\xff\xd7\xff\xeb" "\xff\x39\xd4\x6c\xfd\x7f\xee\xfe\x97\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74" "\x90\xbb\xff\x15\x71\x8b\xfd\x0f\x00\x00\x00\xcb\xc8\xdd\xff\xca\xb8\xc5" "\xfe\x07\x00\x00\x80\x65\xe4\xee\x7f\x55\xdc\xd2\x64\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\x7f\xfb\x7d\xfd\xff\x39\xe9\xff\xc7\xf4\xff\x3b\xf4" "\xff\xfa\x7f\xfd\xbf\xfe\x9f\x43\xcd\xd6\xff\xe7\xee\x7f\x75\xdc\xd2\x64" "\xff\x03\x00\x00\x40\x07\xb9\xfb\x5f\x13\xb7\xd8\xff\x00\x00\x00\xb0\x8c" "\xdc\xfd\xaf\x8d\x5b\xec\x7f\x00\x00\x00\x58\x46\xee\xfe\xd7\xc5\x2d\x4d" "\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xb7\xdf\xd7\xff\x9f\x93\xfe" "\x7f\x4c\xff\xbf\x43\xff\xaf\xff\xd7\xff\xeb\xff\x39\xd4\x6c\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\xcb\xc8\xdd\xff\xc6\xb8\xc5\xfe\x07\x00\x00\x80\x65\xe4" "\xee\x7f\x53\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfb" "\x7d\xfd\xff\x39\xe9\xff\xc7\xf4\xff\x3b\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f" "\x43\xcd\xd6\xff\xe7\xee\x7f\x73\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9" "\xfb\xdf\x12\xb7\xd8\xff\x00\x00\x00\xb0\x8c\xdc\xfd\x6f\x8d\x5b\xec\x7f" "\x00\x00\x00\x58\x46\xee\xfe\xb7\xc5\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\xeb\xff\xb7\xdf\xd7\xff\x9f\x93\xfe\x7f\x4c\xff\xbf\x43\xff\xaf" "\xff\xd7\xff\xeb\xff\x39\xd4\x6c\xfd\x7f\xee\xfe\xb7\xc7\x2d\x4d\xf6\x3f" "\x00\x00\x00\x74\x90\xbb\xff\x1d\x71\x8b\xfd\x0f\x00\x00\x00\xcb\xc8\xdd" "\xff\xce\xb8\xc5\xfe\x07\x00\x00\x80\x65\xe4\xee\x7f\x57\xdc\xd2\x64\xff" "\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfb\x7d\xfd\xff\x39\xe9\xff\xc7" "\xf4\xff\x3b\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x43\xcd\xd6\xff\xe7\xee\x7f" "\x77\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xdf\x13\xb7\xd8\xff\x00" "\x00\x00\xb0\x8c\xdc\xfd\xef\x8d\x5b\xec\x7f\x00\x00\x00\x58\x46\xee\xfe" "\xf7\xc5\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xb7\xdf\xd7" "\xff\x9f\x93\xfe\x7f\x4c\xff\xbf\x43\xff\xaf\xff\xd7\xff\xeb\xff\x39\xd4" "\x6c\xfd\x7f\xee\xfe\xf7\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff" "\x03\x71\x8b\xfd\x0f\x00\x00\x00\xcb\xc8\xdd\xff\xc1\xb8\xc5\xfe\x07\x00" "\x00\x80\x65\xe4\xee\xff\x50\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd" "\xbf\xfe\x7f\xfb\x7d\xfd\xff\x39\xe9\xff\xc7\xf4\xff\x3b\xf4\xff\xfa\x7f" "\xfd\xbf\xfe\x9f\x43\xcd\xd6\xff\xe7\xee\xff\x70\xdc\xd2\x64\xff\x03\x00" "\x00\x40\x07\xb9\xfb\x3f\x12\xb7\xd8\xff\x00\x00\x00\xb0\x8c\xdc\xfd\x1f" "\x8d\x5b\xec\x7f\x00\x00\x00\x58\x46\xee\xfe\x8f\xc5\x2d\x4d\xf6\xbf\xfe" "\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xb7\xdf\xd7\xff\x9f\x93\xfe\x7f\x4c\xff" "\xbf\xe3\xff\xd9\xff\x5f\xf8\xc7\xfa\xff\x63\xdc\xd9\xbf\xbf\xfe\x5f\xff" "\xcf\xb5\x66\xeb\xff\x73\xf7\x7f\x3c\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83" "\xdc\xfd\x9f\x88\x5b\xec\x7f\x00\x00\x00\x58\x46\xee\xfe\x4f\xc6\x2d\xf6" "\x3f\x00\x00\x00\x2c\x23\x77\xff\xa7\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\xf5\xff\xdb\xef\xeb\xff\xcf\x49\xff\x3f\xa6\xff\xdf\xe1\xfb" "\xff\xfa\x7f\xfd\xbf\xfe\x9f\x43\xcd\xd6\xff\xe7\xee\xff\x74\xdc\xd2\x64" "\xff\x03\x00\x00\x40\x07\xb9\xfb\x3f\x13\xb7\xd8\xff\x00\x00\x00\xb0\x8c" "\xdc\xfd\x9f\x8d\x5b\xec\x7f\x00\x00\x00\x58\x46\xee\xfe\xcf\xc5\x2d\x4d" "\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xb7\xdf\xd7\xff\x9f\x93\xfe" "\x7f\x4c\xff\xbf\x43\xff\xaf\xff\xd7\xff\xeb\xff\x39\xd4\x6c\xfd\x7f\xee" "\xfe\xcf\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x0b\x71\x8b\xfd" "\x0f\x00\x00\x00\xcb\xc8\xdd\xff\xc5\xb8\xc5\xfe\x07\x00\x00\x80\x65\xe4" "\xee\xff\x52\xdc\xd2\x64\xff\xeb\xff\xf5\xff\x17\xfa\xf9\xbb\x5d\xa7\xff" "\xd7\xff\xeb\xff\xf5\xff\x27\xa7\xff\x1f\xd3\xff\xef\xd0\xff\xeb\xff\xf5" "\xff\xfa\x7f\x0e\x35\x5b\xff\x9f\xbb\xff\xcb\x71\x4b\x93\xfd\x0f\x00\x00" "\x00\x1d\xe4\xee\xff\x4a\xdc\x62\xff\x03\x00\x00\xc0\x32\x72\xf7\x7f\x35" "\x6e\xb1\xff\x01\x00\x00\x60\x19\xb9\xfb\xbf\x16\xb7\x34\xd9\xff\xfa\x7f" "\xfd\xbf\xef\xff\xeb\xff\xf5\xff\xdb\xef\xeb\xff\xcf\x49\xff\x3f\xa6\xff" "\xdf\xa1\xff\xd7\xff\xeb\xff\xf5\xff\x1c\x6a\xb6\xfe\x3f\x77\xff\xd7\xe3" "\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x8d\xb8\xc5\xfe\x07\x00\x00" "\x80\x65\xe4\xee\xff\x66\xdc\x62\xff\x03\x00\x00\xc0\x32\x72\xf7\x7f\x2b" "\x6e\x69\xb2\xff\xf5\xff\x57\xed\xff\xef\x3a\xfc\xf7\xe9\xff\x2f\xff\xfe" "\xfa\xff\xed\xbf\x1f\xfa\x7f\xfd\xbf\xfe\xff\x8e\xa7\xff\x1f\xd3\xff\xef" "\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x0e\x35\x5b\xff\x9f\xbb\xff\xdb\x71\x4b" "\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x4e\xdc\x62\xff\x03\x00\x00\xc0" "\x32\x72\xf7\x7f\x37\x6e\xb1\xff\x01\x00\x00\x60\x19\xb9\xfb\xbf\x17\xb7" "\x34\xd9\xff\xfa\x7f\xdf\xff\xd7\xff\xeb\xff\xf5\xff\xdb\xef\xeb\xff\xcf" "\x49\xff\x3f\xa6\xff\xdf\xa1\xff\xd7\xff\xeb\xff\xf5\xff\x1c\x6a\xb6\xfe" "\x3f\x77\xff\xf7\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x83\xb8" "\xc5\xfe\x07\x00\x00\x80\x65\xe4\xee\xff\x61\xdc\x62\xff\x03\x00\x00\xc0" "\x32\x72\xf7\xff\x28\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xbf\xfd\xbe\xfe\xff\x9c\xf4\xff\x63\xfa\xff\x1d\xa7\xea\xff\xaf\xd7\xff" "\x4f\xf6\xfb\xeb\xff\xf5\xff\x5c\x6b\xb6\xfe\x3f\x77\xff\x8f\xe3\x96\x26" "\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x93\xb8\xc5\xfe\x07\x00\x00\x80\x65" "\xe4\xee\xff\x69\xdc\x62\xff\x03\x00\x00\xc0\x32\x72\xf7\xff\x2c\x6e\x69" "\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfd\xbe\xfe\xff\x9c\xf4" "\xff\x63\xfa\xff\x1d\xa7\xea\xff\x7d\xff\x7f\xb6\xdf\x5f\xff\xaf\xff\xe7" "\x5a\xb3\xf5\xff\xb9\xfb\x7f\x1e\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee" "\xfe\x5f\xc4\x2d\xf6\x3f\x00\x00\x00\x2c\x23\x77\xff\x2f\xe3\x16\xfb\x1f" "\x00\x00\x00\x96\x91\xbb\xff\x57\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\xfa\xff\xed\xf7\xf5\xff\xe7\xa4\xff\x1f\xd3\xff\xef\xd0\xff\xeb" "\xff\xf5\xff\xfa\x7f\x0e\x35\x5b\xff\x9f\xbb\xff\xd7\x71\x4b\x93\xfd\x0f" "\x00\x00\x00\x1d\xe4\xee\xff\x4d\xdc\x62\xff\x03\x00\x00\xc0\x32\x72\xf7" "\xff\x36\x6e\xb1\xff\x01\x00\x00\x60\x19\xb9\xfb\x7f\x17\xb7\x34\xd9\xff" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\x7e\x5f\xff\x7f\x4e\xfa\xff\x31" "\xfd\xff\x0e\xfd\xbf\xfe\x5f\xff\xaf\xff\xe7\x50\xb3\xf5\xff\xb9\xfb\x7f" "\x1f\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x3f\xc4\x2d\xf6\x3f\x00" "\x00\x00\x2c\x23\x77\xff\x1f\xe3\x16\xfb\x1f\x00\x00\x00\x96\x91\xbb\xff" "\xe6\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf6\xfb\xfa" "\xff\x73\xd2\xff\x8f\xe9\xff\x77\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x87\x9a" "\xad\xff\xcf\xdd\xff\xa7\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xff" "\x39\x6e\xb1\xff\x01\x00\x00\x60\x19\xb9\xfb\xff\x12\xb7\xd8\xff\x00\x00" "\x00\xb0\x8c\xdc\xfd\x7f\x8d\x5b\x9a\xec\x7f\xfd\xff\xfa\xfd\xff\xc5\xdf" "\x4d\xff\xaf\xff\xd7\xff\xeb\xff\x57\xa7\xff\x1f\xd3\xff\xdf\xd6\xc3\xf1" "\x90\xfe\x5f\xff\xaf\xff\xd7\xff\x73\xa8\xd9\xfa\xff\xdc\xfd\x7f\x8b\x5b" "\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xdf\xe3\x16\xfb\x1f\x00\x00\x00" "\x96\x91\xbb\xff\x1f\x71\x8b\xfd\x0f\x00\x00\x00\xcb\xc8\xdd\xff\xcf\xb8" "\xa5\xc9\xfe\xd7\xff\xaf\xdf\xff\xfb\xfe\xbf\xfe\x5f\xff\xaf\xff\xef\x44" "\xff\x3f\xa6\xff\xdf\xa1\xff\xd7\xff\xeb\xff\xf5\xff\x1c\x6a\xb6\xfe\x3f" "\x77\xff\xbf\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xef\xb8\xc5" "\xfe\x07\x00\x00\x80\x65\xe4\xee\xff\x4f\xdc\x62\xff\x03\x00\x00\xc0\x32" "\x72\xf7\xff\x37\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf" "\xfd\xbe\xfe\xff\x9c\xf4\xff\x63\xfa\xff\x1d\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xcf\xa1\x66\xeb\xff\x73\xf7\xff\x2f\x00\x00\xff\xff\x61\x59\x7a\x36", 24209); syz_mount_image(/*fs=*/0x20005e00, /*dir=*/0x20005e40, /*flags=MS_RDONLY|MS_NODIRATIME|MS_MANDLOCK*/ 0x841, /*opts=*/0x20000140, /*chdir=*/1, /*size=*/0x5e94, /*img=*/0x2000de40); memcpy((void*)0x20000080, ".\000", 2); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000080ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[0] = res; *(uint32_t*)0x20000800 = 1; *(uint32_t*)0x20000804 = 0; memcpy((void*)0x20000808, "\350\332\271\2224\2731.", 8); memset((void*)0x20000810, 0, 24); memset((void*)0x20000828, 0, 24); syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0xc0185879, /*arg=*/0x20000800ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); do_sandbox_none(); return 0; }