// https://syzkaller.appspot.com/bug?id=3531f8397abe542c2d66386970a42dc273de4b68 // 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"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } 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; } } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$bcachefs arguments: [ // fs: ptr[in, buffer] { // buffer: {62 63 61 63 68 65 66 73 00} (length 0x9) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: mount_flags = 0x4000 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {6a 6f 75 72 6e 61 6c 5f 74 72 61 6e 73 61 63 74 // 69 6f 6e 5f 6e 61 6d 65 73 2c 62 74 72 65 65 5f 6e 6f 64 65 5f 0d // cb cc 28 b5 ef 6f 8b 2c 6a 6f 75 72 6e 61 6c 5f 66 6c 75 73 68 5f // 64 69 73 61 62 6c 65 64 2c 66 73 63 6b 2c 6a 6f 75 72 6e 61 6c 5f // 66 6c 75 73 68 5f 64 69 73 61 62 6c 65 64 2c 72 61 74 65 6c 69 6d // 69 74 5f 65 72 72 6f 72 73 2c 72 65 63 6f 76 65 72 79 5f 70 61 73 // 73 5f 6c 61 73 74 3d 73 65 74 5f 6d 61 79 5f 67 6f 5f 72 77 2c 72 // 65 63 6f 6e 73 74 72 75 63 74 5f 61 6c 6c 6f 63 2c 6e 6f 5f 64 61 // 74 61 5f 69 6f 2c 00} (length 0xb1) // } // union ANYUNION { // ANYBLOB: buffer: {5c fa eb bb 70 59 81 e1 2b be ae de d7 94 aa b1} // (length 0x10) // } // union ANYUNION { // ANYRESHEX: ANYRES64 (resource) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x5971 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x5971) // } // ] // returns fd_dir memcpy((void*)0x200000000040, "bcachefs\000", 9); memcpy((void*)0x200000000000, "./file1\000", 8); memcpy( (void*)0x200000000100, "\x6a\x6f\x75\x72\x6e\x61\x6c\x5f\x74\x72\x61\x6e\x73\x61\x63\x74\x69\x6f" "\x6e\x5f\x6e\x61\x6d\x65\x73\x2c\x62\x74\x72\x65\x65\x5f\x6e\x6f\x64\x65" "\x5f\x0d\xcb\xcc\x28\xb5\xef\x6f\x8b\x2c\x6a\x6f\x75\x72\x6e\x61\x6c\x5f" "\x66\x6c\x75\x73\x68\x5f\x64\x69\x73\x61\x62\x6c\x65\x64\x2c\x66\x73\x63" "\x6b\x2c\x6a\x6f\x75\x72\x6e\x61\x6c\x5f\x66\x6c\x75\x73\x68\x5f\x64\x69" "\x73\x61\x62\x6c\x65\x64\x2c\x72\x61\x74\x65\x6c\x69\x6d\x69\x74\x5f\x65" "\x72\x72\x6f\x72\x73\x2c\x72\x65\x63\x6f\x76\x65\x72\x79\x5f\x70\x61\x73" "\x73\x5f\x6c\x61\x73\x74\x3d\x73\x65\x74\x5f\x6d\x61\x79\x5f\x67\x6f\x5f" "\x72\x77\x2c\x72\x65\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x5f\x61\x6c\x6c" "\x6f\x63\x2c\x6e\x6f\x5f\x64\x61\x74\x61\x5f\x69\x6f\x2c\x00", 177); memcpy((void*)0x2000000001b1, "\x5c\xfa\xeb\xbb\x70\x59\x81\xe1\x2b\xbe\xae\xde\xd7\x94\xaa\xb1", 16); sprintf((char*)0x2000000001c1, "0x%016llx", (long long)-1); memcpy( (void*)0x200000006280, "\x78\x9c\xec\xdd\x7f\x90\x5c\x55\xbd\x20\xf0\x73\xbb\x7b\x32\x9d\x99\xfc" "\x98\x04\x78\x44\x90\xc9\x10\xc8\x7b\x3c\x78\x9a\x09\xbf\x0a\xf5\xd5\x33" "\xef\xed\x7b\xfa\x0a\x78\x54\x2c\x5e\x29\x61\xa3\x30\x90\x09\x46\x27\x21" "\x95\x04\x81\x80\x12\x5c\x70\xa1\x00\x0b\x2d\x2d\x45\xfd\x03\x2d\xa4\x16" "\x8d\x16\x55\xb0\x4a\xa4\x44\x7e\x6c\xc2\x2a\x9a\x62\x75\xa9\x5d\xa4\x56" "\x77\xd1\x3f\xdc\x42\x96\x94\x40\x96\xb2\x5c\x67\x6b\xa6\xef\xe9\xe9\xb9" "\xd3\x77\x6e\x4f\x4f\x4f\x7e\xc0\xe7\x53\xc9\xdc\x3e\xa7\x6f\x7f\xcf\xf7" "\xde\x7b\xfa\xf6\x3d\xa7\x7b\xa6\x03\x00\x00\x00\x6f\x09\xfb\x6e\xdd\x7e" "\xf0\xa2\x13\xfe\xe9\x27\x9f\x1e\x7e\xfd\xa6\x7f\xfe\xc1\xe6\x9b\x43\x6f" "\x79\xbc\xbe\x1a\x57\xe8\x4b\x97\xd7\x1d\xae\x0c\x39\x94\xba\x2b\xcb\xc6" "\x97\xd9\x7e\xf1\x57\x37\x7c\xeb\xb7\x03\x57\xfe\xc3\x8f\x1f\xec\xf9\xe6" "\x1b\x7b\x37\x9c\xbc\xf1\x97\xff\x78\xcc\x95\x8f\x7e\xec\xfc\x3d\xf7\x7c" "\xf5\x89\xd7\x16\x3e\xfc\xe7\x17\x8b\xe2\xc6\xfe\x74\xfa\x44\x39\x79\x39" "\x09\xa1\xfa\xc3\x03\x5f\xfc\xcc\xde\x67\x8e\x1f\xab\x4b\x42\x08\xe5\xa4" "\x6f\x57\x08\x4b\x92\xa5\x4f\x2c\x49\x32\x21\x06\xff\x18\x42\xd8\x90\x16" "\x96\x65\xee\x7c\xe8\xf5\xb3\x36\x8e\x2d\x6f\xbe\xa3\x7b\x52\xfd\xe2\xcc" "\x7a\xfa\xfb\x5b\x5b\x35\xed\x67\x3b\x0f\x5e\x7b\x46\xf8\xd5\xdf\xaf\xbb" "\xe5\x67\xcb\xbf\xfb\x9d\xae\xdd\x2f\xed\x9a\x58\x25\xa9\x36\xf4\xa7\x10" "\x16\x5d\xde\xf8\xf8\xae\x10\xc2\xfc\xf4\xff\x98\xd8\xdb\x62\x7f\x8c\x9d" "\x76\x6d\x08\xa1\xa7\xe1\x71\xe7\x15\xe4\x75\x4a\x8b\xf9\xaf\xca\x29\x9f" "\x98\x2e\xe7\xa5\xcb\xde\x82\x38\xf1\xfe\x15\x99\x72\x29\xb3\x5e\xb6\x1c" "\x75\x65\x96\x3d\x05\xed\xcd\x56\x5e\x1e\xed\xae\x57\x64\x41\xa6\x9c\x3d" "\x19\xcd\x56\x5e\x9e\xb1\x7e\x49\xba\xfc\x7e\xba\x3c\x7d\x86\xf1\xcb\xf1" "\x7f\x12\x4a\x49\xa8\xd4\xd3\x1f\x49\x26\xfa\x48\x68\x38\x6e\x49\x48\xc6" "\x8f\x65\xb5\x5e\x2e\xd5\x8f\x6d\x48\xb7\x3f\x53\x4e\x32\xe5\x52\xa6\x5c" "\xee\xca\x6c\xd7\x78\xbb\x69\x47\x2b\x27\xc9\xe4\xfa\xf4\x89\x54\xca\xd4" "\xc7\xd3\x71\x25\xad\x3f\xb9\xf1\x5c\xdd\xc4\xc5\x39\xf5\x6f\x4b\x97\xd5" "\xf4\x89\xfa\x46\x2c\x87\xec\x8d\x9a\xde\x29\x37\xea\xdb\x35\x2e\xe6\x75" "\x60\x9a\x5c\x0e\x85\x52\xc3\x39\xa8\x59\x7d\xfd\xc0\xa7\x07\xa3\x37\xad" "\xeb\x4d\x96\x4e\x79\xcc\x68\x13\xf1\xbe\xbd\xeb\xee\x5c\x59\x5e\xff\xe4" "\xbe\xbe\x9c\x3c\x92\x07\x93\x34\x7e\xd2\x56\xfc\x9d\x3f\x5d\xb2\xe0\x23" "\xdf\xbe\xfd\x9a\xec\xeb\x7a\x3d\xfe\xe5\xa5\x34\x7e\xa9\xad\xf8\xbf\xbe" "\x60\xff\x2b\x97\xde\xfe\x8d\xaf\xe4\xc6\xbf\x3b\xc6\x2f\xb7\x15\xff\xcc" "\xc7\x7a\x5e\xbe\xe0\xa9\x5b\x57\xe4\xee\x9f\x03\x71\xff\x54\xda\x8a\x3f" "\xf4\xe2\xd3\x77\x2d\x3f\xf6\x8a\xdd\xb9\xf9\xdf\x1b\xe3\x57\xdb\x8a\xbf" "\x66\xcf\xfe\xee\x85\x07\x1f\x7b\x3c\x37\xff\xc1\xb8\x7f\xe6\xb7\x15\xff" "\x85\xf7\xbc\xef\x37\x0f\x3c\xf7\xc8\x4b\xb9\xf1\x43\x8c\xdf\xd3\x56\xfc" "\xf5\x7b\xb6\x7e\xb6\xbb\xff\xe0\x69\x8d\xf1\x1b\x9f\x17\xc9\xe3\x71\xff" "\xf4\xb6\xd7\x7f\x5e\xdd\x7d\xee\xf3\xfd\xfd\xbf\x1b\xc8\xcb\xff\xd9\x18" "\x7f\x61\x5b\xf1\xef\xdf\x75\xcf\xbb\xef\x5b\x7c\xc7\xf9\xb9\xc7\x77\x6d" "\xdc\x3f\x7d\x6d\xc5\xbf\xf0\xd4\x47\x6f\x59\x70\xf0\x91\x93\xf2\xce\x9d" "\xc9\xbd\x9d\x7a\xe5\x04\x78\x6b\x3a\x26\xbd\xc6\xba\x2d\x2d\xb7\x38\xce" "\x1c\x3b\xf9\x5e\xde\xc9\x3c\x1a\xc6\x0b\x5f\x1e\xa8\xd4\xae\xf9\x16\xa4" "\xff\x17\x76\xb2\xa1\xcc\xc5\xe7\x58\x3b\x8b\x3a\x19\x1f\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x08\xc7" "\x9d\xf1\x9f\xdf\xff\xbf\x3e\xd8\xf7\x72\x25\x2d\x77\xa7\x37\x5e\x28\xd5" "\x96\xb1\x7e\x5e\x08\xc9\xfc\x10\xc2\xf6\x1d\x43\xdb\x76\x6c\xda\x72\xd5" "\xc0\xc7\xae\xbe\x66\xdb\x96\xa1\x91\x81\xa1\x1d\x03\xc3\x5b\x76\x6c\xbb" "\x7e\xe0\xec\xbf\x19\xd8\x36\xbc\x75\x64\xe8\xfa\xb1\x7b\x07\xdf\x71\x56" "\xed\x71\x4b\x43\x52\x5b\x26\x27\x4d\x69\xbb\x7b\x74\x74\xb4\xd4\x37\xb9" "\x2e\xb6\xf7\x6f\x4e\xdd\xfd\xab\x95\xe7\xfd\xef\xdf\x87\x30\x78\xdc\x2f" "\xfa\x2b\xb9\xf9\xaf\xba\x67\xf3\x7d\xc7\x36\xf9\x99\x91\xac\x19\x7d\xef" "\xe6\x6b\x2e\xfa\xc5\x39\x5f\x4f\xb7\xab\x2f\xcd\xab\xaf\x49\x5e\xa3\xa3" "\xa3\xa3\x21\x27\xaf\xff\x73\xc9\x9f\xee\xfb\xfc\x81\xdf\x9e\x16\xc2\xe0" "\x5f\x4c\x97\xd7\xd3\x2f\xfc\xdd\x8f\x26\x25\x34\x5e\x31\x11\x27\x55\xea" "\x0e\xb5\x84\xba\x93\x9e\xa6\x79\xd4\xb3\x4e\xf3\x89\xfb\xab\xb2\x71\xd3" "\xc8\xf0\xe0\xf4\xfb\x77\xec\xf1\xe5\x9c\xed\xf8\xb7\x37\xbc\xf4\xc7\x8d" "\xd7\x7d\xee\x4f\xb5\xfd\x5b\xcd\xdd\x8e\x16\xf7\xef\xfc\x35\xa3\x23\xa5" "\x2f\xad\xbb\xf0\xff\x7d\xe9\xc6\x5a\x45\x51\x5e\x87\xeb\xb8\x17\xed\xef" "\xb8\x15\x31\xbf\xb8\xff\xaa\xe9\xfe\x5e\x94\x6e\xd7\xa2\x9c\xed\xaa\xe4" "\x6c\xd7\xad\x3f\x7b\xfc\xb9\x1f\x9e\x70\xfb\x6b\xbb\xc2\x60\xe5\xd5\xe5" "\x53\xdb\x2e\xda\xae\xae\xb4\x03\x74\x25\x6f\x6b\xa9\xdd\xd8\x42\x4f\xb2" "\x64\x52\x7d\x35\x5d\x3f\x1e\xf1\xf8\xb8\x55\x3b\x36\x6f\x5d\xb5\xfd\xfa" "\x9d\xef\xd8\xb4\x79\xe8\xaa\xe1\xab\x86\xb7\xbc\x6b\xf5\xd9\xab\xcf\x1d" "\x3c\xe7\xdc\x73\x56\x8d\x6f\xf9\xaa\x0e\x6f\x7f\x6c\xff\x2f\x5b\xdc\xfe" "\x43\xd3\x9f\x16\x7f\x62\xd7\xf7\xe3\xcf\xd6\xfa\x53\x51\x5e\x45\xfb\x63" "\x2c\xaf\xe2\xfd\xd1\x98\x51\xde\xf3\xaf\xe7\xe2\xcf\x7c\xe1\x5d\xf7\x3c" "\x75\x51\xad\xa2\xa8\x9f\xc7\xb5\xeb\xe7\x93\x74\xd9\x33\x76\x9c\x57\x87" "\x5a\x7f\x3b\x50\x0e\xe9\xe6\x15\x6e\x57\xd1\x7e\x08\x21\x0c\x34\xdb\x0f" "\xaf\xbc\x76\x7e\x38\xfe\xbf\x6d\xba\xa5\xe8\x3c\xd4\x78\x64\x1a\x7f\x66" "\x24\x6b\x46\x9f\x59\xf1\x87\xaf\x9f\xf7\xb5\x65\x7f\x5b\xab\x68\xe7\x3c" "\x5f\x4e\x6f\xb7\x7c\x9e\x6f\x4c\xa8\xcd\xf3\x7c\x3d\xeb\x89\x7c\xc6\xf7" "\x57\x35\x3d\x1e\xa3\x47\xe8\xfe\xed\x4e\xf7\x56\x77\xd2\xdb\x34\xaf\xd5" "\xcf\x3c\xd5\x75\xe7\xbe\xdf\x7f\xb2\x9e\xdf\xbc\x79\xe1\xba\xa1\x1d\x3b" "\xb6\xad\xae\xfd\x5c\x90\x66\xba\x20\x39\xb1\x69\x5e\xd9\xda\xb8\x5d\xcb" "\xc7\x7f\x4e\xf4\xcf\x7a\x37\x6d\xd2\x5f\xc7\x74\x85\x5a\x7e\xd9\xf3\x67" "\x5c\x3d\xbb\x57\x7b\xd3\xfb\x7a\x93\xa5\x4d\xb7\x2b\x2b\xde\xb7\x77\xdd" "\x9d\x2b\xcb\xeb\x9f\xdc\x97\xb7\xa7\x93\x07\x6b\x2d\xce\x0f\x0b\x6b\xcb" "\xe4\xed\x39\x6b\x8e\x64\x1e\x58\xae\x27\xdc\xac\xfd\x23\xf5\xf9\x57\xd4" "\x3f\xfa\xdf\xff\xb5\x87\x3f\xf8\xf0\xf7\xce\x9e\xd2\x3f\xce\xac\xfd\x2c" "\xda\xae\x24\x67\xbb\xbe\xfb\xdc\xfd\x5f\xf8\xe6\xe7\xfe\xfd\xf7\x3a\xb7" "\x5d\xef\xff\xbb\xfd\x7d\x7f\xf8\x1f\x1f\x5d\x59\xab\x38\x24\xd7\x8f\x1d" "\x38\xaf\xd4\xb3\x4e\xf3\x49\x1a\xcf\x2b\x67\x86\x50\xf4\xfc\x5b\x1e\x9a" "\x6f\x47\xee\xf3\xaf\xd4\x7c\x7b\x8a\x9e\x7f\xd9\x76\x26\xd6\x6f\x1e\x6f" "\x20\x53\xee\x0d\xe5\xb6\x9e\xaf\x67\x3e\xd6\xf3\xf2\x05\x4f\xdd\xba\x22" "\xf7\xf9\x7a\xa0\xd5\xe7\xeb\x8d\x93\x4a\xe5\x82\xe7\xeb\x91\xd2\x7f\xb2" "\xcf\xaf\xa4\x32\x39\x8f\xb9\x7b\x7e\x4d\xea\x28\xc9\x9a\xd1\x1f\xdf\x76" "\xcc\xae\x27\x6e\x5a\x7b\x42\xad\xa2\xa8\x5f\xd7\xd7\x6e\xd6\xaf\xcf\x6a" "\x61\xfc\x91\xb3\x5d\x3f\xba\xf4\xf9\xfe\xab\x07\xfe\xdd\x7f\xed\xdc\x79" "\xe3\x5b\x7f\xf3\xd0\x65\xbf\x1c\x5a\xf3\xa9\x5a\x45\xfb\xc7\x3d\xe6\xd2" "\x99\xe3\x5e\x4d\xf7\x6f\x35\x67\xff\xd6\xb3\x8e\xe3\xce\xc6\xfd\xfb\xce" "\x2b\xaf\x1e\xd9\x50\xab\x3f\x72\xaf\x7f\xd3\x65\xc1\xf8\x27\x9e\x4a\xb6" "\x5f\xbf\xf3\xe3\x43\x23\x23\xc3\xdb\xb6\xb7\xb6\x5d\xad\xbe\x9e\xc6\x76" "\xb2\x7b\xb9\xdd\xd7\xd3\x78\x76\x5b\x5a\xb0\x5d\xa5\x29\xdb\x35\x77\x37" "\x5a\xd9\x5f\xad\x3e\xdf\x62\xfe\x1b\xda\xde\x5f\x93\x9f\x6f\xbd\x21\x69" "\xeb\x75\x61\xe7\x4f\x97\x2c\xf8\xc8\xb7\x6f\xbf\xa6\x6f\xca\xa3\xd2\x86" "\x2e\x2f\xa5\xf1\x4b\x6d\xc5\xff\xf5\x05\xfb\x5f\xb9\xf4\xf6\x6f\x7c\x25" "\x37\xfe\xdd\x31\x7e\xa5\xad\xf8\x43\x2f\x3e\x7d\xd7\xf2\x63\xaf\xd8\x9d" "\x1b\xff\xde\x24\x8d\x5f\x6d\x2b\xfe\x9a\x3d\xfb\xbb\x17\x1e\x7c\xec\xf1" "\xdc\xf8\x83\x31\xff\xf9\x6d\xc5\x7f\xe1\x3d\xef\xfb\xcd\x03\xcf\x3d\xf2" "\x52\x6e\xfc\x10\xe3\xf7\xb6\xb7\xff\x5f\xdd\x7d\xee\xf3\xfd\xfd\xbf\xcb" "\x8d\xff\x6c\x92\xb6\x33\x76\x8d\x14\xc2\x43\xaf\x9f\xb5\xb1\x56\x4e\x42" "\x57\xfa\x7c\x8b\x79\x74\x4d\xca\x2b\x64\xcb\x49\xa6\x5c\xca\x94\xcb\x8d" "\xe5\x52\x6d\xae\xb5\xde\x40\x39\x49\x26\xd7\xc7\xf5\xd2\xfa\x93\x1b\x72" "\x69\xe6\x43\x39\xf5\xf1\x2a\xac\xba\xac\xb6\x7c\x23\x96\x43\xf6\xc6\xf4" "\xf5\x47\x9a\x52\xc3\xb9\xbf\x59\x7d\xd1\x75\x2a\x00\xc0\x9b\x5d\x7c\xff" "\x3f\x5e\x83\xc6\xf7\xff\x87\xd3\x0b\xa5\xfc\x99\x06\x98\x30\xdb\x71\xd8" "\xb2\x9c\xb8\x71\x1c\x36\x31\x9f\x33\x6f\xd2\xfd\xcb\xd2\xf8\xf1\xf1\x71" "\x1e\xb0\xff\x9d\x61\x70\x6c\x79\xf3\x40\xed\x42\x7f\xa6\xef\x23\xc4\xe7" "\x43\x76\x9e\x33\xb6\x73\xda\x29\x93\x63\xb4\x3b\xcf\x59\x34\xff\xbe\x22" "\x53\x8e\x79\xd5\xe6\xcb\x2b\x0d\xe3\xd0\xd4\xd4\x71\x4d\x25\xb4\x30\xff" "\x3e\xb5\x9d\xe9\xe7\xdf\x33\x9b\x5f\x3c\x3f\x3e\x70\xdb\x94\xb4\x06\x1a" "\xe6\xad\xb2\xc7\xaf\x2b\x9d\x31\x6b\xf6\x79\x87\x4c\xbe\x95\xb1\x08\x79" "\xfd\x23\x3b\x2f\x16\x3f\xcf\xd1\xbf\x28\xac\x1d\x6f\xaf\xc5\xfe\x91\xfd" "\x1c\x4d\x3c\x0e\xd9\xcf\xd1\xc4\x76\x4e\xc8\x9c\x38\xdb\xfd\x1c\xcd\x6c" "\xfb\x47\x4c\x7b\x9a\xfe\x31\x9e\x72\xf1\xfb\x1b\x53\x8f\x5f\x98\x66\xff" "\x4e\x1c\xbf\xe6\xd1\xb2\xc7\x6f\x06\xc7\xbb\x3a\xb6\xfe\x5c\xbf\x3f\xdb" "\x81\x79\xc3\xa6\xa7\xb4\x43\x37\x6f\x38\xb7\xef\x87\x1d\x05\xf3\x92\xe9" "\x3d\x37\x4d\x8e\x7f\x88\xe6\x25\x0f\xcb\xbc\x61\xa5\xf5\x79\xc3\x58\x1f" "\xb7\xa3\xd2\xe2\x7c\xe2\x07\x73\xea\x3b\x35\x9f\x18\x4f\x17\x31\xaf\x03" "\xd3\xe4\x72\x28\xe4\x4d\x13\x9a\x4f\x04\x8e\x76\x71\xfc\x1f\x5f\x23\xc6" "\xc6\xff\x63\x17\xe0\xff\x37\xb3\x5e\xd1\x75\x68\xf6\xaa\x31\xc6\xcb\xfd" "\x9c\x50\xb9\x79\x3e\x45\xe3\x8e\xa9\x9f\xd3\xeb\x69\xeb\x75\x7c\xfd\x9e" "\xad\x9f\xed\xee\x3f\x78\x5a\xee\x75\xce\xe3\xad\x7e\xee\x67\xeb\xa4\x52" "\x4f\xc1\xe7\x7e\x8a\xf6\xe3\xca\x4c\xb9\x70\x3f\xe6\x4c\xd0\x14\x8d\xf7" "\xb2\xed\x14\xed\xf7\xec\xe7\x32\x7a\xc3\xc2\xb6\xf6\xfb\xfd\xbb\xee\x79" "\xf7\x7d\x8b\xef\x38\x3f\x77\xbf\xaf\xad\xbd\x90\x16\xef\xf7\x2f\x4c\x2a" "\x2d\x2c\xd8\xef\x47\xc1\x78\xa1\x79\xfc\x23\x61\xbc\x90\x84\xb0\x2b\x27" "\xfe\x9b\x68\xbc\xd0\x3c\xfe\x51\xf2\x39\x86\xa2\xf9\xb3\xc3\xf6\x39\x86" "\xf4\x83\x4f\x73\x35\x1e\xf9\xd7\x9c\xfa\x99\x8e\x47\x7a\xa6\xdc\xa8\x6f" "\xd7\xb8\x23\x69\x3c\xd2\xd2\xe7\x1b\xba\x0e\x6d\x5e\x00\xc0\xd1\x23\x8e" "\xff\xeb\xef\x9f\xa5\xe3\xff\xff\x19\x57\x48\xaf\x23\x8a\xc6\xad\xa7\x67" "\xca\x31\x5e\xee\xb8\x35\xe7\xfa\x24\x6f\xdc\xfa\x2f\xe9\xf2\xba\xcc\xfa" "\xbd\xe9\x6f\x54\xcc\xf4\xba\xf9\xc2\x53\x1f\xbd\x65\xc1\xc1\x47\x4e\xca" "\x1d\xb7\xdc\xdb\xea\x38\xf4\x3f\x4c\x2a\xf5\x15\x8e\x43\x67\x37\x6e\xce" "\x1d\x47\xac\xed\xcc\xe7\xc5\x73\xc7\x11\xf5\x71\xd6\xec\xde\x57\xca\xcd" "\xbf\x3e\x4e\x9c\xdd\x38\x3d\x37\x7e\x7d\x9c\x3e\xbb\x71\x74\xee\xfe\xa9" "\x8f\xa3\x67\x37\x0f\x90\x1b\xbf\x3e\x0f\x70\xb4\x8f\x73\x0b\xe6\xeb\x32" "\x8d\xc5\x62\xab\xf3\x75\x6f\xda\x71\x74\xfa\xeb\xb3\x73\x35\x8e\xbe\x38" "\xa7\x7e\xa6\xe3\xe8\xde\x29\x37\xea\xdb\x35\xce\x38\x1a\x00\xe0\xf0\x8a" "\xe3\xff\x78\x19\x17\xc7\xff\x4f\x65\xd6\x9b\xed\xfb\xec\xb9\xe3\x82\x0e" "\x5d\xb7\x67\xff\x1e\x48\x3d\xfe\xb3\x87\x6a\x5c\x39\xd7\xe3\xbe\xb9\x1e" "\xb7\xce\xf5\xb8\x7e\xae\xe7\x25\x8e\xf6\x71\xf1\xc4\xbc\xd0\x4d\x33\x88" "\xdf\xfa\xbc\xd0\xdc\xce\x93\xbd\xe5\xc7\xc5\x69\xa3\x47\xef\xb8\xb8\x96" "\x81\x71\x31\x00\xc0\x9b\x5b\x1c\xff\xcf\x4f\xcb\xf9\xe3\xff\xd9\xbd\x6f" "\xdd\x6c\xfc\xd6\x35\x69\x7c\x62\x7c\xde\x34\xbe\xf1\xf9\x11\x32\x3e\x3f" "\xda\xe7\xbf\x8c\xff\xbd\x2f\x5e\xcc\xf8\x1f\x00\xe0\xcd\x2d\x8e\xff\xe3" "\xaf\x3d\xc6\xbf\xff\xf7\x9f\xd2\x72\xf6\xef\xd6\xb7\x38\x4e\x5f\x13\xab" "\xe2\x7d\xc6\xe9\x47\xd2\x38\xfd\xbf\x4f\xf9\xeb\x0b\xc6\xe9\x47\xca\x38" "\xbd\xf3\xf3\x6c\xc1\xe7\x00\x0e\xef\x3c\xc0\xfc\x89\xf5\xcd\x03\x00\x00" "\x70\x38\x74\x8d\x8f\x94\xa6\xfe\x9e\xfd\x87\xd3\x65\xf6\xf7\xec\xf3\x7e" "\x2f\xff\xd2\x9c\xf5\x5b\x55\x49\x2f\x8f\xaf\xd8\xb1\x6d\x78\xf8\xb2\x6b" "\xb6\x6e\x18\xda\x31\x7c\xd9\x96\xab\x37\x0c\x6f\xbf\xec\xda\x6d\x9b\x76" "\xec\x18\xde\x52\x5b\x6f\xb6\xe3\xc6\xdc\x71\x4b\x3a\x6e\xec\x0a\x95\x74" "\x7f\x34\x5f\x2f\x3b\x6e\x5b\x9c\xfe\x3d\x84\xc5\x39\x7f\x0f\x21\xbb\x7e" "\x0c\x7b\xe2\xf8\x8d\xa9\x7f\x0f\x21\xdb\xec\xfc\x82\xbf\x23\x30\x71\xfc" "\x5a\xcb\x37\xef\xf8\x95\xa6\x59\xbf\x59\xff\xc8\x3b\xde\x79\xf1\x3f\x94" "\xb3\x7e\x54\x3f\xfe\x57\x7e\xf4\xcc\xcb\x36\x6e\xbf\x6c\xd3\x96\x4d\x3b" "\x36\x0d\x8d\x6c\xda\x39\x3c\x79\xbd\xb1\x51\x6b\xcf\x0c\xbe\x37\x33\xee" "\x96\x19\x7d\x5f\x6a\xe6\xc7\x14\xa5\x99\x7f\x7f\x67\x67\xf2\x28\x4d\xc9" "\xa3\x2b\xdd\x1f\xcd\x8e\xff\x58\x1e\x49\x26\x8f\x25\x69\x26\x4b\xf2\xbe" "\xff\x20\x27\xef\x9f\xfc\x97\xcf\x7f\xe2\xd4\xd1\x3f\x3d\x10\xc2\xe0\x71" "\xe5\xb7\xcf\x6a\xff\x25\x6b\x46\xff\xe3\x25\xc3\xff\xb2\x63\xdf\x2f\xb6" "\x8e\xe5\x5f\x9a\x36\xff\xfa\x9a\x69\x5e\x45\xdf\x57\x9a\x5d\x3f\x6e\x4f" "\x65\xe4\xea\xed\x3b\xce\xd8\x78\xf5\x35\x5b\xb2\xdf\x28\xd9\x9e\x38\x9f" "\x51\xaa\x97\xe7\x68\x3e\x23\x7d\xfa\x97\x5b\x9c\x9f\x58\x9f\x53\x3f\xd3" "\xcf\x29\x94\xa7\xdc\x38\x32\xb5\x3c\x3f\x01\x00\xc0\x24\xf1\xfd\xff\x78" "\x3d\x1b\xdf\x3f\xfc\x5c\x7a\x01\x15\xeb\x5b\x1f\xa7\xcf\xee\xfd\xe3\xdc" "\x71\xfa\x60\x6b\xe3\xf4\xec\xf7\x92\x15\x8d\xd3\xb3\xeb\xc7\xed\x6d\x75" "\x9c\x5e\x9d\xe5\x38\x3d\xdb\x7e\xd1\x38\xbd\xd9\xfa\xcd\xc6\xe9\x79\xe3" "\xee\xbc\xf8\xff\x9a\xb3\xfe\x4c\xb5\xde\x4f\x66\xf7\x39\x8f\xdc\x7e\x72" "\x79\x6b\xfd\x24\xfb\x7d\x06\x45\xfd\x24\xbb\xfe\x4c\xfb\x49\x32\xcb\x7e" "\x92\x6d\xbf\xa8\x9f\x34\x5b\xbf\x59\x3f\xc9\x3b\xee\x79\xf1\x3f\x90\xb3" "\x7e\x9e\xd6\xfb\xc3\xec\x3e\x97\x93\xdb\x1f\xee\x2e\x85\xfd\x8b\x8b\xfb" "\xc3\x5f\x67\xca\x45\xfd\x21\xbb\xfe\x4c\xfb\x43\x69\x96\xfd\x21\xdb\x7e" "\x51\x7f\x68\xb6\x7e\xb3\xfe\x90\x77\x7c\xf3\xe2\x5f\x94\xb3\x7e\xab\x26" "\xf7\x8f\xb1\x8e\x31\xde\x2f\x86\x2f\xbb\xf6\xea\x6d\x1f\x6f\x58\x6f\xae" "\xbf\xff\x62\xf6\xf9\xcd\xed\xf7\x7f\xb4\xab\xf5\xfc\xe7\xf6\x73\x5f\x73" "\x9f\xff\xdc\x7e\xae\x6c\xee\xf3\x9f\xdd\xe7\xca\x72\xf3\x7f\x76\x76\x33" "\x61\xad\xe7\x3f\xb7\xdf\xef\xd2\xae\x43\x36\x5f\x9b\x7e\xd8\xac\xe8\xf3" "\x67\x45\xf3\xb8\xeb\x72\xea\x67\x3a\x8f\x3b\x6f\xca\x8d\x23\x93\x79\x5c" "\x38\x7c\xe2\xf8\x3f\xbe\xdd\x13\xc7\xff\x77\xa4\xcb\x4e\xbf\x0d\x74\xf4" "\x7f\x4f\x9a\xef\x31\x6b\x1a\xbf\x43\xdf\x63\x56\x74\x1d\xe3\xf5\x7c\x9a" "\xc6\x8e\x00\xa5\xe6\x2f\xe7\x5e\xcf\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\x32\xba\x2b\xcb\xc6\x97\xfb\x6e" "\xdd\x7e\xf0\xa2\x13\xfe\xe9\x27\x9f\x1e\x7e\xfd\xa6\x7f\xfe\xc1\xe6\x9b" "\xff\xea\x86\x6f\xfd\x76\xe0\xca\x7f\xf8\xf1\x83\x3d\xdf\x7c\x63\xef\x86" "\x93\x37\xfe\xf2\x1f\x8f\xb9\xf2\xd1\x8f\x9d\xbf\xe7\x9e\xaf\x3e\xf1\xda" "\xc2\x87\xff\xfc\x62\x61\xe0\xbe\xf1\x9f\x95\xd3\xd3\x62\x35\x84\xe4\xe5" "\x24\x84\xea\x0f\x0f\x7c\xf1\x33\x7b\x9f\x39\x7e\xac\x2e\x09\x21\x94\x93" "\xbe\x5d\x21\x2c\x49\x96\x3e\xb1\x24\xc9\x44\x18\xfc\x63\x08\x61\x43\x3d" "\xcf\xc9\x77\x3e\xf4\xfa\x59\x1b\xc7\x96\x37\xdf\xd1\x3d\xa9\x7e\x71\xfd" "\x56\x57\xd3\xed\x0a\xbd\xe5\x98\x4f\x63\x9e\x21\x5c\xd7\xc2\xce\xe2\xa8" "\x53\x4d\xfb\xd9\xce\x83\xd7\x9e\x11\x7e\xf5\xf7\xeb\x6e\xf9\xd9\xf2\xef" "\x7e\xa7\x6b\xf7\x4b\xbb\x26\x56\x49\xaa\x0d\xfd\x29\x84\x45\x97\x37\x3e" "\x7e\xac\x17\xcd\x4f\xff\x8f\x89\xbd\x6d\x59\x7c\x70\xba\x5c\x1b\x42\xe8" "\x69\x78\xdc\x79\x05\x79\x9d\xd2\x62\xfe\xab\x72\xca\x27\xa6\xcb\x79\xe9" "\xb2\xb7\x20\x4e\xbc\x7f\x45\xa6\x5c\xca\xac\x97\x2d\x47\x5d\x99\x65\x4f" "\x41\x7b\xb3\x95\x97\x47\xbb\xeb\x15\x59\x90\x29\x67\x4f\x46\xb3\x95\x97" "\x67\xac\x5f\x92\x2e\xbf\x9f\x2e\x4f\x9f\x61\xfc\x72\xfc\x9f\x84\x52\x12" "\x2a\xf5\xf4\x47\x92\x89\x3e\x12\x1a\x8e\x5b\x12\x92\xf1\x63\x59\xad\x97" "\x4b\xf5\x63\x1b\xd2\xed\xcf\x94\x93\x4c\xb9\x94\x29\x97\xbb\x32\xdb\x35" "\xde\x6e\xda\xd1\xca\x49\x32\xb9\x3e\xae\x97\xa9\x8f\xa7\xe3\x4a\x5a\x7f" "\x72\xe3\xb9\xba\x89\x8b\x73\xea\xdf\x96\x2e\xab\xe9\x13\xf5\x8d\x58\x0e" "\xd9\x1b\x35\xbd\x53\x6e\xd4\xb7\x6b\x5c\xcc\xeb\xc0\x34\xb9\x1c\x0a\xa5" "\x86\x73\x50\xb3\xfa\xfa\x81\x4f\x0f\x46\x6f\x5a\xd7\x9b\x2c\x9d\xf2\x98" "\xd1\x26\xe2\x7d\x7b\xd7\xdd\xb9\xb2\xbc\xfe\xc9\x7d\x7d\x39\x79\x24\x0f" "\x26\x69\xfc\xa4\xad\xf8\x3b\x7f\xba\x64\xc1\x47\xbe\x7d\xfb\x35\xcb\xf2" "\xe2\x5f\x5e\x4a\xe3\x97\xda\x8a\xff\xeb\x0b\xf6\xbf\x72\xe9\xed\xdf\xf8" "\x4a\x6e\xfc\xbb\x63\xfc\x72\x5b\xf1\xcf\x7c\xac\xe7\xe5\x0b\x9e\xba\x75" "\x45\xee\xfe\x39\x10\xf7\x4f\xa5\xad\xf8\x43\x2f\x3e\x7d\xd7\xf2\x63\xaf" "\xd8\x9d\x9b\xff\xbd\x31\x7e\xb5\xad\xf8\x6b\xf6\xec\xef\x5e\x78\xf0\xb1" "\xc7\x73\xf3\x1f\x8c\xfb\x67\x7e\x5b\xf1\x5f\x78\xcf\xfb\x7e\xf3\xc0\x73" "\x8f\xbc\x94\x1b\x3f\xc4\xf8\x3d\x6d\xc5\x5f\xbf\x67\xeb\x67\xbb\xfb\x0f" "\x9e\x96\x1b\xff\xf1\xb8\x7f\x7a\xdb\xeb\x3f\xaf\xee\x3e\xf7\xf9\xfe\xfe" "\xdf\x0d\xe4\xc5\x7f\x36\xc6\x5f\xd8\x56\xfc\xfb\x77\xdd\xf3\xee\xfb\x16" "\xdf\x71\x7e\xee\xf1\x5d\x1b\xf7\x4f\x5f\x5b\xf1\x2f\x3c\xf5\xd1\x5b\x16" "\x1c\x7c\xe4\xa4\xbc\x73\x67\x72\xef\x0c\x5f\x39\xef\x9e\xd9\xea\x00\x6f" "\x76\xc7\xa4\xd7\x58\xb7\xa5\xe5\x76\xc7\x99\xb3\xd5\x30\x5e\xf8\xf2\x40" "\xa5\x76\xcd\xb7\x20\xfd\xbf\xb0\x93\x0d\x65\x8c\xb5\xb3\x68\x0e\xe3\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\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xf0\xe6\xf4\xf3\x1b\xcf\xfe\xf0\x25\xef\xfd\xc0\xba\x4a" "\x12\x42\x92\xb3\xce\x68\x13\xf1\xbe\xf2\xbc\x35\x6b\x06\xda\x68\x77\xe8" "\xc5\xa7\xef\x5a\x7e\xec\x15\xbb\x1b\xeb\x96\xb5\x11\x07\x00\x00\x00\x28" "\x16\xc7\xe1\xa5\x7a\x4d\x35\x2c\x0b\xd7\x26\xf3\xc3\x89\x4d\xd7\x8f\x73" "\x04\x27\xc6\x52\x32\xb9\x3e\x3b\x87\x10\xe3\x64\xe7\x08\xda\x8d\x53\xea" "\x50\x9c\x72\x87\xe2\x54\x3a\x14\xa7\xab\x43\x71\xe6\x75\x28\x4e\x77\x87" "\xe2\x54\x0b\xe2\x54\x43\x6b\x71\xe6\x4f\x13\xa7\x32\xd6\x2b\x5a\xcc\xa7" "\x67\xda\x7c\x5a\x8f\xd3\xdb\xa1\x38\x0b\x3a\x14\x67\x61\x87\xe2\x2c\xea" "\x50\x9c\xc5\x1d\x8a\xd3\x37\x6d\x9c\xd6\xfb\xe1\x92\x0e\xc5\x59\xda\xa1" "\x38\xc7\x74\x28\xce\xb1\x1d\x8a\x73\x5c\x87\xe2\xfc\x45\x87\xe2\x1c\xdf" "\xa1\x38\xd9\x39\xe5\x99\xf6\xc3\x85\xe9\x9a\x27\xe4\xc5\x19\xbf\x51\x2e" "\x8c\x53\x49\xca\xf5\x3b\x9a\xcd\xa7\x1f\x9f\xb6\x73\xd2\x2c\xdb\xe9\x2d" "\x68\x67\x61\xd1\xeb\x71\x8b\xed\xcc\x6f\xb1\x9d\x53\x32\x8f\x2b\xcd\xb0" "\x9d\x6a\x8b\xed\xfc\xe5\x2c\xdb\x49\x5a\x6c\xe7\xaf\xf3\xda\x59\xdc\x5a" "\x3b\xa5\x82\x76\x62\xbf\xbd\x2e\x9b\x5f\x6c\x27\x96\x5a\xec\xff\xd7\x77" "\x28\xce\xce\x0e\xc5\xb9\xa1\x43\x71\x6e\xec\x50\x9c\x4f\x76\x28\xce\xa7" "\x3a\x14\xe7\xa6\x59\xc6\x01\x68\x55\x1c\xff\x4f\x8c\xf7\xfa\x42\x77\xe5" "\x6f\x43\x4f\x7a\xc6\xc9\xce\x02\xc4\xf1\xee\xf2\xf1\x9f\x53\x5f\xef\xf2" "\x4e\x48\x31\xde\xdb\x33\xf5\xf3\x8a\xe2\x65\x07\xea\x99\x78\xcb\x67\x9a" "\x5f\x76\x02\x21\x13\x6f\x45\xa6\xbe\x6b\x52\xbc\x4a\x7d\x3c\x32\x4d\xbc" "\x6a\x63\xbc\x95\x99\x3b\x0b\xb7\x37\x3b\xa1\x90\xc9\xef\xf4\x4c\x7d\x77" "\x51\xbc\xec\xc4\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcc\xa1\x9f" "\xdf\x78\xf6\x87\x2f\x79\xef\x07\xd6\x85\x24\x8c\xfd\x6b\x6a\xb4\x89\x78" "\x5f\x79\xde\x9a\x35\x03\x6d\xb4\xbb\x77\xdd\x9d\x2b\xcb\xeb\x9f\xdc\xd7" "\x58\xd7\x5d\x69\x23\x10\x00\x00\x00\x50\x28\x8e\xc3\xbb\xea\x35\xd5\xd0" "\x5d\x59\x1d\xba\x93\x79\x93\xd6\xab\xa6\xf3\x00\xd5\xb4\x5c\xee\xab\x2d" "\xfb\x17\x85\xb5\x63\xcb\x64\xa0\x34\x5e\xee\x49\x96\x4c\xfb\xb8\x4a\xfa" "\xb8\x55\x3b\x36\x6f\x5d\xb5\xfd\xfa\x9d\xef\xd8\xb4\x79\xe8\xaa\xe1\xab" "\x86\xb7\xbc\x6b\xf5\xd9\xab\xcf\x1d\x3c\xe7\xdc\x73\x56\x6d\xdc\x34\x32" "\x3c\xb8\xaa\x12\x46\x86\x07\x43\xe8\x2e\x88\x17\x42\x18\x9f\x7e\xd8\x7e" "\xfd\xce\x8f\x0f\x8d\x8c\x0c\x6f\xdb\x5e\xab\xcc\xe6\xbf\x2c\x7d\xdc\xb2" "\xb4\x9c\xa4\x8f\xeb\x7f\x67\x18\x1c\x5b\xde\x9c\xe6\xbf\xb4\xa0\xbd\xd2" "\x94\xf6\xe6\xee\x46\xf1\xd1\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\xfe\x3f\xbb\xf6\x17\xeb\x66\x59\xc7\x01" "\xfc\x79\xdb\x9e\xb6\x1c\x98\xab\xe1\x5f\x59\xd8\x59\xb3\x3f\x64\x2a\xd1" "\x6d\x1e\xcc\x50\x42\xdf\xc4\x44\x12\xd8\x96\x9d\x90\x98\x16\x3d\x92\x45" "\xb6\x48\x3c\x63\x0b\x6c\x64\x62\x85\x25\x02\x6e\xd1\x98\x40\x96\x2c\x33" "\xbb\x70\x66\x12\x41\xe2\x0d\x7f\x84\x18\x07\x64\xc9\x0c\x4e\x97\x78\xe6" "\x62\x80\x28\x17\x7a\xa1\x01\xc5\x0c\xb2\x0b\x33\x52\xb3\x73\xfa\xf6\xb4" "\x3d\xed\x7a\xa8\x84\x03\xf3\xf3\xb9\xe8\xdb\x3e\xcf\xef\x79\x7e\xef\xd3" "\x8b\x93\x7c\xdf\x53\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xe0\x83\x35\x59\x1b\x1d\xaf\x94\xc7\xaa\xc3\x51\x08\x51\x8f\x9a\x7a\x17" "\xc9\x5c\x3a\x1b\xc7\xa5\x01\xfa\x7e\xf5\xf9\xed\x3f\xcc\x8d\x9c\x59\xd9" "\x3a\x96\xcb\x0c\xb0\x11\x00\x00\x00\xd0\x57\x92\xc3\x87\x9a\x23\xf9\x90" "\xcb\xa4\x43\x3a\x5c\x35\xf5\x69\x69\x68\x99\x08\x33\xb9\x1f\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\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\xff\x33\x59\x1b\x1d\xaf" "\x94\xc7\xaa\x17\x47\x21\x44\x3d\x6a\xea\x5d\x24\x73\xe9\x6c\x1c\x97\x06" "\xe8\xfb\xfa\xdb\x4f\x7e\xee\x95\x91\x91\xbf\xb7\x8e\x15\x07\xd8\x07\x00" "\x00\x00\xe8\x2f\xc9\xe1\xa9\xe6\x48\x3e\x14\xc3\xb2\x30\x14\x5d\xd5\x56" "\x97\x3c\x1b\x58\xd4\xb1\xbe\xb3\x2e\xd9\x67\xf1\x1c\xeb\x3a\x9f\x1d\xf4" "\xaa\x5b\x36\xc7\xba\x6b\xe6\x58\xf7\x89\x3e\x75\x1b\x1a\xd7\x5d\x01\x00" "\x00\x00\x3e\xfa\x92\xfc\x9f\x69\x8e\x14\x42\x2e\xb3\xa0\x67\xfe\xef\x97" "\xeb\x93\xba\x25\x1d\x75\xe9\xc6\x75\x90\xdf\x0a\x00\x00\x00\x00\xff\x9b" "\x24\xff\xe7\x9a\x23\xc5\x90\xcb\x14\x9b\x79\x7d\xae\x79\x7f\x69\x47\x5d" "\xb2\xbe\xdf\xff\xed\x93\xf5\x2b\x7a\xac\xef\xf7\xff\xfc\xf5\x8d\xab\xff" "\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\x47\xc7\x64\x6d\x74\xbc\x52\x1e\xab" "\xa6\xa3\x10\xa2\x1e\x35\xf5\x2e\x92\xb9\x74\x36\x8e\x4b\x03\xf4\x5d\x73" "\x64\xf8\x9f\xb7\x1c\x7d\x68\x69\xeb\x58\x2e\x33\xc0\x46\x00\x00\x00\x40" "\x5f\x49\x0e\x9f\x89\xde\xf9\x90\xcb\x0c\x87\xa1\x70\xf1\x54\xee\x1f\xb9" "\xe9\xe0\xd3\x5f\x7e\xfa\xd9\xd1\x10\xc2\x74\xcc\xcf\x66\xc3\xae\x4d\x3b" "\x76\xdc\xbd\x66\xfa\x35\xa9\x5b\x7d\xfc\xe8\xd0\x0f\x8e\xbd\xf9\x9d\x59" "\x75\xab\xa7\x5f\xe7\xed\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xfb\x66\xb2\x36\x3a\x5e\x29\x8f\x55\x2f\x8a\x42\x88\x7a" "\xd4\xd4\xbb\x48\xe6\xd2\xd9\x38\x2e\x0d\xd0\xf7\xb5\x2f\x7c\xe9\xaf\x8f" "\x9f\x7a\xee\x8d\xd6\xb1\xe2\x00\xfb\x00\x00\x00\x00\xfd\x25\x39\x7c\x26" "\xfb\xe7\x43\x31\x64\x43\x36\x5c\x31\xf5\xa9\x35\xeb\x9f\x93\xea\x58\xdf" "\xeb\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\xe7\x5b\xf7\x7d\x73\xd3\xc4\xc4\xe6\xbb\xbd\xf1\xc6\x1b\x6f" "\x9a\x6f\xe6\xfb\x2f\x13\x00\x00\xf0\x7e\x5b\x12\xa2\x50\x7f\x8f\xae\xdc" "\x38\xdf\x77\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x7c\x18\x4c\xd6\x46\xc7\x2b\xe5\xb1\x6a\x3e\x0a\x21\xea\x51\x53\xef\x22" "\x99\x4b\x67\xe3\xb8\x34\x40\xdf\xf8\xf9\x13\xb9\x05\x67\x8e\xbc\xd8\x3a" "\x56\x1c\x60\x1f\x00\x00\x00\xa0\xbf\x24\x87\xcf\x64\xff\x7c\x28\x86\xa1" "\x30\x14\x2e\x9f\xfa\xd4\xed\x99\xc0\x54\xfe\x2f\x7c\x80\x37\x09\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\xa8\x4c\xd6\x46" "\xc7\x2b\xe5\xb1\xea\x82\x28\x84\xa8\x47\x4d\xbd\x8b\x64\x2e\x9d\x8d\xe3" "\xd2\x7b\xee\x5a\x0f\x8f\xed\x3e\xf0\xf9\xc3\x0b\xbf\x7f\x73\xeb\x68\x2e" "\x33\xc0\x01\x00\x00\x00\x80\xbe\x92\x1c\x9e\x6d\x8e\xe4\x43\x2e\xf3\xc9" "\x90\x0b\x57\x37\x3e\x4f\xb4\x2f\x88\xd2\x8d\x6b\xf7\xe7\x02\x33\xeb\xb6" "\xb7\x2d\x1b\x9e\xf3\xba\x5a\xdb\xba\xf4\x9c\xd7\xed\xe9\x38\x59\xa6\x71" "\x9a\xe9\x75\xf9\x64\xbf\xc2\xf4\xb5\xb9\xae\x34\x7b\x5d\xa9\x65\x5d\x31" "\x34\xdb\x97\xda\xd6\x85\x7d\x6d\xab\x16\xf4\xb9\xcf\x00\x00\x00\x00\xf3" "\x28\xc9\xff\xb9\xe6\x48\x21\xe4\x32\xb9\x96\x9c\xfb\xb3\xb6\xfa\x82\x9c" "\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf4\x30\x59\x1b\x1d\xaf\x94" "\xc7\xaa\x51\x14\x42\xd4\xa3\xa6\xde\x45\x32\x97\xce\xc6\x71\x69\x80\xbe" "\xf7\xfd\xee\xe3\x97\x7c\xed\xe7\x7b\x77\xb6\x8e\x15\x07\xd8\x07\x00\x00" "\x00\xe8\x2f\xc9\xe1\x33\xd9\x3f\x1f\x8a\x61\x71\xf8\x58\x58\x3c\x95\xfb" "\x43\xa1\xbd\x3e\xa9\xfb\x57\xe5\xec\xe1\x47\xff\xfd\xb7\x95\x21\xac\xba" "\xe2\xe4\x48\xa6\x73\xdb\x1f\x27\x6f\x7e\xf3\xda\x8d\x2f\x74\xbe\x84\x90" "\x6a\xaf\x4e\x85\xb0\xb0\xd1\x2f\xea\xd1\xef\xb7\x7f\x78\xf4\xde\xe5\xf5" "\xb3\x8f\x87\xb0\xea\xf2\xf4\xd5\xb3\xfa\x85\xf3\xf7\x6b\xdf\x32\xae\x3f" "\x53\xd9\xbc\x7e\xc7\xb1\x93\xdb\xfb\x7c\x39\x00\x00\x00\x70\x81\x48\xf2" "\xff\x50\x73\xa4\x10\x72\x99\xbb\x7a\xe6\xff\x24\x79\xf7\xc9\xff\x4d\x53" "\x01\x7c\xe1\xbd\xbb\x7f\x79\x59\xe3\xb5\x91\xc8\x3b\x56\xa4\x0a\x8d\x7e" "\xa9\x1e\xfd\xbe\xb8\xfc\xc9\xbf\xac\x58\xfb\x8f\x37\xcf\xe5\xff\xf3\xf5" "\xfb\xcc\x81\xad\x87\x2f\x6b\x6b\x38\x3d\xd2\x21\x8a\xeb\xe5\xad\x3b\x37" "\x9c\xbc\xee\x50\x2a\x39\xf5\x74\xff\x74\x47\xff\xe4\x7b\xf9\xca\xb7\xdf" "\xf8\xcf\x96\x5d\x8f\x9c\x9d\xee\x9f\x0f\xf9\xc6\xf8\xa2\x4c\xb7\xfe\xb3" "\x5f\x3b\x5c\x14\xd7\x27\x52\xfb\xab\xeb\xde\xdd\x5f\x6b\xef\x9f\xe9\x71" "\xfe\x87\x7e\xff\xe2\xa9\x5f\x2f\xda\xfb\xce\xb9\xfe\x6f\x2f\x19\x6e\xf6" "\xbf\xe6\x3c\xe7\x3f\x7f\xff\xe1\x5b\x1f\xde\x77\xfd\x81\xa3\x1b\xda\xfb" "\x87\x10\x4a\xdd\xfa\xbf\xf5\xce\xcd\xe1\xca\x3f\xdd\xf9\x60\xe7\xf9\x87" "\x3b\x36\x6e\xfd\xe6\x5b\x5f\x3b\x44\x71\xfd\xf8\xd2\xd3\x87\xd6\x1e\x2c" "\xde\xd0\xde\x3f\xea\xe8\x9f\x7c\xff\xbf\x38\xf5\xd8\xbe\x9f\x3e\xf2\xbd" "\x67\x93\xfe\x8d\xdf\x8a\x1c\x59\xb9\x2c\x84\xd6\x5f\xae\xf4\xee\x9f\xea" "\xe8\xff\xf2\x9e\x4b\x77\xbf\xf4\xc0\xc6\x45\xed\xfd\x53\x3d\xce\xff\xc2" "\x6d\xaf\x8c\x6c\x2b\x7d\xf7\x8f\x9d\xe7\xbf\xa3\x6d\xd7\x4c\xcf\xbb\x98" "\x7d\xfe\x27\xae\x7d\xea\xf6\x57\x37\xc5\xf7\x77\x4e\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\x5c\x58\x26\x6b\xa3\xe3\x95\xf2\x58\x35\x15" "\x85\x10\xf5\xa8\xa9\x77\x91\xcc\xa5\xb3\x71\x5c\x1a\xa0\xef\xeb\xb7\x9c" "\x78\xeb\xb6\xbd\x3f\xf9\x51\xeb\x58\x71\x80\x7d\x00\x00\x00\x80\xfe\x92" "\x1c\x3e\x93\xfd\xf3\xa1\x18\xb2\x21\x1b\x86\xa7\x72\xff\x33\x95\xcd\xeb" "\x77\x1c\x3b\xb9\x3d\x14\xa6\x67\xa3\xc6\x35\x33\xb1\xed\x9e\x1d\x9f\xda" "\xb2\x6d\xe7\x5d\x77\xcc\xd3\x9d\x03\x00\x00\x00\x73\x95\xe4\xff\x4c\x73" "\xa4\x10\x72\x99\xe5\x61\xa8\x91\xff\xcb\x5b\x77\x6e\x38\x79\xdd\xa1\x54" "\x92\xff\x53\x49\xfe\xdf\x72\xe7\xc4\xe6\x55\xa1\x59\xf7\xf2\x9e\x4b\x77" "\xbf\xf4\xc0\xc6\x45\xcd\xe7\x04\x21\x4c\xfd\x2c\x20\x7f\xae\xee\xb3\x33" "\x75\x37\xdd\x78\xa2\x70\xfa\xcf\xdf\x58\xd1\xb5\x6e\xcd\x4c\xdd\xf1\xa5" "\xa7\x0f\xad\x3d\x58\xbc\x21\xa9\x0b\xad\x75\xab\x43\xf3\xf9\xc4\x13\xd7" "\x3e\x75\xfb\xab\x9b\xe2\xfb\x9b\xf7\xd7\x5a\xf7\xe9\xaf\x6f\x9b\x68\x3c" "\x9e\x48\xf6\x1d\xbe\xf5\xe1\x7d\xd7\x1f\x38\xba\xa1\x79\x8e\xc6\x75\xb8" "\xb1\x6f\x52\x37\x91\xda\x5f\x5d\xf7\xee\xfe\x5a\x52\x97\x6e\x5c\xf3\x8d" "\x73\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\xb3\x4d\xd6\x46\xc7\x2b" "\xe5\xb1\x6a\x48\x87\x10\xf5\xa8\xa9\x77\x91\xcc\xa5\xb3\x71\x5c\x1a\xa0" "\xef\xba\xe5\xbf\x7a\xf0\x92\x33\xcf\x2d\x6e\x1d\xcb\x65\x06\xd8\x08\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xcb\x0e\x1c\x08\x00\x00\x00\x00\x00\xf9\xbf\x36\x42\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x15\xf6\xeb\x2f\x44\xaa\x2a\x8e\x03\xf8" "\x39\x33\xbb\xed\xb8\xb3\xab\xbb\x1a\x64\x45\xeb\x6a\x45\x61\x0f\x49\x41" "\x44\xbd\x54\x54\x84\x46\x08\x3d\x19\x12\x96\xe6\x43\x14\x04\x11\x85\x3d" "\xb4\x86\x46\x62\x45\x2f\x41\xd6\x8b\x44\x05\xd5\x16\x42\x41\x6e\x92\x68" "\xb1\x46\xff\xa4\x97\x1e\x2a\x28\xb0\x1e\x02\x91\x16\xca\x41\x7a\xa8\xd8" "\x99\x73\xc7\xd9\xeb\x5c\xa7\xee\x5a\x50\x7d\x3e\x30\x9c\x3d\xe7\xde\xfb" "\xbd\xbf\x7b\xcf\x99\x3b\x7b\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\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x7f" "\x95\x81\xbe\xa5\xcd\xf6\xd0\xf6\x07\x1b\xb7\x9d\x77\xd3\x27\x8f\xdf\x73" "\xfc\xb1\x5b\xde\xbb\x7f\xeb\x25\x8f\xbe\xfe\xc3\xf8\xc6\x1b\x3e\xde\x33" "\xf8\xca\x89\xe9\x4d\xcb\x37\x7f\x7d\xe3\x92\x8d\xfb\xee\x5d\x3d\xb5\xeb" "\xc5\x83\xbf\x0c\xbf\xf3\xdb\x91\x9e\xc1\x8f\xb4\x9a\x95\xa9\x5b\x0b\x21" "\x1e\x8b\x21\xd4\xde\x9f\x79\xee\x89\xe9\x4f\xcf\x99\x1d\x8b\x21\x84\x6a" "\x1c\x99\x08\x61\x34\x2e\x3e\x38\x1a\x73\x09\xab\x7e\x0d\x21\x6c\x6a\xd7" "\x39\x77\xe3\xdb\xc7\xaf\xdc\x3c\xdb\x6e\xdd\x39\x30\x67\x7c\x51\x2e\x24" "\x7f\x5d\xa1\x5e\xcd\xea\x69\x19\x99\x5b\x2f\xff\x2d\xb5\xb4\xce\xb6\x34" "\x1e\xbe\x2c\x7c\x7b\xfd\xba\x6d\x9f\x2f\x7b\xeb\xcd\xfe\xc9\xce\xb5\x16" "\x6b\x1d\xeb\x29\x84\x85\x1b\x3a\x8f\xef\x0f\x21\x2c\x48\x9f\x59\xd9\x6a" "\x5b\x9a\x1d\x9c\xda\xb5\x21\x84\xc1\x8e\xe3\xae\xee\x51\xd7\x85\x7f\xb2" "\xfe\xcb\x0b\xfa\xe7\xa7\xf6\xac\xd4\xd6\x7b\xe4\x64\xdb\x57\xe4\xfa\x95" "\xdc\x7e\xf9\x7e\xa6\x3f\xd7\x0e\xf6\x38\xdf\x7c\x15\xd5\x51\x76\xbf\x5e" "\x86\x72\xfd\xfc\xc3\x68\xbe\x8a\xea\xcc\xc6\x47\x53\xfb\x6e\x6a\x57\xfe" "\xc5\xfc\x6a\xf6\x89\xa1\x12\x43\x5f\xbb\xfc\xfb\xe2\xc9\x35\x12\x3a\xe6" "\x2d\x86\xd8\x9c\xcb\x5a\xbb\x5f\x69\xcf\x6d\x48\xd7\x9f\xeb\xc7\x5c\xbf" "\x92\xeb\x57\xfb\x73\xd7\xd5\x3c\x6f\x5a\x68\xd5\x18\xe7\x8e\x67\xfb\xe5" "\xc6\xb3\xc7\x71\x5f\x1a\x5f\xde\xf9\xac\xee\xe2\xf6\x82\xf1\x73\x53\x5b" "\x4b\x5f\xd4\x13\x59\x3f\xe4\xff\x68\xa9\x9f\xf2\x47\xfb\xba\x9a\xb2\xba" "\x66\x4e\x53\xcb\x3f\xa1\xd2\xf1\x0c\xea\x36\xde\x9e\xf8\x34\x19\xf5\x34" "\x56\x8f\x8b\x4f\x39\xe6\xf7\x2e\xb2\x6d\xd3\xeb\x9e\xba\xb8\xba\xfe\x83" "\x43\x23\x05\x75\xc4\x3d\x31\xe5\xc7\x52\xf9\x5b\x3e\x1b\x1d\xba\xf3\x8d" "\x1d\x0f\x2d\x2d\xca\xdf\x50\x49\xf9\x95\x52\xf9\xdf\xad\x39\xfc\xd3\x1d" "\x3b\x5e\x7a\xa1\x30\xff\xd9\x2c\xbf\x5a\x2a\xff\x8a\xfd\x83\xc7\xd6\x7c" "\xb8\x7d\x45\xe1\xfd\x99\xc9\xee\x4f\x5f\xa9\xfc\xbb\x8e\x7c\xf4\xf4\xb2" "\xb3\xef\x9e\xec\x36\xd7\xcd\xfc\xdd\x59\x7e\xad\x54\xfe\x75\x53\x87\x07" "\x86\x1b\xfb\x0f\x14\xd6\xbf\x2a\xbb\x3f\x0b\x4a\xe5\x7f\x73\xed\xcd\xdf" "\xbf\xf6\xe5\xde\xa3\x85\xf9\x21\xcb\x1f\x2c\x95\xbf\x7e\xea\x81\x67\x06" "\xc6\x1a\x97\x16\xe6\x1f\x68\x7d\x15\xea\xcd\x15\x5a\x62\xfd\xfc\x3c\x79" "\xd5\x57\x63\x63\x3f\x8e\x17\xe5\x7f\x91\xdd\xff\xe1\x2e\xf9\xb1\x67\xfe" "\xab\x13\xbb\xae\x79\x79\xd1\xce\xd5\x85\xeb\x73\x6d\x76\x7f\x46\x4a\xd5" "\x7f\xeb\x45\xfb\xb6\x0d\x35\xf6\x5e\x50\xf4\xec\x8c\xbb\xcf\xd4\x2f\x27" "\xc0\xff\xd3\x92\xf4\x3f\xd6\x93\xa9\x9f\x7b\xcf\x3c\x3a\x71\x72\xd7\xd3" "\xbe\x67\xce\x57\xc7\xfb\xc2\xf3\xe3\x7d\xad\x5f\xa0\xa1\xf4\x19\x3e\x93" "\x27\xca\x99\x3d\xcf\xc2\xbf\x31\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xe0\x0f\x76\xe0\x80\x04\x00\x00\x00\x40\xd0\xff\xd7\xed\x08\x14\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\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\xa7\x02\x00\x00\xff\xff\x7b\xea\x25" "\x07", 22897); syz_mount_image(/*fs=*/0x200000000040, /*dir=*/0x200000000000, /*flags=MS_REC*/ 0x4000, /*opts=*/0x200000000100, /*chdir=*/1, /*size=*/0x5971, /*img=*/0x200000006280); // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x42 (4 bytes) // mode: open_mode = 0x80 (2 bytes) // ] // returns fd memcpy((void*)0x200000000040, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000040ul, /*flags=O_CREAT|O_RDWR*/ 0x42, /*mode=S_IWUSR*/ 0x80); if (res != -1) r[0] = res; // creat arguments: [ // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // mode: open_mode = 0x158 (8 bytes) // ] // returns fd memcpy((void*)0x200000000100, "./file1\000", 8); syscall(__NR_creat, /*file=*/0x200000000100ul, /*mode=S_IXGRP|S_IWGRP|S_IXUSR|S_IRUSR*/ 0x158ul); // ioctl$EXT4_IOC_MOVE_EXT arguments: [ // fd: fd (resource) // cmd: const = 0x40305829 (4 bytes) // arg: ptr[in, move_extent] { // move_extent { // reserved: const = 0x17c04 (4 bytes) // donor_fd: fd (resource) // orig_start: int64 = 0x81 (8 bytes) // donor_start: int64 = 0x100000001 (8 bytes) // len: int64 = 0x0 (8 bytes) // moved_len: int64 = 0x0 (8 bytes) // } // } // ] *(uint32_t*)0x2000000004c0 = 0x17c04; *(uint32_t*)0x2000000004c4 = -1; *(uint64_t*)0x2000000004c8 = 0x81; *(uint64_t*)0x2000000004d0 = 0x100000001; *(uint64_t*)0x2000000004d8 = 0; *(uint64_t*)0x2000000004e0 = 0; syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0x40305829, /*arg=*/0x2000000004c0ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }