// https://syzkaller.appspot.com/bug?id=e96e018b9ab38a37380006ec16bdb2e3b0da8027 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #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); } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x20000080, "jfs\000", 4); memcpy((void*)0x20000000, "./file0\000", 8); memcpy((void*)0x200000c0, "gid=", 4); sprintf((char*)0x200000c4, "0x%016llx", (long long)0); memcpy((void*)0x200000d6, ",noquota,nodiscard,iocharset=koi8-r,errors=continue,errors=continue," "nointegrity\000uid=", 84); sprintf((char*)0x2000012a, "0x%016llx", (long long)0); memcpy((void*)0x2000013c, "\x2c\x71\x75\x6f\x74\x61\x2c\x64\x69\x73\x63\x61\x72\x64\x3d\x30\x78" "\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x31\x35\x30\x33\x2c" "\x75\x73\x72\x71\x75\x6f\x74\x61\x2c\x65\x72\x72\x6f\x72\x73\x3d\x72" "\x65\x6d\x6f\x75\x6e\x74\x2d\x72\x6f\x2c\x64\x69\x73\x63\x61\x72\x64" "\x2c\x6e\x6f\x71\x75\x55\x9f\x57\x1b\x8a\x06\x92\x6f\x74\x61\x2c\x72" "\x65\x73\x69\x7a\x65\x2c\x61\x70\x70\x72\x61\x69\x73\x65\x5f\x74\x79" "\x70\x65\x3d\x69\x6d\x61\x73\x69\x67\x2c\x72\x6f\x6f\x74\x63\x6f\x6e" "\x74\x65\x78\x74\x3d\x73\x79\x73\x61\x64\x6d\x5f\x75\x2c\x00", 134); memcpy( (void*)0x2000c4c0, "\x78\x9c\xec\xdd\xbb\x8f\x5c\x57\x1d\x07\xf0\xdf\x3c\xf7\x61\xe2\xac\x52" "\x44\xc1\x42\x68\xe3\x84\x47\x08\xf1\x33\x18\x43\x80\x24\x05\x14\x34\x29" "\x90\x5b\x64\x6b\xb3\x89\x2c\x1c\x40\xb6\x41\x4e\x64\xe1\x45\xdb\x50\x50" "\xf1\x17\x80\x90\x28\x11\xa2\x44\x14\xfc\x01\x29\x68\xe9\xa8\xa8\xb0\x64" "\x23\x81\x52\x71\xd1\xdd\x3d\xc7\x7b\x67\x3c\xe3\x59\xb3\xde\xb9\xe3\x3d" "\x9f\x8f\xb4\xbe\xf7\x77\xcf\x9d\x9d\x73\xf7\x3b\x4f\xdf\xc7\x09\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x20\xbe\xfb\x9d\xef\x9d\xed" "\x44\xc4\xe5\x9f\xa6\x05\x6b\x11\x9f\x8a\x5e\x44\x37\x62\xa5\xae\xd7\x23" "\x62\x65\x7d\x2d\xaf\xdf\x8f\x88\x17\x62\xa7\x39\x9e\x8f\x88\xc1\x52\x44" "\x7d\xfb\x9d\x7f\x9e\x8d\x78\x3d\x22\x3e\x3e\x1e\x71\xef\xfe\xed\x8d\x7a" "\xf1\xb9\x7d\xf6\xe3\xdb\x7f\xf8\xdb\x6f\xbf\x7f\xec\x9d\xbf\xfe\x7e\x70" "\xfa\x3f\x7f\xbc\xd9\x7b\x63\xda\x7a\xb7\x6e\xfd\xf2\xdf\x7f\xba\x73\xb0" "\x6d\x06\x00\x00\x80\xd2\x54\x55\x55\x75\xd2\xd7\xfc\x13\xe9\xfb\x7d\xb7" "\xed\x4e\x01\x00\x73\x91\xdf\xff\xab\x24\x2f\x3f\xf2\xf5\xaf\xfe\xf1\xce" "\x9f\x17\xa9\x3f\x6a\xb5\x5a\xad\x56\xcf\xa1\x6e\xaa\x26\xbb\xd3\x2c\x22" "\x62\xab\x79\x9b\xfa\x33\x83\xdd\xf1\x00\xf0\x94\xd9\x8a\x4f\xda\xee\x02" "\x2d\x92\x7f\xd1\xfa\x11\x71\xac\xed\x4e\x00\x0b\xad\xd3\x76\x07\x38\x14" "\xf7\xee\xdf\xde\xe8\xa4\x7c\x3b\xcd\xf7\x83\xf5\xdd\xf6\x7c\x2c\xc8\x48" "\xfe\x5b\x9d\x07\xe7\x77\x4c\x9b\xce\x32\x7e\x8c\xc9\xbc\x1e\x5f\xdb\xd1" "\x8b\xe7\xa6\xf4\x67\x65\x4e\x7d\x58\x24\x39\xff\xee\x78\xfe\x97\x77\xdb" "\x87\x69\xbd\xc3\xce\x7f\x5e\xa6\xe5\x3f\xdc\x3d\xf5\xa9\x38\x39\xff\xde" "\x78\xfe\x63\x8e\x4e\xfe\xdd\x89\xf9\x97\x2a\xe7\xdf\x7f\xac\xfc\x7b\xf2" "\x07\x00\x00\x00\x00\x80\x05\x96\xff\xff\x7f\xad\xe5\xfd\xbf\x4b\x07\xdf" "\x94\x7d\x79\xd4\xfe\xdf\xf5\x39\xf5\x01\x00\x00\x00\x00\x00\x00\x00\x9e" "\xb4\x83\x8e\xff\xf7\x80\xf1\xff\x00\x00\x00\x60\x61\xd5\xdf\xd5\x6b\xbf" "\x3e\xbe\xb7\x6c\xda\xb5\xd8\xea\xe5\x97\x3a\x11\xcf\x8c\xad\x0f\x14\x26" "\x9d\x2c\xb3\xda\x76\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x24" "\xfd\xdd\x63\x78\x2f\x75\x22\x06\x11\xf1\xcc\xea\x6a\x55\x55\xf5\x4f\xd3" "\x78\xfd\xb8\x0e\x7a\xfb\xa7\x5d\xe9\xdb\x0f\x25\x6b\xfb\x45\x1e\x00\x00" "\x76\x7d\x7c\x7c\xec\x5c\xfe\x4e\xc4\x72\x44\x5c\x4a\xd7\xfa\x1b\xac\xae" "\xae\x56\xd5\xf2\xca\x6a\xb5\x5a\xad\x2c\xe5\xcf\xb3\xc3\xa5\xe5\x6a\xa5" "\xf1\xbd\x36\x4f\xeb\x65\x4b\xc3\x7d\x7c\x20\xee\x0f\xab\xfa\x97\x2d\x37" "\x6e\xd7\x34\xeb\xfb\xf2\xac\xf6\xf1\xdf\x57\xdf\xd7\xb0\xea\xed\xa3\x63" "\x4f\xc8\x20\xfd\x35\xa7\x34\xb7\x14\x36\x00\x24\xbb\xef\x46\xf7\xbc\x23" "\x1d\x31\x55\xf5\xec\xb4\x0f\x1f\x30\xc2\xf3\xff\xe8\xf1\xfc\x67\x3f\xda" "\x7e\x9c\x02\x00\x00\x00\x87\xaf\xaa\xaa\xaa\x93\x2e\xe7\x7d\x22\xed\xf3" "\xef\xb6\xdd\x29\x00\x60\x2e\xf2\xfb\xff\xf8\x7e\x81\x43\xa9\x23\x0e\xf7" "\xf7\xab\xd5\x6a\xb5\x5a\xad\x7e\x64\xdd\x54\x4d\x76\xa7\x59\x44\xc4\x56" "\xf3\x36\xf5\x67\x06\xc3\xf1\x03\xc0\x53\x66\x2b\x3e\x69\xbb\x0b\xb4\x48" "\xfe\x45\xeb\x47\xc4\x0b\x6d\x77\x02\x58\x68\x9d\xb6\x3b\xc0\xa1\xb8\x77" "\xff\xf6\x46\x27\xe5\xdb\x69\xbe\x1f\xa4\xf1\xdd\xf3\xb1\x20\x23\xf9\x6f" "\x75\x76\x6e\x97\x6f\x3f\x69\x3a\xcb\xf8\x31\x26\xf3\x7a\x7c\x6d\x47\x2f" "\x9e\x9b\xd2\x9f\xe7\xe7\xd4\x87\x45\x92\xf3\xef\x8e\xe7\x7f\x79\xb7\x7d" "\x98\xd6\x3b\xec\xfc\xe7\x65\x5a\xfe\xf5\x76\xae\xb5\xd0\x9f\xb6\xe5\xfc" "\x7b\xe3\xf9\x8f\x39\x3a\xf9\x77\x27\xe6\x5f\xaa\x9c\x7f\xff\xb1\xf2\xef" "\xc9\x1f\x00\x00\x00\x00\x00\x16\x58\xfe\xff\xff\x35\xfb\x7f\xf3\x26\x03" "\x00\x00\x00\x00\x00\x00\xc0\x53\xe7\xde\xfd\xdb\x1b\xf9\xbc\xd7\xbc\xff" "\xff\x33\x13\xd6\x73\xfe\xe7\xd1\x94\xf3\xef\xc8\xbf\x48\x39\xff\xee\x58" "\xfe\x5f\x1c\x5b\xaf\xd7\x98\xbf\xfb\xf6\x5e\xfe\xff\xba\x7f\x7b\xe3\x77" "\x37\xff\xf9\xe9\x3c\xdd\x6f\xfe\x4b\x79\xa6\x93\x1e\x59\x9d\xf4\x88\xe8" "\xa4\x7b\xea\xf4\xd3\xf4\x20\x5b\xf7\xb0\xed\x41\x6f\x58\xdf\xd3\xa0\xd3" "\xed\xf5\xd3\x31\x3f\xd5\xe0\xbd\xb8\x1a\xd7\x62\x33\xce\x8c\xac\xdb\x4d" "\x7f\x8f\xbd\xf6\xb3\x23\xed\x75\x4f\x07\x23\xed\xe7\x46\xda\xfb\x0f\xb5" "\x9f\x1f\x69\x1f\xa4\xeb\x0e\x54\x2b\xb9\xfd\x54\x6c\xc4\x8f\xe2\x5a\xbc" "\xbb\xd3\x5e\xb7\x2d\xcd\xd8\xfe\xe5\x19\xed\xd5\x8c\xf6\x9c\x7f\xcf\xf3" "\xbf\x48\x39\xff\x7e\xe3\xa7\xce\x7f\x35\xb5\x77\xc6\xa6\xb5\xbb\x3f\xef" "\x3e\xf4\xbc\x6f\x4e\x27\xdd\xcf\x5b\x57\x3f\xfb\x8b\x33\x87\xbf\x39\x33" "\x6d\x47\xef\xc1\xb6\x35\xd5\xdb\x77\xb2\x85\xfe\xec\xfc\x4d\x8e\x0d\xe3" "\x27\x37\x36\xaf\x9f\xba\x75\xe5\xe6\xcd\xeb\x67\x23\x4d\x46\x96\x9e\x8b" "\x34\x79\xc2\x72\xfe\x83\x9d\x9f\xa5\xbd\xd7\xff\x97\x76\xdb\xf3\xeb\x7e" "\x7e\xbe\xf6\x77\xf2\x1f\x3e\x76\xfe\x8b\x62\x3b\xfa\x53\xf3\x7f\xa9\x31" "\x5f\x6f\xef\x2b\x73\xee\x5b\x1b\x72\xfe\xc3\xf4\x93\xf3\x7f\x37\xb5\x4f" "\x7e\xfe\x3f\xcd\xf9\x4f\x7f\xfe\xbf\xda\x42\x7f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xe0\x51\xaa\xaa\xda\x39\x45\xf4\xad\x88\xb8\x90" "\xce\xff\x69\xeb\xdc\x4c\x00\x60\xbe\xf2\xfb\x7f\x95\xe4\xe5\x6a\xb5\x5a" "\xad\x56\xab\x8f\x5e\xdd\x54\x4d\xf6\x66\xb3\x88\x88\xbf\x34\x6f\x53\x7f" "\x66\xf8\xd9\xa4\x5f\x06\x00\x2c\xb2\xff\x46\xc4\xdf\xdb\xee\x04\xad\x91" "\x7f\xc1\xf2\xf5\xfe\xea\xe9\xcb\x6d\x77\x06\x98\xab\x1b\x1f\x7e\xf4\x83" "\x2b\xd7\xae\x6d\x5e\xbf\xd1\x76\x4f\x00\x00\x00\x00\x00\x00\x00\x80\xff" "\x57\x1e\xff\x73\xbd\x31\xfe\xf3\xcb\x11\xb1\x36\xb6\x5e\xf3\x9a\x00\x77" "\xdf\x8e\xf5\x83\x8e\xff\xd9\xcf\x33\x0f\x06\x18\x7d\xc2\x03\x7d\x4f\xb1" "\xdd\x1d\xf6\xba\x8d\xe1\xc6\x5f\x8c\x9d\xf1\xb9\x4f\x4d\x1b\xff\xfb\x64" "\x3c\x7a\xfc\xef\xfe\x8c\xfb\x1b\xcc\x68\x1f\xce\x68\x5f\x9a\xd1\xbe\x3c" "\x71\xe9\x5e\x5a\x13\x4f\xf4\x68\xc8\xf9\xbf\xd8\x18\xef\xbc\xce\xff\xc4" "\xd8\xf0\xeb\x25\x8c\xff\x3a\x3e\xe6\x7d\x09\x72\xfe\x27\x1b\x8f\xe7\x3a" "\xff\x2f\x8c\xad\xd7\xcc\xbf\xfa\xcd\xc2\xe5\xbf\xb5\xdf\x15\xb7\xa3\x3b" "\x92\xff\xe9\x9b\x1f\xfc\xf8\xf4\x8d\x0f\x3f\x7a\xed\xea\x07\x57\xde\xdf" "\x7c\x7f\xf3\x87\xe7\xcf\x9e\x3d\x73\xfe\xc2\x85\x8b\x17\x2f\x9e\x7e\xef" "\xea\xb5\xcd\x33\xbb\xff\x1e\x4e\xaf\x17\x40\xce\x3f\x8f\x7d\xed\x38\xd0" "\xb2\xe4\xfc\x73\xe6\xf2\x2f\x4b\xce\xff\x73\xa9\x96\x7f\x59\x72\xfe\x9f" "\x4f\xb5\xfc\xcb\x92\xf3\xcf\x9f\xf7\xe4\x5f\x96\x9c\x7f\xfe\xee\x23\xff" "\xb2\xe4\xfc\x5f\x49\xb5\xfc\xcb\x92\xf3\xff\x52\xaa\xe5\x5f\x96\x9c\xff" "\xab\xa9\x96\x7f\x59\x72\xfe\x5f\x4e\xb5\xfc\xcb\x92\xf3\x7f\x2d\xd5\xf2" "\x2f\x4b\xce\xff\x54\xaa\xe5\x5f\x96\x9c\xff\xe9\x54\xef\x23\x7f\x97\x87" "\x3f\x42\x72\xfe\x79\x0f\x97\xe7\x7f\x59\x72\xfe\xf9\xc8\x06\xf9\x97\x25" "\xe7\x7f\x2e\xd5\xf2\x2f\x4b\xce\xff\x7c\xaa\xe5\x5f\x96\x9c\xff\xeb\xa9" "\x96\x7f\x59\x72\xfe\x5f\x49\xb5\xfc\xcb\x92\xf3\xbf\x90\x6a\xf9\x97\x25" "\xe7\xff\xd5\x54\xcb\xbf\x2c\x39\xff\x8b\xa9\x96\x7f\x59\x72\xfe\x5f\x4b" "\xb5\xfc\xcb\x92\xf3\xff\x7a\xaa\xe5\x5f\x96\x9c\xff\x1b\xa9\x96\x7f\x59" "\x72\xfe\xdf\x48\xb5\xfc\xcb\x92\xf3\xff\x66\xaa\xe5\x5f\x96\x9c\xff\xb7" "\x52\x2d\xff\xb2\xe4\xfc\xdf\x4c\xb5\xfc\xcb\xb2\x77\xfd\x7f\x33\x66\xcc" "\x98\xc9\x33\x6d\xbf\x32\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe3" "\xe6\x71\x38\x71\xdb\xdb\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xff\x63\x07\x0e\x04\x00\x00\x00\x00\x80\xfc\x5f\x1b\xa1\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x0a\x3b\x70\x20\x00\x00\x00\x00\x00\xe4" "\xff\xda\x08\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\xd8\xbb\xbb\x18\xb9" "\xce\xfa\x0c\xe0\x67\xf6\xc3\x5e\x3b\x84\x18\x08\xc1\x49\x0d\x6c\x12\x63" "\x42\xb2\x64\xd7\x76\xe2\x0f\x5a\x17\x13\x3e\x1b\xa0\x14\x48\x28\xf4\x03" "\xdb\xf5\xae\xcd\x82\xbf\xf0\xda\x25\xa4\x48\x36\x0d\x94\x48\x18\x15\x55" "\xb4\x4d\x2f\xda\x02\x42\x6d\xa4\xaa\xc2\xaa\xb8\xa0\x15\xa5\xb9\xa8\xfa" "\x71\x55\xda\x0b\x7a\x53\x51\x55\x42\x6a\x54\x05\x14\x90\x90\xda\x8a\xb2" "\xd5\xcc\x79\xdf\xd7\x33\xb3\xb3\x73\xd6\xde\xf1\x7a\xf6\xbc\xbf\x9f\x14" "\xff\xbd\x3b\x67\xe6\x9c\x39\xf3\xce\xec\x3e\xeb\x3c\x3b\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xd0\xee\xce\x37\xce\x7d\xa6\x51\x14\x45\xf3\xbf\xd6" "\x1f\x5b\x8a\xe2\x05\xcd\xbf\x6f\x9a\xdc\xd2\xfa\xdc\xeb\x6e\xf4\x11\x02" "\x00\x00\x00\xab\xf5\x7f\xad\x3f\x9f\xbf\x25\x7d\xe2\xe0\x0a\xae\xd4\xb6" "\xcd\xdf\xbf\xe2\x9f\xbe\xb6\xb8\xb8\xb8\x58\xbc\x7f\xf4\x77\xc7\xbf\xb0" "\xb8\x98\x2e\x98\x2c\x8a\xf1\x8d\x45\xd1\xba\x2c\xba\xfc\x1f\x1f\x68\xb4" "\x6f\x13\x3c\x51\x4c\x34\x46\xda\x3e\x1e\xa9\xd8\xfd\x68\xc5\xe5\x63\x15" "\x97\x8f\x57\x5c\xbe\xa1\xe2\xf2\x8d\x15\x97\x4f\x54\x5c\xbe\xe4\x04\x2c" "\xb1\xa9\xfc\x79\x4c\xeb\xc6\xb6\xb7\xfe\xba\xa5\x3c\xa5\xc5\xad\xc5\x78" "\xeb\xb2\xed\x3d\xae\xf5\x44\x63\xe3\xc8\x48\xfc\x59\x4e\x4b\xa3\x75\x9d" "\xc5\xf1\x63\xc5\x7c\x71\xa2\x98\x2b\x66\x3a\xb6\x2f\xb7\x6d\xb4\xb6\xff" "\xc6\x9d\xcd\x7d\xbd\xad\x88\xfb\x1a\x69\xdb\xd7\xb6\xe6\x0a\xf9\xc1\x27" "\x8e\xc6\x63\x68\x84\x73\xbc\xbd\x63\x5f\x57\x6e\x33\xfa\xde\x1b\x8a\xc9" "\x1f\xfe\xe0\x13\x47\xff\xe4\xdc\x73\xb7\xf7\x9a\x95\xa7\xa1\xe3\xf6\xca" "\xe3\xbc\xe7\xae\xe6\x71\x7e\x2a\x7c\xa6\x3c\xd6\x46\xb1\x31\x9d\x93\x78" "\x9c\x23\x6d\xc7\xb9\xad\xc7\x63\x32\xda\x71\x9c\x8d\xd6\xf5\x9a\x7f\xef" "\x3e\xce\xe7\x57\x78\x9c\xa3\x57\x0e\x73\x4d\x75\x3f\xe6\x13\xc5\x48\xeb" "\xef\xdf\x6a\x9d\xa7\xb1\xf6\x1f\xeb\xa5\xf3\xb4\x2d\x7c\xee\xbf\xef\x2e" "\x8a\xe2\xe2\x95\xc3\xee\xde\x66\xc9\xbe\x8a\x91\x62\x73\xc7\x67\x46\xae" "\x3c\x3e\x13\xe5\x8a\x6c\xde\x46\x73\x29\xbd\xb8\x18\xbb\xaa\x75\x7a\xe7" "\x0a\xd6\x69\x73\xce\x6e\xef\x5c\xa7\xdd\xcf\x89\xf8\xf8\xdf\x19\xae\x37" "\xb6\xcc\x31\xb4\x3f\x4c\xdf\xfb\xe4\x86\x25\x8f\xfb\xd5\xae\xd3\xa8\x79" "\xaf\x97\x7b\xae\x74\xaf\xc1\x41\x3f\x57\x86\x65\x0d\xc6\x75\xf1\xad\xd6" "\x9d\x7e\xb2\xe7\x1a\xdc\x1e\xee\xff\x27\x76\x2c\xbf\x06\x7b\xae\x9d\x1e" "\x6b\x30\xdd\xef\xb6\x35\x78\x57\xd5\x1a\x1c\xd9\x30\xda\x3a\xe6\xf4\x20" "\x34\x5a\xd7\xb9\xb2\x06\x77\x76\x6c\x3f\xda\xda\x53\xa3\x35\x9f\xdd\xd1" "\x7f\x0d\x4e\x9f\x3b\x79\x66\x7a\xe1\xe3\x8f\xbf\x76\xfe\xe4\x91\xe3\x73" "\xc7\xe7\x4e\xed\xde\xb9\x73\x66\xf7\x9e\x3d\xfb\xf6\xed\x9b\x3e\x36\x7f" "\x62\x6e\xa6\xfc\xf3\x1a\xcf\xf6\xf0\xdb\x5c\x8c\xa4\xe7\xc0\x5d\xe1\xdc" "\xc5\xe7\xc0\xab\xbb\xb6\x6d\x5f\xaa\x8b\x5f\x1a\xdc\xf3\x70\xa2\xcf\xf3" "\x70\x4b\xd7\xb6\x83\x7e\x1e\x8e\x75\xdf\xb9\xc6\xda\x3c\x21\x97\xae\xe9" "\xf2\xb9\xf1\x48\xf3\xa4\x4f\x5c\x1a\x29\x96\x79\x8e\xb5\x1e\x9f\x7b\x57" "\xff\x3c\x4c\xf7\xbb\xed\x79\x38\xd6\xf6\x3c\xec\xf9\x35\xa5\xc7\xf3\x70" "\x6c\x05\xcf\xc3\xe6\x36\x67\xee\x5d\xd9\xf7\x2c\x63\x6d\xff\xf5\x3a\x86" "\xeb\xf5\xb5\x60\x4b\xdb\x1a\xec\xfe\x7e\xa4\x7b\x0d\x0e\xfa\xfb\x91\x61" "\x59\x83\x13\x61\x5d\xfc\xdb\xbd\xcb\x7f\x2d\xd8\x16\x8e\xf7\xc9\xa9\xab" "\xfd\x7e\x64\x74\xc9\x1a\x4c\x77\x37\xbc\xf6\x34\x3f\x93\xbe\xdf\x9f\xd8" "\xd7\x1a\xbd\xd6\xe5\x1d\xcd\x0b\x6e\xda\x50\x9c\x5f\x98\x3b\x7b\xff\x63" "\x47\xce\x9d\x3b\xbb\xb3\x08\x63\x4d\xbc\xa4\x6d\xad\x74\xaf\xd7\xcd\x6d" "\xf7\xa9\x58\xb2\x5e\x47\xae\x7a\xbd\x1e\x9c\x7f\xc5\x93\x77\xf4\xf8\xfc" "\x96\x70\xae\x26\x5e\xdb\xfc\x63\x62\xd9\xc7\xaa\xb9\xcd\x03\xf7\xf7\x7f" "\xac\x5a\x5f\xdd\x7a\x9f\xcf\x8e\xcf\xee\x2a\xc2\x18\xb0\xb5\x3e\x9f\xbd" "\xbe\x9a\x37\xcf\x67\xca\x92\x7d\xce\x67\x73\x9b\x4f\x4d\xaf\xfe\x7b\xf1" "\x94\x4b\xdb\x5e\x7f\xc7\x97\x79\xfd\x8d\xb9\xff\x27\xe5\xfe\xd2\x4d\x3d" "\x31\x3a\x3e\x56\x3e\x7f\x47\xd3\xd9\x19\xef\x78\x3d\xee\x7c\xa8\xc6\x5a" "\xaf\x5d\x8d\xd6\xbe\x9f\x9f\x5e\xd9\xeb\xf1\x78\xf8\x6f\xad\x5f\x8f\x6f" "\xed\xf3\x7a\xbc\xb5\x6b\xdb\x41\xbf\x1e\x8f\x77\xdf\xb9\xf8\x7a\xdc\xa8" "\xfa\x69\xc7\xea\x74\x3f\x9e\x13\x61\x9d\x9c\x98\xe9\xff\x7a\xdc\xdc\x66" "\xeb\xae\xab\x5d\x93\x63\x7d\x5f\x8f\xef\x0e\xb3\x11\xce\xff\x6b\x42\x52" "\x48\xb9\xa8\x6d\xed\x2c\xb7\x6e\xd3\xbe\xc6\xc6\xc6\xc3\xfd\x1a\x8b\x7b" "\xe8\x5c\xa7\xbb\x3b\xb6\x1f\x0f\xd9\xac\xb9\xaf\xa7\x77\x5d\xdb\x3a\xbd" "\xe7\xee\xf2\xb6\x46\xd3\xbd\xbb\x62\xad\xd6\xe9\x64\xd7\xb6\x83\x5e\xa7" "\xe9\xf5\x6a\xb9\x75\xda\xa8\xfa\xe9\xdb\xb5\xe9\x7e\x3c\x27\xc2\xba\xb8" "\x75\x77\xff\x75\xda\xdc\xe6\x99\x07\x56\xff\xda\xb9\x29\xfe\xb5\xed\xb5" "\x73\x43\xd5\x1a\x1c\x1f\xdd\xd0\x3c\xe6\xf1\xb4\x08\xcb\xd7\xfb\xc5\x4d" "\x71\x0d\xde\x5f\x1c\x2d\x4e\x17\x27\x8a\xd9\xd6\xa5\x1b\x5a\xeb\xa9\xd1" "\xda\xd7\xd4\x83\x2b\x5b\x83\x1b\xc2\x7f\x6b\xfd\x5a\xb9\xb5\xcf\x1a\xbc" "\xa7\x6b\xdb\x41\xaf\xc1\xf4\x75\x6c\xb9\xb5\xd7\x18\x5b\x7a\xe7\x07\xa0" "\xfb\xf1\x9c\x08\xeb\xe2\xa9\x07\xfb\xaf\xc1\xe6\x36\x6f\xda\x3b\xd8\xef" "\x5d\xef\x09\x9f\x49\xdb\xb4\x7d\xef\xda\xfd\xf3\xb5\xe5\x7e\xe6\x75\x47" "\xd7\x69\xba\x9e\x3f\xf3\x6a\x1e\xe7\xdf\xee\xed\xff\xb3\xd9\xe6\x36\x27" "\xf6\x5d\x6d\xce\xec\x7f\x9e\xee\x0b\x9f\xb9\xa9\xc7\x79\xea\x7e\xfe\x2e" "\xf7\x9c\x9a\x2d\xd6\xe6\x3c\x6d\x0d\xc7\xf9\xdc\xbe\xe5\xcf\x53\xf3\x78" "\x9a\xdb\x7c\x61\xff\x0a\xd7\xd3\xc1\xa2\x28\x2e\x7c\xf4\xa1\xd6\xcf\x7b" "\xc3\xbf\xaf\xfc\xc5\xf9\x6f\x7f\xad\xe3\xdf\x5d\x16\x2f\x2c\x3d\x98\x0b" "\x1f\x7d\xe8\xfb\x37\x1f\xfb\xbb\xab\x39\x7e\x00\xd6\xbf\x9f\x94\x63\x73" "\xf9\xb5\xae\xed\x5f\xa6\x56\xf2\xef\xff\x00\x00\x00\xc0\xba\x10\x73\xff" "\x48\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\x7f\xfc\xbf\xc2\x13\xf9\x1f" "\x00\x00\x00\x6a\x23\xe6\xfe\xb1\x30\x93\x4c\xf2\xff\xd6\x37\x3d\x37\xff" "\x93\x56\x2d\xae\x6c\xe6\x2f\x06\xf1\xf2\x74\x1a\x1e\x2e\xb7\x8b\x1d\xd7" "\x99\xf0\xf1\xe4\xe2\x15\xcd\xcf\x3f\xf4\x95\xb9\x1f\xfd\x55\x8f\x9a\x5d" "\x2f\x23\x45\x51\xfc\xf8\xe1\xdf\xe8\xb9\xfd\xd6\x87\xe3\x71\x95\x26\xc3" "\x71\x5e\x7e\x73\xe7\xe7\x97\x5e\xf1\xc2\x8a\xf6\x7f\xf8\xd1\x2b\xdb\xb5" "\xf7\xd7\xbf\x18\x6e\x3f\xde\x9f\x95\x2e\x83\x5e\x15\xdc\x99\xa2\x28\xbe" "\x71\xcb\xe7\x5a\xfb\x99\xfc\xc0\xa5\xd6\x7c\xe6\xe1\xc3\xad\xf9\x9e\x8b" "\x4f\x3e\xd1\xdc\xe6\xf9\xfd\xe5\xc7\xf1\xfa\xcf\xbe\xa4\xdc\xfe\x0f\x43" "\xf9\xf7\xe0\xb1\x23\x1d\xd7\x7f\x36\x9c\x87\xef\x86\x39\xf3\xf6\xde\xe7" "\x23\x5e\xef\xab\x97\x5e\xb3\x6d\xef\xfb\xae\xec\x2f\x5e\xaf\x71\xd7\x0b" "\x5b\x77\xfb\xa9\x0f\x96\xb7\x1b\x7f\x4f\xce\xe7\x9f\x28\xb7\x8f\xe7\x79" "\xb9\xe3\xff\xeb\xcf\x3e\xfd\xd5\xe6\xf6\x8f\xbd\xaa\xf7\xf1\x5f\x18\xe9" "\x7d\xfc\x4f\x87\xdb\xfd\x4a\x98\xff\xf3\xf2\x72\xfb\xf6\xc7\xa0\xf9\x71" "\xbc\xde\xa7\xc3\xf1\xc7\xfd\xc5\xeb\xdd\xff\xe5\x6f\xf6\x3c\xfe\xcb\x9f" "\x29\xb7\x3f\xf3\x96\x72\xbb\xc3\x61\xc6\xfd\xdf\x13\x3e\xde\xfe\x96\xe7" "\xe6\xdb\xcf\xd7\x63\x8d\x23\x1d\xf7\xab\x78\x6b\xb9\x5d\xdc\xff\xcc\xb7" "\x7f\xbb\x75\x79\xbc\xbd\x78\xfb\xdd\xc7\x3f\x71\xe8\x52\xc7\xf9\xe8\x5e" "\x1f\xcf\xfc\x4b\x79\x3b\xd3\x5d\xdb\xc7\xcf\xc7\xfd\x44\x7f\xd9\xb5\xff" "\xe6\xed\xb4\xaf\xcf\xb8\xff\xa7\x7f\xeb\x70\xc7\x79\xae\xda\xff\xe5\xf7" "\x3c\xfb\xf2\xe6\xed\x76\xef\xff\xbe\xae\xed\x46\xbb\xae\xdf\xfd\x1b\x9b" "\xfe\xe8\xd3\x9f\xeb\xb9\xbf\x78\x3c\x07\xff\xfc\x4c\xc7\xfd\x39\xf8\xee" "\xf0\x3c\x0e\xfb\x7f\xea\x83\x61\x3d\x86\xcb\xff\xf7\xf2\xe7\x3a\xf6\x1b" "\x1d\x7e\x77\xe7\xeb\x4f\xdc\xfe\x8b\x5b\x2e\x74\xdc\x9f\xe8\x6d\x3f\x2c" "\xf7\x7f\xf9\xf5\xc7\x5b\xf3\x3f\x27\x7f\xf4\x07\x37\xbd\xe0\xe6\x17\x5e" "\x7c\x65\xf3\xdc\x15\xc5\xb7\xde\x5b\xde\x5e\xd5\xfe\x8f\xff\xf1\xe9\x8e" "\xe3\xff\xd2\x6d\xf7\xb6\x1e\x8f\x78\x79\xec\xe8\x77\xef\x7f\x39\x71\xff" "\x67\x3f\x36\x75\xea\xf4\xc2\xf9\xf9\xd9\xb6\xb3\xda\xfa\xdd\x39\xef\x28" "\x8f\x67\xe3\xc4\xa6\xcd\xcd\xe3\xbd\x25\xbc\xb6\x76\x7f\x7c\xe8\xf4\xb9" "\x0f\xcd\x9d\x9d\x9c\x99\x9c\x29\x8a\xc9\xfa\xfe\x0a\xbd\x6b\xf6\xe5\x30" "\xbf\x5f\x8e\x8b\x57\x7b\xfd\x7b\x1f\x0d\x8f\xe7\x1d\xbf\xff\x8d\xcd\x3b" "\xfe\xf9\xb3\xf1\xf3\xff\xfa\x48\xf9\xf9\x4b\x6f\x2f\xbf\x6e\xbd\x3a\x6c" "\xf7\xf9\xf0\xf9\x2d\xe5\xe3\xb7\xd8\x58\xe5\xfe\x9f\xba\xf3\xb6\xd6\xf3" "\xbb\xf1\x4c\xf9\x71\x47\x8f\x7d\x00\xb6\x6d\xff\xaf\x7d\x2b\xda\x30\xdc" "\xff\xee\xef\x0b\xe2\x7a\x3f\xf3\xd2\x0f\xb5\xce\x43\xf3\xb2\xd6\xd7\x8d" "\xf8\xbc\x5e\xe5\xf1\x7f\x67\xb6\xbc\x9d\xaf\x87\xf3\xba\x18\x7e\x33\xf3" "\x5d\xb7\x5d\xd9\x5f\xfb\xf6\xf1\x77\x23\x5c\x7a\x6f\xf9\x7c\x5f\xf5\xf9" "\x0b\x2f\x73\xf1\x71\xfd\xd3\xf0\x78\xbf\xf3\xbb\xe5\xed\xc7\xe3\x8a\xf7" "\xf7\x3b\xe1\xfb\x98\x6f\x6e\xed\x7c\xbd\x8b\xeb\xe3\xeb\x17\x46\xba\x6f" "\xbf\xf5\x5b\x3c\x2e\x86\xd7\x93\xe2\x62\x79\x79\xdc\x2a\x9e\xef\x4b\xcf" "\xdf\xd6\xf3\xf0\xe2\xef\x21\x29\x2e\xde\xde\xfa\xf8\x77\xd2\xed\xdc\x7e" "\x55\x77\x73\x39\x0b\x1f\x5f\x98\x3e\x31\x7f\xea\xfc\x63\xd3\xe7\xe6\x16" "\xce\x4d\x2f\x7c\xfc\xf1\x43\x27\x4f\x9f\x3f\x75\xee\x50\xeb\x77\x79\x1e" "\xfa\x70\xd5\xf5\xaf\xbc\x3e\x6d\x6e\xbd\x3e\xcd\xce\xed\x79\xa0\x98\xd9" "\x54\x14\xc5\xe9\x62\x66\x0d\x5e\xb0\xae\xcf\xf1\x37\xff\xb6\xb2\xe3\x3f" "\xf3\xe8\xd1\xd9\xbd\x33\x3b\x66\xe7\x8e\x1d\x39\x7f\xec\xdc\xa3\x67\xe6" "\xce\x1e\x3f\xba\xb0\x70\x74\x6e\x76\x61\xc7\x91\x63\xc7\xe6\x3e\x56\x75" "\xfd\xf9\xd9\x03\x3b\x77\xed\xdf\xbd\x77\xd7\xd4\xf1\xf9\xd9\x03\xfb\xf6" "\xef\xdf\xbd\x7f\x6a\xfe\xd4\xe9\xe6\x61\x94\x07\x55\x61\xcf\xcc\x47\xa6" "\x4e\x9d\x3d\xd4\xba\xca\xc2\x81\x07\xf6\xef\x7c\xf0\xc1\x07\x66\xa6\x4e" "\x9e\x9e\x9d\x3b\xb0\x77\x66\x66\xea\x7c\xd5\xf5\x5b\x5f\x9b\xa6\x9a\xd7" "\xfe\xf5\xa9\xb3\x73\x27\x8e\x9c\x9b\x3f\x39\x37\xb5\x30\xff\xf8\xdc\x81" "\x9d\xfb\xf7\xec\xd9\x55\xf9\xdb\x00\x4f\x9e\x39\xb6\x30\x39\x7d\xf6\xfc" "\xa9\xe9\xf3\x0b\x73\x67\xa7\xcb\xfb\x32\x79\xae\xf5\xe9\xe6\xd7\xbe\xaa" "\xeb\x53\x4f\x0b\xff\x5e\x7e\x3f\xdb\xad\x51\xfe\x22\xbe\xe2\x5d\xf7\xed" "\x49\xbf\x9f\xb5\xe9\x2b\x9f\x5c\xf6\xa6\xca\x4d\xba\x7e\x81\xe8\x73\xe1" "\x77\xd1\xfc\xe3\x8b\xce\xec\x5b\xc9\xc7\x31\xf7\x8f\x87\x99\x64\x92\xff" "\x01\x00\x00\x20\x07\x31\xf7\x6f\x08\x33\x91\xff\x01\x00\x00\xa0\x36\x62" "\xee\xdf\x18\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\x3f\x11\x66\x92\x49" "\xfe\xd7\xff\xd7\xff\x5f\x59\xff\xbf\xbc\x5c\xff\x3f\xaf\xfe\xff\x99\x8f" "\x96\xbd\xd2\xf5\xde\xff\x8f\xfd\x79\xfd\xff\x3c\xdc\xe0\xfe\xff\xaa\xf7" "\xaf\xff\xaf\xff\x5f\xbf\xfe\xff\xca\xfb\xf3\xeb\xfd\xf8\xf5\xff\xf5\xff" "\x59\x6a\xd8\xfa\xff\x31\xf7\x6f\x2a\x8a\x2c\xf3\x3f\x00\x00\x00\xe4\x20" "\xe6\xfe\xcd\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x37\x85\x99\xc8" "\xff\x00\x00\x00\x50\x1b\x31\xf7\xbf\x20\xcc\x24\x93\xfc\xaf\xff\xbf\xa2" "\xfe\xff\xae\xaa\xc2\x55\xfd\xfb\xff\xde\xff\x5f\xff\xbf\x58\x9f\xfd\xff" "\xf8\xe0\xe8\xff\x67\xe3\xaa\xfb\xf7\xef\x7b\xa4\xe3\x43\xfd\xff\x40\xff" "\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x55\x1b\x5f\xf6\x92\x1b\xd5\xff\x8f" "\xb9\xff\xe6\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\x17\x86\x99" "\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xdf\x12\x66\x22\xff\x03\x00\x00\x40" "\x6d\xc4\xdc\xbf\x25\xcc\x24\x93\xfc\xaf\xff\xef\xfd\xff\xf5\xff\xf5\xff" "\x6b\xdd\xff\x5f\xed\xfb\xff\xb7\x1d\x8c\xfe\xff\xfa\xe0\xfd\xff\xfb\xd3" "\xff\xaf\x70\xcd\xfd\xff\x09\xfd\xff\xf5\xd8\xff\x1f\x1f\xec\xf1\x0f\x77" "\xff\xbf\xf2\xf0\xf5\xff\xb9\x2e\x86\xed\xfd\xff\x63\xee\x7f\x51\x98\x49" "\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\x8b\xc3\x4c\xe4\x7f\x00\x00\x00" "\xa8\x8d\x98\xfb\x5f\x12\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\x7f\x6b" "\x98\x49\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\xf7\xfe\xab" "\xdf\xff\xbf\xfc\x9b\xfe\xff\x70\xd1\xff\xef\x4f\xff\xbf\x82\xf7\xff\xcf" "\xab\xff\x3f\xe0\xe3\x1f\xee\xfe\xff\xa0\xdf\xff\x7f\xfc\xcd\xdd\xd7\xd7" "\xff\xa7\x97\x61\xeb\xff\xc7\xdc\xff\xd2\x30\x93\x4c\xf2\x3f\x00\x00\x00" "\xe4\x20\xe6\xfe\xdb\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x5f\x16" "\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\xbf\x35\xcc\x24\x93\xfc\xaf\xff" "\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x7b\xff\xd5\xfd\xff\x92\xfe\xff\x70" "\xd1\xff\xef\x4f\xff\xbf\x82\xfe\xbf\xfe\xbf\xfe\xff\xca\xfa\xff\x3d\xbe" "\xf9\xd5\xff\xa7\x97\x61\xeb\xff\xc7\xdc\x7f\x7b\x98\x49\x26\xf9\x1f\x00" "\x00\x00\x72\x10\x73\xff\x1d\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd" "\x3f\x15\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\xbf\x2d\xcc\x24\x93\xfc" "\xaf\xff\xaf\xff\xaf\xff\x9f\x57\xff\xff\xbe\x0d\xfa\xff\xfa\xff\xf5\xa6" "\xff\xdf\x9f\xfe\x7f\x05\xfd\x7f\xfd\x7f\xfd\xff\x15\xbe\xff\xff\x52\x57" "\xd3\xff\xdf\x58\x75\x63\xd4\xc6\xb0\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" "\x8d\x98\xfb\x5f\x19\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\x3f\x19\x66" "\x92\x49\xfe\xd7\xff\xaf\x57\xff\xff\xcf\xfe\xe6\xa9\x57\x16\xfa\xff\xfa" "\xff\x15\xfb\xaf\x69\xff\x3f\x2e\x03\xfd\xff\xcc\xe9\xff\xf7\xa7\xff\x5f" "\x41\xff\x5f\xff\x5f\xff\x7f\x4d\xfa\xff\xe4\x63\xd8\xfa\xff\x31\xf7\xdf" "\x19\x66\x92\x49\xfe\x07\x00\x00\x80\x7a\x79\xbc\xd7\x3f\xd1\xa6\xdc\x7f" "\x57\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\xdd\x61\x26\xf2\x3f\x00" "\x00\x00\xd4\x46\xcc\xfd\xdb\xc3\x4c\x32\xc9\xff\xfa\xff\xf5\xea\xff\x47" "\xfa\xff\xfa\xff\xfd\xf6\x5f\xd3\xfe\x7f\xa2\xff\x9f\x37\xfd\xff\x1e\xda" "\x9e\xa4\xfa\xff\x15\xf4\xff\xf5\xff\xb3\xef\xff\xc7\xef\x7e\xf5\xff\x19" "\x8c\x61\xeb\xff\xc7\xdc\xff\xaa\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20" "\xe6\xfe\x1d\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\xaf\x0e\x33\x91" "\xff\x01\x00\x00\xa0\x36\x62\xee\xbf\x27\xcc\x24\x93\xfc\xaf\xff\xaf\xff" "\xaf\xff\xaf\xff\xaf\xff\xdf\x7b\xff\xfa\xff\xeb\x93\xfe\x7f\x7f\xfa\xff" "\x15\xf4\xff\xf5\xff\xb3\xef\xff\x7b\xff\x7f\x06\x6b\xd8\xfa\xff\x31\xf7" "\xbf\x26\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\xde\x30\x13\xf9" "\x1f\x00\x00\x00\x6a\x23\xfe\xff\x9b\xe5\xff\xf7\x2a\xff\x03\x00\x00\x40" "\x1d\xc5\xdc\x3f\x15\x66\x92\x49\xfe\xd7\xff\xd7\xff\xcf\xa9\xff\xdf\xd0" "\xff\xd7\xff\xd7\xff\xaf\x3d\xfd\xff\xfe\xf4\xff\x2b\xe8\xff\xeb\xff\xeb" "\xff\xeb\xff\x33\x50\xc3\xd6\xff\x8f\xb9\xff\xb5\x61\x26\x99\xe4\x7f\x00" "\x00\x00\xc8\x41\xcc\xfd\xf7\x87\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7" "\x4f\x87\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xcf\x84\x99\x64\x92\xff" "\xf5\xff\xf5\xff\x73\xea\xff\x7b\xff\x7f\xfd\x7f\xfd\xff\xfa\xd3\xff\xef" "\x4f\xff\xbf\x82\xfe\xbf\xfe\x7f\xdd\xfa\xff\x45\xa1\xff\xcf\x0d\x35\x6c" "\xfd\xff\x98\xfb\x77\x86\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7\xef" "\x0a\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\xdf\x1d\x66\x22\xff\x03\x00" "\x00\x40\x6d\xc4\xdc\xff\x40\x98\x49\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\xbf\xf7\xfe\xf5\xff\xd7\x27\xfd\xff\xfe\xf4\xff\x2b\xe8\xff" "\xeb\xff\xd7\xad\xff\xef\xfd\xff\xb9\xc1\x86\xad\xff\x1f\x73\xff\x83\x61" "\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x7b\xc2\x4c\xe4\x7f\x00\x00" "\x00\xa8\x8d\x98\xfb\xf7\x86\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xef" "\x0b\x33\xc9\x24\xff\xeb\xff\xd7\xa4\xff\xff\x9b\xff\xd0\xb1\x6f\xfd\x7f" "\xfd\xff\x7e\xfb\x1f\x4c\xff\x7f\x93\xfe\x7f\x98\xfa\xff\xc3\xa5\xa6\xfd" "\xff\xee\xa7\xc5\x35\xd3\xff\xaf\xa0\xff\xaf\xff\xaf\xff\xaf\xff\xcf\x40" "\x0d\x5b\xff\x3f\xe6\xfe\xfd\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc" "\xfd\xaf\x0b\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\xff\xe9\x30\x13\xf9" "\x1f\x00\x00\x00\x6a\x23\xe6\xfe\x9f\x09\x33\xc9\x24\xff\xeb\xff\xd7\xa4" "\xff\xdf\x45\xff\x5f\xff\xbf\xdf\xfe\xbd\xff\xbf\xfe\x7f\x9d\xd5\xb4\xff" "\x3f\x30\xfa\xff\x15\xf4\xff\xf5\xff\xf5\xff\xf5\xff\x19\xa8\xeb\xdf\xff" "\x8f\x7f\x5b\x59\xff\x3f\xe6\xfe\x03\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8" "\x41\xcc\xfd\x3f\x1b\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\xff\xfa\x30" "\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\x83\x61\x26\x99\xe4\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\xff\xeb\xd3\xff\x7f\x7d\xd1\x6d\x18\xfb\xff\xcd\xc5" "\xa3\xff\x5f\x2f\xfa\xff\xfd\xe9\xff\x57\xd0\xff\xd7\xff\xd7\xff\xd7\xff" "\x67\xa0\x86\xed\xfd\xff\x63\xee\x7f\x43\x98\x49\x26\xf9\x1f\x00\x00\x00" "\x72\x10\x73\xff\x43\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x6f\x0c" "\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\x7f\x53\x98\x49\x26\xf9\x5f\xff" "\x5f\xff\x5f\xff\x5f\xff\xdf\xfb\xff\xf7\xde\xbf\xfe\xff\xfa\xa4\xff\xdf" "\x9f\xfe\x7f\x05\xfd\xff\x8c\xfb\xff\xbf\xb7\xa3\x9c\xfa\xff\xfa\xff\x0c" "\xd2\xb0\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\x8d\x98\xfb\xdf\x1a\x66\x22" "\xff\x03\x00\x00\x40\x6d\xc4\xdc\xff\xb6\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xef\xfd\xeb\xff\xaf\x4f\xfa\xff\xfd\xe9\xff" "\x57\xd0\xff\xcf\xb8\xff\xef\xfd\xff\xf5\xff\xb9\x1e\x86\xad\xff\x1f\x73" "\xff\xcf\x85\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7\x3f\x1c\x66\x22" "\xff\x03\x00\x00\x40\x6d\xc4\xdc\xff\xf6\x30\x13\xf9\x1f\x00\x00\x00\x6a" "\x23\xe6\xfe\x77\x84\x99\x64\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\x7b\xef\x5f\xff\x7f\x7d\xd2\xff\xef\x4f\xff\xbf\x82\xfe\xbf\xfe\xbf" "\xfe\xbf\xfe\x3f\x03\x35\x6c\xfd\xff\x98\xfb\xdf\x19\x66\x92\x49\xfe\x07" "\x00\x00\x80\x1c\xc4\xdc\xff\xf3\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc" "\xfd\xef\x0a\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\xff\x85\x30\x93\x4c" "\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x16\xfd\xff\xe6\x95\xf4\xff\xb3" "\xa0\xff\xdf\x9f\xfe\x7f\x85\x1e\xfd\xff\x8d\xfa\xff\xfa\xff\xfa\xff\xfa" "\xff\x5c\xb3\x61\xeb\xff\xc7\xdc\xff\xee\x30\x93\x4c\xf2\x3f\x00\x00\x00" "\xe4\x20\xe6\xfe\xf7\x84\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xbf\x37" "\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\x91\x30\x93\x4c\xf2\xbf\xfe" "\x7f\x96\xfd\xff\x74\x97\xf5\xff\x4b\xfa\xff\x19\xf4\xff\xbd\xff\x7f\x36" "\x86\xb5\xff\xdf\xeb\xeb\x44\x2f\xfa\xff\xc3\xd7\xff\xf7\xfe\xff\xfa\xff" "\xfa\xff\xfa\xff\x5c\xbb\x61\xeb\xff\xc7\xdc\xff\x68\x98\x49\x26\xf9\x1f" "\x00\x00\x00\x72\x10\x73\xff\xfb\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98" "\xfb\x7f\x31\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\xfd\x61\x26\x99" "\xe4\x7f\xfd\xff\x2c\xfb\xff\xde\xff\x7f\xcd\xfa\xff\x63\x1d\xeb\x23\xa7" "\xfe\xff\x44\xdb\xe3\x99\xd6\xa5\xfe\xbf\xfe\xff\x1a\x18\xd6\xfe\xff\x4a" "\xe9\xff\xeb\xff\xeb\xff\xaf\xdf\xe3\xbf\xee\xfd\xff\xb0\x9a\x37\x2d\x73" "\x7d\xfd\x7f\x86\xd1\xb0\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\x1b\x31\xf7" "\xff\x72\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\xaf\x84\x99\x64\x92" "\xff\xf5\xff\xf5\xff\xf5\xff\xbd\xff\xbf\xf7\xff\xef\xbd\x7f\xfd\xff\xf5" "\x49\xff\xbf\x3f\xfd\xff\x0a\xfa\xff\xfa\xff\xc3\xdc\xff\xaf\xa0\xff\xcf" "\x30\x1a\xb6\xfe\x7f\xcc\xfd\xbf\x1a\x66\x92\x49\xfe\x07\x00\x00\x80\x1c" "\xc4\xdc\xff\xc1\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\x43\x61\x26" "\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x87\xc3\x4c\x32\xc9\xff\xfa\xff\xdd" "\xfd\xff\xf8\x8e\xaa\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xeb\xd1\xe0" "\xfa\xff\x2f\xbb\xb9\x28\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff" "\x59\x8d\x61\xeb\xff\xc7\xdc\x7f\x24\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39" "\x88\xb9\xff\xd7\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x8f\x86\x99" "\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xcf\x86\x99\x64\x92\xff\xf5\xff\xbd" "\xff\xff\xa0\xfa\xff\x3f\xd6\xff\xd7\xff\x0f\xf4\xff\x7b\xd3\xff\x5f\x1b" "\xde\xff\xbf\x3f\xfd\xff\x0a\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x0c\xd4\xb0" "\xf5\xff\x63\xee\x9f\x0b\x33\xc9\x24\xff\x03\x00\x00\x40\x8d\xa5\x1f\x07" "\xc7\xdc\x7f\x2c\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\x78\x98\x89" "\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\x87\xc2\x4c\x32\xc9\xff\xfa\xff\xfa" "\xff\xde\xff\xff\x46\xf4\xff\xc7\x3a\xb6\xd7\xff\x2f\xe9\xff\xeb\xff\x0f" "\x82\xfe\x7f\x7f\xfa\xff\x15\xf4\xff\xf5\xff\xf5\xff\xf5\xff\x19\xa8\x61" "\xeb\xff\xc7\xdc\x3f\x1f\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xff" "\xe1\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\x8f\x84\x99\xc8\xff\x00" "\x00\x00\x50\x1b\x31\xf7\x9f\x08\x33\xc9\x24\xff\xeb\xff\xeb\xff\xe7\xde" "\xff\x6f\x14\xc5\x45\xef\xff\xaf\xff\xdf\x6b\xff\xfa\xff\xeb\x93\xfe\x7f" "\x7f\xfa\xff\x15\xf4\xff\xf5\xff\xf5\xff\xf5\xff\x19\xa8\x61\xeb\xff\xc7" "\xdc\x7f\x32\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\x54\x98\x89" "\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\xe9\x30\x13\xf9\x1f\x00\x00\x00\x6a" "\x23\xe6\xfe\x33\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\xff\xdc\xfb\xff\xc5\x0d" "\x79\xff\xff\xce\xed\xf5\xff\xff\x9f\xbd\xfb\x68\xb2\xeb\x2c\xe2\x38\x7c" "\x71\xc9\x96\xb4\x82\x8f\xc0\x9a\x15\x4b\x58\xf1\x15\xd8\xb2\xa3\x8a\x35" "\x0b\xc0\xe4\x60\x9b\x6c\xb2\xc9\x39\x98\x9c\x73\x4e\x26\xe7\x9c\xb3\xc9" "\x39\x1a\x13\x0c\x55\xa2\x18\x75\xb7\x35\x9a\xab\x73\x24\xcf\xf5\xcc\x39" "\x6f\x3f\xcf\xa6\x91\x0a\x71\x47\xf6\x60\xea\x8f\xea\x57\xef\x59\xfa\x7f" "\xfd\xff\x2e\x1c\xe8\xef\x4f\x5c\xda\xaf\xbf\x60\xff\x7f\xd7\xbb\x5d\x79" "\x6f\xfd\xbf\xfe\x5f\xff\x3f\x49\xff\xaf\xff\xd7\xff\x73\xbe\xa5\xf5\xff" "\xb9\xfb\xef\x17\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xfb\xc7\x2d" "\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x03\xe2\x16\xfb\x1f\x00\x00\x00\x86" "\x91\xbb\xff\xca\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xbb\xec\xff\x4f" "\x4f\x7e\x7f\xac\xa2\xff\xbf\x41\xff\xaf\xff\x5f\x37\xef\xff\x4f\xd3\xff" "\xcf\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x76\x6a\x69\xfd\x7f\xee\xfe\x07\xc6" "\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x41\x71\x8b\xfd\x0f\x00\x00" "\x00\xc3\xc8\xdd\xff\xe0\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x48" "\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xef\xff\x7b\xff\x7f\xfb\xe7\xeb" "\xff\xd7\x49\xff\x3f\x4d\xff\x3f\x43\xff\xaf\xff\xd7\xff\xeb\xff\xd9\xa9" "\xa5\xf5\xff\xb9\xfb\x1f\x1a\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe" "\x87\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xc3\xe3\x16\xfb\x1f\x00" "\x00\x00\x86\x91\xbb\xff\x11\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\xfa\xff\xed\x9f\xaf\xff\x5f\xa7\xeb\x37\xb7\xfe\x33\x41\xff\x7f\x90" "\xfe\x7f\xc6\x4c\xff\xbf\xd9\xe8\xff\xa7\x5c\x74\x3f\xbf\xfd\xb7\xb7\x9e" "\xaf\xff\x02\xf4\xff\xfa\x7f\x0e\x5a\x5a\xff\x9f\xbb\xff\x91\x71\x4b\x93" "\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x54\xdc\x62\xff\x03\x00\x00\xc0\x30" "\x72\xf7\x5f\x15\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x57\xc7\x2d\x4d" "\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xb7\x7f\xbe\xfe\x7f\x9d\xbc" "\xff\x3f\xed\xf0\xfd\xff\x5d\xee\x74\xdf\xfb\xf4\xed\xff\xbd\xff\x3f\xcd" "\xfb\xff\xfa\x7f\xfd\x3f\xe7\x5b\x5a\xff\x9f\xbb\xff\x9a\xb8\xa5\xc9\xfe" "\x07\x00\x00\x80\x0e\x72\xf7\x3f\x3a\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9" "\xfb\x1f\x13\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x8f\x8d\x5b\x9a\xec" "\x7f\xfd\x7f\x9b\xfe\x7f\xaf\x76\xd1\xff\xeb\xff\xf5\xff\xfa\xff\xd1\xe9" "\xff\xa7\x79\xff\x7f\xc6\xde\x3f\xe6\x4e\xd7\x0f\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\x9f\xc3\x59\x5a\xff\x9f\xbb\xff\x71\x71\x4b\x93\xfd\x0f\x00\x00\x00" "\x1d\xe4\xee\x7f\x7c\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x21\x6e" "\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x9f\x18\xb7\x34\xd9\xff\xfa\xff\x36" "\xfd\xbf\xf7\xff\xf5\xff\xfa\x7f\xfd\x7f\x0b\xfa\xff\x69\xfa\xff\x19\xa3" "\xbc\xff\x7f\x1b\xbf\x6b\x8e\xbb\x9f\x3f\xac\xe3\xfe\xfa\xf5\xff\xfa\x7f" "\x0e\x5a\x5a\xff\x9f\xbb\xff\xda\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72" "\xf7\x3f\x29\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x9f\x1c\xb7\xd8\xff" "\x00\x00\x00\x30\x8c\xdc\xfd\x4f\x89\x5b\x9a\xec\x7f\xfd\xbf\xfe\x7f\x1d" "\xfd\x7f\x7e\x82\xfe\x5f\xff\xaf\xff\xd7\xff\x4f\xd3\xff\x4f\xd3\xff\xcf" "\x18\xa5\xff\xbf\x8d\x8e\xbb\x9f\x5f\xfb\xd7\xaf\xff\xd7\xff\x73\xd0\xd2" "\xfa\xff\xdc\xfd\x4f\x8d\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xd3" "\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xe9\x71\x8b\xfd\x0f\x00\x00" "\x00\xc3\xc8\xdd\xff\x8c\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xd7\xd1\xff\x7b" "\xff\x5f\xff\xaf\xff\xd7\xff\x5f\x1c\xfd\xff\x34\xfd\xff\x0c\xfd\xbf\xfe" "\x5f\xff\xaf\xff\x67\xa7\x96\xd6\xff\xe7\xee\xbf\x2e\x6e\x69\xb2\xff\x01" "\x00\x00\xa0\x83\xdc\xfd\xcf\x8c\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe" "\x67\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xb3\xe3\x96\x26\xfb\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xdb\x3f\x5f\xff\xbf\x4e\xfa\xff\x69" "\xfa\xff\x19\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x4e\x2d\xa8\xff\x3f\xe7\x57" "\x9d\xda\x3c\x27\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xcf\x8d\x5b" "\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xe7\xc5\x2d\xf6\x3f\x00\x00\x00\x0c" "\x23\x77\xff\xf3\xe3\x96\x26\xfb\x5f\xff\xbf\x98\xfe\x7f\x2f\xe7\x1b\xab" "\xff\x3f\xbd\xd9\x6c\xf4\xff\x9b\xa6\xfd\xff\xe9\x73\xfe\x7e\xd6\xf7\xa5" "\xfe\x5f\xff\x7f\x04\xf4\xff\xd3\xf4\xff\x33\xf4\xff\xfa\x7f\xfd\xbf\xfe" "\x9f\x9d\x5a\x50\xff\xbf\xf7\xe3\xdc\xfd\x2f\x88\x5b\x9a\xec\x7f\x00\x00" "\x00\xe8\x20\x77\xff\x0b\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x45" "\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xe2\xb8\xa5\xc9\xfe\xd7\xff" "\x2f\xa6\xff\xdf\x33\x56\xff\xef\xfd\xff\xf3\xbf\x3f\x3a\xf5\xff\xde\xff" "\x3f\x48\xff\x7f\x34\xf4\xff\xd3\xf4\xff\x33\xf4\xff\xfa\x7f\xfd\xff\x2e" "\xfa\xff\x13\xfa\x7f\xd2\xd2\xfa\xff\xdc\xfd\x2f\x89\x9b\xae\xb8\xfc\x36" "\xff\x16\x01\x00\x00\x80\x85\xc9\xdd\xff\xd2\xb8\xa5\xc9\x9f\xff\x03\x00" "\x00\x40\x07\xb9\xfb\x5f\x16\xb7\xd8\xff\x00\x00\x00\xb0\x52\xd7\x1d\xf8" "\x99\xdc\xfd\x2f\x8f\x5b\x9a\xec\x7f\xfd\xff\x6e\xfb\xff\x2b\xce\xf9\x39" "\xfd\xff\x51\xf4\xff\x57\xeb\xff\xf5\xff\xfa\x7f\xf6\xd1\xff\x4f\xd3\xff" "\xcf\xd0\xff\xeb\xff\xf5\xff\xde\xff\x67\xa7\x96\xd6\xff\xe7\xee\x7f\x45" "\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xaf\x8f\x5b\xec\x7f\x00\x00" "\x00\x18\x46\xee\xfe\x57\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xab" "\xe2\x96\x26\xfb\x5f\xff\xef\xfd\xff\x75\xf7\xff\xde\xff\xd7\xff\xeb\xff" "\xd9\x4f\xff\x3f\x4d\xff\x3f\x43\xff\xaf\xff\x3f\xde\xfe\xff\xe4\xad\xff" "\x52\xff\xcf\x18\x2e\xa1\xff\x3f\x73\xe6\xcc\x55\xb7\x7b\xff\x9f\xbb\xff" "\xd5\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x4d\xdc\x62\xff\x03" "\x00\x00\xc0\x30\x72\xf7\xbf\x36\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb" "\x5f\x17\xb7\x34\xd9\xff\xfa\xff\xa6\xfd\x7f\x7e\xab\xeb\xff\xf7\xe8\xff" "\xf5\xff\xdb\x3e\x5f\xff\xbf\x4e\xfa\xff\x69\xfa\xff\x19\xfa\x7f\xfd\xbf" "\xf7\xff\xf5\xff\xec\xd4\xd2\xde\xff\xcf\xdd\xff\xfa\xb8\xa5\xc9\xfe\x07" "\x00\x00\x80\x0e\x72\xf7\xbf\x21\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb" "\xdf\x18\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x6f\x8a\x5b\x9a\xec\x7f" "\xfd\x7f\xd3\xfe\xdf\xfb\xff\xfa\x7f\xfd\xff\x51\xf7\xff\xb7\x6c\xf4\xff" "\x47\x62\x15\xfd\xff\xe9\x0b\x7f\xfe\xd2\xfb\xff\x6b\xf4\xff\xfa\xff\x09" "\xed\xfa\xff\x7b\xde\x7d\xdf\x0f\xf5\xff\xfa\x7f\x0e\x5a\x5a\xff\x9f\xbb" "\xff\xcd\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x4b\xdc\x62\xff" "\x03\x00\x00\xc0\x30\x72\xf7\xbf\x35\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9" "\xfb\xdf\x16\x37\x9d\x68\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf" "\xfd\xf3\x8f\xf8\xfd\xff\x2b\x36\x9b\x8d\xfe\x7f\x07\x56\xd1\xff\x4f\x58" "\x7a\xff\xef\xfd\x7f\xfd\xff\x94\x76\xfd\xff\x79\xf4\xff\xfa\x7f\x0e\x5a" "\x5a\xff\x9f\xbb\xff\xed\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f" "\x47\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x33\x6e\xb1\xff\x01\x00" "\x00\x60\x18\xb9\xfb\xdf\x15\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\x3f\x7c\xff\x7f\xcd\x2a\xfa\x7f\xef\xff\xef\x88\xfe\x7f\x9a\xfe\x7f\x86" "\xfe\x5f\xff\xaf\xff\xd7\xff\x73\x24\x8e\xab\xff\xcf\xdd\xff\xee\xb8\xa5" "\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xbf\x27\x6e\xb1\xff\x01\x00\x00\x60" "\x18\xb9\xfb\xdf\x1b\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xef\x8b\x5b" "\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x3f\xb9\xb8\xfe\xff\xd4\xbe\xff" "\xbc\x26\xef\xff\xeb\xff\x77\x44\xff\x3f\x4d\xff\x3f\x43\xff\xaf\xff\xd7" "\xff\x5f\xa7\xff\x67\x97\x96\xf6\xfe\x7f\xee\xfe\xf7\xc7\x2d\x4d\xf6\x3f" "\x00\x00\x00\x74\x90\xbb\xff\x03\x71\xeb\xff\xba\xb5\xff\x01\x00\x00\x60" "\x18\xb9\xfb\x3f\x18\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x1f\x8a\x5b" "\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x1f\xfe\xfd\x7f\xfd\x7f\x2b\xfa" "\xff\x69\xfa\xff\x19\xfa\x7f\xfd\xbf\xfe\xdf\xfb\xff\xec\xd4\xd2\xfa\xff" "\xdc\xfd\x1f\x8e\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x47\xe2\x16" "\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xa3\x71\x8b\xfd\x0f\x00\x00\x00\xc3" "\xc8\xdd\x7f\x43\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff" "\xec\xdf\x43\xfd\xff\x18\xf4\xff\xd3\x8e\xa6\xff\x3f\xad\xff\xd7\xff\x57" "\x3f\x7f\x87\xf8\x6f\x81\xfe\x5f\xff\x3f\xf7\xeb\x19\xd3\xd2\xfa\xff\xdc" "\xfd\x1f\x8b\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xc7\xe3\x16\xfb" "\x1f\x00\x00\x00\x86\x91\xbb\xff\x13\x71\x8b\xfd\x0f\x00\x00\x00\xab\x74" "\x62\xcb\xcf\xe5\xee\xff\x64\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd" "\xbf\xfe\x7f\xfb\xe7\xeb\xff\xd7\x49\xff\x3f\xcd\xfb\xff\x33\xf4\xff\x97" "\xd8\xcf\xdf\x79\xdf\x8f\xd6\xf6\xfe\xff\xf9\xff\xfb\xa5\xff\xd7\xff\xb3" "\x7b\x4b\xeb\xff\x73\xf7\x7f\x2a\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc" "\xfd\x9f\x8e\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xcf\xc4\x2d\xf6\x3f" "\x00\x00\x00\x0c\x23\x77\xff\x67\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\xdb\x3f\x5f\xff\xbf\x4e\xfa\xff\x69\xfa\xff\x19\xfa\xff" "\x63\x7d\x3f\x7f\xed\x5f\xbf\xfe\x5f\xff\xcf\x41\x4b\xeb\xff\x73\xf7\x7f" "\x2e\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x9f\x8f\x5b\xec\x7f\x00" "\x00\x00\x18\x46\xee\xfe\x2f\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x63\x6f\xf7" "\x67\x5c\xd6\x70\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfb\xe7\xeb" "\xff\xd7\x49\xff\x3f\x4d\xff\x3f\x43\xff\xaf\xff\xd7\xff\xeb\xff\xd9\xa9" "\xa5\xf5\xff\x5f\xdc\xfb\x55\xa7\x36\x5f\x8a\x5b\x9a\xec\x7f\x00\x00\x00" "\xe8\x20\x77\xff\x97\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x2b\x71" "\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xd5\xb8\xa5\xc9\xfe\xd7\xff\xeb" "\xff\xd7\xd1\xff\x9f\x39\x73\xe6\x2a\xfd\xbf\xfe\x7f\xff\xef\xe7\xd6\xfe" "\xff\x46\xfd\x3f\x45\xff\x3f\x4d\xff\x3f\x43\xff\xaf\xff\xd7\xff\xeb\xff" "\xd9\xa9\xa5\xf5\xff\xb9\xfb\xbf\x16\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41" "\xee\xfe\xaf\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x37\xe2\x16\xfb" "\x1f\x00\x00\x00\x86\x91\xbb\xff\x9b\x71\x4b\x93\xfd\xaf\xff\x5f\x40\xff" "\x7f\x4a\xff\xef\xfd\x7f\xfd\xff\xc6\xfb\xff\xfa\xff\x1d\xd1\xff\x4f\xd3" "\xff\xcf\x18\xb1\xff\x3f\x75\xf1\xbf\xfd\xe3\xee\xe7\x0f\xeb\xb8\xbf\x7e" "\xfd\xbf\xfe\x9f\x83\x96\xd6\xff\xe7\xee\xff\x56\xdc\xd2\x64\xff\x03\x00" "\x00\x40\x07\xb9\xfb\xbf\x1d\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xdf" "\x89\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xef\xc6\x2d\x4d\xf6\xbf\xfe" "\xff\xe8\xfa\xff\xff\xff\xb5\xeb\xf2\xfe\xff\xe9\xcd\xf6\xaf\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\x6f\x6f\xfa\xff\x69\xfa\xff\x19\x23\xf6\xff\x97\xe0" "\xb8\xfb\xf9\xb5\x7f\xfd\xfa\x7f\xfd\x3f\x07\x2d\xad\xff\xcf\xdd\xff\xbd" "\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x7f\x3f\x6e\xb1\xff\x01\x00" "\x00\x60\x18\xb9\xfb\x7f\x10\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x3f" "\x8c\x5b\x9a\xec\x7f\xfd\xff\x02\xde\xff\x1f\xb0\xff\xf7\xfe\xff\xf6\xef" "\x0f\xfd\xff\xa2\xfb\xff\xcb\xf4\xff\x63\xd0\xff\x4f\xd3\xff\xcf\xd0\xff" "\xeb\xff\xf5\xff\x3b\xea\xff\xf3\xbb\x59\xff\xdf\xdd\xd2\xfa\xff\xdc\xfd" "\x3f\x8a\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x8f\xe3\x16\xfb\x1f" "\x00\x00\x00\x86\x91\xbb\xff\x27\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd" "\x7f\x63\xdc\x72\xce\xfe\xdf\xd6\x76\x8f\x42\xff\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\xdb\x3f\x5f\xff\xbf\x4e\xfa\xff\x69\x17\xdb\xff\x9f\xdc\x1c\xae" "\xff\x4f\x63\xf4\xff\xd7\xde\xbc\xd9\xe8\xff\xf5\xff\xfa\xff\xb9\x5f\xef" "\xfd\x7f\xb6\x59\x5a\xff\x9f\xbb\xff\xa7\x71\x8b\x3f\xff\x07\x00\x00\x80" "\xd5\xb9\xfc\x02\x3f\x9f\xbb\xff\x67\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8" "\xdd\xff\xf3\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x45\xdc\x72\xd3" "\x65\xc7\xf5\x25\x1d\x29\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x6f\xff\x7c" "\xfd\xff\x3a\xe9\xff\xa7\x79\xff\x7f\x86\xf7\xff\x77\xd1\xcf\xdf\x43\xff" "\x3f\x46\xff\xbf\xd9\xe8\xff\x39\xbc\xa5\xf5\xff\xb9\xfb\x7f\x19\xb7\xf8" "\xf3\x7f\x00\x00\x00\x18\x46\xee\xfe\x5f\xc5\x2d\xf6\x3f\x00\x00\x00\x0c" "\x23\x77\xff\xaf\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x37\x71\x4b" "\x93\xfd\xaf\xff\xd7\xff\x1f\xb2\xff\xdf\x4b\x33\xf5\xff\x67\xe9\xff\xcf" "\xd2\xff\x6f\xa7\xff\x3f\x1a\xfa\xff\x69\xfa\xff\x19\xfa\x7f\xef\xff\xeb" "\xff\xbd\xff\xcf\x4e\x2d\xad\xff\xcf\xdd\xff\xdb\xb8\xa5\xc9\xfe\x07\x00" "\x00\x80\x0e\x72\xf7\xff\x2e\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x7f" "\x1f\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x7f\x88\x5b\x9a\xec\xff\x63" "\xeb\xff\xe3\x2f\xb5\xfe\x7f\xf5\xfd\xbf\xf7\xff\xf5\xff\xfa\x7f\xfd\xff" "\xa2\xe8\xff\xa7\xe9\xff\x67\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x3b\xb5\xb4" "\xfe\x3f\x77\xff\x1f\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xa7" "\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x73\xdc\x62\xff\x03\x00\x00" "\xc0\x30\x72\xf7\xff\x25\x6e\x69\xb2\xff\xbd\xff\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\xdb\x3f\x5f\xff\xbf\x4e\xfa\xff\x69\xfa\xff\xed\xea\x6f\x94\xfe" "\x5f\xff\xaf\xff\xd7\xff\xb3\x53\x4b\xeb\xff\x73\xf7\xff\x35\x6e\x69\xb2" "\xff\x01\x00\x00\xa0\x83\xdc\xfd\x7f\x8b\x5b\xec\x7f\x00\x00\x00\x18\x46" "\xee\xfe\x9b\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xef\x71\x4b\x93" "\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xed\x9f\xaf\xff\x5f\x27\xfd" "\xff\xb4\xe3\xec\xff\xef\x75\xc7\xf9\x8f\xf5\xfe\xff\xb1\xf7\xff\xf9\x25" "\xe8\xff\xf5\xff\xfa\x7f\x76\x62\x69\xfd\x7f\xee\xfe\x9b\xe3\x96\x26\xfb" "\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x8f\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4" "\xee\xff\x67\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x2b\x6e\x69\xb2" "\xff\x67\xfa\xff\x93\xf5\x6f\xd4\xff\x4f\xd2\xff\xef\xff\xfa\xf5\xff\xdb" "\xbf\x3f\xf4\xff\xfa\x7f\xfd\xff\xed\x4f\xff\x3f\xcd\xfb\xff\x33\xf4\xff" "\xde\xff\xd7\xff\xeb\xff\xd9\xa9\xa5\xf5\xff\xb9\xfb\xff\x1d\xb7\x34\xd9" "\xff\x00\x00\x00\xd0\x41\xee\xfe\x5b\xe2\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\xfe\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x6f\xff\x7c\xfd\xff\x3a\xe9" "\xff\xa7\xe9\xff\x67\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x3b\xb5\xb4\xfe\x3f" "\x77\xff\xff\x02\x00\x00\xff\xff\x7e\x6d\x5d\x78", 24780); syz_mount_image( /*fs=*/0x20000080, /*dir=*/0x20000000, /*flags=MS_LAZYTIME|MS_POSIXACL|MS_NODIRATIME|MS_DIRSYNC*/ 0x2010880, /*opts=*/0x200000c0, /*chdir=*/1, /*size=*/0x60cc, /*img=*/0x2000c4c0); } 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; }