// https://syzkaller.appspot.com/bug?id=3e6a8499b70dc448ca4f8dcd150ba509b9b69a26 // 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 < 2; 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); } } void execute_call(int call) { 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 = 0x2 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {69 6f 63 68 61 72 73 65 74 3d 6d 61 63 63 72 // 6f 61 74 69 61 6e 2c 64 69 73 63 61 72 64 3d 30 78 30 30 30 30 // 30 30 30 30 30 30 30 39 30 30 30 33 2c 6e 6f 64 69 73 63 61 72 // 64 2c 65 72 72 6f 72 73 3d 63 6f 6e 74 69 6e 75 65 2c 69 6f 63 // 68 61 72 73 65 74 3d 6d 61 63 63 79 72 69 6c 6c 69 63 2c 00 67 // ad d4 ce ec 7c b8 70 2b 1b b9 ec 93 0d ab fc 16 59 07 d7 47 8e // 07 06 b0 04 08 dc 59 28 3f 5c 01 59 b8 e3 c0 28 9d cb 18 25 04 // 84 4e f8 e6 97 2c db 3f 50 68 0f c9 60 2e d2 7c 1f 6b 47 a9 1f // 94 1f 15 4a e2 05 d3 4a 9b 7a 7c 67 ef a0 c0 e2 a7 02 51 d6 64 // fc e1 2a e6 4a 5a 52 1a a8 30 80 b7 67 2c 4e 15 66 a6 1a 0a de // 4b 6c 9d 78 15 10 53 d9 fb 31 c0 97 10 07 f2 69 f8 73 e1 4e 5f // e3 c4 6c 0a c2 b2 2d 40 39 1a e3 1d 20 25 dc d9 47 ad f7 67 39 // ae 4e cb e3 b6 30 04 0b 37 e2 b0 9d 78 16 e0 b9 39 81 de 11 47 // 53 2c f2 f4 6d 4d 49 04 f6 8f b4 3c d1 65 b9 8a de 05 3b 2f 9b // 79 18} (length 0x122) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x62d0 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x62d0) // } // ] // returns fd_dir memcpy((void*)0x200000000000, "jfs\000", 4); memcpy((void*)0x200000000040, "./file0\000", 8); memcpy( (void*)0x2000000003c0, "\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x6d\x61\x63\x63\x72\x6f\x61" "\x74\x69\x61\x6e\x2c\x64\x69\x73\x63\x61\x72\x64\x3d\x30\x78\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x30\x39\x30\x30\x30\x33\x2c\x6e\x6f" "\x64\x69\x73\x63\x61\x72\x64\x2c\x65\x72\x72\x6f\x72\x73\x3d\x63\x6f" "\x6e\x74\x69\x6e\x75\x65\x2c\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d" "\x6d\x61\x63\x63\x79\x72\x69\x6c\x6c\x69\x63\x2c\x00\x67\xad\xd4\xce" "\xec\x7c\xb8\x70\x2b\x1b\xb9\xec\x93\x0d\xab\xfc\x16\x59\x07\xd7\x47" "\x8e\x07\x06\xb0\x04\x08\xdc\x59\x28\x3f\x5c\x01\x59\xb8\xe3\xc0\x28" "\x9d\xcb\x18\x25\x04\x84\x4e\xf8\xe6\x97\x2c\xdb\x3f\x50\x68\x0f\xc9" "\x60\x2e\xd2\x7c\x1f\x6b\x47\xa9\x1f\x94\x1f\x15\x4a\xe2\x05\xd3\x4a" "\x9b\x7a\x7c\x67\xef\xa0\xc0\xe2\xa7\x02\x51\xd6\x64\xfc\xe1\x2a\xe6" "\x4a\x5a\x52\x1a\xa8\x30\x80\xb7\x67\x2c\x4e\x15\x66\xa6\x1a\x0a\xde" "\x4b\x6c\x9d\x78\x15\x10\x53\xd9\xfb\x31\xc0\x97\x10\x07\xf2\x69\xf8" "\x73\xe1\x4e\x5f\xe3\xc4\x6c\x0a\xc2\xb2\x2d\x40\x39\x1a\xe3\x1d\x20" "\x25\xdc\xd9\x47\xad\xf7\x67\x39\xae\x4e\xcb\xe3\xb6\x30\x04\x0b\x37" "\xe2\xb0\x9d\x78\x16\xe0\xb9\x39\x81\xde\x11\x47\x53\x2c\xf2\xf4\x6d" "\x4d\x49\x04\xf6\x8f\xb4\x3c\xd1\x65\xb9\x8a\xde\x05\x3b\x2f\x9b\x79" "\x18", 290); memcpy( (void*)0x20000001fb40, "\x78\x9c\xec\xdd\x4f\x6f\x1c\x67\x1d\x07\xf0\xdf\xec\x3f\xff\x29\x6d" "\xa3\x1e\xaa\x12\x21\xe4\xb6\x01\x5a\x4a\xf3\xb7\x84\x40\x81\xb6\x07" "\x38\x70\xe1\x80\x72\x45\x89\x5c\xb7\x8a\x48\x01\x25\x01\xa5\x55\x44" "\x5c\x59\x42\x1c\x78\x11\x20\x24\x8e\x80\x38\x72\xe2\x05\xf4\xc0\x95" "\x1b\x2f\x80\x48\x09\x12\xd0\x53\x07\x8d\xfd\x3c\xce\x78\xd9\xcd\x3a" "\x49\xbd\xb3\xf6\xf3\xf9\x48\xee\xcc\x6f\x9e\x19\xef\x33\xfd\xee\x78" "\x77\x33\x33\xfb\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x10\xdf\xfb\xee\x0f\xce\x54\x11\x71\xe9\xe7\x69\xc1\xb1\x88" "\xcf\x44\x3f\xa2\x17\xb1\xd2\xd4\x6b\x11\xb1\xb2\x76\x2c\xaf\x3f\x88" "\x88\xe7\x62\xbb\x39\x9e\x8d\x88\xe1\x52\x44\x95\x1b\x9f\x8e\x78\x2d" "\x22\x3e\x7a\x2a\xe2\xee\xbd\x5b\xeb\xcd\xa2\xb3\xfb\xec\xc7\x77\xfe" "\xf4\xf7\xdf\xfd\xf0\x89\xef\xff\xed\x0f\xc3\x53\xff\xf9\xf3\x8d\xfe" "\xeb\xd3\xd6\xbb\x79\xf3\xd7\xff\xfe\xcb\xed\x47\xdf\x5f\x00\x00\x00" "\x28\x51\x5d\xd7\x75\x95\x3e\xe6\x1f\x4f\x9f\xef\x7b\x5d\x77\x0a\x00" "\x98\x8b\xfc\xfa\x5f\x27\x79\xb9\x7a\xe1\xea\xcd\x05\xeb\x8f\x5a\xad" "\x56\xab\x0f\x61\xdd\x56\x4f\x76\xbb\x5d\x44\xc4\x66\x7b\x9b\xe6\x3d" "\x83\xd3\xf1\x00\x70\xc8\x6c\xc6\xc7\x5d\x77\x81\x0e\xc9\xbf\x68\x83" "\x88\x78\xa2\xeb\x4e\x00\x0b\xad\xea\xba\x03\x1c\x88\xbb\xf7\x6e\xad" "\x57\x29\xdf\xaa\xfd\x7a\xb0\xb6\xd3\x9e\xaf\x05\xd9\x93\xff\x66\xb5" "\x7b\x7f\xc7\xb4\xe9\x2c\xe3\xd7\x98\xcc\xeb\xf9\xb5\x15\xfd\x78\x66" "\x4a\x7f\x56\xe6\xd4\x87\x45\x92\xf3\xef\x8d\xe7\x7f\x69\xa7\x7d\x94" "\xd6\x3b\xe8\xfc\xe7\x65\x5a\xfe\xa3\x9d\x5b\x9f\x8a\x93\xf3\xef\x8f" "\xe7\x3f\xe6\xe8\xe4\xdf\x9b\x98\x7f\xa9\x72\xfe\x83\x87\xca\xbf\x2f" "\x7f\x00\x00\x00\x00\x00\x58\x60\xf9\xdf\xff\x8f\x75\x7c\xfe\x77\xe9" "\xf1\x77\x65\x5f\x1e\x74\xfe\x77\x6d\x4e\x7d\x00\x00\x00\x00\x00\x00" "\x00\x80\x4f\xdb\xe3\x8e\xff\xb7\xab\x32\xfe\x1f\x00\x00\x00\x2c\xaa" "\xe6\xb3\x7a\xe3\x37\x4f\xdd\x5f\x36\xed\xbb\xd8\x9a\xe5\x17\xab\x88" "\x27\xc7\xd6\x07\x0a\x93\x6e\x96\x59\xed\xba\x1f\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x50\x92\xc1\xce\x35\xbc\x17\xab\x88\x61\x44\x3c" "\xb9\xba\x5a\xd7\x75\xf3\xd3\x36\x5e\x3f\xac\xc7\xdd\xfe\xb0\x2b\x7d" "\xff\xa1\x64\x5d\xff\x91\x07\x00\x80\x1d\x1f\x3d\x35\x76\x2f\x7f\x15" "\xb1\x1c\x11\x17\xd3\x77\xfd\x0d\x57\x57\x57\xeb\x7a\x79\x65\xb5\x5e" "\xad\x57\x96\xf2\xfb\xd9\xd1\xd2\x72\xbd\xd2\xfa\x5c\x9b\xa7\xcd\xb2" "\xa5\xd1\xec\xf7\xc3\x2b\x31\xaa\x9b\x5f\xb6\xdc\xda\xae\x6d\xd6\xe7" "\xe5\x59\xed\xe3\xbf\xaf\x79\xac\x51\xdd\x9f\xdd\xb1\x39\xe9\x30\x70" "\x00\x88\x88\x9d\x57\xa3\xbb\x5e\x91\x8e\x98\xba\x7e\x3a\xba\x7e\x97" "\xc3\xe1\xe0\xf8\x3f\x7a\x1c\xff\xec\x47\xd7\xcf\x53\x00\x00\x00\xe0" "\xe0\xd5\x75\x5d\x57\xe9\xeb\xbc\x8f\xa7\x73\xfe\xbd\xae\x3b\x05\x00" "\xcc\x45\x7e\xfd\x1f\x3f\x2f\xa0\x56\xab\xd5\x6a\xb5\xfa\xe8\xd5\x6d" "\xf5\x64\xb7\xdb\x45\x44\x6c\xb6\xb7\x69\xde\x33\x18\x8e\x1f\x00\x0e" "\x99\xcd\xf8\x78\xe2\xf2\x5f\x1a\xe0\xb7\x08\xd3\xf2\xa7\x08\x83\x88" "\x78\x6e\x9f\xeb\x2e\x1d\x70\x5f\x80\xc5\x54\x75\xdd\x01\x0e\xc4\xdd" "\x7b\xb7\xd6\xab\x94\x6f\xd5\x7e\x3d\x48\xe3\xbb\xe7\x6b\x41\xf6\xe4" "\xbf\x59\x6d\x6f\x97\xb7\x9f\x34\x9d\x65\xfc\x1a\x93\x79\x3d\xbf\xb6" "\xa2\x1f\xcf\x4c\xe9\xcf\xb3\x73\xea\xc3\x22\xc9\xf9\xf7\xc6\xf3\xbf" "\xb4\xd3\x3e\x4a\xeb\x1d\x74\xfe\xf3\x32\x2d\xff\x66\x3f\x8f\x75\xd0" "\x9f\xae\xe5\xfc\xfb\xe3\xf9\x8f\x39\x3a\xf9\xf7\x26\xe6\x5f\xaa\x9c" "\xff\xe0\xa1\xf2\xef\xcb\x1f\x00\x00\x00\x00\x00\x16\x58\xfe\xf7\xff" "\x63\x0b\x75\xfe\x77\xf4\xa8\xbb\x33\xd3\x83\xce\xff\xae\x1d\xd8\xa3" "\x02\x00\x00\x00\x00\x00\x00\xc0\xc1\xba\x7b\xef\xd6\x7a\xbe\xef\x35" "\x9f\xff\xff\xdc\x84\xf5\xdc\xff\x79\x34\xe5\xfc\x2b\xf9\x17\x29\xe7" "\x9f\xee\xff\xdf\xbd\xf0\xe6\xa5\xb1\xf5\xfa\xad\xf9\x3b\x6f\xdd\xcf" "\xff\x5f\xf7\x6e\xad\xff\xfe\xc6\x3f\x3f\x9b\xa7\xfb\xcd\x7f\xf7\xbb" "\x84\xaa\xf4\xcc\xaa\xd2\x33\xa2\x4a\x8f\x54\x0d\xd2\xf4\x11\x77\x6c" "\x8a\xad\x61\x7f\xd4\x3c\xd2\xb0\xea\xf5\x07\xe9\x9a\x9f\x7a\xf8\x4e" "\x5c\x89\xab\xb1\x11\xa7\xf7\xac\xdb\x4b\xc7\xc3\xfd\xf6\x33\x7b\xda" "\x9b\x9e\x0e\xb7\xdb\xeb\xfe\x4e\xfb\xd9\x3d\xed\x83\xdd\xf6\xbc\xfd" "\xb9\x3d\xed\xc3\x74\xa5\x53\xbd\x92\xdb\x4f\xc6\x7a\xfc\x24\xae\xc6" "\xdb\xdb\xed\x4d\xdb\xd2\x8c\xfd\x5f\x9e\xd1\x5e\xcf\x68\xcf\xf9\xf7" "\x1d\xff\x45\xca\xf9\x0f\x5a\x3f\x4d\xfe\xab\xa9\xbd\x1a\x9b\x36\xee" "\x7c\xd8\xfb\xbf\xe3\xbe\x3d\x9d\xf4\x38\x6f\x5e\xf9\xfc\xaf\x4e\x1f" "\xfc\xee\xcc\xb4\x15\xfd\xdd\x7d\x6b\x6b\xf6\xef\x85\x0e\xfa\xb3\xfd" "\xff\xe4\x89\x51\xfc\xec\xfa\xc6\xb5\x93\x37\x2f\xdf\xb8\x71\xed\x4c" "\xa4\xc9\x9e\xa5\x67\x23\x4d\x3e\x65\x39\xff\x61\xfa\xc9\xf9\xbf\xf4" "\xe2\x4e\x7b\xfe\xbb\xdf\x3e\x5e\xef\x7c\x38\x7a\xe8\xfc\x17\xc5\x56" "\x0c\xda\xf9\xef\xce\x36\xf9\xbf\xd8\x9a\x6f\xf6\xf7\xe5\x0e\xfa\x37" "\x6f\x39\xff\x51\xfa\xc9\xf9\xbf\x9d\xda\x27\x1f\xff\x87\x39\xff\xe9" "\xc7\xff\x2b\x1d\xf4\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x1e\xa4\xae\xeb\xed\x5b\x44\xdf\x8c\x88\xf3\xe9\xfe\x9f\xae\xee" "\xcd\x04\x00\xe6\x2b\xbf\xfe\xd7\x49\x5e\x3e\xaf\xba\xff\xa8\xdb\xff" "\x71\xef\x7e\x74\xd5\x7f\xb5\x7a\xce\x75\xb5\x60\xfd\x99\x6b\xfd\x49" "\xbd\x58\xfd\x51\x2f\x64\xfd\xdf\x05\xeb\xcf\xc2\xd5\x6d\xf5\x64\x6f" "\xb4\x8b\x88\xf8\x6b\x7b\x9b\xe6\x3d\xc3\x2f\x26\xfd\x32\x00\x60\x91" "\x7d\x12\x11\xff\xe8\xba\x13\x74\x46\xfe\x05\xcb\xdf\xf7\xd7\x4c\x4f" "\x74\xdd\x19\x60\xae\xae\xbf\xff\xc1\x8f\x2e\x5f\xbd\xba\x71\xed\x7a" "\xd7\x3d\x01\x00\x00\x00\x00\x00\x00\x00\x1e\x55\x1e\xff\x73\xad\x35" "\xfe\xf3\x89\xba\xae\x6f\x8f\xad\xb7\x67\xfc\xd7\xb7\x62\xed\x71\xc7" "\xff\x1c\xe4\x99\xdd\x01\x46\xa7\x0c\x54\xdd\x7f\xf8\x7d\x7a\x90\xad" "\xde\xa8\xdf\x6b\x0d\x37\xfe\x7c\x4c\x1b\xff\x7b\xb8\x3b\xf7\xa0\xf1" "\xbf\x07\x33\x1e\x6f\x38\xa3\x7d\x34\xa3\x7d\x69\x46\xfb\xf2\x8c\xf6" "\x89\x37\x7a\xb4\xe4\xfc\x9f\x6f\x8d\x77\x7e\x22\x22\x8e\x8f\x0d\xbf" "\x5e\xc2\xf8\xaf\xe3\x63\xde\x97\x20\xe7\xff\x42\xeb\xf9\xdc\xe4\xff" "\xa5\xb1\xf5\xda\xf9\xd7\xbf\x3d\xcc\xf9\xf7\xf6\xe4\x7f\xea\xc6\x7b" "\x3f\x3d\x75\xfd\xfd\x0f\x5e\xbd\xf2\xde\xe5\x77\x37\xde\xdd\xf8\xf1" "\xb9\x33\x67\x4e\x9f\x3b\x7f\xfe\xc2\x85\x0b\xa7\xde\xb9\x72\x75\xe3" "\xf4\xce\x7f\x3b\xec\xf1\xc1\xca\xf9\xe7\xb1\xaf\x5d\x07\x5a\x96\x9c" "\x7f\xce\x5c\xfe\x65\xc9\xf9\x7f\x21\xd5\xf2\x2f\x4b\xce\xff\x8b\xa9" "\x96\x7f\x59\x72\xfe\xf9\xfd\x9e\xfc\xcb\x92\xf3\xcf\x9f\x7d\xe4\x5f" "\x96\x9c\xff\xcb\xa9\x96\x7f\x59\x72\xfe\x5f\x4e\xb5\xfc\xcb\x92\xf3" "\x7f\x25\xd5\xf2\x2f\x4b\xce\xff\x2b\xa9\x96\x7f\x59\x72\xfe\xaf\xa6" "\x5a\xfe\x65\xc9\xf9\x9f\x4c\xb5\xfc\xcb\x92\xf3\x3f\x95\xea\x7d\xe6" "\xbf\x72\xd0\xfd\x62\x3e\x72\xfe\xf9\x0c\x97\xe3\xbf\x2c\x39\xff\x7c" "\x65\x83\xfc\xcb\x92\xf3\x3f\x9b\x6a\xf9\x97\x25\xe7\x7f\x2e\xd5\xf2" "\x2f\x4b\xce\xff\xb5\x54\xcb\xbf\x2c\x39\xff\xaf\xa6\x5a\xfe\x65\xc9" "\xf9\x9f\x4f\xb5\xfc\xcb\x92\xf3\xff\x5a\xaa\xe5\x5f\x96\x9c\xff\x85" "\x54\xcb\xbf\x2c\x39\xff\xaf\xa7\x5a\xfe\x65\xc9\xf9\x7f\x23\xd5\xf2" "\x2f\x4b\xce\xff\xf5\x54\xcb\xbf\x2c\x39\xff\x6f\xa6\x5a\xfe\x65\xc9" "\xf9\x7f\x2b\xd5\xf2\x2f\x4b\xce\xff\xdb\xa9\x96\x7f\x59\x72\xfe\x6f" "\xa4\x5a\xfe\x65\xb9\xff\xfd\xff\x66\xcc\x98\x31\x93\x67\xba\xfe\xcb" "\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8c\x9b\xc7\xe5\xc4\x5d" "\xef\x23\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x3f\x76\xe0" "\x40\x00\x00\x00\x00\x00\xc8\xff\xb5\x11\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xb0\x03\x07\x02\x00\x00\x00\x00" "\x40\xfe\xaf\x8d\x50\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x85\xbd\x7b\x8b\x91\xeb\xae\xef\x00\x7e\x66\xef\x71\x20" "\x31\x10\x52\x27\x35\x61\xe3\x98\x10\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\xd5\xf2\x40\x2b\x40\x79\x40\xad\xaa\x56\x82\xf6\x81\xbe\x20" "\x2a\x54\x1e\xa2\x2a\xa0\x80\x84\x44\x2b\x60\xab\x39\xe7\xff\xff\xef" "\xcc\xec\xec\xcc\xae\x77\xbc\x99\x39\xe7\xf3\x91\x92\x5f\x76\xe6\xcc" "\x9c\x33\x67\xfe\x33\xbb\x5f\x3b\xdf\x1d\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1a\xdd\xfe\xba\xb9" "\x4f\xd4\xb2\x2c\xab\xd5\x6a\xc5\x05\x9b\xb3\xec\x05\xf5\x79\xdd\xe4" "\xe6\xfc\x92\x57\x3f\xbf\xc7\x07\x00\x00\x00\xac\xdf\xcf\xf3\x7f\x3f" "\x77\x63\xba\xe0\xd0\x2a\x6e\xd4\xb0\xcd\x3f\xdf\xf6\xcd\x2f\x2f\x2e" "\x2e\x2e\x66\xef\x19\xfe\xd3\xd1\xcf\x2c\x2e\xa6\x2b\x26\xb3\x6c\x74" "\x3c\xcb\xf2\xeb\xa2\x2b\xdf\x7b\x6f\xad\x71\x9b\xe0\xf1\x6c\xa2\x36" "\xd4\xf0\xf5\x50\x97\xdd\x0f\x77\xb9\x7e\xa4\xcb\xf5\xa3\x5d\xae\x1f" "\xeb\x72\xfd\x78\x97\xeb\x27\xba\x5c\xbf\xec\x04\x2c\x73\x5d\x56\x4b" "\x77\xb6\x3d\xff\xcf\xcd\xc5\x29\xcd\x6e\xca\x46\xf3\xeb\xb6\xb7\xb9" "\xd5\xe3\xb5\xf1\xa1\xfa\xb9\x4b\xb7\xcd\x6a\xf9\x6d\x16\x47\x8f\x67" "\xf3\xd9\xc9\x6c\x2e\x9b\x69\xda\xbe\xd8\xb6\x96\x6f\xff\xd5\xdb\xeb" "\xfb\x7a\x73\x16\xf7\x35\xd4\xb0\xaf\xad\xf5\x15\xf2\xa3\x47\x8f\xc5" "\x63\xa8\x85\x73\xbc\xbd\x69\x5f\x4b\xf7\x19\xfd\xe0\xb5\xd9\xe4\x8f" "\x7f\xf4\xe8\xb1\xbf\x3e\xff\xec\x2d\xed\x66\xd7\xd3\xd0\x74\x7f\xc5" "\x71\xde\xb5\xad\x7e\x9c\x1f\x0b\x97\x14\xc7\x5a\xcb\xc6\xd3\x39\x89" "\xc7\x39\xd4\x70\x9c\x5b\xdb\x3c\x27\xc3\x4d\xc7\x59\xcb\x6f\x57\xff" "\xef\xd6\xe3\x7c\x6e\x95\xc7\x39\xbc\x74\x98\x1b\xaa\xf5\x39\x9f\xc8" "\x86\xf2\xff\xfe\x56\x7e\x9e\x46\x6a\x59\x9b\xf3\xb4\x35\x5c\xf6\xd3" "\x3b\xb2\x2c\xbb\xb4\x74\xd8\xad\xdb\x2c\xdb\x57\x36\x94\x6d\x6a\xba" "\x64\x68\xe9\xf9\x99\x28\x56\x64\xfd\x3e\xea\x4b\xe9\xc5\xd9\xc8\x9a" "\xd6\xe9\xed\xab\x58\xa7\xf5\x39\xbb\xbd\x79\x9d\xb6\xbe\x26\xe2\xf3" "\x7f\x7b\xb8\xdd\xc8\x0a\xc7\xd0\xf8\x34\xfd\xe0\xb1\xb1\x86\xe7\xfd" "\x67\x8b\x57\xb3\x4e\xa3\xfa\xa3\x5e\xe9\xb5\xd2\xba\x06\x7b\xfd\x5a" "\xe9\x97\x35\x18\xd7\xc5\xb7\xf2\x07\xfd\x44\xdb\x35\xb8\x3d\x3c\xfe" "\x47\xef\x5c\x79\x0d\xb6\x5d\x3b\x6d\xd6\x60\x7a\xdc\x0d\x6b\x70\x5b" "\xb7\x35\x38\x34\x36\x9c\x1f\x73\x7a\x12\x6a\xf9\x6d\x96\xd6\xe0\xce" "\xa6\xed\x87\xf3\x3d\xd5\xf2\xf9\xcc\x9d\x9d\xd7\xe0\xf4\xf9\x53\x67" "\xa7\x17\x3e\xf2\xd1\x7b\xe6\x4f\x1d\x3d\x31\x77\x62\xee\xf4\xee\x9d" "\x3b\x67\x76\xef\xdd\xbb\x7f\xff\xfe\xe9\xe3\xf3\x27\xe7\x66\x8a\x7f" "\x5f\xe5\xd9\xee\x7f\x9b\xb2\xa1\xf4\x1a\xd8\x16\xce\x5d\x7c\x0d\xbc" "\xb2\x65\xdb\xc6\xa5\xba\xf8\xf9\xb1\x65\xef\xbf\x57\xfb\x3a\x9c\xe8" "\xf0\x3a\xdc\xdc\xb2\x6d\xaf\x5f\x87\x23\xad\x0f\xae\xb6\x31\x2f\xc8" "\xe5\x6b\xba\x78\x6d\xbc\xab\x7e\xd2\x27\x2e\x0f\x65\x2b\xbc\xc6\xf2" "\xe7\x67\xc7\xfa\x5f\x87\xe9\x71\x37\xbc\x0e\x47\x1a\x5e\x87\x6d\xbf" "\xa7\xb4\x79\x1d\x8e\xac\xe2\x75\x58\xdf\xe6\xec\x8e\xd5\xfd\xcc\x32" "\xd2\xf0\x4f\xbb\x63\x58\xf9\x7b\xc1\xfa\xd6\xe0\xe6\x86\x35\xd8\xfa" "\xf3\x48\xeb\x1a\xec\xf5\xcf\x23\xfd\xb2\x06\x27\xc2\xba\xf8\xce\x8e" "\x95\xbf\x17\x6c\x0d\xc7\xfb\xc4\xd4\x5a\x7f\x1e\x19\x5e\xb6\x06\xd3" "\xc3\x0d\xef\x3d\xf5\x4b\xd2\xcf\xfb\x13\xfb\xf3\xd1\x6e\x5d\xde\x5a" "\xbf\xe2\xfa\xb1\xec\xc2\xc2\xdc\xb9\x7b\x1f\x39\x7a\xfe\xfc\xb9\x9d" "\x59\x18\x1b\xe2\x25\x0d\x6b\xa5\x75\xbd\x6e\x6a\x78\x4c\xd9\xb2\xf5" "\x3a\xb4\xe6\xf5\x7a\x68\xfe\xb6\x27\x6e\x6d\x73\xf9\xe6\x70\xae\x26" "\xee\xa9\xff\x6b\x62\xc5\xe7\xaa\xbe\xcd\x9e\x7b\x3b\x3f\x57\xf9\x77" "\xb7\xf6\xe7\xb3\xe9\xd2\x5d\x59\x18\x3d\xb6\xd1\xe7\xb3\xdd\x77\xf3" "\xfa\xf9\x1c\xcb\xb2\xcf\x7e\xe3\xb1\x07\xbf\xf6\xe8\x67\x5f\xb7\xe2" "\xf9\xac\xe7\xcd\x8f\x4d\xaf\xff\x67\xf1\x94\x4b\x1b\xde\x7f\x47\x57" "\x78\xff\x8d\xb9\xff\x17\xc5\xfe\xd2\x5d\x3d\x3e\x3c\x3a\x52\xbc\x7e" "\x87\xd3\xd9\x19\x6d\x7a\x3f\x6e\x7e\xaa\x46\xf2\xf7\xae\x5a\xbe\xef" "\xe7\xa6\x57\xf7\x7e\x3c\x1a\xfe\xd9\xe8\xf7\xe3\x9b\x3a\xbc\x1f\x6f" "\x69\xd9\xb6\xd7\xef\xc7\xa3\xad\x0f\x2e\xbe\x1f\xd7\xba\xfd\x69\xc7" "\xfa\xb4\x3e\x9f\x13\x61\x9d\x9c\x9c\xe9\xfc\x7e\x5c\xdf\x66\xcb\xae" "\xb5\xae\xc9\x91\x8e\xef\xc7\x77\x84\x59\x0b\xe7\xff\x55\x21\x29\xa4" "\x5c\xd4\xb0\x76\x56\x5a\xb7\x69\x5f\x23\x23\xa3\xe1\x71\x8d\xc4\x3d" "\x34\xaf\xd3\xdd\x4d\xdb\x8f\x86\x6c\x56\xdf\xd7\x53\xbb\xae\x6e\x9d" "\xde\x75\x47\x71\x5f\xc3\xe9\xd1\x2d\xd9\xa8\x75\x3a\xd9\xb2\x6d\xaf" "\xd7\x69\xfa\xb3\xaf\x95\xd6\x69\xad\xdb\x9f\xbe\x5d\x9d\xd6\xe7\x73" "\x22\xac\x8b\x9b\x76\x77\x5e\xa7\xf5\x6d\x9e\xde\xb3\xfe\xf7\xce\xeb" "\xe2\x7f\x36\xbc\x77\x8e\x75\x5b\x83\xa3\xc3\x63\xf5\x63\x1e\x4d\x8b" "\x30\x7f\xbf\xcf\x16\xaf\x8b\x6b\xf0\xde\xec\x58\x76\x26\x3b\x99\xcd" "\xe6\xd7\x8e\xe5\xeb\xa9\x96\xef\x6b\xea\xbe\xd5\xad\xc1\xb1\xf0\xcf" "\x46\xbf\x57\x6e\xe9\xb0\x06\xef\x6a\xd9\xb6\xd7\x6b\x30\x7d\x1f\x5b" "\x69\xed\xd5\x46\x96\x3f\xf8\x1e\x68\x7d\x3e\x27\xc2\xba\x78\xf2\xbe" "\xce\x6b\xb0\xbe\xcd\xeb\xf7\xf5\xf6\x67\xd7\xbb\xc2\x25\x69\x9b\x86" "\x9f\x5d\x5b\xff\x7c\x6d\xa5\x3f\xf3\xba\xb5\xe5\x34\x5d\xab\xb5\x32" "\x12\x8e\xf3\x1b\xfb\x3a\xff\xd9\x6c\x7d\x9b\x93\xfb\xd7\x9a\x33\x3b" "\x9f\xa7\xbb\xc3\x25\xd7\xb7\x39\x4f\xad\xaf\xdf\x95\x5e\x53\xb3\xd9" "\xc6\x9c\xa7\x2d\xe1\x38\x9f\xdd\xbf\xf2\x79\xaa\x1f\x4f\x7d\x9b\xcf" "\x1c\x58\xe5\x7a\x3a\x94\x65\xd9\xc5\x0f\xdd\x9f\xff\x79\x6f\xf8\xfb" "\x95\xbf\xbb\xf0\xed\x2f\x37\xfd\xbd\x4b\xbb\xbf\xd3\xb9\xf8\xa1\xfb" "\x7f\xf8\xc2\xe3\xff\xb4\x96\xe3\x07\x60\xf0\xfd\xa2\x18\x9b\x8a\xef" "\x75\x0d\x7f\x33\xb5\x9a\xbf\xff\x07\x00\x00\x00\x06\x42\xcc\xfd\x43" "\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xf1\xff\x0a\x4f\xe4\x7f" "\x00\x00\x00\x28\x8d\x98\xfb\x47\xc2\x4c\x2a\x92\xff\xb7\xbc\xfe\xd9" "\xf9\x5f\x5c\xcc\x52\x33\x7f\x31\x88\xd7\xa7\xd3\xf0\x40\xb1\x5d\xec" "\xb8\xce\x84\xaf\x27\x17\x97\xd4\x2f\xbf\xff\x8b\x73\x3f\xf9\xc7\x8b" "\xab\xdb\xf7\x50\x96\x65\x3f\x7b\xe0\x0f\xda\x6e\xbf\xe5\x81\x78\x5c" "\x85\xc9\x70\x9c\x57\xde\xd0\x7c\xf9\x32\x5f\xbe\x67\x55\xfb\x3e\xf2" "\xf0\xc5\xb4\xdf\xc6\xfe\xfa\xe7\xc2\xfd\xc7\xc7\xb3\xda\x65\xd0\xae" "\x82\x3b\x93\x65\xd9\x57\x6f\xfc\x54\xbe\x9f\xc9\xf7\x5e\xce\xe7\xd3" "\x0f\x1c\xc9\xe7\x83\x97\x9e\x78\xbc\xbe\xcd\x73\x07\x8a\xaf\xe3\xed" "\x9f\x79\x49\xb1\xfd\x5f\x84\xf2\xef\xa1\xe3\x47\x9b\x6e\xff\x4c\x38" "\x0f\xdf\x0f\x73\xe6\x2d\xed\xcf\x47\xbc\xdd\x97\x2e\xbf\x6a\xeb\xbe" "\x77\x2f\xed\x2f\xde\xae\xb6\xed\x86\xfc\x61\x3f\xf9\xbe\xe2\x7e\xe3" "\xef\xc9\xf9\xf4\xe3\xc5\xf6\xf1\x3c\xaf\x74\xfc\x5f\xfb\xe4\x53\x5f" "\xaa\x6f\xff\xc8\x2b\xda\x1f\xff\xc5\xa1\x74\x1c\x79\xa5\x3c\xde\xfe" "\xa9\x70\xbf\x5f\x0c\xf3\x7f\x5f\x56\x6c\xdf\xf8\x1c\xd4\xbf\x8e\xc7" "\xff\xf1\x70\xfc\x71\x7f\xf1\x76\xf7\x7e\xe1\xeb\x6d\x8f\xff\xca\x27" "\x8a\xed\xcf\xbe\xb1\xd8\xee\x48\x98\x71\xff\x77\x85\xaf\xb7\xbf\xf1" "\xd9\xf9\xc6\xf3\xf5\x48\xed\x68\xd3\xe3\xca\xde\x54\x6c\x17\xf7\x3f" "\xf3\xed\x3f\xce\xaf\x8f\xf7\x17\xef\xbf\xf5\xf8\x27\x0e\x5f\x6e\x3a" "\x1f\xad\xeb\xe3\xe9\xff\x28\xee\x67\xba\x65\xfb\x78\x79\xdc\x4f\xf4" "\x0f\x2d\xfb\xaf\xdf\x4f\xe3\xfa\x8c\xfb\x7f\xea\x8f\x8e\x34\x3d\x4f" "\xdd\xf6\x7f\xe5\xc1\x67\x5e\x56\xbf\xdf\xd6\xfd\xdf\xdd\xb2\xdd\xd9" "\x0f\xed\xc8\xf7\xbf\x74\x7f\xcd\xbf\xb1\xe9\x2f\x3f\xfe\xa9\xb6\xfb" "\x8b\xc7\x73\xe8\x6f\xcf\x36\x3d\x9e\x43\xef\x0c\xaf\xe3\xb0\xff\x27" "\xdf\x17\xd6\x63\xb8\xfe\xff\xae\x14\xf7\xd7\xfa\xdb\x15\x8e\xbc\xb3" "\xf9\xfd\x27\x6e\xff\xb9\xcd\x17\x9b\x1e\x4f\xf4\xe6\x1f\x17\xfb\xbf" "\xf2\x9a\x13\xf9\x1c\x9f\xb8\x6e\xd3\xf5\x2f\x78\xe1\x0d\x97\x5e\x5e" "\x3f\x77\x59\xf6\xad\xf1\xe2\xfe\xba\xed\xff\xc4\x5f\x9d\x69\x3a\xfe" "\xcf\xdf\x5c\x9c\x8f\x78\x7d\xec\xe8\xb7\xee\x7f\x25\x71\xff\xe7\x3e" "\x3c\x75\xfa\xcc\xc2\x85\xf9\xd9\x74\x56\x1f\xbd\x31\xff\xdd\x39\x6f" "\x2d\x8e\x27\x1e\xef\x8d\xe1\xbd\xb5\xf5\xeb\xc3\x67\xce\xbf\x7f\xee" "\xdc\xe4\xcc\xe4\x4c\x96\x4d\x96\xf7\x57\xe8\x5d\xb5\x2f\x84\xf9\xc3" "\x62\x5c\xea\xbc\xf5\xe2\xb2\x77\xd0\x1d\x0f\x87\xe7\xf3\xd6\x3f\xff" "\xea\xa6\x3b\xff\xfd\x93\xf1\xf2\xff\x7c\x57\x71\xf9\xe5\xb7\x14\xdf" "\xb7\x5e\x19\xb6\xfb\x74\xb8\x7c\x73\x78\xfe\xd6\xb6\xff\xe5\x9e\xbc" "\xfd\xe6\xfc\xf5\x5d\x7b\x3a\x1c\xe1\xe2\xf2\xdf\x17\xbc\x1e\x5b\xb7" "\xff\xcf\xfe\x55\x6d\x18\x1e\x7f\xeb\xcf\x05\x71\xbd\x9f\x7d\xe9\xfb" "\xf3\xf3\x50\xbf\x2e\xff\xbe\x11\x5f\xd7\xeb\x3c\xfe\xef\xce\x16\xf7" "\xf3\x95\x70\x5e\x17\xc3\x6f\x66\xde\x76\xf3\xd2\xfe\x1a\xb7\x8f\xbf" "\x1b\xe1\xf2\x43\xc5\xeb\x7d\xdd\xe7\x2f\xbc\xcd\xc5\xe7\xf5\x6f\xc2" "\xf3\xfd\xb6\xef\x17\xf7\x1f\x8f\x2b\x3e\xde\xef\x86\x9f\x63\xbe\xbe" "\xa5\xf9\xfd\x2e\xae\x8f\xaf\x5c\x1c\x6a\xbd\xff\xfc\xb7\x78\x5c\x0a" "\xef\x27\xd9\xa5\xe2\xfa\xb8\x55\x3c\xdf\x97\x9f\xbb\xb9\xed\xe1\xc5" "\xdf\x43\x92\x5d\xba\x25\xff\xfa\x4f\xd2\xfd\xdc\xb2\xa6\x87\xb9\x92" "\x85\x8f\x2c\x4c\x9f\x9c\x3f\x7d\xe1\x91\xe9\xf3\x73\x0b\xe7\xa7\x17" "\x3e\xf2\xd1\xc3\xa7\xce\x5c\x38\x7d\xfe\x70\xfe\xbb\x3c\x0f\x7f\xa0" "\xdb\xed\x97\xde\x9f\x36\xe5\xef\x4f\xb3\x73\x7b\xf7\x64\xf9\xbb\xd5" "\x99\xf1\x99\x0d\x78\xc3\xba\x86\xc7\x9f\xad\xe6\xf8\xcf\x3e\x7c\x6c" "\x76\xdf\xcc\x9d\xb3\x73\xc7\x8f\x5e\x38\x7e\xfe\xe1\xb3\x73\xe7\x4e" "\x1c\x5b\x58\x38\x36\x37\xbb\x70\xe7\xd1\xe3\xc7\xe7\x3e\xdc\xed\xf6" "\xf3\xb3\x07\x77\xee\x3a\xb0\x7b\xdf\xae\xa9\x13\xf3\xb3\x07\xf7\x1f" "\x38\xb0\xfb\xc0\xd4\xfc\xe9\x33\xf5\xc3\x28\x0e\xaa\x8b\xbd\x33\x1f" "\x9c\x3a\x7d\xee\x70\x7e\x93\x85\x83\x7b\x0e\xec\xbc\xef\xbe\x3d\x33" "\x53\xa7\xce\xcc\xce\x1d\xdc\x37\x33\x33\x75\xa1\xdb\xed\xf3\xef\x4d" "\x53\xf5\x5b\xff\xfe\xd4\xb9\xb9\x93\x47\xcf\xcf\x9f\x9a\x9b\x5a\x98" "\xff\xe8\xdc\xc1\x9d\x07\xf6\xee\xdd\xd5\xf0\xdb\x00\x7f\xd2\xf6\xf6" "\xa7\xce\x1e\x5f\x98\x9c\x3e\x77\xe1\xf4\xf4\x85\x85\xb9\x73\xd3\xc5" "\x63\x99\x3c\x9f\x5f\x5c\xff\xde\xd7\x6d\xff\x94\xd3\xc2\x7f\x15\x3f" "\xcf\xb6\xaa\x15\xbf\x88\x2f\x7b\xc7\xdd\x7b\xd3\xef\x67\xad\xfb\xe2" "\x63\x2b\xde\x55\xb1\x49\xcb\x2f\x10\x7d\x36\xfc\x2e\x9a\x7f\x79\xd1" "\xd9\xfd\xab\xf9\x3a\xe6\xfe\xd1\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8" "\x82\x98\xfb\xc7\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xc7\xc3" "\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x27\xc2\x4c\x2a\x92\xff\x4b" "\xd7\xff\xdf\x72\x71\x55\xfb\xd7\xff\xdf\xb0\xfe\x7f\xd3\xed\xf5\xff" "\xf5\xff\xfb\xa2\xff\xff\x50\xbf\xf5\xff\x8b\xf7\x0b\xfd\xff\xde\x58" "\x6f\xff\x5e\xff\x3f\xd0\xff\xd7\xff\x7f\x1e\xfa\xf3\x83\x7e\xfc\xd5" "\xe9\xff\xb7\xa7\xff\x4f\x3b\xfd\xd6\xff\x8f\xb9\xff\xba\x2c\xab\x64" "\xfe\x07\x00\x00\x80\x2a\x88\xb9\x7f\x53\x98\x89\xfc\x0f\x00\x00\x00" "\xa5\x11\x73\xff\xf5\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x2f" "\x08\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x6f\xbf" "\x7f\xfd\xff\xc1\xa4\xff\xdf\x99\xfe\x7f\x17\xfa\xff\xd3\x59\xb5\xfa" "\xff\x97\x7a\x79\xfc\xfa\xff\xfa\xff\x2c\xd7\x6f\xfd\xff\x98\xfb\x5f" "\x18\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\x0d\x61\x26\xf2" "\x3f\x00\x00\x00\x94\x46\xcc\xfd\x37\x86\x99\xc8\xff\x00\x00\x00\x50" "\x1a\x31\xf7\x6f\x0e\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff" "\xd7\xff\x6f\xbf\x7f\xfd\xff\xc1\xa4\xff\xdf\x99\xfe\x7f\x17\xfa\xff" "\x3e\xff\x5f\xff\x5f\xff\x9f\x9e\xea\xb7\xfe\x7f\xcc\xfd\x2f\x0a\x33" "\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\xc5\x61\x26\xf2\x3f\x00" "\x00\x00\xf4\x9f\x91\xab\xbb\x59\xcc\xfd\x2f\x09\x33\x59\x96\xff\xaf" "\x72\x07\x00\x00\x00\xc0\xf3\x2e\xe6\xfe\x9b\xb2\x96\x22\x78\x45\xfe" "\xfe\x5f\xff\x5f\xff\xbf\xff\xfb\xff\xe3\xe9\x3a\xfd\x7f\xfd\xff\xac" "\x2f\xfb\xff\xc3\x99\xfe\x7f\xff\xd0\xff\xef\x4c\xff\xbf\x0b\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\x7a\xaa\xdf\xfa\xff\x79\xee\xcf\x26\xb2\x97" "\x86\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\x7f\x73\x98\x89\xfc" "\x0f\x00\x00\x00\xa5\x11\x73\xff\x2f\x85\x99\xc8\xff\x00\x00\x00\x50" "\x1a\x31\xf7\x6f\x09\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xef\xff\xfe\xbf" "\xcf\xff\xd7\xff\xef\xf7\xfe\xbf\xcf\xff\xef\x27\xfa\xff\x9d\xe9\xff" "\x77\xa1\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x4f\xf5\x5b\xff\x3f\xe6\xfe" "\x5b\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xbf\x35\xcc\x44" "\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x97\xc3\x4c\xe4\x7f\x00\x00\x00" "\x28\x8d\x98\xfb\xb7\x86\x99\x54\x24\xff\xeb\xff\xf7\x79\xff\x3f\x36" "\x47\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x57\x45\xff\xbf\x33\xfd" "\xff\x2e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xa9\x7e\xeb\xff\xc7\xdc" "\xff\xb2\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\x6f\x0b\x33" "\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x7f\x79\x98\x89\xfc\x0f\x00\x00" "\x00\xa5\x11\x73\xff\x64\x98\x49\x45\xf2\xbf\xfe\x7f\x9f\xf7\xff\x8b" "\x1e\xfc\x98\xcf\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x5f\x1d\xfd\xff" "\xce\xf4\xff\xbb\xd0\xff\xd7\xff\xef\x49\xff\x7f\xf1\x62\x75\xfb\xff" "\xe3\x99\xfe\x3f\x8d\xfa\xad\xff\x1f\x73\xff\xed\x61\x26\x15\xc9\xff" "\x00\x00\x00\x50\x05\x31\xf7\x6f\x0b\x33\x91\xff\x01\x00\x00\xa0\x34" "\x62\xee\xbf\x23\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x7f\x7b\x98" "\x49\x45\xf2\xbf\xfe\xff\x40\xf4\xff\x33\xfd\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\xff\xd5\xd1\xff\xef\x4c\xff\xbf\x0b\xfd\x7f\xfd\x7f\x9f\xff" "\xef\xf3\xff\xe9\xa9\x7e\xeb\xff\xc7\xdc\xff\x8a\x30\x93\x8a\xe4\x7f" "\x00\x00\x00\xa8\x82\x98\xfb\xef\x0c\x33\x91\xff\x01\x00\x00\xa0\x34" "\x62\xee\x7f\x65\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x5d\x61" "\x26\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xed\xf7\xaf" "\xff\x3f\x98\xf4\xff\x3b\xd3\xff\xef\x42\xff\x5f\xff\x5f\xff\x5f\xff" "\x9f\x9e\xea\xb7\xfe\x7f\xcc\xfd\xaf\x0a\x33\xa9\x48\xfe\x07\x00\x00" "\x80\x2a\x88\xb9\x7f\x47\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff" "\xdd\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x53\x61\x26\x15\xc9" "\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x4b\xcf\xa1\xfe\xff\xe0" "\xd3\xff\xef\x4c\xff\xbf\x0b\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x7a\xaa" "\xdf\xfa\xff\x31\xf7\xdf\x13\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10" "\x73\xff\xbd\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xd3\x61\x26" "\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x33\x61\x26\x15\xc9\xff\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\x6b\xea\xff\xbf\x7c\xe9\x7e\xcb\xd4\xff\x6f" "\xb7\x7f\xfd\xff\xc1\xa4\xff\xdf\x99\xfe\x7f\x17\xfa\xff\xfa\xff\xcf" "\x7b\xff\x7f\x54\xff\x9f\x52\xe9\xb7\xfe\x7f\xcc\xfd\x3b\xc3\x4c\x2a" "\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xdf\x15\x66\x22\xff\x03\x00\x00" "\x40\x69\xc4\xdc\xbf\x3b\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x7f" "\x4f\x98\x49\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xcf\xff\x6f" "\xbf\x7f\xfd\xff\xc1\xa4\xff\xdf\x59\xef\xfb\xff\xf1\x21\x6e\x44\xff" "\x7f\x7c\xd9\xf6\xfa\xff\xfa\xff\xfd\x74\xfc\x3e\xff\x5f\xff\x9f\xe5" "\xfa\xad\xff\x1f\x73\xff\x7d\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05" "\x31\xf7\xef\x0d\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xdf\x17\x66" "\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xbf\x3f\xcc\xa4\x22\xf9\x5f\xff" "\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\xfd\xfe\xf5\xff\x07\x93\xfe\x7f" "\x67\x3e\xff\xbf\x0b\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xd6\xe9\xa1\x3f" "\x6c\xfc\xea\xea\xfa\xff\x63\xed\xee\xb8\x27\xfd\xff\x98\xfb\x0f\x84" "\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xff\xea\x30\x13\xf9\x1f" "\x00\x00\x00\x4a\x23\xe6\xfe\x5f\xc9\xe7\xbf\x2e\x5d\x21\xff\x03\x00" "\x00\x40\x69\x14\xb9\x7f\x22\xfb\xd5\x30\x93\x8a\xe4\x7f\xfd\xff\xa6" "\xee\x79\xfd\xe1\xea\xff\xeb\xff\xeb\xff\xeb\xff\xe7\xf4\xff\x07\x93" "\xfe\x7f\x67\xfa\xff\x5d\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x53\x2b" "\xf6\xff\x43\xf4\x6e\xdf\xff\x6f\xab\x27\xfd\xff\x98\xfb\x0f\x86\x99" "\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xff\x6b\x61\x26\xf2\x3f\x00" "\x00\x00\x94\x46\xcc\xfd\xaf\x09\x33\x91\xff\x01\x00\x00\xa0\x34\x62" "\xee\x3f\x14\x66\x52\x91\xfc\xaf\xff\xef\xf3\xff\xf5\xff\xf5\xff\xf5" "\xff\xdb\xef\x7f\xa3\xfb\xff\xf1\x93\x6e\xf5\xff\xd7\x47\xff\xbf\x33" "\xfd\xff\x2e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xa9\xab\xfb\xfc\xff" "\xb6\x7a\xd2\xff\x8f\xb9\xff\xb5\x61\x26\x15\xc9\xff\x00\x00\x00\x50" "\x05\x31\xf7\xdf\x1f\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff\xba" "\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xd7\x87\x99\x54\x24\xff" "\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xb7\xdf\xbf\xcf\xff\x1f\x4c" "\xfa\xff\x9d\xe9\xff\x77\xa1\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x4f\xf5" "\x5b\xff\x3f\xe6\xfe\x37\x84\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4" "\xdc\xff\xc6\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x37\x85\x99" "\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xbf\x39\xcc\xa4\x22\xf9\x5f\xff" "\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\xfd\xfe\xbb\xf5\xff\xe3\xe7\xf5" "\xeb\xff\xf7\x17\xfd\xff\xce\xf4\xff\xbb\xd0\xff\xd7\xff\xd7\xff\xd7" "\xff\xa7\xa7\xfa\xad\xff\x1f\x73\xff\xaf\x87\x99\x54\x24\xff\x03\x00" "\x00\xc0\x40\x9a\x58\xdb\xe6\x31\xf7\x3f\xd0\x7a\x63\xf9\x1f\x00\x00" "\x00\x4a\x23\xe6\xfe\xb7\x84\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7" "\xbf\x35\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf" "\xfd\xfe\x7d\xfe\xff\x60\xd2\xff\xef\x6c\xc0\xfa\xff\x3f\xbf\x21\x5c" "\xae\xff\x5f\xd0\xff\xef\xef\xe3\x5f\x6b\xff\x7f\xa4\xe5\xeb\x6b\xd2" "\xff\xff\xde\x4a\xfd\xff\xc5\xf1\xd6\xdb\xeb\xff\x73\x2d\xf4\x5b\xff" "\x3f\xe6\xfe\xb7\x85\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xff" "\xf6\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x77\x84\x99\xc8\xff" "\x00\x00\x00\x50\x1a\x31\xf7\xff\x46\x98\x49\x45\xf2\xbf\xfe\x7f\xfd" "\x38\x96\xda\xcb\xfa\xff\x65\xed\xff\x0f\xe9\xff\xf7\x5f\xff\xff\xef" "\xbf\x93\x65\xfa\xff\xfa\xff\x3d\xa7\xff\xdf\xd9\x80\xf5\xff\x7d\xfe" "\x7f\x0b\xfd\xff\xfe\x3e\x7e\x9f\xff\xaf\xff\xcf\x72\xfd\xd6\xff\x8f" "\xb9\xff\x9d\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\x3f\x18" "\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff\x50\x98\x89\xfc\x0f\x00" "\x00\x00\xa5\x11\x73\xff\xbb\xc2\x4c\x2a\x92\xff\xf5\xff\x7d\xfe\x7f" "\x35\xfa\xff\x3e\xff\x3f\xeb\xbf\xfe\xbf\xcf\xff\x6f\x38\xab\xfa\xff" "\xbd\xa3\xff\xdf\x99\xfe\x7f\x17\xfa\xff\xfa\xff\xfd\xd6\xff\xff\x6f" "\xfd\x7f\x06\x5b\xbf\xf5\xff\x63\xee\x7f\x38\xcc\xa4\x22\xf9\x1f\x00" "\x00\x00\xaa\x20\xe6\xfe\x77\x87\x99\xc8\xff\x00\x00\x00\x50\x1a\x31" "\xf7\xff\x66\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x7b\xc2\x4c" "\x2a\x92\xff\xf5\xff\x07\xa5\xff\x3f\x39\xa0\xfd\xff\xc7\xf4\xff\xaf" "\x61\xff\xff\xb6\x1b\x8a\xed\xf4\xff\xf5\xff\x59\xa2\xff\xdf\x99\xfe" "\x7f\x17\xfa\xff\xfa\xff\xfd\xd6\xff\xf7\xf9\xff\x0c\xb8\x7e\xeb\xff" "\xc7\xdc\xff\xde\x30\x93\xd5\xe7\xff\x89\x55\x6f\x09\x00\x00\x00\x3c" "\x2f\x62\xee\xff\xad\x30\x93\x8a\xfc\xfd\x3f\x00\x00\x00\x54\x41\xcc" "\xfd\xbf\x1d\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff\x3b\x61\x26" "\x15\xc9\xff\xfa\xff\x83\xd2\xff\xf7\xf9\xff\x99\xfe\xbf\xcf\xff\x6f" "\x79\x3c\xfa\xff\xfa\xff\xed\x6c\x5c\xff\x3f\xbe\xf3\xe8\xff\xeb\xff" "\xeb\xff\x47\xfa\xff\xfa\xff\xfa\xff\xb4\xea\xb7\xfe\x7f\xcc\xfd\xbf" "\x1b\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\xfb\xc2\x4c\xe4" "\x7f\x00\x00\x00\x18\x08\xed\xfe\x9f\xec\x56\x31\xf7\x1f\x0e\x33\x91" "\xff\x01\x00\x00\xa0\x34\x62\xee\x3f\x12\x66\x52\x91\xfc\xaf\xff\xbf" "\x8a\xfe\xff\x78\xf7\xfb\xd3\xff\x6f\x3e\x7e\xfd\xff\xf6\xeb\x63\x4d" "\xfd\xff\x3f\xdb\xf6\x6f\xdf\xf9\xe6\xdb\x8f\xec\xd4\xff\xd7\xff\xd7" "\xff\x5f\x93\x0d\xfd\xfc\xff\xfa\x8b\xdf\xe7\xff\xeb\xff\xeb\xff\x27" "\xfa\xff\xfa\xff\xfa\xff\xb4\xea\xb7\xfe\x7f\xcc\xfd\x47\xc3\x4c\x2a" "\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xff\xbd\x30\x13\xf9\x1f\x00\x00" "\x00\x4a\x23\xe6\xfe\x63\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd" "\xb3\x61\x26\x15\xc9\xff\xfa\xff\x3e\xff\x5f\xff\xbf\x4f\xfb\xff\x03" "\xfc\xf9\xff\xf1\x7c\xe8\xff\x37\xeb\x59\xff\x3f\xbe\xe9\xea\xff\xb7" "\x55\xf4\xef\xd3\x2a\xba\xb6\xfd\xff\x77\x2f\xf5\xc4\xf5\xff\xd7\xda" "\xff\x1f\x6b\x7b\xa9\xfe\xbf\xfe\xff\x20\x1f\xbf\xfe\xbf\xfe\x3f\xcb" "\xf5\x5b\xff\x3f\xe6\xfe\xb9\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82" "\x90\xfb\x87\x8e\x17\x73\xe9\x0a\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe" "\x13\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xef\x0f\x33\xa9\x48" "\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xf7\xf9\xff\xed\xf7\xdf\xa9\xff" "\x5f\x1b\xf1\xf9\xff\xfd\x2a\xf5\xef\x7f\x9a\xbf\x50\xf4\xff\x5b\xf4" "\x4f\xff\xbf\x3d\xfd\x7f\xfd\xff\x41\x3e\x7e\xfd\x7f\xfd\x7f\x96\xeb" "\xb7\xfe\x7f\xcc\xfd\xf3\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31" "\xf7\x7f\x20\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x83\x61\x26" "\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x27\xc3\x4c\x2a\x92\xff\xf5\xff" "\x07\xaf\xff\x1f\xb7\xd5\xff\xd7\xff\xd7\xff\xaf\xe8\xe7\xff\xeb\xff" "\x77\xf4\xff\xec\xdd\x49\x90\x65\x75\x56\xc7\xf1\x9b\x58\x50\x59\x81" "\x61\xb8\x30\xc2\x85\x1b\x23\x58\xba\x74\xc9\x42\xd7\xba\x74\xe1\xc2" "\x8d\x1b\x23\x0c\x23\xc4\x01\x15\x67\x0a\xe7\x11\x45\xc5\x59\x11\x9c" "\x07\x1c\x40\x10\x51\x41\xed\x19\x7a\xa2\x9b\x9e\xa1\xbb\xe9\x79\xa2" "\x07\x7a\x28\x9a\x6e\xa2\x3a\xc8\x3c\xe7\xe4\x74\xf3\xbd\x1c\x5e\xe6" "\xbb\xf7\xff\xff\x7c\x16\x9c\x36\xa9\xe4\x3d\x88\x32\xe1\x47\xd6\x97" "\x7b\xda\xfe\x5e\xff\x1f\xf4\xff\x7d\xf7\xff\x57\xf4\xff\xfa\x7f\xfd" "\x3f\xab\x31\xb5\xfe\x3f\x77\xff\xf7\xc7\x2d\x9d\xec\x7f\x00\x00\x00" "\xe8\x41\xee\xfe\x9b\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x07" "\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x07\xe3\x96\x4e\xf6\xbf" "\xfe\xff\x34\xfd\xff\x4e\xa5\xec\xf9\xff\x7b\xdf\xff\x24\xfa\xff\x6f" "\xd1\xff\x1f\xf6\xfa\xfa\xff\x69\xf7\xff\xd7\x0d\xfa\xff\xd3\xd0\xff" "\x2f\xa6\xff\x5f\x42\xff\xef\xf9\xff\xfa\x7f\xfd\x3f\x2b\x35\xb5\xfe" "\x3f\x77\xff\x0f\xc5\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x1f" "\x8e\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x9b\xe3\x16\xfb\x1f\x00" "\x00\x00\x9a\x91\xbb\xff\x47\xe2\x96\x4e\xf6\xff\xbe\xfe\x7f\x63\xe8" "\xb3\xff\xcf\x8c\x77\x16\xcf\xff\xd7\xff\x7b\xfe\xbf\xfe\x7f\x5b\xab" "\xfd\xbf\xe7\xff\x9f\xce\xf9\xf6\xff\xb7\xbd\xf4\x95\x4f\xff\xaf\xff" "\xd7\xff\x07\xfd\xff\x91\xfa\xff\x8b\x87\x7d\xbe\xfe\x9f\x16\x4d\xad" "\xff\xcf\xdd\xff\xa3\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff" "\xc7\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x96\xb8\xc5\xfe\x07" "\x00\x00\x80\x66\xe4\xee\xff\xf1\xb8\xa5\x93\xfd\xbf\xba\xe7\xff\x5f" "\xda\xfa\xf8\x4c\xfb\xff\xa2\xff\xd7\xff\x6f\x7d\x40\xff\xaf\xff\xd7" "\xff\xcf\x96\xe7\xff\x2f\xd6\x53\xff\x7f\xf3\x93\xd7\xdf\xf4\xdc\x83" "\xdf\xf0\xd0\x71\x5e\x5f\xff\xaf\xff\xf7\xfc\x7f\xfd\x3f\xab\x35\xb5" "\xfe\x3f\x77\xff\x4f\xc4\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe" "\x9f\x8c\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x9f\x8a\x5b\xec\x7f" "\x00\x00\x00\x68\x46\xee\xfe\x9f\x8e\x5b\x3a\xd9\xff\xab\xeb\xff\x67" "\xfd\xfc\xff\xa2\xff\xd7\xff\x6f\x7d\x40\xff\xaf\xff\xd7\xff\xcf\x96" "\xfe\x7f\xb1\x9e\xfa\xff\x93\xbc\xbe\xfe\x5f\xff\xaf\xff\xd7\xff\xb3" "\x5a\x53\xeb\xff\x73\xf7\xff\x4c\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e" "\xe4\xee\xff\xd9\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xbf\x35\x6e" "\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x2f\xc7\x2d\x9d\xec\x7f\xfd\xff" "\xd9\xf7\xff\x2f\xea\xff\xf5\xff\x71\xf5\xff\xfa\x7f\xfd\xff\xd9\xd3" "\xff\x2f\xa6\xff\x5f\x42\xff\xaf\xff\xd7\xff\xeb\xff\x59\xa9\xa9\xf5" "\xff\xb9\xfb\x6f\x8b\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x3f" "\x17\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x3f\x1f\xb7\xd8\xff\x00" "\x00\x00\xd0\x8c\xdc\xfd\xbf\x10\xb7\x74\xb2\xff\xf5\xff\x9e\xff\xaf" "\xff\xd7\xff\xeb\xff\xc7\x5f\x5f\xff\x3f\x4f\xfa\xff\xc5\xf4\xff\x4b" "\xe8\xff\x4f\xdb\xcf\x5f\xab\xff\xd7\xff\xeb\xff\xd9\xed\x98\xfd\xff" "\x0b\x0b\xbe\x6c\xaf\xa4\xff\xcf\xdd\xff\x8b\x71\x4b\x27\xfb\x1f\x00" "\x00\x00\x7a\x90\xbb\xff\x97\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb" "\xff\x97\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x57\xe2\x96\x4e" "\xf6\xbf\xfe\x5f\xff\xaf\xff\x3f\x52\xff\xbf\xf5\x7a\xfa\xff\x7d\xfd" "\xff\xc1\x9f\x7a\x5b\xf4\xff\xe3\xf4\xff\xe7\x43\xff\xbf\xd8\x64\xfa" "\xff\x8d\x0b\xa3\x1f\xd6\xff\xcf\xbe\xff\x9f\xd8\xf3\xff\xf3\x2b\xb6" "\xfe\x5f\xff\xcf\xba\x4c\xed\xf9\xff\xb9\xfb\x7f\x35\x6e\xe9\x64\xff" "\x03\x00\x00\x40\x0f\x72\xf7\xff\x5a\xdc\xb2\x60\xff\x1f\xfb\x5f\xe6" "\x03\x00\x00\x00\x6b\x95\xbb\xff\xd7\xe3\x16\xdf\xff\x07\x00\x00\x80" "\xd9\xcb\xea\x2c\x77\xff\x6f\xc4\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff" "\xef\xf9\xff\x9e\xff\x3f\xfe\xfa\x8b\xfa\xff\x87\x76\xbd\x3f\xfd\xff" "\xb4\xe8\xff\x17\x9b\x4c\xff\x7f\x08\xfd\xbf\xfe\x7f\xce\xef\x5f\xff" "\xaf\xff\xe7\xa0\xa9\xf5\xff\xb9\xfb\x7f\x33\x6e\xe9\x64\xff\x03\x00" "\x00\x40\x0f\x72\xf7\xdf\x1e\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd" "\xbf\x15\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xbf\x1d\xb7\x74\xb2" "\xff\xc7\xfb\xff\x9d\xdf\xaf\xff\x3f\x1a\xfd\xff\xde\xf7\xaf\xff\x1f" "\xff\xf9\xb1\xaa\xfe\x3f\xff\x88\xfa\xff\x85\xfd\xff\xb7\x7a\xfe\x7f" "\x9f\xf4\xff\x8b\x9d\x7f\xff\x7f\x51\xff\xbf\xf7\x8f\x7f\xc2\xfe\x7f" "\xfb\x2b\x8e\xfe\x7f\xda\xef\xbf\xf1\xfe\xff\xd2\xb2\xcf\xd7\xff\x33" "\x66\x6a\xfd\x7f\xee\xfe\x3b\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20" "\x77\xff\xef\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xef\xc6\x2d" "\xf6\x3f\x00\x00\x00\xcc\xda\x37\x7f\xdd\x4e\x0b\x96\xbb\xff\xf7\xe2" "\x96\x4e\xf6\xbf\xe7\xff\xeb\xff\xf5\xff\xf3\xeb\xff\x3d\xff\x7f\xdb" "\x3a\x9f\xff\x3f\x9c\x7b\xff\x7f\x41\xff\x7f\x44\xfa\xff\xc5\x3c\xff" "\x7f\x89\xc9\xf6\xff\xdb\xf4\xff\xd3\x7e\xff\x8d\xf7\xff\x9e\xff\xcf" "\x89\x4c\xad\xff\xcf\xdd\x7f\x67\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e" "\xdc\xf9\xfc\xb0\xb5\xfb\x7f\x7f\x18\xec\x7f\x00\x00\x00\x98\xa3\xdd" "\xbf\x76\x60\xff\x2f\x28\x0d\xb9\xfb\xff\x20\x6e\xb1\xff\x01\x00\x00" "\xa0\x19\xb9\xfb\xff\x30\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd" "\xbf\xfe\x7f\xfc\xf5\xa7\xd5\xff\x7b\xfe\xff\x51\xcd\xba\xff\xbf\xb0" "\xf3\x3f\xf5\xff\xfa\xff\x31\x33\xed\xff\x2f\x34\xd6\xff\xdf\x75\xd8" "\xe7\x4f\xa1\xff\xbf\x55\xff\xcf\xc4\xec\xe9\xff\x1f\xd9\xf9\xf8\xba" "\xfa\xff\xdc\xfd\x7f\x14\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb" "\xff\x38\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff\x24\x6e\xb1\xff" "\x01\x00\x00\xa0\x19\xb9\xfb\xff\x34\x6e\xe9\x64\xff\x9f\x79\xff\x7f" "\xe9\xf0\xd7\xd6\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xd5\x66" "\xdd\xff\x7b\xfe\xbf\xfe\xbf\xcd\xfe\xdf\xf3\xff\x3d\xff\x5f\xff\xdf" "\xb1\x9d\xfe\x7f\xef\xd7\xc3\x75\xf5\xff\xb9\xfb\xff\x2c\x6e\xe9\x64" "\xff\x03\x00\x00\x40\x0f\x72\xf7\xff\x79\xdc\x62\xff\x03\x00\x00\x40" "\x33\x72\xf7\xdf\x15\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x7f\x11" "\xb7\x74\xb2\xff\x3d\xff\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xc7\x5f\x5f" "\xff\x3f\x4f\xfa\xff\xc5\xf4\xff\x4b\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f" "\x2b\xb5\xe7\xf9\xff\xbb\xac\xab\xff\xcf\xdd\x7f\x77\xdc\xd2\xc9\xfe" "\x07\x00\x00\x80\x1e\xe4\xee\xbf\x27\x6e\xb1\xff\x01\x00\x00\xa0\x19" "\xb9\xfb\xff\x32\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff\x2a\x6e" "\xe9\x64\xff\xeb\xff\xcf\xb6\xff\xcf\x8f\xeb\xff\xf5\xff\x83\xfe\x5f" "\xff\xaf\xff\x3f\x17\xdd\xf6\xff\x1b\x63\x7f\x27\x3a\xe8\x90\xfe\xff" "\xf1\xef\xbd\xfc\xed\x7b\x3f\xa2\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f" "\x56\x60\x12\xfd\xff\xd5\x9d\x7f\xba\xcc\xdd\xff\xd7\x71\x4b\x27\xfb" "\x1f\x00\x00\x00\x7a\x90\xbb\xff\x6f\xe2\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\x6f\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xef\xe2" "\x96\x63\xee\xff\xaf\x5d\xe9\xbb\x3a\x3f\xfa\x7f\xcf\xff\xd7\xff\xeb" "\xff\xf5\xff\xe3\xaf\xaf\xff\x9f\xa7\x6e\xfb\xff\x23\xf2\xfc\xff\x25" "\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x95\x3a\x93\xfe\xff\xca\xce\x17\xf7" "\xe3\x3e\xff\x3f\x77\xff\xdf\xc7\x2d\xbe\xff\x0f\x00\x00\x00\xcd\xc8" "\xdd\xff\x0f\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x8f\x71\xcb" "\xd2\xfd\x7f\xc3\xd7\x9c\xe1\xdb\x02\x00\x00\x00\x56\x28\x77\xff\x3f" "\xc5\x2d\x9d\x7c\xff\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xe3\xaf" "\x7f\xd2\xfe\x7f\x73\x18\xa7\xff\x3f\x1f\xfa\xff\xc5\xf4\xff\x4b\xe8" "\xff\xf5\xff\xfa\x7f\xfd\x3f\x2b\x75\x26\xfd\xff\x2e\xc7\xed\xff\x73" "\xf7\xdf\x1b\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xff\x39\x6e" "\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff\x25\x6e\xb1\xff\x01\x00\x00" "\xa0\x19\xb9\xfb\xff\x35\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd" "\xbf\xfe\x7f\xfc\xf5\x3d\xff\x7f\x9e\xf4\xff\x8b\xe9\xff\x87\x61\xb8" "\x6f\xc1\x1b\x18\xeb\xff\xaf\x5e\xd4\xff\xeb\xff\xf5\xff\xfa\x7f\x4e" "\x68\x6a\xfd\x7f\xee\xfe\x7f\x8b\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83" "\xdc\xfd\xf7\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xfd\x71\x8b" "\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xef\x71\x4b\x27\xfb\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\xf5\xff\xe3\xaf\xaf\xff\x9f\x27\xfd\xff\x62\xfa" "\xff\x25\x3c\xff\xff\xb4\xfd\xfc\x55\xfd\xbf\xfe\x5f\xff\xcf\x6e\x53" "\xeb\xff\x73\xf7\x3f\x10\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb" "\x1f\x8c\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xff\x88\x5b\xec\x7f" "\x00\x00\x00\x68\x46\xee\xfe\x87\xe2\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\x9f\x49\xff\x7f\x59\xff\xbf\x9f\xfe\xff\x7c\x9c\x5d\xff" "\x3f\xe8\xff\xf5\xff\xfa\xff\x25\x3c\xff\x5f\xff\xaf\xff\x67\xbf\xf3" "\xea\xff\x5f\x88\xaf\xf7\xcb\xfa\xff\xdc\xfd\xff\x19\xb7\x74\xb2\xff" "\x01\x00\x00\xa0\x07\xb9\xfb\x1f\x8e\x5b\xec\x7f\x00\x00\x00\x68\x46" "\xee\xfe\xff\x8a\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xff\x8e\x5b" "\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xef\xf9\xff\xe3\xaf\xaf\xff" "\x9f\x27\xcf\xff\x5f\x4c\xff\xbf\x84\xfe\x5f\xff\xaf\xff\xd7\xff\xb3" "\x52\xe7\xd5\xff\x1f\xd6\xfb\xef\xff\xbf\x73\xf7\xff\x4f\xdc\xd2\xc9" "\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x24\x6e\xb1\xff\x01\x00\x00\xa0" "\x19\xb9\xfb\x1f\x8d\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xff\x8d" "\x5b\x3a\xd9\xff\xfa\x7f\xfd\xff\xde\xfe\x7f\x18\xf4\xff\xfa\x7f\xfd" "\xff\xb6\x73\xe8\xff\x37\x07\xfd\xff\xca\xe9\xff\x17\xd3\xff\x2f\xa1" "\xff\x6f\xb3\xff\xbf\x66\x68\xa8\xff\xbf\x74\xe8\xe7\xeb\xff\x99\xa2" "\xa9\xf5\xff\xb9\xfb\xff\x2f\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72" "\xf7\xff\x7f\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x2c\x6e\xb1" "\xff\x01\x00\x00\xa0\x19\xb9\xfb\x5f\x1e\xb7\xb4\xb4\xff\x5f\x3c\x3c" "\x7d\x9b\x7f\xff\x7f\x71\xdf\x27\xea\xff\x87\x61\x78\xea\x16\xcf\xff" "\xdf\xd5\xff\xef\xfc\xff\xb5\xfe\x5f\xff\x3f\xb1\xfe\xbf\xfe\xaa\xea" "\xff\x57\x47\xff\xbf\x98\xfe\x7f\x09\xfd\x7f\x9b\xfd\xbf\xe7\xff\xeb" "\xff\x59\x9b\xa9\xf5\xff\xb9\xfb\x5f\x11\xb7\xb4\xb4\xff\x01\x00\x00" "\xa0\x73\xb9\xfb\x5f\x19\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xaf" "\x8a\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x57\xc7\x2d\x9d\xec\xff" "\x3d\xfd\xff\x95\x9d\xf0\x2c\x7f\xff\xf4\xfb\xff\xfd\x9f\xa8\xff\x1f" "\x4e\xf5\xfc\xff\x16\xfb\x7f\xcf\xff\xd7\xff\xeb\xff\x7b\x72\xda\xfe" "\xfe\xee\xcd\xf8\x7b\x9a\xfe\x5f\xff\xaf\xff\x1f\xed\xe7\x37\x0e\xf9" "\xe7\x9e\x21\xfa\xf9\x97\xfe\xfc\xf4\xff\xfa\x7f\xfd\x3f\x69\x6a\xfd" "\x7f\xee\xfe\xd7\xc4\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xc7" "\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xf1\xb8\xc5\xfe\x07\x00" "\x00\x80\x66\xe4\xee\x7f\x6d\xdc\xd2\xc9\xfe\x9f\xff\xf3\xff\xf7\x7f" "\xa2\xfe\x7f\xd0\xff\x77\xd1\xff\x6f\xea\xff\xf5\xff\xfa\xff\x51\x53" "\x79\xfe\xff\x8d\x37\x7e\xdb\x13\xfa\x7f\xfd\x7f\x8b\xfd\xff\x22\x9e" "\xff\xaf\xff\xd7\xff\xb3\xdf\xd4\xfa\xff\xdc\xfd\xaf\x8b\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\x34\x23\x77\xff\x1b\xe3" "\x96\x4e\xf6\xff\xc1\xfe\xff\xda\x61\xbb\x50\xdd\x36\xd6\xff\x47\xa3" "\xa6\xff\xdf\x45\xff\xbf\xf7\xfd\xeb\xff\xc7\x7f\x7e\x78\xfe\xbf\xfe" "\x5f\xff\x7f\xf6\xa6\xd2\xff\x7b\xfe\xff\xc9\xde\xbf\xfe\x7f\x85\xfd" "\xff\x09\x7e\xea\xac\xbb\x9f\x3f\xad\x75\xbf\xff\x63\xf5\xff\xdf\x78" "\xf0\xf3\xf5\xff\xb4\x68\x6a\xfd\x7f\xee\xfe\x27\xe2\x96\x4e\xf6\x3f" "\x00\x00\x00\xf4\x20\x77\xff\x9b\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91" "\xbb\xff\xcd\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x64\xdc\xd2" "\xc9\xfe\xf7\xfc\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x1f\x7f\x7d\xfd\xff" "\x3c\xe9\xff\x17\xd3\xff\x2f\xd1\x52\xff\x7f\x02\x2b\xe9\xe7\xf3\xab" "\xaa\xfe\x7f\xbe\xcf\xff\xff\x2a\xfd\x3f\xab\x33\xb5\xfe\x3f\x77\xff" "\x5b\xe2\x96\xad\xe1\x77\xc3\x57\x9f\xf0\x4f\x13\x00\x00\x00\x98\x90" "\xdc\xfd\x6f\x8d\x5b\x3a\xf9\xfe\x3f\x00\x00\x00\xf4\x20\x77\xff\xdb" "\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xed\x71\x4b\x27\xfb\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xe3\xaf\xaf\xff\x9f\x27\xfd\xff" "\x62\xfa\xff\x25\xfa\xe9\xff\x37\xc7\x3e\xb8\xee\x7e\xfe\xb4\xd6\xfd" "\xfe\x9b\xe9\xff\x3d\xff\x9f\x15\x9a\x5a\xff\x9f\xbb\xff\x1d\x71\x4b" "\x27\xfb\x1f\x00\x00\x00\x66\xec\xda\xe5\x3f\xe4\xf9\xad\xdf\xe6\xee" "\x7f\x67\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x2b\x6e\x39\xda" "\xfe\xbf\x70\x36\xef\x0a\x00\x00\x00\x58\xa5\xdc\xfd\x4f\xc5\x2d\x9d" "\x7c\xff\x5f\xff\xaf\xff\x6f\xbf\xff\xff\x6e\xfd\xff\xbe\xd7\xd7\xff" "\xeb\xff\x5b\xa6\xff\x5f\xfc\x8b\x20\xf5\xff\x4b\xf4\xd3\xff\x8f\x5a" "\x77\x3f\x3f\xf7\xf7\x5f\xfd\xff\xd5\x8b\xfa\x7f\xfd\x3f\x61\x6a\xfd" "\x7f\xee\xfe\xa7\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xbb" "\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x3d\x71\x8b\xfd\x0f\x00" "\x00\x00\xcd\xc8\xdd\xff\xde\xb8\xa5\x93\xfd\xaf\xff\xef\xab\xff\xdf" "\x18\x7a\xec\xff\x3d\xff\xbf\x95\xfe\x7f\x73\xdf\x9f\x8f\xfe\x5f\xff" "\x3f\x66\x3e\xfd\xff\x3d\xa3\xff\x0d\x61\xcf\xff\xd7\xff\xeb\xff\xe7" "\xfb\xfe\x3d\xff\x5f\xff\xcf\x41\x53\xeb\xff\x73\xf7\x3f\xb3\x71\xa1" "\xcb\xfd\x0f\x00\x00\x00\x73\xf5\x9d\xdf\xf4\x7d\x4f\x1f\xf5\xc7\x3e" "\xb3\xf5\xdb\xcd\xe1\x7d\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff" "\xfe\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x40\xdc\xd2\xc9\xfe" "\xd7\xff\xf7\xd5\xff\xf7\xf9\xfc\x7f\xfd\x7f\x2b\xfd\xbf\xe7\xff\xeb" "\xff\x8f\x62\x3e\xfd\xff\x38\xfd\xbf\xfe\x5f\xff\x3f\xdf\xf7\xaf\xff" "\xd7\xff\x73\xd0\xd4\xfa\xff\xdc\xfd\x1f\x8c\x5b\x76\x0d\xbf\xd1\xff" "\x40\x0f\x00\x00\x00\xb0\x3e\xd7\x1d\xef\x87\xe7\xee\xff\x50\xdc\xd2" "\xc9\xf7\xff\x01\x00\x00\xa0\x07\xb9\xfb\x3f\x1c\xb7\x1c\xd8\xff\x57" "\x8f\xf8\xab\xda\x01\x00\x00\x80\xa9\xc9\xdd\xff\x91\xb8\xa5\x93\xef" "\xff\xeb\xff\x27\xde\xff\x0f\x67\xd4\xff\xc7\x8f\xd3\xff\x6f\xd3\xff" "\xeb\xff\xc7\x5e\x5f\xff\x3f\x4f\xfa\xff\xc5\x4e\xd9\xff\x5f\xdd\xd0" "\xff\xeb\xff\x17\xd0\xff\xeb\xff\xf5\xff\xec\x37\xb5\xfe\x3f\x77\xff" "\xc3\x0f\x0c\x5d\xee\x7f\x00\x00\x00\x68\xd4\x9e\x7f\xa3\xf0\xd1\xad" "\xdf\x6e\x0e\x1f\x8b\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x8f\xc7" "\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x27\xe2\x96\x4e\xf6\xbf\xfe" "\x7f\xe2\xfd\xff\x89\x9e\xff\x7f\xa9\xfe\x97\xe7\xff\x77\xde\xff\xdf" "\xbe\x39\xfa\xfa\xfa\x7f\xfd\x7f\xcb\xf4\xff\x8b\x79\xfe\xff\x12\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\xcf\x4a\x1d\xa3\xff\xdf\x1a\xa4\x67\xdd\xff" "\xe7\xee\x7f\x36\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\x9f\x8e\x5b\x3a\xd9\xff\xfa\xff\x35\xf4\xff\x77" "\x5c\x1c\x86\x33\xed\xff\x8f\xf0\xfc\x7f\xfd\x7f\x1f\xfd\xff\x21\xaf" "\xdf\x4e\xff\xff\xf5\xd7\x5f\x7e\xec\xbb\xbe\xe7\xfe\x7b\xf5\xff\xec" "\x38\xcf\xfe\x3f\x7f\x2e\xe8\xff\xf5\xff\xfa\xff\x6d\xfa\x7f\xfd\xbf" "\xfe\x9f\xfd\xa6\xf6\xfc\xff\xdc\xfd\x9f\x89\x5b\x3a\xd9\xff\x00\x00" "\x00\xd0\x83\xdc\xfd\xcf\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff" "\x67\xe3\x96\x97\xf6\xff\xa3\xeb\x7a\x57\x00\x00\x00\xc0\x2a\xe5\xee" "\xff\x5c\xdc\xd2\xc9\xf7\xff\xf5\xff\x2d\x3e\xff\x7f\x9e\xfd\x7f\xfe" "\xb5\x5e\x43\xff\x7f\x79\x7e\xfd\x7f\x36\xc5\xbd\xf7\xff\x9e\xff\xaf" "\xff\x3f\xc8\xf3\xff\x17\xd3\xff\x2f\xa1\xff\xd7\xff\xeb\xff\xf5\xff" "\xac\xd4\xd4\xfa\xff\xdc\xfd\x9f\x8f\x5b\x3a\xd9\xff\x00\x00\x00\xd0" "\x83\xdc\xfd\x5f\x88\x5b\x72\xff\x6f\x1c\xfb\x5f\xdd\x03\x00\x00\x00" "\x13\x93\xbb\xff\x4a\xdc\xe2\xfb\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xcf" "\xc7\x2d\x9d\xec\x7f\xfd\xbf\xfe\x7f\x2a\xfd\x7f\xf2\xfc\xff\x9d\xcf" "\xf3\xfc\xff\x6d\xfa\x7f\xfd\xff\x71\xe8\xff\x17\xd3\xff\x2f\xa1\xff" "\xd7\xff\xeb\xff\xf5\xff\xac\xd4\xd4\xfa\xff\xdc\xfd\x5f\x8c\x5b\x3a" "\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x2f\xc4\x2d\xf6\x3f\x00\x00\x00" "\x34\x23\x77\xff\x97\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xcb" "\x71\x4b\x27\xfb\x5f\xff\x3f\x0c\xd7\x3c\xbb\xf3\x71\xfd\xbf\xfe\x7f" "\xeb\x03\xfa\x7f\xfd\xbf\xfe\x7f\xb6\xa6\xd8\xff\x7f\xc7\x31\x1a\xf4" "\xf3\xe9\xff\x2f\x2d\xff\x81\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x67" "\x05\xa6\xd6\xff\xe7\xee\xff\x4a\x00\x00\x00\xff\xff\xaf\xab\x66\x9e", 25296); syz_mount_image(/*fs=*/0x200000000000, /*dir=*/0x200000000040, /*flags=MS_NOSUID*/ 2, /*opts=*/0x2000000003c0, /*chdir=*/1, /*size=*/0x62d0, /*img=*/0x20000001fb40); break; case 1: // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x183341 (4 bytes) // mode: open_mode = 0x45 (2 bytes) // ] // returns fd memcpy((void*)0x200000000080, "./file1\000", 8); syscall( __NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000080ul, /*flags=O_TRUNC|O_SYNC|O_NOCTTY|O_CREAT|O_CLOEXEC|FASYNC|0x1*/ 0x183341, /*mode=S_IXOTH|S_IROTH|S_IXUSR*/ 0x45); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000, /*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=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }