// https://syzkaller.appspot.com/bug?id=f4f6fc82f860fd9525af83bf7c56241a95faff33 // 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 #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static 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 kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x400000000100, "bcachefs\000", 9); memcpy((void*)0x400000000080, "./file0\000", 8); *(uint16_t*)0x4000000001c0 = -1; *(uint32_t*)0x4000000001c2 = -1; *(uint16_t*)0x4000000001c6 = 0; memcpy((void*)0x4000000001c8, "\x5b\xdc\xa9\x6b\x77\xba\xe0\x96\x5a\x30\xab\x52\xf6\x08\x4d\x5b\x89" "\x8e\x98\xc2\x68\x46\xe8\x9e\xc4\xa1\xe3\xed\xce\xe4\x81\x70\x79\x89" "\xe4\xf6\xb6\x99\x13\xdd\xc4\x3d\x2e\xc3\xc4\xcf\x9b\x0d\xd1\x52\x88" "\x31\x83\xaa\x71\xf5\x26\x69\xcc\xd6\x99\x1b\xa9\xb0\x12\xac\xd6\xea" "\xac\x6d\xb4\xb3\x73\xcb\x22\x9e\xe7\xb0\x7d\xf2\x1e\xdc\x98\x5e\x34" "\x3c\x0e\x12\xff\x7e\x03\x0a\x1c\x36\x29\xb2\x8e\x7c\xca\xe2\xd7\xbb" "\xf1\x45\x4b\x4b\xe8\x9f\x81\xd1\x52\xf8\xff\x20\xd1", 115); *(uint32_t*)0x40000000023b = -1; sprintf((char*)0x40000000023f, "0x%016llx", (long long)-1); memcpy( (void*)0x400000000740, "\x78\x9c\xec\xdd\x7f\x90\x1c\x57\x7d\x20\xf0\xd7\x33\xb3\xbb\xb3\xbb\xfa" "\xb1\x92\x4d\x10\x36\x5e\xad\x85\x95\x38\x26\xa0\x95\x6d\x5c\xfc\x48\x05" "\x25\x47\x80\xb2\x89\x4b\x1c\x29\x82\x1c\x81\xbd\xb6\x56\x8e\x40\x92\x55" "\x92\x1c\xdb\x02\x62\x39\x67\x73\xb8\x6c\x73\x90\x22\x95\x33\xc9\x1f\x0e" "\x65\xa8\x03\x14\xca\x55\xe6\x82\x15\x17\x8e\x8d\x4f\xf2\xf1\xcb\x45\xc2" "\xb9\xae\xc0\x75\x90\x33\xfc\xc1\x95\xe3\x43\x07\x58\xe7\xa3\xb8\x6c\x6a" "\x76\xfa\xcd\xce\xf4\x4c\x6f\xcf\xce\xce\x4a\x2b\xfb\xf3\x29\x69\x7b\xfa" "\x4d\xcf\xb7\x5f\xbf\x7e\xd3\xd3\xdf\xd7\xbd\x3b\x01\x00\x00\x80\x97\x84" "\xe3\x77\x1c\x38\x79\xe5\x39\xbf\xfb\xf5\x3f\x9d\x7e\xfe\xd6\xb7\xff\xdd" "\x9e\xdb\xc2\x68\x79\xb6\xbc\x1a\x17\x18\x4b\xa7\x37\x9f\xae\x1a\x72\x2a" "\x0d\x55\xd6\xcd\x4e\xb3\xfd\xe2\xd7\x3e\xf8\xf9\x1f\x4d\x5c\xf7\x3b\x5f" "\x7b\x60\xe4\x33\x2f\x1c\xdb\x71\xfe\xce\xef\xbd\xe5\xac\xeb\x1e\x7e\xff" "\xe5\x47\xef\xfd\xcb\xc7\x7e\xbe\xf2\x4b\xff\xf2\x4c\x51\xdc\xd8\x9f\x2e" "\x9a\x9b\x4f\x9e\x4b\x42\xa8\x7e\xe5\xc4\x9f\x7f\xe4\xd8\x37\x5e\x5e\x2b" "\x4b\x42\x08\xe5\xb1\x70\x38\x84\x35\xc9\xda\xc7\xd6\x24\x99\x10\x93\xbf" "\x08\x21\xec\x68\xd4\xb3\xf5\xc9\x07\x9f\xbf\x64\x67\x6d\x7a\xdb\x5d\x43" "\x2d\xe5\xab\x33\x41\xf4\xf7\x97\xb6\x6a\xda\xcf\x0e\x9d\xbc\xe9\xd5\xe1" "\xfb\xbf\xbd\xed\xf6\x6f\xad\xff\xe2\xdf\x0c\x1c\x79\xf6\xf0\xdc\x22\x49" "\xb5\xa9\x3f\x85\xb0\xea\x9a\xe6\xd7\x0f\x84\x10\x86\xd3\xff\x35\xb1\xb7" "\xad\x8b\x2f\x4e\xa7\x5b\x43\x08\x23\x4d\xaf\x7b\x7d\x41\xbd\x5e\xd5\x65" "\xfd\x37\xe5\xcc\x9f\x9b\x4e\x07\xd3\xe9\x68\x41\x9c\xf8\xfc\x86\xcc\x7c" "\x29\xb3\x5c\x76\x3e\x1a\xc8\x4c\x47\x0a\xd6\xd7\xd4\x54\x3d\xc9\xab\x47" "\xaf\xcb\x15\x59\x91\x99\xcf\x1e\x8c\x16\x2b\xaf\x9e\xb1\x7c\x4d\x3a\xfd" "\x72\x3a\xbd\x68\x81\xf1\xcb\xf1\x7f\x12\x4a\x49\xa8\x34\xaa\xbf\x3b\x99" "\xeb\x23\xa1\x69\xbf\x25\x21\x99\xdd\x97\xd5\xc6\x7c\xa9\x65\x9b\x93\xa6" "\x7d\x9d\xce\x27\x99\xf9\x52\x66\xbe\x3c\x90\xd9\xae\xd9\xf5\xa6\x1d\xad" "\x9c\x24\xad\xe5\x71\xb9\x4c\x79\x3c\x1c\x57\xd2\xf2\xf3\x9b\x8f\xd5\x1d" "\xbc\x2b\xa7\xfc\x15\xe9\xb4\x9a\xbe\x51\x5f\x88\xf3\x21\xfb\xa0\x6e\xb4" "\xed\x41\x63\xbb\x66\xc5\x7a\x9d\xc8\xad\x49\xfc\x80\xfa\x7f\xf3\xd4\x76" "\xf1\x4a\x39\x6f\xac\x58\xde\xd8\x87\xe9\xce\x18\x4d\xcb\x46\x93\xb5\xcd" "\x8b\xc7\xad\x9f\xc9\x8a\x0b\x1c\xdb\x76\xf7\xc6\xf2\xf6\xaf\x1e\x1f\xcb" "\xa9\x47\xf2\x40\x92\xc6\x4f\x3a\xc5\xef\x1c\xbc\x29\xfe\xa1\x6f\xae\x59" "\xf1\xbe\x2f\xdc\x79\xe3\xba\xbc\xf8\xd7\x94\xd2\xf8\xa5\x9e\xe2\xff\xe0" "\x8a\x27\x7f\x72\xd5\x9d\x9f\xfe\x54\x6e\xfc\x8f\xc7\xf8\xe5\x9e\xe2\x5f" "\xfc\xc8\xc8\x73\x57\x3c\x7e\xc7\x86\xdc\xf6\x39\x11\xdb\xa7\xd2\x53\xfc" "\xa9\x67\x9e\xb8\x67\xfd\xd9\xd7\x1e\xc9\xad\xff\x7d\x31\xfe\x60\x4f\xf1" "\xb7\x1c\x7d\x72\x68\xe5\xc9\x47\x1e\xcd\xad\xff\x64\x6c\x9f\xe1\x9e\xe2" "\x3f\xfd\xa6\xb7\xfe\xf0\x73\x4f\x3d\xf4\x6c\x6e\xfc\x10\xe3\x8f\xf4\x14" "\x7f\xfb\xd1\x7d\x1f\x1b\x1a\x3f\x79\x61\x6e\xfc\x47\x63\xfb\x8c\xf6\xd6" "\x7f\x7e\x76\xe4\xb2\xef\x8e\x8f\xff\x78\x22\x2f\xfe\xb7\x63\xfc\x95\x3d" "\xc5\xff\xec\xe1\x7b\xdf\x78\xff\xea\xbb\x2e\xcf\xdd\xbf\x5b\x63\xfb\x8c" "\x2d\x28\x7e\x7c\x63\xbf\xe3\x82\x87\x6f\x5f\x71\xf2\xa1\xf3\x9a\x0e\x73" "\x33\x2d\xf1\xef\xeb\xd7\x27\x27\xc0\x4b\xd3\x59\xe9\x39\xd6\x47\xd3\xf9" "\x98\x67\xae\x58\x60\x9e\xb9\x58\x4d\xf9\xc2\x7f\x9c\xa8\xd4\xcf\xf9\x56" "\xa4\xff\x57\xa6\x4f\x1c\xee\x22\x69\x5b\xa8\xda\x7a\x56\xf5\x3f\x2c\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x2f\x71\x2f\x7b\xf5\x7f\x7d\xdb\xff\x7c\xf7\xd8\x73\x95\x74\x7e\x28\x7d" "\xf0\x74\xa9\x3e\x8d\xe5\x83\x21\x24\xc3\x21\x84\x03\x07\xa7\xf6\x1f\xdc" "\xb5\xf7\xfa\x89\xf7\xdf\x70\xe3\xfe\xbd\x53\xbb\x27\xa6\x0e\x4e\x4c\xef" "\x3d\xb8\xff\x96\x89\x4b\x7f\x63\x62\xff\xf4\xbe\xdd\x53\xb7\xd4\x9e\x9d" "\x7c\xcd\x25\xf5\xd7\xad\x0d\x49\x7d\x9a\x9c\xd7\xb6\xee\x99\x99\x99\x99" "\xd2\x58\x6b\x59\x5c\xdf\xbf\xb9\xe0\xc8\xf7\x37\xbe\xfe\x7f\xfd\x73\x08" "\x93\x2f\xfb\xce\x78\x25\xb7\xfe\x9b\xee\xdd\x73\xff\xd9\x1d\x7e\x66\x24" "\x5b\x66\xde\xbc\xe7\xc6\x2b\xbf\xf3\xba\xbf\x4e\xb7\x6b\x2c\xad\xd7\x58" "\x4e\xbd\x42\x4e\xbd\xfe\xf7\x7b\x7e\x79\xff\x9f\x9d\xf8\xd1\x85\x21\x4c" "\xfe\xca\x7c\xf5\x7a\xe2\xe9\xdf\xfa\xfb\x96\x0a\xcd\x16\xcc\xc5\x49\x95" "\x86\x42\xbd\x42\x43\xc9\x48\xc7\x7a\x34\x6a\x9d\xd6\x27\xb6\x57\x65\xe7" "\xae\xdd\xd3\x93\xc5\xed\x5b\xce\xd9\x8e\x3f\xfc\xe0\xb3\xbf\xd8\x79\xf3" "\x27\x7e\x59\x6f\xdf\x6a\xee\x76\x74\xd9\xbe\xc3\x5b\x66\x76\x97\xfe\x62" "\xdb\x3b\xfe\xff\x5f\x7c\xa8\x5e\xb0\x5c\xf7\x7b\x51\x7b\xc7\xad\x88\xf5" "\x8b\xed\x57\x4d\xdb\x7b\x55\xba\x5d\xab\x72\xb6\xab\x92\xb3\x5d\x77\x7c" "\xeb\xd1\xa7\xbe\x72\xce\x9d\x3f\x3f\x1c\x26\x2b\x3f\x5b\xdf\xbe\xee\xa2" "\xed\x1a\x48\x3b\xc0\x40\xf2\x8a\xae\xd6\x1b\xd7\x30\x92\xac\x69\x29\xaf" "\xa6\xcb\xc7\x3d\x1e\x5f\xb7\xe9\xe0\x9e\x7d\x9b\x0e\xdc\x72\xe8\x35\xbb" "\xf6\x4c\x5d\x3f\x7d\xfd\xf4\xde\x37\x6c\xbe\x74\xf3\x65\x71\xa9\xe9\xc9" "\x4d\x7d\xde\xfe\x18\xf9\x57\x5b\x17\x1f\xcc\xdb\xfe\x53\xd3\x9f\x56\xff" "\xf1\xe1\x2f\xc7\x9f\xdd\xf5\xa7\xa2\x7a\x15\xb5\x47\xad\x5e\xb1\x3d\xca" "\xed\xed\xd1\x52\xaf\xf9\xdf\x7f\x23\xef\xfa\xc8\x27\xdf\x70\xef\xe3\x57" "\xd6\x0b\x8a\xfa\x79\x5c\xba\x71\x3c\x49\xa7\x23\xb5\xfd\xbc\x39\x34\xf5" "\xb7\xf6\xb6\xea\xb4\x5d\x45\xed\x10\x42\x98\xe8\xd4\x0e\x3f\xf9\xf9\xe5" "\xe1\xe5\xff\x7d\xd7\xed\x45\xc7\xa1\xe6\x3d\xd3\xfc\x33\x23\xd9\x32\xf3" "\x8d\x0d\x3f\xfd\xeb\xd7\xff\xd5\xba\xdf\xac\x17\xf4\x7c\x9c\xaf\x86\xee" "\x8f\xf3\xcd\x15\xea\xf1\x38\xdf\xa8\xf5\x5c\x7d\x66\xdb\xab\x9a\xee\x8f" "\xe5\xda\xbe\x43\xb3\xbd\xb6\xb6\x5d\xa3\xad\x2b\x4e\xeb\xb5\xf9\x1b\x8f" "\x0f\xdc\x7d\xfc\x9f\x3f\xdc\xa8\xdf\xe0\x60\xb8\x79\xea\xe0\xc1\xfd\x9b" "\xeb\x3f\x57\xa4\x2f\x58\x91\x9c\xdb\xb1\x5e\xd9\xd2\x18\x7e\xfd\xec\xcf" "\x72\x48\x9b\x25\x34\xba\x69\x87\xfe\x5a\x33\x10\xea\xf5\xcb\x1e\x3f\xe3" "\xe2\xd9\x56\x1d\x4d\x9f\x1b\x4d\xd6\x66\x9e\x19\x9c\xdd\xae\xac\xf8\xec" "\xb1\x6d\x77\x6f\x2c\x6f\xff\xea\xf1\xbc\x96\x4e\x1e\xa8\xaf\x71\x38\xac" "\xac\x4f\x93\x57\xe6\x2c\xb9\x3b\xf3\xc2\x72\xa3\xc2\x9d\xd6\xbf\x90\xfe" "\x91\x1c\x3e\x8d\xfd\x23\x53\xaf\xf1\xb7\xfd\xd5\x97\xde\xfd\xa5\xbf\xbd" "\xb4\xad\x7f\x5c\x5c\xff\x99\xb7\x5d\x43\xa1\xd1\x1c\x1d\xfb\xfd\x17\x9f" "\xfa\xec\x27\x3f\xf3\x89\x7f\xff\xb7\xfd\xdb\xae\xb7\xfd\xd6\x93\x63\x3f" "\xfd\x1f\x7f\xb4\xb1\x5e\x70\x4a\xce\x1f\x17\x74\x5c\x29\x77\xac\x47\xa3" "\xd6\x69\x7d\x92\xe6\xe3\xca\xc5\x21\x14\xbd\xff\xd6\x87\xce\xdb\x91\xfb" "\xfe\x2b\x75\xde\x9e\xa2\xf7\x5f\x76\x3d\x73\xcb\x77\x8e\x37\x91\x99\x1f" "\x0d\xe5\x9c\xf7\x6b\xe7\xf7\x4b\x7c\xee\xe2\x47\x46\x9e\xbb\xe2\xf1\x3b" "\x36\xe4\xbe\x5f\x4f\x74\xfb\x7e\x4d\x4f\x7c\x6b\x99\x52\x08\xe1\xfd\x2b" "\xe6\x36\xb0\xd3\xfa\x97\x4b\xff\x29\x3a\x6e\x2c\xdd\xfb\xab\xa5\xa3\x24" "\x5b\x66\xbe\xf6\xd1\xb3\x0e\x3f\x76\xeb\xd6\x73\xea\x05\x45\x9f\x97\x8d" "\xa5\x3b\xf5\xeb\x4b\x1a\x9f\x97\x1d\x1b\x68\xf6\x7c\x31\x67\xbb\xfe\xfe" "\xaa\xef\x8e\xdf\x30\xf1\xef\xfe\x5b\xff\x8e\x1b\x9f\xff\x8d\x07\xaf\xfe" "\xde\xd4\x96\x3f\xa9\x17\x2c\x97\xfd\x5e\x4d\xdb\xb7\x9a\xd3\xbe\x8d\x5a" "\xc7\xbc\xb3\xb9\x7d\x5f\x7b\xdd\x0d\xbb\x77\xd4\xcb\xfb\x79\xfe\x1b\xfa" "\x7a\xfe\x9b\x4e\x0b\xf2\x9f\x78\x28\x39\x70\xcb\xa1\x0f\x4c\xed\xde\x3d" "\xbd\xff\x40\x77\xdb\xd5\xed\xf9\x56\x5c\x4f\xb6\x95\x7b\xfd\x3c\x8d\x47" "\xb7\xb5\x05\xdb\x55\x6a\xdb\xae\xa5\x7b\xd0\x4d\x7b\x75\xfb\x7e\x8b\xf5" "\xdf\xd1\x73\x7b\xb5\xbe\xdf\x46\x43\xd2\xd3\xe7\xc2\xa1\x6f\xae\x59\xf1" "\xbe\x2f\xdc\x79\xe3\x58\xdb\xab\xd2\x15\x5d\x53\x4a\xe3\x97\x7a\x8a\xff" "\x83\x2b\x9e\xfc\xc9\x55\x77\x7e\xfa\x53\x79\xf1\xa3\xd1\x50\xe9\x29\xfe" "\xd4\x33\x4f\xdc\xb3\xfe\xec\x6b\x8f\xe4\xd6\xff\xbe\x24\x8d\x5f\x2d\x8a" "\x3f\x10\x3a\xc4\xdf\x72\xf4\xc9\xa1\x95\x27\x1f\x79\x34\x37\xfe\x64\x6c" "\x9f\xe1\x9e\xea\xff\xf4\x9b\xde\xfa\xc3\xcf\x3d\xf5\xd0\xb3\xb9\xf1\x43" "\x8c\x3f\xda\x5b\xfb\xff\xec\xc8\x65\xdf\x1d\x1f\xff\x71\x6e\xfc\x6f\x27" "\xe9\x7a\x6a\xe7\x48\x21\x3c\xf8\xfc\x25\x3b\xeb\xf3\x49\x18\x48\xdf\x6f" "\xb1\x1e\x03\x2d\xf5\x0a\xd9\xf9\x24\x33\x5f\x1a\x98\x7b\x79\x6d\xbe\xdc" "\xfc\x7c\x29\xbc\xaa\xa5\x1e\xe5\x24\x49\xcb\xe3\x99\x45\xba\x5c\x5a\x7e" "\xfe\xe0\xec\xc9\x49\xae\x3f\xc8\x29\x8f\x67\x61\xd5\x75\xf5\xe9\x0b\x71" "\x3e\x64\x1f\xb4\xcc\x56\xb2\xe5\xcb\x4d\xa9\xe9\xd8\xdf\xa9\xbc\xe8\x3c" "\x15\x00\xe0\xc5\x2e\x5e\xff\x8f\xe7\xa0\xf1\xfa\xff\x74\x7a\xa2\x94\x3f" "\xd2\x00\x73\x8a\xf2\xb0\xe6\xc7\x9d\xf2\xb0\x75\x39\x71\x63\x1e\x36\x37" "\x9e\x33\xd8\xf2\xfc\xba\x34\x66\x7c\x7d\x1c\x07\x1c\x7f\x6d\x98\xac\x4d" "\x6f\x9b\xa8\x9f\xe8\x2f\x74\x9c\x33\xbe\x1f\xb2\xe3\x9c\x71\x3d\x17\xb6" "\xa6\x69\x3d\x8f\x73\x16\x8d\xbf\x6f\xc8\xcc\xc7\x7a\xd5\xc7\xcb\x2b\x4d" "\x79\x68\xaa\x3d\xaf\xa9\x84\x2e\xc6\xdf\xdb\xd7\x33\x9a\x84\x79\xc6\xdf" "\x33\x9b\x5f\x3c\x3e\x3e\xf1\xd1\xb6\x6a\x4d\x34\x8d\x5b\x65\xf7\xdf\x40" "\x3a\x62\xd6\xe9\x7e\x87\x4c\x7d\x2b\xb5\x08\x79\xfd\x23\x3b\x2e\x16\xef" "\xe7\x18\x5f\x15\xb6\xce\xae\xaf\xad\x7f\xb4\x6f\xf0\x4c\x87\xfb\x68\xe2" "\x7e\xc8\xde\x47\x13\xd7\x73\x4e\xe6\xc0\xd9\xeb\x7d\x34\xf3\xf5\x8f\x52" "\xbd\x1d\x5a\x36\x78\x20\x5d\x6f\xec\x1f\xb1\xda\xf3\xf4\x8f\xd9\x2a\x17" "\x5f\xdf\x68\xdf\x7f\x61\x9e\xf6\x9d\xdb\x7f\x9d\xa3\x65\xf7\xdf\x02\xf6" "\x77\xb5\xb6\x7c\xbc\x3e\xdb\xd8\xf8\x2d\x73\x0b\xcc\x37\xee\xd3\xed\xf5" "\xd9\xd3\x34\x6e\xf8\xbd\xa2\xf8\x45\xe3\x86\xc9\xc7\x63\xfc\xa5\xbd\x1e" "\xb6\x0c\xc6\x25\x3b\xc6\x5f\x2e\xe3\x92\x4b\x34\x6e\xd8\x3c\x9f\x19\x37" "\x4c\xdf\x0b\xe9\x0a\x8a\xc6\x0d\x63\x79\xdc\x8e\x4a\x1c\x4f\x6c\x1f\xfa" "\x6b\xf1\xee\x9c\xf2\x1e\xc7\x13\xdb\xca\xe3\xe1\x22\xd6\xeb\xc4\x3c\x75" "\x59\x12\x99\xb1\x54\xe3\x89\xc0\x8b\x55\xcc\xff\xe3\x67\x44\x2d\xff\xaf" "\x9d\x80\xff\xdf\xcc\x72\x45\x79\x4a\xf6\xac\x31\xc6\xcb\xbd\x4f\xa8\xfd" "\x76\xa5\x59\x45\xf7\xfd\xb4\xdf\xa7\x37\xd2\xd3\xe7\xf8\xf6\xa3\xfb\x3e" "\x36\x34\x7e\xf2\xc2\xdc\xf3\x9c\x47\xbb\xbd\xef\x67\x5f\xcb\xdc\x48\xc1" "\x7d\x7a\x45\xed\xb8\x31\x33\x5f\xd8\x8e\x39\x03\x34\x9d\xf3\xbd\x52\xee" "\x7a\x8a\xda\x3d\x7b\x5f\xc6\x68\x58\xd9\x53\xbb\x7f\xf6\xf0\xbd\x6f\xbc" "\x7f\xf5\x5d\x97\x77\x68\xf7\x96\x4f\xd0\xe2\x76\xff\x64\xcb\xdc\xca\x82" "\x76\xcf\xbf\x9f\xf3\x8c\xce\x17\x0a\xe3\xcb\x17\x96\x55\xbe\xd0\x76\x13" "\x6c\xbf\xee\x63\x28\x1a\x3f\x3b\x6d\xf9\x48\x7a\xe3\xd3\x52\xe5\x23\xbf" "\x9f\x53\xbe\x80\x7c\x64\x66\x75\xf3\xfd\x59\x99\x1b\xb5\x4e\x7b\x3e\x92" "\xd1\x75\x3e\x32\x70\x6a\xeb\x05\x00\x9c\x39\x62\xfe\xdf\xb8\x7e\x96\xe6" "\xff\xff\x94\x59\xae\x28\x6f\xbd\x28\x33\x1f\xe3\xe5\xe6\xad\x39\xe7\x27" "\x79\xd7\x29\x7f\x2f\x9d\xde\x9c\x59\x7e\x34\xfd\x8d\x8a\x85\x9e\x37\xbf" "\xe3\x82\x87\x6f\x5f\x71\xf2\xa1\xf3\x72\xf3\x96\xfb\xea\xe7\xe5\xc5\x79" "\xe8\x7f\x6a\x99\x1b\x2b\xcc\x43\x17\x97\x37\xe7\xe6\x29\x5b\x63\x1e\xb1" "\xb8\x3c\x2b\x37\x8f\x68\xe4\x59\x8b\xcb\x13\x73\xeb\xdf\xc8\x13\x17\x97" "\xa7\xe7\xc6\x6f\xe4\xe9\x8b\xcb\xa3\x73\xdb\xa7\x91\x47\x2f\x6e\x1c\x20" "\x37\x7e\x63\x1c\x60\xc1\x79\x6e\xec\xe2\xcb\xe2\xba\xd8\x52\x8f\xd7\xf5" "\x9e\x47\xcf\x7f\x01\x67\xe9\xf3\xe8\x46\xe2\xd9\x39\x8f\x4e\x47\x0e\x96" "\x2a\x8f\x7e\x57\x4e\xf9\x42\xaf\xeb\x8d\xb6\x3d\x68\x6c\xe7\x2c\x79\x34" "\x00\xc0\xe9\x15\xf3\xff\x46\x92\x90\xe6\xff\x8f\x67\x96\x5b\xec\x79\x7b" "\x6e\x5e\xb0\xe8\xf3\xf6\xfa\xf5\xaf\xec\xdf\x03\x69\xc4\x4f\xcf\xdb\xe3" "\xb9\x72\xaf\x79\x65\xde\x5f\x6c\xeb\xd7\xf5\xdf\xe2\xbc\x6f\xa9\xf3\xd6" "\xa5\xce\xeb\x7b\x1b\x97\xf8\xf0\x1f\x86\x50\x34\x2e\x11\x6f\x25\x39\x03" "\xae\xff\xb6\xc7\x6f\xe4\xc5\x4b\x3d\x2e\xb4\xb4\xe3\x64\xa7\xed\xfa\xf2" "\x32\xcf\x8b\x1f\x4f\xa7\xf2\x62\x00\x00\x96\x83\x98\xff\xc7\x5f\x7b\xca" "\xcf\xff\x17\x93\x9f\x94\x2f\xcf\xcd\xdf\x1a\xf9\xc9\x52\x5c\xf7\x2d\x9d" "\xc2\xfc\xbc\xb7\xfb\x8f\xcf\xf4\xfc\xbc\xfb\xfb\x06\x4e\xf5\xfd\xd9\x95" "\xae\xe2\x37\xe5\xe7\x1d\x33\x9a\x24\x94\x4a\xe1\x45\x30\xfe\xb5\xa4\xf9" "\xff\x7f\xf8\x69\x63\x5e\xfe\x9f\x7d\x50\x27\xff\x07\x00\x60\x39\x88\xf9" "\x7f\xbc\xbe\x1d\xff\xfe\xdf\x7f\x49\xe7\xb3\xd7\xbd\x97\xfe\xfe\x6c\xd7" "\xd1\x3b\xc6\x7f\xd1\xe6\xe9\xdd\xc5\x3f\x55\xf7\x97\x9f\xfe\x3c\x7d\x71" "\xf7\x01\x14\x8f\xb3\xb9\x0f\xe0\x94\x8d\x03\x7c\x78\xbf\x71\x00\x00\x00" "\x96\x85\x81\xd9\x4c\xa9\xfd\xf7\xec\xdf\x9b\x4e\xb3\xbf\x67\x9f\xf7\x7b" "\xf9\x57\xe5\x2c\xdf\xad\x4a\xfa\x27\x57\xaf\x3d\xb8\x7f\x7a\xfa\xea\x1b" "\xf7\xed\x98\x3a\x38\x7d\xf5\xde\x1b\x76\x4c\x1f\xb8\xfa\xa6\xfd\xbb\x0e" "\x1e\x9c\xde\x5b\x5f\x6e\xb1\x79\x63\x6e\xde\x92\xe6\x8d\x03\xa1\x92\xb6" "\x47\xe7\xe5\xb2\x79\xdb\xea\xf4\xfa\xf2\xea\x9c\xbf\x87\x90\x5d\x3e\x86" "\x3d\x77\xf6\x41\xfb\xdf\x43\xc8\xae\x76\xb8\xe0\xef\x08\xd4\x36\x71\x21" "\xf5\xcd\xdb\x7f\xa5\x79\x96\xef\xd4\x3f\xf2\xf6\x77\x5e\xfc\x3f\xc8\x59" "\x3e\x6a\xec\xff\xeb\xfe\xe8\xe2\xab\x77\x1e\xb8\x7a\xd7\xde\x5d\x07\x77" "\x4d\xed\xde\x75\x68\xba\x75\xb9\x5a\xd6\x3a\xb2\x80\xef\xcd\x8c\xcd\xb2" "\xa0\xef\xcd\xcc\xfc\x88\x1a\x79\x50\x69\xe1\xdf\xdf\xd9\x9f\x7a\x64\x7e" "\x37\xbd\x34\x97\x99\xe5\x7d\x3f\x7b\x92\xa9\xc7\x9a\xb4\x26\x6b\xf2\xbe" "\xff\x20\xa7\xde\x5f\xff\x87\x3f\xfb\xe3\x0b\x66\x7e\xf9\xb9\x10\x26\x5f" "\x56\x7e\x65\x6f\xed\x17\x43\x6e\x99\xf9\xcf\xef\x99\xfe\xbd\x83\xc7\xbf" "\xb3\xaf\xd6\x5f\x4a\xb9\xfd\xb7\x56\x9f\xc6\x92\x69\xbd\x8a\xbe\xaf\x34" "\xbb\x7c\xdc\x9e\xca\xee\x1b\x0e\x1c\x7c\xf5\xe4\x0d\x37\xee\xcd\x7e\xa3" "\x64\x6f\xe2\x78\x46\xa9\x31\xbf\x44\xe3\x19\xe9\xdb\xbf\xdc\xe5\xf8\xc4" "\xf6\x9c\xf2\xf8\x6e\xfc\x56\x97\xf7\x29\x94\xdb\x1e\x2c\x4f\x5d\x8f\x4f" "\x00\x00\xd0\x22\x5e\xff\x8f\xe7\xb3\xf1\xfa\xe1\x27\xd2\x13\xa8\x58\xde" "\x7d\x9e\x3e\xff\xf5\xe3\xa1\x9c\x3c\x3d\x5e\x3f\xce\xcd\xd3\x27\xbb\xcb" "\xd3\xb3\xdf\x4b\x56\x94\xa7\x67\x97\x8f\xdb\xdb\x6d\x9e\x5e\x2d\xc8\xd3" "\xe7\xf2\xe8\xee\xea\x1b\xf3\xe8\x5b\x73\xf2\xf4\x4e\xcb\x77\xca\xd3\xf3" "\xf2\xee\xbc\x3c\xfd\xf7\x73\x96\x5f\xa8\xee\xfb\xc9\xe2\xee\xf3\xc8\xed" "\x27\xd7\x74\xd7\x4f\xb2\xdf\x67\x50\xd4\x4f\xb2\xcb\x2f\xb4\x9f\x24\x8b" "\xec\x27\xd9\xf5\x17\x8d\xe7\x74\x5a\xbe\x53\x3f\xc9\xdb\xef\x2d\xf1\x9b" "\xea\xf4\xce\x9c\xe5\xe7\x36\xf4\xc1\x96\xd9\xee\xfb\xc3\xe2\xee\xcb\xc9" "\xed\x0f\x1f\xef\xae\x3f\xfc\x7a\x66\x3e\xd3\x1f\x66\x6e\x2d\x58\x7e\xa1" "\xfd\xa1\xb4\xc8\xfe\x90\x5d\x7f\x51\x7f\xe8\xb4\x7c\xa7\xfe\x90\xb7\x7f" "\xf3\xe2\x5f\x99\xb3\x7c\xb7\x5a\xfb\x47\xad\x63\xcc\xf6\x8b\xe9\xab\x6f" "\xba\x61\xff\x07\x9a\x96\x5b\xea\xef\xbf\x58\x7c\xfd\x72\x8f\x67\x83\x9d" "\xaa\x19\x9f\xec\xf6\xfb\x3f\x7a\xd5\x7d\xfd\x97\xf6\xbe\xaf\xa5\xaf\xff" "\xec\xf5\x81\x4a\x58\xa2\xfb\xca\x96\xbe\xfe\x3d\xdd\x57\x36\x93\x1e\x45" "\x7e\x9c\x5b\xff\x6f\x2f\x6e\x24\xac\xfb\xfa\x2f\xed\xf7\xbb\xf4\xea\x94" "\x8d\xd7\xa6\xef\xf2\xa2\xfb\xcf\x8a\xc6\x71\xeb\xf5\xfc\xb7\x6d\xe5\x0b" "\xfd\x7d\xb3\xc1\xb6\x07\xcb\x53\x37\xe3\xb8\xcb\x7c\x28\x1a\xce\x58\x31" "\xff\x8f\xef\xb1\x98\xff\xdf\x95\x4e\xfb\xfd\xde\x3b\xf3\xbf\x27\x6d\xbe" "\xcf\xb9\x81\x45\x7f\xce\x9d\xf9\xf7\xdf\x2f\xee\xfe\xf8\xa2\xf3\x98\xd3" "\xf1\x79\x3e\xb0\x88\xcf\xf3\x6d\x39\xe5\x2f\xe5\xcf\x73\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x42\x18\xaa" "\xac\x9b\x9d\x1e\xbf\xe3\xc0\xc9\x2b\xcf\xf9\xdd\xaf\xff\xe9\xf4\xf3\xb7" "\xbe\xfd\xef\xf6\xdc\xf6\x6b\x1f\xfc\xfc\x8f\x26\xae\xfb\x9d\xaf\x3d\x30" "\xf2\x99\x17\x8e\xed\x38\x7f\xe7\xf7\xde\x72\xd6\x75\x0f\xbf\xff\xf2\xa3" "\xf7\xfe\xe5\x63\x3f\x5f\xf9\xa5\x7f\x79\xa6\x30\xf0\x58\x7d\x72\x51\x3a" "\x5b\x0d\x21\x79\x2e\x09\xa1\xfa\x95\x13\x7f\xfe\x91\x63\xdf\x78\x79\xad" "\x2c\x09\x21\x94\x93\xb1\xc3\x21\xac\x49\xd6\x3e\xb6\x26\xc9\x44\x98\xfc" "\x45\x08\x61\x47\xa3\x9e\xad\x4f\x3e\xf8\xfc\x25\x3b\x6b\xd3\xdb\xee\x1a" "\x6a\x29\x5f\x9d\x09\x92\xdd\xae\x30\x5a\x8e\xf5\x69\xa9\x67\xb8\xb9\x70" "\x8b\x38\x03\x55\xd3\x7e\x76\xe8\xe4\x4d\xaf\x0e\xdf\xff\xed\x6d\xb7\x7f" "\x6b\xfd\x17\xff\x66\xe0\xc8\xb3\x87\xe7\x16\x49\xaa\x4d\xfd\x29\x84\x55" "\xd7\x34\xbf\x7e\x20\x84\x30\x9c\xfe\xaf\x89\xbd\x6d\x5d\x7c\x71\x3a\xdd" "\x1a\x42\x18\x69\x7a\xdd\x50\x41\xbd\x5e\xd5\x65\xfd\x37\xe5\xcc\x9f\x9b" "\x4e\x07\xd3\xe9\x68\x41\x9c\xf8\xfc\x86\xcc\x7c\x29\xb3\x5c\x76\x3e\x1a" "\xc8\x4c\x47\x0a\xd6\xb7\x58\x79\xf5\xe8\x75\xb9\x22\x2b\x32\xf3\xd9\x83" "\xd1\x82\x0c\xb7\x17\xe5\xd5\x33\x96\xaf\x49\xa7\x5f\x4e\xa7\x17\x2d\x70" "\x95\xe5\xf8\x3f\x09\xa5\x24\x54\x1a\xd5\xdf\x9d\xcc\xf5\x91\xd0\xb4\xdf" "\x92\x90\xcc\xee\xcb\x6a\x63\xbe\xd4\xd8\xb7\x21\xdd\xfe\xcc\x7c\x92\x99" "\x2f\x65\xe6\xcb\x03\x99\xed\x9a\x5d\x6f\xda\xd1\xca\x49\xd2\x5a\x1e\x97" "\xcb\x94\xc7\xc3\x71\x25\x2d\x3f\xbf\xf9\x58\xdd\xc1\xbb\x72\xca\x5f\x91" "\x4e\xab\xe9\x1b\xf5\x85\x38\x1f\xb2\x0f\xea\x46\xdb\x1e\x34\xb6\x6b\x56" "\xac\xd7\x89\x79\xea\xd2\x64\xb0\xbb\xc5\x16\xae\x94\x73\x6c\x89\xe5\x8d" "\x1d\x9f\xee\x8c\xd1\xb4\x6c\x34\x59\xdb\xf6\x9a\x99\x0e\xe2\x73\xc7\xb6" "\xdd\xbd\xb1\xbc\xfd\xab\xc7\xc7\x72\xea\x91\x3c\x90\xa4\xf1\x93\x85\xc4" "\xaf\x15\x4f\xbc\xbd\x76\x3c\xfe\xe6\x9a\x15\xef\xfb\xc2\x9d\x37\xae\xcb" "\x8b\x7f\x4d\x29\x8d\x5f\xea\xa9\xfe\x3f\xb8\xe2\xc9\x9f\x5c\x75\xe7\xa7" "\x3f\x95\x1b\xff\xe3\xa5\xd9\xf7\xfc\x68\x28\xf7\x14\xff\xe2\x47\x46\x9e" "\xbb\xe2\xf1\x3b\x36\xe4\xb6\xcf\x89\xd8\x3e\x95\x9e\xe2\x4f\x3d\xf3\xc4" "\x3d\xeb\xcf\xbe\xf6\x48\x6e\xfd\x43\x8c\x5f\xed\x29\xfe\x96\xa3\x4f\x0e" "\xad\x3c\xf9\xc8\xa3\x1d\xea\xdf\xfc\x36\x0e\xa3\x61\xb8\xa7\xf8\x4f\xbf" "\xe9\xad\x3f\xfc\xdc\x53\x0f\x3d\x3b\xd6\x61\xf9\x90\x1e\x6f\xea\xf1\x47" "\x7a\x8a\xbf\xfd\xe8\xbe\x8f\x0d\x8d\x9f\xbc\x30\xb7\xfd\x1f\x8d\xed\x33" "\xda\x5b\xff\xf9\xd9\x91\xcb\xbe\x3b\x3e\xfe\xe3\x9c\xf0\x21\xf9\x76\x8c" "\xbf\xb2\xa7\xf8\x9f\x3d\x7c\xef\x1b\xef\x5f\x7d\xd7\xe5\xb9\xfb\x77\x6b" "\x6c\x9f\xb1\x9e\xe2\xbf\xe3\x82\x87\x6f\x5f\x71\xf2\xa1\xf3\xf2\x8e\x9d" "\xc9\x7d\xfd\xfa\xe4\x04\x78\x69\x3a\x2b\x3d\xc7\xfa\x68\x3a\xdf\x6b\x9e" "\xb9\x58\x31\x5f\x38\xef\x2d\xe9\xca\xd2\x9c\xa6\xf6\x7f\x65\x3f\x57\x94" "\x51\x5b\xcf\xaa\x25\x8c\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x8b\xd3\x3f\x7e\xe8\xd2" "\xf7\xbe\xe7\xcd\xef\xdc\x56\x49\x42\x48\x72\x96\x99\xe9\x20\x3e\x57\x1e" "\x1c\xde\x32\x11\x42\x58\xf5\x7f\x16\xb6\xde\xa9\x67\x9e\xb8\x67\xfd\xd9" "\xd7\x1e\x69\x2e\x5b\x37\x1b\xb0\xa7\xcd\x00\x00\x00\x00\xf2\x24\xeb\x42" "\x48\xf3\xf0\x52\xa3\xb0\x1a\xd6\x85\x9b\x92\xe1\x70\x6e\xe7\x97\xa4\xd3" "\x73\xe3\x5c\xd2\x5a\x9e\x1d\x43\x18\x9e\x5b\xb2\x2f\x71\x4a\x7d\x8a\x93" "\x1d\x66\xe8\x35\x4e\xa5\x4f\x71\x06\xfa\x14\x67\xb0\x4f\x71\x86\x16\x11" "\x27\x69\x8a\x53\x2d\x88\x53\x0d\xdd\xd5\x67\x78\xde\x38\xa5\xae\xb7\x6b" "\xa4\x4f\x71\x46\x7b\x8e\x73\x4f\xb9\x39\xce\x8a\x3e\xd5\x67\x65\x9f\xe2" "\xac\xca\x94\xcf\xac\xee\x2d\xce\xea\x3e\xd5\x67\x6c\xde\x38\xdd\xf7\xe7" "\x35\x3d\xc4\xf9\xa7\x0e\x71\xd6\xf6\xa9\x3e\x67\xf5\x29\xce\xd9\x7d\x8a" "\xf3\xb2\x3e\xc5\xf9\x95\x3e\xc5\x79\x79\x9f\xe2\xac\x9b\x37\x4e\x71\x3f" "\x5c\x99\x2e\x79\x4e\x5e\x9c\xd9\x07\xe5\xc2\x38\x95\xa4\xdc\x78\xa2\xd3" "\x78\x7a\x5c\xcf\x79\x9d\xd7\xf3\xcb\x52\x97\xeb\x19\x9d\x5b\xcf\x70\x53" "\xf8\xbb\xb2\xeb\x99\x58\xe4\xf6\x0c\x77\xb9\x3d\xaf\xca\xbc\xae\xb4\xc0" "\xf5\x54\xe7\x5b\x4f\x08\x8d\xf5\xfc\xea\x22\xd7\x93\x74\xb9\x3d\xbf\xbe" "\xc8\xf5\x94\x0a\xd6\x13\xfb\xed\xcd\xd9\xfa\xc5\xf5\xc4\xb9\x2e\xfb\xff" "\x2d\x7d\x8a\x73\xa8\x4f\x71\x3e\xd8\xa7\x38\x1f\xea\x53\x9c\x0f\xf7\x29" "\xce\x9f\xf4\x29\xce\xad\x8b\x8c\x03\xd0\xad\x78\x1d\x7e\x2e\xdf\x1b\x0b" "\x43\x95\xdf\x0c\x23\xe9\x11\x27\x3b\x0a\x10\xf3\xdd\xf5\xb3\x3f\xdb\x3f" "\xef\xf2\x0e\x48\x31\xde\x2b\x33\xe5\x83\x45\xf1\x72\xee\x07\x48\xe3\xb5" "\xad\xad\xb0\x7e\xd9\x01\x84\x4c\xfd\x36\x64\xca\x07\x5a\xe2\x55\x1a\xf9" "\xc8\x3c\xf1\xaa\xcd\xf1\x36\x66\x9e\x2c\xdc\xde\xec\x80\x42\xa6\x7e\x17" "\x65\xca\x87\x8a\xe2\x65\x07\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x60\x09\xfd\xe3\x87\x2e\x7d\xef\x7b\xde\xfc\xce\x6d\x21\x09\xb5\x7f\x1d" "\xcd\x74\x90\x3e\xf5\x0f\xe5\xc1\x2d\x5b\x26\x32\xcb\x0f\x77\xb1\xde\x63" "\xdb\xee\xde\x58\xde\xfe\xd5\xe3\xcd\x65\x43\x95\xde\xb6\x01\x00\x00\x00" "\x98\x5f\xcc\xc3\x07\x1a\x25\xd5\x30\x54\xd9\x1c\x86\x92\xc1\x96\xe5\xaa" "\xe9\x38\x40\x35\x9d\x2f\x8f\xd5\xa7\xe3\xab\xc2\xd6\xda\x34\x99\x28\xcd" "\xce\x8f\x24\x6b\xe6\x7d\x5d\x25\x7d\xdd\xa6\x83\x7b\xf6\x6d\x3a\x70\xcb" "\xa1\xd7\xec\xda\x33\x75\xfd\xf4\xf5\xd3\x7b\xdf\xb0\xf9\xd2\xcd\x97\x4d" "\xbe\xee\xb2\xd7\x6d\xda\xb9\x6b\xf7\xf4\x64\xfd\x67\x08\x43\x05\xf1\x42" "\x08\xb3\xc3\x0f\x07\x6e\x39\xf4\x81\xa9\xdd\xbb\xa7\xf7\x1f\xa8\x17\x66" "\xeb\xbf\xae\xfe\xba\x5f\xc4\xa1\x8b\x24\x7d\xdd\xf8\x6b\xc3\x64\x6d\x7a" "\x5b\x5a\xff\xb5\x05\xeb\x2b\xb5\xad\x6f\xe9\x1e\x74\xb3\xff\x00\x00\x80" "\x7f\x65\xd7\xee\x42\xe4\xba\xea\x00\x80\x9f\x3b\x33\x3b\x33\xd9\x36\x76" "\xa5\x5f\xd3\x90\x6c\x86\x7c\x94\xa8\x45\x93\xb8\x95\x54\x4b\xf7\x82\x60" "\xa1\x4d\x42\x96\x80\xcc\x56\xd7\x12\x6c\x82\xc5\x6d\x13\xda\xa4\xc4\x3a" "\xb6\x01\xdb\x9a\xa0\x08\x2d\x81\x10\xc9\x4b\x24\x16\x5b\x8b\x2f\xfd\x46" "\xec\x07\x81\x48\x8d\x06\xdc\x18\xa4\x29\xda\x07\x7d\x50\x5a\xad\xa4\x25" "\x0f\x92\x32\x92\x9d\xb9\xb3\x33\x93\xb9\x9d\xed\xd8\x66\xdb\xf8\xfb\x3d" "\xdc\x33\x73\xce\xff\x7f\xfe\xf7\x0c\x24\xf0\xbf\x77\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\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x80\xf3\x69\xaa\x3a\x32\x51\x19\x1d\x1b\x1f\x8c" "\x42\x88\x52\x62\x6a\x5d\x24\x6b\xd9\x7c\x1c\x97\xfb\xa8\xfb\xf5\xe7\xb7" "\xfd\xb8\x30\x7c\x7a\x45\xeb\x5c\x21\xd7\xc7\x46\x00\x00\x00\x40\x4f\x0b" "\x33\xf5\x71\xa0\x39\x53\x0c\x85\x5c\x36\x64\xc3\x55\xd3\xdf\x96\x84\x96" "\x85\x30\xd3\xf7\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xff\x8f\x46\x26\x2a\xa3\x63\xe3\x17\x45\x21\x44\x29\x11\xb5\x2e\x92" "\xb5\x6c\x3e\x8e\xcb\x7d\x54\x7d\xfd\xed\x27\xbe\xf0\xea\xf0\xf0\xdf\x5b" "\xe7\x4a\x7d\xec\x03\x00\x00\x00\xf4\x96\xf4\xe1\x99\xe6\x4c\x31\x94\xc2" "\xd2\x30\x10\x5d\xd5\x16\x97\x3c\x1b\x58\xd0\x91\xdf\x19\x97\xec\xb3\x68" "\x96\x71\x9d\xcf\x0e\xd2\xe2\x96\xce\x32\xee\xea\x1e\x71\xf9\xc6\xf8\xa9" "\x1e\x71\xeb\x1b\xe3\xce\x00\x00\x00\x00\x1f\x7f\x49\xff\x9f\x6b\xce\x0c" "\x85\x42\x6e\x7e\x6a\xff\xdf\xe8\xeb\x9b\xef\xff\xd3\xe2\x16\x77\xd4\xc9" "\x36\xc6\x7e\xfe\x56\x00\x00\x00\x00\xf8\xdf\x24\xfd\x7f\xa1\x39\x53\x0a" "\x85\x5c\xa9\xd9\xaf\xf7\x7a\x8f\x9f\xf4\xfb\x4b\x3a\xe2\x92\xfc\x5e\xef" "\xed\x93\xfc\xe5\x29\xf9\xbd\xde\xe7\xaf\x6b\x8c\xde\xd3\x03\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xc0\xc7\xc7\x54\x75\x64\xa2\x32\x3a\x36\x9e\x8d\x42\x88\x52" "\x62\x6a\x5d\x24\x6b\xd9\x7c\x1c\x97\xfb\xa8\xbb\xfa\x85\xc1\x7f\xde\x7c" "\xf8\xc1\x25\xad\x73\x85\x5c\x1f\x1b\x01\x00\x00\x00\x3d\x25\x7d\xf8\x4c" "\xeb\x5d\x0c\x85\xdc\x60\x18\x08\x17\x4d\xf7\xfd\xc3\x37\x1e\x78\xea\xab" "\x4f\x3d\x33\x12\x42\xa8\xb7\xf9\xf9\x7c\x21\x6c\xda\xbe\xfd\xae\xd5\x3b" "\xa7\xaf\x49\xdc\xaa\xa3\x87\x07\x7e\x74\xe4\xcd\xef\xb5\xc4\x85\xe9\x88" "\x55\xf5\xeb\x9c\x1d\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xf8\xc0\x4c\x55\x47\x26\x2a\xa3\x63\xe3\xf3\xa2\x10\xa2\x94\x98" "\x5a\x17\xc9\x5a\x36\x1f\xc7\xe5\x3e\xea\xbe\xf6\xa5\xaf\xfc\xf5\xb1\x13" "\xcf\xbd\xd1\x3a\x57\xea\x95\xb4\xb1\x8f\x42\x00\x00\x00\x40\xb3\x0f\x9f" "\xe9\xfd\x8b\xa1\x14\xf2\x21\x1f\xae\x98\xfe\xd6\xe8\xf5\x73\xc9\x6a\xa6" "\x23\x3f\xed\x99\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" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x70\xe1\xb8\xfb\x3b\xf7\x7e\x7b\xd3\xe4\xe4\xe6\xbb\x3e\xec\x0f" "\xd9\x0f\xbf\x84\x0f\x3e\xcc\xe5\x87\x79\xe7\xef\x5f\xd3\x79\xf8\x30\xd7" "\xff\x33\x01\x00\x00\x1f\xb4\xc5\x21\x0a\xb5\xf7\xe9\xca\x0d\x73\x7d\xd7" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x47\xc1\x54" "\x75\x64\xa2\x32\x3a\x36\x5e\x8c\x42\x88\x52\x62\x6a\x5d\x24\x6b\xd9\x7c" "\x1c\x97\xfb\xa8\x1b\x3f\x7f\xac\x30\xff\xf4\x0b\x2f\xb5\xce\x95\xfa\xd8" "\x07\x00\x00\x00\xe8\x2d\xe9\xc3\x67\x7a\xff\x62\x28\x85\x81\x30\x10\x2e" "\x9f\xfe\xd6\xed\x99\xc0\x74\xff\x3f\x74\x1e\x6f\x12\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8\x48\x99\xaa\x8e\x4c\x54\x46" "\xc7\xc6\xe7\x47\x21\x44\x29\x31\xb5\x2e\x92\xb5\x6c\x3e\x8e\xcb\x7d\xd4" "\x7d\x74\xd7\xfe\x2f\x1e\xba\xe4\x87\x37\xb5\xce\x15\x72\x7d\x6c\x04\x00" "\x00\x00\xf4\x94\xf4\xe1\xf9\xe6\x4c\x31\x14\x72\x9f\x0e\x85\xb0\xb0\xf1" "\x7d\xb2\x3d\x21\xca\x36\xc6\xee\xcf\x05\x66\xf2\xb6\xb5\xa5\x0d\xce\x3a" "\xaf\xda\x96\x97\x9d\x75\xde\xee\x8e\x93\xe5\x1a\xa7\xa9\xe7\x15\x93\xfd" "\x86\xea\x63\x33\xaf\x7c\x6e\x5e\xb9\x25\xaf\x14\x9a\xe5\xcb\x6d\x79\x61" "\x6f\x7d\x38\x59\x1f\xe6\xf7\xb8\xcf\x00\x00\x00\x00\x73\x28\xe9\xff\x0b" "\xcd\x99\xa1\x50\xc8\x15\x5a\xfa\xdc\x9f\xb7\xc5\x0f\xe9\x73\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\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x80\x14\x53\xd5\x91\x89\xca\xe8\xd8\x78\x14" "\x85\x10\xa5\xc4\xd4\xba\x48\xd6\xb2\xf9\x38\x2e\xf7\x51\xf7\xde\xdf\x7d" "\xf2\xe2\x6f\xfc\x62\xcf\x8e\xd6\xb9\x52\x1f\xfb\x00\x00\x00\x00\xbd\x25" "\x7d\xf8\x4c\xef\x5f\x0c\xa5\xb0\x28\x7c\x22\x2c\x9a\xee\xfb\xc3\x50\x7b" "\x7c\x12\xf7\xaf\xca\x99\x43\x8f\xfc\xfb\x6f\x2b\x42\x58\x79\xc5\xf1\xe1" "\x5c\x26\x6d\xff\xdf\xbc\x76\xc3\x8b\x9d\x97\x10\x3a\xc2\x33\x21\x5c\xd2" "\xa8\x17\xa5\xd4\xfb\xed\x1f\x1e\xb9\x67\x59\xed\xcc\x63\x21\xac\xbc\x3c" "\xbb\x30\x97\x7a\x9e\xee\xf5\xda\xb7\x8c\x6b\x4f\x57\x36\xaf\xdb\x7e\xe4" "\xf8\xb6\xf7\xfa\x65\x00\x00\x00\xe0\xc2\x91\xf4\xff\x03\xcd\x99\xa1\x50" "\xc8\xdd\x99\xda\xff\x27\x9d\x77\x47\xff\x9f\xba\xff\x74\x03\x7e\xc9\x3d" "\xbb\x9e\xbd\xac\x71\x6d\x74\xe4\x1d\x19\x99\xa1\x46\xbd\x4c\x4a\xbd\x2f" "\x2f\x7b\xe2\x2f\xcb\xd7\xfc\xe3\xcd\xb3\xfd\xff\x7b\xd5\xfb\xdc\xfe\x3b" "\x0e\x5d\xd6\x56\xb0\x3e\xd3\x21\x8a\xe7\x85\x10\xd6\x1f\xbf\xf6\x60\x26" "\x39\x75\xbd\x7e\xb6\xa3\x7e\xf2\xbb\x7c\xed\xbb\x6f\xfc\x67\xcb\xce\x87" "\xcf\xd4\xeb\x17\x43\xb1\x31\xbf\x20\xd7\xad\xfe\xb9\xd7\x0e\xf3\xe2\xda" "\x64\x66\xdf\xf8\xda\x77\xf7\x55\xdb\xeb\xe7\x52\xce\xff\xe0\xef\x5f\x3a" "\xf1\xeb\x05\x7b\xde\x39\x5b\xff\xed\xc5\x83\xcd\xfa\x57\x77\x3d\x7f\x08" "\xe1\xd9\x5e\xf5\x07\x37\x3e\xb4\xf7\xba\xfd\x87\xd7\xb7\xd7\x0f\x21\x94" "\xbb\xd5\x7f\xeb\x9d\x9b\xc2\x95\x7f\xba\xfd\x81\xce\xf3\x0f\x76\x6c\xdc" "\xfa\xcb\xb7\x5e\x9b\xea\x89\x51\x5c\x3b\xba\xe4\xd4\xc1\x35\x07\x4a\xd7" "\xb7\xd7\x8f\x3a\xea\x27\xbf\xff\x2f\x4f\x3c\xba\xf7\x67\x0f\xff\xe0\x99" "\xa4\x7e\xf2\xb7\x22\x2b\x96\xce\xb6\x7e\xdb\x33\xa7\x28\xae\xbd\xb2\xfb" "\xd2\x5d\x2f\xdf\xbf\x61\x41\x7b\xfd\x4c\xca\xf9\x5f\xbc\xe5\xd5\xe1\xad" "\xe5\xef\xff\xb1\xf3\xfc\xb7\xbd\xdf\xf3\x37\xeb\x3f\x7e\xcd\x93\xb7\x9e" "\xdc\x14\xdf\xd7\xb9\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70" "\x61\x99\xaa\x8e\x4c\x54\x46\xc7\xc6\x33\x51\x08\x51\x4a\x4c\xad\x8b\x64" "\x2d\x9b\x8f\xe3\xf2\x2c\xea\x74\xc6\xbc\x7e\xf3\xb1\xb7\x6e\xd9\xf3\xd3" "\x9f\xb4\xce\x95\xfa\x3a\x01\x00\x00\x00\xd0\x4b\xd2\x87\xcf\xf4\xfe\xc5" "\x50\x0a\xf9\x90\x0f\x83\xd3\x7d\xff\xd3\x95\xcd\xeb\xb6\x1f\x39\xbe\x2d" "\x0c\xd5\x57\xa3\xc6\x98\x9b\xdc\x7a\xf7\xf6\xcf\x6c\xd9\xba\xe3\xce\xdb" "\xe6\xe8\xce\x01\x00\x00\x80\xd9\x4a\xfa\xff\x5c\x73\x66\x28\x14\x72\xcb" "\xc2\x40\xa3\xff\x1f\xbd\x63\xc7\xfa\xe3\xd7\x1e\xcc\x24\xfd\x7f\x26\xe9" "\xff\xb7\xdc\x3e\xb9\x79\x65\x68\xc6\xbd\xb2\xfb\xd2\x5d\x2f\xdf\xbf\x61" "\x41\xf3\x39\x41\xe3\x95\x7f\xf1\x6c\xdc\xe7\x67\xe2\x6e\xbc\xe1\xd8\xd0" "\xa9\x3f\x7f\x6b\x79\xd7\xb8\xd5\x33\x71\x47\x97\x9c\x3a\xb8\xe6\x40\xe9" "\xfa\x24\xae\xfe\x27\x04\x71\xf3\x4b\xf2\x7c\xe2\xf1\x6b\x9e\xbc\xf5\xe4" "\xa6\xf8\xbe\xe6\xfd\xb5\xee\xf7\xd9\x6f\x6e\x9d\x6c\x3c\x9e\x48\xf6\x1d" "\xdc\xf8\xd0\xde\xeb\xf6\x1f\x5e\xdf\x3c\x47\x63\x1c\x3c\x1b\xbf\x6a\x26" "\x6e\x32\xb3\x6f\x7c\xed\xbb\xfb\xaa\x49\x5c\xb6\x31\x16\x1b\xe7\x06\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xce\x35\x55\x1d\x99\xa8\x8c\x8e\x8d" "\x87\x6c\x08\x51\x4a\x4c\xad\x8b\x64\x2d\x9b\x8f\xe3\x72\x1f\x75\xd7\x2e" "\xfb\xd5\x03\x17\x9f\x7e\x6e\x51\xeb\x5c\x21\xd7\xc7\x46\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0" "\x7f\xd9\x81\x03\x01\x00\x00\x00\x00\x20\xff\xd7\x46\xa8\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xc2\x7e\xdd\x84\xc6\x55\xf5\x71\x00\x3e\x67\x26\x79" "\x33\xcd\x24\x6d\xd2\xbc\x60\x54\x4c\xd3\xaa\x28\x75\x61\x51\x10\xd1\x8d" "\x8a\x8a\xb4\x22\x05\x57\x95\x22\xd5\xd6\x2e\x44\x41\x10\x51\xea\xc2\x54" "\x5a\x51\xa2\xe2\x46\xb0\xba\xb0\x88\x0a\x6a\x94\x82\x82\x8d\xa5\xa5\x55" "\x52\xf1\xab\xb8\x71\xa1\x82\x42\x75\x21\x94\x62\x40\x1b\x8a\x0b\x95\x24" "\xe7\x24\x93\x6b\x6e\x53\x6f\xd3\x45\xf1\x79\x60\x38\x39\xe7\x9e\xf9\xdd" "\xff\xbd\xe7\xcc\xcd\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\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9c\x53" "\x3a\xda\xfa\xa7\xda\xc3\x3b\x1f\x9e\xb8\xe3\x82\x5b\x3e\x7f\xf2\xbe\x13" "\x4f\xdc\xf6\xd1\x83\xdb\x2f\x7b\xfc\xed\x9f\x07\x37\xdf\xf4\xd9\x9e\xce" "\x37\x4e\x8e\x6d\x59\xb9\xf5\xbb\x9b\xfb\x36\xef\xbb\x7f\xed\xe8\xae\x57" "\x0e\xfd\xde\xfd\xc1\x9f\x47\x17\x0c\x7e\x6c\xba\x59\x9d\xba\x8d\x10\xe2" "\xf1\x18\x42\x63\xff\xf8\x8b\x4f\x8d\x7d\x71\xde\xe4\x58\x0c\x21\xd4\x63" "\xcf\x50\x08\xbd\x71\xf9\xa1\xde\x58\x48\x58\xf3\x47\x08\x61\xcb\x4c\x9d" "\x73\x0f\xbe\x7f\xe2\xea\xad\x93\xed\xf6\xe1\x8e\x39\xe3\xcb\x0a\x21\xc5" "\xeb\x0a\xcd\xfa\xe4\xf0\x70\x5f\x9e\xd0\x33\xb7\x5e\xce\x79\xed\xad\x9d" "\x46\xda\x67\xdb\x26\x1e\xbd\x22\xfc\x70\xe3\x86\x1d\x5f\xad\x78\xef\xdd" "\xf6\x91\x63\x43\xb3\x53\x62\xa3\x65\x3f\x85\xb0\x74\x53\x31\x6c\x49\x7a" "\x4d\xca\xbb\xad\x3f\xbf\x39\xb5\xeb\x43\x08\x9d\x2d\xef\xbb\x76\x81\x22" "\x2f\x3e\xcd\x8b\xb9\xb2\xa4\x7f\x61\x6a\xff\x97\xda\xe6\x02\x39\xf9\xf8" "\xaa\x42\xbf\x56\x98\x57\xec\x67\xed\x25\xed\xa2\xaa\x2f\x5c\x47\xd1\xe9" "\xce\x5b\x48\x57\xa1\x5f\x7c\x18\x9d\xa9\xb2\x3a\xf3\x78\x6f\x6a\x3f\x4c" "\xed\xea\x7f\x99\x5f\xcf\xaf\x18\x6a\x31\xb4\xcd\x94\xff\x40\x9c\xdd\x23" "\xa1\x65\x8f\xc6\x10\xa7\xd6\xb0\x31\xd3\xaf\xcd\x59\xd3\x58\x58\xe3\x18" "\x42\x2c\xf4\x6b\x85\x7e\xbd\xbd\x70\x5d\x53\xe7\x4d\x1b\xad\x1e\xe3\xdc" "\xf1\x3c\xaf\x30\x9e\x1f\xc7\x6d\x69\x7c\x65\x4b\x8d\xf3\xb9\xb3\x64\xfc" "\xfc\xd4\x36\xd2\x07\xf5\x64\xee\x87\xe2\x1f\xd3\x9a\xff\xf8\x63\xe6\xba" "\xa6\xe4\xba\xc6\x8b\x27\xaa\x9f\xa2\xb8\xb3\xa0\xd6\xf2\x0c\x9a\x6f\x7c" "\x66\xe1\xd3\x62\x34\xd3\x58\x33\x2e\x4f\x07\xf6\xbf\x9a\xa7\xfc\x35\x8f" "\x7c\x6c\x6c\xc3\xb3\x97\xd6\x37\x7e\x7c\xb8\xa7\xa4\x8e\xb8\x27\xa6\xfc" "\x58\xc8\x9f\x75\xaa\xfc\x6d\x5f\xf6\x76\xdd\xfd\xce\xd0\x23\xfd\x65\xf9" "\x9b\x6a\x29\xbf\x56\x29\xff\xc7\x75\x47\x7e\xbd\xeb\x99\xd7\x5e\x2e\xcd" "\x7f\x21\xe7\xd7\x2b\xe5\x5f\x75\xa0\xf3\xf8\xba\x4f\x76\xae\x2a\xbd\x3f" "\xe3\xf9\xfe\xb4\x55\xca\xbf\xe7\xe8\xa7\xcf\xad\xf8\xff\xbd\x23\xa5\xf5" "\xef\xce\xf9\x8d\x4a\xf9\x37\x8c\x1e\xe9\xe8\x9e\x38\x70\xb0\xb4\xfe\x35" "\xf9\xfe\x2c\xa9\x94\xff\xfd\xf5\xb7\xfe\xf4\xd6\x37\x7b\x8f\x95\xe6\x87" "\x9c\xdf\x59\x29\x7f\xe3\xe8\x43\xcf\x77\x0c\x4c\x5c\x5e\x9a\x7f\x30\xdf" "\x9f\x66\xb5\xfd\xf3\xdb\xc8\x35\xdf\x0e\x0c\xfc\x32\x58\x96\xff\x75\x4c" "\x1f\xfe\xee\x4a\xf9\x6f\x0e\xed\xba\xee\xf5\x65\xc3\x6b\x4b\xd7\x77\x7d" "\xbe\x3f\x3d\x95\xf2\x6f\xbf\x64\xdf\x8e\xae\x89\xbd\x17\x95\x3d\x3b\xe3" "\xee\xc5\xfa\xcf\x09\xf0\xdf\xd4\x97\xbe\x63\x3d\x9d\xfa\x55\x7f\x67\x9e" "\xa9\x96\xdf\x0b\x2f\x0d\xb6\x4d\x7f\xe7\xeb\x4a\xaf\xee\xc5\x3c\x51\xc1" "\xe4\x79\x96\x9e\xc5\x7c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfe\x66\x07" "\x0e\x48\x00\x00\x00\x00\x04\xfd\x7f\xdd\x8e\x40\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\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x9e\x0a\x00\x00\xff\xff\xf8\x82\x20\x40", 23200); syz_mount_image( /*fs=*/0x400000000100, /*dir=*/0x400000000080, /*flags=MS_LAZYTIME|MS_POSIXACL|MS_RELATIME|MS_MANDLOCK|MS_DIRSYNC*/ 0x22100c0, /*opts=*/0x4000000001c0, /*chdir=*/1, /*size=*/0x5aa0, /*img=*/0x400000000740); } int main(void) { syscall(__NR_mmap, /*addr=*/0x3ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x400000000000ul, /*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=*/0x400001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }