// https://syzkaller.appspot.com/bug?id=18a1605d10a46f3eb0a63a72474c07f0377b1a81 // 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 void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } 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"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void setup_sysctl() { int cad_pid = fork(); if (cad_pid < 0) exit(1); if (cad_pid == 0) { for (;;) sleep(100); } char tmppid[32]; snprintf(tmppid, sizeof(tmppid), "%d", cad_pid); struct { const char* name; const char* data; } files[] = { {"/sys/kernel/debug/x86/nmi_longest_ns", "10000000000"}, {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, {"/proc/sys/net/core/bpf_jit_harden", "0"}, {"/proc/sys/kernel/kptr_restrict", "0"}, {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"}, {"/proc/sys/fs/mount-max", "100"}, {"/proc/sys/vm/oom_dump_tasks", "0"}, {"/proc/sys/debug/exception-trace", "0"}, {"/proc/sys/kernel/printk", "7 4 1 3"}, {"/proc/sys/kernel/keys/gc_delay", "1"}, {"/proc/sys/vm/oom_kill_allocating_task", "1"}, {"/proc/sys/kernel/ctrl-alt-del", "0"}, {"/proc/sys/kernel/cad_pid", tmppid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) { } } kill(cad_pid, SIGKILL); while (waitpid(cad_pid, NULL, 0) != cad_pid) ; } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); 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; } remove_dir(cwdbuf); } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x20005d80, "bcachefs\000", 9); memcpy((void*)0x20000240, "./file7\000", 8); memcpy( (void*)0x20000100, "\x65\x72\x72\x6f\x72\x73\x3d\x63\x6f\x6e\x74\x69\x6e\x75\x65\x2c\x69\x6e" "\x6f\x64\x65\x73\x5f\x33\x32\x62\x69\x74\x2c\x63\x6f\x6d\x70\x72\x65\x73" "\x73\x69\x6f\x6e\x3d\x7a\x73\x74\x64\x2c\x6e\x6f\x72\x65\x63\x6f\x76\x65" "\x72\x79\x2c\x76\x65\x72\x73\x69\x6f\x6e\x5f\x75\x70\x67\x72\x61\x64\x65" "\x3d\x6e\x6f\x6e\x65\x2c\x73\x65\x63\x6f\x76\x65\x72\x79\x5f\x70\x61\x73" "\x73\x5f\x6c\x61\x73\x74\x3d\x63\x68\x65\x63\x6b\x5f\x64\x69\x72\x65\x6e" "\x74\x73\x2c\x64\x65\x66\x63\x6f\x6e\x74\x65\x78\x74\x3d\x75\x73\x65\x72" "\x5f\x75\x2c\x66\x6f\x77\x6e\x65\x72\x3d\x12\x43\x35\xc5\x9a\xe9\x11\x8b" "\x87\x13\x72\x7f\xca\x2c\x98\x6c\x1c\x7c\xd9\x78\x66\x00\xd7\xbc\xc1\xc1" "\xb3\x6f\x05\xed\xea\x77\x24\x1a\xff\x6b\x2f\xd8\x72\xf8\xbc\x8b\x15\x5f" "\x68\xf1\x2e\xd8\x4c\x94\x99\x6a\x73\x25\x2d\x6b\x79\x9a\x8c\xd9\xc7\x49" "\xc5\x5a\x0c\x61\xef\xab\xdd\x6d\x6d\x26\x82\x6b\x9b\x07", 212); memcpy((void*)0x200001d4, "\x99\x18\xd3\x98\x49\x63\xa7\x7f\x18\x52\x81\x30\x7c\x34\x9e\xdd\x18" "\xb5\xa4\xbb\x9d\x17\x5f\x4f\xc0\x77\xaf\x9e\xfb\xc0\x17\xa0\xbb\x33" "\xd5\xe8\x43\x5d\xc9\xbc\xa0\xfa\x3b\x08\xa1\xca\xc2\xa0\x24\xcf\x13" "\x5a\x1d\x46\x20\x20\x4c\xda\x4b\x07\xe0", 61); memcpy((void*)0x20000211, "BG", 2); memcpy( (void*)0x2001c480, "\x78\x9c\xec\xdd\x7d\x90\x1c\xe5\x99\x18\xf0\xee\x99\x91\x76\x57\x2b\xc1" "\x4a\x16\x66\x85\x84\x58\x8c\x6c\x47\x5c\xb0\x05\x0a\xc4\xf8\xce\x61\xe3" "\x9c\x1d\xdb\xc1\x46\x16\x16\x60\x71\x9c\x24\xc3\x62\xeb\x2c\x24\x59\x1f" "\x88\x8f\x4b\xf8\xca\x61\x82\x9d\x94\xaa\xa0\x0e\x02\x71\xc2\x81\xcb\xb9" "\x4a\x5d\x25\xb8\x74\x09\xf1\x1d\xa9\xc2\x18\xe3\x8b\xaf\x8a\x02\x3b\xfe" "\xc3\x47\xbe\x8e\x8a\x9d\x3f\x62\x13\xd5\x59\xe2\x1c\xe1\xf3\xa6\x76\xa7" "\x7b\x77\xba\xb7\xdf\xee\xd9\xe9\x59\x21\xb8\xdf\xaf\x4a\x3b\xd3\xbd\xcf" "\x3c\xef\xf3\xf4\xbc\xd3\xd3\xdd\xda\x9d\x8d\x00\x00\x00\xf8\x6b\xe1\xf9" "\xdf\xd9\xff\xda\x27\xce\xfa\xd0\x77\xef\x9e\x38\x7e\xc7\x47\xfe\xe8\xa6" "\xbb\xa2\xe1\xe6\xf4\xfa\xc1\x34\x60\x24\xb9\xbd\xe5\x8d\xaa\x90\x85\xb4" "\xfe\x7b\xaf\x67\x9e\xd9\x81\xd6\xe8\xf4\x6d\x7e\x5e\x9c\xf9\xc7\x2b\x5f" "\x1b\xb9\xe7\xf2\x8f\xdf\x7f\xe9\x87\xbf\xb7\xfd\x4f\x96\x8f\xaf\x5d\x37" "\x71\xc9\xd7\x8f\x5c\x71\xef\x3d\xcf\x7e\xe0\x17\xcf\x3e\xf4\xc8\xe5\x55" "\xe3\xa4\xf3\xe9\xfc\xd9\xe5\xf8\xa7\x71\x14\xad\xfd\xd1\x91\x87\xee\xfd" "\xf6\x9f\x9e\x39\xb5\x2e\x9e\x1a\x3f\x1e\xb9\x33\x5a\xbe\x3c\x5e\xf1\xcd" "\xe5\x71\x2e\xc5\x86\x13\x51\x14\xdd\x30\x53\x67\xf6\x9b\x47\x8e\x6f\xbc" "\x71\xea\xf6\xae\x2f\x0d\x64\xd6\x9f\x9e\x4b\x62\xbe\xff\xf5\x36\x98\xcc" "\xb3\xdb\xb7\x7d\xe6\xf1\x67\x3e\x3f\xfe\xed\x23\x63\x7b\x37\xfe\xe4\xd8" "\xc5\x7b\xee\x9c\x0d\x89\x07\x3b\xe6\x53\x14\x9d\xb6\xbd\xf3\xf1\x8b\xa2" "\x28\x1a\x4a\xfe\x4d\x49\x67\xdb\x68\xfa\xe0\xe4\x76\x53\x14\x45\x4b\x3a" "\x1e\xf7\xbe\x8a\xba\xce\xeb\xb2\xfe\x0b\x02\xcb\x6b\x92\xdb\xc5\xc9\xed" "\x70\x45\x9e\xf4\xfb\xe7\xe6\x96\x5b\x5d\xd6\xd1\xca\xdd\x0e\x74\xf9\xb8" "\x5e\x35\x16\x38\x7f\x5e\x7e\xfb\xe5\x77\x46\x0b\x25\xed\xf3\xb4\xe4\xf6" "\xa9\xe4\xf6\xfc\x79\xe6\x69\xa6\xff\xe2\xa8\x11\x47\xad\x99\xf2\x77\xc5" "\xb3\x73\x24\xea\x78\xde\xe2\x28\x9e\x9e\xdb\x83\x33\xcb\x8d\xe9\xe5\x68" "\x66\x39\xca\x2f\xc7\xb9\xe5\x46\x6e\xb9\xb9\x28\xd7\xd7\xf4\xb8\xc9\x86" "\x6d\xc6\x71\x76\x7d\x1a\x97\x5b\x9f\xee\x8e\x5b\xc9\xfa\x73\x3b\xf7\xd5" "\x05\x36\x07\xd6\xaf\x4a\x6e\x07\x93\x17\xea\xcf\xd3\xe5\x28\x7f\xa7\x6d" "\x78\xce\x9d\xd9\x3e\xa2\x8e\xba\x8e\x9e\xac\x89\x11\xd0\x08\xbc\xf6\xd2" "\xf5\x33\xe5\x25\x4f\xc6\x70\xb2\x6e\x38\x5e\x31\xe7\x31\x93\x05\xd2\xef" "\x1d\xfd\xce\x8e\xad\xaf\xfe\xf0\xb6\xa7\x46\x02\x75\xc4\x4f\xc6\x49\xfe" "\xb8\xa7\xfc\xe3\x13\x8f\x3e\xf3\xb5\x6b\x9e\x5e\x35\x1a\xca\xbf\xbd\x91" "\xe4\x6f\xf4\x94\xff\xf9\xe6\x0b\x27\xbe\x7a\x6c\x74\x69\x30\xff\xe1\x34" "\x7f\xb3\xa7\xfc\x5b\x7e\xf9\xe3\xfb\xee\xbe\xf2\xd0\xca\xe0\xf6\x39\x9a" "\x6e\x9f\x56\x4f\xf9\xd7\x7d\x79\xe9\xed\xc7\x0f\x6d\x1e\x18\x0b\xe5\x7f" "\x2c\xcd\x3f\xd8\x53\xfe\x4b\xae\x5b\x7b\xe9\xd9\xc7\x0e\xde\x1c\xac\x7f" "\x43\xba\x7d\x86\x7a\xca\xff\x83\x07\xd6\xbf\x7e\xdd\xe1\x6f\x3c\x1d\xcc" "\x1f\xa5\xf9\x97\xf4\x94\xff\xe5\x47\x9f\x58\xd3\x5c\xf5\xe0\x4b\xc1\xfc" "\xcf\xa4\xdb\x67\xb8\xa7\xfc\x57\x6d\x7c\xf8\xb2\x8f\xad\xbe\xe7\x91\xe0" "\xf6\x7f\x31\xcd\xbf\xac\xa7\xfc\x5b\x5f\xba\x77\xfb\xde\xc7\x9f\x5b\x1f" "\x9c\x9f\x9b\xd2\xed\x33\xd2\x53\xfe\x13\x97\x7d\xff\x95\xd7\x47\x2e\x7f" "\x22\xb4\xef\x8c\x1f\x3b\xd9\xef\xb0\x00\x6f\x2d\x6f\x4b\x8e\xb1\xee\x4b" "\x96\x7b\x3d\xcf\xac\xab\xe3\x7c\xe1\xe1\xb1\x56\xfb\x98\x6f\x69\xf2\x6f" "\x59\x3f\x07\xca\x89\x3b\xce\x5d\x4e\xc2\x69\x21\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6f\x51\x0f\x5e\xf6" "\xef\xbf\xd0\xb9\xfc\xce\xff\x73\xf3\x96\x97\xfe\xc3\xda\x9d\xad\x64\x79" "\xa0\x15\x45\x71\x14\x45\xaf\x36\xdb\xcb\xe9\xfa\xc5\x51\x14\x0f\x45\x51" "\xb4\xff\xc0\x8e\x7d\x07\x76\xee\xfe\xec\xd8\x6f\xed\x39\xb8\x6f\xf7\x8e" "\x5d\x63\x3b\x0e\x8c\x4d\xec\x3e\xb0\xef\xd6\xb1\xbf\xf5\x37\xc7\xf6\x4d" "\xec\xdd\xb5\xe3\xd6\xa9\xef\x6e\xb8\x60\x63\xfb\x71\x2b\xa6\xb3\x45\xd1" "\x8a\xf8\xec\x39\xb5\x4c\x4e\x4e\x4e\x46\x51\x34\xd6\xb9\x2e\x1d\xef\xf7" "\x3e\xfa\xe4\xff\xdb\xf2\xc8\x5f\x7c\x3a\x8a\x36\x9c\xf1\xfd\xb5\xad\x60" "\x3f\xef\xfd\xaf\xaf\x7c\x68\x65\xc1\xd7\x9c\x78\x7c\x72\xd3\xbf\xb8\xf8" "\x81\xdb\x16\xff\xaf\xd3\xdb\x2b\x46\x92\xba\x46\x42\x75\x8d\x64\xd7\xa5" "\x15\x0c\x8f\xbf\xf8\x67\x1f\x7c\xea\x87\x53\x75\xbd\xbd\xac\xae\x87\x5e" "\xb8\xfa\xff\x66\x0a\x9a\x5e\x31\x9b\x27\xd1\x18\x88\x1a\xd3\x77\x06\xe2" "\x25\x85\x75\xcc\x54\x3d\x5b\xcf\xf4\xf6\x6a\xdd\xb8\x73\xd7\xc4\x86\xea" "\xed\x1b\x07\xb6\xef\xbb\x9f\xfb\xc3\x63\xff\xee\x96\x2d\xff\xb4\xbd\x7d" "\x07\x83\x7d\x74\xb9\x7d\xa7\xb6\x6a\x6b\xf2\xfe\x9f\xdd\xfd\xee\x3b\x3f" "\x38\xf1\xfe\x53\xf8\x79\xaf\xda\xde\x1d\x2d\x4c\xd7\x97\x6e\xbf\xc1\x64" "\x7b\x9f\x96\xf4\x75\x5a\xa0\xaf\x46\xa0\xaf\x9b\xc7\x5e\x3e\xfa\xcf\xfe" "\xed\x7f\xfa\xea\x9d\xd1\x86\xd6\xcf\xce\x99\x3b\x76\x55\x5f\x8b\x92\x09" "\xb0\x28\x5e\xd5\xd5\xb8\xe9\x08\x4b\xe2\xe5\x99\xd8\xc1\x24\x3e\x7d\xc6" "\xd3\xc7\xbd\xf7\xc0\x4d\x7b\xdf\xbb\xff\xd6\xdb\x2e\xd8\x79\xd3\x8e\xcf" "\x4e\x7c\x76\x62\xf7\xc6\x8d\x17\x5f\x7a\xe1\xc6\x0b\x2f\xba\x74\xe3\x7b" "\xa7\x5b\x6f\x7f\xed\x5b\xff\xe9\xf8\xef\xee\xb2\xff\xa5\x49\xa6\xa5\xf1" "\xea\xc2\xed\x96\x5f\x9b\x8e\x7b\xce\xf4\xd7\x66\x94\x94\x9d\xde\x74\xdc" "\xc9\x5a\x14\x0d\xb7\x6f\x73\xdb\x39\x0d\xcf\x77\x3d\x9c\x7c\x6f\x38\x5e" "\x31\x27\xd7\x64\x81\xf4\x7b\x47\xbf\xb3\x63\xeb\xab\x3f\xbc\xed\xa9\xd0" "\x2b\x2f\x7e\xb2\x3d\xe2\x50\xb4\xac\x7d\x1b\xaf\x09\x44\xee\xca\x3d\xb0" "\x39\x53\x70\xd1\xf8\x27\xe7\x75\xb9\xe7\x77\x07\x77\xa5\x5f\x73\xaf\xcb" "\x45\xed\xea\xf2\xaf\xcb\xaa\xba\xaa\xe6\xd5\x54\x5d\xd5\xf3\xaa\xb3\xa2" "\x92\xfd\xd8\x0b\xe7\xdd\xf7\xb3\xc7\xbf\xf8\xcf\xaf\xed\x62\x7f\xd1\x11" "\x3a\x5d\x5f\x5a\xe7\x92\xa9\x97\xcb\x85\x51\xc7\xeb\x76\xee\xb6\x2a\xea" "\xab\x8b\xe7\x67\xbc\x68\x3b\x5c\x7f\xc1\xbe\x3f\xbc\x75\xe7\xd6\xc3\x55" "\xfb\xf3\xce\x67\xa6\xf3\x6b\x4e\x3c\x3e\xf9\x3f\xd7\xc4\x1f\x3f\xb8\xff" "\xcf\xf6\xb5\x57\xf4\xf3\xfd\xf2\xaf\x0a\xea\x9a\x7e\x7b\xec\x2c\xa8\xc7" "\xf7\xcb\x99\xaa\x67\xeb\x99\xde\x5e\x83\xc9\xf3\x71\xaa\x6e\xdf\x81\xa8" "\x99\xf4\x35\x5c\x58\xd7\xe6\xf8\xf1\x0f\xbc\xfb\xa6\xa7\x7f\x65\xa6\xbe" "\xc5\x8b\xa3\x5b\x76\x1c\x38\xb0\xef\xc2\xf6\xd7\x37\x6b\x5f\x7f\xbe\xf8" "\xf4\x95\x3b\xef\x5a\x7d\xf6\x9c\xbe\x2e\x6a\x7f\xad\xda\xef\x9f\x93\x5b" "\xae\xdc\xef\x37\x8a\xfb\xab\xda\xef\xe7\xc7\x99\x8d\x2f\xce\x37\x96\x5b" "\x1e\x8e\x9a\x3d\xbd\x4f\x6c\xf9\xe5\x8f\xef\xbb\xfb\xca\x43\x2b\x83\xef" "\x13\x47\xbb\x7d\x9f\xf8\xed\xcc\x52\xb3\xe6\xfb\x44\x23\xf0\x7a\xbf\xff" "\x2f\xbe\x32\xf6\xda\xb5\x9f\x7a\xad\x6a\x3e\x5d\xb1\x7f\xf5\x1d\x2b\x0b" "\xbe\xe6\xdb\x1b\x9f\xfc\xc6\x1f\xfc\xea\x85\xef\xbf\xfa\xca\x0f\xb7\x57" "\x9c\x94\xe3\xf6\xce\x82\x7a\xdc\x0f\xcd\x54\x9d\xd4\x93\x6e\xaf\xe9\xfd" "\xd0\x45\xa7\x4e\x1f\x6f\xdc\xf3\x9c\x79\x21\xc6\xe3\x93\xe7\x7c\xfd\x5d" "\x57\xbd\x7e\xfc\x0b\x9f\x6c\xaf\xa8\xda\xbe\x33\xd1\x45\xdb\x77\x63\xf5" "\x7e\xbe\x19\xe8\xeb\xda\x45\xef\x58\xfe\xc0\x4f\x56\xbf\xa3\x7f\xf3\x77" "\xff\xb6\xbf\x3c\xef\x3d\x4b\x96\x9e\x62\xf3\x77\x30\xd9\xbe\x83\x81\xed" "\x3b\x53\x75\x52\x4f\xb3\x73\xfb\xbe\xe7\xfa\x3d\xbb\x6e\x68\x2f\x9f\xba" "\xc7\x6d\x6d\x03\x15\xe7\x3f\xe9\xfb\xce\xfe\x5b\x6f\xfb\xfc\x8e\x5d\xbb" "\x26\xf6\xed\xef\xae\xaf\x6e\xdf\x4f\xd3\x71\xf2\x5b\xb9\xd7\xf7\xd3\xf4" "\xdd\x63\x45\x45\x5f\xe9\xf3\x35\xdb\x57\xf1\x9d\xa1\x24\xbe\xe0\x5b\xcf" "\x47\xc1\x47\x65\xef\x74\xb3\xbd\xba\x7d\xbd\xa5\xf5\xdf\x90\xcb\xd1\xeb" "\xeb\x0d\x20\x35\xfb\xbe\xb0\x38\xb3\x3e\xbf\xff\x4c\xaf\xfb\xad\x3d\x2d" "\xda\xf2\x9e\x2f\x7e\xeb\x85\x78\xac\xfd\x7e\xd9\xaf\xeb\xad\xe9\x38\x67" "\xe5\xde\x98\xdb\xef\x6e\xcb\xe6\x7d\xbd\xb5\xea\x3c\xe9\x1d\xb9\xe5\xec" "\x79\x52\x2b\xea\xe8\xbb\x6d\xee\x79\xd2\xf4\x43\xaa\xce\x93\xf2\xe3\x54" "\x9d\x27\x9d\x97\x5b\xae\x3e\x8f\xb9\xaf\xb0\x93\xd0\xf3\xb7\x28\x79\xe7" "\x2d\xba\x6e\x9a\xab\xb7\x35\x95\xa1\x70\x7e\xc4\x51\x34\x9a\xe4\x1f\x4d" "\x56\xa5\xc7\x9b\x6b\xdf\x13\x5d\xdc\x7c\xea\x9d\x1f\x8d\xc7\xbb\x9b\x1f" "\xdd\x1e\x4f\xa7\xe3\xfc\x8d\xdc\x06\xea\xf5\x78\xba\x6a\x7e\xac\x8b\x8a" "\xeb\xea\xf7\xfc\x78\x57\xee\x41\xd5\xcf\xf7\xe1\xc2\xca\x06\x03\xcf\x47" "\xd5\xf3\xbd\x2e\x93\x68\x72\xb2\xee\x79\xf9\x48\xa0\xea\xf4\xbc\x7c\x38" "\x8a\x7b\xca\x3f\x3e\xf1\xe8\x33\x5f\xbb\xe6\xe9\x55\xc1\xfc\xdb\x1b\x49" "\xfe\x46\x4f\xf9\x9f\x6f\xbe\x70\xe2\xab\xc7\x46\x97\x06\xf3\x1f\x4e\xf3" "\xb7\x7a\xca\xbf\xee\xcb\x4b\x6f\x3f\x7e\x68\xf3\x40\x30\xff\x63\xe9\xf6" "\x19\xec\x29\xff\x25\xd7\xad\xbd\xf4\xec\x63\x07\x6f\x0e\xe6\xdf\x90\xd6" "\x3f\xd4\x53\xfe\x1f\x3c\xb0\xfe\xf5\xeb\x0e\x7f\xe3\xe9\x60\xfe\x28\xcd" "\x3f\xdc\x53\xfe\xab\x36\x3e\x7c\xd9\xc7\x56\xdf\xf3\x48\x30\xff\x8b\x71" "\x32\xce\xd4\x6b\x37\x8a\x8e\x1c\xdf\x78\x63\x7b\x39\x9e\xbe\x84\x3e\xd8" "\x51\xc7\xa2\x4c\x5d\x51\x7e\x39\x9e\x59\x5e\x5c\xd4\x47\xd4\xec\x8c\x6f" "\xa4\x61\xc9\x00\xcd\x38\xce\xae\x4f\xe3\x72\xeb\xd3\x3e\x5a\xc9\xfa\x73" "\x3b\x6a\x2c\xb2\x25\xb0\x3e\x7d\xd5\x0e\x26\x2f\xec\x9f\xa7\xcb\x51\xfe" "\x4e\xf9\xfa\x74\xf7\x94\xd6\x75\x34\xf0\xfe\x73\xb2\x34\x3a\x8e\x3d\x8a" "\xd6\x57\x5d\x9f\xec\x97\x57\x7f\x34\xfa\x7b\x9d\xcb\xe9\xff\xff\xa7\x73" "\x60\xa0\xd5\x7e\xee\x2e\xca\x6d\xaf\xaa\xf7\x8f\xfc\xde\x3b\xcd\x17\xbc" "\x0e\x1b\xb8\x84\x51\x75\xbc\x30\xf7\xff\xdf\x96\xf4\xf4\xfa\x7b\xf9\xd1" "\x27\xd6\x34\x57\x3d\xf8\x52\xf0\xba\xea\x33\xdd\x5e\x57\xdd\x9b\x59\x5a" "\x52\x71\x5d\xb5\x6e\xbd\x05\xfb\x8b\x66\x67\xbd\x75\xf7\x47\xa3\xa1\xed" "\xf1\x62\x9a\xbf\xde\xfb\x41\x30\x7f\xf2\x7e\x50\x35\xcf\xde\x99\x5b\xae" "\x9c\x67\x8b\x8a\xc7\xab\x9a\x67\xf9\xe3\x94\xe1\x68\x59\x59\xdf\x73\x7a" "\x4f\xbf\xb7\xf5\xa5\x7b\xb7\xef\x7d\xfc\xb9\xf5\xc1\x79\xb6\xa9\xfd\x82" "\xaf\x9e\x67\x0f\x66\x96\x96\x55\xce\xb3\x7a\xff\x2f\x1d\x7c\x5f\x7a\x32" "\xee\x66\x7b\x04\xf3\xa7\xdb\x23\x98\x7f\x53\x7f\x8e\x6b\x82\xf3\x2c\x39" "\xae\xa9\x9a\x67\xe7\xe7\x96\xeb\xcf\xb3\xec\xf1\xe8\xc7\x93\xdb\x5b\x72" "\xf1\xc3\xc9\x15\xe2\xf9\xf6\x7d\xe2\xb2\xef\xbf\xf2\xfa\xc8\xe5\x4f\x04" "\xe7\xd9\x63\xdd\xce\xb3\xdf\xcf\x2c\x8d\x54\xce\xb3\xf6\xf1\xed\x40\x8f" "\xc7\xb7\xc1\xe7\x69\xe6\xf8\x76\xa1\x8f\xcf\xdf\xdc\xc7\x9f\x7d\x3d\x3e" "\x6c\x2f\x37\x72\xcb\xc5\xc7\x87\xc9\x7f\xe7\x2e\xd4\xf1\xe1\xe6\xc0\xfa" "\xf9\x1e\x1f\x0e\xcf\xb9\x33\xdb\x47\xf4\x66\x3c\x3e\x0c\xec\x67\x00\xa0" "\xcc\x77\xef\xbf\xf5\x7f\x77\x2e\xa7\xe7\xff\xe9\x7b\x77\x7a\xfe\xff\xad" "\xdc\xe3\xea\x9e\x57\xe6\x7f\x1e\x2a\xd5\xaf\xf3\xca\x60\xfe\xc7\xfa\x73" "\xbe\x12\x3c\x4e\x9d\x39\x5f\x59\xe8\xf3\xad\x7a\xd7\x91\xab\x8f\xb3\x17" "\xf6\x7c\xcb\x71\x7c\xa7\xa1\xd9\xfc\x33\xd7\x91\xfb\x7e\x5d\xa8\x9d\x7f" "\xe6\xba\xd0\xc2\x9e\x57\x3a\x0f\x49\x96\xa3\xfc\x9d\x36\xe7\x21\x00\x00" "\xbc\x11\xce\xfd\xd7\x5f\xf9\xf5\xce\xe5\xf4\xfc\xbf\xf3\xd8\x6e\xea\xf6" "\xb9\xe4\x7e\xfe\x58\xd0\x79\x6e\x20\xff\x49\x3b\xcf\x5d\xe8\xeb\x24\x6f" "\xa6\xf3\xe8\x8e\xfc\x27\xed\x3c\x7a\xa1\xaf\x83\x2d\xf4\x75\xaa\xf9\x5c" "\x07\xf8\xcf\x67\xa4\xdf\x73\x1d\xa0\x98\xeb\x00\x27\xb7\x2e\x00\x00\xe6" "\x67\xdb\x8d\xfb\x26\x26\xf6\xef\xdd\x71\xfd\xc4\xb6\x9d\xbb\x77\x1e\x98" "\x59\xbf\x68\xfa\xcc\x69\xee\xcf\xa9\xfe\xed\xe4\x76\x53\x2e\x4f\xd5\xcf" "\x4f\x17\xc5\x2f\x29\x89\xff\x64\x30\x7f\xb6\x9e\xf7\x05\xe2\x43\x5a\xc9" "\xff\xb6\x7e\xe6\xfa\xcf\x5d\xb4\xed\x86\x89\x9b\xe7\xdb\x7f\x68\xbc\xaa" "\xfe\x8b\xe2\xcb\xfa\xcf\x9f\x5f\x84\xfa\xbf\x34\x10\x1f\x52\xb7\xff\xd0" "\x78\x55\xfd\x17\xc5\x97\xf5\x7f\x65\x30\x7f\xb6\x9e\xf7\x07\xe2\x43\xea" "\xf5\xdf\xea\xa2\xbe\xee\xfb\x29\xeb\xff\x53\xc1\xfc\xd9\xfe\x7f\x35\x10" "\x1f\x52\xf7\xf9\x0f\x8d\x57\xd5\x7f\x51\x7c\x59\xff\xf9\xdf\x07\x0b\xf5" "\xff\x6b\x81\xf8\x90\xba\xfd\x87\xc6\xab\xea\xbf\x28\xbe\xac\xff\xab\x82" "\xf9\xb3\xf5\x7c\x20\x10\x1f\x52\xb7\xff\xd0\x78\x55\xfd\x17\xc5\x97\xf5" "\x7f\x75\x30\x7f\xb6\x9e\xbf\x13\x88\x0f\xa9\xdb\x7f\x68\xbc\xaa\xfe\x8b" "\xe2\xcb\xfa\xbf\x26\x98\x3f\x5b\xcf\x65\x81\xf8\x90\xba\xfd\x87\xc6\xab" "\xea\xbf\x28\xbe\xac\xff\x4f\x07\xf3\x67\xeb\x19\x0f\xc4\x87\xd4\xed\x3f" "\x34\x5e\x55\xff\x45\xf1\x65\xfd\x6f\x0d\xe6\xcf\xd6\xf3\x77\x03\xf1\x21" "\x75\xfb\x0f\x8d\x57\xd5\x7f\x51\x7c\x59\xff\xd7\x06\xf3\x67\xeb\xf9\x60" "\x20\x3e\xa4\xa8\xff\x68\xbc\xfb\xfe\x43\xe3\x55\xf5\x5f\x14\x5f\xd6\xff" "\x6f\x04\xf3\x67\xeb\xf9\x7b\x81\xf8\x90\xd2\xe7\xbf\xb0\xbe\xee\xc6\xab" "\xea\xbf\x28\xbe\xac\xff\xeb\x82\xf9\xb3\xf5\xfc\x7a\x20\x3e\xa4\xee\xfc" "\x0f\x8d\x57\xd5\x7f\x51\x7c\x59\xff\xbf\x19\xcc\x9f\xad\xe7\x43\x81\xf8" "\x90\xba\xfd\x87\xc6\xab\xea\xbf\x28\xbe\xac\xff\x6d\xc1\xfc\xd9\x7a\x3e" "\x1c\x88\x0f\xa9\xdb\x7f\x68\xbc\xaa\xfe\xf3\xf1\x3f\x4d\x3e\xe7\x38\x14" "\xbf\x3d\x98\x3f\x5b\xcf\xdf\x0f\xc4\x87\xd4\xed\x3f\x34\x5e\x55\xff\x45" "\xf1\x65\xcf\xff\x8e\x60\xfe\x6c\x3d\x1f\x09\xc4\x87\xd4\xed\x3f\x34\x5e" "\x55\xff\x45\xf1\x65\xfd\x7f\x26\x98\x3f\x5b\xcf\x47\x03\xf1\x21\x75\xfb" "\x0f\x8d\x57\xd5\x7f\x51\x7c\x59\xff\xd7\x07\xf3\x67\xeb\xf9\x58\x20\x3e" "\xa4\x6e\xff\xa1\xf1\xaa\xfa\x2f\x8a\x2f\xeb\x3f\xff\x79\x87\xa1\xfe\xff" "\x41\x20\x3e\xa4\x6e\xff\xa1\xf1\xaa\xfa\x2f\x8a\x2f\xeb\x7f\x22\x98\x3f" "\x5b\xcf\xe5\x81\xf8\x90\xba\xfd\x87\xc6\xab\xea\xbf\x28\xbe\xac\xff\x1b" "\x83\xf9\x8b\x3f\x37\x20\x1f\x1f\x52\xb7\xff\xd0\x78\x55\xfd\x17\xc5\x97" "\xf5\xff\xd9\x60\xfe\x6c\x3d\x9f\x08\xc4\x87\xd4\xed\x3f\x34\x5e\x55\xff" "\x45\xf1\x65\xfd\x7f\x2e\x98\x3f\x5b\xcf\x15\x81\xf8\x90\xba\xfd\x87\xc6" "\xcb\xf5\x3f\xd4\xf9\x3b\x4d\xa1\xf8\xb2\xfe\x77\x06\xf3\x67\xeb\xd9\x14" "\x88\x0f\xa9\xdb\x7f\x68\xbc\xaa\xe7\xbf\x28\xbe\xac\xff\xdf\x0a\xe6\xcf" "\xd6\xf3\xc9\x40\x7c\x48\xdd\xfe\x43\xe3\x55\xf5\x5f\x14\x5f\xd6\xff\xe7" "\x83\xf9\xb3\xf5\x6c\x0e\xc4\x87\xd4\xed\x3f\x34\x5e\x55\xff\x45\xf1\x65" "\xfd\xef\x0a\xe6\xcf\xd6\x73\x65\x20\x3e\xa4\x6e\xff\xa1\xf1\xc2\xfd\x37" "\x83\xf1\x65\xfd\xdf\x14\xcc\x9f\xad\xe7\x53\x81\xf8\x90\xba\xfd\x4f\x8d" "\xf7\xaf\x0a\xf2\x56\x3d\xff\x45\xfd\x94\xf5\xbf\x3b\x98\x3f\x5b\xcf\x96" "\x40\x7c\x48\xdd\xfe\x43\xe3\x55\xf5\x5f\x14\x5f\xd6\xff\x9e\x60\xfe\x6c" "\x3d\x57\x05\xe2\x43\xea\xf6\x1f\x1a\xaf\xaa\xff\xa2\xf8\xb2\xfe\xf7\x06" "\xf3\x67\xeb\xb9\x3a\x10\x1f\x52\xb7\xff\xd0\x78\x55\xfd\x17\xc5\x97\xf5" "\xff\x85\x60\xfe\x55\x93\xcd\x8e\xf5\xd7\x04\xe2\x43\xea\xf6\x1f\x1a\xaf" "\xaa\xff\xa2\xf8\xb2\xfe\xf7\x05\xf3\x67\xeb\xf9\x74\x20\x3e\xa4\x6e\xff" "\xa1\xf1\xaa\xfa\x2f\x8a\x2f\xeb\x7f\x7f\x30\x7f\xb6\x9e\xad\x81\xf8\x90" "\xba\xfd\x87\xc6\xab\xea\xbf\x28\xbe\xac\xff\x03\xc1\xfc\xd9\x7a\xae\x0d" "\xc4\x87\xd4\xed\x3f\x34\x5e\x55\xff\x45\xf1\x65\xfd\x1f\x6c\xdf\x0c\xce" "\xcd\x9f\xad\xe7\x37\xb2\xf1\x95\xea\xf6\x1f\x1a\xaf\xaa\xff\xa2\xf8\xb2" "\xfe\x6f\x0e\xe6\xcf\xd6\x73\x5d\x20\x3e\xa4\x6e\xff\xa1\xf1\xaa\xfa\x2f" "\x8a\x2f\xeb\xff\x50\x30\x7f\xb6\x9e\xdf\x0c\xc4\x87\xd4\xed\x3f\x34\x5e" "\x55\xff\x45\xf1\x65\xfd\xe7\x3f\x07\x32\xd4\xff\xb6\x40\x7c\xc8\x4c\xff" "\x07\xf6\x4d\x4c\x6c\x3b\xb8\xf7\x86\x1d\x07\x26\xb6\xed\xde\x73\xc3\xc4" "\xfe\x6d\x87\xf6\xed\x3c\x70\x60\x22\x39\x50\xab\xfb\x7b\x65\xe1\xdf\x0b" "\x7a\x83\x7f\x91\x85\x52\x99\xd7\x47\x7b\x92\xec\xdc\xbd\x7f\x62\xdf\xdc" "\xfd\xf7\x50\xe9\xfc\xed\x9c\x13\xd1\xf4\x8e\xbc\x7d\x3d\x68\x30\x7e\x7b" "\x57\xf1\xf9\x8f\xbd\xee\x75\xd6\x9c\x2a\xf3\x7d\x51\xd4\x2a\xdd\x5e\x67" "\xe5\x96\x4f\x4f\x7e\xd6\xf0\xf4\xc0\xe7\xd1\xe6\xe3\xd3\xb4\xab\xa7\xef" "\xcc\xfd\x3c\xda\xfc\xb0\xad\x8a\xcf\x71\xad\xda\x3f\xe5\xc7\x0f\xed\x9f" "\xe2\x92\xf8\xa2\xfd\x6b\x68\x7f\x56\xf5\xfe\x37\xef\xfd\x5f\xe5\xfc\x1e" "\x2c\xed\x3f\xbf\x7a\x20\x39\x54\x19\x88\xcf\xe8\x2a\x3e\x2a\xf9\xfb\x6e" "\xdd\xcd\xd7\x7a\xbf\x77\x1a\x9c\xaf\x2f\x76\x37\x5f\xf3\x9f\xbb\x5e\x35" "\x5f\xf3\xf1\xf3\x9d\xaf\xc3\x35\xe7\x6b\x7e\xfc\xd0\x7c\x6a\x94\xc4\x97" "\x1d\x0f\x75\x3b\x5f\xb7\x06\xe2\x53\xdd\xcf\xcf\x38\xd8\x6f\xd1\xbc\x9a" "\xef\xdf\x19\x4c\xd3\xce\xeb\xef\x0c\xe6\xbe\xcc\xd1\xc3\xdf\x32\xe8\xfe" "\xf5\x50\xef\xf7\xc8\x83\xaf\x87\xa4\xe8\xaa\xd7\x43\xfe\xf7\xb8\xab\x5e" "\x0f\xf9\xf8\xf9\xbe\x1e\x86\x6a\xbe\x1e\xf2\xe3\x57\xbd\x1e\x8a\xe2\xcb" "\xce\x8f\xbb\x7d\x3d\x5c\x1d\x88\x0f\xc9\xcc\x87\xc5\x51\xc9\x7c\xa8\xf7" "\xb9\x05\xc1\xf9\xb0\xa1\xbb\xf9\x90\xff\x3b\x56\x55\xf3\x21\x1f\x3f\xdf" "\xf9\x30\x58\x73\x3e\xe4\xc7\xaf\x9a\x0f\x45\xf1\x99\xf9\xd0\xfe\x58\xf9" "\xe0\xf3\x5b\x75\x3d\xbf\xdb\xf9\x90\xd7\xfd\xfe\xa2\xde\xe7\x8a\x04\xe7" "\xc7\xf6\xee\xe6\x47\xfe\xef\x49\x54\xcd\x8f\x7c\xfc\x7c\xe7\x47\x5c\x73" "\x7e\xe4\xc7\xaf\x9a\x1f\x45\xf1\xa1\xff\x4f\x89\xe6\x31\x3f\x3e\x19\x88" "\x4f\x65\xde\x3f\x6f\xdc\x3f\x7d\x52\xbf\x73\xc7\xae\x9d\xb7\xe5\x7e\x00" "\x63\x24\x79\xff\x7c\xa3\xdf\x0f\x4f\xca\xfb\xf2\x5f\xfe\xda\x9f\xff\xbc" "\xfd\x25\xa9\xa3\x31\xa7\x8e\xaa\xe3\x89\x38\x57\xc7\xf2\xa4\x92\xe5\xa1" "\xbf\x7b\x18\xa8\xfb\xfa\xff\xf2\x6f\xb6\x7c\xeb\x17\x5f\xfc\x4a\x14\x6d" "\x38\xa3\xb9\x26\x5c\xf7\x6c\xc9\xb3\x5f\x72\xe2\xf1\xc9\x15\x77\xac\xfb" "\xda\x35\x6f\x7f\xe9\x83\x53\xf5\x37\x4a\xeb\x9f\x89\x4c\xff\x6e\x71\xc5" "\xdf\x3b\xce\xc7\xa7\xfd\xb4\x76\xed\xd9\x7f\xe0\x57\x6e\xdc\x73\x70\x77" "\xb7\x3f\x71\x55\x2e\xfd\x3c\x94\xc6\xcc\x72\xd9\xe7\xa1\x0c\xf5\xfe\x79" "\x28\xc9\xca\x66\x97\x9f\x6f\x12\xfa\x7d\x82\xf9\x7e\xbe\xc9\xa2\x39\x77" "\x4e\x4d\x5d\x7f\xbe\x09\xc0\x5b\xc4\xe9\x8f\x3d\xb9\xac\x73\x39\xfd\xfc" "\xbf\xf4\xfd\x68\x34\xd9\xf7\x0d\x25\x3b\xc0\x74\x7d\xf7\xc7\xd9\xf5\x3e" "\x5f\x2f\x78\x9c\x7d\xb8\xbb\xe3\xec\xf5\xf9\x7e\x2b\x8e\xb3\xf3\xf1\x69" "\xbf\xdd\x1e\x67\x37\x6a\x1e\x67\xe7\xc7\xaf\x3a\xce\x2e\x8a\x2f\xfb\xb9" "\xbd\x6e\x8f\xb3\x3f\x11\x88\x9f\xaf\xec\x3c\x99\x9a\x20\xd3\xf3\x63\x62" "\xdb\xa1\x3d\xfb\x3a\x7f\x26\x6e\xa1\xff\x6e\x6d\xff\xeb\x2d\x3b\x7f\x5c" "\x1c\xfc\xfb\x7f\xdd\xfe\x1d\xdf\xfa\xf5\x2d\xec\xe7\x36\xf6\xaa\xfb\xfa" "\x7b\xb9\x9e\xb7\xb8\xeb\xcf\x85\x5c\xf8\xfa\x17\xf6\xef\x00\x2f\x7c\xfd" "\x0b\xfb\x77\x9e\x7b\x35\xbf\xf3\xa5\x1a\x9f\x1f\x99\x7c\x58\x64\xd5\xe7" "\x47\x56\x9d\x47\x85\x7e\x2f\x7d\xbe\xe7\x51\x8b\xe7\xdc\x39\x35\x39\x8f" "\x02\x80\x53\xdf\x3f\xd9\xf7\xa3\x7f\xd9\xb9\x9c\x9e\xff\xa7\x3f\x63\x9f" "\x9e\xff\x7f\x29\x59\x6e\xf6\x79\xfc\xba\xff\x0f\x57\x75\x1e\xb5\xd0\xe7" "\x95\x0b\x7d\x9c\xfc\xe6\xff\xfc\xfd\x85\x3d\x0f\x72\x3e\x50\x32\xd8\x29" "\xc0\xf9\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x40\xb1\xdf\xff\xef\xff\xf1\x9b\x9d\xcb\x03\xad\xd1\xe9\xdb" "\xe7\x7f\x67\xff\x6b\x9f\x38\xeb\x43\xdf\xbd\x7b\xe2\xf8\x1d\x1f\xf9\xa3" "\x9b\xee\x3a\xf3\x8f\x57\xbe\x36\x72\xcf\xe5\x1f\xbf\xff\xd2\x0f\x7f\x6f" "\xfb\x9f\x2c\x1f\x5f\xbb\x6e\xe2\x92\xaf\x1f\xb9\xe2\xde\x7b\x9e\xfd\xc0" "\x2f\x9e\x7d\xe8\x91\xcb\x2b\x07\x1a\x69\xdf\x9c\x9f\x2c\x0e\x46\x51\xfc" "\xd3\x38\x8a\xd6\xfe\xe8\xc8\x43\xf7\x7e\xfb\x4f\xcf\x9c\x5a\x17\x4f\x8d" "\x1f\x8f\xdc\x19\x2d\x5f\x1e\xaf\xf8\xe6\xf2\x38\x97\x61\xc3\x89\x28\x8a" "\x6e\x98\xa9\x33\xfb\xcd\x23\xc7\x37\xde\x38\x75\x7b\xd7\x97\x06\x32\xeb" "\x4f\xcf\x25\xc9\xf7\x15\x0d\x37\xd3\x7a\x32\x75\x46\xb7\x54\x76\xc4\x9b" "\xd0\x60\x32\xcf\x6e\xdf\xf6\x99\xc7\x9f\xf9\xfc\xf8\xb7\x8f\x8c\xed\xdd" "\xf8\x93\x63\x17\xef\xb9\x73\x36\x24\x1e\xec\x98\x4f\x51\x74\xda\xf6\xce" "\xc7\x2f\x8a\xa2\x68\x28\xf9\x37\x25\x9d\x6d\xa3\xe9\x83\x93\xdb\x4d\x51" "\x14\x2d\xe9\x78\xdc\xfb\x2a\xea\x3a\xaf\xcb\xfa\x2f\x08\x2c\xaf\x49\x6e" "\x17\x27\xb7\xc3\x15\x79\xd2\xef\x9f\x9b\x5b\x6e\x75\x59\x47\x2b\x77\x3b" "\xd0\xe5\xe3\x7a\xf4\x57\x8d\x85\xcd\x3f\x47\x7e\xfb\xe5\x77\x46\x0b\x25" "\xed\xf3\xb4\xe4\xf6\xa9\xe4\xf6\xfc\x79\xe6\x69\xa6\xff\xe2\xa8\x11\x47" "\xad\x99\xf2\x77\xc5\xb3\x73\x24\xea\x78\xde\xe2\x28\x9e\x9e\xdb\x83\x33" "\xcb\x8d\xe9\xe5\x68\x66\x39\xca\x2f\xc7\xb9\xe5\x46\x6e\xb9\xb9\x28\xd7" "\xd7\xf4\xb8\xc9\x86\x6d\xc6\x71\x76\x7d\x1a\x97\x5b\x9f\xee\x8e\x5b\xc9" "\xfa\x73\x3b\xf7\xd5\x05\x36\x07\xd6\xaf\x4a\x6e\x07\x93\x17\xea\xcf\xd3" "\xe5\x28\x7f\xa7\x6d\x78\xce\x9d\xd9\x3e\xa2\x8e\xba\x8e\x9e\xac\x89\x11" "\xd0\x08\xbc\xf6\xd2\xf5\x33\xe5\x25\x4f\xc6\x70\xb2\x6e\x38\x5e\x31\xe7" "\x31\x93\x05\xd2\xef\x1d\xfd\xce\x8e\xad\xaf\xfe\xf0\xb6\xa7\x46\x02\x75" "\xc4\x4f\xc6\x49\xfe\xb8\xa7\xfc\xe3\x13\x8f\x3e\xf3\xb5\x6b\x9e\x5e\x35" "\x1a\xca\xbf\xbd\x91\xe4\x6f\xf4\x94\xff\xf9\xe6\x0b\x27\xbe\x7a\x6c\x74" "\x69\x30\xff\xe1\x34\x7f\xb3\xa7\xfc\x5b\x7e\xf9\xe3\xfb\xee\xbe\xf2\xd0" "\xca\xe0\xf6\x39\x9a\x6e\x9f\x56\x4f\xf9\xd7\x7d\x79\xe9\xed\xc7\x0f\x6d" "\x1e\x18\x0b\xe5\x7f\x2c\xcd\x3f\xd8\x53\xfe\x4b\xae\x5b\x7b\xe9\xd9\xc7" "\x0e\xde\x1c\xac\x7f\x43\xba\x7d\x86\x7a\xca\xff\x83\x07\xd6\xbf\x7e\xdd" "\xe1\x6f\x3c\x1d\xcc\x1f\xa5\xf9\x97\xf4\x94\xff\xe5\x47\x9f\x58\xd3\x5c" "\xf5\xe0\x4b\xc1\xfc\xcf\xa4\xdb\x67\xb8\xa7\xfc\x57\x6d\x7c\xf8\xb2\x8f" "\xad\xbe\xe7\x91\xe0\xf6\x7f\x31\xcd\xbf\xac\xa7\xfc\x5b\x5f\xba\x77\xfb" "\xde\xc7\x9f\x5b\x1f\x9c\x9f\x9b\xd2\xed\x33\xd2\x53\xfe\x13\x97\x7d\xff" "\x95\xd7\x47\x2e\x7f\x22\xb4\xef\x8c\x1f\x3b\xd9\xef\xb0\x00\x6f\x2d\x6f" "\x4b\x8e\xb1\xee\x4b\x96\x7b\x3d\xcf\xac\xab\xe3\x7c\xe1\xe1\xb1\x56\xfb" "\x98\x6f\x69\xf2\x6f\x59\x3f\x07\xca\x89\x3b\xce\x5d\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x20\x64\xcf\x64\xf3\x60\xe7\xf2\x2b\x4f\xdf\x7f\xc5\xe7\xfe\xc7\xb6\xff" "\xd6\x8a\xa3\x28\x0e\x3c\x66\xb2\x40\xfa\xbd\xe6\xe2\xf1\xf1\xb1\x1e\xea" "\x58\xf7\xe5\xa5\xb7\x1f\x3f\xb4\x79\x20\x5d\x9e\x1a\x7b\xb4\x87\x3c\x00" "\x00\x00\xc0\x5c\xab\x5f\xfe\xe2\x17\x3a\x97\xd3\xf3\xf0\x46\xb2\x1c\x47" "\x83\xd1\x68\x74\x28\x1e\x8a\x56\x17\x3e\x3e\xbd\x46\xb0\x3a\x5d\x8a\xb3" "\xeb\xf3\xd7\x10\x86\x66\x23\xfb\x92\xa7\xd1\xa7\x3c\xcd\x3e\xe5\x69\xf5" "\x29\xcf\xa2\x3e\xe5\x59\xdc\xa7\x3c\x03\x7d\xca\x33\x58\x91\x67\x30\xea" "\x2e\xcf\x50\x69\x9e\x46\xd7\xf5\x2c\xe9\x53\x9e\xe1\x3e\xe5\x59\xda\xa7" "\x3c\xcb\xfa\x94\xe7\xb4\xde\xf3\xb4\x3a\xf3\x9c\xde\xa7\x7a\x46\x4a\xf3" "\x74\x3f\x0f\x97\xf7\x29\xcf\x8a\x3e\xe5\x79\x5b\x9f\xf2\xac\xec\x53\x9e" "\x33\xfa\x94\xe7\xed\x7d\xca\x73\x66\x9f\xf2\xe4\xaf\x29\xcf\x77\x1e\x2e" "\x4b\x22\xcf\x0a\xe5\x99\xbe\xd3\xac\xcc\xd3\x8a\x9b\x33\xdf\x28\xba\x9e" "\x9e\x8e\x73\x76\xcd\x71\x86\xbb\x1c\x27\x7f\xcd\x7e\xbe\xe3\x0c\x75\x39" "\xce\x79\x35\xc7\x19\x8c\xef\xea\x6a\x9c\x77\xd5\x1c\x27\xee\xb2\x9f\xf5" "\xb9\xc7\x35\xe6\x39\x4e\xa3\x62\x9c\x74\xde\xde\x12\xea\x27\x5d\xea\x72" "\xfe\xdf\xda\xa7\x3c\xb7\xf5\x29\xcf\xed\x7d\xca\xf3\xdb\x7d\xca\xf3\x0f" "\xcb\xf2\x2c\x8b\xba\xce\xf3\x8f\xfa\x54\xcf\x1d\x35\xf3\x00\x84\xfc\xee" "\xb3\xe7\xff\x41\xe7\x72\x7a\xfe\x9f\x9e\x7f\xc6\xd1\x48\x34\xd0\xba\x28" "\x5a\x92\xec\x71\xf2\x57\x01\xd2\xf3\xdd\x73\xa6\xbf\xce\x7d\xbf\x0b\xed" "\x90\xd2\x7c\x6b\x72\xeb\x17\x55\xe5\xcb\x9f\x60\xe7\xf2\x9d\x33\xdf\xfa" "\xf2\x17\x10\x72\xf9\xde\x51\x9a\xaf\x35\xe7\x7c\xb5\x20\x5f\xab\x33\xdf" "\xba\x3e\xe5\x03\x00\x00\x80\xf9\xf8\xc7\x27\x6e\xcf\xfc\xd7\xdc\xdc\xf3" "\xff\xd1\x68\xa0\xb5\x72\xe6\xfc\xf5\x9d\xb9\xc7\x57\x9e\xaf\xe7\xff\x23" "\x3b\x91\xe6\x3b\xbf\x4f\xf9\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xff\xcf\xae" "\xbd\xc7\xc8\x55\x5e\x07\x00\xff\xee\xce\xec\xcc\x74\x79\x78\x41\xb6\x19" "\xe3\xd7\xca\x76\x31\x08\xe1\x07\x96\xab\x42\x5b\x18\x59\x2a\x12\x55\x61" "\x4d\xa9\xcd\xc3\x42\x5b\x17\x16\xd6\x62\xb1\xc1\x6b\x03\x76\x5b\x99\x42" "\x55\x5b\x2b\x51\xd1\x9a\xb6\xe1\xf5\x47\x0c\x41\x11\x42\x01\x24\x24\x8b" "\x64\x23\x11\x41\x82\xf2\x47\xac\x58\x84\x88\x47\x36\x0b\x1b\x04\xff\xa0" "\x40\xf0\x0b\x30\xc9\x46\xb3\x3b\xdf\xee\x9d\x99\x1d\xd6\x4c\x82\x1d\x27" "\xbf\x9f\xd0\xbd\x73\xee\x3d\xe7\x3b\xdf\xbd\x48\x48\xe7\x2e\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7f\xf8\x7e\xfa" "\xbf\xbf\x7a\x39\x1d\x0f\x0f\xf4\x77\xf6\x0c\x75\x0d\x86\x24\x94\xff\x99" "\xd4\xc8\x24\xe2\xbd\x4c\xae\x54\xea\x68\x62\x1f\x1f\xbd\xb2\xfe\xfa\x5f" "\xbe\xb1\x7d\x6f\x8c\xcb\xbd\xf3\xd9\x26\x16\x02\x00\x00\x00\xea\x3c\x7b" "\xc9\xac\x73\xd3\x71\x9c\xc3\xe3\xe8\x9d\x84\x42\xc8\x67\x97\x87\x7c\x92" "\xab\xaa\x2b\x56\xbe\x03\x14\x2b\x71\x4b\xfb\xd8\x79\xde\x92\xb0\x32\xb3" "\xf7\xcf\x2f\x4f\x4a\x2d\xa3\xf1\x99\xc9\x19\x55\x75\x85\x4a\x5d\xa1\x12" "\x67\x2a\x75\x7d\xdb\xb6\xdf\xba\xbe\xb7\xb7\x7b\xf3\x57\xf8\xa3\xdc\xa7" "\xf6\x39\x6a\xf7\x93\x84\x30\xfa\xf9\x62\xde\xe9\x61\xcd\x92\x9d\x2f\xed" "\x4b\x3a\xc6\x9e\xa3\x6d\x8a\xe7\x68\xa9\xd4\x2d\xdd\x72\xdb\xed\x4b\xfb" "\xb6\x6d\xbf\x60\xc3\x6d\xeb\x6f\xe9\xbe\xa5\x7b\xe3\x8a\x15\x2b\x2f\x5a" "\xbe\x62\xf9\x85\x17\xad\x58\x7a\xf3\x86\xde\xee\x65\x63\xc7\x90\x9f\x62" "\xbd\x10\x42\xa9\xfa\xbd\x4c\xf1\x2f\x12\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x8e\x83\x1d\x3f\xdc\xfb\x1f\xe9\x78\x78\xa0\xbf" "\xb3\x67\xa8\x6b\xb0\x2d\x09\x21\x69\x50\x33\x12\x25\x13\x17\xe2\xbd\x4c" "\xae\x54\xea\x68\x62\x1f\x6f\x3d\xf2\xf8\x9c\xcc\xac\x07\xf7\xc7\xb8\xbc" "\x74\x3e\xdb\xc4\x42\x00\x00\x00\x40\x9d\xef\x3d\x3b\xeb\xd2\x74\x1c\xe7" "\xf0\x38\x7a\x27\xa1\x10\xf2\xd9\x5c\xc8\x84\x59\xa3\xf1\x82\x89\xd4\x6c" "\x79\xf0\x8f\xd7\x17\xd5\x5c\x3f\x1e\x7b\x07\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x8e\xaf\x03\x87\x3b\x7f\x9e\x8e\x87\x07\xfa" "\x3b\x7b\x86\xba\x06\x4f\x49\x42\x48\x1a\xd4\x8c\x4c\x22\xde\xcb\xe4\x4a" "\xa5\x8e\x26\xf6\xb1\x76\xc5\xd7\x2e\xfd\xbb\xd9\xf7\x3d\x1c\xe3\x72\xef" "\x62\x13\xeb\x00\x00\x00\x00\xf5\x5e\x3b\xb7\xf5\xbe\x74\x1c\xe7\xf0\x96" "\x4a\x9c\x84\x42\x28\x86\x85\xa1\x35\x99\x55\x55\x17\xbf\x0d\x9c\x5d\xb3" "\x5e\x6d\x5e\x5c\x67\xee\x31\xe6\xd5\x7e\x3b\x68\x94\xb7\xf0\x18\xf3\xce" "\x39\xc6\xbc\xf3\xa6\xc8\xbb\xb2\x72\xbe\x3b\x00\x00\x00\xc0\xc9\xe7\xba" "\xf6\x1f\xad\x4d\xc7\x71\xfe\x6f\xad\xc4\x49\x68\x0f\xf9\x6c\x31\x64\x2a" "\xf1\x54\x73\x7c\xfc\x2e\x30\xbf\x26\x2f\xd6\x4f\x35\xdf\xc7\xfa\x05\x0d" "\xea\xa7\x9a\xfb\x63\x7d\xed\xdc\x0f\x00\x00\x00\x7f\xca\x2e\x78\xff\xb9" "\xcf\xd3\x71\xfd\xfc\x5f\x0c\xf9\x6c\x61\x7c\xfe\x9e\xea\xef\xe9\x57\x54" "\xce\xfe\x4e\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x34\xf2\xfd\xc3\x97\x7f\x27" "\x1d\x0f\x0f\xf4\x77\xf6\x0c\x75\x0d\x66\x92\x10\x92\x06\x35\x23\x93\x88" "\xf7\x32\xb9\x52\xa9\xa3\x89\x7d\xac\xf9\xcd\x7b\xbb\xee\xbd\xfa\xae\xe9" "\x31\x2e\xf7\xce\x67\x9b\x58\x08\x00\x00\x00\xa8\xf3\x74\xee\x2f\xef\x4a" "\xc7\x71\x0e\x8f\xa3\x77\x12\x0a\x21\x9f\x6d\x0b\xad\xe1\x94\xd1\xb9\xff" "\x9d\xdc\xb4\xe9\x1b\xfe\x7d\xf6\xdc\x10\x42\x69\x34\x21\x97\x0b\x77\xaf" "\xdf\xb2\x65\xf3\x85\x63\xc7\x98\xf7\x0f\xc9\x9e\xbf\x59\x7c\xdb\xc0\xf9" "\x75\x79\xcb\xc7\x8e\xc7\xff\x49\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x80\xdf\xd5\x8a\xa7\x76\xaf\x4b\xc7\xc3\x03\xfd\x9d\x3d" "\x43\x5d\x83\x7f\x96\x84\x90\x34\xa8\x19\x99\x44\xbc\x97\xc9\x95\x4a\x1d" "\x4d\xec\xe3\xb5\xdd\xe7\x1d\xbd\xe1\x81\x17\x06\x62\x5c\xee\x5d\x6c\x62" "\x1d\x00\x00\x00\xa0\xde\x9c\xde\x17\x7f\x91\x8e\xe3\x1c\x1e\x67\xff\x24" "\x14\x42\x31\xe4\x42\x2e\xcc\x1c\x8d\xd3\xb3\x7e\x59\x4b\xcd\x7a\x8d\xbe" "\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7f" "\x3c\xfa\xb6\x6d\xbf\x75\x7d\x6f\x6f\xf7\x66\x3f\xfc\xf0\xc3\x8f\xf1\x1f" "\x27\xfa\xbf\x4c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xc0\x89\xf2\xed\x8d\xff\xf3\x61\x3a\x1e\x1e\xe8\xef\xec\x19" "\xea\x1a\x2c\x24\x21\x24\x0d\x6a\x46\x26\x11\xef\x65\x72\xa5\x52\x47\x13" "\xfb\xf8\x8b\x1b\xe6\x5d\x34\xf7\xe0\xd6\x3b\x63\x5c\xee\x5d\x6c\x62\x1d" "\x00\x00\x00\xa0\xde\xba\x0f\xb6\x1e\x4c\xc7\x71\x0e\x8f\xb3\x7f\x12\x0a" "\xa1\x18\x5a\x43\x6b\x98\x51\x89\xeb\x8d\xce\xff\xed\xc7\x63\xb7\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x89\x34\x3f\x24\x61" "\xe4\x4b\x3a\x6b\xf5\x89\xde\x35\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\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\x55\x38\xf4\xfa\x9a\x47\xd2\xf1\xf0" "\x40\x7f\x67\xcf\x50\xd7\xe0\x69\x49\x08\x49\x83\x9a\x91\x49\xc4\x7b\x99" "\x5c\xa9\xd4\xd1\xc4\x3e\xae\xdf\xff\x9f\xff\x74\xfb\x9e\x97\xcf\x8b\x71" "\xb9\x77\x3e\xdb\xc4\x42\x00\x00\x00\x40\x9d\xd6\xf7\x5f\xff\xe7\x74\x1c" "\xe7\xf0\x38\x7a\x27\xa1\x10\xf2\xd9\x39\x21\x1f\xe6\x54\xae\xf4\x56\x2f" "\x90\x64\x62\xe2\xa4\xdf\x05\x26\xea\xfe\xb5\xaa\x2c\x73\xcc\x75\xbb\x6a" "\x76\x3c\xb6\xb3\x42\xe5\x3b\x44\x61\x7c\x9f\x61\xf4\xb3\xc3\x44\xdd\x03" "\x5f\x58\x57\xac\x5c\x6d\x69\x3f\xb6\xf7\x04\x00\x00\x00\x27\xb3\x19\xbb" "\xae\xfc\xb7\x74\x1c\xe7\xff\xd6\x4a\x9c\x84\xf6\x90\xcf\xce\x48\xcd\xd5" "\xb7\x57\xd5\xb7\x1d\xf3\x1c\xff\x60\x55\xdd\x69\xc7\x5c\xf7\xcd\xaa\xba" "\xf6\x29\xea\x7e\x0f\xaf\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x68" "\xd2\xfd\xab\x5f\x39\x2b\x1d\x0f\x0f\xf4\x77\xf6\x0c\x75\x0d\x26\x49\x08" "\x49\x83\x9a\x91\x49\xc4\x7b\x99\x5c\xa9\xd4\xd1\xc4\x3e\x4a\xdd\x8f\xbc" "\xf8\xe4\xb5\x03\xb3\x62\x5c\xee\x5d\x6c\x62\x1d\x00\x00\x00\xa0\xde\xd5" "\xef\x15\xfe\x3b\x1d\xc7\x39\x3c\xce\xfe\x49\x28\x84\x62\x98\x1b\x4e\x0f" "\x73\x47\xe7\xfe\xd0\x5e\x5d\x1f\xf3\x4e\x29\xfd\xf8\xcd\x55\x7b\xdf\xb8" "\x2e\x84\x65\x33\x5f\x9d\x97\x6d\xd8\xef\xff\xf7\x5d\xf3\x61\x38\xf2\xd7" "\xef\x7c\x32\x76\x18\x0d\x43\x68\xa9\x4e\x6a\x09\x61\x5a\xa5\x5f\xd2\xa0" "\xdf\x8d\x3f\x79\x6a\xcd\x4b\x9f\xef\x7c\x2c\x84\x65\x33\x32\x73\x1a\xf7" "\x9b\x68\x35\x71\xa8\x91\x94\x46\xce\xdc\xb1\xe8\xc9\x6b\x67\xee\x5f\xd5" "\x70\x19\x00\x00\x00\x38\xa9\x15\x1e\x3f\xf4\x8d\x74\x1c\xe7\xff\x38\x51" "\x27\xa1\x3d\xe4\xb3\x1b\x1b\xce\xff\x31\xef\x4b\xcd\xff\x9d\x7d\xb3\x77" "\x4c\xaf\x1c\x2b\x5f\x00\x6a\x2a\x5a\xda\x2b\xfd\x5a\x1a\xf4\xeb\xff\xf8" "\xb1\x8e\xc3\xeb\xfe\xf1\x70\x79\xfe\x7f\x75\x5e\x61\xfc\xff\x15\x38\x77" "\x61\x75\xfe\x44\xab\x96\xaa\x2b\x35\xdf\x1c\x92\xd2\xc8\xfc\xe7\xce\x59" "\x7b\xf4\xd0\x1d\x57\x8d\x5d\x88\xfd\x33\x0d\xfa\xaf\x6b\x5d\x70\xc6\xee" "\x0f\x66\x2f\x88\xfd\x0b\x95\xeb\x37\x85\x46\xfd\xab\x8f\x35\x92\xd2\x48" "\x5f\xd7\x91\x85\x4b\xda\x4e\xbd\xac\xba\x7f\x08\xa1\x63\xb2\xfe\x5f\xbf" "\xfc\xd9\x4f\xd7\x3c\xfc\xf1\x75\x63\xfd\x1b\xbf\xef\xa5\x3f\x1b\xfe\xdb" "\xe9\x61\xd3\xff\x15\x7a\xe3\x71\xec\x4a\x7d\xff\xd5\x8f\xae\xdc\xbd\x3d" "\xf7\xee\xb4\xea\xfe\x49\x83\xfe\x8b\x5f\x7e\xfe\xe0\x33\x77\xaf\xb9\xbf" "\xf6\xf9\xcf\xce\x4e\xd6\xbf\xfe\x58\xa3\xdc\x35\x3b\xd2\x7f\xe0\xde\xc5" "\xf7\xac\xea\xbe\x38\xd5\xbf\xa5\x41\xff\x3b\x3b\xde\xfa\xe8\xbf\xbe\xf5" "\xdd\x27\xca\xfd\x0f\xcc\x6f\x1b\xef\xbf\xf8\x0b\x9e\x7f\xca\xfe\xfb\x16" "\xee\x3a\xb0\x67\xe7\x43\xeb\xaa\xdf\x7f\xa9\xbe\xff\x3d\xe1\xc6\x0b\x36" "\x3f\xbf\x6d\xc3\xf5\x0f\xd4\x3e\x7f\x5b\xcd\xc2\xe9\x37\x9f\x3e\xd6\xbf" "\xff\xb7\xe7\x24\x57\x6c\xed\x7b\x73\x73\xed\x2d\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x80\x93\x5b\xd7\x33\x9f\x1d\x49\xc7\xc3\x03\xfd\x9d" "\x3d\x43\x5d\x83\x2d\x49\x08\x49\x83\x9a\x91\x49\xc4\x7b\x99\x5c\xa9\xd4" "\xd1\xc4\x3e\x7e\x90\xd9\xf7\xd9\x13\x07\x8b\xa7\xc6\xb8\xdc\xbb\xd8\xc4" "\x3a\x00\x00\x00\x40\xbd\xab\x56\xbd\x7d\x4b\x3a\x8e\x73\x78\x9c\xfd\x93" "\x50\x08\xc5\x90\x0b\xb9\xd0\x36\x3a\xf7\x9f\xb9\x63\xd1\x93\xd7\xce\xdc" "\xbf\x2a\xb4\x57\xee\x57\xce\xd9\xde\x4d\x7d\x5b\xce\xbf\x79\xd3\xd6\x8d" "\x37\x1d\xef\x47\x00\x00\x00\x00\xa6\xb0\xe7\x92\x4f\x57\xa5\xe3\x38\xff" "\x67\x2b\x71\x12\xda\x43\x3e\xbb\x28\xb4\x56\xe6\xff\xd5\x8f\xae\xdc\xbd" "\x3d\xf7\xee\xb4\x38\xff\x87\x10\x46\xff\xdc\x9f\xbd\x79\x43\x6f\xf7\xb2" "\x30\xfe\x9d\xa0\xaf\xeb\xc8\xc2\x25\x6d\xa7\x5e\x16\xf3\x32\x95\x73\xa1" "\x9c\xb7\xe4\xc6\x4d\xbd\x95\xcf\x04\x71\xdd\x17\x9e\xfe\xab\xe5\x17\x5f" "\x73\xf5\x78\x7e\x4b\x3a\xff\xc2\x89\xbc\xf9\xcf\x9d\xb3\xf6\xe8\xa1\x3b" "\xae\x9a\x34\x6f\xc5\x44\xde\xdb\x73\x92\x2b\xb6\xf6\xbd\xb9\x39\xb5\xcf" "\xd2\x78\xde\xf2\x89\xbc\xfe\x03\xf7\x2e\xbe\x67\x55\xf7\xc5\xf1\x39\x92" "\xca\xb9\x50\x79\x9e\x98\xb7\x6f\xe1\xae\x03\x7b\x76\x3e\xb4\x2e\xe6\xb5" "\x54\xce\x6d\x95\xf5\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x10\xce" "\xf8\xe4\xd7\xff\x92\x8e\x87\x07\xfa\x3b\x7b\x86\xba\x06\x43\x26\x84\xa4" "\x41\xcd\xc8\x24\xe2\xbd\x4c\xae\x54\xea\x68\x62\x1f\x9f\x5d\xfa\xea\xf0" "\xd1\xf6\xbf\x7f\x3c\xc6\xe5\xde\xf9\x6c\x13\x0b\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xfc\x96\x1d\x38\x10\x00\x00\x00\x00\x00\xf2" "\x7f\x6d\x84\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x2a\xec\xd4\x4f\x68\x1c" "\x55\x1c\x07\xf0\xf7\x76\xb7\xee\xb6\x5b\xea\x6e\x29\x74\x23\x35\xb4\xd8" "\x8b\x05\xa1\x10\x2c\xf6\x20\xe4\xe2\x9f\x43\xfd\x43\x45\x51\xa1\x18\xc5" "\x78\x51\x51\x10\xad\xe8\xc1\xfe\xc1\x22\xea\xa1\xa0\x50\xb1\x17\x51\xf1" "\xac\xec\xa1\xa8\x3d\xc4\x42\xa3\x28\x08\x0a\x1e\xc4\x93\x07\x3d\xa9\xe4" "\x90\x04\x89\xa2\xb2\x9b\x79\x9b\xdd\x49\x86\xc4\x81\x88\x94\xcf\x07\x96" "\xb7\xbf\x37\x3b\xdf\xf9\xcd\x9b\xb7\x03\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xff\xda\x03\x3f\xde\x56\x1b" "\xae\xeb\xb5\x4e\x7f\x9c\x7d\xf9\x99\xc5\x3b\xaf\xb9\xe5\xcb\x53\xd3\x0b" "\x2f\xdd\xfe\xc9\x93\x27\x77\x7f\xba\x6b\xb1\x75\xfa\xc8\x1d\xaf\x1e\xbe" "\xf5\xdb\xa9\x2f\xda\x93\xe3\xfb\xa7\x0f\x7d\xd4\xbd\xeb\xcc\xe9\x4b\x37" "\xff\x79\xe9\xdc\xdb\x47\xd6\xbd\xd0\xf3\xcb\xc3\x81\xac\x6c\x84\x10\x7f" "\x8d\x21\x8c\xff\xd4\x3d\x77\xe6\xf2\x57\xbb\x7b\x73\xb1\x77\xfd\xd8\x3a" "\x11\xda\xed\xb8\xf3\xb3\x76\xcc\x25\x1c\x5c\x0a\x21\x3c\x3a\xe8\x73\xf4" "\x60\x77\x61\xe2\xb1\xde\x78\xf2\xb5\xfa\xc8\xfc\xd5\xb9\x90\xfc\x7d\x85" "\x66\x35\xf5\xb3\xac\x35\xda\x2f\x57\x96\xfe\x73\xee\xed\xac\x87\x1e\x79" "\x77\xe6\xf1\xc9\xcb\xdd\xbd\x4f\x4f\xfc\x32\x7f\xe3\x53\x27\x56\x7e\x12" "\x1b\x43\xfb\x29\x84\x1d\x53\xc3\xe7\x6f\x09\x21\x6c\xcd\x3e\x3d\x69\xb7" "\x75\xd2\xc9\xd9\x78\x77\x08\x61\xdb\xd0\x79\x37\xad\xd3\xd7\x75\x1b\xec" "\xff\x86\x82\x7a\x4f\x36\x5e\x95\x8d\xcd\x75\x72\xd2\xf1\x7d\xb9\xba\xb6" "\xc1\x3e\x6a\xb9\xb1\xbe\xc1\xf3\xca\xaa\x6c\x72\x7e\x5e\x7e\xfd\xf2\x2f" "\xa3\xcd\x92\xee\x73\x47\x36\x5e\xc8\xc6\x03\xff\x32\xa7\x9a\x3e\x31\x54" "\x62\xa8\x0d\xda\x7f\x22\xae\xec\x91\x30\xf4\xdc\x62\x88\xfd\xbd\xdd\x18" "\xd4\x95\x7e\x1d\x06\x75\xc8\xd7\x31\x57\x57\x72\x75\x75\x4b\xee\xbe\xfa" "\xd7\xcd\x16\xb6\x1a\xe3\xe8\x7c\xfa\x5d\x6e\x3e\xbd\x8e\x6b\xd9\xfc\xbe" "\xe1\x77\xf5\x1a\x8e\x16\xcc\x8f\x65\x63\x23\xfb\xa3\xfe\x9e\xea\x90\xff" "\xb2\xac\xb9\xea\xcb\xca\x7d\x84\xa1\xbe\xe6\xfe\xab\x8d\x51\xa0\x52\xf0" "\xdf\x4b\xf3\x83\xf6\xb2\x87\xd1\xcc\xe6\x9a\x71\xe7\xaa\x73\xfe\x5e\x43" "\x3a\x36\xf7\xf9\xc3\x0f\xfe\xf6\xfd\x0b\x17\x5a\x05\x7d\xc4\x0f\x63\x96" "\x1f\x4b\xe5\x4f\x4e\x9f\x9f\xf9\xe0\xfe\x8b\x63\x9d\xa2\xfc\xa9\x4a\x96" "\x5f\x29\x95\x3f\x5b\xfd\x7a\xe9\xfd\xf9\xce\xf6\xc2\xfc\xb3\x29\xbf\x5a" "\x2a\xff\xde\xbf\x7e\x7e\xe5\xd4\x3d\xc7\x77\x15\xae\xcf\x5c\x5a\x9f\x5a" "\xa9\xfc\xfd\xaf\x6f\x7f\x71\xe1\xf8\xd1\xfa\xde\xa2\xfc\x77\x52\x7e\xa3" "\x54\xfe\xa1\x63\xe3\x87\xaf\x9d\x7f\xf6\xb9\xc2\xfe\x0f\xa6\xf5\xd9\x5a" "\x2a\xff\xbb\x37\xae\xff\xe3\xd8\xd9\x8f\x2f\x16\xe6\x87\x94\xbf\xad\x54" "\xfe\x0f\xe7\xdf\xdb\x53\x1d\x7b\xf3\x9b\xc2\xfc\x99\xb4\x3e\xcd\x52\xf9" "\xf7\x4d\xbc\xf5\x0f\xfb\x75\x6c\x82\x40\x0c\x85\x01\x98\x03\x4b\x0f\x0e" "\x2c\x6d\x6c\x9d\xe2\x7a\xb1\xb0\xb6\x72\x04\x7b\x4b\x41\x1c\x41\xac\x44" "\x57\x71\x00\xc5\x0d\x1c\x43\x1b\x0b\x13\x08\x42\x9a\x28\x16\xc7\xf7\x41" "\x8a\x34\x2f\xf0\x08\xc9\xfb\xdb\xc9\x70\xbd\xcf\xf6\xff\x12\xeb\xd7\x45" "\xf5\xe7\xd7\xcd\x62\x79\x3c\x8f\xb3\xf7\x73\x16\xfb\xd3\x14\xd5\x7f\xb4" "\xb7\xfb\xb3\x99\x9e\x72\x6f\x67\x75\xf8\xf7\x0f\x0b\xd0\x2d\x83\x30\x63" "\x6d\xc3\x7e\x55\x98\x33\xbf\x95\xe4\x85\xdd\xa8\xf7\x9e\xf9\xfa\x61\xd5" "\xbf\x3c\xe8\x43\x95\x64\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\x5e\x01\x00\x00\xff\xff\x09" "\x25\x57\xdf", 24087); syz_mount_image(/*fs=*/0x20005d80, /*dir=*/0x20000240, /*flags=MS_NODEV|MS_MANDLOCK*/ 0x44, /*opts=*/0x20000100, /*chdir=*/0xfe, /*size=*/0x5e17, /*img=*/0x2001c480); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); setup_sysctl(); const char* reason; (void)reason; use_temporary_dir(); loop(); return 0; }