// https://syzkaller.appspot.com/bug?id=d13ff4f487f1df9c87d7a0abe11a8c14e5e7b244 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x20005d80, "bcachefs\000", 9); memcpy((void*)0x20005dc0, "./file0\000", 8); memcpy((void*)0x20000000, "errors=continue", 15); *(uint8_t*)0x2000000f = 0x2c; memcpy((void*)0x20000010, "compression", 11); *(uint8_t*)0x2000001b = 0x3d; memcpy((void*)0x2000001c, "zstd", 4); *(uint8_t*)0x20000020 = 0x2c; memcpy((void*)0x20000021, "metadata_checksum", 17); *(uint8_t*)0x20000032 = 0x3d; memcpy((void*)0x20000033, "crc32c", 6); *(uint8_t*)0x20000039 = 0x2c; memcpy((void*)0x2000003a, "journal_transaction_names", 25); *(uint8_t*)0x20000053 = 0x2c; memcpy((void*)0x20000054, "read_only", 9); *(uint8_t*)0x2000005d = 0x2c; memcpy((void*)0x2000005e, "verbose", 7); *(uint8_t*)0x20000065 = 0x2c; memcpy((void*)0x20000066, "errors=continue", 15); *(uint8_t*)0x20000075 = 0x2c; memcpy((void*)0x20000076, "no_splitbrain_check", 19); *(uint8_t*)0x20000089 = 0x2c; memcpy((void*)0x2000008a, "uid<", 4); sprintf((char*)0x2000008e, "%020llu", (long long)0xee00); *(uint8_t*)0x200000a2 = 0x2c; memcpy((void*)0x200000a3, "smackfsroot", 11); *(uint8_t*)0x200000ae = 0x3d; memcpy((void*)0x200000af, "errors\372\006\2719O\033n\222\331\204\336\t\000\000\000\000\000\000" "\000h|inue", 31); *(uint8_t*)0x200000ce = 0x2c; memcpy((void*)0x200000cf, "obj_user", 8); *(uint8_t*)0x200000d7 = 0x3d; memcpy((void*)0x200000d8, "crc32c", 6); *(uint8_t*)0x200000de = 0x2c; *(uint8_t*)0x200000df = 0; memcpy( (void*)0x20005e00, "\x78\x9c\xec\xdd\x7d\x90\x1c\xe5\x99\x18\xf0\xee\x99\x59\xed\x4a\xab\x8f" "\x95\x2c\xcc\x0a\x09\xb1\x18\xd9\x8e\xb8\x60\x0b\x14\x88\xe5\x3b\x47\x1b" "\xe7\xec\xd8\x8e\x6c\x64\x61\x01\x16\xa7\x93\x64\x58\x61\x1d\x42\x12\xfa" "\x40\x20\x5d\xc2\x57\x0e\x08\x26\x29\x55\x41\x1d\x04\xe2\x44\x07\x14\xb9" "\x4a\x5d\x25\xb8\x74\x09\xe1\x4e\xa9\x92\x31\xe0\x8b\xaf\x8a\x42\x26\xfe" "\x83\x23\x5f\x47\x05\xe7\x8f\xf8\x88\xea\x2c\x71\x44\x72\xbc\x57\xbb\xdb" "\xbd\x3b\xd3\xdb\xef\xf4\xec\xf4\xac\x10\xf6\xef\x57\xa5\x9d\x7d\x7b\x9f" "\x79\xde\xe7\xe9\x7d\xa7\xa7\x7b\xb4\x3b\x1b\x01\x00\x00\xf0\x4b\xe1\x95" "\xdf\xd9\xf3\xee\x57\x2e\xf8\xdc\x0f\xee\x1d\x3a\x75\xd7\x17\xfe\xe8\xd6" "\x7b\xa2\xde\xea\xe8\xf6\x9e\x34\xa0\x2f\xb9\xbd\xe3\xfd\xaa\x90\xe9\xb4" "\xfc\x87\x67\x1a\xbe\xb3\xdd\xb5\xfe\xd1\xdb\xec\xba\x38\xff\x8f\x17\xbe" "\xdb\x77\xdf\x9a\x2f\x3f\xb4\xea\xf3\x3f\xdc\xfc\x27\xf3\x07\x97\x2e\x1b" "\xba\xea\x3b\x47\xae\xbe\xff\xbe\x17\x3f\xf3\xb3\x17\x1f\x7b\x62\x4d\xd1" "\x3c\xe9\x7a\xba\x74\x62\x1c\xff\x45\x1c\x45\x4b\xdf\x3e\xf2\xd8\xfd\x2f" "\xff\xe9\xf9\x23\xdb\xe2\x91\xf9\xe3\xbe\xbb\xa3\xf9\xf3\xe3\x05\xdf\x9d" "\x1f\x67\x52\xac\x38\x1d\x45\xd1\x4d\xe3\x75\x36\x7e\xf1\xc8\xa9\x95\x5b" "\x47\x6e\xef\xf9\x56\x77\xc3\xf6\x79\x99\x24\xd6\xfb\x2f\xb7\x9e\x64\x9d" "\x1d\xdc\xf4\x8d\xa7\x8e\xdd\x32\xf8\xf2\x91\x81\x5d\x2b\x7f\x72\xf2\xca" "\x9d\x77\x4f\x84\xc4\x3d\x75\xeb\x29\x8a\xe6\x6e\xae\xbf\x7f\x57\x14\x45" "\x33\x93\x7f\x23\xd2\xd5\xd6\x9f\xde\x39\xb9\x5d\x1b\x45\xd1\xac\xba\xfb" "\x7d\xaa\xa0\xae\x4b\x5a\xac\xff\xb2\xc0\x78\x49\x72\x3b\x23\xb9\xed\x2d" "\xc8\x93\x7e\xfd\xe2\xcc\xb8\xd6\x62\x1d\xb5\xcc\x6d\x77\x8b\xf7\x6b\x57" "\x65\x9a\xf3\x67\x65\xf7\x5f\xf6\x60\x34\x5d\xd2\x3e\xe7\x26\xb7\xcf\x27" "\xb7\x97\x4e\x31\x4f\x35\xfd\x17\x47\x95\x38\xaa\x8d\x97\xbf\x3d\x9e\x58" "\x23\x51\xdd\xf7\x2d\x8e\xe2\xd1\xb5\xdd\x33\x3e\xae\x8c\x8e\xa3\xf1\x71" "\x94\x1d\xc7\x99\x71\x25\x33\xae\x76\x65\xfa\x1a\x9d\x37\xd9\xb1\xd5\x38" "\x6e\xdc\x9e\xc6\x65\xb6\xa7\x87\xe3\x5a\xb2\xfd\xe2\xfa\x63\x75\x8e\x75" "\x81\xed\x8b\x92\xdb\x9e\xe4\x81\xfa\x5e\x3a\x8e\xb2\x9f\x8c\xe9\x9d\xf4" "\xc9\x44\x1f\x51\x5d\x5d\x27\xce\xd6\xc2\x08\xa8\x04\x1e\x7b\xe9\xf6\xf1" "\xf2\x92\x6f\x46\x6f\xb2\xad\x37\x5e\x30\xe9\x3e\xc3\x39\xd2\xaf\x9d\xf8" "\xfe\x96\x0d\xef\xbc\x71\xe0\xf9\xbe\x40\x1d\xf1\x73\x71\x92\x3f\x6e\x2b" "\xff\xe0\xd0\x93\xc7\x9e\xbd\xfe\xe8\xa2\xfe\x50\xfe\xcd\x95\x24\x7f\xa5" "\xad\xfc\xaf\x54\x5f\x3d\xfd\xcc\xc9\xfe\xd9\xc1\xfc\x87\xd2\xfc\xd5\xb6" "\xf2\xaf\xff\xf9\x8f\x1f\xbc\xf7\x9a\xfd\x0b\x83\xfb\xe7\x44\xba\x7f\x6a" "\x6d\xe5\x5f\xf6\xf0\xec\x83\xa7\xf6\xaf\xeb\x1e\x08\xe5\x3f\x9c\xe6\xef" "\x69\x2b\xff\x55\x1b\x97\xae\xba\xf0\xe4\xbe\xdb\x83\xf5\xaf\x48\xf7\xcf" "\xcc\xb6\xf2\xff\xe8\x91\xe5\x67\x36\x1e\x7a\xe1\x68\x30\x7f\x94\xe6\x9f" "\xd5\x56\xfe\x37\x9f\x7c\x7a\x49\x75\xd1\xa3\xc7\x83\xf9\x8f\xa5\xfb\xa7" "\xb7\xad\xfc\xd7\xae\x7c\x7c\xf5\x97\x16\xdf\xf7\x44\x70\xff\xbf\x96\xe6" "\x9f\xd3\x56\xfe\x0d\xc7\xef\xdf\xbc\xeb\xa9\x97\x96\x07\xd7\xe7\xda\x74" "\xff\xf4\xb5\x95\xff\xf4\xea\xd7\xdf\x3a\xd3\xb7\xe6\xe9\xd0\xb1\x33\x3e" "\x7c\xb6\x9f\x61\x01\x7e\xb1\x7c\x28\x39\xc7\x7a\x30\x19\xb7\x7b\x9d\x59" "\x56\xdd\xf5\xc2\xe3\x03\xb5\xb1\x73\xbe\xd9\xc9\xbf\x39\x9d\x9c\x28\x23" "\xae\xbb\x76\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\x80\x76\x3d\xba\xfa\xdf\xdf\x56\x3f\xfe\xe8\xff\xb9\x7d" "\xfd\xf1\xff\xb0\x74\x5b\x2d\x19\x77\xd7\xa2\x28\x8e\xa2\xe8\x9d\xea\xd8" "\x38\xdd\x3e\x23\x8a\xe2\x99\x51\x14\xed\xd9\xbb\x65\xf7\xde\x6d\x3b\x6e" "\x1e\xf8\xad\x9d\xfb\x76\xef\xd8\xb2\x7d\x60\xcb\xde\x81\xa1\x1d\x7b\x77" "\xdf\x39\xf0\xb7\xfe\xe6\xc0\xee\xa1\x5d\xdb\xb7\xdc\x39\xf2\xd5\x15\x97" "\xad\x1c\xbb\xdf\x82\xd1\x6c\x51\xb4\x20\xbe\x70\x52\x2d\xc3\xc3\xc3\xc3" "\x51\x14\x0d\xd4\x6f\x4b\xe7\xfb\xbd\x2f\x3e\xf7\xff\xd6\x3f\xf1\x97\x5f" "\x8f\xa2\x15\xe7\xbd\xbe\xb4\x16\xec\xe7\x93\xff\xf5\xad\xcf\x2d\xcc\xf9" "\x98\x11\x0f\x0e\xaf\xfd\x17\x57\x3e\x72\x60\xc6\xff\x9a\x37\xb6\xa1\x2f" "\xa9\xab\x2f\x54\x57\x5f\xe3\xb6\xb4\x82\xde\xc1\xd7\xfe\xec\xb3\xcf\xbf" "\x31\x52\xd7\x87\x9b\xd5\xf5\xd8\xab\xd7\xfd\xdf\x86\x82\x46\x37\x4c\xe4" "\x49\x54\xba\xa3\xca\xe8\x27\xdd\xf1\xac\xdc\x3a\xc6\xab\x9e\xa8\x67\x74" "\x7f\xd5\xb6\x6e\xdb\x3e\xb4\xa2\x78\xff\xc6\x81\xfd\xfb\xf1\x97\xfe\xf0" "\xe4\xbf\xbb\x63\xfd\x3f\x1d\xdb\xbf\x3d\xc1\x3e\x5a\xdc\xbf\x23\x7b\xb5" "\x36\xfc\xd0\x4f\xef\xfd\xf8\xdd\x9f\x1d\xfa\xf4\x39\xfc\x7d\x2f\xda\xdf" "\x75\x2d\x8c\xd6\x97\xee\xbf\x9e\x64\x7f\xcf\x4d\xfa\x9a\x1b\xe8\xab\x12" "\xe8\xeb\xf6\x81\x37\x4f\xfc\xb3\x7f\xfb\x9f\x9e\xb9\x3b\x5a\x51\xfb\xe9" "\x45\x93\xe7\x2e\xea\xab\x2b\x59\x00\x5d\xf1\xa2\x96\xe6\x4d\x67\x98\x15" "\xcf\x6f\x88\xed\x49\xe2\xd3\xef\x78\x7a\xbf\x4f\xee\xbd\x75\xd7\x27\xf7" "\xdc\x79\xe0\xb2\x6d\xb7\x6e\xb9\x79\xe8\xe6\xa1\x1d\x2b\x57\x5e\xb9\xea" "\xf2\x95\x97\x5f\xb1\x6a\xe5\x27\x47\x5b\x1f\xfb\xd8\xb1\xfe\xd3\xf9\x3f" "\xde\x62\xff\xb3\x93\x4c\xb3\xe3\xc5\xb9\xfb\x2d\xbb\x35\x9d\xf7\xa2\xd1" "\x8f\xd5\x28\x29\x3b\xbd\xa9\xfb\xa4\x51\x57\xd4\x3b\x76\x9b\xd9\xcf\x69" "\x78\xb6\xeb\xde\xe4\x6b\xbd\xf1\x82\x49\xb9\x86\x73\xa4\x5f\x3b\xf1\xfd" "\x2d\x1b\xde\x79\xe3\xc0\xf3\xa1\x47\x5e\xfc\xdc\xd8\x8c\x33\xa3\x39\x63" "\xb7\xf1\x92\x40\xe4\xf6\xcc\x1d\xab\xe3\x05\xe7\xcd\x7f\x76\x1e\x97\x3b" "\x7f\xb7\x67\x7b\xfa\xb1\xb5\xc7\x65\x51\x5d\x45\xeb\x6a\xa4\xae\xe2\x75" "\x55\x5f\x51\x93\xe3\xd8\xab\x97\x3c\xf8\xd3\xa7\x1e\xf8\xe7\x37\xb4\x70" "\xbc\xa8\x0b\x1d\xad\x2f\xad\x73\xd6\xc8\xc3\xe5\xf2\xa8\xee\x71\x3b\x79" "\x5f\xe5\xf5\xd5\xc2\xf7\x67\x30\x6f\x3f\xdc\x78\xd9\xee\x3f\xbc\x73\xdb" "\x86\x43\x45\xc7\xf3\xfa\xef\x4c\xfd\xc7\x8c\x78\x70\xf8\x7f\x2e\x89\xbf" "\xbc\x6f\xcf\x9f\xed\x1e\xdb\x70\x56\x9e\x2f\xeb\x0b\x6a\xf3\xf9\x72\xbc" "\xea\x89\x7a\x46\xf7\x57\x4f\xf2\xfd\x38\x57\xf7\x6f\x77\x54\x4d\xfa\xea" "\xcd\xad\x6b\x5d\xfc\xd4\x67\x3e\x7e\xeb\xd1\x5f\x19\xaf\x6f\xc6\x8c\xe8" "\x8e\x2d\x7b\xf7\xee\xbe\x7c\xec\xe3\x07\xb5\xaf\x3f\x9f\x31\x6f\xe1\xb6" "\x7b\x16\x5f\x38\xa9\xaf\x2b\xc6\x3e\x16\x1d\xf7\x2f\xca\x8c\x0b\x8f\xfb" "\x95\xfc\xfe\x8a\x8e\xfb\xd9\x79\x26\xe2\xf3\xf3\x0d\x64\xc6\xbd\x51\xb5" "\xad\xe7\x89\xf5\x3f\xff\xf1\x83\xf7\x5e\xb3\x7f\x61\xf0\x79\xe2\x44\xab" "\xcf\x13\xbf\xdd\x30\xaa\x96\x7c\x9e\xa8\x04\x1e\xef\x0f\xfd\xe5\xb7\x07" "\xde\xbd\xe1\x6b\xef\x16\xad\xa7\xab\xf7\x2c\xbe\x6b\x61\xce\xc7\x6c\x7b" "\x83\xc3\x2f\xfc\xc1\xaf\x5e\xfe\xe9\xeb\xae\xf9\xfc\xd8\x86\xb3\x72\x1c" "\xaa\x2f\xa8\xcd\xe3\xd0\x78\xd5\x49\x3d\xe9\xfe\x1a\x3d\x0e\x5d\x71\xee" "\xf4\xf1\xfe\x7d\x9f\x1b\x1e\x88\xf1\xe0\xf0\x45\xdf\xf9\xd8\xb5\x67\x4e" "\xdd\xf6\xd5\xb1\x0d\x45\xfb\x77\x3c\x3a\x6f\xff\xae\x2c\x3e\xce\x57\x03" "\x7d\xdd\xd0\xf5\x91\xf9\x8f\xfc\x64\xf1\x47\x3a\xb7\x7e\xf7\x6c\xfa\xab" "\x4b\x3e\x31\x6b\xf6\x39\xb6\x7e\x7b\x92\xfd\xdb\x13\xd8\xbf\xe3\x55\x27" "\xf5\x54\xeb\xf7\xef\x27\x6e\xdc\xb9\xfd\xa6\xb1\xf1\xb9\x7b\xde\x36\xa6" "\xbb\xe0\xfa\x27\x7d\xde\xd9\x73\xe7\x81\x5b\xb6\x6c\xdf\x3e\xb4\x7b\x4f" "\x6b\x7d\xb5\xfa\x7c\x9a\xce\x93\xdd\xcb\xed\x3e\x9f\xa6\xcf\x1e\x0b\x0a" "\xfa\x4a\xbf\x5f\x13\x7d\x4d\xdf\x27\xad\xec\xaf\x56\x1f\x6f\x69\xfd\x37" "\x65\x72\xb4\xfb\x78\x03\x48\x4d\x3c\x2f\xcc\x68\xd8\x9e\x3d\x7e\xa6\xaf" "\xfb\x2d\x9d\x1b\xad\xff\xc4\x03\xdf\x7b\x35\x1e\x18\x7b\xbe\xec\xd4\xeb" "\xad\xe9\x3c\x17\x64\x9e\x98\xdb\x7d\xbd\xb5\xe8\x3a\xe9\x23\x99\x71\xe3" "\x75\x52\x2d\xaa\xeb\x7b\xcc\xe4\xeb\xa4\xd1\xbb\x14\x5d\x27\x65\xe7\x29" "\xba\x4e\xba\x24\x33\x2e\xbe\x8e\x79\x30\xb7\x93\xd0\xf7\xaf\x2b\x79\xe6" "\xcd\x7b\xdd\x34\x53\x6f\x6d\x24\x43\x68\x7d\xf4\x27\xf9\xfb\x93\x71\x7a" "\xbe\xb9\xf4\x13\xd1\x95\xd5\xe7\x3f\xfa\xc5\x78\xb0\xb5\xf5\xd1\xea\xf9" "\x74\x3a\xcf\xdf\xc8\xec\xa0\x76\xcf\xa7\x8b\xd6\xc7\xb2\x28\xbf\xae\x4e" "\xaf\x8f\x8f\x65\xee\x54\xfc\xfd\x3e\x94\x5b\x59\x4f\xe0\xfb\x51\xf4\xfd" "\x5e\xd6\x90\x68\x78\xb8\xec\x75\x79\x5f\xa0\xea\xf4\xba\xbc\x37\x8a\xdb" "\xca\x3f\x38\xf4\xe4\xb1\x67\xaf\x3f\xba\x28\x98\x7f\x73\x25\xc9\x5f\x69" "\x2b\xff\x2b\xd5\x57\x4f\x3f\x73\xb2\x7f\x76\x30\xff\xa1\x34\x7f\xad\xad" "\xfc\xcb\x1e\x9e\x7d\xf0\xd4\xfe\x75\xdd\xc1\xfc\x87\xd3\xfd\xd3\xd3\x56" "\xfe\xab\x36\x2e\x5d\x75\xe1\xc9\x7d\xb7\x07\xf3\xaf\x48\xeb\x9f\xd9\x56" "\xfe\x1f\x3d\xb2\xfc\xcc\xc6\x43\x2f\x1c\x0d\xe6\x8f\xd2\xfc\xbd\x6d\xe5" "\xbf\x76\xe5\xe3\xab\xbf\xb4\xf8\xbe\x27\x82\xf9\x5f\x8b\x93\x79\x46\x1e" "\xbb\x51\x74\xe4\xd4\xca\xad\x63\xe3\x38\xea\x4a\xd6\x7f\x5a\x47\x57\x43" "\x5d\x51\x76\x1c\x8f\x8f\x67\xe4\xf5\x11\x55\xeb\xe3\x2b\x69\x58\x32\x41" "\x35\x8e\x1b\xb7\xa7\x71\x99\xed\x69\x1f\xb5\x64\xfb\xc5\x75\x35\xe6\x59" "\x1f\xd8\x9e\x3e\x6a\x7b\x92\x07\xf6\x7b\xe9\x38\xca\x7e\xd2\x7c\x7b\x7a" "\x78\x4a\xeb\x3a\x11\x78\xfe\x39\x5b\x2a\x75\xe7\x1e\x79\xdb\x8b\x5e\x9f" "\xec\x94\x77\xde\xee\xff\xbd\xfa\x71\xfa\xff\xff\xe9\x1a\xe8\xae\x8d\x7d" "\xef\xae\xc8\xec\xaf\xa2\xe7\x8f\xec\xd1\x3b\xcd\x17\x7c\x1d\x36\xf0\x12" "\x46\xd1\xf9\xc2\xe4\xff\x7f\x9b\xd5\xd6\xe3\xef\xcd\x27\x9f\x5e\x52\x5d" "\xf4\xe8\xf1\xe0\xeb\xaa\xc7\x5a\x7d\x5d\x75\x57\xc3\x68\x56\xc1\xeb\xaa" "\x65\xeb\x0d\x1e\x2f\x8e\xa5\xc7\xd3\x72\xc7\xa3\xfe\x50\xfe\xd7\xd2\xfc" "\xe5\x9e\x0f\x82\xf9\x93\xe7\x83\xa2\x75\xf6\xd1\xcc\xb8\x70\x9d\x75\xe5" "\xcf\x57\xb4\xce\xb2\xe7\x29\xbd\xd1\x9c\xb6\xfa\xde\x70\xfc\xfe\xcd\xbb" "\x9e\x7a\x69\x79\x70\x9d\xad\x1d\x7b\xc0\x17\xaf\xb3\x47\x1b\x46\x73\x0a" "\xd7\x59\xb9\xff\x97\x0e\xae\xb3\xe7\xe2\x8e\xec\x8f\x60\xfe\xb5\x9d\x39" "\xaf\x09\xae\xb3\xe4\xbc\xa6\x68\x9d\x5d\x9a\x19\x97\x5f\x67\x8d\xe7\xa3" "\x5f\x4e\x6e\xef\xc8\xc4\xf7\x26\xaf\x10\x4f\xb5\xef\xd3\xab\x5f\x7f\xeb" "\x4c\xdf\x9a\xa7\x83\xeb\xec\x70\xab\xeb\xec\xf7\x1b\x46\x7d\x85\xeb\xac" "\xdc\xf9\x6d\xf0\xfb\x34\x7e\x7e\x3b\xdd\xe7\xe7\x1f\xec\xf3\xcf\x8e\x9e" "\x1f\x8e\x8d\x2b\x99\x71\xfe\xf9\x61\xf2\xdf\xb9\xd3\x75\x7e\xb8\x2e\xb0" "\x7d\xaa\xe7\x87\xbd\x93\x3e\x99\xe8\x23\xfa\x20\x9e\x1f\x06\x8e\x33\x00" "\xd0\xcc\x0f\x1e\xba\xf3\x7f\xd7\x8f\xd3\xeb\xff\xf4\xb9\x3b\xbd\xfe\xff" "\x5e\xe6\x7e\x65\xaf\x2b\xb3\x3f\x0f\x95\xea\xd4\x75\x65\x30\xff\xe1\xce" "\x5c\xaf\x04\xcf\x53\xc7\xaf\x57\xa6\xfb\x7a\x6b\xba\xcf\xb3\xa7\xf7\x7a" "\xcb\x79\x7c\x20\xff\xf8\xeb\xc8\xd3\xfd\xba\xd0\xf4\x5e\x57\xba\x0e\x49" "\xc6\x51\xf6\x93\x31\xae\x43\x00\x00\x78\x3f\x5c\xfc\xaf\xbf\xfd\xeb\xf5" "\xe3\xf4\xfa\x7f\xfc\xe7\xde\x92\xdf\xff\x7f\x29\x1d\x67\xee\xef\x3a\x37" "\x90\xff\xac\x5d\xe7\x4e\xf7\xeb\x24\xae\xa3\x73\xf3\x77\xe8\xe7\x2b\x8a" "\x5f\x07\x9b\xee\xd7\xa9\xa6\xf2\x3a\xc0\x7f\x3e\x2f\xfd\x9a\xd7\x01\xf2" "\x79\x1d\xe0\xec\xd6\x05\x00\xc0\xd4\x6c\xda\xba\x7b\x68\x68\xcf\xae\x2d" "\x37\x0e\x6d\xda\xb6\x63\xdb\xde\xf1\xed\x5d\xa3\x57\x4e\x93\x7f\x4e\xf5" "\x6f\x27\xb7\x6b\x33\x79\x8a\x7e\x7e\x3a\x2f\x7e\x56\x93\xf8\xaf\x06\xf3" "\x37\xd6\xf3\xa9\x40\x7c\x48\x6d\xf4\x67\x5e\xa3\xe8\x1b\x37\x7e\xf3\x8a" "\x4d\x37\x0d\xdd\x3e\xd5\xfe\x43\xf3\x15\xf5\x9f\x17\xdf\xac\xff\xec\xf5" "\x45\xa8\xff\x55\x81\xf8\x90\xb2\xfd\x87\xe6\x2b\xea\x3f\x2f\xbe\x59\xff" "\xd7\x04\xf3\x37\xd6\xf3\xe9\x40\x7c\x48\xd9\xfe\x43\xf3\x15\xf5\x9f\x17" "\xdf\xac\xff\xaf\x05\xf3\x37\xd6\xf3\xab\x81\xf8\x90\xb2\xfd\x87\xe6\x2b" "\xea\x3f\x2f\xbe\x59\xff\xd9\xdf\x07\x0b\xf5\xff\x6b\x81\xf8\x90\xb2\xfd" "\x87\xe6\x2b\xea\x3f\x2f\xbe\x59\xff\xd7\x06\xf3\x37\xd6\xf3\x99\x40\x7c" "\x48\xd9\xfe\x43\xf3\x15\xf5\x9f\x17\xdf\xac\xff\xeb\x82\xf9\x1b\xeb\xf9" "\x3b\x81\xf8\x90\xb2\xfd\x87\xe6\x2b\xea\x3f\x2f\xbe\x59\xff\xd7\x07\xf3" "\x37\xd6\xb3\x3a\x10\x1f\x52\xb6\xff\xd0\x7c\x45\xfd\xe7\xc5\x37\xeb\xff" "\xeb\xc1\xfc\x8d\xf5\x0c\x06\xe2\x43\xca\xf6\x1f\x9a\xaf\xa8\xff\xbc\xf8" "\x66\xfd\x6f\x08\xe6\x6f\xac\xe7\xef\x06\xe2\x43\xca\xf6\x1f\x9a\xaf\xa8" "\xff\xbc\xf8\x66\xfd\xdf\x10\xcc\xdf\x58\xcf\x67\x03\xf1\x21\x65\xfb\x0f" "\xcd\x57\xd4\x7f\x5e\x7c\xb3\xfe\x7f\x23\x98\xbf\xb1\x9e\xbf\x17\x88\x0f" "\x69\xda\x7f\x6e\x7d\xad\xcd\x57\xd4\x7f\x5e\x7c\xb3\xfe\x37\x06\xf3\x37" "\xd6\xf3\xeb\x81\xf8\x90\xb2\xdf\xff\xd0\x7c\x45\xfd\xe7\xc5\x37\xeb\xff" "\x37\x83\xf9\x1b\xeb\xf9\x5c\x20\x3e\xa4\x6c\xff\xa1\xf9\x8a\xfa\xcf\x8b" "\x6f\xd6\xff\xa6\x60\xfe\xc6\x7a\x3e\x1f\x88\x0f\x29\xdb\x7f\x68\xbe\xa2" "\xfe\xf3\xe2\x9b\xf5\xbf\x39\x98\xbf\xb1\x9e\xbf\x1f\x88\x0f\x29\xdb\x7f" "\x68\xbe\xa2\xfe\xf3\xe2\x9b\xf5\xbf\x25\x98\xbf\xb1\x9e\x2f\x04\xe2\x43" "\xca\xf6\x1f\x9a\xaf\xa8\xff\xbc\xf8\x66\xfd\x7f\x23\x98\xbf\xb1\x9e\x2f" "\x06\xe2\x43\xca\xf6\x1f\x9a\xaf\xa8\xff\xbc\xf8\x66\xfd\xdf\x18\xcc\xdf" "\x58\xcf\x97\x02\xf1\x21\x65\xfb\x0f\xcd\x57\xd4\x7f\x5e\x7c\xb3\xfe\xb3" "\xef\x77\x18\xea\xff\x1f\x04\xe2\x43\xca\xf6\x1f\x9a\xaf\xa8\xff\xbc\xf8" "\x66\xfd\x0f\x05\xf3\x37\xd6\xb3\x26\x10\x1f\x52\xb6\xff\xd0\x7c\x45\xfd" "\xe7\xc5\x37\xeb\x7f\x6b\x30\x7f\xfe\xfb\x06\x64\xe3\x43\xca\xf6\x1f\x9a" "\xaf\xa8\xff\xbc\xf8\x66\xfd\xdf\x1c\xcc\xdf\x58\xcf\x57\x02\xf1\x21\x65" "\xfb\x0f\xcd\x57\xd4\x7f\x5e\x7c\xb3\xfe\xbf\x19\xcc\xdf\x58\xcf\xd5\x81" "\xf8\x90\xb2\xfd\x87\xe6\x2b\xea\x3f\x2f\xbe\x59\xff\xdb\x82\xf9\x1b\xeb" "\x59\x1b\x88\x0f\x29\xdb\x7f\x68\xbe\xa2\xfe\xf3\xe2\x9b\xf5\xff\x5b\xc1" "\xfc\x8d\xf5\x7c\x35\x10\x1f\x52\xb6\xff\xd0\x7c\x45\xfd\xe7\xc5\x37\xeb" "\xff\x96\x60\xfe\xc6\x7a\xd6\x05\xe2\x43\xca\xf6\x1f\x9a\xaf\xa8\xff\xbc" "\xf8\x66\xfd\x6f\x0f\xe6\x6f\xac\xe7\x9a\x40\x7c\x48\xd9\xfe\x43\xf3\x15" "\xf5\x9f\x17\xdf\xac\xff\x5b\x83\xf9\x1b\xeb\xf9\x5a\x20\x3e\xa4\x6c\xff" "\x23\xf3\xfd\xab\x9c\xbc\x45\xfd\xe7\xf5\xd3\xac\xff\x1d\xc1\xfc\x8d\xf5" "\xac\x0f\xc4\x87\x94\xed\x3f\x34\x5f\x51\xff\x79\xf1\xcd\xfa\xdf\x19\xcc" "\xdf\x58\xcf\xb5\x81\xf8\x90\xb2\xfd\x87\xe6\x2b\xea\x3f\x2f\xbe\x59\xff" "\xbb\x82\xf9\x1b\xeb\xb9\x2e\x10\x1f\x52\xb6\xff\xd0\x7c\x45\xfd\xe7\xc5" "\x37\xeb\xff\xb6\x60\xfe\xc6\x7a\xae\x0f\xc4\x87\x94\xed\x3f\x34\x5f\x51" "\xff\x79\xf1\xcd\xfa\xdf\x1d\xcc\xdf\x58\xcf\xd7\x03\xf1\x21\x65\xfb\x0f" "\xcd\x57\xd4\x7f\x5e\x7c\xb3\xfe\xf7\x04\xf3\x37\xd6\xb3\x21\x10\x1f\x52" "\xb6\xff\xd0\x7c\x45\xfd\xe7\xc5\x37\xeb\x7f\x6f\x30\x7f\x63\x3d\x37\x04" "\xe2\x43\xca\xf6\x1f\x9a\xaf\xa8\xff\xbc\xf8\x66\xfd\xef\x0b\xe6\x6f\xac" "\xe7\x37\x02\xf1\x21\x65\xfb\x0f\xcd\x57\xd4\x7f\x5e\x7c\xb3\xfe\x6f\x0f" "\xe6\x6f\xac\x67\x63\x20\x3e\xa4\x6c\xff\xa1\xf9\x8a\xfa\xcf\x8b\x6f\xd6" "\xff\xfe\x60\xfe\xc6\x7a\x7e\x33\x10\x1f\x52\xb6\xff\xd0\x7c\x45\xfd\xe7" "\xc5\x37\xeb\x3f\xfb\x3e\x90\xa1\xfe\x37\x05\xe2\x43\xc6\xfb\xdf\xbb\x7b" "\x68\x68\xd3\xbe\x5d\x37\x6d\xd9\x3b\xb4\x69\xc7\xce\x9b\x86\xf6\x6c\xda" "\xbf\x7b\xdb\xde\xbd\x43\xc9\x89\x5a\xd9\xdf\x2b\x0b\xff\x5e\xd0\xfb\xfc" "\x8b\x2c\x34\xd5\xf0\xf8\x18\x5b\x24\xdb\x76\xec\x19\xda\x3d\xf9\xf8\x3d" "\xb3\xe9\xfa\xad\x5f\x13\xd1\xe8\xaf\x3d\xcd\x1c\xbb\x8d\x3f\xdc\x52\x7c" "\xf6\x6d\xaf\xdb\x5d\x35\xe7\xca\x7a\xef\x8a\x6a\x4d\xf7\xd7\x05\x99\xf1" "\xbc\xe4\xfd\x68\xe7\x05\xde\x8f\x36\x1b\x9f\xa6\x5d\x3c\xfa\xc9\xe4\xf7" "\xa3\xcd\x4e\x5b\x2b\x78\x1f\xd7\xa2\xe3\x53\x76\xfe\xd0\xf1\x29\x6e\x12" "\x9f\x77\x7c\x0d\x1d\xcf\x8a\x9e\xff\xa6\x7c\xfc\x2b\x5c\xdf\x3d\x4d\xfb" "\xcf\x6e\xee\x4e\x7e\xb1\xaf\x3b\x3e\xaf\xa5\xf8\xa8\xc9\xdf\x77\x6b\x6d" "\xbd\x96\xfb\xbd\xd3\xe0\x7a\x7d\xad\xb5\xf5\x9a\x7d\xdf\xf5\xa2\xf5\x9a" "\x8d\x9f\xea\x7a\xed\x2d\xb9\x5e\xb3\xf3\x87\xd6\x53\xa5\x49\x7c\xb3\xf3" "\xa1\x56\xd7\xeb\x86\x40\x7c\xaa\xf5\xf5\x19\x07\xfb\xcd\x5b\x57\x53\xfd" "\x3b\x83\x69\xda\x29\xfd\x9d\xc1\xcc\x87\x49\xda\xf8\x5b\x06\xad\x3f\x1e" "\xca\xfd\x1e\x79\xf0\xf1\x90\x14\x5d\xf4\x78\xc8\xfe\x1e\x77\xd1\xe3\x21" "\x1b\x3f\xd5\xc7\xc3\xcc\x92\x8f\x87\xec\xfc\x45\x8f\x87\xbc\xf8\x66\xd7" "\xc7\xad\x3e\x1e\xae\x0b\xc4\x87\xb4\xbe\x1e\xca\xbd\x6f\x41\x70\x3d\xac" "\x68\x6d\x3d\x64\xff\x8e\x55\xd1\x7a\xc8\xc6\x4f\x75\x3d\xf4\x94\x5c\x0f" "\xd9\xf9\x8b\xd6\x43\x5e\x7c\xb3\xd7\x0b\x5b\x5d\x0f\x5f\x0b\xc4\xb7\xaa" "\xf5\xf5\x51\xee\x7d\x45\x82\xeb\x63\x73\x6b\xeb\x23\xfb\xf7\x24\x8a\xd6" "\x47\x36\x7e\xaa\xeb\x23\x2e\xb9\x3e\xb2\xf3\x17\xad\x8f\xbc\xf8\xd0\xff" "\xa7\x44\x53\x58\x1f\x5f\x0d\xc4\xa7\x1a\x9e\x3f\xb7\xee\x19\xbd\xa8\xdf" "\xb6\x65\xfb\xb6\x03\x99\x1f\xc0\xe8\x4b\x9e\x3f\xdf\xef\xe7\xc3\xb3\xf2" "\xbc\xfc\x57\xbf\xf6\xe7\xef\x8d\x7d\x48\xea\xa8\x4c\xaa\xa3\xe8\x7c\x22" "\xce\xd4\x31\x3f\xa9\x64\x7e\xe8\xef\x1e\x06\xea\xbe\xf1\xbf\xfc\x9b\xf5" "\xdf\xfb\xd9\x03\xdf\x8e\xa2\x15\xe7\x55\x97\x84\xeb\x9e\x28\x79\xe2\x43" "\x46\x3c\x38\xbc\xe0\xae\x65\xcf\x5e\xff\xe1\xe3\x9f\x1d\xa9\xbf\xd2\xb4" "\xfe\xf1\xc8\xf4\xef\x16\x17\xfc\xbd\xe3\x6c\x7c\xda\x4f\x6d\xfb\xce\x3d" "\x7b\x7f\x65\xeb\xce\x7d\x3b\x5a\xfd\x89\xab\xe6\xd2\xf7\x43\xa9\x8c\x8f" "\xa7\xe9\xfd\x50\x92\x8d\xd5\x16\xdf\xdf\x24\xf4\xfb\x04\x53\x7d\x7f\x93" "\xae\x49\x9f\x9c\x9b\x5a\x7e\x7f\x13\x80\x5f\x10\xf3\x0e\x3f\x37\xa7\x7e" "\x9c\xbe\xff\x5f\xfa\x7c\xd4\x9f\x1c\xfb\x66\x26\x07\xc0\x74\x7b\xeb\xe7" "\xd9\xe5\xde\x5f\x2f\x78\x9e\x7d\xa8\xb5\xf3\xec\xe5\xd9\x7e\x0b\xce\xb3" "\xb3\xf1\x69\xbf\xad\x9e\x67\x57\x4a\x9e\x67\x67\xe7\x2f\x3a\xcf\xce\x8b" "\x6f\xf6\x73\x7b\xad\x9e\x67\x7f\x25\x10\x3f\x55\x8d\xeb\x64\x64\x81\x8c" "\xae\x8f\xa1\x4d\xfb\x77\xee\xae\xff\x99\xb8\xe9\xfe\xbb\xb5\x9d\xaf\x77" "\x7a\xff\x8e\x6f\xf9\xfa\xa6\xf7\x7d\x1b\xdb\xd5\x7a\xfd\xd3\xfb\xbe\x90" "\xd3\x5f\xff\xf4\xfe\x1d\xe0\xe9\xaf\x7f\x7a\xff\xce\x73\xbb\xce\xda\xf5" "\x52\xf2\x66\x91\x45\xef\x1f\x59\x74\x1d\x15\xfa\xbd\xf4\xa9\x5e\x47\xcd" "\x98\xf4\xc9\xb9\xc9\x75\x14\x00\x9c\xfb\xfe\xc9\xee\xb7\xff\x65\xfd\x38" "\xbd\xfe\x4f\xae\x62\xc7\xaf\xff\xbf\x95\x8c\xab\x1d\x9e\x7f\xba\xaf\xa3" "\xa6\xfb\xba\x72\xba\xcf\x93\x3f\xf8\xef\xbf\x3f\xbd\xd7\x41\xae\x07\x9a" "\x4c\x76\x0e\x70\x3d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x90\xef\xf7\xff\xfb\x7f\xfc\x6e\xfd\xb8\xbb\xd6" "\x3f\x7a\xfb\xca\xef\xec\x79\xf7\x2b\x17\x7c\xee\x07\xf7\x0e\x9d\xba\xeb" "\x0b\x7f\x74\xeb\x3d\xe7\xff\xf1\xc2\x77\xfb\xee\x5b\xf3\xe5\x87\x56\x7d" "\xfe\x87\x9b\xff\x64\xfe\xe0\xd2\x65\x43\x57\x7d\xe7\xc8\xd5\xf7\xdf\xf7" "\xe2\x67\x7e\xf6\xe2\x63\x4f\xac\x29\x9c\xa8\x6f\xec\xe6\xd2\x64\xd8\x13" "\x45\xf1\x5f\xc4\x51\xb4\xf4\xed\x23\x8f\xdd\xff\xf2\x9f\x9e\x3f\xb2\x2d" "\x1e\x99\x3f\xee\xbb\x3b\x9a\x3f\x3f\x5e\xf0\xdd\xf9\x71\x26\xc3\x8a\xd3" "\x51\x14\xdd\x34\x5e\x67\xe3\x17\x8f\x9c\x5a\xb9\x75\xe4\xf6\x9e\x6f\x75" "\x37\x6c\x9f\x97\x49\x92\xed\x2b\xea\xad\xa6\xf5\x34\xd4\x19\xdd\x51\xd8" "\x11\x1f\x40\x3d\xc9\x3a\x3b\xb8\xe9\x1b\x4f\x1d\xbb\x65\xf0\xe5\x23\x03" "\xbb\x56\xfe\xe4\xe4\x95\x3b\xef\x9e\x08\x89\x7b\xea\xd6\x53\x14\xcd\xdd" "\x5c\x7f\xff\xae\x28\x8a\x66\x26\xff\x46\xa4\xab\xad\x3f\xbd\x73\x72\xbb" "\x36\x8a\xa2\x59\x75\xf7\xfb\x54\x41\x5d\x97\xb4\x58\xff\x65\x81\xf1\x92" "\xe4\x76\x46\x72\xdb\x5b\x90\x27\xfd\xfa\xc5\x99\x71\xad\xc5\x3a\x6a\x99" "\xdb\xee\x16\xef\xd7\xa6\xff\x5f\x99\xde\xfc\x93\x64\xf7\x5f\xf6\x60\x34" "\x5d\xd2\x3e\xe7\x26\xb7\xcf\x27\xb7\x97\x4e\x31\x4f\x35\xfd\x17\x47\x95" "\x38\xaa\x8d\x97\xbf\x3d\x9e\x58\x23\x51\xdd\xf7\x2d\x8e\xe2\xd1\xb5\xdd" "\x33\x3e\xae\x8c\x8e\xa3\xf1\x71\x94\x1d\xc7\x99\x71\x25\x33\xae\x76\x65" "\xfa\x1a\x9d\x37\xd9\xb1\xd5\x38\x6e\xdc\x9e\xc6\x65\xb6\xa7\x87\xe3\x5a" "\xb2\xfd\xe2\xfa\x63\x75\x8e\x75\x81\xed\x8b\x92\xdb\x9e\xe4\x81\xfa\x5e" "\x3a\x8e\xb2\x9f\x8c\xe9\x9d\xf4\xc9\x44\x1f\x51\x5d\x5d\x27\xce\xd6\xc2" "\x08\xa8\x04\x1e\x7b\xe9\xf6\xf1\xf2\x92\x6f\x46\x6f\xb2\xad\x37\x5e\x30" "\xe9\x3e\xc3\x39\xd2\xaf\x9d\xf8\xfe\x96\x0d\xef\xbc\x71\xe0\xf9\xbe\x40" "\x1d\xf1\x73\x71\x92\x3f\x6e\x2b\xff\xe0\xd0\x93\xc7\x9e\xbd\xfe\xe8\xa2" "\xfe\x50\xfe\xcd\x95\x24\x7f\xa5\xad\xfc\xaf\x54\x5f\x3d\xfd\xcc\xc9\xfe" "\xd9\xc1\xfc\x87\xd2\xfc\xd5\xb6\xf2\xaf\xff\xf9\x8f\x1f\xbc\xf7\x9a\xfd" "\x0b\x83\xfb\xe7\x44\xba\x7f\x6a\x6d\xe5\x5f\xf6\xf0\xec\x83\xa7\xf6\xaf" "\xeb\x1e\x08\xe5\x3f\x9c\xe6\xef\x69\x2b\xff\x55\x1b\x97\xae\xba\xf0\xe4" "\xbe\xdb\x83\xf5\xaf\x48\xf7\xcf\xcc\xb6\xf2\xff\xe8\x91\xe5\x67\x36\x1e" "\x7a\xe1\x68\x30\x7f\x94\xe6\x9f\xd5\x56\xfe\x37\x9f\x7c\x7a\x49\x75\xd1" "\xa3\xc7\x83\xf9\x8f\xa5\xfb\xa7\xb7\xad\xfc\xd7\xae\x7c\x7c\xf5\x97\x16" "\xdf\xf7\x44\x70\xff\xbf\x96\xe6\x9f\xd3\x56\xfe\x0d\xc7\xef\xdf\xbc\xeb" "\xa9\x97\x96\x07\xd7\xe7\xda\x74\xff\xf4\xb5\x95\xff\xf4\xea\xd7\xdf\x3a" "\xd3\xb7\xe6\xe9\xd0\xb1\x33\x3e\x7c\xb6\x9f\x61\x01\x7e\xb1\x7c\x28\x39" "\xc7\x7a\x30\x19\xb7\x7b\x9d\x59\x56\xdd\xf5\xc2\xe3\x03\xb5\xb1\x73\xbe" "\xd9\xc9\xbf\x39\x9d\x9c\x28\x23\xae\xbb\x76\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\x80\x90" "\x9d\xc3\xd5\x7d\xf5\xe3\xb7\x8e\x3e\x74\xf5\x37\xff\xc7\xa6\xff\x56\x8b" "\xa3\x28\x0e\xdc\x67\x38\x47\xfa\xb5\xea\x8c\xc1\xc1\x81\x36\xea\x58\xf6" "\xf0\xec\x83\xa7\xf6\xaf\xeb\x4e\xc7\x23\x73\xf7\xb7\x91\x07\x00\x00\x00" "\x98\x6c\xf1\x9b\x0f\xdc\x56\x3f\x4e\xaf\xc3\x2b\xc9\x38\x8e\x7a\xa2\xfe" "\x68\x7f\x3c\x33\x5a\x9c\x7b\xff\xf4\x35\x82\xc5\xe9\x28\x6e\xdc\x9e\x7d" "\x0d\x61\xe6\x44\x64\x47\xf2\x54\x3a\x94\xa7\xda\xa1\x3c\xb5\x0e\xe5\xe9" "\xea\x50\x9e\x19\x1d\xca\xd3\xdd\xa1\x3c\x3d\x05\x79\x7a\xa2\xd6\xf2\xcc" "\x6c\x9a\xa7\xd2\x72\x3d\xb3\x3a\x94\xa7\xb7\x43\x79\x66\x77\x28\xcf\x9c" "\x0e\xe5\x99\xdb\x7e\x9e\x5a\x7d\x9e\x79\x1d\xaa\xa7\xaf\x69\x9e\xd6\xd7" "\xe1\xfc\x0e\xe5\x59\xd0\xa1\x3c\x1f\xea\x50\x9e\x85\x1d\xca\x73\x5e\x87" "\xf2\x7c\xb8\x43\x79\xce\xef\x50\x9e\xec\x6b\xca\x53\x5d\x87\x73\x92\xc8" "\x0b\x42\x79\x46\x3f\xa9\x16\xe6\xa9\xc5\xd5\xf1\x2f\xe4\xbd\x9e\x9e\xce" "\x73\x61\xc9\x79\x7a\x5b\x9c\x27\xfb\x9a\xfd\x54\xe7\x99\xd9\xe2\x3c\x97" "\x94\x9c\xa7\xa7\xc5\x79\x3e\x56\x72\x9e\xb8\xc5\x79\x96\x67\xee\x57\x99" "\xe2\x3c\x95\x82\x79\xd2\x75\x7b\x47\xa8\x9f\x74\xd4\xe2\xfa\xbf\xb3\x43" "\x79\x0e\x74\x28\xcf\xc1\x0e\xe5\xf9\xed\x0e\xe5\xf9\x87\x1d\xca\xf3\x8f" "\x3a\x94\xe7\xae\x92\x79\x00\x42\x7e\xf7\xc5\x4b\xff\xa0\x7e\x9c\x5e\xff" "\xa7\xd7\x9f\x71\xd4\x17\x75\xd7\xae\x88\x66\x25\x47\x9c\xec\xab\x00\xe9" "\xf5\xee\x45\xa3\x1f\x27\x3f\xdf\x85\x0e\x48\x69\xbe\x25\x99\xed\x5d\x45" "\xf9\xb2\x17\xd8\x99\x7c\x17\x4d\xb5\xbe\xec\x0b\x08\x99\x7c\x1f\x69\x9a" "\xaf\x36\xe9\x7a\x35\x27\x5f\xad\x3e\xdf\xb2\x0e\xe5\x03\x00\x00\x80\xa9" "\xf8\xc7\xa7\x0f\x36\xfc\xd7\xdc\xe4\xeb\xff\xfe\xa8\xbb\xb6\x70\xfc\xfa" "\xf5\xa3\x99\xfb\x17\x5e\xaf\x67\xff\x23\x3b\x91\xe6\xbb\xb4\x43\xf9\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x9a\x3d\x7b\x8d\x8d\xab\xbe\x12\x00\xfe\xbf\x9e\xf1\xcc" "\x60\x1e\x31\x28\x09\x13\xf2\xb2\x92\x2c\x01\x21\xf2\x20\xca\x6a\x61\x77" "\x61\x14\x69\x91\x58\x2d\x38\x2c\x9b\xf0\x88\x90\x37\x05\x83\x23\x4c\x02" "\x71\x02\x24\x6d\x15\x0a\x55\x13\x59\xa2\xa2\x0d\x7d\xf0\xfa\xd0\x40\x51" "\x85\x50\x01\x09\x29\xa2\x75\x25\x2a\x68\x51\x3f\x34\x6a\x44\xa9\x78\xd4" "\x35\xb8\x08\xbe\xa0\x42\xc9\x0b\x08\xed\x54\x63\xdf\x1b\x5f\xcf\x03\x9b" "\x69\x49\x9a\xf6\xf7\x13\xba\x77\xce\xbd\xe7\xfc\xcf\xff\x5e\xa4\x48\xe7" "\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xfb\xf7\x9b\x6f\xfd\xf1\x85\x74\x3c\x3c\xd0\xdf\xd9\x33" "\xd4\x35\x18\xa2\x50\xf9\xaf\xae\x72\x1d\xc9\xbd\x4c\xae\x54\xea\x68\x62" "\x1f\xef\xbf\xb8\xf6\x9a\x3f\xbc\xba\x75\x77\x12\x57\x7a\xe7\xb3\x4d\x2c" "\x04\x00\x00\x00\xd4\x78\xea\xc2\x19\x67\xa5\xe3\x64\x0e\x4f\x46\xef\x28" "\x14\x42\x3e\xbb\x34\xe4\xa3\xdc\xb8\xba\x62\xfc\x1d\xa0\x18\xc7\x2d\xed" "\xa3\xe7\x39\x8b\xc2\xf2\xcc\xee\x7f\xb9\x24\x2a\xb5\x8c\xc4\xa7\x45\xa7" "\x8e\xab\x2b\xc4\x75\x85\x38\xce\xc4\x75\x7d\x5b\xb6\xde\xb4\xb6\xb7\xb7" "\x7b\xe3\xe7\xf8\xa3\xd2\xa7\xfa\x39\xaa\xf7\x13\x85\x30\xf2\xf9\x62\xce" "\x29\x61\xd5\xa2\xed\xcf\xef\x89\x3a\x46\x9f\xa3\x6d\x82\xe7\x68\x89\xeb" "\x16\x6f\xba\xf9\x96\xc5\x7d\x5b\xb6\x9e\xbb\xee\xe6\xb5\x37\x76\xdf\xd8" "\xbd\x7e\xd9\xb2\xe5\xe7\x2f\x5d\xb6\xf4\xbc\xf3\x97\x2d\xbe\x61\x5d\x6f" "\xf7\x92\xd1\x63\xc8\x4f\xb0\x5e\x08\xa1\x34\xfe\xbd\x4c\xf0\x3f\x12\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8e\x82\x6d\xbf\xd8" "\xfd\xd5\x74\x3c\x3c\xd0\xdf\xd9\x33\xd4\x35\xd8\x16\x85\x10\x35\xa8\x29" "\xd7\x91\xdc\xcb\xe4\x4a\xa5\x8e\x26\xf6\xf1\xfa\x83\x8f\xcc\xca\xcc\xb8" "\x6f\x6f\x12\x57\x7a\xe7\xb3\x4d\x2c\x04\x00\x00\x00\xd4\xf8\xe9\x53\x33" "\x2e\x4a\xc7\xc9\x1c\x9e\x8c\xde\x51\x28\x84\x7c\x36\x17\x32\x61\xc6\x48" "\x3c\x6f\x2c\x35\x1b\x42\xb9\x9c\x5c\x5f\x50\x75\xfd\x68\xec\x1d\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x38\xba\xf6\x1d\xec\xfc" "\x5d\x3a\x1e\x1e\xe8\xef\xec\x19\xea\x1a\x3c\x31\x0a\x21\x6a\x50\x53\xae" "\x23\xb9\x97\xc9\x95\x4a\x1d\x4d\xec\x63\xf5\xb2\xef\x5e\xf4\xdf\x33\xef" "\x7e\x20\x89\x2b\xbd\x8b\x4d\xac\x03\x00\x00\x00\xd4\x7a\xf9\xac\xd6\xbb" "\xd3\x71\x32\x87\xb7\xc4\x71\x14\x0a\xa1\x18\xe6\x87\xd6\x68\xc6\xb8\xba" "\xe4\xdb\xc0\x19\x55\xeb\x55\xe7\x25\xeb\xcc\x9e\x64\x5e\xf5\xb7\x83\x46" "\x79\xf3\x27\x99\x77\xe6\x24\xf3\xce\x9e\x20\xef\xb2\xf8\x7c\x47\x00\x00" "\x00\x80\xe3\xcf\xd5\xed\xbf\x5c\x9d\x8e\x93\xf9\xbf\x35\x8e\xa3\xd0\x1e" "\xf2\xd9\x62\xc8\xc4\xf1\x44\x73\x7c\xf2\x5d\x60\x6e\x55\x5e\x52\x3f\xd1" "\x7c\x9f\xd4\xcf\x6b\x50\x3f\xd1\xdc\x9f\xd4\x57\xcf\xfd\x00\x00\x00\xf0" "\xcf\xec\xdc\x77\x9e\xfe\x24\x1d\xd7\xce\xff\xc5\x90\xcf\x16\x8e\xcc\xdf" "\x13\xfd\x3d\xfd\xd2\xf8\xec\xef\xe4\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x23" "\x3f\x3b\x78\xc9\x8f\xd3\xf1\xf0\x40\x7f\x67\xcf\x50\xd7\x60\x26\x0a\x21" "\x6a\x50\x53\xae\x23\xb9\x97\xc9\x95\x4a\x1d\x4d\xec\x63\xd5\x9f\xdf\xde" "\x71\xd7\x15\xb7\x4f\x4d\xe2\x4a\xef\x7c\xb6\x89\x85\x00\x00\x00\x80\x1a" "\x4f\xe4\xfe\xed\xf6\x74\x9c\xcc\xe1\xc9\xe8\x1d\x85\x42\xc8\x67\xdb\x42" "\x6b\x38\x71\x64\xee\x7f\x33\x37\x65\xea\xba\xaf\xcc\x9c\x1d\x42\x28\x8d" "\x24\xe4\x72\xe1\x8e\xb5\x9b\x36\x6d\x3c\x6f\xf4\x98\xe4\xfd\x6f\xb4\xeb" "\x3f\x17\xde\x3c\x70\x4e\x4d\xde\xd2\xd1\xe3\xd1\x7f\x52\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\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\xaf\xb5\xec\xf1\x9d\x6b\xd2" "\xf1\xf0\x40\x7f\x67\xcf\x50\xd7\xe0\x09\x51\x08\x51\x83\x9a\x72\x1d\xc9" "\xbd\x4c\xae\x54\xea\x68\x62\x1f\x2f\xef\x3c\xfb\xf0\xb5\xf7\x3e\x3b\x90" "\xc4\x95\xde\xc5\x26\xd6\x01\x00\x00\x00\x6a\xcd\xea\x7d\xee\xf7\xe9\x38" "\x99\xc3\x93\xd9\x3f\x0a\x85\x50\x0c\xb9\x90\x0b\xd3\x47\xe2\xf4\xac\x5f" "\xd1\x52\xb5\x5e\xa3\x6f\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x3f\x8e\xbe\x2d\x5b\x6f\x5a\xdb\xdb\xdb\xbd\xd1\x0f" "\x3f\xfc\xf0\xe3\xc8\x8f\x63\xfd\x2f\x13\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\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\xac\xfc\x68\xfd\x37\xdf\x4b\xc7" "\xc3\x03\xfd\x9d\x3d\x43\x5d\x83\x85\x28\x84\xa8\x41\x4d\xb9\x8e\xe4\x5e" "\x26\x57\x2a\x75\x34\xb1\x8f\x7f\xbd\x76\xce\xf9\xb3\xf7\x6f\xbe\x2d\x89" "\x2b\xbd\x8b\x4d\xac\x03\x00\x00\x00\xd4\x5a\xf3\xee\xe6\xfd\xe9\x38\x99" "\xc3\x93\xd9\x3f\x0a\x85\x50\x0c\xad\xa1\x35\x4c\x8b\xe3\x5a\x23\xf3\x7f" "\xfb\xd1\xd8\x2d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x2c\xcd\x0d\x51\x28\x7f\x46\xa7\xaf\x3c\xd6\xbb\x06\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3e\x0f\x07\x5e" "\x59\xf5\x60\x3a\x1e\x1e\xe8\xef\xec\x19\xea\x1a\x3c\x39\x0a\x21\x6a\x50" "\x53\xae\x23\xb9\x97\xc9\x95\x4a\x1d\x4d\xec\xe3\x9a\xbd\x5f\xfb\xff\x5b" "\x76\xbd\x70\x76\x12\x57\x7a\xe7\xb3\x4d\x2c\x04\x00\x00\x00\xd4\x68\x7d" "\xe7\x95\x2f\xa4\xe3\x64\x0e\x4f\x46\xef\x28\x14\x42\x3e\x3b\x2b\xe4\xc3" "\xac\xf8\x4a\xef\xf8\x05\xa2\x4c\x92\x58\xf7\xbb\xc0\x58\xdd\x97\xc6\x95" "\x65\x26\x5d\xb7\xa3\x6a\xc7\xa3\x3b\x2b\xc4\xdf\x21\x0a\x47\xf6\x19\x46" "\x3e\x3b\x8c\xd5\xdd\xfb\xa9\x75\xc5\xf8\x6a\x4b\xfb\xe4\xde\x13\x00\x00" "\x00\x1c\xcf\xa6\xed\xb8\xec\xcb\xe9\x38\x99\xff\x5b\xe3\x38\x0a\xed\x21" "\x9f\x9d\x96\x9a\xab\x6f\x19\x57\xdf\x36\xe9\x39\xfe\xbe\x71\x75\x27\x4f" "\xba\xee\x07\xe3\xea\xda\x27\xa8\xfb\x1b\xbc\x12\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xa0\x49\xf7\xac\x7c\xf1\xf4\x74\x3c\x3c\xd0\xdf\xd9\x33" "\xd4\x35\x18\x45\x21\x44\x0d\x6a\xca\x75\x24\xf7\x32\xb9\x52\xa9\xa3\x89" "\x7d\x94\xba\x1f\x7c\xee\xb1\xab\x06\x66\x24\x71\xa5\xf7\x09\x4d\xac\x03" "\x00\x00\x00\xd4\xba\xe2\xed\xc2\x37\xd2\x71\x32\x87\x27\xb3\x7f\x14\x0a" "\xa1\x18\x66\x87\x53\xc2\xec\x91\xb9\x3f\xb4\x8f\xaf\x4f\xf2\x4e\x2c\xfd" "\xea\xb5\x15\xbb\x5f\xbd\x3a\x84\x25\xd3\x5f\x9a\x93\x6d\xd8\xef\x3b\x7b" "\xae\x7c\x2f\x1c\xfa\x8f\x37\x3f\x1c\x3d\x8c\x84\x21\xb4\x8c\x4f\x6a\x09" "\x61\x4a\xdc\x2f\x6a\xd0\xef\xba\x5f\x3f\xbe\xea\xf9\x4f\xb6\x3f\x1c\xc2" "\x92\x69\x99\x59\x8d\xfb\x8d\xb5\x1a\x3b\x54\x89\x4a\xe5\xd3\xb6\x2d\x78" "\xec\xaa\xe9\x7b\x57\x34\x5c\x06\x00\x00\x00\x8e\x6b\x85\x47\x0e\x7c\x3f" "\x1d\x27\xf3\x7f\x32\x51\x47\xa1\x3d\xe4\xb3\xeb\x1b\xce\xff\x49\xde\x67" "\x9a\xff\x3b\xfb\x66\x6e\x9b\x1a\x1f\xe3\x2f\x00\x55\x15\x2d\xed\x71\xbf" "\x96\x06\xfd\xfa\x3f\x78\xb8\xe3\xe0\x9a\xff\x3b\x58\x99\xff\x5f\x9a\x53" "\x08\xc5\xf8\xfa\x59\xf3\xc7\xe7\xa7\x5b\xa5\x8f\x55\xdf\x1c\xa2\x52\x79" "\xee\xd3\x67\xae\x3e\x7c\xe0\xd6\xcb\x47\x2f\x24\xfd\x33\x0d\xfa\xaf\x69" "\x9d\x77\xea\xce\x77\x67\xce\x4b\xfa\x17\xe2\xeb\xd7\x87\xc9\xf6\x0f\x55" "\xfd\xfb\xba\x0e\xcd\x5f\xd4\x76\xd2\xc5\xe3\xfb\x87\x10\x3a\xea\xf5\xff" "\xde\x25\x4f\x7d\xb4\xea\x81\x0f\xae\x1e\xed\xdf\xf8\x7d\x2f\xfe\xed\xf0" "\x7f\x4d\x0d\x1b\xbe\x5d\xe8\x4d\x8e\xa3\x57\x6a\xfb\xaf\x7c\x68\xf9\xce" "\xad\xb9\xb7\xa6\x8c\xef\x1f\x35\xe8\xbf\xf0\x85\x67\xf6\x3f\x79\xc7\xaa" "\x7b\xaa\x9f\xff\x8c\x6c\xbd\xfe\xb5\xc7\x2a\x95\xae\xd9\x72\xff\xbe\xbb" "\x16\xde\xb9\xa2\xfb\x82\x54\xff\x96\x06\xfd\x6f\xeb\x78\xfd\xfd\xaf\xff" "\xf0\x27\x8f\x56\xfa\xef\x9b\xdb\x76\xa4\xff\xc2\x4f\x79\xfe\x09\xfb\xef" "\x99\xbf\x63\xdf\xae\xed\xf7\xaf\x19\xff\xfe\x4b\xb5\xfd\xef\x0c\xd7\x9d" "\xbb\xf1\x99\x2d\xeb\xae\xb9\xb7\xfa\xf9\xdb\xaa\x16\x4e\xbf\xf9\xf4\xb1" "\xf6\xfd\xbf\x31\x2b\xba\x74\x73\xdf\x6b\x1b\xab\x6f\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\x1c\xdf\xba\x9e\xfc\xf8\x50\x3a\x1e\x1e\xe8" "\xef\xec\x19\xea\x1a\x6c\x89\x42\x88\x1a\xd4\x94\xeb\x48\xee\x65\x72\xa5" "\x52\x47\x13\xfb\xf8\x79\x66\xcf\xc7\x8f\xee\x2f\x9e\x94\xc4\x95\xde\xc5" "\x26\xd6\x01\x00\x00\x00\x6a\x5d\xbe\xe2\x8d\x1b\xd3\x71\x32\x87\x27\xb3" "\x7f\x14\x0a\xa1\x18\x72\x21\x17\xda\x46\xe6\xfe\xd3\xb6\x2d\x78\xec\xaa" "\xe9\x7b\x57\x84\xf6\xf8\x7e\x7c\xce\xf6\x6e\xe8\xdb\x74\xce\x0d\x1b\x36" "\xaf\xbf\xfe\x68\x3f\x02\x00\x00\x00\x30\x81\x5d\x17\x7e\xb4\x22\x1d\x27" "\xf3\x7f\x36\x8e\xa3\xd0\x1e\xf2\xd9\x05\xa1\x35\x9e\xff\x57\x3e\xb4\x7c" "\xe7\xd6\xdc\x5b\x53\x92\xf9\x3f\x84\x30\xf2\xe7\xfe\xec\x0d\xeb\x7a\xbb" "\x97\x84\x23\xdf\x09\xfa\xba\x0e\xcd\x5f\xd4\x76\xd2\xc5\x49\x5e\x26\x3e" "\x17\x2a\x79\x8b\xae\xdb\xd0\x1b\x7f\x26\x48\xd6\x7d\xf6\x89\x7f\x5f\x7a" "\xc1\x95\x57\x1c\xc9\x6f\x49\xe7\x9f\x37\x96\x37\xf7\xe9\x33\x57\x1f\x3e" "\x70\xeb\xe5\x75\xf3\x96\x8d\xe5\xbd\x31\x2b\xba\x74\x73\xdf\x6b\x1b\x53" "\xfb\x2c\x1d\xc9\x5b\x3a\x96\xd7\xbf\xef\xae\x85\x77\xae\xe8\xbe\x20\x79" "\x8e\x28\x3e\x17\xe2\xe7\x49\xf2\xf6\xcc\xdf\xb1\x6f\xd7\xf6\xfb\xd7\x24" "\x79\x2d\xf1\xb9\x2d\x5e\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08" "\xe1\xd4\x0f\xff\xf4\xc5\x74\x3c\x3c\xd0\xdf\xd9\x33\xd4\x35\x18\x32\x21" "\x44\x0d\x6a\xca\x75\x24\xf7\x32\xb9\x52\xa9\xa3\x89\x7d\x7c\x7c\xd1\x4b" "\xc3\x87\xdb\xff\xe7\x91\x24\xae\xf4\xce\x67\x9b\x58\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\xfe\xc2\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\x27\x34\x8e\x2a\x8e" "\x03\xf8\x7b\xbb\x5b\xb3\xed\xa6\x75\x53\x0b\x4d\xb4\x86\x14\x7b\x69\x41" "\x28\x04\x8b\x3d\x48\x73\xf1\x0f\x12\xb5\x54\x14\x2d\x14\xa3\x18\x2f\x2a" "\x16\x44\x2b\xf6\x60\xdb\x60\x28\xea\xa1\xa0\xd0\xd2\x5e\x4a\x2b\x9e\x95" "\x1c\x8a\xda\x43\x2c\xb6\x8a\x82\x58\xc5\x83\x78\x52\xd0\x93\x4a\x0e\x49" "\x91\x54\x54\x92\xcc\xdb\x6c\xa6\x1d\x12\x47\x5b\x4a\xf9\x7c\x60\x79\xf9" "\xbd\xdd\xf9\xce\x6f\xde\xbe\x9d\xec\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\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd7\xb4\xc7\x7f" "\xbc\xb7\xd6\x5e\x77\xd4\xba\x67\xc7\x73\xaf\xbf\x78\xe1\xc1\x9b\xef\xfe" "\xe2\xc0\xf0\xd4\x6b\xf7\x7d\xf4\xfc\xfe\xb5\x1f\xaf\xb9\xd0\x1c\x19\x7c" "\xe0\x8d\xad\xf7\x7c\x33\xf4\x79\xd7\x40\xef\x86\xe1\x2d\x1f\x8c\x3d\x34" "\x3a\x72\xe6\xae\x3f\xcf\x1c\x3e\x3a\xb8\xe8\x89\x5e\x99\x1b\x36\x65\x65" "\x3d\x84\xf8\x5b\x0c\xa1\xf7\xe7\xb1\xc3\xa3\x67\xbf\x5c\x3b\x33\x17\x67" "\xce\x1f\x9b\xfb\x42\x57\x57\x5c\xfd\x49\x57\xcc\x25\x6c\x9e\x0e\x21\x3c" "\xdd\xea\x73\xe1\x93\x63\x53\xfd\xcf\xcc\x8c\xfb\xdf\xec\x58\x30\x7f\x63" "\x2e\x24\x7f\x5d\xa1\x51\x4d\xfd\xcc\x69\x2e\xec\x97\xeb\x4b\x3d\xdb\x67" "\x7b\x9f\x78\xea\xc4\xf8\xb3\x03\x67\xc7\xfa\x76\xf7\xff\x3a\x79\xc7\x0b" "\xfb\xe6\x5f\x12\xeb\x6d\xfb\x29\x84\x55\x43\xed\xc7\x2f\x0b\x21\x2c\xcf" "\x1e\x33\xd2\x6e\xeb\x4e\x07\x67\xe3\xf6\x10\xc2\x8a\xb6\xe3\xee\x5c\xa4" "\xaf\xdb\x96\xd8\xff\xed\x05\xf5\xba\x6c\xbc\x21\x1b\x1b\x8b\xe4\xa4\xe7" "\xd7\xe7\xea\xda\x12\xfb\xa8\xe5\xc6\x8e\x25\x1e\x57\x56\xe5\x0a\xe7\xe7" "\xe5\xd7\x2f\x7f\x33\xba\x52\xd2\x75\xae\xca\xc6\x53\xd9\xb8\xe9\x5f\xe6" "\x54\xd3\x23\x86\x4a\x0c\xb5\x56\xfb\xcf\xc5\xf9\x3d\x12\xda\xde\xb7\x18" "\xe2\xec\xde\xae\xb7\xea\xca\x6c\x1d\x5a\x75\xc8\xd7\x31\x57\x57\x72\x75" "\x75\x59\xee\xba\x66\xcf\x9b\x2d\x6c\x35\xc6\x85\xf3\xe9\x75\xb9\xf9\x74" "\x3b\xae\x65\xf3\xeb\xdb\xef\xd5\x97\xb1\xa3\x60\xbe\x27\x1b\xeb\xd9\x07" "\xf5\x8f\x54\x87\xfc\x1f\x73\x1a\x97\xfc\x31\x7f\x1d\xa1\xad\xaf\x89\xab" "\xb5\x31\x0a\x54\x0a\x3e\x7b\x69\xbe\xd5\x5e\xf6\x66\x34\xb2\xb9\x46\x5c" "\x7d\xc9\x31\x7f\x5f\x46\x7a\x6e\xe2\xb3\x27\x77\xfe\xfe\xfd\xab\xa7\x9a" "\x05\x7d\xc4\xf7\x63\x96\x1f\x4b\xe5\x0f\x0c\x1f\x1b\x7f\xef\xb1\xd3\x3d" "\xdd\x45\xf9\x43\x95\x2c\xbf\x52\x2a\xff\x5c\xf5\xab\xe9\x77\x27\xbb\x3b" "\x0b\xf3\x0f\xa5\xfc\x6a\xa9\xfc\x47\xfe\xfa\xe5\xe0\x81\x87\xf7\xac\x29" "\x5c\x9f\x89\xb4\x3e\xb5\x52\xf9\x1b\xde\xea\xdc\x3b\xb5\x67\x47\x47\x5f" "\x51\xfe\xf1\x94\x5f\x2f\x95\xbf\x65\x57\xef\xd6\x5b\x27\x5f\x7a\xb9\xb0" "\xff\xcd\x69\x7d\x96\x97\xca\xff\xee\xed\x8d\x17\x77\x1d\xfa\xf0\x74\x61" "\x7e\x48\xf9\x2b\x4a\xe5\xff\x70\xec\xe4\xba\x6a\xcf\x3b\xe7\x0b\xf3\xc7" "\xd3\xfa\x34\x4a\xe5\x3f\xda\x7f\x64\xdb\xfd\xb7\x8c\x1c\x2d\x5c\xff\xaf" "\x53\xfe\xca\x52\xf9\x3b\xcf\x8f\x0e\xed\x3e\xf1\xe9\xc6\xc2\xfd\xb9\x3d" "\xad\x4f\xb3\x54\xfe\xf4\xb6\x6f\x7f\xba\xd8\x1c\x3c\x59\x74\xef\x8c\xc7" "\xaf\xf6\x7f\x58\x80\xeb\xcb\x4d\xd9\x77\xac\x83\x59\x5d\xf6\x77\xe6\x7f" "\xd5\xf6\x7b\xe1\x48\x5f\x6d\xee\x3b\x5f\x67\xf6\x58\xf9\x7f\x9e\x28\x27" "\xfe\xc3\x7e\x1d\xd4\x00\x00\x00\x20\x10\xea\xdf\xda\x97\xdb\x85\x80\x16" "\xe4\x2e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x0b\x00\x00\xff\xff\x2f\x6a\x66\x53", 23937); syz_mount_image(/*fs=*/0x20005d80, /*dir=*/0x20005dc0, /*flags=*/0, /*opts=*/0x20000000, /*chdir=*/-1, /*size=*/0x5d81, /*img=*/0x20005e00); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }