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