// https://syzkaller.appspot.com/bug?id=5b822ca791e83611f576007fae6559129efa14ef // 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 #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } 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"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } 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")) { } } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 7; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x0 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0x2 (1 bytes) // size: len = 0x62a6 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x62a6) // } // ] // returns fd_dir memcpy((void*)0x200000000080, "jfs\000", 4); memcpy((void*)0x200000000440, "./file0\000", 8); memcpy( (void*)0x200000009900, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xec\x9b\x5f\x4a\xd3" "\xa8\x87\xaa\x44\x08\xb9\x6d\x78\x29\xa5\x79\x2d\x21\x50\xa0\xed\x01" "\x0e\x5c\x38\xa0\x5c\x51\x22\xd7\xad\x22\x52\x40\x49\x40\x69\x15\x11" "\x57\xbe\x70\xe0\x8f\x00\x21\x71\x41\x42\x88\x23\x27\xfe\x80\x1e\xb8" "\x72\xe3\x0f\x20\x52\x82\x04\xea\xa9\x83\xd6\x7e\x1e\x67\x3c\x5d\x7b" "\xed\xa4\xde\x59\xfb\xf9\x7c\x24\x67\xe6\x37\xcf\x8c\xf7\x99\x7c\x77" "\xbc\xbb\x9e\x19\x3f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xc4\x0f\x7f\xf0\xe3\xf3\x55\x44\x5c\xfd\x55\x5a\x70\x32" "\xe2\x73\xd1\x8f\xe8\x45\x2c\x8d\xeb\x95\x88\x58\x5a\x39\x99\xd7\x1f" "\x44\xc4\xf3\xb1\xd9\x1c\xcf\x45\xc4\x70\x21\xa2\xca\x8d\xcf\x44\xbc" "\x16\x11\x1f\x9d\x88\x78\xf0\xf0\xee\xea\x78\xd1\x85\x7d\xf6\xe3\xfb" "\x7f\xf9\xe7\x1f\x7e\xf2\xd4\x8f\xfe\xf1\xe7\xe1\xd9\xff\xfd\xf5\x76" "\xff\xf5\xdd\xd6\xbb\x73\xe7\xb7\xff\xfd\xdb\xbd\xc7\xdf\x5f\x00\x00" "\x00\x28\x51\x5d\xd7\x75\x95\x3e\xe6\x9f\x4a\x9f\xef\x7b\x5d\x77\x0a" "\x00\x98\x89\xfc\xfa\x5f\x27\x79\xb9\x7a\xee\xea\xf5\x39\xeb\x8f\x5a" "\xad\x56\xab\x8f\x60\xdd\x54\x4f\x76\xaf\x59\x44\xc4\x7a\x73\x9b\xf1" "\x7b\x06\xa7\xe3\x01\xe0\x88\x59\x8f\x8f\xbb\xee\x02\x1d\x92\x7f\xd1" "\x06\x11\xf1\x54\xd7\x9d\x00\xe6\x5a\xd5\x75\x07\x38\x14\x0f\x1e\xde" "\x5d\xad\x52\xbe\x55\xf3\xf5\x60\x65\xab\x3d\x5f\x0b\xb2\x23\xff\xf5" "\x6a\xfb\xfe\x8e\xdd\xa6\xd3\xb4\xaf\x31\x99\xd5\xf3\x6b\x23\xfa\xf1" "\xec\x2e\xfd\x59\x9a\x51\x1f\xe6\x49\xce\xbf\xd7\xce\xff\xea\x56\xfb" "\x28\xad\x77\xd8\xf9\xcf\xca\x6e\xf9\x8f\xb6\x6e\x7d\x2a\x4e\xce\xbf" "\xdf\xce\xbf\xe5\xf8\xe4\xdf\x9b\x98\x7f\xa9\x72\xfe\x83\x03\xe5\xdf" "\x97\x3f\x00\x00\x00\x00\x00\xcc\xb1\xfc\xfb\xff\x93\x1d\x9f\xff\x5d" "\x78\xf2\x5d\xd9\x97\xbd\xce\xff\xae\xcc\xa8\x0f\x00\x00\x00\x00\x00" "\x00\x00\xf0\x59\x7b\xd2\xf1\xff\xb6\x55\xc6\xff\x03\x00\x00\x80\x79" "\x35\xfe\xac\x3e\xf6\xbb\x13\x8f\x96\x35\xaf\xf5\x1f\xc5\xce\xe5\x57" "\xaa\x88\xa7\x5b\xeb\x03\x85\x49\x37\xcb\x2c\x77\xdd\x0f\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x28\xc9\x60\xeb\x1a\xde\x2b\x55\xc4\x30" "\x22\x9e\x5e\x5e\xae\xeb\x7a\xfc\xd5\xd4\xae\x0f\xea\x49\xb7\x3f\xea" "\x4a\xdf\x7f\x28\x59\xd7\x3f\xe4\x01\x00\x60\xcb\x47\x27\x5a\xf7\xf2" "\x57\x11\x8b\x11\x71\x25\xfd\xad\xbf\xe1\xf2\xf2\x72\x5d\x2f\x2e\x2d" "\xd7\xcb\xf5\xd2\x42\x7e\x3f\x3b\x5a\x58\xac\x97\x1a\x9f\x6b\xf3\x74" "\xbc\x6c\x61\xb4\x8f\x37\xc4\x83\x51\x3d\xfe\x66\x8b\x8d\xed\x9a\xa6" "\x7d\x5e\x9e\xd6\xde\xfe\x7e\xe3\xc7\x1a\xd5\xfd\x7d\x74\x6c\x36\x3a" "\x0c\x1c\x00\x22\x62\xeb\xd5\xe8\x81\x57\xa4\x63\xa6\xae\x9f\x89\xae" "\xdf\xe5\x70\x34\x38\xfe\x8f\x1f\xc7\x3f\xfb\xd1\xf5\xf3\x14\x00\x00" "\x00\x38\x7c\x75\x5d\xd7\x55\xfa\x73\xde\xa7\xd2\x39\xff\x5e\xd7\x9d" "\x02\x00\x66\x22\xbf\xfe\xb7\xcf\x0b\xa8\xd5\x6a\xb5\x5a\xad\x3e\x7e" "\x75\x53\x3d\xd9\xbd\x66\x11\x11\xeb\xcd\x6d\xc6\xef\x19\x0c\xc7\x0f" "\x00\x47\xcc\x7a\x7c\xdc\x75\x17\xe8\x90\xfc\x8b\x36\x88\x88\xe7\xbb" "\xee\x04\x30\xd7\xaa\xae\x3b\xc0\xa1\x78\xf0\xf0\xee\x6a\x95\xf2\xad" "\x9a\xaf\x07\x69\x7c\xf7\x7c\x2d\xc8\x8e\xfc\xd7\xab\xcd\xed\xf2\xf6" "\x93\xa6\xd3\xb4\xaf\x31\x99\xd5\xf3\x6b\x23\xfa\xf1\xec\x2e\xfd\x79" "\x6e\x46\x7d\x98\x27\x39\xff\x5e\x3b\xff\xab\x5b\xed\xa3\xb4\xde\x61" "\xe7\x3f\x2b\xbb\xe5\x3f\xde\xcf\x93\x1d\xf4\xa7\x6b\x39\xff\x7e\x3b" "\xff\x96\xe3\x93\x7f\x6f\x62\xfe\xa5\xca\xf9\x0f\x0e\x94\x7f\x5f\xfe" "\x00\x00\x00\x00\x00\x30\xc7\xf2\xef\xff\x4f\xce\xd5\xf9\xdf\xd1\xe3" "\xee\xce\x54\x7b\x9d\xff\x5d\x39\xb4\x47\x05\x00\x00\x00\x00\x00\x00" "\x80\xc3\xf5\xe0\xe1\xdd\xd5\x7c\xdf\x6b\x3e\xff\xff\x85\x09\xeb\xb9" "\xff\xf3\x78\xca\xf9\x57\xf2\x2f\x52\xce\xbf\xd7\xca\xff\xab\xad\xf5" "\xfa\x8d\xf9\xfb\x6f\x3d\xca\xff\x3f\x0f\xef\xae\xfe\xf1\xf6\xbf\x3f" "\x9f\xa7\xfb\xcd\x7f\x21\xcf\x54\xe9\x99\x55\xa5\x67\x44\x95\x1e\xa9" "\x1a\xa4\xe9\x93\xec\xdd\xa7\x6d\x0c\xfb\xa3\xf1\x23\x0d\xab\x5e\x7f" "\x90\xae\xf9\xa9\x87\xef\xc4\xf5\xb8\x11\x6b\x71\x6e\xc7\xba\xbd\xf4" "\xff\xf1\xa8\xfd\xfc\x8e\xf6\x71\x4f\x87\x9b\xed\x75\x7f\xab\xfd\xc2" "\x8e\xf6\xc1\x76\x7b\xde\xfe\xe2\x8e\xf6\x61\xba\xd2\xa9\x5e\xca\xed" "\x67\x62\x35\x7e\x1e\x37\xe2\xed\xcd\xf6\x71\xdb\xc2\x94\xfd\x5f\x9c" "\xd2\x5e\x4f\x69\xcf\xf9\xf7\x1d\xff\x45\xca\xf9\x0f\x1a\x5f\xe3\xfc" "\x97\x53\x7b\xd5\x9a\x8e\xdd\xff\xb0\xf7\xa9\xe3\xbe\x39\x9d\xf4\x38" "\x6f\x5e\xff\xe2\x6f\xce\x1d\xfe\xee\x4c\xb5\x11\xfd\xed\x7d\x6b\x1a" "\xef\xdf\x8b\x1d\xf4\x67\xf3\xff\xe4\xa9\x51\xfc\xf2\xd6\xda\xcd\x33" "\x77\xae\xdd\xbe\x7d\xf3\x7c\xa4\xc9\x8e\xa5\x17\x22\x4d\x3e\x63\x39" "\xff\x61\xfa\xda\xfe\xf9\xff\xd2\x56\x7b\xfe\xb9\xdf\x3c\x5e\xef\x7f" "\x38\x3a\x70\xfe\xf3\x62\x23\x06\xbb\xe6\xff\x52\x63\x7e\xbc\xbf\x2f" "\xcf\xb8\x6f\x5d\xc8\xf9\x8f\xd2\x57\xce\xff\xed\xd4\x3e\xf9\xf8\x3f" "\x40\xfe\xbd\x3f\xcd\x6c\x5f\xf6\x63\xaf\xe3\xff\x95\x0e\xfa\x03\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7b\xa9\xeb\x7a\xf3\x16" "\xd1\x37\x23\xe2\x52\xba\xff\xa7\xab\x7b\x33\x01\x80\xd9\xca\xaf\xff" "\x75\x92\x97\xcf\xaa\xee\xcf\xf8\xf1\xd4\xea\x23\x5e\x57\x73\xd6\x9f" "\x99\xd6\x9f\xd4\xf3\xd5\x1f\xb5\xfa\x28\xd6\x4d\xf5\x64\x6f\x34\x8b" "\x88\xf8\x7b\x73\x9b\xf1\x7b\x86\x5f\x4f\xfa\x66\x00\xc0\x3c\xfb\x24" "\x22\xfe\xd5\x75\x27\xe8\x8c\xfc\x0b\x96\xff\xde\xdf\x78\x7a\xba\xeb" "\xce\x00\x33\x75\xeb\xfd\x0f\x7e\x7a\xed\xc6\x8d\xb5\x9b\xb7\xba\xee" "\x09\x00\x00\x00\x00\x00\x00\x00\xf0\xb8\xf2\xf8\x9f\x2b\x8d\xf1\x9f" "\x4f\xd7\x75\x7d\xaf\xb5\xde\x8e\xf1\x5f\xdf\x8a\x95\x27\x1d\xff\x75" "\x90\x67\xb6\x07\x18\xdd\x65\xa0\xea\xfe\xc1\xf7\x69\x2f\x1b\xbd\x51" "\xbf\xd7\x18\x6e\xfc\x85\xd8\x6d\xfc\xef\xe1\xf6\xdc\x5e\xe3\x7f\x0f" "\xa6\x3c\xde\x70\x4a\xfb\x68\x4a\xfb\xc2\x94\xf6\xc5\x29\xed\x13\x6f" "\xf4\x68\xc8\xf9\xbf\xd0\x18\xef\xfc\x74\x44\x9c\x6a\x0d\xbf\xfe\xd8" "\xe3\xbf\xce\x99\xbd\xc6\x7f\x6d\x8f\x79\x5f\x82\x9c\xff\x8b\x8d\xe7" "\xf3\x38\xff\xaf\xb4\xd6\x6b\xe6\x5f\xff\xfe\x28\xe7\xdf\xdb\x91\xff" "\xd9\xdb\xef\xfd\xe2\xec\xad\xf7\x3f\x78\xf5\xfa\x7b\xd7\xde\x5d\x7b" "\x77\xed\x67\x17\xcf\x9f\x3f\x77\xf1\xd2\xa5\xcb\x97\x2f\x9f\x7d\xe7" "\xfa\x8d\xb5\x73\x5b\xff\x76\xd8\xe3\xc3\x95\xf3\xcf\x63\x5f\xbb\x0e" "\xb4\x2c\x39\xff\x9c\xb9\xfc\xcb\x92\xf3\xff\x52\xaa\xe5\x5f\x96\x9c" "\xff\x97\x53\x2d\xff\xb2\xe4\xfc\xf3\xfb\x3d\xf9\x97\x25\xe7\x9f\x3f" "\xfb\xc8\xbf\x2c\x39\xff\x97\x53\x2d\xff\xb2\xe4\xfc\xbf\x96\x6a\xf9" "\x97\x25\xe7\xff\x4a\xaa\xe5\x5f\x96\x9c\xff\xd7\x53\x2d\xff\xb2\xe4" "\xfc\x5f\x4d\xb5\xfc\xcb\x92\xf3\x3f\x93\x6a\xf9\x97\x25\xe7\x7f\x36" "\xd5\xfb\xcc\x7f\xe9\xb0\xfb\xc5\x6c\xe4\xfc\xf3\x19\x2e\xc7\x7f\x59" "\x72\xfe\xf9\xca\x06\xf9\x97\x25\xe7\x7f\x21\xd5\xf2\x2f\x4b\xce\xff" "\x62\xaa\xe5\x5f\x96\x9c\xff\x6b\xa9\x96\x7f\x59\x72\xfe\xdf\x48\xb5" "\xfc\xcb\x92\xf3\xbf\x94\x6a\xf9\x97\x25\xe7\xff\xcd\x54\xcb\xbf\x2c" "\x39\xff\xcb\xa9\x96\x7f\x59\x72\xfe\xdf\x4a\xb5\xfc\xcb\x92\xf3\xff" "\x76\xaa\xe5\x5f\x96\x9c\xff\xeb\xa9\x96\x7f\x59\x72\xfe\xdf\x49\xb5" "\xfc\xcb\x92\xf3\xff\x6e\xaa\xe5\x5f\x96\x9c\xff\xf7\x52\x2d\xff\xb2" "\xe4\xfc\xdf\x48\xb5\xfc\xcb\xf2\xe8\xef\xff\x9b\x31\x63\xc6\x4c\x9e" "\xe9\xfa\x27\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd0\x36\x8b" "\xcb\x89\xbb\xde\x47\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xe0\xff\xec\xc0\x81\x00\x00\x00\x00\x00\x90\xff\x6b\x23\x54\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x61\x07\x0e\x04" "\x00\x00\x00\x00\x80\xfc\x5f\x1b\xa1\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x0a\x7b\xf7\x16\x23\xd7\x5d\xdf\x01\xfc" "\xcc\xde\xbc\x71\x20\x31\x10\x52\x27\x35\x61\xe3\x18\x63\x9c\x4d\x76" "\x7d\x89\x2f\xb4\x2e\x26\x5c\x1b\x6e\x25\x21\x14\x7a\xc1\x76\xbd\x6b" "\xb3\xe0\x1b\x5e\xbb\x04\x1a\xd5\x8e\x02\x25\x12\x46\x45\x15\x6d\xc3" "\x43\x5b\x40\xa8\xcd\x4b\x85\x55\xf1\x40\x2b\x40\x79\x40\xad\x2a\x55" "\x82\xf6\x81\xbe\x20\x2a\x54\x1e\xa2\x2a\xa0\x80\x54\xa9\xad\x80\xad" "\x66\xce\xff\xff\xdf\x99\xd9\xd9\x99\x5d\xef\x78\x7d\xe6\x9c\xcf\x47" "\x82\x9f\x77\xe6\xcc\x9c\xff\x39\xf3\x3f\x67\xe6\xb7\x9b\xef\x1c\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x9a\xdd\xfd\x86\xd9\x4f\xd5\xb2\x2c\xab\xd5\x6a\xf9\x0d\x9b\xb2\xec" "\x45\xf5\x7a\xd3\xc4\xa6\xc6\x2d\xaf\xbd\xb1\xe3\x03\x00\x00\x00\xd6" "\xee\xe7\x8d\xff\x7f\xe1\xd6\x74\xc3\xe1\x15\x3c\xa8\x69\x99\x7f\xba" "\xeb\xdb\x5f\x5d\x58\x58\x58\xc8\xde\x37\xfc\xa7\xa3\x9f\x5b\x58\x48" "\x77\x4c\x64\xd9\xe8\x86\x2c\x6b\xdc\x17\x5d\xfd\xc1\xfb\x6b\xcd\xcb" "\x04\x4f\x66\xe3\xb5\xa1\xa6\x9f\x87\x7a\xac\x7e\xb8\xc7\xfd\x23\x3d" "\xee\x1f\xed\x71\xff\x58\x8f\xfb\x37\xf4\xb8\x7f\xbc\xc7\xfd\x4b\x76" "\xc0\x12\x37\x65\xb5\xf4\x64\xdb\x1a\xff\xdc\x94\xef\xd2\xec\xb6\x6c" "\xb4\x71\xdf\xb6\x0e\x8f\x7a\xb2\xb6\x61\xa8\xbe\xef\xd2\x63\xb3\x5a" "\xe3\x31\x0b\xa3\x27\xb2\xb9\xec\x54\x36\x9b\x4d\xb7\x2c\x9f\x2f\x5b" "\x6b\x2c\xff\xf5\xbb\xeb\xeb\x7a\x6b\x16\xd7\x35\xd4\xb4\xae\x2d\xf5" "\x19\xf2\x93\xc7\x8f\xc7\x31\xd4\xc2\x3e\xde\xd6\xb2\xae\xc5\xe7\x8c" "\x7e\xf4\xfa\x6c\xe2\xa7\x3f\x79\xfc\xf8\x5f\x5f\x78\xfe\x8e\x4e\xb5" "\xe7\x6e\x68\x79\xbe\x7c\x9c\x3b\xb6\xd6\xc7\xf9\x89\x70\x4b\x3e\xd6" "\x5a\xb6\x21\xed\x93\x38\xce\xa1\xa6\x71\x6e\xe9\xf0\x9a\x0c\xb7\x8c" "\xb3\xd6\x78\x5c\xfd\xdf\xed\xe3\x7c\x61\x85\xe3\x1c\x5e\x1c\xe6\xba" "\x6a\x7f\xcd\xc7\xb3\xa1\xc6\xbf\xbf\xd3\xd8\x4f\x23\xb5\xac\xc3\x7e" "\xda\x12\x6e\xfb\x9f\x7b\xb2\x2c\xbb\xbc\x38\xec\xf6\x65\x96\xac\x2b" "\x1b\xca\x36\xb6\xdc\x32\xb4\xf8\xfa\x8c\xe7\x33\xb2\xfe\x1c\xf5\xa9" "\xf4\xd2\x6c\xa4\xfb\x3c\x5d\xa8\xb5\xcc\xd3\xbb\xd3\xbf\x97\x9f\xa7" "\xf5\x3a\xb3\xad\x75\x9e\xb6\x1f\x13\xf1\xf5\xbf\x3b\x3c\x6e\x64\x99" "\x31\x34\xbf\x4c\x3f\x7a\x62\xac\xe9\x75\xff\xd9\xc2\xb5\xcc\xd3\xa8" "\xbe\xd5\xcb\x1d\x2b\xed\x73\xb0\xdf\xc7\x4a\x51\xe6\x60\x9c\x17\xdf" "\x69\x6c\xf4\x53\x1d\xe7\xe0\xb6\xb0\xfd\x8f\x6f\x5f\x7e\x0e\x76\x9c" "\x3b\x1d\xe6\x60\xda\xee\xa6\x39\xb8\xb5\xd7\x1c\x1c\x1a\x1b\x6e\x8c" "\x39\xbd\x08\xb5\xc6\x63\x16\xcf\x95\xbb\x5a\x96\x1f\x6e\xac\xa9\xd6" "\xa8\xcf\x6d\xef\x3e\x07\xa7\x2e\x9c\x3e\x37\x35\xff\xb1\x8f\xdf\x37" "\x77\xfa\xd8\xc9\xd9\x93\xb3\x67\xf6\xec\xda\x35\xbd\x67\xdf\xbe\x03" "\x07\x0e\x4c\x9d\x98\x3b\x35\x3b\x9d\xff\xff\x35\xee\xed\xe2\xdb\x98" "\x0d\xa5\x63\x60\x6b\xd8\x77\xf1\x18\x78\x75\xdb\xb2\xcd\x53\x75\xe1" "\x8b\x63\x4b\xce\xbf\xd7\x7a\x1c\x8e\x77\x39\x0e\x37\xb5\x2d\xdb\xef" "\xe3\x70\xa4\x7d\xe3\x6a\xeb\x73\x40\x2e\x9d\xd3\xf9\xb1\xf1\x9e\xfa" "\x4e\x1f\xbf\x32\x94\x2d\x73\x8c\x35\x5e\x9f\x9d\x6b\x3f\x0e\xd3\x76" "\x37\x1d\x87\x23\x4d\xc7\x61\xc7\xf7\x94\x0e\xc7\xe1\xc8\x0a\x8e\xc3" "\xfa\x32\xe7\x76\xae\xec\x33\xcb\x48\xd3\xff\x3a\x8d\x61\xf9\xf7\x82" "\xb5\xcd\xc1\x4d\x4d\x73\xb0\xfd\xf3\x48\xfb\x1c\xec\xf7\xe7\x91\xa2" "\xcc\xc1\xf1\x30\x2f\xbe\xb7\x73\xf9\xf7\x82\x2d\x61\xbc\x4f\x4d\xae" "\xf6\xf3\xc8\xf0\x92\x39\x98\x36\x37\x9c\x7b\xea\xb7\xa4\xcf\xfb\xe3" "\x07\x1a\xa5\xd3\xbc\xbc\xb3\x7e\xc7\xcd\x63\xd9\xc5\xf9\xd9\xf3\xf7" "\x3f\x76\xec\xc2\x85\xf3\xbb\xb2\x50\xd6\xc5\xcb\x9a\xe6\x4a\xfb\x7c" "\xdd\xd8\xb4\x4d\xd9\x92\xf9\x3a\xb4\xea\xf9\x7a\x78\xee\xae\xa7\xee" "\xec\x70\xfb\xa6\xb0\xaf\xc6\xef\xab\xff\xdf\xf8\xb2\xaf\x55\x7d\x99" "\xbd\xf7\x77\x7f\xad\x1a\xef\x6e\x9d\xf7\x67\xcb\xad\xbb\xb3\x50\xfa" "\x2c\xec\xcf\x85\x0d\xeb\xb4\x3f\x3b\xbd\x9b\xd7\xf7\xe7\x58\x96\x7d" "\xfe\x5b\x4f\x3c\xfc\x8d\xc7\x3f\xff\x86\x65\xf7\x67\xbd\xdf\xfc\xc4" "\xd4\xda\x3f\x8b\xa7\xbe\xb4\xe9\xfc\x3b\xba\xcc\xf9\x37\xf6\xfd\xbf" "\xc8\xd7\x97\x9e\xea\xc9\xe1\xd1\x91\xfc\xf8\x1d\x4e\x7b\x67\xb4\xe5" "\x7c\xdc\xfa\x52\x8d\x34\xce\x5d\xb5\xc6\xba\x5f\x98\xea\x71\x3e\x1e" "\xc9\x8e\xc7\x31\x8d\xde\x80\xf3\xf1\x6d\x5d\xce\xc7\x9b\xdb\x96\xed" "\xf7\xf9\x78\xb4\x7d\xe3\xe2\xf9\xb8\xd6\xeb\xb7\x1d\x6b\xd3\xfe\x7a" "\x8e\x87\x79\x72\x6a\xba\xfb\xf9\xb8\xbe\xcc\xe6\xdd\xab\x9d\x93\x23" "\x5d\xcf\xc7\xf7\x84\x5a\x0b\xfb\xff\x35\xa1\x53\x48\x7d\x51\xd3\xdc" "\x59\x6e\xde\xa6\x75\x8d\x8c\x8c\x86\xed\x1a\x89\x6b\x68\x9d\xa7\x7b" "\x5a\x96\x1f\x0d\xbd\x59\x7d\x5d\xcf\xec\x5e\xd9\xe7\x86\xf6\x79\xba" "\xe3\x9e\xfc\xb9\x86\xd3\xd6\x2d\x5a\xaf\x79\x3a\xd1\xb6\x6c\xbf\xe7" "\x69\xfa\xdd\xd7\x72\xf3\xb4\xd6\xeb\xb7\x6f\xd7\xa6\xfd\xf5\x1c\x0f" "\xf3\xe2\xb6\x3d\xdd\xe7\x69\x7d\x99\x67\xf7\xae\xfd\xdc\x79\x53\xfc" "\x67\xd3\xb9\x73\xac\xd7\x1c\x1c\x1d\x1e\xab\x8f\x79\x34\x4d\xc2\xc6" "\xf9\x3e\x5b\xb8\x29\xce\xc1\xfb\xb3\xe3\xd9\xd9\xec\x54\x36\xd3\xb8" "\x77\xac\x31\x9f\x6a\x8d\x75\x4d\x3e\xb0\xb2\x39\x38\x16\xfe\xb7\xde" "\xe7\xca\xcd\x5d\xe6\xe0\x8e\xb6\x65\xfb\x3d\x07\xd3\xfb\xd8\x72\x73" "\xaf\x36\xb2\x74\xe3\xfb\xa0\xfd\xf5\x1c\x0f\xf3\xe2\xe9\x07\xba\xcf" "\xc1\xfa\x32\x6f\xdc\xdf\xdf\xcf\xae\x3b\xc2\x2d\x69\x99\xa6\xcf\xae" "\xed\xbf\x5f\x5b\xee\x77\x5e\x77\xb6\xed\xa6\xde\x73\x25\xb6\x25\xab" "\xff\x9d\x57\x7d\x9c\xdf\xda\xdf\xfd\x77\xb3\xf5\x65\x4e\x1d\x58\x6d" "\x9f\xd9\x7d\x3f\xdd\x1b\x6e\xb9\xb9\xc3\x7e\x6a\x3f\x7e\x97\x3b\xa6" "\x66\xb2\xd5\xee\xa7\x6b\x3f\xa6\xea\xe3\x7c\xfe\xc0\xf2\xfb\xa9\x3e" "\x9e\xfa\x32\x9f\x3b\xb8\xc2\xf9\x74\x38\xcb\xb2\x4b\x1f\x79\xb0\xf1" "\xfb\xde\xf0\xf7\x95\xbf\xbb\xf8\xdd\xaf\xb6\xfc\xdd\xa5\xd3\xdf\x74" "\x2e\x7d\xe4\xc1\x1f\xbf\xf8\xc4\x3f\xae\x66\xfc\x00\x0c\xbe\x5f\xe4" "\x65\x63\xfe\x5e\xd7\xf4\x97\xa9\x95\xfc\xfd\x1f\x00\x00\x00\x18\x08" "\xb1\xef\x1f\x0a\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\x3f\xfe\x57" "\xe1\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\x23\xa1\x26\x15\xe9\xff" "\x37\xbf\xf1\xf9\xb9\x5f\x5c\xca\x52\x32\x7f\x21\x88\xf7\xa7\xdd\xf0" "\x50\xbe\x5c\xcc\xb8\x4e\x87\x9f\x27\x16\x16\xd5\x6f\x7f\xf0\xcb\xb3" "\xff\xfd\x0f\x97\x56\xb6\xee\xa1\x2c\xcb\x7e\xf6\xd0\x1f\x74\x5c\x7e" "\xf3\x43\x71\x5c\xb9\x89\x30\xce\xab\x6f\x6a\xbd\x7d\x89\xaf\xde\xb7" "\xa2\x75\x1f\x7d\xf4\x52\x5a\x6f\x73\x7e\xfd\x0b\xe1\xf9\xe3\xf6\xac" "\x74\x1a\x74\x8a\xe0\x4e\x67\x59\xf6\xf5\x5b\x3f\xd3\x58\xcf\xc4\xfb" "\xaf\x34\xea\xb3\x0f\x1d\x6d\xd4\x87\x2f\x3f\xf5\x64\x7d\x99\x17\x0e" "\xe6\x3f\xc7\xc7\x3f\xf7\xb2\x7c\xf9\xbf\x08\xe1\xdf\xc3\x27\x8e\xb5" "\x3c\xfe\xb9\xb0\x1f\x7e\x18\xea\xf4\xdb\x3a\xef\x8f\xf8\xb8\xaf\x5c" "\x79\xcd\x96\xfd\xef\x5d\x5c\x5f\x7c\x5c\x6d\xeb\x2d\x8d\xcd\x7e\xfa" "\x03\xf9\xf3\xc6\xef\xc9\xf9\xec\x93\xf9\xf2\x71\x3f\x2f\x37\xfe\x6f" "\x7c\xfa\x99\xaf\xd4\x97\x7f\xec\x55\x9d\xc7\x7f\x69\xa8\xf3\xf8\x9f" "\x09\xcf\xfb\xe5\x50\xff\xf7\x15\xf9\xf2\xcd\xaf\x41\xfd\xe7\xf8\xb8" "\x4f\x86\xf1\xc7\xf5\xc5\xc7\xdd\xff\xa5\x6f\x76\x1c\xff\xd5\x4f\xe5" "\xcb\x9f\x7b\x73\xbe\xdc\xd1\x50\xe3\xfa\x77\x84\x9f\xb7\xbd\xf9\xf9" "\xb9\xe6\xfd\xf5\x58\xed\x58\xcb\x76\x65\x6f\xc9\x97\x8b\xeb\x9f\xfe" "\xee\x1f\x37\xee\x8f\xcf\x17\x9f\xbf\x7d\xfc\xe3\x47\xae\xb4\xec\x8f" "\xf6\xf9\xf1\xec\xbf\xe5\xcf\x33\xd5\xb6\x7c\xbc\x3d\xae\x27\xfa\xfb" "\xb6\xf5\xd7\x9f\xa7\x79\x7e\xc6\xf5\x3f\xf3\x47\x47\x5b\xf6\x73\xaf" "\xf5\x5f\x7d\xf8\xb9\x57\xd4\x9f\xb7\x7d\xfd\xf7\xb6\x2d\x77\xee\x23" "\x3b\x1b\xeb\x5f\x7c\xbe\xd6\x6f\x6c\xfa\xcb\x4f\x7e\xa6\xe3\xfa\xe2" "\x78\x0e\xff\xed\xb9\x96\xed\x39\xfc\xee\x70\x1c\x87\xf5\x3f\xfd\x81" "\x30\x1f\xc3\xfd\xff\x77\x35\x7f\xbe\xf6\x6f\x57\x38\xfa\xee\xd6\xf3" "\x4f\x5c\xfe\x0b\x9b\x2e\x35\x6d\xcf\xe2\x37\x92\xbe\xf5\xa7\xf9\xfa" "\xaf\xbe\xee\x64\xa3\x6e\x18\xbf\x69\xe3\xcd\x2f\x7a\xf1\x2d\x97\x5f" "\x59\xdf\x77\x59\xf6\x9d\x0d\xf9\xf3\xf5\x5a\xff\xc9\xbf\x3a\xdb\x32" "\xfe\x2f\xde\x9e\xef\x8f\x78\x7f\x5c\x63\xdc\x9e\x5e\xe2\xfa\xcf\x7f" "\x74\xf2\xcc\xd9\xf9\x8b\x73\x33\x69\xaf\x3e\x7e\x6b\xe3\xbb\x73\xde" "\x9e\x8f\x27\x8e\xf7\xd6\x70\x6e\x6d\xff\xf9\xc8\xd9\x0b\x1f\x9c\x3d" "\x3f\x31\x3d\x31\x9d\x65\x13\xe5\xfd\x0a\xbd\x6b\xf6\xa5\x50\x7f\x9c" "\x97\xcb\xdd\x97\x5e\x58\x72\x06\xdd\xf9\x68\x78\x3d\xef\xfc\xf3\xaf" "\x6f\xdc\xfe\xaf\x9f\x8e\xb7\xff\xfb\x7b\xf2\xdb\xaf\xbc\x2d\x7f\xdf" "\x7a\x75\x58\xee\xb3\xe1\xf6\x4d\xe1\xf5\x5b\xdd\xfa\x97\x7a\xfa\xee" "\xdb\x1b\xc7\x77\xed\xd9\x30\xc2\x85\xa5\xdf\x17\xbc\x16\x5b\xb6\xfd" "\xd7\x81\x15\x2d\x18\xb6\xbf\xfd\x73\x41\x9c\xef\xe7\x5e\xfe\xc1\xc6" "\x7e\xa8\xdf\xd7\x78\xdf\x88\xc7\xf5\x1a\xc7\xff\xfd\x99\xfc\x79\xbe" "\x16\xf6\xeb\x42\xf8\x66\xe6\xad\xb7\x2f\xae\xaf\x79\xf9\xf8\xdd\x08" "\x57\x1e\xc9\x8f\xf7\x35\xef\xbf\x70\x9a\x8b\xaf\xeb\xdf\x84\xd7\xfb" "\x1d\x3f\xcc\x9f\x3f\x8e\x2b\x6e\xef\xf7\xc3\xe7\x98\x6f\x6e\x6e\x3d" "\xdf\xc5\xf9\xf1\xb5\x4b\x43\xed\xcf\xdf\xf8\x16\x8f\xcb\xe1\x7c\x92" "\x5d\xce\xef\x8f\x4b\xc5\xfd\x7d\xe5\x85\xdb\x3b\x0e\x2f\x7e\x0f\x49" "\x76\xf9\x8e\xc6\xcf\x7f\x92\x9e\xe7\x8e\x55\x6d\xe6\x72\xe6\x3f\x36" "\x3f\x75\x6a\xee\xcc\xc5\xc7\xa6\x2e\xcc\xce\x5f\x98\x9a\xff\xd8\xc7" "\x8f\x9c\x3e\x7b\xf1\xcc\x85\x23\x8d\xef\xf2\x3c\xf2\xa1\x5e\x8f\x5f" "\x3c\x3f\x6d\x6c\x9c\x9f\x66\x66\xf7\xed\xcd\x1a\x67\xab\xb3\x79\xb9" "\xce\x6e\xf4\xf8\xcf\x3d\x7a\x7c\x66\xff\xf4\xf6\x99\xd9\x13\xc7\x2e" "\x9e\xb8\xf0\xe8\xb9\xd9\xf3\x27\x8f\xcf\xcf\x1f\x9f\x9d\x99\xdf\x7e" "\xec\xc4\x89\xd9\x8f\xf6\x7a\xfc\xdc\xcc\xa1\x5d\xbb\x0f\xee\xd9\xbf" "\x7b\xf2\xe4\xdc\xcc\xa1\x03\x07\x0f\xee\x39\x38\x39\x77\xe6\x6c\x7d" "\x18\xf9\xa0\x7a\xd8\x37\xfd\xe1\xc9\x33\xe7\x8f\x34\x1e\x32\x7f\x68" "\xef\xc1\x5d\x0f\x3c\xb0\x77\x7a\xf2\xf4\xd9\x99\xd9\x43\xfb\xa7\xa7" "\x27\x2f\xf6\x7a\x7c\xe3\xbd\x69\xb2\xfe\xe8\xdf\x9f\x3c\x3f\x7b\xea" "\xd8\x85\xb9\xd3\xb3\x93\xf3\x73\x1f\x9f\x3d\xb4\xeb\xe0\xbe\x7d\xbb" "\x7b\x7e\x1b\xe0\xe9\x73\x27\xe6\x27\xa6\xce\x5f\x3c\x33\x75\x71\x7e" "\xf6\xfc\x54\xbe\x2d\x13\x17\x1a\x37\xd7\xdf\xfb\x7a\x3d\x9e\x72\x9a" "\xff\x8f\xfc\xf3\x6c\xbb\x5a\xfe\x45\x7c\xd9\xbb\xee\xdd\x97\xbe\x9f" "\xb5\xee\xcb\x4f\x2c\xfb\x54\xf9\x22\x6d\x5f\x20\xfa\x7c\xf8\x2e\x9a" "\x7f\x7e\xc9\xb9\x03\x2b\xf9\x39\xf6\xfd\xa3\xa1\x26\x15\xe9\xff\x01" "\x00\x00\xa0\x0a\x62\xdf\x3f\x16\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88" "\x7d\xff\x86\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb\xc7\x43\x4d" "\x2a\xd2\xff\x97\x2e\xff\xbf\xf9\xd2\x8a\xd6\x2f\xff\x2f\xff\xdf\xbc" "\xbf\xe4\xff\xcb\x90\xff\x5f\x5c\xbe\x67\xfe\xff\x91\xa2\xe5\xff\xf3" "\xf3\x85\xfc\x7f\x7f\xac\x35\x7f\x2f\xff\x1f\xc8\xff\xcb\xff\xcb\xff" "\x0f\x4c\xfe\x7f\x21\xbc\x21\xc9\xff\x53\x44\x45\xcb\xff\xc7\xbe\xff" "\xa6\x2c\xab\x64\xff\x0f\x00\x00\x00\x55\x10\xfb\xfe\x8d\xa1\x26\xfa" "\x7f\x00\x00\x00\x28\x8d\xd8\xf7\xdf\x1c\x6a\xa2\xff\x07\x00\x00\x80" "\xd2\x88\x7d\xff\x8b\x42\x4d\x2a\xd2\xff\xcb\xff\xcb\xff\xcb\xff\xcb" "\xff\xcb\xff\x77\x5e\xbf\xfc\xff\x60\x92\xff\xef\x4e\xfe\xbf\x07\xf9" "\xff\xa9\xac\x5a\xf9\xff\xcb\xfd\x1c\xbf\xeb\xff\xcb\xff\xb3\x54\xd1" "\xf2\xff\xb1\xef\x7f\x71\xa8\x49\x45\xfa\x7f\x00\x00\x00\xa8\x82\xd8" "\xf7\xdf\x12\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\xad\xa1\x26" "\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\x6f\x0a\x35\xa9\x48\xff\x2f\xff" "\x2f\xff\x2f\xff\x2f\xff\x2f\xff\xdf\x79\xfd\xf2\xff\x83\x49\xfe\xbf" "\x3b\xf9\xff\x1e\xe4\xff\x5d\xff\x5f\xfe\x5f\xfe\x9f\xbe\x2a\x5a\xfe" "\x3f\xf6\xfd\x2f\x09\x35\xa9\x48\xff\x0f\x00\x00\x00\x55\x10\xfb\xfe" "\x97\x86\x9a\xe8\xff\x01\x00\x00\xa0\x78\x46\xae\xed\x61\xb1\xef\x7f" "\x59\xa8\xc9\x92\xfe\xff\x1a\x57\x00\x00\x00\x00\xdc\x70\xb1\xef\xbf" "\x2d\x6b\x0b\x82\x57\xe4\xef\xff\xf2\xff\xf2\xff\xc5\xcf\xff\x6f\x48" "\xf7\xc9\xff\xcb\xff\x67\x85\xcc\xff\x0f\x67\xf2\xff\xc5\x21\xff\xdf" "\x9d\xfc\x7f\x0f\xf2\xff\xf2\xff\xf2\xff\xf2\xff\xf4\x55\xd1\xf2\xff" "\x8d\xbe\x3f\x1b\xcf\x5e\x1e\x6a\x52\x91\xfe\x1f\x00\x00\x00\xaa\x20" "\xf6\xfd\xb7\x87\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf\xff\x4b\xa1" "\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\x6f\x0e\x35\xa9\x48\xff\x2f" "\xff\x2f\xff\x7f\xa3\xf3\xff\xa3\x6d\x63\x77\xfd\xff\xc5\xc7\xc9\xff" "\xe7\x8a\x9f\xff\x77\xfd\xff\x22\x91\xff\xef\x4e\xfe\xbf\x07\xf9\x7f" "\xf9\x7f\xf9\x7f\xf9\x7f\xfa\xaa\x68\xf9\xff\xd8\xf7\xdf\x11\x6a\x52" "\x91\xfe\x1f\x00\x00\x00\xaa\x20\xf6\xfd\x77\x86\x9a\xe8\xff\x01\x00" "\x00\xa0\x34\x62\xdf\xff\xcb\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8" "\xf7\x6f\x09\x35\xa9\x48\xff\x2f\xff\x5f\xf0\xfc\x7f\x4c\x8e\x96\x38" "\xff\xdf\xfb\xfa\xff\xf2\xff\xf2\xff\xf2\xff\xf2\xff\x2b\x27\xff\xdf" "\x9d\xfc\x7f\x0f\xf2\xff\xf2\xff\xf2\xff\xf2\xff\xf4\x55\xd1\xf2\xff" "\xb1\xef\x7f\x45\xa8\x49\x45\xfa\x7f\x00\x00\x00\xa8\x82\xd8\xf7\xdf" "\x15\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\x2b\x43\x4d\xf4\xff" "\x00\x00\x00\x50\x1a\xb1\xef\x9f\x08\x35\xa9\x48\xff\x2f\xff\x5f\xf0" "\xfc\x7f\x9e\x83\x1f\x2b\xf3\xf5\xff\xe5\xff\xe5\xff\xe5\xff\xe5\xff" "\xfb\x49\xfe\xbf\x3b\xf9\xff\x1e\xc2\x69\xee\x47\x59\x96\xc9\xff\x57" "\x38\xff\x1f\x5b\x02\xf9\x7f\xf9\x7f\xd6\xac\x68\xf9\xff\xd8\xf7\xdf" "\x1d\x6a\x52\x91\xfe\x1f\x00\x00\x00\xaa\x20\xf6\xfd\x5b\x43\x4d\xf4" "\xff\x00\x00\x00\x50\x1a\xb1\xef\xbf\x27\xd4\x44\xff\x0f\x00\x00\x00" "\xa5\x11\xfb\xfe\x6d\xa1\x26\x15\xe9\xff\xe5\xff\x07\x22\xff\x9f\xc9" "\xff\xcb\xff\xcb\xff\xcb\xff\xcb\xff\xaf\x8c\xfc\x7f\x77\xf2\xff\x3d" "\xb8\xfe\xbf\xfc\xbf\xeb\xff\xcb\xff\xd3\x57\x45\xcb\xff\xc7\xbe\xff" "\x55\xa1\x26\x15\xe9\xff\x01\x00\x00\xa0\x0a\x62\xdf\xbf\x3d\xd4\x44" "\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\x57\x87\x9a\xe8\xff\x01\x00\x00" "\xa0\x34\x62\xdf\xbf\x23\xd4\xa4\x22\xfd\xbf\xfc\xbf\xfc\xbf\xfc\xbf" "\xfc\xbf\xfc\x7f\xe7\xf5\xcb\xff\x0f\x26\xf9\xff\xee\xe4\xff\x7b\x90" "\xff\x97\xff\x97\xff\x97\xff\xa7\xaf\x8a\x96\xff\x8f\x7d\xff\x6b\x42" "\x4d\x2a\xd2\xff\x03\x00\x00\x40\x15\xc4\xbe\x7f\x67\xa8\x89\xfe\x1f" "\x00\x00\x00\x4a\x23\xf6\xfd\xf7\x86\x9a\xe8\xff\x01\x00\x00\xa0\x34" "\x62\xdf\x3f\x19\x6a\x52\x91\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x5f" "\xfe\xbf\xf3\xfa\xe5\xff\x07\x93\xfc\x7f\x77\xf2\xff\x3d\xc8\xff\xcb" "\xff\xcb\xff\xcb\xff\xd3\x57\x45\xcb\xff\xc7\xbe\xff\xbe\x50\x93\x8a" "\xf4\xff\x00\x00\x00\x50\x05\xb1\xef\xbf\x3f\xd4\x44\xff\x0f\x00\x00" "\x00\xa5\x11\xfb\xfe\xa9\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb" "\xa7\x43\x4d\x2a\xd2\xff\xcb\xff\xcb\xff\xcb\xff\xcb\xff\xaf\x2a\xff" "\xff\xca\xc5\xe7\x95\xff\xcf\xc9\xff\x17\x8b\xfc\x7f\x77\xf2\xff\x3d" "\xc8\xff\xcb\xff\xdf\xf0\xfc\xff\xa8\xfc\x3f\xa5\x52\xb4\xfc\x7f\xec" "\xfb\x77\x85\x9a\xa4\xc6\x6f\xec\x1a\xb6\x12\x00\x00\x00\x28\x92\xd8" "\xf7\xef\x0e\x35\xa9\xc8\xdf\xff\x01\x00\x00\xa0\x0a\x62\xdf\xbf\x27" "\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\xbd\xa1\x26\x15\xe9\xff" "\xe5\xff\xe5\xff\xe5\xff\xe5\xff\x5d\xff\xbf\xf3\xfa\xe5\xff\x07\x93" "\xfc\x7f\x77\xfd\xcf\xff\xc7\x4d\x94\xff\x97\xff\x97\xff\x77\xfd\x7f" "\xf9\x7f\x96\x2a\x5a\xfe\x3f\xf6\xfd\x0f\x84\x9a\x54\xa4\xff\x07\x00" "\x00\x80\x2a\x88\x7d\xff\xbe\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec" "\xfb\xf7\x87\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf\x7f\x20\xd4\xa4" "\x22\xfd\xbf\xfc\xbf\xfc\xbf\xfc\xbf\xfc\xbf\xfc\x7f\xe7\xf5\xcb\xff" "\x0f\x26\xf9\xff\xee\x5c\xff\xbf\x87\xe2\xe5\xff\x5f\xd7\xfc\xf0\xf5" "\xcc\xff\xd7\xd7\x25\xff\x2f\xff\x2f\xff\xcf\xea\x3d\xf2\x87\xcd\x3f" "\x15\x2d\xff\x1f\xfb\xfe\x83\xa1\x26\x15\xe9\xff\x01\x00\x00\xa0\x0a" "\x62\xdf\xff\xda\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb\x7f\x25" "\xd4\xa4\x7b\xff\xbf\xe1\xfa\x8e\x0a\x00\x00\x00\xe8\xa7\xd8\xf7\xff" "\x6a\xa8\x49\x45\xfe\xfe\x2f\xff\x2f\xff\x2f\xff\x2f\xff\x2f\xff\xdf" "\x79\xfd\xf2\xff\x83\x49\xfe\xbf\x3b\xf9\xff\x1e\x8a\x97\xff\x6f\xe1" "\xfa\xff\xc5\x1e\xbf\xfc\xbf\xfc\x3f\x4b\x15\x2d\xff\x1f\xfb\xfe\x43" "\xa1\x26\x15\xe9\xff\x01\x00\x00\xa0\x0a\x62\xdf\xff\x6b\xa1\x26\xfa" "\x7f\x00\x00\x00\x28\x8d\xd8\xf7\xbf\x2e\xd4\x44\xff\x0f\x00\x00\x00" "\xa5\x11\xfb\xfe\xc3\xa1\x06\x9d\xe2\xdc\xa5\x24\xff\x2f\xff\x3f\x98" "\xf9\xff\x71\xf9\x7f\xf9\xff\xd2\xe5\xff\xc7\xe2\xf3\xca\xff\xaf\x89" "\xfc\x7f\x77\xf2\xff\x3d\xc8\xff\xcb\xff\xcb\xff\xcb\xff\xd3\x57\x45" "\xcb\xff\xc7\xbe\xff\xf5\xa1\x26\xfe\xfe\x0f\x00\x00\x00\xa5\x11\xfb" "\xfe\x07\x43\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\x7f\x43\xa8\x89" "\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\x6f\x0c\x35\xa9\x48\xff\x2f\xff" "\x2f\xff\x3f\x98\xf9\x7f\xd7\xff\xcf\xe4\xff\x4b\x97\xff\x77\xfd\xff" "\xfe\x90\xff\xef\x4e\xfe\xbf\x07\xf9\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xfa" "\xaa\x68\xf9\xff\xd8\xf7\xbf\x29\xd4\xa4\x22\xfd\x3f\x00\x00\x00\x54" "\x41\xec\xfb\xdf\x1c\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\x5b" "\x42\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\x7f\x6b\xa8\x49\x45\xfa" "\x7f\xf9\x7f\xf9\xff\x1b\x99\xff\xcf\x5d\x96\xff\x97\xff\x6f\x90\xff" "\x97\xff\xef\x07\xf9\xff\xee\xe4\xff\x7b\x90\xff\x97\xff\x97\xff\x97" "\xff\xa7\xaf\x8a\x96\xff\x8f\x7d\xff\xaf\x87\x9a\x54\xa4\xff\x07\x00" "\x00\x80\x2a\x88\x7d\xff\x43\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8" "\xf7\xbf\x2d\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\xb7\x87\x9a" "\x54\xa4\xff\x97\xff\x97\xff\x77\xfd\x7f\xf9\x7f\xf9\xff\xce\xeb\x97" "\xff\x1f\x4c\xf2\xff\xdd\x0d\x58\xfe\xff\xe7\xb7\x84\xdb\xe5\xff\x73" "\xf2\xff\xc5\x1e\xff\x6a\xf3\xff\x23\x6d\x3f\x5f\x97\xfc\xff\x0f\x96" "\xcb\xff\x2f\x6c\x68\x7f\xbc\xfc\x3f\xd7\x43\xd1\xf2\xff\xb1\xef\x7f" "\x47\xa8\x49\x45\xfa\x7f\x00\x00\x00\xa8\x82\xd8\xf7\xbf\x33\xd4\x44" "\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\x77\x85\x9a\x34\xf5\xff\x7d\xfd" "\x0f\xef\x00\x00\x00\x80\x75\x17\xfb\xfe\xdf\x08\x35\xa9\xc8\xdf\xff" "\xe5\xff\xeb\xe3\x58\x4c\x2f\xcb\xff\xcb\xff\x37\x6e\x90\xff\x97\xff" "\x97\xff\x1f\x58\xf2\xff\xdd\x0d\x58\xfe\xdf\xf5\xff\xdb\xc8\xff\x17" "\x7b\xfc\xae\xff\x2f\xff\xcf\x52\x45\xcb\xff\xc7\xbe\xff\xdd\xa1\x26" "\x15\xe9\xff\x01\x00\x00\xa0\x0a\x62\xdf\xff\x70\xa8\x89\xfe\x1f\x00" "\x00\x00\x4a\x23\xf6\xfd\x8f\x84\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62" "\xdf\xff\x9e\x50\x93\x8a\xf4\xff\xf2\xff\xae\xff\x2f\xff\x2f\xff\x2f" "\xff\xdf\x79\xfd\xf2\xff\x83\x49\xfe\xbf\x3b\xf9\xff\x1e\xe4\xff\xe5" "\xff\x8b\x96\xff\xff\x4f\xf9\x7f\x06\x5b\xd1\xf2\xff\xb1\xef\x7f\x34" "\xd4\xa4\x22\xfd\x3f\x00\x00\x00\x54\x41\xec\xfb\xdf\x1b\x6a\xa2\xff" "\x07\x00\x00\x80\xd2\x88\x7d\xff\x6f\x86\x9a\xe8\xff\x01\x00\x00\xa0" "\x34\x62\xdf\xff\xbe\x50\x93\x8a\xf4\xff\xf2\xff\x83\x92\xff\x9f\x18" "\xd0\xfc\xff\x13\xf2\xff\xd7\x31\xff\x7f\xd7\x2d\xf9\x72\xf2\xff\xf2" "\xff\x2c\x92\xff\xef\x4e\xfe\xbf\x07\xf9\x7f\xf9\xff\xa2\xe5\xff\x5d" "\xff\x9f\x01\x57\xb4\xfc\x7f\xec\xfb\xdf\x1f\x6a\xb2\xf2\xfe\x7f\x7c" "\xc5\x4b\x02\x00\x00\x00\xd7\xd1\xc8\xb2\xf7\xc4\xbe\xff\xb7\x42\x4d" "\x2a\xf2\xf7\x7f\x00\x00\x00\xa8\x82\xd8\xf7\xff\x76\xa8\x89\xfe\x1f" "\x00\x00\x00\x4a\x23\xf6\xfd\xbf\x13\x6a\x52\x91\xfe\x5f\xfe\x7f\x50" "\xf2\xff\xae\xff\x9f\xc9\xff\xbb\xfe\x7f\xdb\xf6\xc8\xff\xcb\xff\x77" "\xb2\x7e\xf9\xff\x78\xe6\x91\xff\x97\xff\x2f\x56\xfe\x7f\xd3\xaa\x36" "\xb8\xd5\x8d\xce\xcf\xaf\xd5\x8d\x1e\x7f\x75\xf3\xff\xf9\x3b\xa3\xfc" "\x3f\x9d\x14\x2d\xff\x1f\xfb\xfe\xdf\x0d\x35\xa9\x48\xff\x0f\x00\x00" "\x00\x55\x10\xfb\xfe\x0f\x84\x9a\xe8\xff\x01\x00\x00\x60\x20\x74\xfa" "\x6f\xb2\xdb\xc5\xbe\xff\x48\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6" "\xfd\x47\x43\x4d\x2a\xd2\xff\xcb\xff\xcb\xff\xcb\xff\x17\x34\xff\xff" "\x67\x5b\xff\xe5\x7b\xdf\x7e\xe7\xd1\x5d\xf2\xff\xf2\xff\xf2\xff\xab" "\xb2\xae\xd7\xff\xaf\x1f\xfc\xae\xff\x2f\xff\x5f\xb0\xfc\xff\x5a\xdc" "\xe8\xfc\xfc\x7a\x8d\xbf\xb6\xcc\xa5\xc1\xe4\xff\x5d\xff\x9f\xfe\x2b" "\x5a\xfe\x3f\xf6\xfd\xc7\x42\x4d\x2a\xd2\xff\x03\x00\x00\x40\x15\xc4" "\xbe\xff\xf7\x42\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\x3f\x1e\x6a" "\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\x4c\xa8\x49\x45\xfa\x7f\xf9" "\x7f\xf9\x7f\xf9\xff\x82\xe6\xff\x07\xf8\xfa\xff\x71\x7f\xc8\xff\xb7" "\xea\x5b\xfe\x3f\x9e\x74\xe5\xff\x3b\x5a\xd7\xfc\xff\x7b\x17\x73\xe2" "\xf2\xff\xab\xcd\xff\x8f\x75\xbc\x55\xfe\x5f\xfe\x7f\x90\xc7\x2f\xff" "\x2f\xff\xcf\x52\x45\xcb\xff\xc7\xbe\x7f\x36\xd4\xa4\x22\xfd\x3f\x00" "\x00\x00\x54\x41\xe8\xfb\x87\x4e\xe4\x75\xf1\x0e\xfd\x3f\x00\x00\x00" "\x94\x46\xec\xfb\x4f\x86\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf\xff" "\xc1\x50\x93\x8a\xf4\xff\xf2\xff\xf2\xff\xf2\xff\xf2\xff\xae\xff\xdf" "\x79\xfd\xdd\xf2\xff\xb5\x11\xd7\xff\x2f\x2a\xf9\xff\xee\x8a\x93\xff" "\xef\x4c\xfe\x5f\xfe\x7f\x90\xc7\x2f\xff\x2f\xff\x4f\x96\x2d\x7e\x32" "\xcf\x15\x2d\xff\x1f\xfb\xfe\xb9\x50\x93\x8a\xf4\xff\x00\x00\x00\x50" "\x05\xb1\xef\xff\x50\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\x1f" "\x0e\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\xff\x54\xa8\x49\x45\xfa" "\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xf9\xff\xff\x67\xef\x4e\xbe\x2c" "\xad\xeb\x3b\x8e\xdf\x82\x86\xae\x3e\x64\x91\x5d\x16\xd9\xe4\x9c\x2c" "\xf3\x27\xb0\x08\xeb\x64\x9f\x2c\xb2\xc9\x22\x39\x27\x27\xe7\x04\x92" "\x90\x84\xcc\x34\x19\x9c\x45\x51\x71\x56\x14\x67\x05\x07\x10\x44\x54" "\x9c\x27\x70\x42\x71\x06\x15\x15\xe7\x11\x27\x44\x3d\xed\xa1\xea\xfb" "\xfd\x76\x0d\x4f\xdd\x5b\x55\x7d\x6f\xdf\xe7\xf9\xfd\x5e\xaf\x05\xdf" "\x74\x85\xea\x7b\xed\xd3\x42\x7f\xba\xfa\xed\x33\xfc\xfa\xa3\x7d\xfe" "\xbf\xfe\x7f\x2e\xfd\xff\x7c\xfa\xff\x05\xf4\xff\xfa\x7f\xfd\xbf\xfe" "\x9f\xa5\x1a\x5b\xff\x9f\xbb\xff\xef\xe2\x96\x4e\xf6\x3f\x00\x00\x00" "\xf4\x20\x77\xff\xe5\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\x45" "\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x7d\xdc\xd2\xc9\xfe\xd7" "\xff\xeb\xff\x9b\xed\xff\xff\x58\xff\x7f\xd0\xeb\xeb\xff\xf5\xff\x2d" "\xd3\xff\xcf\xa7\xff\x5f\x40\xff\xaf\xff\xd7\xff\xeb\xff\x59\xaa\xb1" "\xf5\xff\xb9\xfb\xff\x21\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7" "\xff\x63\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x5f\x19\xb7\xd8\xff" "\x00\x00\x00\xd0\x8c\xdc\xfd\xff\x14\xb7\x74\xb2\xff\xf7\xf4\xff\x1b" "\xb3\x3e\xfb\xff\xcc\x78\xf5\xff\x2d\xf5\xff\x9e\xff\x7f\xe0\xeb\xeb" "\xff\xcf\xa1\xff\xbf\x50\xff\x3f\x76\xe7\xb7\xff\xbf\xe6\xb1\x7f\xf2" "\xe9\xff\xf5\xff\xfa\xff\xa0\xff\x3f\x54\xff\x7f\xf2\xa0\xcf\xd7\xff" "\xd3\xa2\xb1\xf5\xff\xb9\xfb\xff\x39\x6e\xe9\x64\xff\x03\x00\x00\x40" "\x0f\x72\xf7\xff\x4b\xdc\x62\xff\x03\x00\x00\xc0\xf4\xed\xfa\x93\x37" "\x9b\xb3\xab\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x5f\xe3\x96" "\x4e\xf6\xff\xf2\x9e\xff\x7f\x6a\xeb\xe3\x13\xed\xff\x8b\xfe\x5f\xff" "\xbf\xf5\x01\xfd\xbf\xfe\xff\xa0\xfe\xff\xc4\xd9\x6f\xeb\xff\xc7\xc9" "\xf3\xff\xe7\xeb\xa9\xff\xbf\xf2\xbe\x4b\x2e\x7f\xf8\xf6\xdf\xbf\xe3" "\x28\xaf\xaf\xff\xd7\xff\x7b\xfe\xbf\xfe\x9f\xe5\x1a\x5b\xff\x9f\xbb" "\xff\xdf\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xbf\xc7\x2d" "\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x7f\xc4\x2d\xf6\x3f\x00\x00\x00" "\x34\x23\x77\xff\x7f\xc6\x2d\x9d\xec\xff\xe5\xf5\xff\x93\x7e\xfe\x7f" "\xd1\xff\xeb\xff\xb7\x3e\xa0\xff\xd7\xff\x1f\xd4\xff\xff\x99\xe7\xff" "\x8f\x9d\xfe\x7f\xbe\x9e\xfa\xff\xe3\xbc\xbe\xfe\x5f\xff\xaf\xff\xd7" "\xff\xb3\x5c\xeb\xee\xff\xf3\x3b\xce\x6f\xe7\xee\xff\xaf\xb8\xa5\x93" "\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xdf\x71\x8b\xfd\x0f\x00\x00\x00" "\xcd\xc8\xdd\x7f\x75\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x9f\x8e" "\x5b\x3a\xd9\xff\xfa\xff\xd5\xf7\xff\xbf\xd1\xff\xeb\xff\xe3\xea\xff" "\xf5\xff\xfa\xff\xd5\xd3\xff\xcf\xa7\xff\x5f\x40\xff\xaf\xff\xd7\xff" "\xeb\xff\x59\xaa\x75\xf7\xff\x7b\xbf\x9d\xbb\xff\x9a\xb8\xa5\x93\xfd" "\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x3f\x71\x8b\xfd\x0f\x00\x00\x00\xcd" "\xc8\xdd\xff\xbf\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x7f\x71" "\x4b\x27\xfb\x5f\xff\xef\xf9\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf8\xf5\xf5" "\xff\xd3\xa4\xff\x9f\x4f\xff\xbf\x80\xfe\xff\x5c\xfb\xf9\x8b\xf4\xff" "\x13\xec\xff\xe3\x17\x52\xfa\x7f\x56\xe1\x88\xfd\xff\xa3\x73\xfe\xb1" "\xbd\x94\xfe\x3f\x77\xff\xff\xc7\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41" "\xee\xfe\xc7\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xe3\xe3\x16" "\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x09\x71\x4b\x27\xfb\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\x8f\xdd\xff\xef\xff\xa9\xb7\x45\xff\x3f\x4c\xff" "\x7f\x7e\xe8\xff\xe7\x1b\x4d\xff\xbf\x71\x62\xf0\xc3\xfa\xff\xc9\xf7" "\xff\x9e\xff\x3f\xc5\xfe\x3f\xe8\xff\x59\x85\xb1\x3d\xff\x3f\x77\xff" "\x13\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x93\xe2\x96\x39" "\xfb\xff\xc8\xbf\x99\x0f\x00\x00\x00\xac\x55\xee\xfe\x27\xc7\x2d\xbe" "\xfe\x0f\x00\x00\x00\x93\x97\xd5\x59\xee\xfe\xa7\xc4\x2d\x9d\xec\x7f" "\xfd\xbf\xfe\x5f\xff\xaf\xff\xf7\xfc\xff\xe1\xd7\x9f\xd7\xff\xdf\xb1" "\xe3\xfd\xe9\xff\xc7\x45\xff\x3f\xdf\x68\xfa\xff\x03\xe8\xff\xf5\xff" "\x53\x7e\xff\xfa\xff\xb3\xfd\x7f\xfe\xda\x4c\xff\xcf\xd8\xfa\xff\xdc" "\xfd\x4f\x8d\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xd7\xc6\x2d" "\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xd3\xe2\x16\xfb\x1f\x00\x00\x00" "\x9a\x91\xbb\xff\xe9\x71\x4b\x27\xfb\x7f\xb8\xff\x3f\xfb\xff\xd7\xff" "\x1f\x8e\xfe\x7f\xf7\xfb\xd7\xff\x0f\xff\xfc\x58\x56\xff\x9f\xdf\xa3" "\xfe\x7f\x6e\xff\x7f\x99\xe7\xff\xf7\x49\xff\x3f\xdf\xf9\xef\xff\x4f" "\xea\xff\x77\x7f\xff\xfa\xff\x15\x5a\xf7\xfb\x6f\xbc\xff\x3f\xb5\xe8" "\xf3\x3d\xff\x9f\x21\x63\xeb\xff\x73\xf7\x5f\x17\xb7\x74\xb2\xff\x01" "\x00\x00\xa0\x07\xb9\xfb\x9f\x11\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc" "\xfd\xcf\x8c\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x67\xc5\x2d\x9d" "\xec\xff\x35\x3f\xff\xff\x9a\x8b\x0f\x7a\x5f\xfa\xff\x2d\xfa\x7f\xfd" "\xbf\xe7\xff\x8f\xf3\xf9\xff\xb3\xf3\xde\xff\x9f\xd0\xff\x1f\x92\xfe" "\x7f\x3e\xcf\xff\x5f\x40\xff\xaf\xff\xd7\xff\x2f\xe5\xf9\xff\xfa\x7f" "\xd2\xd8\xfa\xff\xdc\xfd\xd7\xc7\x2d\x9d\xec\x7f\x00\x00\x00\xe8\xc1" "\xf5\x8f\xcc\xb6\x76\xff\xb3\x67\x33\xfb\x1f\x00\x00\x00\xa6\x68\xe7" "\x9f\x1d\xd8\xfb\x07\x4a\x43\xee\xfe\xe7\xc4\x2d\xf6\x3f\x00\x00\x00" "\x34\x23\x77\xff\x73\xe3\x96\x4e\xf6\xff\x9a\xfb\xff\x55\x3d\xff\xff" "\xa2\x45\xaf\xad\xff\xd7\xff\xef\xfc\xf1\xd2\xff\xeb\xff\x87\x5e\x7f" "\x5c\xfd\xbf\xe7\xff\x1f\x96\xfe\x7f\x3e\xfd\xff\x02\xfa\xff\x55\xf4" "\xf3\x27\x1a\xeb\xff\x6f\x38\xe8\xf3\xc7\xd0\xff\x5f\xad\xff\x67\x64" "\x76\xf5\xff\x77\x9d\xfd\xf8\xba\xfa\xff\xdc\xfd\xcf\x8b\x5b\x3a\xd9" "\xff\x00\x00\x00\xd0\x83\xdc\xfd\xcf\x8f\x5b\xec\x7f\x00\x00\x00\x68" "\x46\xee\xfe\x17\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x0b\xe3" "\x96\x4e\xf6\xff\xca\xfb\xff\x53\x07\xbf\xf6\x0a\xfb\xff\x85\xf4\xff" "\xfa\xff\x9d\x3f\x5e\xfa\x7f\xfd\xff\xd0\xeb\xeb\xff\xa7\x49\xff\x3f" "\x9f\xfe\x7f\x01\xfd\xbf\xe7\xff\x7b\xfe\xbf\xfe\x9f\xa5\xda\xd5\xff" "\xef\xb0\xae\xfe\x3f\x77\xff\x8b\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4" "\x20\x77\xff\x8b\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x86\xb8" "\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x49\xdc\xd2\xc9\xfe\x6f\xf4" "\xf9\xff\x0b\xe9\xff\xf5\xff\x3b\x7f\xbc\xf4\xff\xfa\xff\xa1\xd7\xd7" "\xff\x4f\x93\xfe\x7f\x3e\xfd\xff\x02\xfa\x7f\xfd\xbf\xfe\x7f\x71\xff" "\xbf\xf7\x5f\xd4\x41\xff\xcf\x90\xb1\xf5\xff\xb9\xfb\x5f\x1a\xb7\x74" "\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x6f\x8c\x5b\xec\x7f\x00\x00\x00" "\x68\x46\xee\xfe\x97\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xcb" "\xe3\x96\x4e\xf6\xbf\xfe\x7f\xb5\xfd\x7f\x7e\x5c\xff\xaf\xff\x9f\x1d" "\xa5\xff\x8f\x4f\xd0\xff\x6f\xd3\xff\xeb\xff\x8f\x62\x6a\xfd\xff\xde" "\xff\xfe\x1c\xbb\x5f\xdf\x18\xfa\x37\xd1\x7e\x07\xf4\xff\xf7\xfc\xcd" "\xe9\x3f\xdd\xfd\x11\xfd\xbf\xfe\x5f\xff\xaf\xff\xf7\xfc\x7f\x96\x60" "\x14\xfd\xff\x99\xb3\xbf\xba\xcc\xdd\xff\x8a\xb8\xa5\x93\xfd\x0f\x00" "\x00\x00\x3d\xc8\xdd\xff\xca\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee" "\x7f\x55\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x3a\x6e\x39\xe2" "\xfe\xff\xdd\xa5\xbe\xab\xf3\x47\xff\xef\xf9\xff\xfa\xff\x11\xf6\xff" "\x41\xff\xbf\x4d\xff\xaf\xff\x3f\x8a\xa9\xf5\xff\x7b\x79\xfe\xbf\xfe" "\x5f\xff\x3f\xdd\xf7\xaf\xff\xd7\xff\xb3\xdf\x28\xfa\xff\x1d\xdf\xce" "\xdd\xff\x9a\xb8\xc5\xd7\xff\x01\x00\x00\xa0\x19\xb9\xfb\x5f\x1b\xb7" "\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xaf\x8b\x5b\xec\x7f\x00\x00\x00" "\x68\x46\xee\xfe\x9b\xe2\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff" "\xeb\xff\x87\x5f\xff\xb8\xfd\xff\xe6\x6c\x98\xfe\xff\xfc\xd0\xff\xcf" "\xa7\xff\x5f\x40\xff\xaf\xff\xd7\xff\xeb\xff\x59\xaa\xb1\xf5\xff\xb9" "\xfb\x6f\x8e\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xaf\x8f\x5b" "\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x37\xc4\x2d\xf6\x3f\x00\x00\x00" "\x4c\x49\xa6\x63\x83\x72\xf7\xbf\x31\x6e\xe9\x64\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\x7f\xf8\xf5\x3d\xff\x7f\x9a\x26\xda\xff\xd7\x3f" "\x06\xa7\xda\xff\x5f\x38\xa5\xfe\xff\x96\x39\x6f\x60\xa8\xff\x3f\x73" "\x52\xff\xaf\xff\xd7\xff\xeb\xff\x39\xa6\xb1\xf5\xff\xb9\xfb\xdf\x14" "\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x6f\x89\x5b\xec\x7f\x00" "\x00\x00\x68\x46\xee\xfe\x5b\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb" "\xff\xcd\x71\x4b\x27\xfb\x5f\xff\xaf\xff\x5f\x66\xff\x9f\xf4\xff\xc3" "\x3f\x3f\xf4\xff\xfa\x7f\xfd\xff\xea\x4d\xb4\xff\x2f\x53\xed\xff\x3d" "\xff\x5f\xff\x3f\xd3\xff\xeb\xff\xf5\xff\x0c\x18\x5b\xff\x9f\xbb\xff" "\xb6\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\x7f\x7b\xdc\x62\xff" "\x03\x00\x00\x40\x33\x72\xf7\xbf\x25\x6e\xb1\xff\x01\x00\x00\xa0\x19" "\xb9\xfb\xef\x88\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xe7\xff\xeb\xff\xf5" "\xff\xc3\xaf\xaf\xff\x9f\xa6\xd5\xf5\xff\xb3\xf5\xf5\xff\x0f\x5d\x70" "\xd4\xef\xe6\x40\xfa\xff\x05\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\xa5\x1a" "\x5b\xff\x9f\xbb\xff\xad\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb" "\xff\xce\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x5b\xdc\x62\xff" "\x03\x00\x00\x40\x33\x72\xf7\xbf\x3d\x6e\xe9\x64\xff\xeb\xff\xf5\xff" "\xd3\xec\xff\xaf\xdb\x1c\x7a\xff\xfa\x7f\xfd\xff\x4c\xff\xdf\x3d\xcf" "\xff\x9f\x4f\xff\xbf\x80\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x54\x63\xeb" "\xff\x73\xf7\xbf\x23\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xdf" "\x15\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xef\x8c\x5b\xec\x7f\x00" "\x00\x00\x68\x46\xee\xfe\x77\xc5\x2d\x9d\xec\x7f\xfd\xbf\xfe\x7f\x77" "\xff\x3f\x9b\x4d\xa3\xff\xf7\xfc\xff\x99\xfe\xbf\x85\xfe\x7f\x73\xa6" "\xff\x5f\x3a\xfd\xff\x7c\x87\xeb\xff\x2f\xd3\xff\xeb\xff\xdb\xea\xff" "\x2f\x98\x35\xd4\xff\x9f\x3a\xf0\xf3\xf5\xff\x8c\xd1\xd8\xfa\xff\xdc" "\xfd\xef\x8e\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xef\x89\x5b" "\xec\x7f\x00\x00\x00\x68\xc0\xf6\x9f\x9d\xc9\xdd\xff\xde\xb8\xc5\xfe" "\x07\x00\x00\x80\x31\x3b\x71\x94\xbf\x39\x77\xff\xfb\xe2\x96\x4e\xf6" "\xff\xf4\xfb\xff\x93\x7b\x3e\x51\xff\x3f\x9b\xcd\xee\xbf\xaa\xf9\xe7" "\xff\xeb\xff\x67\xfa\xff\x16\xfa\xff\xfa\x51\xd5\xff\x2f\x8f\xfe\x7f" "\x3e\xcf\xff\x5f\x40\xff\xdf\x66\xff\xef\xf9\xff\xfa\x7f\xd6\x66\x6c" "\xfd\x7f\xee\xfe\xf7\xc7\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe" "\x0f\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x07\xe3\x16\xfb\x1f" "\x00\x00\x00\x9a\x91\xbb\xff\x43\x71\x4b\x27\xfb\x7f\xfa\xfd\xff\xde" "\x4f\xd4\xff\xcf\xce\xe9\xf9\xff\xfa\xff\xad\x0f\xe8\xff\xf5\xff\xfa" "\xff\xc9\xd2\xff\xcf\xa7\xff\x5f\x40\xff\xbf\xb0\x9f\xdf\x38\xe0\xd7" "\x3d\x33\xfd\xbf\xfe\x5f\xff\xcf\x80\xb1\xf5\xff\xb9\xfb\x3f\x1c\xb7" "\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xef\x8e\x5b\xec\x7f\x00\x00" "\x00\x68\x46\xee\xfe\x7b\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff" "\x23\x71\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\x4f\xb3\xff\xdf\xd4\xff" "\xeb\xff\xf5\xff\x83\xc6\xd2\xff\x5f\x7a\xe9\x9f\xdc\xab\xff\xd7\xff" "\xb7\xd8\xff\xcf\xa3\xff\xd7\xff\xeb\xff\xd9\x6b\x6c\xfd\x7f\xee\xfe" "\x8f\xc6\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x8f\xc5\x2d\xf6" "\x3f\x00\x00\x00\x34\x23\x77\xff\xc7\xe3\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\x13\x71\x4b\x27\xfb\x7f\x7f\xff\x7f\xd1\x6c\xbb\x50\xdd" "\x36\xd4\xff\x47\xa3\xa6\xff\xdf\x41\xff\xbf\xfb\xfd\xeb\xff\x87\x7f" "\x7e\x78\xfe\xbf\xfe\x5f\xff\xbf\x7a\x63\xe9\xff\x3d\xff\xff\x78\xef" "\x5f\xff\xaf\xff\x9f\xf2\xfb\x3f\x52\xff\xff\x07\xfb\x3f\x5f\xff\x4f" "\x8b\xc6\xd6\xff\xe7\xee\xbf\x37\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f" "\x72\xf7\x7f\x32\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x3f\x15\xb7" "\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xf7\xc5\x2d\x9d\xec\x7f\xcf\xff" "\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xe1\xd7\xd7\xff\x4f\x93\xfe\x7f\x3e" "\xfd\xff\x02\xfa\x7f\xfd\xbf\xe7\xff\x5f\xf1\x57\x17\xea\xff\x59\x9e" "\xb1\xf5\xff\xb9\xfb\x3f\x1d\xb7\x6c\x0d\xbf\x3f\xfc\x9d\x63\xfe\xc7" "\x04\x00\x00\x00\x46\x24\x77\xff\x67\xe2\x96\x4e\xbe\xfe\x0f\x00\x00" "\x00\x3d\xc8\xdd\xff\xd9\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff" "\x5c\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf0\xeb" "\xeb\xff\xa7\x49\xff\x3f\x9f\xfe\x7f\x81\x7e\xfa\xff\xcd\xa1\x0f\xae" "\xbb\x9f\x3f\x57\xeb\x7e\xff\xcd\xf4\xff\x9e\xff\xcf\x12\x8d\xad\xff" "\xcf\xdd\xff\xf9\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x85" "\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x62\xdc\x62\xff\x03\x00" "\x00\x40\x33\x72\xf7\xdf\x1f\xb7\x74\xb2\xff\xf5\xff\xfa\xff\xf6\xfb" "\xff\xbf\xd4\xff\xef\x79\x7d\xfd\xbf\xfe\xbf\x65\xfa\xff\xfc\x37\xfa" "\x30\xfd\xff\x02\xfd\xf4\xff\x83\xd6\xdd\xcf\x4f\xfd\xfd\xeb\xff\xf5" "\xff\xec\x37\xb6\xfe\x3f\x77\xff\x03\x71\x4b\x27\xfb\x1f\x00\x00\x00" "\x7a\x90\xbb\xff\x4b\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xe5" "\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x4a\xdc\xd2\xc9\xfe\xd7" "\xff\xf7\xd5\xff\x6f\xcc\x7a\xec\xff\x3d\xff\x5f\xff\xaf\xff\xef\xc9" "\x74\xfa\xff\x1b\x4f\x0c\x7d\xd4\xf3\xff\xf5\xff\xfa\xff\xe9\xbe\x7f" "\xfd\xbf\xfe\x9f\xfd\xc6\xd6\xff\xe7\xee\x7f\x70\xe3\x44\x97\xfb\x1f" "\x00\x00\x00\xa6\xea\xcf\xff\xe8\x6f\x1f\x38\xec\xdf\xfb\xe0\xd6\x5f" "\x37\x67\x5f\x8d\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xaf\xc5\x2d" "\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xd7\xe3\x96\x4e\xf6\xbf\xfe\xbf" "\xaf\xfe\xbf\xcf\xe7\xff\xeb\xff\xf5\xff\xfa\xff\x9e\x4c\xa7\xff\x1f" "\xa6\xff\xd7\xff\xeb\xff\xa7\xfb\xfe\xf5\xff\xfa\x7f\xf6\x1b\x5b\xff" "\x9f\xbb\xff\xa1\xb8\x65\xc7\xf0\x1b\xfc\x1f\xe8\x01\x00\x00\x00\x26" "\x23\x77\xff\x37\xe2\x96\x4e\xbe\xfe\x0f\x00\x00\x00\x3d\xc8\xdd\xff" "\xcd\xb8\x65\xdf\xfe\x3f\x73\xc8\x3f\xd5\x0e\x00\x00\x00\x8c\x4d\xee" "\xfe\x6f\xc5\x2d\x9d\x7c\xfd\x5f\xff\x3f\xf2\xfe\x7f\xb6\xa2\xfe\x3f" "\xfe\x3e\xfd\xff\x36\xfd\xbf\xfe\x7f\xe8\xf5\xf5\xff\xd3\xd4\x5a\xff" "\x7f\x72\x36\xaa\xfe\xff\xcc\x86\xfe\x5f\xff\x3f\x87\xfe\x5f\xff\xaf" "\xff\x67\xaf\xb1\xf5\xff\xb9\xfb\xef\xbc\x6d\xd6\xe5\xfe\x07\x00\x00" "\x80\x46\xed\xfa\x1d\x85\x6f\x6f\xfd\x75\x73\xf6\x9d\xb8\xc5\xfe\x07" "\x00\x00\x80\x66\xe4\xee\xff\x6e\xdc\x62\xff\x03\x00\x00\x40\x33\x72" "\xf7\x7f\x2f\x6e\xe9\x64\xff\xeb\xff\x47\xde\xff\x1f\xeb\xf9\xff\xa7" "\xea\xff\xf2\xfc\xff\xce\xfb\xff\x6b\x37\x07\x5f\x5f\xff\xaf\xff\x6f" "\x59\x6b\xfd\xbf\xe7\xff\x6f\x7f\x5c\xff\xbf\x4d\xff\x3f\xee\xf7\xaf" "\xff\xd7\xff\xb3\xdf\x11\xfa\xff\xad\x41\xba\xea\xfe\x3f\x77\xff\xf7" "\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x0f\xe2\x16\xfb\x1f" "\x00\x00\x00\x9a\x91\xbb\xff\x87\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8" "\xdd\xff\xa3\xb8\xa5\x93\xfd\xaf\xff\x5f\x43\xff\x7f\xdd\xc9\xd9\x6c" "\xa5\xfd\xff\x21\x9e\xff\xaf\xff\xef\xa3\xff\x3f\xe0\xf5\xdb\xe9\xff" "\x7f\xef\x92\xd3\x77\xff\xc5\x5f\xdf\x7a\xb3\xfe\x9f\xb3\xce\x67\xff" "\x9f\x3f\x17\xf4\xff\xfa\xff\x35\xf4\xff\x37\xc5\xcf\x3f\xfd\xff\x88" "\xde\xbf\xfe\x5f\xff\xcf\x7e\x63\x7b\xfe\x7f\xee\xfe\x1f\xc7\x2d\x9d" "\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x87\xe3\x16\xfb\x1f\x00\x00\x00" "\x9a\x91\xbb\xff\x27\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xd3" "\xb8\xa5\x93\xfd\xaf\xff\x6f\xf1\xf9\xff\xd3\xec\xff\xf3\xc7\x7a\x0d" "\xfd\xff\xe9\xe9\xf5\xff\xd9\x14\xf7\xde\xff\x7b\xfe\xbf\xfe\x7f\x3f" "\xcf\xff\x9f\x4f\xff\xbf\xc0\x74\xfa\xff\xad\x6f\x7b\xfe\xff\xb8\xde" "\xbf\xfe\x5f\xff\xcf\x7e\x63\xeb\xff\x73\xf7\xff\x2c\x6e\xe9\x64\xff" "\x03\x00\x00\x40\x0f\x72\xf7\xff\x3c\x6e\xc9\xfd\xbf\x71\xe4\xdf\xba" "\x07\x00\x00\x00\x46\x26\x77\xff\x2f\xe2\x16\x5f\xff\x07\x00\x00\x80" "\x66\xe4\xee\x7f\x24\x6e\xe9\x64\xff\xeb\xff\xf5\xff\x63\xe9\xff\x93" "\xe7\xff\x9f\xfd\x3c\xcf\xff\xdf\xa6\xff\xd7\xff\x1f\x85\xfe\x7f\x3e" "\xfd\xff\x02\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x52\x8d\xad\xff\xcf\xdd" "\xff\xcb\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x68\xdc\x62" "\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x2a\x6e\xb1\xff\x01\x00\x00\xa0" "\x19\xb9\xfb\x7f\x1d\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f" "\xff\x3f\xfc\xfa\xfa\xff\x69\xd2\xff\xcf\xa7\xff\x7f\xcc\xc5\x07\xbf" "\x01\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xa9\xc6\xd6\xff\xe7\xee\xff\x6d" "\x00\x00\x00\xff\xff\x3d\x85\x52\x59", 25254); syz_mount_image(/*fs=*/0x200000000080, /*dir=*/0x200000000440, /*flags=*/0, /*opts=*/0x200000000480, /*chdir=*/2, /*size=*/0x62a6, /*img=*/0x200000009900); break; case 1: // sched_setscheduler arguments: [ // pid: pid (resource) // policy: sched_policy = 0x2 (8 bytes) // prio: nil // ] syscall(__NR_sched_setscheduler, /*pid=*/0, /*policy=SCHED_RR*/ 2ul, /*prio=*/0ul); break; case 2: // getpid arguments: [ // ] // returns pid syscall(__NR_getpid); break; case 3: // sched_setscheduler arguments: [ // pid: pid (resource) // policy: sched_policy = 0x2 (8 bytes) // prio: nil // ] syscall(__NR_sched_setscheduler, /*pid=*/0, /*policy=SCHED_RR*/ 2ul, /*prio=*/0ul); break; case 4: // shmat arguments: [ // shmid: ipc_shm (resource) // addr: VMA[0x2000] // flags: shmat_flags = 0x4000 (8 bytes) // ] // returns shmaddr syscall(__NR_shmat, /*shmid=*/0, /*addr=*/0x200000ffc000ul, /*flags=SHM_REMAP*/ 0x4000ul); break; case 5: // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 00} (length 0x2) // } // flags: open_flags = 0x0 (4 bytes) // mode: open_mode = 0x0 (2 bytes) // ] // returns fd memcpy((void*)0x200000000040, ".\000", 2); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000040ul, /*flags=*/0, /*mode=*/0); if (res != -1) r[0] = res; break; case 6: // getdents64 arguments: [ // fd: fd_dir (resource) // ent: nil // count: len = 0x31 (8 bytes) // ] syscall(__NR_getdents64, /*fd=*/r[0], /*ent=*/0ul, /*count=*/0x31ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; use_temporary_dir(); loop(); return 0; }