// 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*)0x20000280, "\x65\x72\x72\x6f\x72\x73\x3d\x63\x6f\x6e\x74\x69\x6e\x75\x65\x2c\x6e" "\x6f\x63\x6f\x77\x5f\x65\x6e\x61\x62\x6c\x65\x64\x2c\x64\x69\x72\x65" "\x63\x74\x5f\x69\x6f\x2c\x6a\x6f\x75\x72\x6e\x61\x6c\x5f\x74\x72\x61" "\xb6\x37\xc3\x93\xbe\xcc\x2f\xca\x5f\x6e\x61\x6d\x65\x73\x2c\x72\x65" "\x61\x64\x5f\x6f\x6e\x6c\x79\x2c\x00", 77); memcpy( (void*)0x2000bb80, "\x78\x9c\xec\xdd\x7d\x90\x1c\xe5\x99\x18\xf0\xee\x99\x59\xed\x4a\x2b\x89" "\x95\x2c\xcc\x0a\x09\xb1\x18\xd9\x8e\xb8\x60\x0b\x14\x88\xf1\x9d\xa3\x8d" "\x73\x76\x6c\x47\x18\x59\x58\x80\xc5\xe9\x24\x19\x56\xb6\xce\x42\x92\xf5" "\x81\x40\xba\x84\xaf\x1c\x26\xd8\x97\x52\x15\xd4\x41\x20\x4e\x74\xe0\x72" "\xae\x52\x57\x09\x2e\x5d\x42\x7c\xa7\x54\xc9\x18\xe3\x8b\xaf\x8a\x42\x76" "\xfc\x87\x8f\x7c\x1d\x15\x3b\x7f\xc4\x47\x54\x67\x09\x3b\x92\xe3\x4d\xed" "\x6e\xf7\xee\x74\x6f\xbf\xdd\xb3\x33\xb3\x42\xf8\x7e\xbf\x2a\xed\x4c\xf7" "\x3e\xf3\xbc\xcf\xd3\xf3\x4e\x4f\x77\x6b\x77\x36\x02\x00\x00\xe0\xaf\x85" "\x97\x7e\x67\xdf\x1b\x1f\xbf\xf4\x43\xdf\x79\x70\xe4\xcc\x7d\x1f\xf9\xe3" "\xbb\x1e\x88\xfa\xeb\xe3\xeb\xfb\xd2\x80\x81\xe4\xf6\x9e\x37\xab\x42\x66" "\xd3\xaa\xef\x9e\xcb\x3c\xb3\xbd\x8d\xc1\xf1\xdb\xfc\xbc\xb8\xe4\x4f\x96" "\xbc\x31\xf0\xd0\xba\x1b\x1f\xbd\xe1\xc3\xdf\xdd\xfa\xa7\x8b\x86\x57\xac" "\x1c\xb9\xfe\x6b\xc7\x6e\x7a\xf8\xa1\x17\x3e\xf0\xf3\x17\x9e\x78\x6a\x5d" "\xd5\x38\xe9\x7c\xba\x6a\x6a\x39\xfe\xcb\x38\x8a\x56\xfc\xf0\xd8\x13\x0f" "\x7f\xeb\xcf\x2e\x19\x5b\x17\x8f\x8d\x1f\x0f\xdc\x1f\x2d\x5a\x14\x2f\xfe" "\xc6\xa2\x38\x97\x62\xf5\xd9\x28\x8a\xee\x9c\xac\x33\xfb\xcd\x63\x67\xd6" "\x6c\x1f\xbb\x7d\xe0\x8b\xbd\x99\xf5\x17\xe5\x92\x64\xfb\x6a\x4c\xab\xcf" "\x7c\xff\xe5\xd6\x97\xcc\xb3\xc3\x5b\x3e\xfd\xcc\x89\xcf\x0d\x7f\xeb\xd8" "\xd0\x9e\x35\x3f\x3e\x7d\xdd\xee\xfb\xa7\x42\xe2\xbe\xa6\xf9\x14\x45\x0b" "\xb7\x36\x3f\xbe\x27\x8a\xa2\xb9\xc9\xbf\x31\xe9\x6c\x1b\x4c\x1f\x9c\xdc" "\xae\x8f\xa2\x68\x5e\xd3\xe3\xde\x57\x51\xd7\x95\x2d\xd6\x7f\x75\x60\x79" "\x79\x72\x3b\x27\xb9\xed\xaf\xc8\x93\x7e\xff\x8a\xdc\x72\xa3\xc5\x3a\x1a" "\xb9\xdb\xde\x16\x1f\xd7\xae\xda\x2c\xe7\xcf\xcb\x6f\xbf\xfc\xce\x68\xb6" "\xa4\x7d\x2e\x4c\x6e\x9f\x4f\x6e\xaf\x9a\x61\x9e\x7a\xfa\x2f\x8e\x6a\x71" "\xd4\x98\x2c\x7f\x67\x3c\x35\x47\xa2\xa6\xe7\x2d\x8e\xe2\xf1\xb9\xdd\x37" "\xb9\x5c\x1b\x5f\x8e\x26\x97\xa3\xfc\x72\x9c\x5b\xae\xe5\x96\xeb\x3d\xb9" "\xbe\xc6\xc7\x4d\x36\x6c\x3d\x8e\xb3\xeb\xd3\xb8\xdc\xfa\x74\x77\xdc\x48" "\xd6\x5f\xd1\xbc\xaf\x2e\xb0\x21\xb0\x7e\x69\x72\xdb\x97\xbc\x50\x7f\x96" "\x2e\x47\xf9\x3b\x13\xfa\xa7\xdd\x99\xea\x23\x6a\xaa\xeb\xd4\xf9\x9a\x18" "\x01\xb5\xc0\x6b\x2f\x5d\x3f\x59\x5e\xf2\x64\xf4\x27\xeb\xfa\xe3\xc5\xd3" "\x1e\x33\x5a\x20\xfd\xde\xa9\x6f\x6f\xdb\xf4\xfa\x0f\x0e\x3d\x3f\x10\xa8" "\x23\x7e\x2e\x4e\xf2\xc7\xe5\xf9\x93\xfb\xf7\xe7\xf2\x0f\x8f\x3c\x7d\xe2" "\xab\xb7\x1d\x5f\x3a\x18\xca\xbf\xb5\x96\xe4\xaf\xb5\x55\xff\x4b\xf5\x97" "\xcf\x7e\xe5\xf4\xe0\xfc\x60\xfe\x23\x69\xfe\x7a\x5b\xf9\x37\xfe\xe2\x47" "\x8f\x3c\x78\xf3\xc1\x25\xc1\xed\x73\x2a\xdd\x3e\x8d\xb6\xf2\xaf\xfc\xd2" "\xfc\xc3\x67\x0e\x6e\xe8\x1d\x0a\xe5\x3f\x9a\xe6\xef\x6b\x2b\xff\xf5\x9b" "\x57\xdc\x70\xd9\xe9\x03\x77\x07\xeb\x5f\x9d\x6e\x9f\xb9\x6d\xe5\xff\xfe" "\x63\xab\xce\x6d\x3e\xf2\xf5\xe3\xc1\xfc\x51\x9a\x7f\x5e\x5b\xf9\x5f\x7d" "\xfa\xd9\xe5\xf5\xa5\x8f\x9f\x0c\xe6\x3f\x91\x6e\x9f\xfe\xb6\xf2\xdf\xb2" "\xe6\xc9\xb5\x1f\x5b\xf6\xd0\x53\xc1\xed\xff\x4a\x9a\x7f\x41\x5b\xf9\x37" "\x9d\x7c\x78\xeb\x9e\x67\x5e\x5c\x15\x9c\x9f\xeb\xd3\xed\x33\xd0\x56\xfe" "\xb3\x6b\xbf\xf7\xda\xb9\x81\x75\xcf\x86\xf6\x9d\xf1\xd1\xf3\xfd\x0e\x0b" "\xf0\xcb\xe5\x6d\xc9\x31\xd6\x23\xc9\x72\xbb\xe7\x99\x9d\x6a\x3a\x5f\x78" "\x72\xa8\x31\x71\xcc\x37\x3f\xf9\xb7\xa0\x9b\x03\xe5\xc4\x4d\xe7\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\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xd0\xae\xc7\xd7\xfe\xbb\xcf\x37\x2f\xbf\xf3\x7f\xdf\xbd\xf1\xe4\xbf\x5f" "\xb1\xa3\x91\x2c\xf7\x36\xa2\x28\x8e\xa2\xe8\xf5\xfa\xc4\x72\xba\x7e\x4e" "\x14\xc5\x73\xa3\x28\xda\xb7\x7f\xdb\xde\xfd\x3b\x76\x7d\x66\xe8\xb7\x76" "\x1f\xd8\xbb\x6b\xdb\xce\xa1\x6d\xfb\x87\x46\x76\xed\xdf\x7b\xef\xd0\xdf" "\xfa\x9b\x43\x7b\x47\xf6\xec\xdc\x76\xef\xd8\x77\x57\x5f\xbd\x66\xe2\x71" "\x8b\xc7\xb3\x45\xd1\xe2\xf8\xb2\x69\xb5\x8c\x8e\x8e\x8e\x46\x51\x34\xd4" "\xbc\x2e\x1d\xef\xf7\x3f\xfa\xdc\xff\xdd\xf8\xd4\x5f\x7d\x2a\x8a\x56\x5f" "\xfc\xbd\x15\x8d\x60\x3f\xef\xfd\x2f\xaf\x7d\x68\x49\xc1\xd7\x9c\x78\x78" "\x74\xfd\x3f\xbf\xee\xb1\x43\x73\xfe\xe7\x45\x13\x2b\x06\x92\xba\x06\x42" "\x75\x0d\x64\xd7\xa5\x15\xf4\x0f\xbf\xf2\xe7\x1f\x7c\xfe\x07\x63\x75\xbd" "\xbd\xac\xae\x27\x5e\xbe\xf5\xff\x64\x0a\x1a\x5f\x31\x95\x27\x51\xeb\x8d" "\x6a\xe3\x77\x7a\xe3\x79\x85\x75\x4c\x56\x3d\x55\xcf\xf8\xf6\x6a\x6c\xdf" "\xb1\x73\x64\x75\xf5\xf6\x8d\x03\xdb\xf7\xdd\x2f\xfe\xd1\xe9\x7f\x7b\xcf" "\xc6\xdf\x9d\xd8\xbe\x7d\xc1\x3e\x5a\xdc\xbe\x63\x5b\xb5\x31\xfa\xe8\x4f" "\x1e\x7c\xf7\xfd\x1f\x1c\x79\xff\x05\xfc\xbc\x57\x6d\xef\xa6\x16\xc6\xeb" "\x4b\xb7\x5f\x5f\xb2\xbd\x17\x26\x7d\x2d\x0c\xf4\x55\x0b\xf4\x75\xf7\xd0" "\xab\xa7\xfe\xe9\xbf\xf9\x8f\x5f\xb9\x3f\x5a\xdd\xf8\xc9\xe5\xd3\xc7\xae" "\xea\xab\x27\x99\x00\x3d\xf1\xd2\x96\xc6\x4d\x47\x98\x17\x2f\xca\xc4\xf6" "\x25\xf1\xe9\x33\x9e\x3e\xee\xbd\xfb\xef\xda\xf3\xde\x7d\xf7\x1e\xba\x7a" "\xc7\x5d\xdb\x3e\x33\xf2\x99\x91\x5d\x6b\xd6\x5c\x77\xc3\x35\x6b\xae\xb9" "\xf6\x86\x35\xef\x1d\x6f\x7d\xe2\x6b\xd7\xfa\x4f\xc7\x7f\x77\x8b\xfd\xcf" "\x4f\x32\xcd\x8f\x97\x15\x6e\xb7\xfc\xda\x74\xdc\xcb\xc7\xbf\xd6\xa3\xa4" "\xec\xf4\xa6\xe9\x4e\x56\x4f\xd4\x3f\x71\x9b\xdb\xce\x69\x78\xbe\xeb\xfe" "\xe4\x7b\xfd\xf1\xe2\x69\xb9\x46\x0b\xa4\xdf\x3b\xf5\xed\x6d\x9b\x5e\xff" "\xc1\xa1\xe7\x43\xaf\xbc\xf8\xb9\x89\x11\xe7\x46\x0b\x26\x6e\xe3\xe5\x81" "\xc8\x9d\xb9\x07\xd6\x27\x0b\x2e\x1a\xff\xfc\xbc\x2e\x77\xff\x5e\xdf\xce" "\xf4\x6b\x6b\xaf\xcb\xaa\xba\xaa\xe6\xd5\x58\x5d\xd5\xf3\xaa\xb9\xa2\x92" "\xfd\xd8\xcb\x57\x3e\xf2\x93\x67\xbe\xf0\xcf\x6e\x6f\x61\x7f\xd1\x14\x3a" "\x5e\x5f\x5a\xe7\xbc\xb1\x97\xcb\x35\x51\xd3\xeb\x76\xfa\xb6\x2a\xea\xab" "\x85\xe7\x67\xb8\x68\x3b\xdc\x71\xf5\xde\x3f\xba\x77\xc7\xa6\x23\x55\xfb" "\xf3\xe6\x67\xa6\xf9\x6b\x4e\x3c\x3c\xfa\x3f\x96\xc7\x37\x1e\xd8\xf7\xe7" "\x7b\x27\x56\x9c\x97\xf7\xcb\xe6\x82\xda\x7c\xbf\x9c\xac\x7a\xaa\x9e\xf1" "\xed\xd5\x97\x3c\x1f\x17\xea\xf6\xed\x8d\xea\x49\x5f\xfd\x85\x75\x6d\x88" "\x9f\xf9\xc0\xbb\xef\x3a\xfe\x2b\x93\xf5\xcd\x99\x13\xdd\xb3\x6d\xff\xfe" "\xbd\xd7\x4c\x7c\x7d\xab\xf6\xf5\x17\x73\x2e\x5a\xb2\xe3\x81\x65\x97\x4d" "\xeb\xeb\xda\x89\xaf\x53\xfb\xfd\x7a\x61\x5d\x97\xe7\x96\x2b\xf7\xfb\xb5" "\xe2\xfe\xaa\xf6\xfb\xf9\x71\xa6\xe2\x8b\xf3\x0d\xe5\x96\xfb\xa3\x7a\x5b" "\xef\x13\x1b\x7f\xf1\xa3\x47\x1e\xbc\xf9\xe0\x92\xe0\xfb\xc4\xa9\x56\xdf" "\x27\x7e\x3b\xb3\x54\xef\xf0\x7d\xa2\x16\x78\xbd\x3f\xfa\x57\x5f\x1e\x7a" "\xe3\xf6\x4f\xbe\x51\x35\x9f\x6e\xda\xb7\xec\xbe\x25\x05\x5f\xf3\xed\x0d" "\x8f\x7e\xfd\x0f\x7f\xf5\x9a\xf7\xdf\x7a\xf3\x87\x27\x56\x9c\x97\xfd\x50" "\x73\x41\x6d\xee\x87\x26\xab\x4e\xea\x49\xb7\xd7\xf8\x7e\xe8\xda\x0b\xa7" "\x8f\x37\xef\x79\xce\xbc\x10\xe3\xe1\xd1\xcb\xbf\xf6\xae\x5b\xce\x9d\xf9" "\xfc\x27\x26\x56\x54\x6d\xdf\xc9\xe8\xa2\xed\xbb\xa6\x7a\x3f\x5f\x0f\xf4" "\x75\x7b\xcf\x3b\x16\x3d\xf6\xe3\x65\xef\xe8\xde\xfc\xdd\xb7\xe5\xa7\x57" "\xbe\x67\xde\xfc\x0b\x6c\xfe\xf6\x25\xdb\xb7\x2f\xb0\x7d\x27\xab\x4e\xea" "\xa9\x37\x6f\xdf\xf7\xdc\xb1\x7b\xe7\x9d\x13\xcb\x17\xee\x71\xdb\x84\xde" "\x8a\xf3\x9f\xf4\x7d\x67\xdf\xbd\x87\x3e\xb7\x6d\xe7\xce\x91\xbd\xfb\x5a" "\xeb\xab\xd5\xf7\xd3\x74\x9c\xfc\x56\x6e\xf7\xfd\x34\x7d\xf7\x58\x5c\xd1" "\x57\xfa\x7c\x4d\xf5\x35\x7b\x77\x5a\xd9\x5e\xad\xbe\xde\xd2\xfa\xef\xcc" "\xe5\x68\xf7\xf5\x06\x90\x9a\x7a\x5f\x98\x93\x59\x9f\xdf\x7f\xa6\xd7\xfd" "\x56\x2c\x8c\x36\xbe\xe7\x0b\xdf\x7c\x39\x1e\x9a\x78\xbf\xec\xd6\xf5\xd6" "\x74\x9c\x4b\x73\x6f\xcc\xed\x5e\x6f\xad\xba\x3e\xf6\x8e\xdc\x72\xf6\x3c" "\xa9\x11\x35\xf5\x3d\x61\xfa\x79\xd2\xf8\x43\xaa\xce\x93\xf2\xe3\x54\x9d" "\x27\x5d\x99\x5b\xae\x3e\x8f\x79\xa4\xb0\x93\xd0\xf3\xd7\x93\xbc\xf3\x16" "\x5d\x37\xcd\xd5\xdb\x18\xcb\x10\x9a\x1f\x83\x49\xfe\xc1\x64\x39\x3d\xde" "\x5c\xf1\x9e\xe8\xba\xfa\xf3\xef\xfc\x68\x3c\xdc\xda\xfc\x68\xf5\x78\x3a" "\x1d\xe7\x6f\xe4\x36\x50\xbb\xc7\xd3\x55\xf3\x63\x65\x54\x5c\x57\xb7\xe7" "\xc7\xbb\x72\x0f\xaa\x7e\xbe\x8f\x14\x56\xd6\x17\x78\x3e\xaa\x9e\xef\x95" "\x99\x44\xa3\xa3\x9d\x9e\x97\x0f\x04\xaa\x4e\xcf\xcb\xfb\xa3\xb8\xad\xfc" "\xc3\x23\x4f\x9f\xf8\xea\x6d\xc7\x97\x06\xf3\x6f\xad\x25\xf9\x6b\x6d\xe5" "\x7f\xa9\xfe\xf2\xd9\xaf\x9c\x1e\x9c\x1f\xcc\x7f\x24\xcd\xdf\x68\x2b\xff" "\xca\x2f\xcd\x3f\x7c\xe6\xe0\x86\xde\x60\xfe\xa3\xe9\xf6\xe9\x6b\x2b\xff" "\xf5\x9b\x57\xdc\x70\xd9\xe9\x03\x77\x07\xf3\xaf\x4e\xeb\x9f\xdb\x56\xfe" "\xef\x3f\xb6\xea\xdc\xe6\x23\x5f\x3f\x1e\xcc\x1f\xa5\xf9\xfb\xdb\xca\x7f" "\xcb\x9a\x27\xd7\x7e\x6c\xd9\x43\x4f\x05\xf3\xbf\x12\x27\xe3\x8c\xbd\x76" "\xa3\xe8\xd8\x99\x35\xdb\x27\x96\xe3\xa8\x27\x99\xff\x69\x1d\x3d\x99\xba" "\xa2\xfc\x72\x3c\xb9\x3c\xa7\xa8\x8f\xa8\xde\x1c\x5f\x4b\xc3\x92\x01\xea" "\x71\x9c\x5d\x9f\xc6\xe5\xd6\xa7\x7d\x34\x92\xf5\x57\x34\xd5\x58\x64\x63" "\x60\x7d\xfa\xaa\xed\x4b\x5e\xd8\x3f\x4b\x97\xa3\xfc\x9d\xf2\xf5\xe9\xee" "\x29\xad\xeb\x54\xe0\xfd\xe7\x7c\xa9\x35\x1d\x7b\x14\xad\xaf\xba\x3e\xd9" "\x2d\xaf\xff\x70\xf0\xf7\x9b\x97\xd3\xff\xff\x4f\xe7\x40\x6f\x63\xe2\xb9" "\xbb\x36\xb7\xbd\xaa\xde\x3f\xf2\x7b\xef\x34\x5f\xf0\x3a\x6c\xe0\x12\x46" "\xd5\xf1\xc2\xf4\xff\x7f\x9b\xd7\xd6\xeb\xef\xd5\xa7\x9f\x5d\x5e\x5f\xfa" "\xf8\xc9\xe0\x75\xd5\x13\xad\x5e\x57\xdd\x93\x59\x9a\x57\x71\x5d\xb5\xd3" "\x7a\x83\xfb\x8b\x13\xe9\xfe\xb4\xb3\xfd\xd1\x60\x28\xff\x2b\x69\xfe\xce" "\xde\x0f\x82\xf9\x93\xf7\x83\xaa\x79\xf6\xce\xdc\x72\xe5\x3c\xeb\x29\x1e" "\xaf\x6a\x9e\xe5\x8f\x53\xfa\xa3\x05\x6d\xf5\xbd\xe9\xe4\xc3\x5b\xf7\x3c" "\xf3\xe2\xaa\xe0\x3c\x5b\x3f\xf1\x82\xaf\x9e\x67\x8f\x67\x96\x16\x54\xce" "\xb3\xce\xfe\x5f\x3a\x38\xcf\x9e\x8b\xbb\xb2\x3d\x82\xf9\xd7\x77\xe7\xb8" "\x26\x38\xcf\x92\xe3\x9a\xaa\x79\x76\x55\x6e\xb9\xf3\x79\x96\x3d\x1e\xbd" "\x31\xb9\xbd\x27\x17\xdf\x9f\x5c\x21\x9e\x69\xdf\x67\xd7\x7e\xef\xb5\x73" "\x03\xeb\x9e\x0d\xce\xb3\xa3\xad\xce\xb3\x3f\xc8\x2c\x0d\x54\xce\xb3\xce" "\x8e\x6f\x83\xcf\xd3\xe4\xf1\xed\x6c\x1f\x9f\xbf\xb5\x8f\x3f\xbb\x7a\x7c" "\x38\xb1\x5c\xcb\x2d\x17\x1f\x1f\x26\xff\x9d\x3b\x5b\xc7\x87\x1b\x02\xeb" "\x67\x7a\x7c\xd8\x3f\xed\xce\x54\x1f\xd1\x5b\xf1\xf8\x30\xb0\x9f\x01\x80" "\x32\xdf\x79\xf4\xde\xff\xd5\xbc\x9c\x9e\xff\xa7\xef\xdd\xe9\xf9\xff\x37" "\x73\x8f\xeb\xf4\xbc\x32\xff\xf3\x50\xa9\x6e\x9d\x57\x06\xf3\x1f\xed\xce" "\xf9\x4a\xf0\x38\x75\xf2\x7c\x65\xb6\xcf\xb7\x66\xfb\x38\x7b\x76\xcf\xb7" "\x1c\xc7\x07\xf2\x4f\x5e\x47\x9e\xed\xeb\x42\xb3\x7b\x5e\xe9\x3c\x24\x59" "\x8e\xf2\x77\x26\x38\x0f\x01\x00\xe0\xcd\x70\xc5\xbf\xfa\xf2\xaf\x37\x2f" "\xa7\xe7\xff\x93\x3f\xf7\x96\xfc\xfe\xff\x8b\xe9\x72\xee\xf1\xce\x73\x03" "\xf9\xcf\xdb\x79\xee\x6c\x5f\x27\x71\x1e\x5d\x98\xbf\x4b\x3f\x5f\x51\x7d" "\x1d\x6c\xb6\xaf\x53\xcd\xe4\x3a\xc0\x7f\xba\x38\xfd\x9e\xeb\x00\xc5\x5c" "\x07\x38\xbf\x75\x01\x00\x30\x33\x5b\xb6\xef\x1d\x19\xd9\xb7\x67\xdb\x1d" "\x23\x5b\x76\xec\xda\xb1\x7f\x72\x7d\xcf\xf8\x99\xd3\xf4\x9f\x53\xfd\xdb" "\xc9\xed\xfa\x5c\x9e\xaa\x9f\x9f\x2e\x8a\x9f\x57\x12\xff\x89\x60\xfe\x6c" "\x3d\xef\x0b\xc4\x87\x34\xc6\x7f\xe6\x35\x8a\x3e\x7d\xc7\x67\xaf\xdd\x72" "\xe7\xc8\xdd\x33\xed\x3f\x34\x5e\x55\xff\x45\xf1\x65\xfd\xe7\xcf\x2f\x42" "\xfd\xdf\x10\x88\x0f\xe9\xb4\xff\xd0\x78\x55\xfd\x17\xc5\x97\xf5\x7f\x73" "\x30\x7f\xb6\x9e\xf7\x07\xe2\x43\x3a\xed\x3f\x34\x5e\x55\xff\x45\xf1\x65" "\xfd\x7f\x32\x98\x3f\x5b\xcf\xaf\x06\xe2\x43\x3a\xed\x3f\x34\x5e\x55\xff" "\x45\xf1\x65\xfd\xe7\x7f\x1f\x2c\xd4\xff\xaf\x05\xe2\x43\x3a\xed\x3f\x34" "\x5e\x55\xff\x45\xf1\x65\xfd\xdf\x12\xcc\x9f\xad\xe7\x03\x81\xf8\x90\x4e" "\xfb\x0f\x8d\x57\xd5\x7f\x51\x7c\x59\xff\xb7\x06\xf3\x67\xeb\xf9\x3b\x81" "\xf8\x90\x4e\xfb\x0f\x8d\x57\xd5\x7f\x51\x7c\x59\xff\xb7\x05\xf3\x67\xeb" "\x59\x1b\x88\x0f\xe9\xb4\xff\xd0\x78\x55\xfd\x17\xc5\x97\xf5\xff\xa9\x60" "\xfe\x6c\x3d\xc3\x81\xf8\x90\x4e\xfb\x0f\x8d\x57\xd5\x7f\x51\x7c\x59\xff" "\x9b\x82\xf9\xb3\xf5\xfc\xdd\x40\x7c\x48\xa7\xfd\x87\xc6\xab\xea\xbf\x28" "\xbe\xac\xff\xdb\x83\xf9\xb3\xf5\x7c\x30\x10\x1f\xd2\x69\xff\xa1\xf1\xaa" "\xfa\x2f\x8a\x2f\xeb\xff\x37\x82\xf9\xb3\xf5\xfc\xbd\x40\x7c\x48\x69\xff" "\x85\xf5\xb5\x36\x5e\x55\xff\x45\xf1\x65\xfd\x6f\x0e\xe6\xcf\xd6\xf3\xeb" "\x81\xf8\x90\x4e\x9f\xff\xd0\x78\x55\xfd\x17\xc5\x97\xf5\xff\x9b\xc1\xfc" "\xd9\x7a\x3e\x14\x88\x0f\xe9\xb4\xff\xd0\x78\x55\xfd\x17\xc5\x97\xf5\xbf" "\x25\x98\x3f\x5b\xcf\x87\x03\xf1\x21\x9d\xf6\x1f\x1a\xaf\xaa\xff\xa2\xf8" "\xb2\xfe\xb7\x06\xf3\x67\xeb\xf9\xfb\x81\xf8\x90\x4e\xfb\x0f\x8d\x57\xd5" "\x7f\x51\x7c\x59\xff\xdb\x82\xf9\xb3\xf5\x7c\x24\x10\x1f\xd2\x69\xff\xa1" "\xf1\xaa\xfa\x2f\x8a\x2f\xeb\xff\xd3\xc1\xfc\xd9\x7a\x3e\x1a\x88\x0f\xe9" "\xb4\xff\xd0\x78\x55\xfd\x17\xc5\x97\xf5\x7f\x47\x30\x7f\xb6\x9e\x8f\x05" "\xe2\x43\x3a\xed\x3f\x34\x5e\x55\xff\x45\xf1\x65\xfd\xe7\x3f\xef\x30\xd4" "\xff\x3f\x08\xc4\x87\x74\xda\x7f\x68\xbc\xaa\xfe\x8b\xe2\xcb\xfa\x1f\x09" "\xe6\xcf\xd6\xb3\x2e\x10\x1f\xd2\x69\xff\xa1\xf1\xaa\xfa\x2f\x8a\x2f\xeb" "\x7f\x7b\x30\x7f\xf1\xe7\x06\xe4\xe3\x43\x3a\xed\xff\xc6\x68\xe2\x03\xbc" "\xc3\xf5\xb5\xde\x4f\x59\xff\x9f\x09\xe6\xcf\xd6\xf3\xf1\x40\x7c\x48\xa7" "\xfd\x87\xc6\xab\xea\xbf\x28\xbe\xac\xff\xcf\x06\xf3\x67\xeb\xb9\x29\x10" "\x1f\xd2\x69\xff\xa1\xf1\xaa\xfa\x2f\x8a\x2f\xeb\x7f\x47\x30\x7f\xb6\x9e" "\xf5\x81\xf8\x90\x4e\xfb\x0f\x8d\x57\xd5\x7f\x51\x7c\x59\xff\xbf\x15\xcc" "\x9f\xad\xe7\x13\x81\xf8\x90\x4e\xfb\x0f\x8d\x57\xd5\x7f\x51\x7c\x59\xff" "\x9f\x0b\xe6\xcf\xd6\xb3\x21\x10\x1f\xd2\x69\xff\xa1\xf1\xaa\xfa\x2f\x8a" "\x2f\xeb\x7f\x67\x30\x7f\xb6\x9e\x9b\x03\xf1\x21\x9d\xf6\x1f\x1a\xaf\xaa" "\xff\xa2\xf8\xb2\xfe\xef\x0a\xe6\xcf\xd6\xf3\xc9\x40\x7c\x48\xa7\xfd\x8f" "\x8d\xf7\x2f\x0b\xf2\x56\xf5\x5f\xd4\x4f\x59\xff\xbb\x82\xf9\xb3\xf5\x6c" "\x0c\xc4\x87\x74\xda\x7f\x68\xbc\xaa\xfe\x8b\xe2\xcb\xfa\xdf\x1d\xcc\x9f" "\xad\xe7\x96\x40\x7c\x48\xa7\xfd\x87\xc6\xab\xea\xbf\x28\xbe\xac\xff\x3d" "\xc1\xfc\xd9\x7a\x6e\x0d\xc4\x87\x74\xda\x7f\x68\xbc\xaa\xfe\x8b\xe2\xcb" "\xfa\xff\x7c\x30\x7f\xb6\x9e\xdb\x02\xf1\x21\x9d\xf6\x1f\x1a\xaf\xaa\xff" "\xa2\xf8\xb2\xfe\xf7\x06\xf3\x67\xeb\xf9\x54\x20\x3e\xa4\xd3\xfe\x43\xe3" "\x55\xf5\x5f\x14\x5f\xd6\xff\xbe\x60\xfe\x6c\x3d\x9b\x02\xf1\x21\x9d\xf6" "\x1f\x1a\xaf\xaa\xff\xa2\xf8\xb2\xfe\xf7\x07\xf3\x67\xeb\xb9\x3d\x10\x1f" "\xd2\x69\xff\xa1\xf1\xaa\xfa\x2f\x8a\x2f\xeb\xff\x40\x30\x7f\xb6\x9e\xdf" "\x08\xc4\x87\x74\xda\x7f\x68\xbc\xaa\xfe\x8b\xe2\xcb\xfa\xbf\x3b\x98\x3f" "\x5b\xcf\xe6\x40\x7c\x48\xa7\xfd\x87\xc6\xab\xea\xbf\x28\xbe\xac\xff\x83" "\xc1\xfc\xd9\x7a\x7e\x33\x10\x1f\xd2\x69\xff\xa1\xf1\xaa\xfa\x2f\x8a\x2f" "\xeb\x3f\xff\x39\x90\xa1\xfe\xb7\x04\xe2\x43\x26\xfb\xdf\xbf\x77\x64\x64" "\xcb\x81\x3d\x77\x6e\xdb\x3f\xb2\x65\xd7\xee\x3b\x47\xf6\x6d\x39\xb8\x77" "\xc7\xfe\xfd\x23\xc9\x81\x5a\xa7\xbf\x57\x16\xfe\xbd\xa0\x37\xf9\x17\x59" "\x28\x95\x79\x7d\x4c\x4c\x92\x1d\xbb\xf6\x8d\xec\x9d\xbe\xff\x9e\x5b\x3a" "\x7f\x9b\xe7\x44\x34\xfe\x6b\x4f\x73\x27\x6e\xe3\xb7\xb7\x14\x9f\xff\xd8" "\xeb\x76\x67\xcd\x85\x32\xdf\x7b\xa2\x46\xe9\xf6\xba\x34\xb7\x7c\x51\xf2" "\x79\xb4\x17\x05\x3e\x8f\x36\x1f\x9f\xa6\x5d\x36\x7e\x67\xfa\xe7\xd1\xe6" "\x87\x6d\x54\x7c\x8e\x6b\xd5\xfe\x29\x3f\x7e\x68\xff\x14\x97\xc4\x17\xed" "\x5f\x43\xfb\xb3\xaa\xf7\xbf\x19\xef\xff\x2a\xe7\x77\x5f\x69\xff\xf9\xd5" "\xbd\xc9\x2f\xf6\xf5\xc6\x17\xb7\x14\x1f\x95\xfc\x7d\xb7\xd6\xe6\x6b\x67" "\xbf\x77\x1a\x9c\xaf\xaf\xb4\x36\x5f\xf3\x9f\xbb\x5e\x35\x5f\xf3\xf1\x33" "\x9d\xaf\xfd\x1d\xce\xd7\xfc\xf8\xa1\xf9\x54\x2b\x89\x2f\x3b\x1e\x6a\x75" "\xbe\x6e\x0a\xc4\xa7\x5a\x9f\x9f\x71\xb0\xdf\xa2\x79\x35\xd3\xbf\x33\x98" "\xa6\x9d\xd1\xdf\x19\xcc\x7d\x99\xa6\x8d\xbf\x65\xd0\xfa\xeb\xa1\xb3\xdf" "\x23\x0f\xbe\x1e\x92\xa2\xab\x5e\x0f\xf9\xdf\xe3\xae\x7a\x3d\xe4\xe3\x67" "\xfa\x7a\x98\xdb\xe1\xeb\x21\x3f\x7e\xd5\xeb\xa1\x28\xbe\xec\xfc\xb8\xd5" "\xd7\xc3\xad\x81\xf8\x90\xd6\xe7\x43\x67\x9f\x5b\x10\x9c\x0f\xab\x5b\x9b" "\x0f\xf9\xbf\x63\x55\x35\x1f\xf2\xf1\x33\x9d\x0f\x7d\x33\x9e\x0f\xbf\xbb" "\xb0\x6c\xfc\xaa\xf9\x50\x14\x5f\x76\xbd\xb0\xd5\xf9\xf0\xc9\x40\x7c\xab" "\x5a\x9f\x1f\x9d\x7d\xae\x48\x70\x7e\x6c\x6d\x6d\x7e\xe4\xff\x9e\x44\xd5" "\xfc\xc8\xc7\xcf\x74\x7e\xc4\x1d\xee\x2f\xf2\xe3\x57\xcd\x8f\xa2\xf8\xd0" "\xff\xa7\x44\x33\x98\x1f\x9f\x08\xc4\xa7\x32\xef\x9f\xdb\xf7\x8d\x9f\xd4" "\xef\xd8\xb6\x73\xc7\xa1\xdc\x0f\x60\x0c\x24\xef\x9f\x6f\xf6\xfb\xe1\x79" "\x79\x5f\xfe\xe9\xaf\xfd\xc5\xcf\x26\xbe\x24\x75\xd4\xa6\xd5\x51\x75\x3c" "\x11\xe7\xea\x58\x94\x54\xb2\x28\xf4\x77\x0f\x03\x75\xdf\xf1\x9f\xff\xf5" "\xc6\x6f\xfe\xfc\x0b\x5f\x8e\xa2\xd5\x17\xd7\x97\x87\xeb\x9e\x2a\x79\xea" "\x4b\x4e\x3c\x3c\xba\xf8\xbe\x95\x5f\xbd\xed\xed\x27\x3f\x38\x56\x7f\xad" "\xb4\xfe\xc9\xc8\xf4\xef\x16\x57\xfc\xbd\xe3\x7c\x7c\xda\x4f\x63\xe7\xee" "\x7d\xfb\x7f\x65\xfb\xee\x03\xbb\x5a\xfd\x89\xab\x72\xe9\xe7\xa1\xd4\x26" "\x97\x67\xe9\xf3\x50\x92\x95\xf5\x16\x3f\xdf\x24\xf4\xfb\x04\x33\xfd\x7c" "\x93\x9e\x69\x77\x2e\x4c\x2d\x7f\xbe\x09\xc0\x2f\x89\x8b\x8e\x3e\xb7\xa0" "\x79\x39\xfd\xfc\xbf\xf4\xfd\x68\x30\xd9\xf7\xcd\x4d\x76\x80\xe9\xfa\xd6" "\x8f\xb3\x3b\xfb\x7c\xbd\xe0\x71\xf6\x91\xd6\x8e\xb3\x57\xe5\xfb\xad\x38" "\xce\xce\xc7\xa7\xfd\xb6\x7a\x9c\x5d\xeb\xf0\x38\x3b\x3f\x7e\xd5\x71\x76" "\x51\x7c\xd9\xcf\xed\xb5\x7a\x9c\xfd\xf1\x40\xfc\x4c\x65\xe7\xc9\xd8\x04" "\x19\x9f\x1f\x23\x5b\x0e\xee\xde\xdb\xfc\x33\x71\xb3\xfd\x77\x6b\xbb\x5f" "\xef\xec\xfe\x1d\xdf\xce\xeb\x9b\xdd\xcf\x6d\x6c\x57\xeb\xf5\xcf\xee\xe7" "\x42\xce\x7e\xfd\xb3\xfb\x77\x80\x67\xbf\xfe\xd9\xfd\x3b\xcf\xed\x3a\x6f" "\xe7\x4b\xc9\x87\x45\x56\x7d\x7e\x64\xd5\x79\x54\xe8\xf7\xd2\x67\x7a\x1e" "\x35\x67\xda\x9d\x0b\x93\xf3\x28\x00\xb8\xf0\xfd\x93\xbd\x3f\xfc\x17\xcd" "\xcb\xe9\xf9\x7f\x72\x16\x3b\x79\xfe\xff\xc5\x64\xb9\xde\xe5\xf1\x67\xfb" "\x3c\x6a\xb6\xcf\x2b\x67\xfb\x38\xf9\xad\xff\xf9\xfb\xb3\x7b\x1e\xe4\x7c" "\xa0\x64\xb0\x0b\x80\xf3\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\x80\x62\x7f\xf0\xdf\xfe\xc3\x37\x9a\x97\x7b" "\x1b\x83\xe3\xb7\x2f\xfd\xce\xbe\x37\x3e\x7e\xe9\x87\xbe\xf3\xe0\xc8\x99" "\xfb\x3e\xf2\xc7\x77\x3d\x70\xc9\x9f\x2c\x79\x63\xe0\xa1\x75\x37\x3e\x7a" "\xc3\x87\xbf\xbb\xf5\x4f\x17\x0d\xaf\x58\x39\x72\xfd\xd7\x8e\xdd\xf4\xf0" "\x43\x2f\x7c\xe0\xe7\x2f\x3c\xf1\xd4\xba\xca\x81\x06\x26\x6e\xae\x4a\x16" "\xfb\xa2\x28\xfe\xcb\x38\x8a\x56\xfc\xf0\xd8\x13\x0f\x7f\xeb\xcf\x2e\x19" "\x5b\x17\x8f\x8d\x1f\x0f\xdc\x1f\x2d\x5a\x14\x2f\xfe\xc6\xa2\x38\x97\x61" "\xf5\xd9\x28\x8a\xee\x9c\xac\x33\xfb\xcd\x63\x67\xd6\x6c\x1f\xbb\x7d\xe0" "\x8b\xbd\x99\xf5\x17\xe5\x92\xe4\xfb\x8a\xfa\xeb\x69\x3d\x99\x3a\xa3\x7b" "\x2a\x3b\xe2\x2d\xa8\x2f\x99\x67\x87\xb7\x7c\xfa\x99\x13\x9f\x1b\xfe\xd6" "\xb1\xa1\x3d\x6b\x7e\x7c\xfa\xba\xdd\xf7\x4f\x85\xc4\x7d\x4d\xf3\x29\x8a" "\x16\x6e\x6d\x7e\x7c\x4f\x14\x45\x73\x93\x7f\x63\xd2\xd9\x36\x98\x3e\x38" "\xb9\x5d\x1f\x45\xd1\xbc\xa6\xc7\xbd\xaf\xa2\xae\x2b\x5b\xac\xff\xea\xc0" "\xf2\xf2\xe4\x76\x4e\x72\xdb\x5f\x91\x27\xfd\xfe\x15\xb9\xe5\x46\x8b\x75" "\x34\x72\xb7\xbd\x2d\x3e\xae\x4d\xff\xaf\x36\xbb\xf9\xa7\xc9\x6f\xbf\xfc" "\xce\x68\xb6\xa4\x7d\x2e\x4c\x6e\x9f\x4f\x6e\xaf\x9a\x61\x9e\x7a\xfa\x2f" "\x8e\x6a\x71\xd4\x98\x2c\x7f\x67\x3c\x35\x47\xa2\xa6\xe7\x2d\x8e\xe2\xf1" "\xb9\xdd\x37\xb9\x5c\x1b\x5f\x8e\x26\x97\xa3\xfc\x72\x9c\x5b\xae\xe5\x96" "\xeb\x3d\xb9\xbe\xc6\xc7\x4d\x36\x6c\x3d\x8e\xb3\xeb\xd3\xb8\xdc\xfa\x74" "\x77\xdc\x48\xd6\x5f\xd1\xbc\xaf\x2e\xb0\x21\xb0\x7e\x69\x72\xdb\x97\xbc" "\x50\x7f\x96\x2e\x47\xf9\x3b\x13\xfa\xa7\xdd\x99\xea\x23\x6a\xaa\xeb\xd4" "\xf9\x9a\x18\x01\xb5\xc0\x6b\x2f\x5d\x3f\x59\x5e\xf2\x64\xf4\x27\xeb\xfa" "\xe3\xc5\xd3\x1e\x33\x5a\x20\xfd\xde\xa9\x6f\x6f\xdb\xf4\xfa\x0f\x0e\x3d" "\x3f\x10\xa8\x23\x7e\x2e\x4e\xf2\xc7\x6d\xe5\x1f\x1e\x79\xfa\xc4\x57\x6f" "\x3b\xbe\x74\x30\x94\x7f\x6b\x2d\xc9\x5f\x6b\x2b\xff\x4b\xf5\x97\xcf\x7e" "\xe5\xf4\xe0\xfc\x60\xfe\x23\x69\xfe\x7a\x5b\xf9\x37\xfe\xe2\x47\x8f\x3c" "\x78\xf3\xc1\x25\xc1\xed\x73\x2a\xdd\x3e\x8d\xb6\xf2\xaf\xfc\xd2\xfc\xc3" "\x67\x0e\x6e\xe8\x1d\x0a\xe5\x3f\x9a\xe6\xef\x6b\x2b\xff\xf5\x9b\x57\xdc" "\x70\xd9\xe9\x03\x77\x07\xeb\x5f\x9d\x6e\x9f\xb9\x6d\xe5\xff\xfe\x63\xab" "\xce\x6d\x3e\xf2\xf5\xe3\xc1\xfc\x51\x9a\x7f\x5e\x5b\xf9\x5f\x7d\xfa\xd9" "\xe5\xf5\xa5\x8f\x9f\x0c\xe6\x3f\x91\x6e\x9f\xfe\xb6\xf2\xdf\xb2\xe6\xc9" "\xb5\x1f\x5b\xf6\xd0\x53\xc1\xed\xff\x4a\x9a\x7f\x41\x5b\xf9\x37\x9d\x7c" "\x78\xeb\x9e\x67\x5e\x5c\x15\x9c\x9f\xeb\xd3\xed\x33\xd0\x56\xfe\xb3\x6b" "\xbf\xf7\xda\xb9\x81\x75\xcf\x86\xf6\x9d\xf1\xd1\xf3\xfd\x0e\x0b\xf0\xcb" "\xe5\x6d\xc9\x31\xd6\x23\xc9\x72\xbb\xe7\x99\x9d\x6a\x3a\x5f\x78\x72\xa8" "\x31\x71\xcc\x37\x3f\xf9\xb7\xa0\x9b\x03\xe5\xc4\x4d\xe7\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" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x10\xb2\x7b\xb4\x7e\xa0\x79\xf9\xb5\xe3\x8f\xde\xf4\xd9\xff\xbe" "\xe5\xbf\x36\xe2\x28\x8a\x03\x8f\x19\x2d\x90\x7e\xaf\x3e\x67\x78\x78\xa8" "\x8d\x3a\x56\x7e\x69\xfe\xe1\x33\x07\x37\xf4\xa6\xcb\x63\x63\x0f\xb6\x91" "\x07\x00\x00\x00\x98\x6e\xd9\xab\x5f\xf8\x7c\xf3\x72\x7a\x1e\x5e\x4b\x96" "\xe3\xa8\x2f\x1a\x8c\x0e\xc6\x73\xa3\x65\x85\x8f\x4f\xaf\x11\x2c\x4b\x97" "\xe2\xec\xfa\xfc\x35\x84\xb9\x53\x91\x5d\xc9\x53\xeb\x52\x9e\x7a\x97\xf2" "\x34\xba\x94\xa7\xa7\x4b\x79\xe6\xb4\x90\xe7\xc7\x2d\xe4\xe9\xed\x52\x3d" "\x7d\x15\x79\xfa\xa2\xd6\xf2\xcc\x2d\xcd\x53\x6b\xb9\x9e\x79\x5d\xca\xd3" "\xdf\xa5\x3c\xf3\xbb\x94\x67\x41\x97\xf2\x2c\x6c\x3f\x4f\xa3\x39\xcf\x45" "\x5d\xaa\x67\xa0\x34\x4f\xeb\xf3\x70\x51\x97\xf2\x2c\xee\x52\x9e\xb7\x75" "\x29\xcf\x92\x2e\xe5\xb9\xb8\x4b\x79\xde\xde\xa5\x3c\x97\x74\x29\x4f\xfe" "\x9a\xf2\x4c\xe7\xe1\x82\x24\xf2\xd2\x50\x9e\xf1\x3b\xf5\xca\x3c\x8d\xb8" "\x3e\xf9\x8d\xa2\xeb\xe9\xe9\x38\x97\x75\x38\x4e\x7f\x8b\xe3\xe4\xaf\xd9" "\xcf\x74\x9c\xb9\x2d\x8e\x73\x65\x87\xe3\xf4\xb5\x38\xce\xbb\x3a\x1c\x27" "\x6e\x71\x9c\x55\xb9\xc7\xd5\x66\x38\x4e\xad\x62\x9c\x74\xde\xde\x13\xea" "\x27\x5d\x6a\x71\xfe\xdf\xdb\xa5\x3c\x87\xba\x94\xe7\x70\x97\xf2\xfc\x76" "\x97\xf2\xfc\xc3\x2e\xe5\xf9\x47\x5d\xca\x73\x5f\x87\x79\x00\x42\x7e\xef" "\x85\xab\xfe\xb0\x79\x39\x3d\xff\x4f\xcf\x3f\xe3\x68\x20\xea\x6d\x5c\x1b" "\xcd\x4b\xf6\x38\xf9\xab\x00\xe9\xf9\xee\xe5\xe3\x5f\xa7\xbf\xdf\x85\x76" "\x48\x69\xbe\xe5\xb9\xf5\x3d\x55\xf9\xf2\x27\xd8\xb9\x7c\x97\xcf\xb4\xbe" "\xfc\x05\x84\x5c\xbe\x77\x94\xe6\x6b\x4c\x3b\x5f\x2d\xc8\xd7\x68\xce\xb7" "\xb2\x4b\xf9\x00\x00\x00\x60\x26\xfe\xf1\xd9\xc3\x99\xff\x9a\x9b\x7e\xfe" "\x3f\x18\xf5\x36\x96\x4c\x9e\xbf\xbe\x33\xf7\xf8\xca\xf3\xf5\xfc\x7f\x64" "\x27\xd2\x7c\x57\x75\x29\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xfc\x7f\x76\xed\x35\x46\xae\xba\x6c\x00\xf8" "\xff\xec\xcc\xce\xcc\xbb\x5c\xba\x90\xb6\x4c\xe9\x6d\xd3\xf6\xa5\x10\x42" "\x2f\x34\x7d\xf3\x82\x0a\x93\x26\x62\x30\xc2\x16\xb1\xe5\xd2\x90\xb5\xc2" "\xc2\x36\x2c\x2d\x74\x5b\xa0\x55\x53\x04\x63\x9b\x4d\x30\x68\xf1\xc2\xed" "\x83\x05\x89\x21\x44\x20\x21\x69\xd0\x35\xc1\x80\x12\x3f\xd8\xd8\x20\x86" "\x8b\xeb\xc2\x4a\xe0\x0b\x11\xa4\x37\xa0\xe8\x98\xd9\x3d\x67\xf7\xec\xcc" "\x0e\xbb\x8c\xd2\x5a\xfd\xfd\x42\xce\x99\xe7\x9c\xe7\xf9\x3f\xff\x73\x48" "\x48\x9e\xb3\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\xef\xef\x0f\xdf\xfb\xeb\xb3\xe9" "\x78\xb0\xaf\xb7\xbd\x6b\xa0\xa3\x3f\x44\xa1\xf2\xcf\xb8\xca\xe3\x48\xee" "\x65\x72\xa5\x52\x5b\x03\xfb\x78\xe7\xb9\xb5\x57\xfe\xe5\xa5\xad\xbb\x93" "\xb8\xd2\x3b\x9f\x1d\xbd\x9f\x69\x60\x4d\x00\x00\x00\x60\xd8\xe3\xe7\xcd" "\x38\x3d\x1d\x27\x73\x78\x32\x7a\x47\xa1\x10\xf2\xd9\xa5\x21\x1f\xe5\xc6" "\xd4\x15\xe3\xef\x00\xc5\x38\x6e\x6a\x1d\x3e\xcf\x59\x14\x96\x67\x76\xff" "\xef\x85\x51\xa9\x69\x28\x3e\x39\x3a\x69\x4c\x5d\x21\xae\x2b\xc4\x71\x26" "\xae\xeb\xd9\xb2\xf5\xfa\xb5\xdd\xdd\x9d\x1b\x3f\xc1\x1f\x95\x3e\xd5\xcf" "\x51\xbd\x9f\x28\x84\xa1\xcf\x17\x73\x4e\x0c\xab\x16\x6d\x7f\x66\x4f\xd4" "\x36\xfc\x1c\x2d\x13\x3c\x47\x53\x5c\xb7\x78\xd3\x0d\x37\x2e\xee\xd9\xb2" "\xf5\xac\x75\x37\xac\xbd\xae\xf3\xba\xce\xf5\xcb\x96\x2d\x3f\x67\xe9\xb2" "\xa5\x67\x9f\xb3\x6c\xf1\xb5\xeb\xba\x3b\x97\x0c\x1f\x43\x7e\x82\xf5\x42" "\x08\xa5\xb1\xef\x65\x82\x7f\x91\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x04\x6c\xfb\xcd\xee\x6f\xa6\xe3\xc1\xbe\xde\xf6\xae" "\x81\x8e\xfe\x96\x28\x84\xa8\x4e\x4d\x79\x1c\xc9\xbd\x4c\xae\x54\x6a\x6b" "\x60\x1f\xaf\xdc\xf7\xe0\xac\xcc\x8c\xbb\xf7\x26\x71\xa5\x77\x3e\xdb\xc0" "\x42\x00\x00\x00\x40\x8d\x5f\x3e\x3e\xe3\xfc\x74\x9c\xcc\xe1\xc9\xe8\x1d" "\x85\x42\xc8\x67\x73\x21\x13\x66\x0c\xc5\xf3\x46\x53\xb3\x21\x94\xcb\xc9" "\xf5\x05\x55\xd7\x8f\xc4\xde\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\x80\x23\x6b\xdf\xc1\xf6\x3f\xa5\xe3\xc1\xbe\xde\xf6\xae\x81" "\x8e\xfe\xe3\xa2\x10\xa2\x3a\x35\xe5\x71\x24\xf7\x32\xb9\x52\xa9\xad\x81" "\x7d\xac\x5e\xf6\xc3\xf3\x3f\x3f\xf3\x8e\x7b\x93\xb8\xd2\xbb\xd8\xc0\x3a" "\x00\x00\x00\x40\xad\x17\x4e\x6f\xbe\x23\x1d\x27\x73\x78\x53\x1c\x47\xa1" "\x10\x8a\x61\x7e\x68\x8e\x66\x8c\xa9\x4b\xbe\x0d\x9c\x5a\xb5\x5e\x75\x5e" "\xb2\xce\xec\x49\xe6\x55\x7f\x3b\xa8\x97\x37\x7f\x92\x79\xa7\x4d\x32\xef" "\x8c\x09\xf2\x2e\x8e\xcf\xb7\x06\x00\x00\x00\x38\xf6\x5c\xd1\xfa\xdb\xd5" "\xe9\x38\x99\xff\x9b\xe3\x38\x0a\xad\x21\x9f\x2d\x86\x4c\x1c\x4f\x34\xc7" "\x27\xdf\x05\xe6\x56\xe5\x25\xf5\x13\xcd\xf7\x49\xfd\xbc\x3a\xf5\x13\xcd" "\xfd\x49\x7d\xf5\xdc\x0f\x00\x00\x00\xff\xcd\xce\x7a\xf3\x89\x0f\xd3\x71" "\xed\xfc\x5f\x0c\xf9\x6c\x61\x64\xfe\x9e\xe8\xef\xe9\x17\xc5\x67\x7f\x27" "\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xea\xf9\xd5\xc1\x0b\x7f\x9e\x8e\x07\xfb" "\x7a\xdb\xbb\x06\x3a\xfa\x33\x51\x08\x51\x9d\x9a\xf2\x38\x92\x7b\x99\x5c" "\xa9\xd4\xd6\xc0\x3e\x56\xfd\xfd\x8d\x1d\xb7\x5f\x7a\xcb\xd4\x24\xae\xf4" "\xce\x67\x1b\x58\x08\x00\x00\x00\xa8\xf1\x68\xee\xff\x6f\x49\xc7\xc9\x1c" "\x9e\x8c\xde\x51\x28\x84\x7c\xb6\x25\x34\x87\xe3\x86\xe6\xfe\xd7\x72\x53" "\xa6\xae\xfb\xc6\xcc\xd9\x21\x84\xd2\x50\x42\x2e\x17\x6e\x5d\xbb\x69\xd3" "\xc6\xb3\x87\x8f\x49\xde\x17\xa3\x5d\x9f\x59\x78\x43\xdf\x99\x35\x79\x4b" "\x87\x8f\x47\xfe\x49\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\x80\x7f\xd6\xb2\x47\x76\xae\x49\xc7\x83\x7d\xbd\xed\x5d\x03\x1d\xfd" "\xff\x13\x85\x10\xd5\xa9\x29\x8f\x23\xb9\x97\xc9\x95\x4a\x6d\x0d\xec\xe3" "\x85\x9d\x67\x1c\xbe\xea\xae\xa7\xfa\x92\xb8\xd2\xbb\xd8\xc0\x3a\x00\x00" "\x00\x40\xad\x59\xdd\x4f\xff\x39\x1d\x27\x73\x78\x32\xfb\x47\xa1\x10\x8a" "\x21\x17\x72\x61\xfa\x50\x9c\x9e\xf5\x2b\x9a\xaa\xd6\xab\xf7\xcd\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\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\xcf\xd1\xb3" "\x65\xeb\xf5\x6b\xbb\xbb\x3b\x37\xfa\xe1\x87\x1f\x7e\x8c\xfc\x38\xda\xff" "\x65\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\x8e\x96\x9f\xad\xff\xee\xdb\xe9\x78\xb0\xaf\xb7\xbd\x6b\xa0\xa3\xbf" "\x10\x85\x10\xd5\xa9\x29\x8f\x23\xb9\x97\xc9\x95\x4a\x6d\x0d\xec\xe3\xff" "\xae\x9a\x73\xce\xec\xfd\x9b\x6f\x4e\xe2\x4a\xef\x62\x03\xeb\x00\x00\x00" "\x00\xb5\xd6\xbc\xb5\x79\x7f\x3a\x4e\xe6\xf0\x64\xf6\x8f\x42\x21\x14\x43" "\x73\x68\x0e\xd3\xe2\xb8\xd6\xd0\xfc\xdf\x7a\x24\x76\x0b\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1c\x4d\x73\x43\x14\xca\x1f\xd3" "\x29\x2b\x8f\xf6\xae\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\x80\x4f\xc2\x81\x17\x57\xdd\x97\x8e\x07\xfb\x7a\xdb" "\xbb\x06\x3a\xfa\x4f\x88\x42\x88\xea\xd4\x94\xc7\x91\xdc\xcb\xe4\x4a\xa5" "\xb6\x06\xf6\x71\xe5\xde\x6f\x7d\xf9\xc6\x5d\xcf\x9e\x91\xc4\x95\xde\xf9" "\x6c\x03\x0b\x01\x00\x00\x00\x35\x9a\xdf\x7c\xf1\x2b\xe9\x38\x99\xc3\x93" "\xd1\x3b\x0a\x85\x90\xcf\xce\x0a\xf9\x30\x2b\xbe\xd2\x3d\x76\x81\x28\x93" "\x24\x8e\xfb\x5d\x60\xb4\xee\x6b\x63\xca\x32\x93\xae\xdb\x51\xb5\xe3\xe1" "\x9d\x15\xe2\xef\x10\x85\x91\x7d\x86\xa1\xcf\x0e\xa3\x75\x77\x7d\x64\x5d" "\x31\xbe\xda\xd4\x3a\xb9\xf7\x04\x00\x00\x00\xc7\xb2\x69\x3b\x2e\xfe\x7a" "\x3a\x4e\xe6\xff\xe6\x38\x8e\x42\x6b\xc8\x67\xa7\xa5\xe6\xea\x1b\xc7\xd4" "\xb7\x4c\x7a\x8e\xbf\x7b\x4c\xdd\x09\x93\xae\xfb\xc9\x98\xba\xd6\x09\xea" "\xfe\x05\xaf\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x68\xd0\x9d\x2b" "\x9f\x3b\x25\x1d\x0f\xf6\xf5\xb6\x77\x0d\x74\xf4\x47\x51\x08\x51\x9d\x9a" "\xf2\x38\x92\x7b\x99\x5c\xa9\xd4\xd6\xc0\x3e\x4a\x9d\xf7\x3d\xfd\xf0\xe5" "\x7d\x33\x92\xb8\xd2\xbb\xd8\xc0\x3a\x00\x00\x00\x40\xad\x4b\xdf\x28\x7c" "\x27\x1d\x27\x73\x78\x32\xfb\x47\xa1\x10\x8a\x61\x76\x38\x31\xcc\x1e\x9a" "\xfb\x43\xeb\xd8\xfa\x24\xef\xb8\xd2\xef\x5e\x5e\xb1\xfb\xa5\x2b\x42\x58" "\x32\xfd\xf9\x39\xd9\xba\xfd\x7e\xb0\xe7\xb2\xb7\xc3\xa1\x4f\xbf\xf6\xde" "\xf0\x61\x28\x0c\xa1\x69\x6c\x52\x53\x08\x53\xe2\x7e\x51\x9d\x7e\x57\xff" "\xfe\x91\x55\xcf\x7c\xb8\xfd\x81\x10\x96\x4c\xcb\xcc\xaa\xdf\x6f\xb4\xd5" "\xe8\xa1\x4a\x54\x2a\x9f\xbc\x6d\xc1\xc3\x97\x4f\xdf\xbb\xa2\xee\x32\x00" "\x00\x00\x70\x4c\x2b\x3c\x78\xe0\xc7\xe9\x38\x99\xff\x93\x89\x3a\x0a\xad" "\x21\x9f\x5d\x5f\x77\xfe\x4f\xf2\x3e\xd6\xfc\xdf\xde\x33\x73\xdb\xd4\xf8" "\x18\x7f\x01\xa8\xaa\x68\x6a\x8d\xfb\x35\xd5\xe9\xd7\xfb\xee\x03\x6d\x07" "\xd7\x7c\xe9\x60\x65\xfe\x7f\x7e\x4e\x61\xe4\xff\x15\x38\x7d\xfe\xd8\xfc" "\x74\xab\xf4\xb1\xea\x9b\x43\x54\x2a\xcf\x7d\xe2\xb4\xd5\x87\x0f\xdc\x74" "\xc9\xf0\x85\xa4\x7f\xa6\x4e\xff\x35\xcd\xf3\x4e\xda\xf9\xd6\xcc\x79\x49" "\xff\x42\x7c\xfd\x9a\x30\xd9\xfe\xa1\xaa\x7f\x4f\xc7\xa1\xf9\x8b\x5a\x8e" "\xbf\x60\x6c\xff\x10\x42\xdb\x78\xfd\x7f\x74\xe1\xe3\xef\xaf\xba\xf7\xdd" "\x2b\x86\xfb\x67\x43\xf8\x5c\x53\xed\xcb\x0e\x21\x2c\xfe\xe3\xe0\x67\xa7" "\x86\x0d\xdf\x2f\x74\x27\xc7\xe1\x2b\xb5\xfd\x57\xde\xbf\x7c\xe7\xd6\xdc" "\xeb\x53\xc6\xf6\x8f\xea\xf4\x5f\xf8\xec\x93\xfb\x1f\xbb\x75\xd5\x9d\xd5" "\xcf\x7f\x6a\x76\xbc\xfe\xb5\xc7\x2a\x95\xae\xd9\x72\xef\xbe\xdb\x17\xde" "\xb6\xa2\xf3\xdc\x54\xff\xa6\x3a\xfd\x6f\x6e\x7b\xe5\x9d\x6f\xff\xf4\x17" "\x0f\x55\xfa\xef\x9b\xdb\x32\xd2\x7f\xe1\x47\x3c\xff\x84\xfd\xf7\xcc\xdf" "\xb1\x6f\xd7\xf6\x7b\xd6\x8c\x7d\xff\xa5\xda\xfe\xb7\x85\xab\xcf\xda\xf8" "\xe4\x96\x75\x57\xde\x55\xfd\xfc\x2d\x55\x0b\xa7\xdf\x7c\xfa\x58\xfb\xfe" "\x5f\x9d\x15\x5d\xb4\xb9\xe7\xe5\x8d\xd5\xb7\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x6d\x1d\x8f\x7d\x70\x28\x1d\x0f\xf6\xf5\xb6\x77" "\x0d\x74\xf4\x37\x45\x21\x44\x75\x6a\xca\xe3\x48\xee\x65\x72\xa5\x52\x5b" "\x03\xfb\xf8\x75\x66\xcf\x07\x0f\xed\x2f\x1e\x9f\xc4\x95\xde\xc5\x06\xd6" "\x01\x00\x00\x00\x6a\x5d\xb2\xe2\xd5\xeb\xd2\x71\x32\x87\x27\xb3\x7f\x14" "\x0a\xa1\x18\x72\x21\x17\x5a\x86\xe6\xfe\x93\xb7\x2d\x78\xf8\xf2\xe9\x7b" "\x57\x84\xd6\xf8\x7e\x7c\xce\x76\x6f\xe8\xd9\x74\xe6\xb5\x1b\x36\xaf\xbf" "\xe6\x48\x3f\x02\x00\x00\x00\x30\x81\x5d\xe7\xbd\xbf\x22\x1d\x27\xf3\x7f" "\x36\x8e\xa3\xd0\x1a\xf2\xd9\x05\xa1\x39\x9e\xff\x57\xde\xbf\x7c\xe7\xd6" "\xdc\xeb\x53\x92\xf9\x3f\x84\x30\xf4\xe7\xfe\xec\xb5\xeb\xba\x3b\x97\x84" "\x91\xef\x04\x3d\x1d\x87\xe6\x2f\x6a\x39\xfe\x82\x24\x2f\x13\x9f\x0b\x95" "\xbc\x45\x57\x6f\xe8\x8e\x3f\x13\x24\xeb\x3e\xf5\xe8\xa7\x96\x9e\x7b\xd9" "\xa5\x23\xf9\x4d\xe9\xfc\xb3\x47\xf3\xe6\x3e\x71\xda\xea\xc3\x07\x6e\xba" "\x64\xdc\xbc\x65\xa3\x79\xaf\xce\x8a\x2e\xda\xdc\xf3\xf2\xc6\xd4\x3e\x4b" "\x23\x79\x4b\x47\xf3\x7a\xf7\xdd\xbe\xf0\xb6\x15\x9d\xe7\x26\xcf\x11\xc5" "\xe7\x42\xfc\x3c\x49\xde\x9e\xf9\x3b\xf6\xed\xda\x7e\xcf\x9a\x24\xaf\x29" "\x3e\xb7\xc4\xeb\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\x21\x9c\xf4" "\xde\xdf\xbe\x9a\x8e\x07\xfb\x7a\xdb\xbb\x06\x3a\xfa\x43\x26\x84\xa8\x4e" "\x4d\x79\x1c\xc9\xbd\x4c\xae\x54\x6a\x6b\x60\x1f\x1f\x9c\xff\xfc\xe0\xe1" "\xd6\x2f\x3c\x98\xc4\x95\xde\xf9\x6c\x03\x0b\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfc\x83\x1d" "\x38\x10\x00\x00\x00\x00\x00\xf2\x7f\x6d\x84\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\x2a\xec\xd5\x5f\x88\x54\x55\x1c\x07\xf0\x73\x66\xc6\x76\x74\xcc" "\x66\x45\x70\xb7\x6c\x51\xf2\x45\x21\x10\x96\x24\x1f\xc2\x7d\xe9\x0f\xb1" "\x95\x18\x45\x09\xd2\x16\x6d\x2f\x15\x09\x51\x46\x3e\xa4\x2e\x2d\x51\x3d" "\x08\x05\x86\xbe\x88\x46\xcf\xc5\x3e\x48\xe5\xc3\x26\x69\x51\x10\x59\xf4" "\x10\x3d\x15\xd4\x53\xc5\x3e\xec\x4a\xac\x51\x31\xb3\xf7\xcc\xce\x5c\xbd" "\xec\x76\x41\x89\xf8\x7c\x60\x38\xf3\x3b\x77\xee\xf7\xfe\xee\x99\x33\x77" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\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\x4f\x7b\xf4\xc7\xbb\x6b\xdd" "\x75\x5f\x6d\xa0\x3d\x9e\x7f\xf5\xf9\x8b\xf7\xdf\x78\xe7\x17\x87\xc7\xe7" "\x5e\xb9\xe7\xa3\x67\x0f\xad\xff\x78\xdd\xc5\xe6\xc4\xe8\x7d\xaf\xef\xb8" "\xeb\x9b\xb1\xcf\xfb\x47\x86\x36\x8f\x6f\xff\x60\xea\x81\xc9\x89\xb3\x77" "\xfc\x79\xf6\xe8\xb1\xd1\x25\x2f\xf4\xd2\xc2\xb0\x35\x2b\xeb\x21\xc4\xdf" "\x62\x08\x43\x3f\x4f\x1d\x9d\x3c\xf7\xe5\xfa\xd6\x5c\x6c\x5d\x3f\x36\x0f" "\x86\xfe\xfe\xb8\xf6\x93\xfe\x98\x4b\xd8\x36\x1f\x42\x78\xb2\xd3\x67\xef" "\xc1\xa9\xb9\xe1\xa7\x5a\xe3\xa1\x37\xfa\x7a\xe6\x6f\xc8\x85\xe4\xef\x2b" "\x34\xaa\xa9\x9f\x05\xcd\xde\x7e\xf9\x7f\xa9\x67\xfb\xec\xc0\x63\x4f\x9c" "\x9c\x7e\x7a\xe4\xdc\xd4\xc6\x7d\xc3\xbf\xce\xde\xf6\xdc\xc1\xc5\x8f\xc4" "\x7a\xd7\x7e\x0a\x61\xcd\x58\xf7\xf9\x2b\x42\x08\x2b\xb3\x57\x4b\xda\x6d" "\x03\xe9\xe4\x6c\xdc\x15\x42\x58\xd5\x75\xde\xed\x4b\xf4\x75\xcb\x32\xfb" "\xbf\xb5\xa0\xde\x90\x8d\xd7\x65\x63\x63\x89\x9c\x74\x7c\x53\xae\xae\x2d" "\xb3\x8f\x5a\x6e\xec\x5b\xe6\x79\x65\x55\xae\x72\x7e\x5e\x7e\xfd\xf2\x0f" "\xa3\xab\x25\xdd\xe7\x9a\x6c\x3c\x9d\x8d\x5b\xff\x65\x4e\x35\xbd\x62\xa8" "\xc4\x50\xeb\xb4\xff\x4c\x5c\xdc\x23\xa1\xeb\x7b\x8b\x21\xb6\xf7\x76\xbd" "\x53\x57\xda\x75\xe8\xd4\x21\x5f\xc7\x5c\x5d\xc9\xd5\xd5\x15\xb9\xfb\x6a" "\x5f\x37\x5b\xd8\x6a\x8c\xbd\xf3\xe9\x73\xb9\xf9\xf4\x38\xae\x65\xf3\x9b" "\xba\x9f\xd5\x57\xb0\xbb\x60\x7e\x30\x1b\xeb\xd9\x0f\xf5\x8f\x54\x87\xfc" "\x9b\x05\x8d\xcb\xde\x2c\xde\x47\xe8\xea\x6b\xe6\x5a\x6d\x8c\x02\x95\x82" "\xdf\x5e\x9a\xef\xb4\x97\x7d\x19\x8d\x6c\xae\x11\xd7\x5e\x76\xce\xdf\x57" "\x90\x8e\xcd\x7c\xf6\xf8\x9e\xdf\xbf\x7f\xf9\x74\xb3\xa0\x8f\xf8\x7e\xcc" "\xf2\x63\xa9\xfc\x91\xf1\xe3\xd3\xef\x3d\x72\x66\x70\xa0\x28\x7f\xac\x92" "\xe5\x57\x4a\xe5\x9f\xaf\x7e\x35\xff\xee\xec\xc0\xea\xc2\xfc\x23\x29\xbf" "\x5a\x2a\xff\xa1\xbf\x7e\x79\xed\xf0\x83\xfb\xd7\x15\xae\xcf\x4c\x5a\x9f" "\x5a\xa9\xfc\xcd\x6f\xae\x3e\x30\xb7\x7f\x77\xdf\xc6\xa2\xfc\x13\x29\xbf" "\x5e\x2a\x7f\xfb\xde\xa1\x1d\x37\xcf\xbe\xf0\x62\x61\xff\xdb\xd2\xfa\xac" "\x2c\x95\xff\xdd\x5b\x5b\x2e\xed\x3d\xf2\xe1\x99\xc2\xfc\x90\xf2\x57\x95" "\xca\xff\xe1\xf8\xa9\x0d\xd5\xc1\xb7\x2f\x14\xe6\x4f\xa7\xf5\x69\x94\xca" "\x7f\x78\xf8\x9d\x9d\xf7\xde\x34\x71\xac\x70\xfd\xbf\x4e\xf9\xd7\x97\xca" "\xdf\x73\x61\x72\x6c\xdf\xc9\x4f\xb7\x14\xee\xcf\x5d\x69\x7d\x9a\xa5\xf2" "\xe7\x77\x7e\xfb\xd3\xa5\xe6\xe8\xa9\xa2\x67\x67\x3c\x71\xad\xff\x61\xff" "\x61\xbf\x8e\x4d\x00\x06\x81\x30\x8c\x12\x48\x99\x54\x59\x20\xe3\x66\x84" "\x8c\x6b\xe1\x09\x87\xa5\x5a\xc9\x7b\x60\x61\x75\xed\xff\x01\xec\xe5\x89" "\x8d\xf5\xc5\x7f\xb4\x33\x67\xa5\x5e\xf8\xdf\xb3\x6e\xbe\x2b\xde\xbd\xf2" "\x50\xe7\x48\xed\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\x4d\x09\x00\x00\xff\xff\x5c\xa6\x5f" "\xb0", 23976); syz_mount_image(/*fs=*/0x20005d80, /*dir=*/0x20005dc0, /*flags=*/0, /*opts=*/0x20000280, /*chdir=*/1, /*size=*/0x5da8, /*img=*/0x2000bb80); syscall(__NR_ioctl, /*fd=*/-1, /*cmd=*/0x54a1, 0); syscall(__NR_semctl, /*semid=*/0, /*semnum=*/0ul, /*cmd=*/0xdul, /*arg=*/0ul); } 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; }