// https://syzkaller.appspot.com/bug?id=e7062d66fce9cd1c5a917ff8f9f97fd37da5d065 // 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; retry: const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; 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 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 (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); 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*)0x200000c0, "msdos\000", 6); memcpy((void*)0x20000000, "./file1\000", 8); memcpy((void*)0x20000140, "nodots,nodots,dots,dots,nodots,errors=continue,time_offset=" "0xfffffffffffffa93,dots,showexec,nodots,dots,gid=", 108); sprintf((char*)0x200001ac, "0x%016llx", (long long)0xee00); sprintf((char*)0x200001be, "%023llo", (long long)-1); memcpy( (void*)0x20001a00, "\x78\x9c\xec\xdd\xc1\x6a\x13\x51\x14\x06\xe0\x33\xb1\x36\xa9\x20\x76\x27" "\x88\xe0\x80\x1b\x57\x41\x7d\x82\x8a\x44\x10\x07\x44\x25\x0b\x5d\x29\xb4" "\x6e\x1a\x11\x92\xcd\xe8\xc6\xfa\x16\x3e\xa0\x0f\x20\x5d\x75\x23\x23\x66" "\xc6\xc6\x96\x64\x6c\x63\xcc\x98\xf4\xfb\x36\xf9\xc9\x39\x93\x7b\x2f\x84" "\x49\x36\x39\x79\x7d\xf3\xdd\xfe\xee\xfb\xd1\xdb\xaf\xd7\xbf\x44\xa7\x93" "\x44\x6b\x27\x76\xe2\x28\x89\xed\x68\xc5\x2f\x07\x01\x00\xac\x93\xa3\xa2" "\x88\x6f\x45\xb1\xd1\xf4\x3e\x00\x80\xe5\xa9\x3e\xff\xc7\x66\xb4\x7c\xaf" "\xbb\xde\x17\x07\x00\x58\x3d\x2f\x5e\xbe\x7a\xf2\x20\xcb\x7a\xcf\xd3\xb4" "\x13\x71\x78\x90\xf7\xf3\x7e\xf9\x58\xd6\x1f\x3d\xce\x7a\x77\xd3\xb1\xed" "\xc9\x55\x87\x79\xde\xbf\x74\x5c\xbf\x57\xd6\xd3\x93\xf5\xcb\x71\x25\x22" "\xb6\x22\xeb\xdd\x9f\x5a\xdf\x8c\x3b\xb7\xc7\xd7\x7f\xfe\x59\x7b\xf8\x34" "\x3b\x55\x6f\xc7\xee\xbf\x3f\x3e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x34\xa2\x9b\x1e\x9b\x3a\xdf\xa7\xdb\x9d\x55" "\x2f\xd3\x6f\xf3\x81\x4e\xcd\xef\xd9\x88\x1b\x86\x03\x02\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x99\x8c\x3e\x7c\xdc\x7f\x33" "\x18\xec\x0d\x27\xa1\x1d\x11\x27\x9f\x99\x2f\x14\xd7\x66\x2e\x31\x2d\xa4" "\x11\xf1\xf7\x8b\x9e\x37\xb4\x62\x79\x6b\xad\x5a\x48\xfe\x8f\x6d\x9c\x33" "\x44\x35\x75\xa2\xa6\xe7\xd6\x62\xde\xe1\xcf\xae\xfe\xa9\x27\xe6\x7b\xe5" "\xcd\x88\xa8\xef\xd9\xaa\x3f\xe0\x22\xc2\xe4\x1e\xd1\x6e\xe6\xd6\x04\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x17\x4e\xf5\x5b\xdf" "\x64\x38\x6a\x7a\x27\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xd0\x9c\xf2\xff\xff\x07\x7b\xc3\x79\xc2\xa7\x88\x38\x43\x73\xb5\x54\xd2" "\xf0\x51\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\x58\x63\x3f\x02\x00\x00\xff\xff\x1f\x32\x21\x1a", 467); syz_mount_image(/*fs=*/0x200000c0, /*dir=*/0x20000000, /*flags=MS_RELATIME|MS_MANDLOCK*/ 0x200040, /*opts=*/0x20000140, /*chdir=*/1, /*size=*/0x1d3, /*img=*/0x20001a00); memcpy((void*)0x20000100, "bcachefs\000", 9); memcpy((void*)0x20005dc0, "./bus\000", 6); memcpy( (void*)0x20005e00, "\x78\x9c\xec\xdd\x7d\x90\x1c\x67\x99\x18\xf0\xee\x99\x59\xed\x4a\x2b\xc9" "\x2b\x21\xf0\xca\x92\xe5\x35\x16\x10\xf9\x62\x90\xad\xd8\x41\xdc\x11\x6d" "\xc8\x41\x80\x08\x2c\x64\x64\x8c\x7c\x3a\x49\xd8\x2b\xd0\x21\x4b\x42\x1f" "\x96\x2d\x5d\xe2\xaf\x9c\x71\x0c\x49\xa9\xca\xae\xb3\x63\x87\x94\xce\xa6" "\xc8\x55\xea\x2a\x31\xa5\x4b\x1c\xee\x94\x2a\x61\x8c\xb9\xe2\xaa\x5c\x16" "\x84\x3f\x38\xe7\xeb\x5c\x31\xf9\x23\x9c\xa3\x3a\x24\x1f\x91\x28\x36\xb5" "\xbb\xdd\xbb\xd3\xbd\xfd\x4e\xcf\x4e\xcf\xca\xb2\xf9\xfd\xaa\x76\x67\xde" "\xde\x67\x9e\xf7\x7d\x7a\xde\xe9\xaf\xdd\x9d\x89\x00\x00\x00\xf8\x95\xf0" "\xc2\xef\xed\x7f\xfd\x93\x97\x7d\xf8\xfb\xf7\x8f\x9c\xbd\xe7\xa3\x7f\x72" "\xc7\x7d\x51\x7f\x7d\x7c\x79\x5f\x1a\x30\x90\xdc\xde\xf5\x46\x8d\x90\xd9" "\xb4\xea\x07\xe7\x33\xcf\x6c\x6f\x63\x70\xfc\x36\x3f\x2f\x2e\xfd\xd3\x25" "\xaf\x0f\x3c\xb0\xfe\x13\x0f\xaf\xfd\xc8\x0f\xb6\xfd\xd9\xa2\xe1\x15\x2b" "\x47\x6e\xf8\xe6\xf1\x1b\x1f\x7c\xe0\xb9\x0f\xfe\xe2\xb9\xc7\x9e\x58\x5f" "\xd6\x4f\x3a\x9f\xae\x9e\x6a\xc7\x7f\x15\x47\xd1\x8a\x57\x8f\x3f\xf6\xe0" "\x77\xff\xfc\xd2\xb1\x65\xf1\x58\xff\xf1\xc0\xbd\xd1\xa2\x45\xf1\xe2\x6f" "\x2f\x8a\x73\x29\x56\x9f\x8b\xa2\xe8\xf6\xc9\x71\x66\x7f\x78\xfc\xec\x9a" "\x1d\x63\xb7\xf7\x7d\xa5\x37\xb3\xfc\x92\x5c\x12\xf3\xfd\x57\x5b\x5f\x32" "\xcf\x8e\x6c\xfd\xdc\x53\x27\xbf\x38\xfc\xdd\xe3\x43\x7b\xd7\xfc\xf4\xcc" "\xf5\x7b\xee\x9d\x0a\x89\xfb\x9a\xe6\x53\x14\x2d\xdc\xd6\xfc\xf8\x9e\x28" "\x8a\xe6\x26\x5f\x63\xd2\xd9\x36\x98\x3e\x38\xb9\xdd\x10\x45\xd1\xbc\xa6" "\xc7\xbd\xbf\x64\x5c\x57\xb5\x39\xfe\x6b\x02\xed\xe5\xc9\xed\x9c\xe4\xb6" "\xbf\x24\x4f\xfa\xf3\x2b\x73\xed\x46\x9b\xe3\x68\xe4\x6e\x7b\xdb\x7c\x5c" "\xa7\x6a\xb3\x9c\x3f\x2f\xbf\xfe\xf2\x1b\xa3\xd9\x92\xd6\xb9\x30\xb9\x7d" "\x36\xb9\xbd\x7a\x86\x79\xea\xe9\x57\x1c\xd5\xe2\xa8\x31\x39\xfc\x5d\xf1" "\xd4\x1c\x89\x9a\x9e\xb7\x38\x8a\xc7\xe7\x76\xdf\x64\xbb\x36\xde\x8e\x26" "\xdb\x51\xbe\x1d\xe7\xda\xb5\x5c\xbb\xde\x93\xab\x6b\xbc\xdf\x64\xc5\xd6" "\xe3\x38\xbb\x3c\x8d\xcb\x2d\x4f\x37\xc7\x8d\x64\xf9\x95\xcd\xdb\xea\x02" "\x1b\x03\xcb\x97\x26\xb7\x7d\xc9\x0b\xf5\xe7\x69\x3b\xca\xdf\x99\xd0\x3f" "\xed\xce\x54\x1d\x51\xd3\xb8\x4e\x5f\xa8\x89\x11\x50\x0b\xbc\xf6\xd2\xe5" "\x93\xc3\x4b\x9e\x8c\xfe\x64\x59\x7f\xbc\x78\xda\x63\x46\x0b\xa4\x3f\x3b" "\xfd\xbd\xed\x9b\x5f\xfb\xf1\xe1\x67\x07\x02\xe3\x88\x9f\x89\x93\xfc\x71" "\x47\xf9\x87\x47\x9e\x3c\xf9\x8d\x5b\x4e\x2c\x1d\x0c\xe5\xdf\x56\x4b\xf2" "\xd7\xa2\x2b\x3a\xc8\xff\x42\xfd\xc5\x73\x5f\x3f\x33\x38\x3f\x98\xff\x68" "\x9a\xbf\xde\xd1\xf8\x37\xfd\xf2\x27\x0f\xdd\x7f\xd3\xa1\x25\xc1\xf5\x73" "\x3a\x5d\x3f\x8d\x8e\xf2\xaf\xfc\xea\xfc\x23\x67\x0f\x6d\xec\x1d\x0a\xe5" "\x3f\x96\xe6\xef\xeb\x28\xff\x0d\x5b\x56\xac\xbd\xfc\xcc\xc1\x3b\x83\xe3" "\x5f\x9d\xae\x9f\xb9\x1d\xe5\xff\xd1\x23\xab\xce\x6f\x39\xfa\xad\x13\xc1" "\xfc\x51\x9a\x7f\x5e\x47\xf9\x5f\x7e\xf2\xe9\xe5\xf5\xa5\x8f\x9e\x0a\xe6" "\x3f\x99\xae\x9f\xfe\x8e\xf2\xdf\xbc\xe6\xf1\x75\x1f\x5f\xf6\xc0\x13\xc1" "\xf5\xff\x52\x9a\x7f\x41\x47\xf9\x37\x9f\x7a\x70\xdb\xde\xa7\x9e\x5f\x15" "\x9c\x9f\x1b\xd2\xf5\x33\xd0\x51\xfe\x73\xeb\x7e\xf8\xca\xf9\x81\xf5\x4f" "\x87\xb6\x9d\xf1\xb1\x0b\xbd\x87\x05\x78\x6b\x79\x5b\x72\x8c\xf5\x50\xd2" "\xee\xf4\x3c\xb3\xaa\xa6\xf3\x85\xc7\x87\x1a\x13\xc7\x7c\xf3\x93\xaf\x05" "\xdd\xec\x28\x27\x1e\x3f\x77\xb9\x62\xe1\x2c\x76\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xaf\x80\x47\xd7" "\xfd\x87\x2f\x35\xb7\xdf\xf5\x7f\xee\xdc\x74\xea\x3f\xae\xd8\xd9\x48\xda" "\xbd\x8d\x28\x8a\xa3\x28\x7a\xad\x3e\xd1\x4e\x97\xcf\x89\xa2\x78\x6e\x14" "\x45\xfb\x0f\x6c\xdf\x77\x60\xe7\xee\xcf\x0f\xfd\xce\x9e\x83\xfb\x76\x6f" "\xdf\x35\xb4\xfd\xc0\xd0\xc8\xee\x03\xfb\xee\x1e\xfa\x3b\x7f\x7b\x68\xdf" "\xc8\xde\x5d\xdb\xef\x1e\xfb\xe9\xea\x6b\xd6\x4c\x3c\x6e\xf1\x78\xb6\x28" "\x5a\x1c\x5f\x3e\x6d\x2c\xa3\xa3\xa3\xa3\x51\x14\x0d\x35\x2f\x4b\xfb\xfb" "\x83\x8f\x3d\xf3\xff\x36\x3d\xf1\xd7\x9f\x8d\xa2\xd5\x6f\xff\xe1\x8a\x46" "\xb0\x9e\xf7\xfd\xd7\x57\x3e\xbc\xa4\xe0\x7b\x4e\x3c\x3c\xba\xe1\x5f\x5d" "\xff\xc8\xe1\x39\xff\xeb\x92\x89\x05\x03\xc9\xb8\x06\x42\xe3\x1a\xc8\x2e" "\x4b\x47\xd0\x3f\xfc\xd2\x5f\x7c\xe8\xd9\x1f\x8f\x8d\xeb\x1d\xad\xc6\xf5" "\xd8\x8b\x9f\xf9\xbf\x99\x01\x8d\x2f\x98\xca\x93\xa8\xf5\x46\xb5\xf1\x3b" "\xbd\xf1\xbc\xc2\x71\x4c\x8e\x7a\x6a\x3c\xe3\xeb\xab\xb1\x63\xe7\xae\x91" "\xd5\xe5\xeb\x37\x0e\xac\xdf\xf7\x3c\xff\xc7\x67\xfe\xfd\x5d\x9b\xfe\xf9" "\xc4\xfa\xed\x0b\xd6\xd1\xe6\xfa\x1d\x5b\xab\x8d\xd1\x87\x7f\x76\xff\x7b" "\xee\xfd\xd0\xc8\x07\x2e\xe2\xe7\xbd\x6c\x7d\x37\x95\x30\x3e\xbe\x74\xfd" "\xf5\x25\xeb\x7b\x61\x52\xd7\xc2\x40\x5d\xb5\x40\x5d\x77\x0e\xbd\x7c\xfa" "\x5f\xfc\xbb\xff\xfc\xf5\x7b\xa3\xd5\x8d\x9f\x5d\x31\xbd\xef\xb2\xba\x7a" "\x92\x09\xd0\x13\x2f\x6d\xab\xdf\xb4\x87\x79\xf1\xa2\x4c\x6c\x5f\x12\x9f" "\x3e\xe3\xe9\xe3\xde\x77\xe0\x8e\xbd\xef\xdb\x7f\xf7\xe1\x6b\x76\xde\xb1" "\xfd\xf3\x23\x9f\x1f\xd9\xbd\x66\xcd\xf5\x6b\xaf\x5d\x73\xed\x75\x6b\xd7" "\xbc\x6f\xbc\xf4\x89\xef\x5d\xab\x3f\xed\xff\x3d\x6d\xd6\x3f\x3f\xc9\x34" "\x3f\x5e\x56\xb8\xde\xf2\x4b\xd3\x7e\xaf\x18\xff\x5e\x8f\x92\x61\xa7\x37" "\x4d\x77\xb2\x7a\xa2\xfe\x89\xdb\xdc\x7a\x4e\xc3\xf3\x55\xf7\x27\x3f\xeb" "\x8f\x17\x4f\xcb\x35\x5a\x20\xfd\xd9\xe9\xef\x6d\xdf\xfc\xda\x8f\x0f\x3f" "\x1b\x7a\xe5\xc5\xcf\x4c\xf4\x38\x37\x5a\x30\x71\x1b\x2f\x0f\x44\xee\xca" "\x3d\xb0\x3e\x39\xe0\xa2\xfe\x2f\xcc\xeb\x72\xcf\xef\xf7\xed\x4a\xbf\xb7" "\xf7\xba\x2c\x1b\x57\xd9\xbc\x1a\x1b\x57\xf9\xbc\x6a\x1e\x51\x8b\xed\xd8" "\x8b\x57\x3d\xf4\xb3\xa7\xbe\xfc\x2f\x6f\x6d\x63\x7b\xd1\x14\x3a\x3e\xbe" "\x74\x9c\xf3\xc6\x5e\x2e\xd7\x46\x4d\xaf\xdb\xe9\xeb\xaa\xa8\xae\x36\x9e" "\x9f\xe1\xa2\xf5\x70\xdb\x35\xfb\xfe\xf8\xee\x9d\x9b\x8f\x96\x6d\xcf\x9b" "\x9f\x99\xe6\xef\x39\xf1\xf0\xe8\xff\x5c\x1e\x7f\xe2\xe0\xfe\xbf\xd8\x37" "\xb1\xe0\x82\xec\x2f\x9b\x07\xd4\xe1\xfe\x72\x72\xd4\x53\xe3\x19\x5f\x5f" "\x7d\xc9\xf3\x71\xb1\xae\xdf\xde\xa8\x9e\xd4\xd5\x5f\x38\xae\x8d\xf1\x53" "\x1f\x7c\xcf\x1d\x27\x7e\x6d\x72\x7c\x73\xe6\x44\x77\x6d\x3f\x70\x60\xdf" "\xb5\x13\xdf\xdf\xac\x75\xfd\xe5\x9c\x4b\x96\xec\xbc\x6f\xd9\xe5\xd3\xea" "\xba\x6e\xe2\x7b\xd9\x76\xff\x8a\x5c\xbb\x74\xbb\x5f\x2b\xae\xaf\x6c\xbb" "\x9f\xef\x67\x2a\xbe\x38\xdf\x50\xae\xdd\x1f\xd5\x3b\xda\x4f\x6c\xfa\xe5" "\x4f\x1e\xba\xff\xa6\x43\x4b\x82\xfb\x89\xd3\xed\xee\x27\x7e\x37\xd3\xaa" "\x57\xdc\x4f\xd4\x02\xaf\xf7\x87\xff\xfa\x6b\x43\xaf\xdf\xfa\xe9\xd7\xcb" "\xe6\xd3\x8d\xfb\x97\xdd\xb3\xa4\xe0\x7b\xbe\xbc\xe1\xd1\x6f\xfd\xd1\xaf" "\x5f\xfb\x81\xcf\xdc\xf4\x91\x89\x05\x17\x64\x3b\xd4\x3c\xa0\x0e\xb7\x43" "\x93\xa3\x4e\xc6\x93\xae\xaf\xf1\xed\xd0\x75\x17\x4f\x1d\x6f\xdc\xf3\x9c" "\x79\x21\xc6\xc3\xa3\x57\x7c\xf3\xdd\x37\x9f\x3f\xfb\xa5\x4f\x4d\x2c\x28" "\x5b\xbf\x93\xd1\x45\xeb\x77\x4d\xf9\x76\xbe\x1e\xa8\xeb\xd6\x9e\x77\x2e" "\x7a\xe4\xa7\xcb\xde\xd9\xbd\xf9\xbb\x7f\xeb\xdf\x5c\xf5\xde\x79\xf3\x2f" "\xb2\xf9\xdb\x97\xac\xdf\xbe\xc0\xfa\x9d\x1c\x75\x32\x9e\x7a\xf3\xfa\x7d" "\xef\x6d\x7b\x76\xdd\x3e\xd1\xbe\x78\x8f\xdb\x26\xf4\x96\x9c\xff\xa4\xfb" "\x9d\xfd\x77\x1f\xfe\xe2\xf6\x5d\xbb\x46\xf6\xed\x6f\xaf\xae\x76\xf7\xa7" "\x69\x3f\xf9\xb5\xdc\xe9\xfe\x34\xdd\x7b\x2c\x2e\xa9\x2b\x7d\xbe\xa6\xea" "\x9a\xbd\x3b\xed\xac\xaf\x76\x5f\x6f\xe9\xf8\x6f\xcf\xe5\xe8\xf4\xf5\x06" "\x90\x9a\xda\x2f\xcc\xc9\x2c\xcf\x6f\x3f\xd3\xeb\x7e\x2b\x16\x46\x9b\xde" "\xfb\xe5\xef\xbc\x18\x0f\x4d\xec\x2f\xbb\x75\xbd\x35\xed\xe7\xb2\xdc\x8e" "\xb9\xd3\xeb\xad\x65\xe7\x49\xef\xcc\xb5\xb3\xe7\x49\x8d\xa8\xa9\xee\x09" "\xd3\xcf\x93\xc6\x1f\x52\x76\x9e\x94\xef\xa7\xec\x3c\xe9\xaa\x5c\xbb\xfc" "\x3c\xe6\xa1\xc2\x4a\x42\xcf\x5f\x4f\xb2\xe7\x2d\xba\x6e\x9a\x1b\x6f\x63" "\x2c\x43\x68\x7e\x0c\x26\xf9\x07\x93\x76\x7a\xbc\xb9\xe2\xbd\xd1\xf5\xf5" "\x67\xdf\xf5\xb1\x78\xb8\xbd\xf9\xd1\xee\xf1\x74\xda\xcf\xdf\xca\xad\xa0" "\x4e\x8f\xa7\xcb\xe6\xc7\xca\xa8\x78\x5c\xdd\x9e\x1f\xef\xce\x3d\xa8\xfc" "\xf9\x3e\x5a\x38\xb2\xbe\xc0\xf3\x51\xf6\x7c\xaf\xcc\x24\x1a\x1d\xad\x7a" "\x5e\x3e\x10\x18\x75\x7a\x5e\xde\x1f\xc5\x1d\xe5\x1f\x1e\x79\xf2\xe4\x37" "\x6e\x39\xb1\x34\x98\x7f\x5b\x2d\xc9\x5f\xeb\x28\xff\x0b\xf5\x17\xcf\x7d" "\xfd\xcc\xe0\xfc\x60\xfe\xa3\x69\xfe\x46\x47\xf9\x57\x7e\x75\xfe\x91\xb3" "\x87\x36\xf6\x06\xf3\x1f\x4b\xd7\x4f\x5f\x47\xf9\x6f\xd8\xb2\x62\xed\xe5" "\x67\x0e\xde\x19\xcc\xbf\x3a\x1d\xff\xdc\x8e\xf2\xff\xe8\x91\x55\xe7\xb7" "\x1c\xfd\xd6\x89\x60\xfe\x28\xcd\xdf\xdf\x51\xfe\x9b\xd7\x3c\xbe\xee\xe3" "\xcb\x1e\x78\x22\x98\xff\xa5\x38\xe9\x67\xec\xb5\x1b\x45\xc7\xcf\xae\xd9" "\x31\xd1\x8e\xa3\x9e\x64\xfe\xa7\xe3\xe8\xc9\x8c\x2b\xca\xb7\xe3\x5c\xbb" "\x96\x6b\xd7\x9b\xdb\xb5\x89\xdf\xf5\x4e\x76\x50\x8f\xe3\xec\xf2\x34\x2e" "\xb7\x3c\xad\xa3\x91\x2c\xbf\xb2\x69\x8c\x45\x36\x05\x96\xa7\xaf\xda\xbe" "\xe4\x85\xfd\xf3\xb4\x1d\xe5\xef\xb4\x5e\x9e\x6e\x9e\xd2\x71\x9d\x0e\xec" "\x7f\x2e\x94\x5a\xd3\xb1\x47\xd1\xf2\xb2\xeb\x93\xdd\xf2\xda\xab\x83\x7f" "\xd0\xdc\x4e\x7f\xff\x9f\xce\x81\xde\xc6\xc4\x73\x77\x5d\x6e\x7d\x95\xed" "\x3f\xf2\x5b\xef\x34\x5f\xf0\x3a\x6c\xe0\x12\x46\xd9\xf1\xc2\xf4\xdf\xbf" "\xcd\xeb\xe8\xf5\xf7\xf2\x93\x4f\x2f\xaf\x2f\x7d\xf4\x54\xf0\xba\xea\xc9" "\x76\xaf\xab\xee\xcd\xb4\xe6\x95\x5c\x57\xad\x3a\xde\xe0\xf6\xe2\x64\xba" "\x3d\xad\xb6\x3d\x1a\x0c\xe5\x7f\x29\xcd\x5f\x6d\x7f\x10\xcc\x9f\xec\x0f" "\xca\xe6\xd9\xbb\x72\xed\xd2\x79\xd6\x53\xdc\x5f\xd9\x3c\xcb\x1f\xa7\xf4" "\x47\x0b\x3a\xaa\x7b\xf3\xa9\x07\xb7\xed\x7d\xea\xf9\x55\xc1\x79\xb6\x61" "\xe2\x05\x5f\x3e\xcf\x1e\xcd\xb4\x16\x94\xce\xb3\x4a\xbf\x97\x8e\x43\x9b" "\xcb\xf4\xf7\xd2\x55\xd7\x47\x70\x1e\x6f\xe8\xce\x71\x4d\x70\x9e\x25\xc7" "\x35\x65\xf3\xec\xea\x5c\xbb\xfa\x3c\xcb\x1e\x8f\x7e\x22\xb9\xbd\x2b\x17" "\xdf\x9f\x5c\x21\x9e\x69\xdd\xe7\xd6\xfd\xf0\x95\xf3\x03\xeb\x9f\x0e\xce" "\xb3\x63\xb5\xe8\x9e\xb6\xe6\xd9\x1f\x66\x5a\x03\xa5\xf3\xac\xda\xf1\x6d" "\xf0\x79\x9a\x3c\xbe\x9d\xed\xe3\xf3\x37\xf7\xf1\xe7\x1b\x76\x7c\x98\xfc" "\x3a\x77\xb6\x8e\x0f\x37\x06\x96\xcf\xf4\xf8\xb0\x7f\xda\x9d\xa9\x3a\xa2" "\x37\xe3\xf1\x61\x60\x3b\x03\x00\xad\x7c\xff\xe1\xbb\xff\x77\x73\x3b\x3d" "\xff\x4f\xf7\xdd\xe9\xf9\xff\x77\x72\x8f\xab\x7a\x5e\x99\xff\x7b\xa8\x54" "\xb7\xce\x2b\x83\xf9\x8f\x75\xe7\x7c\x25\x78\x9c\x3a\x79\xbe\x52\xed\xef" "\x80\x83\xc7\x79\xcf\x74\xe7\x3a\x72\xf9\x71\xf6\xec\x9e\x6f\x39\x8e\x0f" "\xe4\x9f\xbc\x8e\x3c\xdb\xd7\x85\x66\xef\xbc\x32\x72\x1e\xe2\x3c\x04\x00" "\x80\x8b\xd2\x95\xff\xe6\x6b\xbf\xd9\xdc\x4e\xcf\xff\x27\xff\xee\x2d\xf9" "\xff\xff\xe7\xd3\x76\xee\xf1\xce\x73\x03\xf9\x2f\xd8\x79\xee\x6c\x5f\x27" "\xe9\xda\x79\x74\x66\xea\xbc\x75\xce\xa3\x67\xfb\x3a\xd8\x6c\x5f\xa7\x6a" "\x79\x1d\xa0\x37\xdf\x4d\xfa\xb3\x99\x5e\x07\x88\x5c\x07\xc8\xdd\x99\xe0" "\x3a\x00\x00\x00\x17\xd2\xd6\x1d\xfb\x46\x46\xf6\xef\xdd\x7e\xdb\xc8\xd6" "\x9d\xbb\x77\x1e\x98\x5c\xde\x33\x7e\xe6\x34\xfd\xef\x54\xff\x6e\x72\xbb" "\x21\x97\xa7\xec\xef\xa7\x8b\xe2\xe7\xb5\x88\xff\x54\x30\x7f\x76\x3c\xef" "\x0f\xc4\x87\x34\xc6\xff\xe6\x35\x8a\x3e\x77\xdb\x17\xae\xdb\x7a\xfb\xc8" "\x9d\x33\xad\x3f\xd4\x5f\x59\xfd\x45\xf1\xad\xea\xcf\x9f\x5f\x84\xea\x5f" "\x1b\x88\x0f\xa9\x5a\x7f\xa8\xbf\xb2\xfa\x8b\xe2\x5b\xd5\x7f\x53\x30\x7f" "\x76\x3c\x1f\x08\xc4\x87\x54\xad\x3f\xd4\x5f\x59\xfd\x45\xf1\xad\xea\xff" "\x74\x30\x7f\x76\x3c\xbf\x1e\x88\x0f\xa9\x5a\x7f\xa8\xbf\xb2\xfa\x8b\xe2" "\x5b\xd5\x9f\xff\x7f\xb0\x50\xfd\xbf\x11\x88\x0f\xa9\x5a\x7f\xa8\xbf\xb2" "\xfa\x8b\xe2\x5b\xd5\x7f\x73\x30\x7f\x76\x3c\x1f\x0c\xc4\x87\x54\xad\x3f" "\xd4\x5f\x59\xfd\x45\xf1\xad\xea\xff\x4c\x30\x7f\x76\x3c\x7f\x2f\x10\x1f" "\x52\xb5\xfe\x50\x7f\x65\xf5\x17\xc5\xb7\xaa\xff\x96\x60\xfe\xec\x78\xd6" "\x05\xe2\x43\xaa\xd6\x1f\xea\xaf\xac\xfe\xa2\xf8\x56\xf5\x7f\x36\x98\x3f" "\x3b\x9e\xe1\x40\x7c\x48\xd5\xfa\x43\xfd\x95\xd5\x5f\x14\xdf\xaa\xfe\xcd" "\xc1\xfc\xd9\xf1\xfc\xfd\x40\x7c\x48\xd5\xfa\x43\xfd\x95\xd5\x5f\x14\xdf" "\xaa\xfe\x5b\x83\xf9\xb3\xe3\xf9\x50\x20\x3e\xa4\x6a\xfd\xa1\xfe\xca\xea" "\x2f\x8a\x6f\x55\xff\x6f\x05\xf3\x67\xc7\xf3\x0f\x02\xf1\x21\x55\xeb\x0f" "\xf5\x57\x56\x7f\x51\x7c\xab\xfa\xb7\x04\xf3\x67\xc7\xf3\x9b\x81\xf8\x90" "\xaa\xf5\x87\xfa\x2b\xab\xbf\x28\xbe\x55\xfd\xbf\x1d\xcc\x9f\x1d\xcf\x87" "\x03\xf1\x21\x55\xeb\x0f\xf5\x57\x56\x7f\x51\x7c\xab\xfa\xb7\x06\xf3\x67" "\xc7\xf3\x91\x40\x7c\x48\xd5\xfa\x43\xfd\x95\xd5\x5f\x14\xdf\xaa\xfe\x6d" "\xc1\xfc\xd9\xf1\xfc\xc3\x40\x7c\x48\xd5\xfa\x43\xfd\x95\xd5\x5f\x14\xdf" "\xaa\xfe\xed\xc1\xfc\xd9\xf1\x7c\x34\x10\x1f\x52\xb5\xfe\x50\x7f\x65\xf5" "\x17\xc5\xb7\xaa\xff\x73\xc1\xfc\xd9\xf1\x7c\x2c\x10\x1f\x52\xb5\xfe\x50" "\x7f\x65\xf5\x17\xc5\xb7\xaa\xff\xb6\x60\xfe\xec\x78\x3e\x1e\x88\x0f\xa9" "\x5a\x7f\xa8\xbf\xb2\xfa\x8b\xe2\x5b\xd5\x9f\x7f\xbf\xc3\x50\xfd\xff\x28" "\x10\x1f\x52\xb5\xfe\x50\x7f\x65\xf5\x17\xc5\xb7\xaa\x7f\x24\x98\x3f\x3b" "\x9e\xf5\x81\xf8\x90\xaa\xf5\x87\xfa\x2b\xab\xbf\x28\xbe\x55\xfd\x3b\x82" "\xf9\x8b\xdf\x37\x20\x1f\x1f\x52\xb5\xfe\x50\x7f\x65\xf5\x17\xc5\xb7\xaa" "\xff\xf3\xc1\xfc\xd9\xf1\x7c\x32\x10\x1f\x52\xb5\xfe\x50\x7f\x65\xf5\x17" "\xc5\xb7\xaa\xff\x0b\xc1\xfc\xd9\xf1\xdc\x18\x88\x0f\xa9\x5a\x7f\xa8\xbf" "\xb2\xfa\x8b\xe2\x5b\xd5\xbf\x33\x98\x3f\x3b\x9e\x0d\x81\xf8\x90\xaa\xf5" "\x87\xfa\x2b\xab\xbf\x28\xbe\x55\xfd\xbf\x13\xcc\x9f\x1d\xcf\xa7\x02\xf1" "\x21\x55\xeb\x0f\xf5\x57\x56\x7f\x51\x7c\xab\xfa\xbf\x18\xcc\x9f\x1d\xcf" "\xc6\x40\x7c\x48\xd5\xfa\x43\xfd\x95\xd5\x5f\x14\xdf\xaa\xfe\x5d\xc1\xfc" "\xd9\xf1\xdc\x14\x88\x0f\xa9\x5a\x7f\xa8\xbf\xb2\xfa\x8b\xe2\x5b\xd5\x7f" "\x47\x30\x7f\x76\x3c\x9f\x0e\xc4\x87\x54\xad\x3f\xd4\x5f\x59\xfd\x45\xf1" "\xad\xea\xdf\x1d\xcc\x9f\x1d\xcf\xa6\x40\x7c\x48\xd5\xfa\x43\xfd\x95\xd5" "\x5f\x14\xdf\xaa\xfe\x3d\xc1\xfc\xd9\xf1\xdc\x1c\x88\x0f\xa9\x5a\x7f\xa8" "\xbf\xb2\xfa\x8b\xe2\x5b\xd5\xbf\x37\x98\x3f\x3b\x9e\xcf\x04\xe2\x43\xaa" "\xd6\x1f\xea\xaf\xac\xfe\xa2\xf8\x56\xf5\x7f\x29\x98\x3f\x3b\x9e\x5b\x02" "\xf1\x21\x55\xeb\x0f\xf5\x57\x56\x7f\x51\x7c\xab\xfa\xf7\x05\xf3\x67\xc7" "\xf3\xd9\x40\x7c\x48\xd5\xfa\x43\xfd\x95\xd5\x5f\x14\xdf\xaa\xfe\xfd\xc1" "\xfc\xd9\xf1\x6c\x0e\xc4\x87\x54\xad\x3f\xd4\x5f\x59\xfd\x45\xf1\xad\xea" "\x3f\x10\xcc\x9f\x1d\xcf\xad\x81\xf8\x90\xaa\xf5\x87\xfa\x2b\xab\xbf\x28" "\xbe\x55\xfd\x07\x83\xf9\xb3\xe3\xf9\xad\x40\x7c\x48\xd5\xfa\x43\xfd\x95" "\xd5\x5f\x14\xdf\xaa\xfe\x3b\x83\xf9\xb3\xe3\xd9\x12\x88\x0f\xa9\x5a\x7f" "\xa8\xbf\xb2\xfa\x8b\xe2\x5b\xd5\x7f\x28\x98\x3f\x3b\x9e\xdf\x0e\xc4\x87" "\x54\xad\x3f\xd4\x5f\x59\xfd\x45\xf1\xad\xea\xcf\xbf\x0f\x64\xa8\xfe\xad" "\x81\xf8\x90\xc9\xfa\x0f\xec\x1b\x19\xd9\x7a\x70\xef\xed\xdb\x0f\x8c\x6c" "\xdd\xbd\xe7\xf6\x91\xfd\x5b\x0f\xed\xdb\x79\xe0\xc0\x48\x72\xa0\x56\xf5" "\xff\xca\xc2\xff\x17\xf4\x06\xff\x23\x0b\x2d\x65\x5e\x1f\x13\x93\x64\xe7" "\xee\xfd\x23\xfb\xa6\x6f\xbf\xe7\xb6\x9c\xbf\xcd\x73\x22\x1a\xff\xb7\xa7" "\xb9\x13\xb7\xf1\x3b\xda\x8a\xcf\xbf\xed\x75\xa7\xb3\xe6\x62\x99\xef\x3d" "\x51\xa3\xe5\xfa\xba\x2c\xd7\xbe\x24\x79\x3f\xda\x4b\x02\xef\x47\x9b\x8f" "\x4f\xd3\x2e\x1b\xbf\x33\xfd\xfd\x68\xf3\xdd\x36\x4a\xde\xc7\xb5\x6c\xfb" "\x94\xef\x3f\xb4\x7d\x8a\x5b\xc4\x17\x6d\x5f\x43\xdb\xb3\xb2\xfd\xdf\x8c" "\xb7\x7f\xa5\xf3\xbb\xaf\x65\xfd\xf9\xc5\xbd\xc9\x3f\xf6\xf5\xc6\x6f\x6f" "\x2b\x3e\x6a\xf1\xf9\x6e\xed\xcd\xd7\x6a\xff\x77\x1a\x9c\xaf\x2f\xb5\x37" "\x5f\xf3\xef\xbb\x5e\x36\x5f\xf3\xf1\x33\x9d\xaf\xfd\x15\xe7\x6b\xbe\xff" "\xd0\x7c\xaa\xb5\x88\x6f\x75\x3c\xd4\xee\x7c\xdd\x1c\x88\x4f\xb5\x3f\x3f" "\xe3\x60\xbd\x45\xf3\x6a\xa6\x9f\x33\x98\xa6\x9d\xd1\xe7\x0c\xe6\xbe\x4d" "\xd3\xc1\x67\x19\xb4\xff\x7a\xa8\xf6\x7f\xe4\xc1\xd7\x43\x32\xe8\xb2\xd7" "\x43\xfe\xff\xb8\xcb\x5e\x0f\xf9\xf8\x99\xbe\x1e\xe6\x56\x7c\x3d\xe4\xfb" "\x2f\x7b\x3d\x14\xc5\xcf\x8b\xa2\x57\xdb\x9d\xdf\x65\xd7\xaf\xba\x7f\xfc" "\x5a\xed\x7d\x0b\x82\xf3\x61\x75\x7b\xf3\x21\xff\x39\x56\x65\xf3\x21\x1f" "\x3f\xd3\xf9\xd0\x57\x71\x3e\xe4\xfb\x2f\x9b\x0f\x45\xf1\xad\xae\x17\xb6" "\x3b\x1f\x3e\x1d\x88\x6f\x57\xfb\xf3\xa3\xda\xfb\x8a\x04\xe7\xc7\xb6\xf6" "\xe6\x47\xfe\xf3\x24\xca\xe6\x47\x3e\x7e\xa6\xf3\x23\xae\x38\x3f\xf2\xfd" "\x97\xcd\x8f\xa2\xf8\x56\xbf\x4f\x69\x77\x7e\x7c\x2a\x10\x9f\xca\xec\x3f" "\x77\xec\x1f\x3f\xa9\xdf\xb9\x7d\xd7\xce\xc3\xb9\x3f\xc0\x18\x48\xf6\x9f" "\x6f\xf4\xfe\xf0\x82\xec\x97\xff\xe6\x37\xfe\xf2\xe7\x13\xdf\x92\x71\xd4" "\xa6\x8d\xa3\xec\x78\x22\xce\x8d\x63\x51\x32\x92\x45\xa1\xcf\x3d\x0c\x8c" "\xfb\xb6\xff\xf2\x6f\x37\x7d\xe7\x17\x5f\xfe\x5a\x14\xad\x7e\x7b\x7d\x79" "\x78\xdc\x53\x43\x9e\xfa\x96\x13\x0f\x8f\x2e\xbe\x67\xe5\x37\x6e\x79\xc7" "\xa9\x0f\x8d\x8d\xbf\xd6\x72\xfc\x93\x91\xe9\xe7\x16\x97\x7c\xde\x71\x3e" "\x3e\xad\xa7\xb1\x6b\xcf\xfe\x03\xbf\xb6\x63\xcf\xc1\xdd\xed\xfe\xc5\x55" "\x6b\xe9\xfb\xa1\xd4\x26\xdb\xb3\xf4\x7e\x28\xc9\xc2\x7a\x9b\xef\x6f\x12" "\xfa\x7f\x82\x99\xbe\xbf\x49\xcf\xb4\x3b\x17\xa7\xb6\xdf\xdf\x04\xe0\x2d" "\xe2\x92\x63\xcf\x2c\x68\x6e\xa7\xef\xff\x97\xee\x8f\x06\x93\x6d\xdf\xdc" "\x64\x03\x98\x2e\x6f\xff\x38\xbb\xda\xfb\xeb\x05\x8f\xb3\x8f\xb6\x77\x9c" "\xbd\x2a\x5f\x6f\xc9\x71\x76\x3e\x3e\xad\xb7\xdd\xe3\xec\x5a\xc5\xe3\xec" "\x7c\xff\x65\xc7\xd9\x45\xf1\xad\xfe\x6e\xaf\xdd\xe3\xec\x4f\x06\xe2\x67" "\x2a\x3b\x4f\xc6\x26\xc8\xf8\xfc\x18\xd9\x7a\x68\xcf\xbe\xe6\xbf\x89\xcb" "\xce\x93\x7b\x32\x39\xda\x99\x27\x65\x9f\x5b\xdb\xfd\xf1\xce\xee\xe7\xf8" "\x56\x1f\xdf\xec\x7e\xfe\x41\xa7\xda\x1f\xff\xec\xbe\x2f\xe4\xac\x8c\xbf" "\xe9\x57\x58\xb3\xfd\x39\xc0\xb3\x32\xfe\xa6\xb8\xd9\xfe\x9c\xe7\x4e\x5d" "\xb0\xf3\xa5\xe4\xcd\x22\xcb\xde\x3f\xb2\xec\x3c\x2a\xf4\x7f\xe9\x33\x3d" "\x8f\x9a\x33\xed\xce\xc5\xc9\x79\x14\x00\x5c\xfc\xfe\xd9\xbe\x57\xff\x75" "\x73\x3b\x3d\xff\x4f\xce\x62\x27\xcf\xff\xbf\x92\xb4\xeb\x5d\xee\x7f\xb6" "\xcf\xa3\xaa\x5e\x7f\x28\x3b\xaf\x9c\xed\xe3\xe4\x37\xff\xe7\xd8\xcd\xee" "\x79\x90\xf3\x81\x16\x9d\x5d\x04\x9c\x0f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x14\xfb\xc3\xff\xfe\x9f\xbe" "\xdd\xdc\xee\x6d\x0c\x8e\xdf\xbe\xf0\x7b\xfb\x5f\xff\xe4\x65\x1f\xfe\xfe" "\xfd\x23\x67\xef\xf9\xe8\x9f\xdc\x71\xdf\xa5\x7f\xba\xe4\xf5\x81\x07\xd6" "\x7f\xe2\xe1\xb5\x1f\xf9\xc1\xb6\x3f\x5b\x34\xbc\x62\xe5\xc8\x0d\xdf\x3c" "\x7e\xe3\x83\x0f\x3c\xf7\xc1\x5f\x3c\xf7\xd8\x13\xeb\x4b\x3b\x1a\x98\xb8" "\xb9\x3a\x69\xf6\x45\x51\xfc\x57\x71\x14\xad\x78\xf5\xf8\x63\x0f\x7e\xf7" "\xcf\x2f\x1d\x5b\x16\x8f\xf5\x1f\x0f\xdc\x1b\x2d\x5a\x14\x2f\xfe\xf6\xa2" "\x38\x97\x61\xf5\xb9\x28\x8a\x6e\x9f\x1c\x67\xf6\x87\xc7\xcf\xae\xd9\x31" "\x76\x7b\xdf\x57\x7a\x33\xcb\x2f\xc9\x25\xc9\xd7\x15\xf5\xd7\xd3\xf1\x64" "\xc6\x19\xdd\x55\x5a\x11\x6f\x42\x7d\xc9\x3c\x3b\xb2\xf5\x73\x4f\x9d\xfc" "\xe2\xf0\x77\x8f\x0f\xed\x5d\xf3\xd3\x33\xd7\xef\xb9\x77\x2a\x24\xee\x6b" "\x9a\x4f\x51\xb4\x70\x5b\xf3\xe3\x7b\xa2\x28\x9a\x9b\x7c\x8d\x49\x67\xdb" "\x60\xfa\xe0\xe4\x76\x43\x14\x45\xf3\x9a\x1e\xf7\xfe\x92\x71\x5d\xd5\xe6" "\xf8\xaf\x09\xb4\x97\x27\xb7\x73\x92\xdb\xfe\x92\x3c\xe9\xcf\xaf\xcc\xb5" "\x1b\x6d\x8e\xa3\x91\xbb\xed\x6d\xf3\x71\x9d\xaa\xcd\x72\xfe\xbc\xfc\xfa" "\xcb\x6f\x8c\x66\x4b\x5a\xe7\xc2\xe4\xf6\xd9\xe4\xf6\xea\x19\xe6\xa9\xa7" "\x5f\x71\x54\x8b\xa3\xc6\xe4\xf0\x77\xc5\x53\x73\x24\x6a\x7a\xde\xe2\x28" "\x1e\x9f\xdb\x7d\x93\xed\xda\x78\x3b\x9a\x6c\x47\xf9\x76\x9c\x6b\xd7\x72" "\xed\x7a\x4f\xae\xae\xf1\x7e\x93\x15\x5b\x8f\xe3\xec\xf2\x34\x2e\xb7\x3c" "\xdd\x1c\x37\x92\xe5\x57\x36\x6f\xab\x0b\x6c\x0c\x2c\x5f\x9a\xdc\xf6\x25" "\x2f\xd4\x9f\xa7\xed\x28\x7f\x67\x42\xff\xb4\x3b\x53\x75\x44\x4d\xe3\x3a" "\x7d\xa1\x26\x46\x40\x2d\xf0\xda\x4b\x97\x4f\x0e\x2f\x79\x32\xfa\x93\x65" "\xfd\xf1\xe2\x69\x8f\x19\x2d\x90\xfe\xec\xf4\xf7\xb6\x6f\x7e\xed\xc7\x87" "\x9f\x1d\x08\x8c\x23\x7e\x26\x4e\xf2\xc7\x1d\xe5\x1f\x1e\x79\xf2\xe4\x37" "\x6e\x39\xb1\x74\x30\x94\x7f\x5b\x2d\xc9\x5f\xeb\x28\xff\x0b\xf5\x17\xcf" "\x7d\xfd\xcc\xe0\xfc\x60\xfe\xa3\x69\xfe\x7a\x47\xf9\x37\xfd\xf2\x27\x0f" "\xdd\x7f\xd3\xa1\x25\xc1\xf5\x73\x3a\x5d\x3f\x8d\x8e\xf2\xaf\xfc\xea\xfc" "\x23\x67\x0f\x6d\xec\x1d\x0a\xe5\x3f\x96\xe6\xef\xeb\x28\xff\x0d\x5b\x56" "\xac\xbd\xfc\xcc\xc1\x3b\x83\xe3\x5f\x9d\xae\x9f\xb9\x1d\xe5\xff\xd1\x23" "\xab\xce\x6f\x39\xfa\xad\x13\xc1\xfc\x51\x9a\x7f\x5e\x47\xf9\x5f\x7e\xf2" "\xe9\xe5\xf5\xa5\x8f\x9e\x0a\xe6\x3f\x99\xae\x9f\xfe\x8e\xf2\xdf\xbc\xe6" "\xf1\x75\x1f\x5f\xf6\xc0\x13\xc1\xf5\xff\x52\x9a\x7f\x41\x47\xf9\x37\x9f" "\x7a\x70\xdb\xde\xa7\x9e\x5f\x15\x9c\x9f\x1b\xd2\xf5\x33\xd0\x51\xfe\x73" "\xeb\x7e\xf8\xca\xf9\x81\xf5\x4f\x87\xb6\x9d\xf1\xb1\x0b\xbd\x87\x05\x78" "\x6b\x79\x5b\x72\x8c\xf5\x50\xd2\xee\xf4\x3c\xb3\xaa\xa6\xf3\x85\xc7\x87" "\x1a\x13\xc7\x7c\xf3\x93\xaf\x05\xdd\xec\x28\x27\x6e\x3a\x77\x01\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x80\x90\x3d\xa3\xf5\x83\xcd\xed\x57\x4e\x3c\x7c\xe3\x17\xfe\xc7" "\xd6\xff\xd6\x88\xa3\x28\x0e\x3c\x66\xb4\x40\xfa\xb3\xfa\x9c\xe1\xe1\xa1" "\x0e\xc6\xb1\xf2\xab\xf3\x8f\x9c\x3d\xb4\xb1\x37\x6d\x8f\xf5\x3d\xd8\x41" "\x1e\x00\x00\x00\x60\xba\x65\x2f\x7f\xf9\x4b\xcd\xed\xf4\x3c\xbc\x96\xb4" "\xe3\xa8\x2f\x1a\x8c\x0e\xc5\x73\xa3\x65\x85\x8f\x4f\xaf\x11\x2c\x4b\x5b" "\x71\x76\x79\xfe\x1a\xc2\xdc\xa9\xc8\xae\xe4\xa9\x75\x29\x4f\xbd\x4b\x79" "\x1a\x5d\xca\xd3\xd3\xa5\x3c\x73\xba\x94\xa7\xb7\x4b\x79\xfa\x4a\xf2\xf4" "\x45\xed\xe5\x99\xdb\x32\x4f\xad\xed\xf1\xcc\xeb\x52\x9e\xfe\x2e\xe5\x99" "\xdf\xa5\x3c\x0b\xba\x94\x67\x61\x97\xf2\x5c\xd2\xa5\x3c\x03\x2d\xf3\xb4" "\x3f\x0f\x17\x75\x29\xcf\xe2\x2e\xe5\x79\x5b\x97\xf2\x2c\xe9\x52\x9e\xb7" "\x77\x29\xcf\x3b\xba\x94\xe7\xd2\x2e\xe5\xc9\x5f\x53\x9e\xe9\x3c\x5c\x90" "\x44\x5e\x16\xca\x33\x7e\xa7\x5e\x9a\xa7\x11\xd7\x27\x7f\x50\x74\x3d\x3d" "\xed\xe7\xf2\x8a\xfd\xf4\xb7\xd9\x4f\xfe\x9a\xfd\x4c\xfb\x99\xdb\x66\x3f" "\x57\x55\xec\xa7\xaf\xcd\x7e\xde\x5d\xb1\x9f\xb8\xcd\x7e\x56\xe5\x1e\x57" "\x9b\x61\x3f\xb5\x92\x7e\xd2\x79\x7b\x57\xa8\x9e\xb4\xd5\xe6\xfc\xbf\xbb" "\x4b\x79\x0e\x77\x29\xcf\x91\x2e\xe5\xf9\xdd\x2e\xe5\xf9\xc7\x5d\xca\xf3" "\x4f\xba\x94\xe7\x9e\x8a\x79\x00\x42\x7e\xff\xb9\xab\xff\xa8\xb9\x9d\x9e" "\xff\xa7\xe7\x9f\x71\x34\x10\xf5\x36\xae\x8b\xe6\x25\x5b\x9c\xfc\x55\x80" "\xf4\x7c\xf7\x8a\xf1\xef\xd3\xf7\x77\xa1\x0d\x52\x9a\x6f\x79\x6e\x79\x4f" "\x59\xbe\xfc\x09\x76\x2e\xdf\x15\x33\x1d\x5f\xfe\x02\x42\x2e\xdf\x3b\x5b" "\xe6\x6b\x4c\x3b\x5f\x2d\xc8\xd7\x68\xce\xb7\xb2\x4b\xf9\x00\x00\x00\x60" "\x26\xfe\xe9\xb9\x23\x99\x5f\xcd\x4d\x3f\xff\x1f\x8c\x7a\x1b\x4b\x26\xcf" "\x5f\xdf\x95\x7b\x7c\xe9\xf9\x7a\xfe\x17\xd9\x89\x34\xdf\xd5\x5d\xca\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\xfc\x7f\x76\xed\x35\x46\xae\xb2\x7c\x00\xf8\x7b\x76\x66\x67\xe6" "\xbf\x5c\xba\x90\xb6\x4c\xe9\x6d\xd3\xf6\x4f\x21\x84\x5e\x68\x6a\x04\x15" "\x26\x4d\x24\xc1\x08\x5b\xc4\x96\x4b\x43\xd6\x0a\x0b\xdb\xb0\xb4\xd0\x6d" "\x81\x56\x4d\x11\x8c\x6d\x36\xc1\xa0\xc5\x0b\xb7\x0f\x16\x24\x86\x10\x81" "\x84\xa4\x41\xd7\x04\x03\x4a\xfc\x60\x63\x83\x18\x2e\xae\x0b\x2b\x81\x2f" "\x44\x90\xde\x80\xa2\x63\x66\xf7\x9c\xdd\xb3\xb3\x33\xec\x32\x4a\x6b\xf5" "\xf7\x0b\x39\x67\x9e\x73\x9e\xe7\x7d\xde\x73\x48\x48\x9e\xb3\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xfc\xe7\xfb\xe3\xf7\xff\xf6\x6c\x3a\x1e\xec\xeb\x6d\xef\x1a\xe8\xe8" "\x0f\x51\xa8\xfc\x53\x53\xb9\x86\xe4\x5e\x26\x57\x2a\xb5\x35\xb0\x8f\x77" "\x9e\x5b\x7b\xe5\x5f\x5f\xda\xba\x3b\x89\x2b\xbd\xf3\xd9\x06\x16\x02\x00" "\x00\x00\xc6\x79\xfc\xbc\x19\xa7\xa7\xe3\x64\x0e\x4f\x46\xef\x28\x14\x42" "\x3e\xbb\x34\xe4\xa3\xdc\x98\xba\x62\xfc\x1d\xa0\x18\xc7\x4d\xad\xc3\xe7" "\x39\x8b\xc2\xf2\xcc\xee\xff\xbf\x30\x2a\x35\x0d\xc5\x27\x47\x27\x8d\xa9" "\x2b\xc4\x75\x85\x38\xce\xc4\x75\x3d\x5b\xb6\x5e\xbf\xb6\xbb\xbb\x73\xe3" "\x27\xf8\xa3\xd2\xa7\xfa\x39\xaa\xf7\x13\x85\x30\xf4\xf9\x62\xce\x89\x61" "\xd5\xa2\xed\xcf\xec\x89\xda\x86\x9f\xa3\x65\x82\xe7\x68\x8a\xeb\x16\x6f" "\xba\xe1\xc6\xc5\x3d\x5b\xb6\x9e\xb5\xee\x86\xb5\xd7\x75\x5e\xd7\xb9\x7e" "\xd9\xb2\xe5\xe7\x2c\x5d\xb6\xf4\xec\x73\x96\x2d\xbe\x76\x5d\x77\xe7\x92" "\xe1\x63\xc8\x4f\xb0\x5e\x08\xa1\x34\xf6\xbd\x4c\xf0\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\x80\x6d\xbf\xdd\xfd\xad" "\x74\x3c\xd8\xd7\xdb\xde\x35\xd0\xd1\xdf\x12\x85\x10\xd5\xa9\x29\xd7\x90" "\xdc\xcb\xe4\x4a\xa5\xb6\x06\xf6\xf1\xca\x7d\x0f\xce\xca\xcc\xb8\x7b\x6f" "\x12\x57\x7a\xe7\xb3\x0d\x2c\x04\x00\x00\x00\x8c\xf3\xab\xc7\x67\x9c\x9f" "\x8e\x93\x39\x3c\x19\xbd\xa3\x50\x08\xf9\x6c\x2e\x64\xc2\x8c\xa1\x78\xde" "\x68\x6a\x36\x84\x72\x39\xb9\xbe\xa0\xea\xfa\x91\xd8\x3b\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70\x64\xed\x3b\xd8\xfe\xe7\x74" "\x3c\xd8\xd7\xdb\xde\x35\xd0\xd1\x7f\x5c\x14\x42\x54\xa7\xa6\x5c\x43\x72" "\x2f\x93\x2b\x95\xda\x1a\xd8\xc7\xea\x65\x3f\x3a\xff\x0b\x33\xef\xb8\x37" "\x89\x2b\xbd\x8b\x0d\xac\x03\x00\x00\x00\x8c\xf7\xc2\xe9\xcd\x77\xa4\xe3" "\x64\x0e\x6f\x8a\xe3\x28\x14\x42\x31\xcc\x0f\xcd\xd1\x8c\x31\x75\xc9\xb7" "\x81\x53\xab\xd6\xab\xce\x4b\xd6\x99\x3d\xc9\xbc\xea\x6f\x07\xf5\xf2\xe6" "\x4f\x32\xef\xb4\x49\xe6\x9d\x31\x41\xde\xc5\xf1\xf9\xd6\x00\x00\x00\x00" "\xc7\x9e\x2b\x5a\x7f\xb7\x3a\x1d\x27\xf3\x7f\x73\x1c\x47\xa1\x35\xe4\xb3" "\xc5\x90\x89\xe3\x89\xe6\xf8\xe4\xbb\xc0\xdc\xaa\xbc\xa4\x7e\xa2\xf9\x3e" "\xa9\x9f\x57\xa7\x7e\xa2\xb9\x3f\xa9\xaf\x9e\xfb\x01\x00\x00\xe0\x7f\xd9" "\x59\x6f\x3e\xf1\x61\x3a\x1e\x3f\xff\x17\x43\x3e\x5b\x18\x99\xbf\x27\xfa" "\x7b\xfa\x45\xf1\xd9\xdf\xc9\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\x80\x7a\x7e\x7d" "\xf0\xc2\x5f\xa4\xe3\xc1\xbe\xde\xf6\xae\x81\x8e\xfe\x4c\x14\x42\x54\xa7" "\xa6\x5c\x43\x72\x2f\x93\x2b\x95\xda\x1a\xd8\xc7\xaa\x7f\xbc\xb1\xe3\xf6" "\x4b\x6f\x99\x9a\xc4\x95\xde\xf9\x6c\x03\x0b\x01\x00\x00\x00\xe3\x3c\x9a" "\xfb\xf4\x2d\xe9\x38\x99\xc3\x93\xd1\x3b\x0a\x85\x90\xcf\xb6\x84\xe6\x70" "\xdc\xd0\xdc\xff\x5a\x6e\xca\xd4\x75\xdf\x9c\x39\x3b\x84\x50\x1a\x4a\xc8" "\xe5\xc2\xad\x6b\x37\x6d\xda\x78\xf6\xf0\x31\xc9\xfb\x52\xb4\xeb\x73\x0b" "\x6f\xe8\x3b\x73\x5c\xde\xd2\xe1\xe3\x91\x7f\x52\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x5f\xb5\xec\x91\x9d\x6b\xd2\xf1\x60" "\x5f\x6f\x7b\xd7\x40\x47\xff\xff\x45\x21\x44\x75\x6a\xca\x35\x24\xf7\x32" "\xb9\x52\xa9\xad\x81\x7d\xbc\xb0\xf3\x8c\xc3\x57\xdd\xf5\x54\x5f\x12\x57" "\x7a\x17\x1b\x58\x07\x00\x00\x00\x18\x6f\x56\xf7\xd3\x7f\x49\xc7\xc9\x1c" "\x9e\xcc\xfe\x51\x28\x84\x62\xc8\x85\x5c\x98\x3e\x14\xa7\x67\xfd\x8a\xa6" "\xaa\xf5\xea\x7d\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xfe\x7b\xf4\x6c\xd9\x7a\xfd\xda\xee\xee\xce\x8d\x7e\xf8\xe1" "\x87\x1f\x23\x3f\x8e\xf6\x7f\x99\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\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\xa3\xe5\xe7\xeb\xbf\xf7\x76\x3a\x1e\xec" "\xeb\x6d\xef\x1a\xe8\xe8\x2f\x44\x21\x44\x75\x6a\xca\x35\x24\xf7\x32\xb9" "\x52\xa9\xad\x81\x7d\x7c\xea\xaa\x39\xe7\xcc\xde\xbf\xf9\xe6\x24\xae\xf4" "\x2e\x36\xb0\x0e\x00\x00\x00\x30\xde\x9a\xb7\x36\xef\x4f\xc7\xc9\x1c\x9e" "\xcc\xfe\x51\x28\x84\x62\x68\x0e\xcd\x61\x5a\x1c\x8f\x37\x34\xff\xb7\x1e" "\x89\xdd\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x47" "\xd3\xdc\x10\x85\xf2\xc7\x74\xca\xca\xa3\xbd\x6b\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x93\x70\xe0\xc5\x55" "\xf7\xa5\xe3\xc1\xbe\xde\xf6\xae\x81\x8e\xfe\x13\xa2\x10\xa2\x3a\x35\xe5" "\x1a\x92\x7b\x99\x5c\xa9\xd4\xd6\xc0\x3e\xae\xdc\xfb\xed\xaf\xdc\xb8\xeb" "\xd9\x33\x92\xb8\xd2\x3b\x9f\x6d\x60\x21\x00\x00\x00\x60\x9c\xe6\x37\x5f" "\xfc\x6a\x3a\x4e\xe6\xf0\x64\xf4\x8e\x42\x21\xe4\xb3\xb3\x42\x3e\xcc\x8a" "\xaf\x74\x8f\x5d\x20\xca\x24\x89\x35\xbf\x0b\x8c\xd6\x7d\x7d\x4c\x59\x66" "\xd2\x75\x3b\xaa\x76\x3c\xbc\xb3\x42\xfc\x1d\xa2\x30\xb2\xcf\x30\xf4\xd9" "\x61\xb4\xee\xae\x8f\xac\x2b\xc6\x57\x9b\x5a\x27\xf7\x9e\x00\x00\x00\xe0" "\x58\x36\x6d\xc7\xc5\xdf\x48\xc7\xc9\xfc\xdf\x1c\xc7\x51\x68\x0d\xf9\xec" "\xb4\xd4\x5c\x7d\xe3\x98\xfa\x96\x49\xcf\xf1\x77\x8f\xa9\x3b\x61\xd2\x75" "\x3f\x1d\x53\xd7\x3a\x41\xdd\xbf\xe1\x95\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x0d\xba\x73\xe5\x73\xa7\xa4\xe3\xc1\xbe\xde\xf6\xae\x81\x8e" "\xfe\x28\x0a\x21\xaa\x53\x53\xae\x21\xb9\x97\xc9\x95\x4a\x6d\x0d\xec\xa3" "\xd4\x79\xdf\xd3\x0f\x5f\xde\x37\x23\x89\x2b\xbd\x8b\x0d\xac\x03\x00\x00" "\x00\x8c\x77\xe9\x1b\x85\xef\xa6\xe3\x64\x0e\x4f\x66\xff\x28\x14\x42\x31" "\xcc\x0e\x27\x86\xd9\x43\x73\x7f\x68\x1d\x5b\x9f\xe4\x1d\x57\xfa\xfd\xcb" "\x2b\x76\xbf\x74\x45\x08\x4b\xa6\x3f\x3f\x27\x5b\xb7\xdf\x0f\xf7\x5c\xf6" "\x76\x38\xf4\xd9\xd7\xde\x1b\x3e\x0c\x85\x21\x34\x8d\x4d\x6a\x0a\x61\x4a" "\xdc\x2f\xaa\xd3\xef\xea\x3f\x3c\xb2\xea\x99\x0f\xb7\x3f\x10\xc2\x92\x69" "\x99\x59\xf5\xfb\x8d\xb6\x1a\x3d\x54\x89\x4a\xe5\x93\xb7\x2d\x78\xf8\xf2" "\xe9\x7b\x57\xd4\x5d\x06\x00\x00\x00\x8e\x69\x85\x07\x0f\xfc\x24\x1d\x27" "\xf3\x7f\x32\x51\x47\xa1\x35\xe4\xb3\xeb\xeb\xce\xff\x49\xde\xc7\x9a\xff" "\xdb\x7b\x66\x6e\x9b\x1a\x1f\xe3\x2f\x00\x55\x15\x4d\xad\x71\xbf\xa6\x3a" "\xfd\x7a\xdf\x7d\xa0\xed\xe0\x9a\x2f\x1f\xac\xcc\xff\xcf\xcf\x29\x8c\xfc" "\xbf\x02\xa7\xcf\x1f\x9b\x9f\x6e\x95\x3e\x56\x7d\x73\x88\x4a\xe5\xb9\x4f" "\x9c\xb6\xfa\xf0\x81\x9b\x2e\x19\xbe\x90\xf4\xcf\xd4\xe9\xbf\xa6\x79\xde" "\x49\x3b\xdf\x9a\x39\x2f\xe9\x5f\x88\xaf\x5f\x13\x26\xdb\x3f\x54\xf5\xef" "\xe9\x38\x34\x7f\x51\xcb\xf1\x17\x8c\xed\x1f\x42\x68\xab\xd5\xff\xc7\x17" "\x3e\xfe\xfe\xaa\x7b\xdf\xbd\x62\xb8\x7f\xfd\xf7\xbd\xf8\x4f\x83\x9f\x9f" "\x1a\x36\xfc\xa0\xd0\x9d\x1c\x87\xaf\x8c\xef\xbf\xf2\xfe\xe5\x3b\xb7\xe6" "\x5e\x9f\x32\xb6\x7f\x54\xa7\xff\xc2\x67\x9f\xdc\xff\xd8\xad\xab\xee\xac" "\x7e\xfe\x53\xb3\xb5\xfa\x8f\x3f\x56\xa9\x74\xcd\x96\x7b\xf7\xdd\xbe\xf0" "\xb6\x15\x9d\xe7\xa6\xfa\x37\xd5\xe9\x7f\x73\xdb\x2b\xef\x7c\xe7\x67\xbf" "\x7c\xa8\xd2\x7f\xdf\xdc\x96\x91\xfe\x0b\x3f\xe2\xf9\x27\xec\xbf\x67\xfe" "\x8e\x7d\xbb\xb6\xdf\xb3\x66\xec\xfb\x2f\xd5\xea\x7f\xf5\x59\x1b\x9f\xdc" "\xb2\xee\xca\xbb\xaa\x9f\xbf\xa5\x6a\xe1\xf4\x9b\x4f\x1f\xc7\xbf\xff\x57" "\x67\x45\x17\x6d\xee\x79\x79\x63\xf5\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\x63\x5b\xc7\x63\x1f\x1c\x4a\xc7\x83\x7d\xbd\xed\x5d\x03" "\x1d\xfd\x4d\x51\x08\x51\x9d\x9a\x72\x0d\xc9\xbd\x4c\xae\x54\x6a\x6b\x60" "\x1f\xbf\xc9\xec\xf9\xe0\xa1\xfd\xc5\xe3\x93\xb8\xd2\xbb\xd8\xc0\x3a\x00" "\x00\x00\xc0\x78\x97\xac\x78\xf5\xba\x74\x9c\xcc\xe1\xc9\xec\x1f\x85\x42" "\x28\x86\x5c\xc8\x85\x96\xa1\xb9\xff\xe4\x6d\x0b\x1e\xbe\x7c\xfa\xde\x15" "\xa1\x35\xbe\x1f\x9f\xb3\xdd\x1b\x7a\x36\x9d\x79\xed\x86\xcd\xeb\xaf\x39" "\xd2\x8f\x00\x00\x00\x00\x4c\x60\xd7\x79\xef\xaf\x48\xc7\xc9\xfc\x9f\x8d" "\xe3\x28\xb4\x86\x7c\x76\x41\x68\x8e\xe7\xff\x95\xf7\x2f\xdf\xb9\x35\xf7" "\xfa\x94\x64\xfe\x0f\x21\x0c\xfd\xb9\x3f\x7b\xed\xba\xee\xce\x25\x61\xe4" "\x3b\x41\x4f\xc7\xa1\xf9\x8b\x5a\x8e\xbf\x20\xc9\xcb\xc4\xe7\x42\x25\x6f" "\xd1\xd5\x1b\xba\xe3\xcf\x04\xc9\xba\x4f\x3d\xfa\x99\xa5\xe7\x5e\x76\xe9" "\x48\x7e\x53\x3a\xff\xec\xd1\xbc\xb9\x4f\x9c\xb6\xfa\xf0\x81\x9b\x2e\xa9" "\x99\xb7\x6c\x34\xef\xd5\x59\xd1\x45\x9b\x7b\x5e\xde\x98\xda\x67\x69\x24" "\x6f\xe9\x68\x5e\xef\xbe\xdb\x17\xde\xb6\xa2\xf3\xdc\xe4\x39\xa2\xf8\x5c" "\x88\x9f\x27\xc9\xdb\x33\x7f\xc7\xbe\x5d\xdb\xef\x59\x93\xe4\x35\xc5\xe7" "\x96\x78\x3d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x20\x84\x93\xde\xfb" "\xfb\xd7\xd2\xf1\x60\x5f\x6f\x7b\xd7\x40\x47\x7f\xc8\x84\x10\xd5\xa9\x29" "\xd7\x90\xdc\xcb\xe4\x4a\xa5\xb6\x06\xf6\xf1\xc1\xf9\xcf\x0f\x1e\x6e\xfd" "\xe2\x83\x49\x5c\xe9\x9d\xcf\x36\xb0\x10\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xff\x64\x07\x0e\x04\x00\x00\x00\x00\x80\xfc\x5f\x1b\xa1\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\x0a\xfb\xf5\x13\x1a\x47\x15\xc7\x01\xfc\xbd\xdd" "\xa9\xd9\x76\x6b\xdd\xd4\x42\x13\xad\x21\xc5\x5e\x5a\x10\x0a\xc1\x62\x0f" "\xd2\x5c\xfc\x83\x44\x2d\x15\x45\x0b\xc5\x28\xc6\x8b\x8a\x05\xd1\x8a\x3d" "\xd8\x36\x18\x8a\x7a\x28\x28\xb4\xb4\x97\xd2\x8a\x67\x25\x87\xa2\xf6\x10" "\x8b\xad\xa2\x20\x56\xf1\x20\x9e\x14\xf4\xa4\x92\x43\x52\x24\x15\x95\x24" "\xf3\x92\xcd\xb4\x43\xe2\x48\x4b\x29\x9f\x0f\x2c\x6f\x7f\x6f\x77\xbe\xf3" "\x9b\xb7\x6f\x27\x59\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\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\x6b\xda\x13\x3f\xdd\x97\xb5\xd7" "\x1d\x59\x57\x08\xa1\x27\x9c\x7b\xe3\xa5\x0b\x0f\xdd\x72\xcf\x97\x07\x86" "\x26\x5f\xbf\xff\xe3\x17\xf6\xaf\xfd\x64\xcd\x85\xd6\xf0\xc0\x83\x6f\x6e" "\xbd\xf7\xdb\xc1\x2f\x3a\xfb\x7b\x36\x0c\x6d\xf9\x70\xf4\xe1\x91\xe1\x33" "\x77\xff\x75\xe6\xf0\xd1\x81\x45\x4f\xf4\xea\xec\xb0\x29\x2f\x1b\x21\xc4" "\xdf\x63\x08\x3d\xbf\x8c\x1e\x1e\x39\xfb\xd5\xda\xe9\xb9\x38\x7d\xfe\xd8" "\xda\x17\x3a\x3b\xe3\xea\x4f\x3b\x63\x21\x61\xf3\x54\x08\xe1\x99\xb9\x3e" "\x17\xbe\x38\x3a\xd9\xf7\xec\xf4\xb8\xff\xad\x8e\x05\xf3\x37\x15\x42\x8a" "\xd7\x15\x9a\xf5\xd4\xcf\xac\xd6\xc2\x7e\xb9\xbe\x34\xf2\x7d\xb6\xf7\xc9" "\xa7\x4f\x8c\x3d\xd7\x7f\x76\xb4\x77\x77\xdf\x6f\x13\x77\xbe\xb8\x6f\xfe" "\x2d\xb1\xd1\xb6\x9f\x42\x58\x35\xd8\x7e\xfc\xb2\x10\xc2\xf2\xfc\x31\x2d" "\xed\xb6\xae\x74\x70\x3e\x6e\x0f\x21\xac\x68\x3b\xee\xae\x45\xfa\xba\x7d" "\x89\xfd\xdf\x51\x52\xaf\xcb\xc7\x1b\xf2\xb1\xb9\x48\x4e\x7a\x7d\x7d\xa1" "\xce\x96\xd8\x47\x56\x18\x3b\x96\x78\x5c\x55\xb5\x2b\x9c\x5f\x54\x5c\xbf" "\xe2\xcd\xe8\x4a\x49\xd7\xb9\x2a\x1f\x4f\xe5\xe3\xa6\xff\x98\x53\x4f\x8f" "\x18\x6a\x31\x64\x73\xed\x3f\x1f\xe7\xf7\x48\x68\xfb\xdc\x62\x88\x33\x7b" "\xbb\x31\x57\xd7\x66\xea\x30\x57\x87\x62\x1d\x0b\x75\xad\x50\xd7\x97\x15" "\xae\x6b\xe6\xbc\xf9\xc2\xd6\x63\x5c\x38\x9f\xde\x57\x98\x4f\xb7\xe3\x2c" "\x9f\x5f\xdf\x7e\xaf\xbe\x8c\x1d\x25\xf3\xdd\xf9\xd8\xc8\xbf\xa8\x7f\xa6" "\x3a\x14\x9f\xcc\x6a\x5e\xf2\x64\xfe\x3a\x42\x5b\x5f\xe3\x57\x6b\x63\x94" "\xa8\x95\x7c\xf7\xd2\xfc\x5c\x7b\xf9\x87\xd1\xcc\xe7\x9a\x71\xf5\x25\xc7" "\xfc\x73\x19\xe9\xb5\xf1\xcf\x9f\xda\xf9\xc7\x0f\xaf\x9d\x6a\x95\xf4\x11" "\x3f\x88\x79\x7e\xac\x94\xdf\x3f\x74\x6c\xec\xfd\xc7\x4f\x77\x77\x95\xe5" "\x0f\xd6\xf2\xfc\x5a\xa5\xfc\x73\xf5\xaf\xa7\xde\x9b\xe8\x5a\x59\x9a\x7f" "\x28\xe5\xd7\x2b\xe5\x3f\xfa\xf7\xaf\x07\x0f\x3c\xb2\x67\x4d\xe9\xfa\x8c" "\xa7\xf5\xc9\x2a\xe5\x6f\x78\x7b\xe5\xde\xc9\x3d\x3b\x3a\x7a\xcb\xf2\x8f" "\xa7\xfc\x46\xa5\xfc\x2d\xbb\x7a\xb6\xde\x36\xf1\xf2\x2b\xa5\xfd\x6f\x4e" "\xeb\xb3\xbc\x98\x9f\x2d\x25\xff\xfb\x77\x36\x5e\xdc\x75\xe8\xa3\xd3\xa5" "\xf9\x21\xe5\xaf\xa8\xd4\xff\x8f\xc7\x4e\xae\xab\x77\xbf\x7b\xbe\x34\x7f" "\x2c\xad\x4f\xb3\x52\xfe\x63\x7d\x47\xb6\x3d\x70\xeb\xf0\xd1\xd2\xf5\xff" "\x26\xe5\xdf\x58\x29\x7f\xe7\xf9\x91\xc1\xdd\x27\x3e\xdb\x58\xba\x3f\xb7" "\xa7\xf5\x69\x55\xca\x9f\xda\xf6\xdd\xcf\x17\x5b\x03\x27\xcb\xee\x9d\xf1" "\xf8\xd5\xfe\x0b\x0b\x70\x7d\xb9\x39\xff\x1f\xeb\x60\x5e\x57\xfd\x9d\xf9" "\x7f\xb5\xfd\x5e\x38\xd2\x9b\xfd\xcb\x7e\x1d\xa2\x00\x00\xc3\x30\x00\x64" "\x7e\xfb\xff\x77\x27\x5a\x55\x5d\x0a\x85\x3b\x88\x8e\x4d\x62\xf3\xdd\xcc" "\xeb\x2c\x2a\xce\xd8\x53\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\x93\x1f\x00\x00\xff\xff\xcc\x4d" "\x65\x89", 23960); syz_mount_image( /*fs=*/0x20000100, /*dir=*/0x20005dc0, /*flags=MS_LAZYTIME|MS_POSIXACL|MS_SYNCHRONOUS|MS_RELATIME*/ 0x2210010, /*opts=*/0x20000140, /*chdir=*/1, /*size=*/0x5d98, /*img=*/0x20005e00); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); use_temporary_dir(); loop(); return 0; }