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