// https://syzkaller.appspot.com/bug?id=8360b1956db385b9b0886ab1d2100d411e091ac6 // 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 #ifndef __NR_mount #define __NR_mount 40 #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*)0x20000000, "jfs\000", 4); memcpy((void*)0x200002c0, "./bus\000", 6); memcpy((void*)0x20000300, "\x64\x69\x73\x63\x61\x72\x64\x3d\x30\x78\x30\x30\x30\x30\x30\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x34\x2c\x71\x75\x6f\x74\x61\x2c\x65" "\x72\x72\x6f\x72\x73\x3d\x63\x6f\x6e\x74\x69\x6e\x75\x65\x2c\x64\x69" "\x73\x63\x61\x72\x64\x3d\x30\x78\x30\x30\x30\x30\x30\x30\x30\x30\x30" "\x30\x30\x30\x30\x30\x30\x34\x2c\x75\x6d\x61\x73\x6b\x3d\x30\x30\x30" "\x37\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\x00\x6e\x6f\x64\x69\x73" "\x63\x61\x72\x64\x2c\x72\x65\x73\x69\x7a\x65\x3d\x30\x78\x30\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x31\x30\x30\x30\x30\x2c\x75\x6d\x61" "\x73\x6b\x3d\x30\x78\x30\x10\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30" "\x30\x30\x30\x32\x2c\x71\x75\x6f\x74\x61\x2c\x67\x69\x5b\x3d\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 199); sprintf((char*)0x200003c7, "0x%016llx", (long long)0); memcpy((void*)0x200003d9, ",resize=0x0000000000008045,resize,uid>", 38); sprintf((char*)0x200003ff, "%020llu", (long long)-1); memcpy((void*)0x20000413, ",fsmagic=0x00000000000003ff,fscontext=sysadm_u,smackfsroot=,\000", 61); memcpy( (void*)0x2000ef40, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xbe\xfa\xa5\x34\xb5\x7a" "\xa8\x4a\x84\x90\x9b\x16\x68\x29\x4d\xe2\xa4\x84\x40\x81\x36\x07\x38\x70" "\xe9\x01\xe5\x8a\x12\xb9\x6e\x15\x91\x02\x4a\x02\x4a\x2b\x4b\x71\xe5\x0b" "\x07\x4e\xfc\x05\x20\x24\xb8\x21\xc4\x11\x71\xe0\x8a\xd4\x03\x57\x6e\x9c" "\x38\x11\xc9\x46\x02\xf5\xc4\xa0\xb1\x9f\x27\x9e\xdd\xec\x66\xed\xda\xde" "\x59\x7b\x3e\x1f\xc9\x99\xf9\xcd\x33\xeb\x7d\xc6\xdf\x9d\x7d\xc9\xcc\xec" "\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x7c\xef\xbb" "\xdf\x5f\x69\x45\xc4\x8d\x9f\xa5\x05\x4b\x11\x9f\x89\x4e\x44\x3b\x62\xa1" "\xac\x97\x23\x62\x61\x79\x29\xaf\xdf\x8d\x88\xe7\x63\xa7\x39\x9e\x8b\x88" "\xde\x5c\x44\x79\xfb\x9d\x7f\x9e\x89\x78\x3d\x22\x3e\x3e\x13\xb1\xb5\xbd" "\xbe\x5a\x2e\xbe\xb4\xcf\x7e\x7c\xe7\x0f\x7f\xff\xcd\x0f\x9e\x7a\xfb\x6f" "\xbf\xef\x5d\xf8\xef\x1f\xef\x75\xde\x18\xb7\xde\xfd\xfb\xbf\xf8\xcf\x9f" "\x1e\x1c\x6e\x9b\x01\x00\x00\xa0\x69\x8a\xa2\x28\x5a\xe9\x63\xfe\xd9\xf4" "\xf9\xbe\x5d\x77\xa7\x00\x80\xa9\xc8\xaf\xff\x45\x92\x97\x9f\xfa\xfa\x97" "\xff\x7c\xfb\xcf\xb3\xd4\x1f\xb5\x5a\xad\x56\xab\xa7\x50\x57\x15\xa3\x3d" "\xa8\x16\x11\xb1\x51\xbd\x4d\xf9\x9e\xc1\xe1\x78\x00\x38\x61\x36\xe2\x93" "\xba\xbb\x40\x8d\xe4\xdf\x68\xdd\x88\x78\xaa\xee\x4e\x00\x33\xad\x55\x77" "\x07\x38\x16\x5b\xdb\xeb\xab\xad\x94\x6f\xab\xfa\x7a\xb0\xbc\xdb\x9e\xcf" "\x05\x19\xc8\x7f\xa3\xf5\xe8\xfa\x8e\x71\xd3\x49\x86\xcf\x31\x99\xd6\xe3" "\x6b\x33\x3a\xf1\xec\x98\xfe\x2c\x4c\xa9\x0f\xb3\x24\xe7\xdf\x1e\xce\xff" "\xc6\x6e\x7b\x3f\xad\x77\xdc\xf9\x4f\xcb\xb8\xfc\xfb\xbb\x97\x3e\x35\x4e" "\xce\xbf\x33\x9c\xff\x90\xd3\x93\x7f\x7b\x64\xfe\x4d\x95\xf3\xef\x1e\x28" "\xff\x8e\xfc\x01\x00\x00\x00\x00\x60\x86\xe5\xff\xff\x5f\xaa\xf9\xf8\xef" "\xdc\xe1\x37\x65\x5f\x9e\x74\xfc\x77\x79\x4a\x7d\x00\x00\x00\x00\x00\x00" "\x00\x80\xa3\x76\xd8\xf1\xff\x1e\x31\xfe\x1f\x00\x00\x00\xcc\xac\xf2\xb3" "\x7a\xe9\x57\x67\xf6\x96\x8d\xfb\x2e\xb6\x72\xf9\xf5\x56\xc4\xd3\x43\xeb" "\x03\x0d\x93\x2e\x96\x59\xac\xbb\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xd0\x24\xdd\xdd\x73\x78\xaf\xb7\x22\x7a\x11\xf1\xf4\xe2\x62\x51\x14" "\xe5\x4f\xd5\x70\x7d\x50\x87\xbd\xfd\x49\xd7\xf4\xed\x87\x26\xab\xfb\x49" "\x1e\x00\x00\x76\x7d\x7c\x66\xe8\x5a\xfe\x56\xc4\x7c\x44\x5c\x4f\xdf\xf5" "\xd7\x5b\x5c\x5c\x2c\x8a\xf9\x85\xc5\x62\xb1\x58\x98\xcb\xef\x67\xfb\x73" "\xf3\xc5\x42\xe5\x73\x6d\x9e\x96\xcb\xe6\xfa\xfb\x78\x43\xdc\xed\x17\xe5" "\x2f\x9b\xaf\xdc\xae\x6a\xd2\xe7\xe5\x49\xed\xc3\xbf\xaf\xbc\xaf\x7e\xd1" "\xd9\x47\xc7\x8e\x48\x2f\xfd\x35\xc7\x34\xd7\x14\x36\x00\x24\xbb\xaf\x46" "\x5b\x5e\x91\x4e\x99\xa2\x78\x66\xdc\x9b\x0f\x18\x60\xff\x3f\x85\x96\x62" "\xa9\xee\xc7\x15\xb3\xaf\xee\x87\x29\x00\x00\x00\x70\xfc\x8a\xa2\x28\x5a" "\xe9\xeb\xbc\xcf\xa6\x63\xfe\xed\xba\x3b\x05\x00\x4c\x45\x7e\xfd\x1f\x3e" "\x2e\x70\xa8\xba\x3d\xa6\x3d\xe2\x68\x7e\xbf\x5a\xad\x56\xab\xd5\xea\x4f" "\x55\x57\x15\xa3\x3d\xa8\x16\x11\xb1\x51\xbd\x4d\xf9\x9e\xc1\x70\xfc\x00" "\x70\xc2\x6c\xc4\x27\x75\x77\x81\x1a\xc9\xbf\xd1\xba\x11\xf1\x7c\xdd\x9d" "\x00\x66\x5a\xab\xee\x0e\x70\x2c\xb6\xb6\xd7\x57\x5b\x29\xdf\x56\xf5\xf5" "\x20\x8d\xef\x9e\xcf\x05\x19\xc8\x7f\xa3\xb5\x73\xbb\x7c\xfb\x51\xd3\x49" "\x86\xcf\x31\x99\xd6\xe3\x6b\x33\x3a\xf1\xec\x98\xfe\x3c\x37\xa5\x3e\xcc" "\x92\x9c\x7f\x7b\x38\xff\x1b\xbb\xed\xfd\xb4\xde\x71\xe7\x3f\x2d\xe3\xf2" "\xef\xef\x5c\x32\xd7\x3c\x39\xff\xce\x70\xfe\x43\x4e\x4f\xfe\xed\x91\xf9" "\x37\x55\xce\xbf\x7b\xa0\xfc\x3b\xf2\x07\x00\x00\x00\x00\x80\x19\x96\xff" "\xff\x7f\xc9\xf1\xdf\xbc\xc9\x00\x00\x00\x00\x00\x00\x00\x70\xe2\x6c\x6d" "\xaf\xaf\xe6\xeb\x5e\xf3\xf1\xff\xcf\x8d\x58\xcf\xf5\x9f\xa7\x53\xce\xbf" "\x75\xd0\xfc\x17\xd2\xbc\xfc\x4f\xb4\x9c\x7f\x7b\x28\xff\x97\x87\xd6\xeb" "\x54\xe6\x1f\x5e\xdb\xdb\xff\xff\xbd\xbd\xbe\xfa\xdb\x7b\xff\xfa\x6c\x9e" "\xee\x37\xff\xb9\x3c\xd3\x4a\x8f\xac\x56\x7a\x44\xb4\xd2\x3d\xb5\xba\x69" "\x7a\x98\xad\x7b\xdc\x66\xaf\xd3\x2f\xef\xa9\xd7\x6a\x77\xba\xe9\x9c\x9f" "\xa2\xf7\x6e\xdc\x8a\xdb\xb1\x16\x17\x07\xd6\x6d\xa7\xbf\xc7\x5e\xfb\xca" "\x40\x7b\xd9\xd3\xde\x40\xfb\xa5\x81\xf6\xee\x63\xed\x97\x07\xda\x7b\xe9" "\x7b\x07\x8a\x85\xdc\x7e\x3e\x56\xe3\xc7\x71\x3b\xde\xd9\x69\x2f\xdb\xe6" "\x26\x6c\xff\xfc\x84\xf6\x62\x42\x7b\xce\xbf\xe3\xf9\xbf\x91\x72\xfe\xdd" "\xca\x4f\x99\xff\x62\x6a\x6f\x0d\x4d\x4b\x0f\x3f\x6a\x3f\xb6\xdf\x57\xa7" "\xa3\xee\xe7\xad\x5b\x9f\xff\xf9\xc5\xe3\xdf\x9c\x89\x36\xa3\xf3\x68\xdb" "\xaa\xca\xed\x3b\x57\x43\x7f\x76\xfe\x26\x4f\xf5\xe3\xa7\x77\xd7\xee\x9c" "\xbf\x7f\xf3\xde\xbd\x3b\x2b\x91\x26\x03\x4b\x2f\x45\x9a\x1c\xb1\x9c\x7f" "\x6f\xe7\x67\x6e\xef\xf9\xff\xc5\xdd\xf6\xfc\xbc\x5f\xdd\x5f\x1f\x7e\xd4" "\x3f\x70\xfe\xb3\x62\x33\xba\x63\xf3\x7f\xb1\x32\x5f\x6e\xef\x2b\x53\xee" "\x5b\x1d\x72\xfe\xfd\xf4\x93\xf3\x7f\x27\xb5\x8f\xde\xff\x0f\x94\xff\xef" "\xfe\xfa\xf2\xb5\x29\x6d\xcd\x64\x4f\xda\xff\x5f\xad\xa1\x3f\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x24\x45\x51\xec\x5c\x22\xfa\x56" "\x44\x5c\x49\xd7\xff\xd4\x75\x6d\x26\x00\x30\x5d\xf9\xf5\xbf\x48\xf2\x72" "\xb5\x5a\xad\x56\xab\xd5\xa7\xaf\xae\x2a\x46\x7b\xb3\x5a\x44\xc4\x5f\x1e" "\xdd\x60\x6e\xd4\x6f\x01\x00\x4e\x80\xff\x45\xc4\x3f\xea\xee\x04\xb5\x91" "\x7f\x83\xe5\xef\xfb\x2b\xa7\x2f\xd5\xdd\x19\x60\xaa\xee\x7e\xf0\xe1\x0f" "\x6f\xde\xbe\xbd\x76\xe7\x6e\xdd\x3d\x01\x00\x00\x00\x00\x00\x00\x00\x3e" "\xad\x3c\xfe\xe7\x72\x65\xfc\xe7\x97\x22\x62\x69\x68\xbd\x81\xf1\x5f\xaf" "\xc5\xf2\x61\xc7\x7f\xed\xe6\x99\x47\x03\x8c\x1e\xf1\x40\xdf\x63\x6c\xb6" "\xfb\x9d\x76\x65\xb8\xf1\x17\x62\x67\x7c\xee\xf3\xe3\xc6\xff\x3e\x17\x8f" "\x8f\xff\x9d\xc7\xc4\xed\x54\xb7\x63\x8c\xde\x84\xf6\xfe\x84\xf6\x49\x97" "\x58\xcc\x8f\x5c\xba\x97\xd6\xc8\x0b\x3d\x2a\x72\xfe\x2f\x54\xc6\x3b\x2f" "\xf3\x3f\x3b\x34\xfc\xfa\x21\xc6\x7f\x9d\x29\x4f\x1a\xff\x75\x78\xcc\xfb" "\x26\xc8\xf9\x9f\xab\x3c\x9e\xcb\xfc\xbf\x34\xb4\x5e\x35\xff\xe2\xd7\x33" "\x97\xff\xc6\x7e\x57\xdc\x8c\xf6\x40\xfe\x17\xee\xbd\xff\x93\x0b\x77\x3f" "\xf8\xf0\xb5\x5b\xef\xdf\x7c\x6f\xed\xbd\xb5\x1f\x5d\x5e\x59\xb9\x78\xf9" "\xca\x95\xab\x57\xaf\x5e\x78\xf7\xd6\xed\xb5\x8b\xbb\xff\x1e\x4f\xaf\x67" "\x40\xce\x3f\x8f\x7d\xed\x3c\xd0\x66\xc9\xf9\xe7\xcc\xe5\xdf\x2c\x39\xff" "\x2f\xa4\x5a\xfe\xcd\x92\xf3\xff\x62\xaa\xe5\xdf\x2c\x39\xff\xfc\x7e\x4f" "\xfe\xcd\x92\xf3\xcf\x9f\x7d\xe4\xdf\x2c\x39\xff\x57\x52\x2d\xff\x66\xc9" "\xf9\x7f\x39\xd5\xf2\x6f\x96\xad\xed\xf5\xb9\x32\xff\x57\x53\x2d\xff\x66" "\xc9\xfb\xff\x57\x52\x2d\xff\x66\xc9\xf9\xbf\x96\x6a\xf9\x37\x4b\xce\xff" "\x7c\xaa\xe5\xdf\x2c\x39\xff\x0b\xa9\xde\x47\xfe\xbe\x1e\xfe\x14\xc9\xf9" "\xe7\x23\x5c\xf6\xff\x66\xc9\xf9\xaf\xa4\x5a\xfe\xcd\x92\xf3\xbf\x94\x6a" "\xf9\x37\x4b\xce\xff\x72\xaa\xe5\xdf\x2c\x39\xff\xd7\x53\x2d\xff\x66\xc9" "\xf9\x7f\x35\xd5\xf2\x6f\x96\x9c\xff\x95\x54\xcb\xbf\x59\x72\xfe\x5f\x4b" "\xf5\x3e\xf3\x9f\x74\xda\x33\x27\x44\xce\xff\x6a\xaa\xed\xff\xcd\x92\xf3" "\xff\x7a\xaa\xe5\xdf\x2c\x39\xff\x6f\xa4\x5a\xfe\xcd\x92\xf3\x7f\x23\xd5" "\xf2\x6f\x96\x9c\xff\x37\x53\x2d\xff\x66\xc9\xf9\x7f\x2b\xd5\xf2\x6f\x96" "\x9c\xff\xb7\x53\x2d\xff\x66\xc9\xf9\xbf\x99\x6a\xf9\x37\xcb\xde\xf7\xff" "\x9b\x31\x63\xc6\x4c\x9e\xa9\xfb\x99\x09\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x18\x36\x8d\xd3\x89\xeb\xde\x46\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xfe\xcf\x0e\x1c\x08\x00\x00\x00\x00\x00\xf9\xbf\x36\x42\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x15\x76\xe0\x40\x00\x00\x00\x00\x00\xc8\xff\xb5" "\x11\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xb0\x77\xaf\x31\x72\x9d\xf5" "\xfd\xc0\xcf\xec\xcd\x6b\x87\x10\x03\x21\x38\xf9\x1b\xb2\x76\x8c\x31\xce" "\x92\x5d\x5f\xe2\x0b\xff\xba\x98\x10\x20\x4d\xa0\x34\x57\x48\x2f\xb1\x5d" "\xef\xda\x59\xf0\x2d\x5e\xbb\x24\x69\x54\x9b\x06\x4a\x24\x9c\x16\x55\x54" "\xa4\x2f\xda\x02\x8a\xda\x48\x55\x85\x5b\xf1\x82\x56\x29\xcd\x8b\xaa\x97" "\x57\x4d\xfb\x82\xbe\xa9\xa8\x2a\x21\x35\xaa\x4c\x14\x50\x91\xda\x8a\x66" "\xab\x99\xf3\x3c\xcf\xce\xcc\xce\xce\xec\x7a\x27\xbb\xb3\xe7\x7c\x3e\x92" "\xfd\xdb\x9d\x39\x67\xce\x33\x67\x9e\x73\x76\x7e\x6b\x7f\xe7\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf5\x36\x7d\x68\xf2\x8b" "\x95\x2c\xcb\xaa\x7f\x6a\x7f\xad\xcf\xb2\x37\x55\xbf\x5e\x3b\xb2\xbe\x76" "\xdb\xfb\x57\x7a\x84\x00\x00\x00\xc0\x52\xfd\x6f\xed\xef\xd7\xae\x4b\x37" "\x1c\x5c\xc0\x4a\x75\xcb\xfc\xed\xbb\xfe\xe1\x5b\x33\x33\x33\x33\xd9\xa7" "\xfa\x7f\x67\xf0\x2b\x33\x33\xe9\x8e\x91\x2c\x1b\x5c\x93\x65\xb5\xfb\xa2" "\xcb\xff\xf6\x70\xa5\x7e\x99\xe0\xe9\x6c\xb8\xd2\x57\xf7\x7d\x5f\x87\xcd" "\xf7\x77\xb8\x7f\xa0\xc3\xfd\x83\x1d\xee\x1f\xea\x70\xff\x9a\x0e\xf7\x0f" "\x77\xb8\x7f\xce\x0e\x98\x63\x6d\xfe\xfb\x98\xda\x83\x6d\xa9\x7d\xb9\x3e" "\xdf\xa5\xd9\xf5\xd9\x60\xed\xbe\x2d\x2d\xd6\x7a\xba\xb2\xa6\xaf\x2f\xfe" "\x2e\xa7\xa6\x52\x5b\x67\x66\xf0\x58\x36\x95\x9d\xc8\x26\xb3\xf1\x86\xe5" "\xf3\x65\x2b\xb5\xe5\x5f\xdc\x54\xdd\xd6\x5d\x59\xdc\x56\xdf\xda\xd9\x6d" "\x6d\xac\xce\x90\x1f\x3e\x75\x34\x8e\xa1\x12\xf6\xf1\x96\x86\x6d\xcd\x3e" "\x66\xf4\x83\x0f\x66\x23\x3f\xfa\xe1\x53\x47\xff\xf0\xdc\x95\x1b\x5b\xd5" "\x8e\xbb\xa1\xe1\xf1\xf2\x71\x6e\xdb\x5c\x1d\xe7\xe7\xc3\x2d\xf9\x58\x2b" "\xd9\x9a\xb4\x4f\xe2\x38\xfb\xea\xc6\xb9\xb1\xc5\x6b\xd2\xdf\x30\xce\x4a" "\x6d\xbd\xea\xd7\xcd\xe3\x7c\x6d\x81\xe3\xec\x9f\x1d\xe6\xb2\x6a\x7e\xcd" "\x87\xb3\xbe\xda\xd7\x2f\xd7\xf6\xd3\x40\xfd\xaf\xf5\xd2\x7e\xda\x18\x6e" "\xfb\xaf\x5b\xb2\x2c\xbb\x38\x3b\xec\xe6\x65\xe6\x6c\x2b\xeb\xcb\xd6\x35" "\xdc\xd2\x37\xfb\xfa\x0c\xe7\x33\xb2\xfa\x18\xd5\xa9\xf4\xd6\x6c\x60\x51" "\xf3\x74\xd3\x02\xe6\x69\xb5\x4e\x6c\x69\x9c\xa7\xcd\xc7\x44\x7c\xfd\x37" "\x85\xf5\x06\xe6\x19\x43\xfd\xcb\xf4\x83\xcf\x0d\xcd\x79\xdd\x17\x3b\x4f" "\xa3\xea\xb3\x9e\xef\x58\x69\x9e\x83\xdd\x3e\x56\x7a\x65\x0e\xc6\x79\xf1" "\x72\xed\x49\x3f\xd3\x72\x0e\x6e\x09\xcf\xff\xa9\xad\xf3\xcf\xc1\x96\x73" "\xa7\xc5\x1c\x4c\xcf\xbb\x6e\x0e\x6e\xee\x34\x07\xfb\x86\xfa\x6b\x63\x4e" "\x2f\x42\xa5\xb6\xce\xec\x1c\xdc\xd1\xb0\x7c\x7f\x6d\x4b\x95\x5a\x7d\x65" "\x6b\xfb\x39\x38\x76\xee\xe4\x99\xb1\xe9\x27\x9e\x7c\xdf\xd4\xc9\x23\xc7" "\x27\x8f\x4f\x9e\xda\xb5\x63\xc7\xf8\xae\x3d\x7b\xf6\xed\xdb\x37\x76\x6c" "\xea\xc4\xe4\x78\xfe\xf7\x55\xee\xed\xde\xb7\x2e\xeb\x4b\xc7\xc0\xe6\xb0" "\xef\xe2\x31\xf0\x9e\xa6\x65\xeb\xa7\xea\xcc\xd7\xbb\x77\x1c\x0e\xb7\x39" "\x0e\xd7\x37\x2d\xdb\xed\xe3\x70\xa0\xf9\xc9\x55\x96\xe7\x80\x9c\x3b\xa7" "\xf3\x63\xe3\x81\xea\x4e\x1f\xbe\xd4\x97\xcd\x73\x8c\xd5\x5e\x9f\xed\x4b" "\x3f\x0e\xd3\xf3\xae\x3b\x0e\x07\xea\x8e\xc3\x96\x3f\x53\x5a\x1c\x87\x03" "\x0b\x38\x0e\xab\xcb\x9c\xd9\xde\xf4\x9e\x25\x6b\xfd\x9e\x65\xa0\xee\x4f" "\xab\x31\xbc\x51\x3f\x0b\xd6\xd7\xcd\xc1\xe6\xf7\x23\xcd\x73\xb0\xdb\xef" "\x47\x7a\x65\x0e\x0e\x87\x79\xf1\x2f\xdb\xe7\xff\x59\xb0\x31\x8c\xf7\x99" "\xd1\xc5\xbe\x1f\xe9\x9f\x33\x07\xd3\xd3\x0d\xe7\x9e\xea\x2d\xe9\xfd\xfe" "\xf0\xbe\x5a\x69\x35\x2f\x6f\xaa\xde\x71\xcd\x50\x76\x7e\x7a\xf2\xec\x6d" "\x8f\x1f\x39\x77\xee\xec\x8e\x2c\x94\x65\xf1\xb6\xba\xb9\xd2\x3c\x5f\xd7" "\xd5\x3d\xa7\x6c\xce\x7c\xed\x5b\xf4\x7c\x3d\x38\xf5\xae\x67\x6e\x6a\x71" "\xfb\xfa\xb0\xaf\x86\xdf\x57\xfd\x6b\x78\xde\xd7\xaa\xba\xcc\xee\xdb\xda" "\xbf\x56\xb5\x9f\x6e\xad\xf7\x67\xc3\xad\x3b\xb3\x50\xba\x6c\xb9\xf7\x67" "\xab\x9f\xe6\xd5\xfd\x99\x7a\xc9\x36\xfb\xb3\xba\xcc\xe7\xc7\x96\xfe\x5e" "\x3c\xf5\xa5\x75\xe7\xdf\xc1\x79\xce\xbf\xb1\xef\x7f\x3d\xdf\x5e\x7a\xa8" "\xa7\xfb\x07\x07\xf2\xe3\xb7\x3f\xed\x9d\xc1\x86\xf3\x71\xe3\x4b\x35\x50" "\x3b\x77\x55\x6a\xdb\x7e\x6d\x6c\x61\xe7\xe3\xc1\xf0\x67\xb9\xcf\xc7\xd7" "\xb7\x39\x1f\x6f\x68\x5a\xb6\xdb\xe7\xe3\xc1\xe6\x27\x17\xcf\xc7\x95\x4e" "\xbf\xed\x58\x9a\xe6\xd7\x73\x38\xcc\x93\x13\xe3\xed\xcf\xc7\xd5\x65\x36" "\xec\x5c\xec\x9c\x1c\x68\x7b\x3e\xbe\x25\xd4\x4a\xd8\xff\xef\x0d\x9d\x42" "\xea\x8b\xea\xe6\xce\x7c\xf3\x36\x6d\x6b\x60\x60\x30\x3c\xaf\x81\xb8\x85" "\xc6\x79\xba\xab\x61\xf9\xc1\xd0\x9b\x55\xb7\xf5\xc2\xce\xab\x9b\xa7\xdb" "\x6e\xc9\x1f\xab\x3f\x3d\xbb\x59\xcb\x35\x4f\x47\x9a\x96\xed\xf6\x3c\x4d" "\xe7\xab\xf9\xe6\x69\xa5\xd3\x6f\xdf\xae\x4e\xf3\xeb\x39\x1c\xe6\xc5\xf5" "\xbb\xda\xcf\xd3\xea\x32\x2f\xed\x5e\xfa\xb9\x73\x6d\xfc\xb2\xee\xdc\x39" "\xd4\x69\x0e\x0e\xf6\x0f\x55\xc7\x3c\x98\x26\x61\x7e\xbe\x9f\x59\x1b\xe7" "\xe0\x6d\xd9\xd1\xec\x74\x76\x22\x9b\xa8\xdd\x3b\x54\x9b\x4f\x95\xda\xb6" "\x46\x6f\x5f\xd8\x1c\x1c\x0a\x7f\x96\xfb\x5c\xb9\xa1\xcd\x1c\xdc\xd6\xb4" "\x6c\xb7\xe7\x60\xfa\x39\x36\xdf\xdc\xab\x0c\xcc\x7d\xf2\x5d\xd0\xfc\x7a" "\x0e\x87\x79\xf1\xdc\xed\xed\xe7\x60\x75\x99\x3b\xf7\x76\xf7\xbd\xeb\xb6" "\x70\x4b\x5a\xa6\xee\xbd\x6b\xf3\xef\xd7\xe6\xfb\x9d\xd7\x4d\x4d\xbb\xe9" "\x8d\xfc\x9d\x57\x75\x9c\x7f\xbd\xb7\xfd\xef\x66\xab\xcb\x9c\xd8\xb7\xd8" "\x3e\xb3\xfd\x7e\xba\x35\xdc\x72\x4d\x8b\xfd\xd4\x7c\xfc\xce\x77\x4c\x4d" "\x64\xcb\xb3\x9f\x36\x84\x71\x5e\xd9\x37\xff\x7e\xaa\x8e\xa7\xba\xcc\x57" "\xf6\x2f\x70\x3e\x1d\xcc\xb2\xec\xc2\x63\x77\xd4\x7e\xdf\x1b\xfe\x7d\xe5" "\xcf\xce\x7f\xf7\x5b\x0d\xff\xee\xd2\xea\xdf\x74\x2e\x3c\x76\xc7\xab\xd7" "\x1e\xfb\x9b\xc5\x8c\x1f\x80\xd5\xef\xf5\xbc\xac\xcb\x7f\xd6\xd5\xfd\xcb" "\xd4\x42\xfe\xfd\x1f\x00\x00\x00\x58\x15\x62\xdf\xdf\x17\x6a\xa2\xff\x07" "\x00\x00\x80\xc2\x88\x7d\x7f\xfc\x5f\xe1\x89\xfe\x1f\x00\x00\x00\x0a\x23" "\xf6\xfd\x03\xa1\x26\x25\xe9\xff\x37\xdc\x79\x65\xea\xf5\x0b\x59\x4a\xe6" "\xcf\x04\xf1\xfe\xb4\x1b\xee\xce\x97\x8b\x19\xd7\xf1\xf0\xfd\xc8\xcc\xac" "\xea\xed\x77\x3c\x3f\xf9\xe3\xbf\xb8\xb0\xb0\x6d\xf7\x65\x59\xf6\x93\xbb" "\x7f\xb5\xe5\xf2\x1b\xee\x8e\xe3\xca\x8d\x84\x71\x5e\xfe\x70\xe3\xed\x73" "\x57\xbc\xb0\xa0\xed\x1f\x7e\x70\x76\xb9\xfa\xfc\xfa\xd7\xc2\xe3\xc7\xe7" "\xb3\xd0\x69\xd0\x2a\x82\x3b\x9e\x65\xd9\x8b\xd7\x3d\x5b\xdb\xce\xc8\xc3" "\x97\x6a\xf5\xa5\xbb\x0f\xd7\xea\x7d\x17\x9f\x79\xba\xba\xcc\x6b\xfb\xf3" "\xef\xe3\xfa\xaf\xbc\x2d\x5f\xfe\xf7\x42\xf8\xf7\xe0\xb1\x23\x0d\xeb\xbf" "\x12\xf6\xc3\xf7\x43\x1d\xbf\xa7\xf5\xfe\x88\xeb\x7d\xf3\xd2\x7b\x37\xee" "\x7d\x68\x76\x7b\x71\xbd\xca\xe6\x37\xd7\x9e\xf6\x73\x8f\xe4\x8f\x1b\x3f" "\x27\xe7\xcb\x4f\xe7\xcb\xc7\xfd\x3c\xdf\xf8\xff\xf2\x4b\x2f\x7c\xb3\xba" "\xfc\xe3\xef\x6e\x3d\xfe\x0b\x7d\xad\xc7\xff\x42\x78\xdc\xe7\x43\xfd\xef" "\x77\xe6\xcb\xd7\xbf\x06\xd5\xef\xe3\x7a\x5f\x08\xe3\x8f\xdb\x8b\xeb\xdd" "\xf6\x8d\xef\xb4\x1c\xff\xe5\x2f\xe6\xcb\x9f\xf9\x48\xbe\xdc\xe1\x50\xe3" "\xf6\xb7\x85\xef\xb7\x7c\xe4\xca\x54\xfd\xfe\x7a\xbc\x72\xa4\xe1\x79\x65" "\x1f\xcd\x97\x8b\xdb\x1f\xff\xee\x6f\xd5\xee\x8f\x8f\x17\x1f\xbf\x79\xfc" "\xc3\x87\x2e\x35\xec\x8f\xe6\xf9\xf1\xd2\x3f\xe5\x8f\x33\xd6\xb4\x7c\xbc" "\x3d\x6e\x27\xfa\xf3\xa6\xed\x57\x1f\xa7\x7e\x7e\xc6\xed\xbf\xf0\x1b\x87" "\x1b\xf6\x73\xa7\xed\x5f\xbe\xef\x95\x77\x56\x1f\xb7\x79\xfb\xb7\x36\x2d" "\xd7\xdf\xb4\x7e\xf3\x27\x36\xfd\xfe\x17\x9e\x6d\xb9\xbd\x38\x9e\x83\x7f" "\x72\xa6\xe1\xf9\x1c\xbc\x37\x1c\xc7\x61\xfb\xcf\x3d\x12\xe6\x63\xb8\xff" "\x7f\x2e\x3f\xdb\xb0\xdd\xe8\xf0\xbd\x8d\xe7\x9f\xb8\xfc\xd7\xd6\x5f\x68" "\x78\x3e\xd1\x5d\x3f\xca\xb7\x7f\xf9\x03\xc7\x6b\xf5\xdf\x47\x7e\xfc\xbb" "\xd7\xbc\xe9\xda\x37\x5f\xbc\xb9\xba\xef\xb2\xec\xe5\xfb\xf3\xc7\xeb\xb4" "\xfd\xe3\x7f\x70\xba\x61\xfc\x5f\xbf\x61\x7b\xed\xf5\x88\xf7\xc7\x8c\x7e" "\xf3\xf6\xe7\x13\xb7\x7f\xf6\xb3\xa3\xa7\x4e\x4f\x9f\x9f\x9a\xa8\xdb\xab" "\xb5\xcf\xce\xf9\x58\x3e\x9e\x35\xc3\x6b\xd7\x55\xc7\x7b\x5d\x38\xb7\x36" "\x7f\x7f\xe8\xf4\xb9\x47\x27\xcf\x8e\x8c\x8f\x8c\x67\xd9\x48\x71\x3f\x42" "\xef\xaa\x7d\x23\xd4\x57\xf3\x72\x71\xb1\xeb\x6f\x7f\x30\xbc\x9e\x37\x7d" "\xf5\xc5\x75\x5b\xff\xf1\x4b\xf1\xf6\x7f\x7e\x20\xbf\xfd\xd2\x3d\xf9\xcf" "\xad\xf7\x84\xe5\xbe\x1c\x6e\x5f\x9f\xbf\x7e\x33\x95\x25\x6e\xff\xb9\x4d" "\x37\xd4\x8e\xef\xca\x4b\xf9\xf7\x0d\x39\xf6\x2e\xd8\xb8\xe5\x3f\xf6\x2d" "\x68\xc1\xf0\xfc\x9b\xdf\x17\xc4\xf9\x7e\xe6\xed\x8f\xd6\xf6\x43\xf5\xbe" "\xda\xcf\x8d\x78\x5c\x2f\x71\xfc\xdf\x9b\xc8\x1f\xe7\xdb\x61\xbf\xce\x84" "\x4f\x66\xde\x7c\xc3\xec\xf6\xea\x97\x8f\x9f\x8d\x70\xe9\xfe\xfc\x78\x5f" "\xf2\xfe\x0b\xa7\xb9\xf8\xba\xfe\x51\x78\xbd\x3f\xfe\xfd\xfc\xf1\xe3\xb8" "\xe2\xf3\xfd\x5e\x78\x1f\xf3\x9d\x0d\x8d\xe7\xbb\x38\x3f\xbe\x7d\xa1\xaf" "\xf9\xf1\x6b\x9f\xe2\x71\x31\x9c\x4f\xb2\x8b\xf9\xfd\x71\xa9\xb8\xbf\x2f" "\xbd\x76\x43\xcb\xe1\xc5\xcf\x21\xc9\x2e\xde\x58\xfb\xfe\xb7\xd3\xe3\xdc" "\xb8\xa8\xa7\x39\x9f\xe9\x27\xa6\xc7\x4e\x4c\x9d\x3a\xff\xf8\xd8\xb9\xc9" "\xe9\x73\x63\xd3\x4f\x3c\x79\xe8\xe4\xe9\xf3\xa7\xce\x1d\xaa\x7d\x96\xe7" "\xa1\x4f\x77\x5a\x7f\xf6\xfc\xb4\xae\x76\x7e\x9a\x98\xdc\xb3\x3b\x1b\x5f" "\x9b\x65\xd9\xe9\x6c\x7c\x19\x4e\x58\x6f\xcc\xf8\xab\x5f\x2d\x6c\xfc\x67" "\x1e\x3c\x3a\xb1\x77\x7c\xeb\xc4\xe4\xb1\x23\xe7\x8f\x9d\x7b\xf0\xcc\xe4" "\xd9\xe3\x47\xa7\xa7\x8f\x4e\x4e\x4c\x6f\x3d\x72\xec\xd8\xe4\x67\x3b\xad" "\x3f\x35\x71\x60\xc7\xce\xfd\xbb\xf6\xee\x1c\x3d\x3e\x35\x71\x60\xdf\xfe" "\xfd\xbb\xf6\x8f\x4e\x9d\x3a\x5d\x1d\x46\x3e\xa8\x0e\xf6\x8c\x7f\x66\xf4" "\xd4\xd9\x43\xb5\x55\xa6\x0f\xec\xde\xbf\xe3\xf6\xdb\x77\x8f\x8f\x9e\x3c" "\x3d\x31\x79\x60\xef\xf8\xf8\xe8\xf9\x4e\xeb\xd7\x7e\x36\x8d\x56\xd7\xfe" "\x95\xd1\xb3\x93\x27\x8e\x9c\x9b\x3a\x39\x39\x3a\x3d\xf5\xe4\xe4\x81\x1d" "\xfb\xf7\xec\xd9\xd9\xf1\xd3\x00\x4f\x9e\x39\x36\x3d\x32\x76\xf6\xfc\xa9" "\xb1\xf3\xd3\x93\x67\xc7\xf2\xe7\x32\x72\xae\x76\x73\xf5\x67\x5f\xa7\xf5" "\x29\xa6\xe9\x7f\xcd\xdf\xcf\x36\xab\xe4\x1f\xc4\x97\x7d\xe2\xd6\x3d\xe9" "\xf3\x59\xab\x9e\xff\xdc\xbc\x0f\x95\x2f\xd2\xf4\x01\xa2\x57\xc2\x67\xd1" "\xfc\xfd\x5b\xce\xec\x5b\xc8\xf7\xb1\xef\x1f\x0c\x35\x29\x49\xff\x0f\x00" "\x00\x00\x65\x10\xfb\xfe\xa1\x50\x13\xfd\x3f\x00\x00\x00\x14\x46\xec\xfb" "\xd7\x84\x9a\xe8\xff\x01\x00\x00\xa0\x30\x62\xdf\x3f\x1c\x6a\x52\x92\xfe" "\x5f\xfe\x5f\xfe\x7f\x61\xf9\xff\xfc\x7e\xf9\xff\x72\xe5\xff\xcf\x3c\x96" "\xe7\x4a\x57\x7b\xfe\x3f\xe6\xe7\xe5\xff\xcb\x61\x85\xf3\xff\x4b\xde\x7e" "\x17\xf2\xff\x37\xb7\xbb\x73\x91\xf9\xff\xdf\xfc\x53\xf9\x7f\xf9\xff\x65" "\xcc\xcf\x2f\x49\xdf\xca\x8f\x5f\xfe\x5f\xfe\x9f\xb9\x7a\x2d\xff\x1f\xfb" "\xfe\xb5\x59\x56\xca\xfe\x1f\x00\x00\x00\xca\x20\xf6\xfd\xeb\x42\x4d\xf4" "\xff\x00\x00\x00\x50\x18\xb1\xef\xbf\x26\xd4\x44\xff\x0f\x00\x00\x00\x85" "\x11\xfb\xfe\x37\x85\x9a\x94\xa4\xff\x97\xff\x5f\x50\xfe\x7f\x67\xa7\xc0" "\x55\xf1\xf3\xff\xae\xff\x2f\xff\x9f\xad\xce\xfc\x7f\x7c\x71\xe4\xff\x4b" "\x63\xd1\xf9\xfb\x87\x1e\x68\xf8\xb6\x00\xf9\xff\xb6\x5c\xff\xbf\x03\xf9" "\xff\xd5\x9b\xff\xef\x81\xf1\xcb\xff\xcb\xff\xd3\x6c\x70\xde\x7b\x56\x2a" "\xff\x1f\xfb\xfe\x6b\x43\x4d\x4a\xd2\xff\x03\x00\x00\x40\x19\xc4\xbe\xff" "\xcd\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8c\xd8\xf7\x5f\x17\x6a\xa2\xff\x07" "\x00\x00\x80\xc2\x88\x7d\xff\xfa\x50\x93\x92\xf4\xff\xf2\xff\xae\xff\x2f" "\xff\x2f\xff\x5f\xe8\xfc\xff\x52\xaf\xff\x5f\x37\x18\xf9\xff\xd5\xc1\xf5" "\xff\xdb\x93\xff\xef\xe0\xaa\xf3\xff\xc3\xf2\xff\xab\x31\xff\x3f\xd8\xdd" "\xf1\xf7\x76\xfe\xbf\xe3\xf0\xbb\x99\xff\x1f\xca\xe4\xff\x09\x7a\xed\xfa" "\xff\xb1\xef\x7f\x4b\xa8\x49\x49\xfa\x7f\x00\x00\x00\x28\x83\xd8\xf7\xbf" "\x35\xd4\x44\xff\x0f\x00\x00\x00\x85\x11\xfb\xfe\xb7\x85\x9a\xe8\xff\x01" "\x00\x00\xa0\x30\x62\xdf\x7f\x7d\xa8\x49\x49\xfa\x7f\xf9\x7f\xf9\x7f\xf9" "\x7f\xf9\x7f\xf9\xff\xd6\xdb\xef\x7c\xfd\xff\xfc\x2b\xf9\xff\xde\x22\xff" "\xdf\x9e\xfc\x7f\x07\xae\xff\x5f\xae\xfc\x7f\x97\xc7\xdf\xdb\xf9\xff\x6e" "\x5f\xff\x7f\xf0\xc3\xcd\xeb\xbb\xfe\x3f\xad\xf4\x5a\xfe\x3f\xf6\xfd\x6f" "\x0f\x35\x29\x49\xff\x0f\x00\x00\x00\x65\x10\xfb\xfe\x1b\x42\x4d\xf4\xff" "\x00\x00\x00\x50\x18\xb1\xef\x7f\x47\xa8\x89\xfe\x1f\x00\x00\x00\x0a\x23" "\xf6\xfd\x1b\x42\x4d\x4a\xd2\xff\xcb\xff\xcb\xff\xcb\xff\xcb\xff\xcb\xff" "\xb7\xde\x7e\xe7\xfc\x7f\x4e\xfe\xbf\xb7\xc8\xff\xb7\x27\xff\xdf\x81\xfc" "\xbf\xfc\xbf\xfc\xff\xc2\xf2\xff\x2d\xde\xfc\xca\xff\xd3\x4a\xaf\xe5\xff" "\x63\xdf\x7f\x63\xa8\x49\x49\xfa\x7f\x00\x00\x00\x28\x83\xd8\xf7\xdf\x14" "\x6a\xa2\xff\x07\x00\x00\x80\xc2\x88\x7d\xff\xff\x0b\x35\xd1\xff\x03\x00" "\x00\x40\x61\xc4\xbe\x7f\x63\xa8\x49\x49\xfa\xff\x0d\x77\x5e\x79\xe8\xab" "\xb5\xaf\xe4\xff\x33\xf9\x7f\xf9\xff\x12\xe4\xff\x6f\x1d\x92\xff\x97\xff" "\x2f\x36\xf9\xff\xf6\xe4\xff\x3b\x90\xff\x97\xff\x97\xff\x5f\xe0\xf5\xff" "\xe7\x5a\x4c\xfe\x7f\x4d\xa7\x07\xa3\x30\x7a\x2d\xff\x1f\xfb\xfe\x77\x86" "\x9a\x94\xa4\xff\x07\x00\x00\x80\x32\x88\x7d\xff\xbb\x42\x4d\xf4\xff\x00" "\x00\x00\x50\x18\xb1\xef\xbf\x39\xd4\x44\xff\x0f\x00\x00\x00\x85\x11\xfb" "\xfe\x91\x50\x93\xd5\xd7\xff\x7f\xb2\xef\x2a\x56\x72\xfd\xff\x62\xe5\xff" "\xff\xf8\xaf\x9e\xbb\x39\x93\xff\x97\xff\xef\xb0\xfd\x82\xe6\xff\xe3\x34" "\x90\xff\x2f\x39\xf9\xff\xf6\xca\x90\xff\xaf\x3f\x27\xc9\xff\x2f\xce\x4a" "\xe7\xe7\x57\xfb\xf8\xe5\xff\x5d\xff\x9f\xb9\x7a\x2d\xff\x1f\xfb\xfe\x4d" "\xa1\x26\xab\xaf\xff\x07\x00\x00\x00\xe6\x11\xfb\xfe\xcd\xa1\x26\xfa\x7f" "\x00\x00\x00\x28\x8c\xd8\xf7\xdf\x12\x6a\xa2\xff\x07\x00\x00\x80\xc2\x88" "\x7d\xff\x96\x50\x93\x92\xf4\xff\xf2\xff\xc5\xca\xff\x47\xf2\xff\xf2\xff" "\xed\xb6\x5f\xd0\xfc\x7f\x22\xff\x5f\x6e\xf2\xff\x2d\xd4\x1d\xa4\xab\x24" "\xff\x3f\xe2\xfa\xff\xf2\xff\xab\x71\xfc\xc5\xc8\xff\xc7\x77\xbf\xf2\xff" "\x74\x47\xaf\xe5\xff\x63\xdf\xff\xee\x50\x93\x92\xf4\xff\x00\x00\x00\x50" "\x06\xb1\xef\xdf\x1a\x6a\xa2\xff\x07\x00\x00\x80\xc2\x88\x7d\xff\x7b\x42" "\x4d\xf4\xff\x00\x00\x00\x50\x18\xb1\xef\xdf\x16\x6a\x52\x92\xfe\x5f\xfe" "\x5f\xfe\x5f\xfe\x5f\xfe\x7f\xa5\xf2\xff\x43\xf2\xff\x69\xaf\xca\xff\x77" "\x8f\xfc\x7f\x7b\x8b\xcd\xff\x0f\xad\xc2\xeb\xff\x2f\x65\xfb\xf2\xff\xf2" "\xff\xf2\xff\xae\xff\x4f\x77\xf5\x5a\xfe\x3f\xf6\xfd\xef\x0d\x35\x29\x49" "\xff\x0f\x00\x00\x00\x65\x10\xfb\xfe\xed\xa1\x26\xfa\x7f\x00\x00\x00\x28" "\x8c\xf8\xff\x37\xf3\xff\xf7\xaa\xff\x07\x00\x00\x80\x22\x8a\x7d\xff\x68" "\xa8\x49\x49\xfa\xff\x25\xe4\xff\x67\xfa\xe5\xff\x13\xf9\xff\xc6\xf1\xf7" "\x6a\xfe\xbf\x22\xff\xdf\x53\xf9\x7f\xd7\xff\x9f\xdd\xab\xf2\xff\xdd\x23" "\xff\xdf\xde\x2a\xb9\xfe\xbf\xfc\x7f\x0f\xe5\xff\xab\xb7\xcb\xff\xcb\xff" "\xcb\xff\x73\xb5\x7a\x2d\xff\x1f\xfb\xfe\xf7\x85\x9a\x94\xa4\xff\x07\x00" "\x00\x80\x32\x88\x7d\xff\x6d\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8c\xd8\xf7" "\x8f\x85\x9a\xe8\xff\x01\x00\x00\xa0\x30\x62\xdf\x3f\x1e\x6a\x52\x92\xfe" "\xdf\xf5\xff\x4b\x97\xff\x5f\x53\xe6\xfc\xbf\xeb\xff\xcb\xff\xcb\xff\x17" "\x9f\xfc\x7f\x7b\xf2\xff\x1d\xc8\xff\xbb\xfe\x7f\xd1\xf2\xff\x59\x26\xff" "\xcf\x8a\xea\xb5\xfc\x7f\xec\xfb\x77\x84\x9a\x94\xa4\xff\x07\x00\x00\x80" "\x32\x88\x7d\xff\xce\x50\x13\xfd\x3f\x00\x00\x00\x14\x46\xec\xfb\x77\x85" "\x9a\xe8\xff\x01\x00\x00\xa0\x30\x62\xdf\xbf\x3b\xd4\xa4\x24\xfd\xbf\xfc" "\x7f\xe9\xf2\xff\xa5\xbe\xfe\xbf\xfc\xbf\xfc\xbf\xfc\x7f\xf1\xc9\xff\xb7" "\x27\xff\xdf\x81\xfc\xbf\xfc\x7f\xd1\xf2\xff\xae\xff\xcf\x0a\xeb\xb5\xfc" "\x7f\xec\xfb\x6f\x0f\x35\x29\x49\xff\x0f\x00\x00\x00\x65\x10\xfb\xfe\x3d" "\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8c\xd8\xf7\xef\x0d\x35\x09\xfd\x7f\xab" "\xff\xd7\x0d\x00\x00\x00\xac\x2e\xb1\xef\xdf\x17\x6a\x52\x92\x7f\xff\x97" "\xff\x2f\x48\xfe\xff\xd7\xff\xae\x61\xdb\xf2\xff\xf2\xff\xed\xb6\xdf\x9d" "\xfc\xff\x5a\xf9\xff\x50\xe5\xff\x7b\x4b\x41\xf3\xff\xcd\x87\xc5\x55\x93" "\xff\xef\x40\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x9f\xae\xea\xb5\xfc\x7f\xec\xfb" "\xf7\x87\x9a\x94\xa4\xff\x07\x00\x00\x80\x32\x88\x7d\xff\xfb\x43\x4d\xf4" "\xff\x00\x00\x00\x50\x18\xb1\xef\xff\xff\xa1\x26\xfa\x7f\x00\x00\x00\x28" "\x8c\xd8\xf7\xff\x54\xa8\x49\x49\xfa\x7f\xf9\xff\x82\xe4\xff\x9b\xc8\xff" "\xcb\xff\xb7\xdb\xbe\xeb\xff\xcb\xff\x17\x59\x41\xf3\xff\x5d\x53\xa8\xfc" "\x7f\x9f\xfc\xbf\xfc\x7f\x6f\x8d\x5f\xfe\x5f\xfe\x9f\xb9\xde\xf8\xfc\x7f" "\xfc\x6a\x61\xf9\xff\xd8\xf7\x1f\x08\x35\x29\x49\xff\x0f\x00\x00\x00\x65" "\x10\xfb\xfe\x9f\x0e\x35\xd1\xff\x03\x00\x00\x40\x61\xc4\xbe\xff\x03\xa1" "\x26\xfa\x7f\x00\x00\x00\x28\x8c\xd8\xf7\x1f\x0c\x35\x29\x49\xff\x2f\xff" "\x2f\xff\x2f\xff\x2f\xff\xff\xc6\xe4\xff\x3f\x90\x35\xeb\xc5\xfc\x7f\x75" "\xf2\x2c\x5b\xfe\x7f\x50\xfe\x7f\x39\xc8\xff\xb7\x57\xa8\xfc\xbf\xeb\xff" "\xcb\xff\xf7\xd8\xf8\xe5\xff\xe5\xff\x99\xab\xd7\xae\xff\x1f\xfb\xfe\x0f" "\x86\x9a\x94\xa4\xff\x07\x00\x00\x80\x32\x88\x7d\xff\x1d\xa1\x26\xfa\x7f" "\x00\x00\x00\x28\x8c\xd8\xf7\x7f\x28\xd4\x44\xff\x0f\x00\x00\x00\x85\x11" "\xfb\xfe\x3b\x43\x4d\x4a\xd2\xff\xcb\xff\xcb\xff\xcb\xff\xcb\xff\xbb\xfe" "\x7f\xeb\xed\xbb\xfe\xff\xea\x24\xff\xdf\x9e\xfc\x7f\x07\xf2\xff\xf2\xff" "\xf2\xff\xf2\xff\x74\x55\xaf\xe5\xff\x63\xdf\xff\xe1\x50\x93\x92\xf4\xff" "\x00\x00\x00\x50\x06\xb1\xef\xff\x48\xa8\x89\xfe\x1f\x00\x00\x00\x0a\x23" "\xf6\xfd\x1f\x0d\x35\xd1\xff\x03\x00\x00\x40\x61\xc4\xbe\xff\xae\x50\x93" "\x92\xf4\xff\xf2\xff\xf2\xff\xf2\xff\xf2\xff\xf2\xff\xad\xb7\x2f\xff\xbf" "\x3a\xc9\xff\xb7\x27\xff\xdf\x81\xfc\xbf\xfc\xbf\xfc\xbf\xfc\x3f\x5d\xd5" "\x6b\xf9\xff\xd8\xf7\xff\x4c\xa8\x49\x49\xfa\x7f\x00\x00\x00\x28\x83\xd8" "\xf7\xdf\x1d\x6a\xa2\xff\x07\x00\x00\x80\xc2\x88\x7d\xff\x3d\xa1\x26\xfa" "\x7f\x00\x00\x00\x28\x8c\xd8\xf7\x7f\x2c\xd4\xa4\x24\xfd\xbf\xfc\xbf\xfc" "\xbf\xfc\xbf\xfc\xbf\xfc\x7f\xeb\xed\xcb\xff\xaf\x4e\xf2\xff\xed\xc9\xff" "\x77\x20\xff\x2f\xff\x2f\xff\x2f\xff\x4f\x57\xf5\x5a\xfe\x3f\xf6\xfd\x1f" "\x0f\x35\x29\x49\xff\x0f\x00\x00\x00\x65\x10\xfb\xfe\x9f\x0d\x35\xd1\xff" "\x03\x00\x00\x40\x61\xc4\xbe\xff\x13\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8c" "\xd8\xf7\xff\x5c\xa8\x49\x49\xfa\x7f\xf9\x7f\xf9\xff\xde\xca\xff\xcf\x5c" "\xa8\x5f\x4f\xfe\x5f\xfe\x3f\xeb\x56\xfe\xbf\xba\x92\xfc\x7f\x29\xc8\xff" "\xb7\x27\xff\xdf\x41\x8b\xfc\xff\x1a\xf9\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xae" "\x5a\xaf\xe5\xff\x63\xdf\x7f\x6f\xa8\x49\x49\xfa\x7f\x00\x00\x00\x28\x83" "\xd8\xf7\xdf\x17\x6a\xa2\xff\x07\x00\x00\x80\xc2\x88\x7d\xff\xfd\xa1\x26" "\xfa\x7f\x00\x00\x00\x28\x8c\xd8\xf7\x3f\x10\x6a\x52\x92\xfe\x5f\xfe\xbf" "\x94\xf9\xff\xf4\x94\x7b\x2f\xff\xef\xfa\xff\xf2\xff\xae\xff\x2f\xff\xbf" "\x34\xf2\xff\xed\xc9\xff\x77\xe0\xfa\xff\xf2\xff\xf2\xff\xf2\xff\x74\x55" "\xaf\xe5\xff\x63\xdf\xff\x60\xa8\x49\x49\xfa\x7f\x00\x00\x00\x28\x83\xd8" "\xf7\x3f\x14\x6a\xa2\xff\x07\x00\x00\x80\xc2\x88\x7d\xff\x27\x43\x4d\xf4" "\xff\x00\x00\x00\x50\x18\xb1\xef\xff\x54\xa8\x49\x49\xfa\x7f\xf9\xff\x52" "\xe6\xff\x7b\xf8\xfa\xff\x2b\x97\xff\xaf\x3e\x87\xee\xe7\xff\x07\x1a\xe6" "\x47\x99\xf2\xff\xc3\x75\xaf\x67\x9a\x97\xf2\xff\xf2\xff\xcb\x40\xfe\xbf" "\x3d\xf9\xff\x0e\xe4\xff\x43\x7e\x3e\xeb\x93\xff\xef\xc1\xfc\x7f\x98\xcd" "\x6b\xe7\x59\x5f\xfe\x9f\x5e\xd4\x6b\xf9\xff\xd8\xf7\x3f\x1c\x6a\x52\x92" "\xfe\x1f\x00\x00\x00\xca\x20\xf6\xfd\x3f\x1f\x6a\xa2\xff\x07\x00\x00\x80" "\xc2\x88\x7d\xff\x2f\x84\x9a\xe8\xff\x01\x00\x00\xa0\x30\x62\xdf\xff\x8b" "\xa1\x26\x25\xe9\xff\xe5\xff\xe5\xff\xe5\xff\x5d\xff\xdf\xf5\xff\x5b\x6f" "\x5f\xfe\x7f\x75\x92\xff\x6f\x4f\xfe\xbf\x83\x12\xe6\xff\x7f\xad\xee\xeb" "\x95\xce\xcf\x2f\xd5\x4a\x8f\xdf\xf5\xff\xe5\xff\x99\xab\xd7\xf2\xff\xb1" "\xef\xff\xa5\x50\x93\x79\x1b\xbf\x57\xff\x73\x01\x4f\x13\x00\x00\x00\xe8" "\x21\xb1\xef\x7f\x24\xd4\xa4\x24\xff\xfe\x0f\x00\x00\x00\x65\x10\xfb\xfe" "\x43\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8c\xd8\xf7\x1f\x0e\x35\x29\x49\xff" "\x2f\xff\xdf\x9c\xff\x8f\x57\x54\x95\xff\x97\xff\x5f\x75\xf9\xff\x01\xf9" "\xff\x9c\xfc\x7f\xb9\x75\x2f\xff\xff\x8e\x6b\xb3\x4c\xfe\x5f\xfe\xbf\xf8" "\xf9\xff\x7a\x2b\x9d\x9f\x5f\xed\xe3\x97\xff\x97\xff\x67\xae\x5e\xcb\xff" "\xc7\xbe\xff\x48\xa8\x49\x49\xfa\x7f\x00\x00\x00\x28\x83\xd8\xf7\xff\x72" "\xa8\x89\xfe\x1f\x00\x00\x00\x0a\x23\xf6\xfd\x47\x43\x4d\xf4\xff\x00\x00" "\x00\x50\x18\xb1\xef\x9f\x08\x35\x29\x49\xff\x2f\xff\xef\xfa\xff\xdd\xca" "\xff\xff\x44\xfe\x7f\xa5\xf3\xff\xae\xff\x1f\xc8\xff\x97\x9b\xeb\xff\xb7" "\x27\xff\xdf\x81\xfc\xbf\xfc\xbf\xfc\xbf\xfc\x3f\x5d\xd5\x6b\xf9\xff\xd8" "\xf7\x4f\x86\x9a\x94\xa4\xff\x07\x00\x00\x80\x02\x4b\xbf\x0e\x8e\x7d\xff" "\xb1\x50\x13\xfd\x3f\x00\x00\x00\x14\x46\xec\xfb\x8f\x87\x9a\xe8\xff\x01" "\x00\x00\xa0\x30\x62\xdf\xff\x68\xa8\x49\x49\xfa\x7f\xf9\x7f\xf9\x7f\xd7" "\xff\x5f\x89\xfc\xff\x40\xc3\xf2\xf2\xff\xb9\x9e\xcb\xff\x0f\x37\x8e\x43" "\xfe\x7f\x75\x90\xff\x6f\x6f\xe9\xf9\xff\xfc\xfc\x25\xff\x2f\xff\xdf\x8a" "\xfc\xbf\xfc\xbf\xfc\x3f\xcd\x7a\x2d\xff\x1f\xfb\xfe\xa9\x50\x93\x92\xf4" "\xff\x00\x00\x00\x50\x06\xb1\xef\xff\x74\xa8\x89\xfe\x1f\x00\x00\x00\x0a" "\x23\xf6\xfd\x9f\x09\x35\xd1\xff\x03\x00\x00\x40\x61\xc4\xbe\xff\x44\xa8" "\x49\x49\xfa\x7f\xf9\x7f\xf9\xff\xb2\xe7\xff\x2b\x59\x76\xd1\xf5\xff\xe5" "\xff\x5b\x6d\xdf\xf5\xff\xff\x8f\xbd\xfb\x78\xae\xeb\x3c\xef\x38\x7e\x44" "\xb1\x00\x59\x24\xfa\x13\xb2\xce\x2a\xcb\x64\xa5\x6c\xb2\xcf\x36\xbb\xcc" "\x64\xad\x54\xb9\x17\x4a\xee\xdd\x96\xab\x2c\x77\xb9\xf7\x5e\xe5\x22\xf7" "\xde\xbb\xe5\x22\xf7\x5e\xe5\x2a\x7b\x86\x1e\x81\xcf\xf3\x90\x00\x2e\xce" "\x05\x89\x43\xdc\x73\xde\xf7\xf3\xd9\x3c\x26\x23\x0a\x17\x12\x93\xcc\xcf" "\x9c\xef\xbc\xcb\xa4\xff\x1f\xe7\xfd\xff\x35\xf4\xff\xfa\x7f\xfd\xbf\xfe" "\x9f\x49\xcd\xad\xff\xcf\xdd\x7f\x5d\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e" "\xe4\xee\xff\xaf\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\xef\xb8\xc5" "\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x9f\xb8\xa5\x93\xfd\xaf\xff\xd7\xff" "\xf7\xde\xff\x0f\x1b\x79\xff\x7f\xf7\x5f\xaf\xff\x3f\x4f\xff\xaf\xff\x9f" "\xc2\xbe\xfe\xfe\xe4\xa5\xfd\xfa\x03\xfb\xff\x7f\xfc\xa7\xeb\xff\x43\xff" "\xaf\xff\xd7\xff\x8f\xd2\xff\xeb\xff\xf5\xff\xec\x35\xb7\xfe\x3f\x77\xff" "\xff\xc6\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xff\x8b\x5b\xec\x7f" "\x00\x00\x00\x68\x46\xee\xfe\xff\x8f\x5b\xec\x7f\x00\x00\x00\x68\x46\xee" "\xfe\xeb\xe3\x96\x4e\xf6\xbf\xfe\x5f\xff\xdf\x47\xff\x7f\x72\xd0\xff\x1f" "\xb2\xff\xbf\x5d\xff\xaf\xff\x5f\x36\xef\xff\x8f\xd3\xff\xaf\xa1\xff\xd7" "\xff\xeb\xff\xf5\xff\x4c\x6a\x6e\xfd\x7f\xee\xfe\x7b\xc5\x2d\x9d\xec\x7f" "\x00\x00\x00\xe8\x41\xee\xfe\x7b\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77" "\xff\x7d\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xbe\x71\x4b\x27\xfb" "\x5f\xff\xaf\xff\xef\xa3\xff\x6f\xe1\xfd\xff\xd3\xde\xff\xdf\xf3\xfd\xe8" "\xff\xf5\xff\xab\xe8\xff\xc7\xe9\xff\xd7\xd0\xff\xeb\xff\xf5\xff\xfa\x7f" "\x26\x35\xb7\xfe\x3f\x77\xff\xfd\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20" "\x77\xff\xfd\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x01\x71\x8b\xfd" "\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xc0\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb" "\xff\x97\xd2\xff\x1f\xd3\xfb\xff\xfa\x7f\xfd\xff\xc2\xdd\x3a\x5c\xf8\xbf" "\x09\xfa\xff\xfd\xf4\xff\x6b\xac\xe9\xff\x87\x41\xff\x3f\xe6\xd0\xfd\xfc" "\xea\x6f\x6f\x39\x9f\xff\x00\xfa\x7f\xfd\x3f\xfb\xcd\xad\xff\xcf\xdd\xff" "\xa0\xb8\xe5\x5f\x86\xe1\xf4\xe5\x7e\x93\x00\x00\x00\xc0\xac\xe4\xee\x7f" "\x70\xdc\xd2\xc9\x9f\xff\x03\x00\x00\x40\x0f\x72\xf7\x9f\x8d\x5b\xec\x7f" "\x00\x00\x00\x68\x46\xee\xfe\x1b\xe2\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\xeb\xff\x57\x7f\x7d\xfd\xff\x32\x1d\xae\xbf\x3f\x73\xe0\xaf\xd7" "\xff\x87\x03\xfb\xff\x7f\xb8\xe6\xba\xff\xec\xb7\xff\xf7\xfe\xff\x38\xef" "\xff\xeb\xff\xf5\xff\xec\x35\xb7\xfe\x3f\x77\xff\x8d\x71\x4b\x27\xfb\x1f" "\x00\x00\x00\x7a\x90\xbb\xff\x21\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd" "\xff\xd0\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x58\xdc\xd2\xc9\xfe" "\xd7\xff\xb7\xd6\xff\x5f\xbd\xeb\xd7\x5d\xd4\xff\xef\xd4\x2e\xfa\x7f\xfd" "\xff\x54\xfd\xff\xcd\x5b\x17\xfe\x7d\xe9\xff\xf5\xff\x73\x72\xd4\xfe\x5e" "\xff\x1f\xba\x7e\xff\x7f\xbb\x7e\xa8\xff\xd7\xff\xeb\xff\xf5\xff\x1c\xcd" "\xdc\xfa\xff\xdc\xfd\x0f\x8f\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd" "\x8f\x88\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x47\xc6\x2d\xf6\x3f\x00" "\x00\x00\x34\x23\x77\xff\xa3\xe2\x96\x4e\xf6\xff\xa2\xfa\xff\x73\x57\xeb" "\xff\xbd\xff\xaf\xff\x9f\x49\xff\x3f\x78\xff\x5f\xff\x3f\x53\xfa\xff\x71" "\xfa\xff\x35\x5a\x79\xff\xff\x32\x7f\xd7\x6c\xba\x9f\x3f\xaa\x4d\x7f\x7e" "\xfd\xbf\xfe\x9f\xfd\xe6\xd6\xff\xe7\xee\x7f\x74\xdc\xd2\xc9\xfe\x07\x00" "\x00\x80\x1e\xe4\xee\x7f\x4c\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f" "\x36\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x1f\x17\xb7\x74\xb2\xff\x17" "\xd5\xff\x7b\xff\xbf\xe3\xfe\x3f\xbf\x82\xfe\x5f\xff\x7f\xe5\xfb\xff\xa4" "\xff\x5f\x26\xfd\xff\x38\xfd\xff\x1a\xad\xf4\xff\x97\x69\xd3\xfd\xfc\xd2" "\x3f\xbf\xfe\x5f\xff\xcf\x7e\x73\xeb\xff\x73\xf7\x3f\x3e\x6e\xe9\x64\xff" "\x03\x00\x00\x40\x0f\x72\xf7\x3f\x21\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9" "\xfb\x9f\x18\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x4f\x8a\x5b\x3a\xd9" "\xff\xfa\x7f\xfd\xff\x32\xfa\x7f\xef\xff\xeb\xff\xbd\xff\xaf\xff\x3f\x1c" "\xfd\xff\x38\xfd\xff\x1a\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xa4\xe6\xd6\xff" "\xe7\xee\xbf\x29\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x3f\x39\x6e" "\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x9f\x12\xb7\xd8\xff\x00\x00\x00\xd0" "\x8c\xdc\xfd\x4f\x8d\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\x5f\xfd\xf5\xf5\xff\xcb\xa4\xff\x1f\xa7\xff\x5f\x43\xff\xaf\xff\xd7\xff" "\xeb\xff\x99\xd4\x8c\xfa\xff\x8b\x7e\xd5\xd6\xf0\xb4\xb8\xa5\x93\xfd\x0f" "\x00\x00\x00\x3d\xc8\xdd\xff\xf4\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee" "\x7f\x46\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xdf\x1c\xb7\x74\xb2\xff" "\xf5\xff\xb3\xe9\xff\x77\x72\xbe\xb6\xfa\xff\xed\x61\x18\x2e\xbb\xff\xff" "\x57\xfd\xff\xb2\xfb\xff\xed\x8b\xfe\x7d\xd6\xef\x4b\xfd\xbf\xfe\xff\x18" "\xe8\xff\xc7\xe9\xff\xd7\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x26\x35\xa3\xfe" "\x7f\xe7\xc7\xb9\xfb\x9f\x19\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb" "\x6f\x89\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x67\xc5\x2d\xf6\x3f\x00" "\x00\x00\x34\x23\x77\xff\xb3\xe3\x96\x4e\xf6\xbf\xfe\x7f\x36\xfd\xff\x8e" "\xb6\xfa\x7f\xef\xff\xef\xfd\xfd\xd1\x53\xff\xef\xfd\xff\xfd\xf4\xff\xc7" "\x43\xff\x3f\x4e\xff\xbf\x86\xfe\x5f\xff\xaf\xff\xd7\xff\x33\xa9\xb9\xf5" "\xff\xb9\xfb\x9f\x13\x37\x9d\x3e\x75\xd9\xdf\x22\x00\x00\x00\x30\x33\xb9" "\xfb\x9f\x1b\xb7\x74\xf2\xe7\xff\x00\x00\x00\xd0\x83\xdc\xfd\xcf\x8b\x5b" "\xec\x7f\x00\x00\x00\x58\xa8\x9b\xf6\xfd\x4c\xee\xfe\xe7\xc7\x2d\x9d\xec" "\x7f\xfd\xff\xb4\xfd\xff\xe9\x8b\x7e\x4e\xff\xaf\xff\xdf\xfb\xfb\x63\xbe" "\xfd\xff\x55\xbb\x2a\x65\xfd\xff\x79\xfa\xff\x65\xd2\xff\x8f\xd3\xff\xaf" "\xa1\xff\xd7\xff\xeb\xff\xf5\xff\x4c\x6a\x6e\xfd\x7f\xee\xfe\x17\xc4\x2d" "\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x5b\xe3\x16\xfb\x1f\x00\x00\x00" "\x16\xe2\xb6\xbf\x5d\xf7\x57\xe4\xee\x7f\x61\xdc\x62\xff\x03\x00\x00\x40" "\x33\x72\xf7\xbf\x28\x6e\xe9\x64\xff\xeb\xff\xbd\xff\xaf\xff\xd7\xff\x7b" "\xff\x7f\xf5\xd7\xd7\xff\x2f\x93\xfe\x7f\x9c\xfe\x7f\x0d\xfd\xbf\xfe\x7f" "\xb3\xfd\xff\x99\x0b\xff\x51\xff\x4f\x1b\x2e\xa1\xff\x3f\x77\xee\xdc\xd9" "\x2b\xde\xff\xe7\xee\x7f\x71\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee" "\x7f\x49\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x34\x6e\xb1\xff\x01" "\x00\x00\xa0\x19\xb9\xfb\x5f\x16\xb7\x74\xb2\xff\xf5\xff\x57\xa2\xff\x3f" "\x5f\x2b\xce\xba\xff\xcf\xdf\xea\xcb\xea\xff\x6f\x18\x86\xb9\xf7\xff\x67" "\xf5\xff\xfa\xff\x03\xe9\xff\x8f\x87\xfe\x7f\x9c\xfe\x7f\x0d\xfd\xbf\xfe" "\xdf\xfb\xff\xfa\x7f\x26\x35\xb7\xf7\xff\x73\xf7\xbf\x3c\x6e\xe9\x64\xff" "\x03\x00\x00\x40\x0f\x72\xf7\xbf\x22\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9" "\xfb\x5f\x19\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xaf\x8a\x5b\x3a\xd9" "\xff\xfa\x7f\xef\xff\x2f\xa8\xff\xf7\xfe\xbf\xfe\x7f\xd7\xf7\xb3\xb0\xfe" "\xff\xee\x41\xff\x7f\x2c\x16\xd1\xff\x6f\x1f\xfc\xf5\xe7\xde\xff\xdf\xa8" "\xff\xd7\xff\x8f\xe8\xae\xff\xff\xb7\x7f\xde\xf5\x43\xfd\xbf\xfe\x9f\xfd" "\xe6\xd6\xff\xe7\xee\x7f\x75\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee" "\x7f\x4d\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x36\x6e\xb1\xff\x01" "\x00\x00\xa0\x19\xb9\xfb\x5f\x17\x37\x9d\xec\x64\xff\xeb\xff\xf5\xff\xfa" "\x7f\xfd\xbf\xfe\x7f\xf5\xd7\x3f\xe6\xf7\xff\x4f\x0f\xc3\xa0\xff\x9f\xc0" "\x22\xfa\xff\x11\x73\xef\xff\xbd\xff\xaf\xff\x1f\xd3\x5d\xff\xbf\x87\xfe" "\x5f\xff\xcf\x7e\x73\xeb\xff\x73\xf7\xbf\x3e\x6e\xe9\x64\xff\x03\x00\x00" "\x40\x0f\x72\xf7\xbf\x21\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xdf\x18" "\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x6f\x8a\x5b\x3a\xd9\xff\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\xdf\x7c\xff\x7f\xe3\x22\xfa\x7f\xef\xff\x4f\x44\xff" "\x3f\x4e\xff\xbf\x86\xfe\x5f\xff\xaf\xff\xd7\xff\x73\x2c\x36\xd5\xff\xe7" "\xee\x7f\x73\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x4b\xdc\x62" "\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x35\x6e\xb1\xff\x01\x00\x00\xa0\x19" "\xb9\xfb\xdf\x16\xb7\x74\xb2\xff\xf5\xff\xfa\xff\x4b\xe9\xff\xf3\x73\xea" "\xff\xdb\xea\xff\xcf\xcc\xae\xff\xdf\xda\xf5\xf7\xeb\xe4\xfd\x7f\xfd\xff" "\x44\xf4\xff\xe3\xf4\xff\x6b\xe8\xff\xf5\xff\xfa\xff\x9b\xf4\xff\x4c\x69" "\x6e\xef\xff\xe7\xee\x7f\x7b\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee" "\x7f\x47\xdc\xfa\xaf\x6e\xed\x7f\x00\x00\x00\x68\x46\xee\xfe\xdb\xe2\x16" "\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x9d\x71\x4b\x27\xfb\x5f\xff\xaf\xff" "\xf7\xfe\xbf\xfe\xbf\xf9\xf7\xff\xf5\xff\x5d\xd1\xff\x8f\xd3\xff\xaf\xa1" "\xff\xd7\xff\xeb\xff\xbd\xff\xcf\xa4\xe6\xd6\xff\xe7\xee\x7f\x57\xdc\xd2" "\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x77\xdc\x62\xff\x03\x00\x00\x40" "\x33\x72\xf7\xbf\x27\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x6f\x8f\x5b" "\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x3f\xff\xef\x50\xff\xdf" "\x06\xfd\xff\xb8\xe3\xe9\xff\xb7\xf5\xff\xfa\xff\xea\xe7\xaf\x8a\xff\x2d" "\xd0\xff\xeb\xff\xd7\xfd\x7a\xda\x34\xb7\xfe\x3f\x77\xff\x7b\xe3\x96\x4e" "\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xfb\xe2\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\xfd\x71\x8b\xfd\x0f\x00\x00\x00\x8b\x74\x72\xc5\xcf\xe5\xee" "\xff\x40\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xea\xaf" "\xaf\xff\x5f\x26\xfd\xff\x38\xef\xff\x1f\xe4\x6f\x6e\xb9\xf8\x47\xfa\xff" "\xc3\xf6\xf3\x7f\xbf\xeb\x47\x4b\x7b\xff\x7f\xef\xff\xff\xd2\xff\xeb\xff" "\x99\xde\xdc\xfa\xff\xdc\xfd\x1f\x8c\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83" "\xdc\xfd\x1f\x8a\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x0f\xc7\x2d\xf6" "\x3f\x00\x00\x00\x34\x23\x77\xff\x47\xe2\x96\x4e\xf6\xbf\xfe\x5f\xff\xdf" "\x4c\xff\x7f\xcf\x87\xd0\xff\xeb\xff\xf5\xff\xdd\x5b\x50\xff\xbf\xb5\xea" "\x27\x17\xdb\xff\x9f\x1e\x86\x61\xd1\xfd\x7f\xe8\xed\xfd\xff\x33\xbb\x7f" "\xb8\xe9\xf7\xf3\x8f\x6a\xd3\x9f\x5f\xff\xaf\xff\x67\xbf\xb9\xf5\xff\xb9" "\xfb\x3f\x1a\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x3f\x16\xb7\xd8" "\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x1f\x8f\x5b\xec\x7f\x00\x00\x00\x68\xc6" "\xce\xee\xcf\xb8\xac\xc3\xfd\xaf\xff\xdf\x58\xff\xbf\xf3\xf7\xd7\xff\x7b" "\xff\x5f\xff\xaf\xff\xd7\xff\x4f\x6b\x41\xfd\xff\x4a\x8b\xed\xff\x17\xff" "\xfe\x7f\xe8\xad\xff\xdf\x63\xd3\xfd\xfc\xd2\x3f\xbf\xfe\x5f\xff\xcf\x7e" "\x73\xeb\xff\x3f\xb1\xf3\xab\xb6\x86\x4f\xc6\x2d\x9d\xec\x7f\x00\x00\x00" "\xe8\x41\xee\xfe\x4f\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xa7\xe3" "\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x33\x71\x4b\x27\xfb\x5f\xff\xef" "\xfd\xff\x65\xf4\xff\xe7\xce\x9d\x3b\xab\xff\xd7\xff\xef\xfe\x7e\x2e\xf4" "\xff\x77\xea\xff\x29\xfa\xff\x71\xfa\xff\x35\xf4\xff\xfa\x7f\xfd\xbf\xfe" "\x9f\x49\xcd\xad\xff\xcf\xdd\xff\xd9\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d" "\xc8\xdd\xff\xb9\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x7c\xdc\x62" "\xff\x03\x00\x00\x40\x33\x72\xf7\x9f\x88\x5b\x3a\xd9\xff\xfa\xff\x19\xf4" "\xff\x5b\xfa\x7f\xef\xff\xeb\xff\x07\xef\xff\xeb\xff\x27\xa2\xff\x5f\x6d" "\x3b\xae\xfe\x7f\x8d\x16\xfb\xff\xad\xc3\x7f\xfb\x9b\xee\xe7\x8f\x6a\xd3" "\x9f\x5f\xff\xaf\xff\x67\xbf\xb9\xf5\xff\x5f\xd8\xf9\x55\x5b\xc3\x17\xe3" "\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x97\xe2\x96\x7d\xfb\xff\x8e" "\x63\xfc\x54\x00\x00\x00\xc0\x94\x72\xf7\x7f\x39\x6e\xf1\xe7\xff\x00\x00" "\x00\xd0\x8c\xdc\xfd\x5f\x89\x5b\x3a\xd9\xff\xfa\xff\xe3\xeb\xff\xef\xf9" "\x67\xd7\xcb\xfb\xff\xdb\xc3\xea\xcf\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x57" "\x9a\xfe\x7f\x9c\xfe\x7f\x8d\x16\xfb\xff\x4b\xb0\xe9\x7e\x7e\xe9\x9f\x5f" "\xff\xaf\xff\x67\xbf\xb9\xf5\xff\xb9\xfb\xbf\x1a\xb7\xec\x1e\x7e\xa7\x2e" "\xed\xbb\x04\x00\x00\x00\xe6\x24\x77\xff\xd7\xe2\x96\x4e\xfe\xfc\x1f\x00" "\x00\x00\x7a\x90\xbb\xff\x8e\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff" "\x7a\xdc\xd2\xc9\xfe\xd7\xff\xcf\xe0\xfd\xff\x06\xfb\xff\xe3\x79\xff\x7f" "\x4b\xff\xaf\xff\x9f\xb2\xff\x3f\xa1\xff\x6f\x83\xfe\x7f\x9c\xfe\x7f\x0d" "\xfd\xbf\xfe\x5f\xff\x3f\x51\xff\x9f\xbf\x9b\xf5\xff\xbd\x9b\x5b\xff\x9f" "\xbb\xff\x1b\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x9b\x71\x8b" "\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xad\xb8\xc5\xfe\x07\x00\x00\x80\x66" "\xe4\xee\xbf\x33\x6e\xb9\x68\xff\xaf\x6a\xbb\x5b\xa1\xff\xd7\xff\x2f\xb7" "\xff\xdf\xd0\xfb\xff\xa7\xf5\xff\xa9\xb1\xfe\xdf\xfb\xff\x8d\x68\xbb\xff" "\xdf\x3a\xc4\xdf\x61\x7b\xf4\x7f\x7a\xd8\xfe\xff\xcc\x70\xb4\xfe\x3f\xe9" "\xff\xf5\xff\xfa\xff\x5e\xfb\x7f\xef\xff\x73\xde\xdc\xfa\xff\xdc\xfd\xdf" "\x8e\x5b\xfc\xf9\x3f\x00\x00\x00\x2c\xce\xa9\x03\x7e\x3e\x77\xff\x77\xe2" "\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xbb\x71\x8b\xfd\x0f\x00\x00\x00" "\xcd\xc8\xdd\xff\xbd\xb8\xe5\xae\x13\x9b\xfa\x48\xc7\x4a\xff\xaf\xff\xd7" "\xff\x7b\xff\x5f\xff\xbf\xfa\xeb\xeb\xff\x97\xa9\xed\xfe\xff\xe8\xbc\xff" "\xbf\x86\xfe\x7f\x8a\x7e\xfe\x5a\xfd\x7f\x1b\xfd\xff\x30\xe8\xff\x39\xba" "\xb9\xf5\xff\xb9\xfb\xbf\x1f\xb7\xf8\xf3\x7f\x00\x00\x00\x68\x46\xee\xfe" "\x1f\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x0f\xe3\x16\xfb\x1f\x00" "\x00\x00\x9a\x91\xbb\xff\x47\x71\x4b\x27\xfb\x5f\xff\xaf\xff\x3f\x62\xff" "\xbf\x93\x66\x1e\xaa\xff\x1f\xae\x19\x86\x05\xf6\xff\xdb\x83\xfe\x5f\xff" "\x7f\x9e\xfe\x7f\x19\xf4\xff\xe3\xf4\xff\x6b\xe8\xff\xbd\xff\xaf\xff\xf7" "\xfe\x3f\x93\x9a\x5b\xff\x9f\xbb\xff\xc7\x71\x4b\x27\xfb\x1f\x00\x00\x00" "\x7a\x90\xbb\xff\x27\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xd3\xb8" "\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x59\xdc\xd2\xc9\xfe\xdf\x58\xff" "\x1f\xff\xa8\xf5\xff\x9b\xed\xff\x4f\x78\xff\x7f\x87\xf7\xff\xf5\xff\xab" "\xbe\xbe\xfe\x7f\x99\xf4\xff\xe3\xf4\xff\x6b\xe8\xff\xf5\xff\xfa\x7f\xfd" "\x3f\x93\x9a\x5b\xff\x9f\xbb\xff\xe7\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a" "\x90\xbb\xff\x17\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xcb\xb8\xc5" "\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x55\xdc\xd2\xc9\xfe\xf7\xfe\x7f\x97" "\xfd\xff\xa9\xfc\xb6\x27\x78\xff\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x67\x45" "\xff\x3f\x4e\xff\xbf\x5a\xfd\x8b\xd2\xff\xeb\xff\xf5\xff\xfa\x7f\x26\x35" "\xb7\xfe\x3f\x77\xff\xaf\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff" "\x6f\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xae\xb8\xc5\xfe\x07\x00" "\x00\x80\x66\xe4\xee\xff\x6d\xdc\xd2\xc9\xfe\xd7\xff\x77\xd9\xff\xd7\xfb" "\xff\x73\xee\xff\xef\xf9\xcf\xb7\x0f\xc3\xa0\xff\xd7\xff\xeb\xff\xf5\xff" "\x97\x42\xff\x3f\x6e\x93\xfd\xff\xbf\xff\xdd\xfa\x2f\xeb\xfd\xff\x8d\xf7" "\xff\xf9\x11\xf4\xff\xfa\x7f\xfd\x3f\x93\x98\x5b\xff\x9f\xbb\xff\x77\x71" "\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xf7\x71\x8b\xfd\x0f\x00\x00" "\x00\xcd\xc8\xdd\xff\x87\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x63" "\xdc\xd2\xc9\xfe\x5f\xd3\xff\x9f\xa9\xbf\x50\xff\x3f\x4a\xff\xbf\xfb\xf3" "\x6f\xec\xfd\xff\xfc\x20\xfa\xff\xd1\xaf\xaf\xff\xd7\xff\xb7\x4c\xff\x3f" "\xce\xfb\xff\x6b\xe8\xff\xbd\xff\xaf\xff\xd7\xff\x33\xa9\xb9\xf5\xff\xb9" "\xfb\xff\x14\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xef\x8e\x5b\xec" "\x7f\x00\x00\x00\x68\x46\xee\xfe\x3f\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23" "\x77\xff\x5f\xe2\x96\x4e\xf6\xbf\xf7\xff\x97\xd4\xff\x5f\xab\xff\xf7\xfe" "\xbf\xfe\x5f\xff\xaf\xff\x5f\x43\xff\x3f\x4e\xff\xbf\x86\xfe\x5f\xff\xaf" "\xff\xd7\xff\x33\xa9\xb9\xf5\xff\xb9\xfb\xff\x1a\x00\x00\xff\xff\xae\xa6" "\x42\xbb", 25166); syz_mount_image( /*fs=*/0x20000000, /*dir=*/0x200002c0, /*flags=MS_LAZYTIME|MS_I_VERSION|MS_POSIXACL|MS_STRICTATIME|MS_NOEXEC|MS_NODIRATIME|0x80*/ 0x3810888, /*opts=*/0x20000300, /*chdir=*/1, /*size=*/0x624e, /*img=*/0x2000ef40); memcpy((void*)0x200002c0, ".\000", 2); memcpy((void*)0x20000200, "./file0/../file0\000", 17); syscall(__NR_mount, /*src=*/0x200002c0ul, /*dst=*/0x20000200ul, /*type=*/0ul, /*flags=MS_SHARED|MS_SYNCHRONOUS|MS_RDONLY|MS_DIRSYNC|MS_BIND*/ 0x101091ul, /*data=*/0ul); } 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; for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }