// https://syzkaller.appspot.com/bug?id=c4d14d2ce3f744d1df07c7a77209e7d51672f878 // 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 30 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 00} (length 0xfe) // } // flags: mount_flags = 0x200000 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0xff (1 bytes) // size: len = 0x5e5c (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x5e5c) // } // ] // returns fd_dir memcpy((void*)0x200000000140, "jfs\000", 4); memcpy((void*)0x200000000240, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 254); memcpy( (void*)0x200000005d80, "\x78\x9c\xec\xdd\x4f\x6f\x1c\x67\x1d\x07\xf0\xdf\xfe\xf1\xfa\x4f\x69\x1b" "\x55\xa8\x0a\x11\x07\x37\x85\xd2\x52\x9a\xff\x09\x94\x7f\x4d\x39\x70\x80" "\x03\x48\xa8\x67\x12\xb9\x6e\x15\x48\x01\x25\x01\xd1\x2a\x22\xae\x72\x40" "\x5c\x80\x97\x00\x97\x5e\x38\xf4\x2d\xf0\x02\xfa\x1a\x10\x2f\x80\x48\x36" "\xa7\x1e\x28\x83\xc6\x7e\x9e\x64\x3c\x5e\x67\x1d\x12\xef\xec\xfa\xf9\x7c" "\x24\x67\xe6\x37\xcf\x8e\xf7\x99\x7c\x3d\x9e\x5d\xcf\xcc\x3e\x01\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc4\x0f\xbe\xff\x93\xb3\xbd" "\x88\xb8\xf2\x9b\xb4\xe0\x58\xc4\xe7\x62\x10\xd1\x8f\x58\xae\xeb\xd5\xa8" "\x67\x2e\xe7\xc7\x0f\x23\xe2\x78\x6c\x37\xc7\xf3\x11\x31\x58\x8c\xa8\xd7" "\xdf\xfe\xe7\xd9\x88\x0b\x11\xf1\xc9\x33\x11\x9b\x5b\xb7\xd7\xea\xc5\xe7" "\x0e\xd8\x8f\x8b\x67\x6e\xdd\xf8\xec\x87\xdf\xfb\xc7\xef\xff\x74\xf7\xf8" "\xcf\xde\xfe\xe9\x47\xed\xf6\x1f\x7f\xfe\xfc\xc7\x7f\xb8\x13\x71\xec\x47" "\xaf\x7f\xfc\xd9\x9d\x27\xb3\xed\x00\x00\x00\x50\x8a\xaa\xaa\xaa\x5e\x7a" "\x9b\x7f\x22\xbd\xbf\xef\x77\xdd\x29\x00\x60\x2a\xf2\xf1\xbf\x4a\xf2\x72" "\xb5\x5a\xad\x56\x3f\xd1\xfa\x8f\xfd\xd9\xea\x8f\xba\xd0\xba\xa9\x1a\xef" "\x4e\xb3\x88\x88\x8d\xe6\x3a\xf5\x6b\x06\xa7\xe3\x01\x60\xce\x6c\xc4\xa7" "\x5d\x77\x81\x0e\xc9\xbf\x68\xc3\x88\x78\xaa\xeb\x4e\x00\x33\xad\xd7\x75" "\x07\x38\x14\x9b\x5b\xb7\xd7\x7a\x29\xdf\x5e\xf3\x78\xb0\xba\xd3\x9e\xff" "\x4e\xb9\x2b\xff\x8d\xde\xfd\xfb\x3b\xf6\x9b\x4e\xd2\xbe\xc6\x64\x5a\x3f" "\x5f\x77\x63\x10\xcf\xed\xd3\x9f\xe5\x29\xf5\x61\x96\xe4\xfc\xfb\xed\xfc" "\xaf\xec\xb4\x8f\xd2\xe3\x0e\x3b\xff\x69\xd9\x2f\xff\xd1\xce\xad\x4f\xc5" "\xc9\xf9\x0f\xda\xf9\xb7\xec\xca\xff\xcf\x11\x31\xb7\xf9\xf7\xc7\xe6\x5f" "\xaa\x9c\xff\xf0\x51\xf2\xdf\x18\xcc\xf1\xfe\x2f\x7f\x00\x00\x00\x00\x00" "\x8e\xbe\xfc\xf7\xff\x63\x1d\x9f\xff\x5d\x7c\xfc\x4d\x39\x90\x87\x9d\xff" "\x5d\x9d\x52\x1f\x00\x00\x00\x00\x00\x00\x00\xe0\x49\x7b\xdc\xf1\xff\xee" "\x33\xfe\x1f\x00\x00\x00\xcc\xac\xfa\xbd\x7a\xed\x2f\xcf\x3c\x58\xb6\xdf" "\x67\xb1\xd5\xcb\xdf\xea\x45\x3c\xdd\x7a\x3c\x50\x98\xd5\xc6\x87\x03\x02" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd3\x31\x8c\x58\x49\xd7\xf5\x2f" "\x44\xc4\xd3\x2b\x2b\x55\x55\xd5\x5f\x4d\xed\xfa\x51\x3d\xee\xfa\xf3\xae" "\xf4\xed\x87\x92\x75\xfd\x4b\x1e\x00\x00\x76\x7c\xf2\x4c\xeb\x5e\xfe\x5e" "\xc4\x52\x44\xbc\x95\x3e\xeb\x6f\x61\x65\x65\xa5\xaa\x96\x96\x57\xaa\x95" "\x6a\x79\x31\xbf\x9e\x1d\x2d\x2e\x55\xcb\x8d\xf7\xb5\x79\x5a\x2f\x5b\x1c" "\x1d\xe0\x05\xf1\x70\x54\xd5\xdf\x6c\xa9\xb1\x5e\xd3\xa4\xf7\xcb\x93\xda" "\xdb\xdf\xaf\x7e\xae\x51\x35\x38\x40\xc7\xa6\xa3\xc3\xc0\x01\x20\x22\x76" "\x8e\x46\x9b\x8e\x48\x47\x4c\x55\x3d\x1b\x5d\xbf\xca\x61\x3e\xd8\xff\x8f" "\x1e\xfb\x3f\x07\xd1\xf5\xcf\x29\x00\x00\x00\x70\xf8\xaa\xaa\xaa\x7a\xe9" "\xe3\xbc\x4f\xa4\x73\xfe\xfd\xae\x3b\x05\x00\x4c\x45\x3e\xfe\xb7\xcf\x0b" "\xa8\xd5\x6a\xb5\x5a\xad\x3e\x7a\x75\x53\x35\xde\x9d\x66\x11\x11\x1b\xcd" "\x75\xea\xd7\x0c\x86\xe3\x07\x80\x39\xb3\x11\x9f\x76\xdd\x05\x3a\x24\xff" "\xa2\x0d\x23\xe2\x78\xd7\x9d\x00\x66\x5a\xaf\xeb\x0e\x70\x28\x36\xb7\x6e" "\xaf\xf5\x52\xbe\xbd\xe6\xf1\x60\x75\xa7\x3d\x5f\x0b\xb2\x2b\xff\x8d\xde" "\xf6\x7a\x79\xfd\x71\xd3\x49\xda\xd7\x98\x4c\xeb\xe7\xeb\x6e\x0c\xe2\xb9" "\x7d\xfa\xf3\xfc\x94\xfa\x30\x4b\x72\xfe\xfd\x76\xfe\x57\x76\xda\xf3\x10" "\xff\x87\x9d\xff\xb4\xec\x97\x7f\xbd\x9d\xc7\x3a\xe8\x4f\xd7\x72\xfe\x83" "\x76\xfe\x2d\x47\x27\xff\xfe\xd8\xfc\x4b\x95\xf3\x1f\x3e\x52\xfe\x03\xf9" "\x03\x00\x00\x00\x00\xc0\x0c\xcb\x7f\xff\x3f\xe6\xfc\x6f\xde\x64\x00\x00" "\x00\x00\x00\x00\x00\x98\x3b\x9b\x5b\xb7\xd7\xf2\x7d\xaf\xf9\xfc\xff\x17" "\xc7\x3c\xae\xd7\x9c\x73\xff\xe7\x91\x91\xf3\xef\x1d\x38\x7f\xf7\xff\x1e" "\x25\x39\xff\x7e\x3b\xff\xd6\x05\x39\x83\xc6\xfc\xbd\x37\x1f\xe4\xff\xef" "\xad\xdb\x6b\x1f\xdd\xfa\xd7\x17\xf2\x74\xe6\xf3\x5f\x18\x8c\xea\xe7\x5e" "\xe8\xf5\x07\xc3\x74\xcd\x4f\xb5\xf0\x4e\x5c\x8b\xeb\xb1\x1e\x67\xf6\x3c" "\x7e\xb8\xab\xfd\xec\x9e\xf6\x85\x5d\xed\xe7\x26\xb4\x9f\xdf\xd3\x3e\xaa" "\xdb\x97\x73\xfb\xa9\x58\x8b\x5f\xc6\xf5\x78\xfb\x7e\xfb\xe2\x84\x0b\xa3" "\x96\x26\xb4\x57\x13\xda\x73\xfe\x03\xfb\x7f\x91\x72\xfe\xc3\xc6\x57\x9d" "\xff\x4a\x6a\xef\xb5\xa6\xb5\x7b\x1f\xf6\xf7\xec\xf7\xcd\xe9\xb8\xe7\xb9" "\xfc\xb7\xff\xbc\xb4\x77\xef\x9a\xbe\xbb\x31\xb8\xbf\x6d\x4d\xf5\xf6\x9d" "\xec\xa0\x3f\xdb\xff\x27\x4f\x8d\xe2\xd7\x37\xd7\x6f\x9c\xfa\xed\xd5\x5b" "\xb7\x6e\x9c\x8d\x34\xd9\xb5\xf4\x5c\xa4\xc9\x13\x96\xf3\x5f\x48\x5f\x39" "\xff\x97\x5f\xdc\x69\xcf\xbf\xf7\x9b\xfb\xeb\xbd\x0f\x47\x8f\x9c\xff\xac" "\xb8\x1b\xc3\x7d\xf3\x7f\xb1\x31\x5f\x6f\xef\x2b\x53\xee\x5b\x17\x72\xfe" "\xa3\xf4\x95\xf3\xcf\x47\xa0\xf1\xfb\xff\x3c\xe7\xbf\xff\xfe\xff\x6a\x07" "\xfd\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x87\xa9\xaa\x6a" "\xfb\x16\xd1\xcb\x11\x71\x29\xdd\xff\xd3\xd5\xbd\x99\x00\xc0\x74\xe5\xe3" "\x7f\x95\xe4\xe5\x6a\xb5\x5a\xad\x56\xab\x8f\x5e\xdd\x54\x8d\xf7\x46\xb3" "\x88\x88\xbf\x37\xd7\xa9\x5f\x33\xfc\x6e\xdc\x37\x03\x00\x66\xd9\x7f\x23" "\xe2\x9f\x5d\x77\x82\xce\xc8\xbf\x60\xf9\xf3\xfe\xea\xe9\x97\xba\xee\x0c" "\x30\x55\x37\xdf\xff\xe0\xe7\x57\xaf\x5f\x5f\xbf\x71\xb3\xeb\x9e\x00\x00" "\x00\x00\x00\x00\x00\x00\xff\xaf\x3c\xfe\xe7\x6a\x63\xfc\xe7\xed\xeb\x80" "\x5a\xe3\x46\xef\x1a\xff\xf5\xcd\x58\x9d\xdb\xf1\x3f\xfb\xa3\xc1\xf6\x58" "\xe7\x69\x83\x5e\x88\x87\x8f\xff\x7d\x32\x1e\x3e\xfe\xf7\x70\xc2\xf3\x2d" "\x4c\x68\x1f\x4d\x68\x5f\x9c\xd0\xbe\x34\xa1\x7d\xec\x8d\x1e\x0d\x39\xff" "\x17\x52\xc6\x39\xff\x13\x69\xc3\x4a\x1a\xff\xf5\xe5\x0e\xfa\xd3\xb5\x9c" "\xff\xc9\x34\xd6\x73\xce\xff\x2b\xad\xc7\x35\xf3\xaf\xfe\x3a\xcf\xf9\xf7" "\x77\xe5\x7f\xfa\xd6\x7b\xbf\x3a\x7d\xf3\xfd\x0f\x5e\xbb\xf6\xde\xd5\x77" "\xd7\xdf\x5d\xff\xc5\xd9\x33\x97\x2e\x9c\xbf\x78\xe1\xfc\xc5\x8b\xa7\xdf" "\xb9\x76\x7d\xfd\xcc\xce\xbf\x1d\xf6\xf8\x70\xe5\xfc\xf3\xd8\xd7\xae\x03" "\x2d\x4b\xce\x3f\x67\x2e\xff\xb2\xe4\xfc\xbf\x9c\x6a\xf9\x97\x25\xe7\xff" "\x52\xaa\xe5\x5f\x96\x9c\x7f\x7e\xbd\x27\xff\xb2\xe4\xfc\xf3\x7b\x1f\xf9" "\x97\x25\xe7\xff\x4a\xaa\xe5\x5f\x96\x9c\xff\x57\x53\x2d\xff\xb2\xe4\xfc" "\x5f\x4d\xb5\xfc\xcb\x92\xf3\xff\x5a\xaa\xe5\x5f\x96\x9c\xff\x6b\xa9\x96" "\x7f\x59\x72\xfe\xa7\x52\x2d\xff\xb2\xe4\xfc\x4f\xa7\x5a\xfe\x65\xc9\xf9" "\xe7\x33\x5c\xf2\x2f\x4b\xce\x3f\x5f\xd9\x20\xff\xb2\xe4\xfc\xcf\xa5\x5a" "\xfe\x65\xc9\xf9\x9f\x4f\xb5\xfc\xcb\x92\xf3\xbf\x90\x6a\xf9\x97\x25\xe7" "\x7f\x31\xd5\xf2\x2f\x4b\xce\xff\x52\xaa\xe5\x5f\x96\x9c\xff\xd7\x53\x2d" "\xff\xb2\xe4\xfc\xbf\x91\x6a\xf9\x97\x25\xe7\xff\x7a\xaa\xe5\x5f\x96\x9c" "\xff\x37\x53\x2d\xff\xb2\xe4\xfc\xbf\x95\x6a\xf9\x97\x25\xe7\xff\xed\x54" "\xcb\xbf\x2c\x39\xff\xef\xa4\x5a\xfe\x65\xc9\xf9\x7f\x37\xd5\xf2\x2f\x4b" "\xce\xff\x8d\x54\xcb\xbf\x2c\x0f\x3e\xff\xdf\x8c\x19\x33\x66\xf2\x4c\xd7" "\xbf\x99\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xb6\x69\x5c\x4e\xdc" "\xf5\x36\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xf0\x3f\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\x03\x07\x02\x00" "\x00\x00\x00\x40\xfe\xaf\x8d\x50\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x85" "\xbd\x7b\x8b\x91\xb3\xbc\xef\x07\xfe\xee\xc9\x5e\x1b\x02\xfe\x87\x33\x71" "\xc0\x36\x27\x03\x0b\xbb\xeb\x13\x38\xc4\x60\x92\x90\x3f\x25\x3d\x50\x12" "\xd2\xa6\x25\x35\x8e\xbd\x36\x4e\x7c\xaa\x77\xcd\x49\xa8\x6c\x0a\x6d\x89" "\x82\x54\xa4\xf6\x82\x5e\x34\x25\x51\x1a\x45\x6a\x2b\x50\x15\xa9\xa9\x44" "\x23\xa4\x46\x6a\xef\x9a\xab\x46\xdc\x44\xad\xc4\x85\x2f\xa0\x72\x50\x52" "\x35\x55\x60\xab\x77\xe6\x79\x1e\xcf\xcc\xce\xce\xac\xb1\xc7\x9e\x79\x9f" "\xcf\x27\xc2\x3f\x7b\xe6\x7d\x67\x9e\x79\xe7\x9d\xd9\xfd\x6e\xf4\x9d\x05" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x1a\xad\xff\xe4\xcc\x9f\x0c\x15\x45\x51\xfe\x57\xfb\x63\x4d\x51\x5c\x58" "\xfe\x7d\x55\xb1\xb3\xfc\xe7\xfc\xb6\xf3\xbd\x42\x00\x00\x00\xe0\x4c\xbd" "\x57\xfb\xf3\x6f\x2f\x4e\x17\xec\x5c\xc6\x4e\x0d\xdb\xfc\xcb\x35\xff\xf6" "\xbd\x85\x85\x85\x85\xe2\x4b\xef\x9e\x78\xff\xcf\x16\x16\xd2\x15\xeb\x8a" "\x62\x64\x65\x51\xd4\xae\x8b\xfe\xf5\x17\x3f\x5f\x68\xdc\x26\x78\xae\x18" "\x1f\x1a\x6e\xf8\xf7\x70\x97\xbb\x1f\xe9\x72\xfd\x68\x97\xeb\xc7\xba\x5c" "\xbf\xa2\xcb\xf5\x2b\xbb\x5c\x3f\xde\xe5\xfa\x45\x07\x60\x91\x55\xf5\x9f" "\xc7\xd4\x6e\xec\xfa\xda\x5f\xd7\xd4\x0f\x69\x71\x69\x31\x56\xbb\xee\xfa" "\x36\x7b\x3d\x37\xb4\x72\x78\x38\xfe\x2c\xa7\x66\xa8\xb6\xcf\xc2\xd8\xbe" "\xe2\x40\x71\xb0\x98\x29\xa6\x16\xed\x33\x54\xfb\x5f\x51\xbc\xbe\xbe\xbc" "\xaf\xfb\x8b\x78\x5f\xc3\x0d\xf7\xb5\xb6\x28\x8a\x93\x3f\x7d\x66\x4f\x5c" "\xc3\x50\x38\xc6\xd7\x17\x4d\x77\x56\xd3\xf8\xdc\xbd\x73\x6f\xb1\xee\xdd" "\x9f\x3e\xb3\xe7\x3b\x73\x6f\x5f\xd5\x6e\x76\x3d\x0c\x8b\x56\x5a\x14\x1b" "\x37\x94\xeb\x7c\xbe\x28\x4e\xfd\xb8\xaa\x18\x2a\x56\xa6\x63\x12\xd7\x39" "\xdc\xb0\xce\xb5\x6d\xd6\x39\xd2\xb4\xce\xa1\xda\x7e\xe5\xdf\x5b\xd7\x79" "\x72\x99\xeb\x8c\x8f\x7b\x3c\xac\xf3\x47\x1d\xd6\xb9\x36\x5c\xf6\xe4\x75" "\x45\x51\xcc\x17\x4b\x6e\xd3\xea\xb9\x62\xb8\x58\xdd\x72\xaf\xe9\x78\x8f" "\xd7\xcf\x88\xf2\x36\xca\xa7\xf2\xc3\xc5\xe8\x69\x9d\x27\xeb\x97\x71\x9e" "\x94\xfb\xbc\x75\x5d\xf3\x79\xd2\x7a\x4e\xc6\xe3\xbf\x3e\x1c\x93\xd1\x25" "\xd6\xd0\xf8\x74\xbc\xf3\xd5\x15\x8b\x8e\xfb\x07\x3d\x4f\xca\x47\xdd\x0f" "\xe7\x6a\x79\xdb\x0f\x96\x77\x3a\x3e\xde\xf8\xa3\xd5\xa6\x73\xb5\xdc\xe6" "\x99\x1b\x96\x3e\x07\xda\x3e\x77\x6d\xce\x81\x74\x2e\x37\x9c\x03\x1b\xba" "\x9d\x03\xc3\x2b\x46\x6a\xe7\xc0\xf0\xa9\x35\x6f\x68\x3a\x07\xa6\x17\xed" "\x33\x5c\x0c\xd5\xee\xeb\xc4\x0d\x9d\xcf\x81\xc9\xb9\x43\x47\x27\x67\x9f" "\x7a\xfa\xb6\x03\x87\x76\xef\x9f\xd9\x3f\x73\x78\x7a\x6a\xdb\x96\xcd\x5b" "\xb7\x6c\xde\xba\x75\x72\xdf\x81\x83\x33\x53\xf5\x3f\x4f\xef\x90\x0e\x90" "\xd5\xc5\x70\x3a\x07\x37\x84\xf7\x9a\x78\x0e\xde\xd4\xb2\x6d\xe3\x29\xb9" "\xf0\xcd\xb3\xf7\x3a\x18\xef\x93\xd7\x41\xf9\xd8\x3f\x77\x63\xb9\xa0\x0b" "\x87\x8b\x25\xce\xf1\x72\x9b\xe7\x37\x9e\xf9\xeb\x20\x7d\xdd\x6f\x78\x1d" "\x8c\x36\xbc\x0e\xda\xbe\xa7\xb6\x79\x1d\x8c\x2e\xe3\x75\x50\x6e\x73\x72" "\xe3\xf2\xbe\x66\x8e\x36\xfc\xd7\x6e\x0d\xbd\x7a\x2f\x5c\xd3\x70\x0e\x9c" "\xcf\xaf\x87\xe5\x7d\x3e\x72\xf3\xd2\xef\x85\x6b\xc3\xba\x5e\xb8\xe5\x74" "\xbf\x1e\x8e\x2c\x3a\x07\xe2\xc3\x1a\x0a\xaf\xbd\xf2\x92\xf4\xfd\xde\xf8" "\x9d\xe1\xb8\x2c\x3e\x2f\xae\x2e\xaf\xb8\x60\x45\x71\x7c\x76\xe6\xd8\xed" "\x4f\xee\x9e\x9b\x3b\x36\x5d\x84\x71\x4e\x5c\xd2\xf0\x5c\xb5\x9e\x2f\xab" "\x1b\x1e\x53\xb1\xe8\x7c\x19\x3e\xed\xf3\x65\xe7\xdf\xfc\xf2\xc6\xab\xdb" "\x5c\xbe\x26\x1c\xab\xf1\x5b\x3b\x3f\x57\xe5\x36\x5b\x26\x3a\x3f\x57\xb5" "\x77\xf7\xf6\xc7\xb3\xe9\xd2\x4d\x45\x18\x67\xd9\xb9\x3e\x9e\xed\xbe\x9a" "\x95\xc7\x33\x65\x89\x0e\xc7\xb3\xdc\xe6\xf9\xdb\xce\xfc\x7b\xc1\x94\x4b" "\x1a\xde\xff\xc6\xba\xbd\xff\x8d\x8c\x8d\xd6\xdf\xff\x46\xd2\xd1\x18\x6b" "\x7a\xff\x5b\xfc\xd4\x8c\xd4\x56\x56\x14\x27\x6f\x5b\xde\xfb\xdf\x58\xf8" "\xef\x5c\xbf\xff\x5d\xda\x27\xef\x7f\xe5\xb1\x7a\xe4\xf6\xce\xe7\x40\xb9" "\xcd\x0b\x93\xa7\x7b\x0e\x8c\x76\x7c\xff\xbb\x2e\xcc\xa1\xb0\x9e\x9b\x43" "\x62\x18\x6f\xc8\xfd\xef\xd7\xae\x9f\xaf\x9f\xa6\x0d\xcf\x65\xd7\xf3\x66" "\x74\x74\x2c\x9c\x37\xa3\xf1\x1e\x9b\xcf\x9b\xcd\x8b\xf6\x29\x6f\xad\xbc" "\xef\x8d\x53\x1f\xec\xbc\xd9\x78\x5d\xf3\x73\xd5\xf4\x7d\x4b\x05\xcf\x9b" "\xf2\x58\xfd\xf9\x54\xe7\xf3\xa6\xdc\xe6\x8d\xe9\x33\x7f\xef\x58\x15\xff" "\xda\xf0\xde\xb1\xa2\xdb\x39\x30\x36\xb2\xa2\x5c\xef\x58\x3a\x09\xea\xef" "\x77\x0b\xab\xe2\x39\x70\x7b\xb1\xa7\x38\x52\x1c\x2c\xf6\xa6\x7d\xca\x67" "\xb9\xbc\xaf\x89\x4d\xcb\x3b\x07\x56\x84\xff\xce\xf5\x7b\xc7\x95\x7d\x72" "\x0e\x94\xc7\xea\xe5\x4d\x9d\xcf\x81\x72\x9b\x1f\x6e\x3e\xbb\xdf\x3b\x6d" "\x0c\x97\xa4\x6d\x1a\xbe\x77\x6a\xfd\xf9\xc2\x52\x99\xff\xea\xd1\x53\xb7" "\xd7\x7a\xd8\xce\x76\xe6\x2f\xd7\xf9\xa9\x2d\x9d\x7f\x36\x54\x6e\xf3\xf6" "\x96\xd3\xcd\x19\x9d\x8f\xd3\xad\xe1\x92\x0b\xda\x1c\xa7\xd6\xd7\xcf\x52" "\xe7\xf4\xde\xe2\xdc\x1c\xa7\x2b\xc3\x3a\x0f\x6e\xed\xfc\xb3\xa9\x72\x9b" "\x4b\xb7\x2d\xf3\x7c\xda\x59\x14\xc5\x9b\xd3\x6f\xd6\x7e\xde\x15\x7e\xbe" "\xfb\xf7\xc7\xff\xfd\x7b\x4d\x3f\xf7\x6d\xf7\x33\xe5\x37\xa7\xdf\x7c\x60" "\xf2\xa1\x1f\x9f\xce\xfa\x01\x00\xf8\xe0\xde\xaf\xfd\x39\xbf\xa2\xfe\xbd" "\x66\xc3\xff\x63\xbd\x9c\xff\xff\x1f\x00\x00\x00\x18\x08\x31\xf7\x0f\x87" "\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x8f\x84\x99\xc8\xff\x00\x00\x00" "\x50\x19\x31\xf7\x8f\x86\x99\x64\x92\xff\x1f\xbb\x73\xfb\xab\xef\x3d\x5b" "\xa4\x4f\x03\x5c\x08\xe2\xf5\xf1\x30\x3c\x78\x77\x7d\xbb\xd8\xf1\x9e\x0f" "\xff\x5e\xb7\x70\x4a\x79\xf9\x27\xbe\x3d\xf6\xea\xd7\x9e\x5d\xde\x7d\x0f" "\x17\x45\xf1\xcb\x07\x3e\xd2\x76\xfb\xc7\xee\x8e\xeb\xaa\x3b\x1a\xd7\xf9" "\xb1\xe6\xcb\x17\xb9\xf2\xda\x65\xdd\xff\xa3\x0f\x9f\xda\xae\xf1\xf3\x13" "\x4e\x6e\xaf\xdf\x7e\x7c\x3c\xcb\x3d\x0d\x62\x57\xf9\xf5\xc9\x4d\xb5\xdb" "\x5d\xf7\xd4\x74\x6d\xbe\xf1\x40\x51\x9b\x0f\xcd\xbf\xf0\x5c\xfd\xf6\xeb" "\xff\x8e\xdb\x9f\xd8\x5c\xdf\xfe\x2f\xc3\x87\x96\xec\xdc\x37\xd4\xb4\xff" "\xc6\xb0\x9e\xeb\xc3\x5c\x17\x3e\x53\xe6\xc1\x9d\xa7\x8e\x43\x39\xe3\x7e" "\xaf\xae\xbd\xe6\x9f\x2f\xf9\xfc\xa9\xfb\x8b\xfb\x0d\x6d\xb8\xa8\xf6\x30" "\x5f\xfe\x83\xfa\xed\xc6\xcf\x88\x7a\xe9\x92\xfa\xf6\xf1\x71\x2f\xb5\xfe" "\x7f\xfa\xfa\x77\x5f\x2d\xb7\x7f\xf2\x86\xf6\xeb\x7f\x76\xb8\xfd\xfa\x4f" "\x84\xdb\x7d\x2b\xcc\x5f\xec\xa8\x6f\xdf\x78\xcc\xbf\xd6\xb0\xfe\x3f\x0a" "\xeb\x8f\xf7\x17\xf7\xbb\xfd\x5b\x3f\x68\xbb\xfe\xd7\xae\xa8\x6f\xff\x5a" "\x38\x2f\x5e\x09\xb3\x75\xfd\xf7\xfe\xe9\x47\xdf\x6b\xf7\x7c\xc5\xfb\xd9" "\x79\x57\x7d\xbf\x78\xff\x53\xff\xbd\xa5\xb6\x5f\xbc\xbd\x78\xfb\xad\xeb" "\x1f\x7f\x76\xba\xe9\x78\xb4\xde\xfe\x1b\xef\xd6\x6f\x67\xc7\xe3\x3f\x1b" "\x69\xdc\x3e\x5e\x1e\xef\x27\x7a\xf4\xae\xe6\xf3\x7b\x28\x3c\xbf\x4d\x3d" "\xf2\xa2\x28\xbe\xfb\xc7\x45\xd3\x71\x2e\x3e\x5e\xdf\xef\x1f\x5b\xd6\x1f" "\x6f\xef\xe8\x5d\xed\xd7\x7f\x6b\xcb\x3a\x8f\x0e\x5d\x5b\xdb\xff\xd4\xe3" "\x59\xd3\xf4\xb8\xbe\xf1\xd7\x9b\xda\x3e\xde\xb8\x9e\x9d\x7f\xb7\xa6\xe9" "\xf1\xbc\x74\x5f\x38\x7e\xef\x4e\xfe\xb0\xbc\xdd\x13\x0f\x85\xf3\x31\x5c" "\xff\xbf\x3f\xaa\xdf\x5e\xeb\x67\x99\xbe\x76\x5f\xf3\xfb\x4d\xdc\xfe\x95" "\x35\xf5\xd7\x6d\xbc\xbd\xc9\x96\xf5\xbf\xd4\xb2\xfe\xf9\x6b\xcb\x63\xd7" "\x7d\xfd\xf7\xbf\x5b\x5f\xff\x6b\xf7\xac\x6c\x5a\xff\xce\x4f\x87\xf3\xe9" "\xfe\xfa\xec\xb6\xfe\xfd\x7f\x75\x71\xd3\xfe\xdf\xfc\x4e\xfd\xf9\x38\xf6" "\xc4\xc4\xe1\x23\xb3\xc7\x0f\xec\x6d\x38\xaa\x8d\xaf\xe3\x95\xe3\xab\x56" "\x5f\x70\xe1\x87\x2e\xba\x38\xbc\x97\xb6\xfe\x7b\xd7\x91\xb9\xc7\x66\x8e" "\xad\x9b\x5a\x37\x55\x14\xeb\x06\xf0\x23\x03\x7b\xbd\xfe\x6f\x85\xf9\x5f" "\xf5\x31\x7f\xf6\xef\xa1\xee\xc7\x3f\xab\x9f\x77\x2f\x7e\xa6\xfe\x75\xeb" "\xa6\x9f\xd7\xff\xfd\x52\xb8\xfc\xd1\xf0\x7c\xc6\xaf\x8f\xdf\xf8\x8b\xb1" "\xa6\xf3\xb5\xf5\x79\x9f\xbf\xa7\x3e\xcf\x74\xfd\xb7\x84\x75\x2c\xd7\x15" "\x5f\xff\xcf\x6b\x97\xb5\xe1\x89\x2f\xbe\x7e\xfc\x1f\xfe\xf0\xed\xd6\xef" "\x0b\xe2\xe3\x39\x7a\xd9\x78\xed\xf1\xbd\xbc\xfe\xf2\xda\x75\x43\x6f\xd4" "\xaf\x6f\x7d\xbf\xea\xe6\x3f\x2e\x6b\x7e\x5d\xff\x64\x74\xaa\x36\xbf\x1f" "\x8e\xeb\x42\xf8\x64\xe6\x0d\x97\xd7\xef\xaf\xf5\xf6\xe3\x67\x93\xbc\xf8" "\xd9\xfa\xeb\x37\x7e\x27\x17\xf7\x2f\x5a\x3e\x4f\x64\xcd\x48\xf3\xe3\x38" "\xd3\xf5\xff\x24\x7c\x1f\xf3\x83\x2b\x9b\xdf\xff\xe2\xf9\xf1\xfd\x67\x5b" "\x3e\xcd\x79\x4d\x31\x54\x2e\x61\x3e\xbc\x3f\x14\xf3\xf5\xeb\xe3\x56\xf1" "\x78\xbf\x78\xf2\xf2\xb6\xf7\x17\x3f\x87\xa7\x98\xbf\xea\x74\x96\xb9\xa4" "\xd9\xa7\x66\x27\x0f\x1e\x38\x7c\xfc\xc9\xc9\xb9\x99\xd9\xb9\xc9\xd9\xa7" "\x9e\xde\x75\xe8\xc8\xf1\xc3\x73\xbb\x6a\x9f\x5d\xba\xeb\xcb\xdd\xf6\x3f" "\xf5\xfa\x5e\x5d\x7b\x7d\xef\x9d\xd9\xb6\xa5\xa8\xbd\xda\x8f\xd4\x47\x8f" "\x9d\xef\xf5\x1f\x7d\x78\xcf\xde\x3b\xa6\x6e\xdc\x3b\xb3\x6f\xf7\xf1\x7d" "\x73\x0f\x1f\x9d\x39\xb6\x7f\xcf\xec\xec\x9e\x99\xbd\xb3\x37\xee\xde\xb7" "\x6f\xe6\x89\x6e\xfb\x1f\xd8\xbb\x63\x7a\xd3\xf6\xcd\x77\x6c\x9a\xd8\x7f" "\x60\xef\x8e\x3b\xb7\x6f\xdf\xbc\x7d\xe2\xc0\xe1\x23\xe5\x32\xea\x8b\xea" "\x62\xdb\xd4\x57\x26\x0e\x1f\xdb\x55\xdb\x65\x76\xc7\x96\xed\xd3\x5b\xb7" "\x6e\x99\x9a\x38\x74\x64\xef\xcc\x8e\x3b\xa6\xa6\x26\x8e\x77\xdb\xbf\xf6" "\xb5\x69\xa2\xdc\xfb\xf1\x89\x63\x33\x07\x77\xcf\x1d\x38\x34\x33\x31\x7b" "\xe0\xe9\x99\x1d\xd3\xdb\xb7\x6d\xdb\xd4\xf5\xd3\x1f\x0f\x1d\xdd\x37\xbb" "\x6e\xf2\xd8\xf1\xc3\x93\xc7\x67\x67\x8e\x4d\xd6\x1f\xcb\xba\xb9\xda\xc5" "\xe5\xd7\xbe\x6e\xfb\x93\x87\xd9\x23\xe1\xfd\xae\xc5\x50\xf8\xee\xfc\x0b" "\xb7\x6e\x4b\x9f\x8f\x5b\xfa\xf6\x57\x97\xbc\xa9\xfa\x26\xcd\xdf\x9e\x16" "\xef\x84\xcf\x82\x8a\x5f\xdf\xba\xfd\x3b\xe6\xfe\xb1\x30\x93\x4c\xf2\x3f" "\x00\x00\x00\xe4\x20\xe6\xfe\xf0\xc1\xff\xa7\xae\x90\xff\x01\x00\x00\xa0" "\x32\x62\xee\x5f\x19\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x3f\x1e\x66" "\x92\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\x25\xfd" "\x7f\xfd\xff\x4e\xf4\xff\xf5\xff\x07\x79\xfd\xfa\xff\xfa\xff\x74\xd7\x6f" "\xfd\xff\x98\xfb\x57\x15\x45\x96\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\xea" "\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x0b\xc2\x4c\xe4\x7f\x00\x00" "\x00\xa8\x8c\x98\xfb\x2f\x0c\x33\xc9\x23\xff\x8f\xb5\xfe\x55\xff\x5f\xff" "\x5f\xff\xbf\xb1\xff\x1f\xb7\xd5\xff\x2f\xf4\xff\xf5\xff\x3f\x20\xfd\x7f" "\xfd\xff\x4e\xf4\xff\xf5\xff\x07\x79\xfd\x7d\xd8\xff\x5f\xa5\xff\x4f\xbf" "\xe9\xb7\xfe\x7f\xcc\xfd\x1f\x0a\x33\xc9\x23\xff\x03\x00\x00\x40\x16\x62" "\xee\xbf\x28\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xe2\x30\x13\xf9" "\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x35\x61\x26\x99\xe4\x7f\xbf\xff\x5f\xff" "\x5f\xff\xdf\xef\xff\xd7\xff\xd7\xff\x3f\xcb\x9a\x0e\xb1\xfe\xbf\xfe\x7f" "\x27\xfa\xff\xfa\xff\x83\xbc\xfe\x3e\xec\xff\xfb\xfd\xff\xf4\x9d\x7e\xeb" "\xff\xc7\xdc\xff\xff\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\x3f" "\x1c\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x49\x98\x89\xfc\x0f\x00" "\x00\x00\x95\x11\x73\xff\xa5\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\xff\x5e\xd2\xff\xd7\xff\xef\x44\xff\x5f\xff\x7f\x90" "\xd7\xaf\xff\xaf\xff\x4f\x77\xfd\xd6\xff\x8f\xb9\xff\xb2\x30\x93\x4c\xf2" "\x3f\x00\x00\x00\xe4\x20\xe6\xfe\xcb\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c" "\x98\xfb\xaf\x08\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x32\xcc\x24" "\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x4b\xfa\xff" "\xfa\xff\x9d\xe8\xff\xeb\xff\x0f\xf2\xfa\xf5\xff\xf5\xff\xe9\xae\xdf\xfa" "\xff\x31\xf7\x5f\x15\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\x7f\x75" "\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x47\xc2\x4c\xe4\x7f\x00\x00" "\x00\xa8\x8c\x98\xfb\xd7\x86\x99\x64\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\x7b\x69\xb0\xfa\xff\xc3\x4b\x5e\xa3\xff\x5f\xa7\xff" "\xdf\x4c\xff\x5f\xff\x5f\xff\x5f\xff\x9f\xce\xfa\xad\xff\x1f\x73\xff\x47" "\xc3\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\xaf\x09\x33\x91\xff\x01" "\x00\x00\xa0\x32\x62\xee\xbf\x36\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9" "\x7f\x5d\x98\x49\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff" "\xbf\x97\x06\xab\xff\xbf\x34\xfd\xff\x3a\xfd\xff\x66\xfa\xff\xfa\xff\xfa" "\xff\xfa\xff\x74\xd6\x6f\xfd\xff\x98\xfb\xd7\x87\x99\x64\x92\xff\x01\x00" "\x00\x20\x07\x31\xf7\x6f\x08\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xbf" "\x2e\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xfa\x30\x93\x4c\xf2\xbf" "\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x2f\xe9\xff\xeb\xff\x77" "\xa2\xff\xaf\xff\x3f\xc8\xeb\xd7\xff\x5f\x5e\xff\x7f\x45\xb7\x1b\xa2\xd2" "\xfa\xad\xff\x1f\x73\xff\x0d\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc" "\xfd\x37\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xdf\x14\x66\x22\xff" "\x03\x00\x00\x40\x65\xc4\xdc\xbf\x31\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x4b\xfa\xff\x8b\xfa\xff\x6f\xfd\x4f\xa1" "\xff\x1f\xe9\xff\xeb\xff\x0f\xf2\xfa\xf5\xff\xfd\xfe\x7f\xba\xeb\xb7\xfe" "\x7f\xcc\xfd\x37\x87\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7\xdf\x12" "\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x6b\x98\x89\xfc\x0f\x00\x00" "\x00\x95\x11\x73\xff\x44\x98\x49\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff" "\x5f\xff\x5f\xff\xbf\x97\xaa\xda\xff\x4f\xef\xa3\x7e\xff\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x4b\xea\xb7\xfe\x7f\xcc\xfd\xb7\x85\x99\x64" "\x92\xff\x01\x00\x00\x20\x07\x31\xf7\xdf\x1e\x66\x22\xff\x03\x00\x00\x40" "\x65\xc4\xdc\x3f\x19\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x3f\x15\x66" "\x92\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\xa5\xaa" "\xf6\xff\xcf\xe0\xf7\xff\xeb\xff\x37\xd0\xff\xd7\xff\x1f\xe4\xf5\xeb\xff" "\xeb\xff\xd3\x5d\xbf\xf5\xff\x63\xee\x9f\x0e\x33\xc9\x24\xff\x03\x00\x00" "\x40\x0e\x62\xee\xdf\x14\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x39" "\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x4b\x98\x49\x26\xf9\x5f\xff" "\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x97\xf4\xff\xf5\xff\x3b\xd1" "\xff\xd7\xff\x1f\xe4\xf5\xeb\xff\xeb\xff\xd3\x6c\xb8\xcd\x65\xfd\xd6\xff" "\x8f\xb9\x7f\x6b\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\xb6\x30" "\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x3b\xc2\x4c\xe4\x7f\x00\x00\x00" "\xa8\x8c\x98\xfb\xef\x0c\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff" "\xeb\xff\xeb\xff\xf7\x92\xfe\xbf\xfe\x7f\x27\xfa\xff\xfa\xff\x83\xbc\x7e" "\xfd\x7f\xfd\x7f\xba\xeb\xb7\xfe\x7f\xcc\xfd\xdb\xc3\x4c\x32\xc9\xff\x00" "\x00\x00\x90\x83\x98\xfb\x3f\x16\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc" "\x7f\x57\x98\x89\xfc\x0f\x00\x00\x00\x03\xa5\xdd\xef\x21\x8c\x62\xee\xff" "\x78\x98\x49\x26\xf9\x5f\xff\xbf\xea\xfd\xff\x85\x95\xfa\xff\xfa\xff\xfa" "\xff\x9d\xd7\xaf\xff\xdf\x5b\xfa\xff\xfa\xff\x9d\xe8\xff\xeb\xff\x0f\xf2" "\xfa\xf5\xff\xf5\xff\xe9\xae\xdf\xfa\xff\x31\xf7\xef\x08\x33\xc9\x24\xff" "\x03\x00\x00\x40\x0e\x62\xee\xbf\x3b\xcc\x44\xfe\x07\x00\x00\x80\xca\x88" "\xb9\xff\x9e\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x9d\x61\x26\x99" "\xe4\x7f\xfd\xff\xaa\xf7\xff\xfd\xfe\x7f\xfd\x7f\xfd\xff\x6e\xeb\xd7\xff" "\xef\x2d\xfd\x7f\xfd\xff\x4e\xf4\xff\x07\xb3\xff\x1f\xbe\x6d\xd1\xff\x3f" "\x37\xfd\xff\xf1\xa5\xf6\x6f\xec\xff\x97\xe7\x90\xfe\x3f\xfd\xa8\xdf\xfa" "\xff\x31\xf7\xdf\x1b\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xff\x89" "\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x4f\x86\x99\xc8\xff\x00\x00" "\x00\x50\x19\x31\xf7\x7f\x2a\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf" "\xff\xaf\xff\xaf\xff\xdf\x4b\xfa\xff\xfa\xff\x9d\xe8\xff\x0f\x66\xff\x3f" "\xd2\xff\xf7\xfb\xff\xf5\xff\xe9\xa6\xdf\xfa\xff\x31\xf7\xdf\x17\x66\x92" "\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xff\xe9\x30\x13\xf9\x1f\x00\x00\x00" "\x2a\x23\xe6\xfe\xff\x1f\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x7f" "\x98\x49\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x97" "\xf4\xff\xf5\xff\x3b\xd1\xff\xd7\xff\x1f\xe4\xf5\xeb\xff\xeb\xff\xd3\x5d" "\xbf\xf5\xff\x63\xee\xff\x95\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6" "\xfe\x07\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x3f\x13\x66\x22\xff" "\x03\x00\x00\x40\x65\xc4\xdc\xff\xab\x61\x26\x99\xe4\x7f\xfd\xff\x73\xd3" "\xff\x1f\x4e\xb7\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x7f\x36\xe9\xff" "\xeb\xff\x17\xfa\xff\x1f\xd8\xf9\xee\xcf\x0f\xfa\xfa\xf5\xff\xf5\xff\xe9" "\xae\xdf\xfa\xff\x31\xf7\xff\x5a\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10" "\x73\xff\xaf\x87\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xff\x46\x98\x89" "\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x83\x61\x26\x99\xe4\x7f\xfd\x7f\xbf" "\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x97\xf4\xff\xf5\xff\x3b\xd1\xff" "\xd7\xff\x1f\xe4\xf5\xeb\xff\xeb\xff\xd3\x5d\xbf\xf5\xff\x63\xee\xff\xcd" "\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\x87\xc2\x4c\xe4\x7f\x00" "\x00\x00\xa8\x8c\x98\xfb\x3f\x1b\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc" "\xff\xb9\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe" "\x7f\x2f\xe9\xff\xeb\xff\x77\xa2\xff\xaf\xff\x3f\xc8\xeb\xd7\xff\xd7\xff" "\xa7\xbb\x7e\xeb\xff\xc7\xdc\xff\x70\x98\x49\x26\xf9\x1f\x00\x00\x00\x72" "\x10\x73\xff\xe7\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x7f\x2b\xcc" "\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xb7\xc3\x4c\x32\xc9\xff\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xbd\xa4\xff\xbf\xb8\xff\x5f\xbe" "\x87\x9d\xcf\xfe\xff\x8a\xe5\x6c\xa8\xff\xbf\x2c\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\x74\xd6\x6f\xfd\xff\x98\xfb\xbf\x10\x66\x92\x49\xfe\x07\x00\x00" "\x80\x1c\xc4\xdc\xff\x3b\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xbf" "\x1b\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\x48\x98\x49\x26\xf9\x5f" "\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x97\xf4\xff\xfd\xfe\xff" "\x4e\xf4\xff\xf5\xff\x07\x79\xfd\xfa\xff\xfa\xff\x74\xd7\x6f\xfd\xff\x98" "\xfb\xbf\x18\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xff\x7b\x61\x26" "\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xbb\xc2\x4c\xe4\x7f\x00\x00\x00\xa8" "\x8c\x98\xfb\x1f\x0d\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb" "\xff\xeb\xff\xf7\x92\xfe\xbf\xfe\x7f\x27\xfa\xff\xfa\xff\x83\xbc\x7e\xfd" "\x7f\xfd\x7f\xba\xeb\xb7\xfe\x7f\xcc\xfd\xbb\xc3\x4c\x32\xc9\xff\x00\x00" "\x00\x90\x83\x98\xfb\xbf\x14\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf" "\x27\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x6f\x98\x49\x26\xf9\x5f" "\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x97\xf4\xff\xf5\xff\x3b" "\xd1\xff\xd7\xff\x1f\xe4\xf5\xeb\xff\xeb\xff\xd3\x5d\xbf\xf5\xff\x63\xee" "\x9f\x09\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\xdf\x17\x66\x22\xff" "\x03\x00\x00\x40\x65\xc4\xdc\xbf\x3f\xcc\x44\xfe\x07\x00\x00\x80\xca\x88" "\xb9\xff\xb1\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\x7f\x2f\xe9\xff\xeb\xff\x77\xa2\xff\xaf\xff\x3f\xc8\xeb\xd7\xff\xd7" "\xff\xa7\xbb\x7e\xeb\xff\xc7\xdc\x7f\x20\xcc\x24\x93\xfc\x0f\x00\x00\x00" "\x39\x88\xb9\xff\xcb\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x5f\x09" "\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x3f\x18\x66\x92\x49\xfe\xd7\xff" "\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\x25\xfd\x7f\xfd\xff\x4e\xf4" "\xff\xf5\xff\x07\x79\xfd\xfa\xff\xfa\xff\x74\xd7\x6f\xfd\xff\x98\xfb\x0f" "\x85\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7\x1f\x0e\x33\x91\xff\x01" "\x00\x00\xa0\x32\x62\xee\x3f\x12\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc" "\x7f\x34\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff" "\xdf\x4b\xfa\xff\xfa\xff\x9d\xe8\xff\xeb\xff\x0f\xf2\xfa\xf5\xff\xf5\xff" "\xe9\xae\xdf\xfa\xff\x31\xf7\xff\x7e\x98\x49\x26\xf9\x1f\x00\x00\x00\x72" "\x10\x73\xff\xb1\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xd9\x30\x13" "\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xb9\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x2f\xe9\xff\xeb\xff\x77\xa2\xff\xaf" "\xff\x3f\xc8\xeb\xd7\xff\xd7\xff\xa7\xbb\x7e\xeb\xff\xc7\xdc\x7f\x3c\xcc" "\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\xf1\x30\x13\xf9\x1f\x00\x00" "\x00\x2a\x23\xe6\xfe\x27\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x9f" "\x0c\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff\x9f\xea\xff\xbf\xb2\xbf\x7e" "\xf9\x79\xea\xff\xd7\x7b\x7e\xff\xc7\xde\x5d\xef\x6a\x76\x56\x71\x1c\x7f" "\xcb\x64\x80\x84\x10\xae\x85\x2b\xe0\x12\xb8\x06\x2e\x03\x77\x29\xee\xee" "\xee\xee\xee\xee\xee\xee\x50\x28\xae\x49\x49\x98\xb5\xd6\x81\xe9\x74\xef" "\x73\xde\x76\xf7\x7d\xf6\xb3\x3e\x9f\x7f\x56\xda\x99\x4c\x9f\x76\x92\x26" "\xbf\x4c\xbe\xd9\xfa\x7f\xfd\xbf\xfe\xff\x42\xf4\xff\xfa\xff\x83\xfe\xff" "\x68\xa7\xee\xe7\xf7\xfe\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb\xef" "\x1d\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xfb\xc4\x2d\xf6\x3f\x00" "\x00\x00\x4c\x23\x77\xff\x7d\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff" "\x7e\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\x7d\xff\x5f\xff\xaf\xff\xdf" "\x92\xfe\x5f\xff\xbf\x44\xff\xaf\xff\xdf\xf3\xfb\xf5\xff\xfa\x7f\xd6\x8d" "\xd6\xff\xe7\xee\xbf\x7f\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x1f" "\x10\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x0f\x8c\x5b\xec\x7f\x00\x00" "\x00\x98\x46\xee\xfe\x07\xc5\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\x5b\xd2\xff\xeb\xff\x97\xe8\xff\xf5\xff\x7b\x7e\xbf\xfe" "\x5f\xff\xcf\xba\xd1\xfa\xff\xdc\xfd\x0f\x8e\x5b\x9a\xec\x7f\x00\x00\x00" "\xe8\x20\x77\xff\x43\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\xa1\x71" "\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xb0\xb8\xa5\xc9\xfe\xd7\xff\xeb" "\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\x4b\xfa\x7f\xfd\xff\x12\xfd\xbf\xfe" "\x7f\xcf\xef\xd7\xff\xeb\xff\x59\x37\x5a\xff\x9f\xbb\xff\xe1\x71\x4b\x93" "\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x44\xdc\x62\xff\x03\x00\x00\xc0\x34" "\x72\xf7\x3f\x32\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x1f\x15\xb7\x34" "\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x6f\x49\xff\xaf\xff" "\x5f\xa2\xff\xd7\xff\xef\xf9\xfd\xfa\x7f\xfd\x3f\xeb\x36\xef\xff\xef\x79" "\xfd\x7f\xef\x79\xfb\xff\xdc\xfd\xd7\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74" "\x90\xbb\xff\xd1\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\x98\xb8\xc5" "\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x6c\xdc\xd2\x64\xff\xeb\xff\xf5\xff" "\x67\xfd\xff\x4d\xd7\xe9\xff\xf5\xff\xfa\xff\xb3\xbf\xaf\xff\xbf\x6d\xe8" "\xff\xf5\xff\x4b\xf4\xff\xa3\xf6\xff\xe7\xfb\x2f\xa1\xff\xd7\xff\xeb\xff" "\x59\xb3\x79\xff\xbf\xd2\xfb\x5f\xfd\xd7\xb9\xfb\x1f\x17\xb7\x34\xd9\xff" "\x00\x00\x00\xd0\x41\xee\xfe\xc7\xc7\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77" "\xff\x13\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x89\x71\x4b\x93\xfd" "\xaf\xff\xd7\xff\xfb\xfe\xbf\xfe\x5f\xff\xaf\xff\xdf\x92\xfe\x5f\xff\xbf" "\x44\xff\x3f\x6a\xff\xef\xfb\xff\xb7\xb6\xff\xbf\xc7\x39\xde\xaf\xff\xa7" "\x83\xd1\xfa\xff\xdc\xfd\x4f\x8a\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77" "\xff\x93\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x29\x71\x8b\xfd\x0f" "\x00\x00\x00\xd3\xc8\xdd\xff\xd4\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\x7f\x4b\xfa\x7f\xfd\xff\x12\xfd\xbf\xfe\x7f\xcf\xef" "\xf7\xfd\x7f\xfd\x3f\xeb\x46\xeb\xff\x73\xf7\x3f\x2d\x6e\x69\xb2\xff\x01" "\x00\x00\xa0\x83\xdc\xfd\x4f\x8f\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe" "\x67\xc4\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x33\xe3\x96\x26\xfb\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\x6f\x55\xff\x7f\x49\xff\xaf\xff\x5f\xa6\xff" "\xd7\xff\x2f\xd1\xff\xeb\xff\xf7\xfc\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff" "\xb9\xfb\x9f\x15\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x67\xc7\x2d" "\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x73\xe2\x16\xfb\x1f\x00\x00\x00\xa6" "\x91\xbb\xff\xb9\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xbe\xff" "\xaf\xff\xdf\x92\xfe\x7f\xba\xfe\xff\x3a\xfd\xff\x19\xfd\xbf\xfe\x5f\xff" "\xaf\xff\x67\xd9\x68\xfd\x7f\xee\xfe\xe7\xc5\x2d\x4d\xf6\x3f\x00\x00\x00" "\x74\x90\xbb\xff\xf9\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\x82\xb8" "\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x61\xdc\xd2\x64\xff\xeb\xff\xf5" "\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x25\xfd\xff\x74\xfd\xbf\xef\xff\xff" "\x0f\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xd9\x68\xfd\x7f\xee\xfe\x17\xc5\x2d" "\x6b\xc3\xef\xf2\xca\x8f\x03\x00\x00\x00\xc3\xc8\xdd\xff\xe2\xb8\xa5\xc9" "\x9f\xff\x03\x00\x00\x40\x07\xb9\xfb\x5f\x12\xb7\xd8\xff\x00\x00\x00\x30" "\x8d\xdc\xfd\x2f\x8d\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff" "\xeb\xff\xb7\xa4\xff\xd7\xff\x2f\xd1\xff\x5f\xbb\xff\xbf\xf3\x2d\xfc\xf3" "\xf4\xff\x63\xbd\x5f\xff\xaf\xff\x67\xdd\x68\xfd\x7f\xee\xfe\x97\xc5\x2d" "\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xe5\x71\x8b\xfd\x0f\x00\x00\x00" "\xd3\xc8\xdd\xff\x8a\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x65\xdc" "\xd2\x64\xff\xdf\x52\xff\x7f\xe3\x5d\xae\xfc\xb8\xfe\xff\x7c\xf4\xff\xd7" "\x7e\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x4b\xf4\xff\xbe\xff" "\xbf\xe7\xf7\xeb\xff\xf5\xff\xac\x1b\xad\xff\xcf\xdd\xff\xaa\xb8\xa5\xc9" "\xfe\x07\x00\x00\x80\x0e\x72\xf7\xbf\x3a\x6e\xb1\xff\x01\x00\x00\x60\x1a" "\xb9\xfb\x5f\x13\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\xaf\x8d\x5b\x9a" "\xec\x7f\xdf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x96\xf4\xff\xfa" "\xff\x25\xfa\x7f\xfd\xff\x9e\xdf\xaf\xff\xd7\xff\xb3\x6e\xb4\xfe\x3f\x77" "\xff\xeb\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xfa\xb8\xc5\xfe" "\x07\x00\x00\x80\x69\xe4\xee\x7f\x43\xdc\x62\xff\x03\x00\x00\xc0\x34\x72" "\xf7\xbf\x31\x6e\x69\xb2\xff\xf5\xff\xfa\xff\x93\xf7\xff\x77\xd0\xff\x27" "\xfd\x7f\xfc\xbe\xea\xff\xf5\xff\x17\xa0\xff\xd7\xff\x1f\xf4\xff\x47\x3b" "\x75\x3f\xbf\xf7\xf7\xeb\xff\xf5\xff\xac\x1b\xad\xff\xcf\xdd\xff\xa6\xb8" "\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xbf\x39\x6e\xb1\xff\x01\x00\x00" "\x60\x1a\xb9\xfb\xdf\x12\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x6f\x8d" "\x5b\x9a\xec\x7f\xfd\xbf\xfe\xff\xe4\xfd\xbf\xef\xff\x17\xfd\x7f\xfc\xbe" "\xea\xff\xf5\xff\x17\xa0\xff\xd7\xff\x1f\xf4\xff\x47\x3b\x75\x3f\xbf\xf7" "\xf7\xeb\xff\xf5\xff\xac\x1b\xad\xff\xcf\xdd\xff\xb6\xb8\xa5\xc9\xfe\x07" "\x00\x00\x80\x0e\x72\xf7\xbf\x3d\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb" "\xdf\x11\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\xef\x8c\x5b\x9a\xec\x7f" "\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xb7\xa4\xff\xd7\xff\x2f\xd1" "\xff\xeb\xff\xf7\xfc\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb\xdf\x15" "\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x77\xc7\x2d\xf6\x3f\x00\x00" "\x00\x4c\x23\x77\xff\x7b\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\xbd" "\x71\x4b\x93\xfd\xaf\xff\xdf\x7b\xff\x7f\xaf\x1b\xe2\x05\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\x3f\x24\xfd\xbf\xfe\x7f\x89\xfe\x5f\xff\xbf\xe7\xf7\xeb\xff" "\xf5\xff\xac\x1b\xad\xff\xcf\xdd\xff\xbe\xb8\xa5\xc9\xfe\x07\x00\x00\x80" "\x0e\x72\xf7\xbf\x3f\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x3f\x10\xb7" "\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x1f\x8c\x5b\x9a\xec\xff\x1e\xfd\xff" "\xe5\x9b\xfd\xb4\x79\xfa\x7f\xdf\xff\xd7\xff\xeb\xff\xf5\xff\x63\xd3\xff" "\xeb\xff\x97\xe8\xff\xf5\xff\x7b\x7e\xbf\xfe\x5f\xff\xcf\xba\xd1\xfa\xff" "\xdc\xfd\x1f\x8a\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x87\xe3\x16" "\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x23\x71\x8b\xfd\x0f\x00\x00\x00\xd3" "\xc8\xdd\xff\xd1\xb8\xa5\xc9\xfe\xef\xd1\xff\xdf\x5c\x83\xfe\x3f\xff\xb5" "\x6e\xdf\xfe\xff\xa6\xbb\xe9\xff\xf5\xff\x45\xff\xaf\xff\x3f\xe8\xff\xf5" "\xff\x2b\xf4\xff\xfa\xff\x3d\xbf\x5f\xff\xaf\xff\x67\xdd\x68\xfd\x7f\xee" "\xfe\x8f\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xe3\x71\x8b\xfd" "\x0f\x00\x00\x00\xd3\xc8\xdd\xff\x89\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4" "\xee\xff\x64\xdc\x70\xf7\xbb\x9e\xee\x49\xb7\x2b\xfd\xff\xb4\xfd\xbf\xef" "\xff\xeb\xff\xf5\xff\xfa\xff\x21\xe8\xff\xf5\xff\x4b\xf4\xff\xfa\xff\x3d" "\xbf\x5f\xff\xaf\xff\x67\xdd\x68\xfd\x7f\xee\xfe\x4f\xc5\x2d\xfe\xfc\x1f" "\x00\x00\x00\xa6\x91\xbb\xff\xd3\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd" "\xff\x99\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x6c\xdc\xd2\x64\xff" "\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x25\xfd\xbf\xfe\x7f\x89" "\xfe\x5f\xff\xbf\xe7\xf7\xeb\xff\xf5\xff\xac\x1b\xad\xff\xcf\xdd\xff\xb9" "\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x7f\x3e\x6e\xb1\xff\x01\x00" "\x00\x60\x1a\xb9\xfb\xbf\x10\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x5f" "\x8c\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\x7f\x9b\xf5\xff\x97\xaf\xfe\xf5" "\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x4c\xff\xaf\xff\xdf\xf3\xfb\xf5" "\xff\xfa\x7f\xd6\x8d\xd6\xff\xe7\xee\xff\x52\xdc\xd2\x64\xff\x03\x00\x00" "\x40\x07\xb9\xfb\xbf\x1c\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x5f\x89" "\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xaf\xc6\x2d\x4d\xf6\xbf\xfe\x5f" "\xff\xaf\xff\xf7\xfd\x7f\xfd\xbf\xfe\x7f\x4b\xfa\x7f\xfd\xff\x12\xfd\xbf" "\xfe\x7f\xcf\xef\xd7\xff\xeb\xff\x59\x37\x5a\xff\x9f\xbb\xff\x6b\x71\x4b" "\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x7a\xdc\x62\xff\x03\x00\x00\xc0" "\x34\x72\xf7\x7f\x23\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\xbf\x19\xb7" "\x34\xd9\xff\x33\xf7\xff\x4b\x3f\x4d\xff\x7f\x85\xfe\x5f\xff\x7f\xd0\xff" "\xeb\xff\x37\xa6\xff\xd7\xff\x2f\xd1\xff\xeb\xff\xf7\xfc\x7e\xfd\xbf\xfe" "\x9f\x75\xa3\xf5\xff\xb9\xfb\xbf\x15\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41" "\xee\xfe\x6f\xc7\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x77\xe2\x16\xfb" "\x1f\x00\x00\x00\xa6\x91\xbb\xff\xbb\x71\x4b\x93\xfd\x3f\x73\xff\xbf\x44" "\xff\x7f\x85\xfe\x5f\xff\x7f\xd0\xff\xeb\xff\x37\xa6\xff\xd7\xff\x2f\xd1" "\xff\xeb\xff\xf7\xfc\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb\xbf\x17" "\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xef\xc7\x2d\xf6\x3f\x00\x00" "\x00\x4c\x23\x77\xff\x0f\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x87" "\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x96\xf4" "\xff\xfa\xff\x25\xfa\x7f\xfd\xff\x9e\xdf\xaf\xff\xd7\xff\xb3\x6e\xb4\xfe" "\x3f\x77\xff\x8f\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xe3\xb8" "\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x49\xdc\x62\xff\x03\x00\x00\xc0" "\x34\x72\xf7\xff\x34\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xff\x50\xfd\xff" "\x1d\xaf\xfe\x75\xf4\xff\xfa\x7f\xfd\xff\x32\xfd\xbf\xfe\xff\xa0\xff\x3f" "\xda\xa9\xfb\xf9\xbd\xbf\x5f\xff\xaf\xff\x67\xdd\x68\xfd\x7f\xee\xfe\x9f" "\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xe7\x71\x8b\xfd\x0f\x00" "\x00\x00\xd3\xc8\xdd\xff\x8b\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff" "\x65\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\xff\xa3\xfb\xff\x4b\x07\xdf\xff" "\xff\xbf\xf7\xe8\xff\xf5\xff\xd7\xa2\xff\xd7\xff\x2f\xd1\xff\xeb\xff\xf7" "\xfc\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb\x7f\x15\xb7\x34\xd9\xff" "\x00\x00\x00\xd0\x41\xee\xfe\x5f\xc7\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77" "\xff\x6f\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\xb7\x71\x4b\x93\xfd" "\xaf\xff\xd7\xff\xeb\xff\x87\xfa\xfe\xbf\xfe\x5f\xff\xaf\xff\xbf\x20\xfd" "\xbf\xfe\xff\xa0\xff\x3f\xda\xa9\xfb\xf9\xbd\xbf\x5f\xff\xaf\xff\x67\xdd" "\x68\xfd\x7f\xee\xfe\x1b\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff" "\xbb\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x7d\xdc\x62\xff\x03\x00" "\x00\xc0\x34\x72\xf7\xdf\x18\xb7\x34\xd9\xff\xfa\x7f\xfd\xff\x94\xfd\xff" "\x9d\xf4\xff\xfa\x7f\xfd\xff\x28\xf4\xff\xfa\xff\x25\xfa\x7f\xfd\xff\x9e" "\xdf\xaf\xff\xd7\xff\xb3\x6e\xb4\xfe\x3f\x77\xff\x1f\xe2\x96\x26\xfb\x1f" "\x00\x00\x00\x3a\xc8\xdd\xff\xc7\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee" "\xff\x53\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xff\x39\x6e\x69\xb2\xff" "\xf5\xff\xfa\xff\x29\xfb\x7f\xdf\xff\xd7\xff\xef\xad\xff\xbf\x74\xf6\x3f" "\x60\xfd\xff\xc5\xe8\xff\xf5\xff\x07\xfd\xff\xd1\x4e\xdd\xcf\xef\xfd\xfd" "\xfa\x7f\xfd\x3f\xeb\x46\xeb\xff\x73\xf7\xff\x25\x6e\x69\xb2\xff\x01\x00" "\x00\xa0\x83\xdc\xfd\x7f\x8d\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xbf" "\xc5\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\xdf\xe3\x96\x26\xfb\x5f\xff" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x03\xf4\xff\xbe\xff\x7f\x34\xfd\xbf\xfe" "\xff\xa0\xff\x3f\xda\xa9\xfb\xf9\xbd\xbf\x5f\xff\xaf\xff\x67\xdd\x68\xfd" "\x7f\xee\xfe\x7f\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x9f\x71" "\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xaf\xb8\xc5\xfe\x07\x00\x00\x80" "\x69\xe4\xee\xff\x77\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xbf\x25\xfd\xbf\xfe\x7f\x89\xfe\x5f\xff\xbf\xe7\xf7\xeb\xff\xf5" "\xff\xac\x1b\xad\xff\xcf\xdd\xff\x9f\x00\x00\x00\xff\xff\x67\x91\x2d" "\x05", 24156); syz_mount_image(/*fs=*/0x200000000140, /*dir=*/0x200000000240, /*flags=MS_RELATIME*/ 0x200000, /*opts=*/0x200000004a80, /*chdir=*/-1, /*size=*/0x5e5c, /*img=*/0x200000005d80); // mknod$loop arguments: [ // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 00} (length 0xfe) // } // mode: mknod_mode = 0x2000 (8 bytes) // dev: proc = 0x1 (4 bytes) // ] memcpy((void*)0x2000000009c0, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 254); syscall(__NR_mknod, /*file=*/0x2000000009c0ul, /*mode=S_IFCHR*/ 0x2000ul, /*dev=*/0x701); // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 00} (length 0x2) // } // flags: open_flags = 0x0 (4 bytes) // mode: open_mode = 0x0 (2 bytes) // ] // returns fd memcpy((void*)0x200000000040, ".\000", 2); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000040ul, /*flags=*/0, /*mode=*/0); if (res != -1) r[0] = res; // mount arguments: [ // src: nil // dst: ptr[in, buffer] { // buffer: {2e 00} (length 0x2) // } // type: nil // flags: mount_flags = 0x2390024 (8 bytes) // data: nil // ] memcpy((void*)0x200000000240, ".\000", 2); syscall( __NR_mount, /*src=*/0ul, /*dst=*/0x200000000240ul, /*type=*/0ul, /*flags=MS_LAZYTIME|MS_SHARED|MS_SLAVE|MS_POSIXACL|MS_REMOUNT|MS_RELATIME|0x4*/ 0x2390024ul, /*data=*/0ul); // lseek arguments: [ // fd: fd (resource) // offset: intptr = 0x2 (8 bytes) // whence: seek_whence = 0x0 (8 bytes) // ] syscall(__NR_lseek, /*fd=*/r[0], /*offset=*/2ul, /*whence=*/0ul); // getdents64 arguments: [ // fd: fd_dir (resource) // ent: nil // count: len = 0x22 (8 bytes) // ] syscall(__NR_getdents64, /*fd=*/r[0], /*ent=*/0ul, /*count=*/0x22ul); } 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; }