// https://syzkaller.appspot.com/bug?id=837ed9d972a7ca4384981f14457a5674caf4b719 // 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 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_openat #define __NR_openat 56 #endif #ifndef __NR_pwritev2 #define __NR_pwritev2 287 #endif #ifndef __NR_symlinkat #define __NR_symlinkat 36 #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 < 5; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {13 13 77 c5 fc 35 d4 14 54 d5 d4 1d 29 ad 1a 60 29 59 81 46 // e6 be 16 6e 41 ad 0d bd 40 54 03 3c 9f 33 bb da 82 24 a2 f3 d7 72 e7 // 63 6e 48 b3 3c bf 70 83 72 e8 f1 b9 93 3e c5 12 77 43 be 22 06 20 9e // f0 2d f9 cb f2 f6 e8 80 d3 38 2f 00} (length 0x4e) // } // flags: mount_flags = 0x101c812 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0x3 (1 bytes) // size: len = 0x5fa6 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x5fa6) // } // ] // returns fd_dir memcpy((void*)0x20000400, "jfs\000", 4); memcpy((void*)0x20000300, "\023\023w\305\3745\324\024T\325\324\035)\255\032`)" "Y\201F\346\276\026nA\255\r\275@T\003<\2373\273\332\202$" "\242\363\327r\347cnH\263<\277p\203r\350\361\271\223>" "\305\022wC\276\"\006 \236\360-\371\313\362\366\350\200\3238/\000", 78); memcpy( (void*)0x20007fc0, "\x78\x9c\xec\xdd\x5d\x6f\x1c\x57\xfd\x07\xf0\xdf\x3e\x78\xfd\xd0\x7f" "\xd3\xa8\xfa\xab\x0a\x11\x17\x6e\x0a\xa5\xa5\x34\xcf\x09\x94\xa7\xa6" "\x5c\x70\x01\x48\x20\xa1\x5c\x93\xc8\x75\xab\x40\x5a\x50\x12\x10\xad" "\x2c\xe2\xca\x17\x88\x0b\x1e\x5e\x02\xdc\xf4\x86\x8b\xbe\x91\x22\xf1" "\x0a\x10\x2f\x80\x48\x36\x57\x95\xa0\x0c\x1a\xfb\x9c\x64\xbc\x5e\x7b" "\x1d\x62\xef\xac\x7d\x3e\x1f\xc9\x99\xf9\xed\x99\xf1\x9e\xc9\xd7\xe3" "\xd9\xf5\xcc\xec\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x20\xbe\xf3\xed\x1f\x5e\xe8\x44\xc4\x8d\x5f\xa4\x07\x4e\x46" "\xfc\x5f\xf4\x22\xba\x11\xf3\x75\xbd\x18\xf5\xcc\xb5\xbc\x7c\x3f\x22" "\x4e\xc5\x66\x73\x3c\x17\x11\xbd\xd9\x88\x7a\xfd\xcd\x7f\x9e\x89\xb8" "\x1c\x11\x1f\x9f\x88\x58\xdf\x58\x59\xaa\x1f\xbe\xb8\xcf\x7e\x5c\x39" "\x7f\xef\xce\xa7\xdf\xfd\xd6\xdf\x7e\xfd\xfb\xb5\x53\x3f\x7e\xf3\x47" "\x1f\x0e\xb7\xff\xe0\xff\x2f\x7d\xf4\x9b\xfb\x11\x27\xbf\xff\xda\x47" "\x9f\xde\x3f\x98\x6d\x07\x00\x00\x80\x52\x54\x55\x55\x75\xd2\xdb\xfc" "\xd3\xe9\xfd\x7d\xb7\xed\x4e\x01\x00\x13\x91\x8f\xff\x55\x92\x1f\x57" "\xab\xd5\x6a\xf5\x81\xd6\xbf\xeb\x4e\x57\x7f\xd4\x85\xd6\x4d\xd5\x68" "\xf7\x9b\x45\x44\xac\x36\xd7\xa9\x5f\x33\x38\x1d\x0f\x00\x47\xcc\x6a" "\x7c\xd2\x76\x17\x68\x91\xfc\x8b\xd6\x8f\x88\xa7\xda\xee\x04\x30\xd5" "\x3a\x6d\x77\x80\x43\xb1\xbe\xb1\xb2\xd4\x49\xf9\x76\x9a\xc7\x83\xc5" "\xad\xf6\xfc\x77\xca\x6d\xf9\xaf\x76\x1e\xde\xdf\xb1\xdb\x74\x9c\xe1" "\x6b\x4c\x26\xf5\xf3\xb5\x16\xbd\x78\x76\x97\xfe\xcc\x4f\xa8\x0f\xd3" "\x24\xe7\xdf\x1d\xce\xff\xc6\x56\xfb\x20\x2d\x77\xd8\xf9\x4f\xca\x6e" "\xf9\x0f\xb6\x6e\x7d\x2a\x4e\xce\xbf\x37\x9c\xff\x90\x6d\xf9\xff\x21" "\x22\x8e\x6c\xfe\xdd\x91\xf9\x97\x2a\xe7\xdf\x7f\x9c\xfc\x57\x7b\x47" "\x78\xff\x97\x3f\x00\x00\x00\x00\x00\xc7\x5f\xfe\xfb\xff\xc9\x96\xcf" "\xff\xce\x3e\xf9\xa6\xec\xcb\x5e\xe7\x7f\x17\x27\xd4\x07\x00\x00\x00" "\x00\x00\x00\x00\x38\x68\x4f\x3a\xfe\xdf\x43\xc6\xff\x03\x00\x00\x80" "\xa9\x55\xbf\x57\xaf\xfd\xf1\xc4\xa3\xc7\x76\xfb\x2c\xb6\xfa\xf1\xeb" "\x9d\x88\xa7\x87\x96\x07\x0a\x93\x6e\x96\x59\x68\xbb\x1f\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x50\x92\xfe\xd6\x35\xbc\xd7\x3b\x11\x33" "\x11\xf1\xf4\xc2\x42\x55\x55\xf5\x57\xd3\x70\xfd\xb8\x9e\x74\xfd\xa3" "\xae\xf4\xed\x87\x92\xb5\xfd\x4b\x1e\x00\x00\xb6\x7c\x7c\x22\xdd\xcb" "\x9f\x07\xe0\xeb\x44\xcc\x45\xc4\xf5\xf4\x59\x7f\x33\x0b\x0b\x0b\x55" "\x35\x37\xbf\x50\x2d\x54\xf3\xb3\xf9\xf5\xec\x60\x76\xae\x9a\x6f\xbc" "\xaf\xcd\xd3\xfa\xb1\xd9\xc1\x3e\x5e\x10\xf7\x07\x55\xfd\xcd\xe6\x1a" "\xeb\x35\x8d\x7b\xbf\x3c\xae\x7d\xf8\xfb\xd5\xcf\x35\xa8\x7a\xfb\xe8" "\xd8\x64\xb4\x1c\x3a\x00\xc5\xdb\x3a\x1a\xad\x3b\x22\x1d\x33\x55\xf5" "\x4c\xb4\xfd\x2a\x87\xa3\xc1\xfe\x7f\xfc\xd8\xff\xd9\x8f\xb6\x7f\x4e" "\x01\x00\x00\x80\xc3\x57\x55\x55\xd5\x49\x1f\xe7\x7d\x3a\x9d\xf3\xef" "\xb6\xdd\x29\x00\x60\x12\xe6\xf2\xf1\x7f\xf8\xbc\x80\x5a\xad\x56\xab" "\xd5\xea\xe3\x57\x37\x55\xa3\xdd\x6f\x16\x11\xb1\xda\x5c\xa7\x7e\xcd" "\x60\x38\x7e\x00\x38\x62\x56\xe3\x93\xb6\xbb\x40\x8b\xe4\x5f\xb4\x7e" "\x44\x9c\x6a\xbb\x13\xc0\x54\xeb\xb4\xdd\x01\x0e\xc5\xfa\xc6\xca\x52" "\x27\xe5\xdb\x69\x1e\x0f\xd2\xf8\xee\xf9\x5a\x90\x6d\xf9\xaf\x76\x36" "\xd7\xcb\xeb\x8f\x9a\x8e\x33\x7c\x8d\xc9\xa4\x7e\xbe\xd6\xa2\x17\xcf" "\xee\xd2\x9f\xe7\x26\xd4\x87\x69\x92\xf3\xef\x0e\xe7\x7f\x63\xab\x7d" "\x90\x96\x3b\xec\xfc\x27\x65\xb7\xfc\xeb\xed\x3c\xd9\x42\x7f\xda\x96" "\xf3\xef\x0d\xe7\x3f\xe4\xf8\xe4\xdf\x1d\x99\x7f\xa9\x72\xfe\xfd\xc7" "\xca\xbf\x27\x7f\x00\x00\x00\x00\x00\x98\x62\xf9\xef\xff\x27\xcb\x3d" "\xff\xdb\xcb\xfd\x59\x9c\x50\x1f\x00\x00\x00\x00\x00\x00\x00\xe0\xa0" "\xad\x6f\xac\x2c\xe5\xfb\x5e\xf3\xf9\xff\xcf\x8e\x58\xae\xd3\x9c\x73" "\xff\xe7\xb1\x91\xf3\xef\xec\x3b\x7f\xf7\xff\x1e\x27\x39\xff\xee\x70" "\xfe\x43\x17\xe4\xf4\x1a\xf3\x0f\xde\x78\x94\xff\x3f\x37\x56\x96\x3e" "\xbc\xf7\x8f\xcf\xe4\xe9\xd4\xe7\x3f\xd3\x1b\xd4\xcf\x3d\xd3\xe9\xf6" "\xfa\xe9\x9a\x9f\x6a\xe6\xad\xb8\x15\xb7\x63\x39\xce\xef\x58\xbe\xbf" "\xad\xfd\xc2\x8e\xf6\x99\x6d\xed\x17\xc7\xb4\x5f\xda\xd1\x3e\xa8\xdb" "\xe7\x73\xfb\xd9\x58\x8a\x9f\xc6\xed\x78\xf3\x61\xfb\xec\x98\x0b\xa3" "\xe6\xc6\xb4\x57\x63\xda\x73\xfe\x3d\xfb\x7f\x91\x72\xfe\xfd\xc6\x57" "\x9d\xff\x42\x6a\xef\x0c\x4d\x6b\x0f\x3e\xe8\xee\xd8\xef\x9b\xd3\x51" "\xcf\x73\xed\xcf\xff\x7e\x71\xe7\xde\x35\x79\x6b\xd1\x7b\xb8\x6d\x4d" "\xf5\xf6\x9d\x69\xa1\x3f\x9b\xff\x27\x4f\x0d\xe2\xe7\x77\x97\xef\x9c" "\xfd\xe5\xcd\x7b\xf7\xee\x5c\x88\x34\xd9\xf6\xe8\xc5\x48\x93\x03\x96" "\xf3\x9f\x49\x5f\x39\xff\x97\x5e\xd8\x6a\xcf\xbf\xf7\x9b\xfb\xeb\x83" "\x0f\x06\x8f\x9d\xff\xb4\x58\x8b\xfe\xae\xf9\xbf\xd0\x98\xaf\xb7\xf7" "\xe5\x09\xf7\xad\x0d\x39\xff\x41\xfa\xca\xf9\xe7\x23\xd0\xe8\xfd\xff" "\x28\xe7\xbf\xfb\xfe\xff\x4a\x0b\xfd\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x80\xbd\x54\x55\xb5\x79\x8b\xe8\xb5\x88\xb8\x9a\xee" "\xff\x69\xeb\xde\x4c\x00\x60\xa2\x7e\xfb\xbd\x34\x53\x25\xa1\x56\xab" "\xd5\x6a\xb5\xfa\xd8\xd6\x4d\xd5\x68\xaf\x37\x8b\x98\xdb\xbe\xce\xd5" "\x88\xf8\xd5\xa8\x6f\x06\x00\x4c\xb3\xff\x44\xc4\xdf\xdb\xee\x04\xad" "\x91\x7f\xc1\xf2\xe7\xfd\xd5\xd3\xcf\xb5\xdd\x19\x60\xa2\xee\xbe\xf7" "\xfe\x4f\x6e\xde\xbe\xbd\x7c\xe7\x6e\xdb\x3d\x01\x00\x00\x00\x00\x00" "\x00\x00\xfe\x57\x79\xfc\xcf\xc5\xc6\xf8\xcf\x9b\xd7\x01\x0d\x8d\x1b" "\xbd\x6d\xfc\xd7\x37\x62\xf1\xc8\x8e\xff\xd9\x1d\xf4\x36\xc7\x3a\x4f" "\x1b\xf4\x7c\xec\x3d\xfe\xf7\x99\xd8\x7b\xfc\xef\xfe\x98\xe7\x9b\x19" "\xd3\x3e\x18\xd3\x3e\x3b\xa6\x7d\x6e\x4c\xfb\xc8\x1b\x3d\x1a\x72\xfe" "\xcf\xa7\x8c\x73\xfe\xa7\xd3\x86\x95\x34\xfe\xeb\x4b\x2d\xf4\xa7\x6d" "\x39\xff\x33\x69\xac\xe7\x9c\xff\x17\x86\x96\x6b\xe6\x5f\xfd\xe9\x28" "\xe7\xdf\xdd\x96\xff\xb9\x7b\xef\xfc\xec\xdc\xdd\xf7\xde\x7f\xf5\xd6" "\x3b\x37\xdf\x5e\x7e\x7b\xf9\xdd\x0b\xe7\xaf\x5e\xbe\x74\xe5\xf2\xa5" "\x2b\x57\xce\xbd\x75\xeb\xf6\xf2\xf9\xad\x7f\x5b\xec\xf1\xe1\xca\xf9" "\xe7\xb1\xaf\x5d\x07\x5a\x96\x9c\x7f\xce\x5c\xfe\x65\xc9\xf9\x7f\x3e" "\xd5\xf2\x2f\x4b\xce\xff\xc5\x54\xcb\xbf\x2c\x39\xff\xfc\x7a\x4f\xfe" "\x65\xc9\xf9\xe7\xf7\x3e\xf2\x2f\x4b\xce\xff\xe5\x54\xcb\xbf\x2c\x39" "\xff\x2f\xa6\x5a\xfe\x65\xc9\xf9\xbf\x92\x6a\xf9\x97\x25\xe7\xff\xa5" "\x54\xcb\xbf\x2c\x39\xff\x57\x53\x2d\xff\xb2\xe4\xfc\xcf\xa6\x5a\xfe" "\x65\xc9\xf9\x9f\x4b\xb5\xfc\xcb\x92\xf3\xcf\x67\xb8\xe4\x5f\x96\x9c" "\x7f\xbe\xb2\x41\xfe\x65\xc9\xf9\x5f\x4c\xb5\xfc\xcb\x92\xf3\xbf\x94" "\x6a\xf9\x97\x25\xe7\x7f\x39\xd5\xf2\x2f\x4b\xce\xff\x4a\xaa\xe5\x5f" "\x96\x9c\xff\xd5\x54\xcb\xbf\x2c\x39\xff\x2f\xa7\x5a\xfe\x65\xc9\xf9" "\x7f\x25\xd5\xf2\x2f\x4b\xce\xff\xb5\x54\xcb\xbf\x2c\x39\xff\xaf\xa6" "\x5a\xfe\x65\xc9\xf9\x7f\x2d\xd5\xf2\x2f\x4b\xce\xff\xeb\xa9\x96\x7f" "\x59\x72\xfe\xdf\x48\xb5\xfc\xcb\x92\xf3\xff\x66\xaa\xe5\x5f\x96\x9c" "\xff\xeb\xa9\x96\x7f\x59\x1e\x7d\xfe\xbf\x99\x09\xcf\xfc\xeb\x2f\x11" "\x53\xd0\x0d\x33\xa5\xce\xbc\xfb\xd7\xbd\x96\x69\xfb\x37\x13\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x30\x6c\x12\x57\x1a\xb7\xbd\x8d\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xff\x65\x07\x0e\x04\x00\x00\x00\x00\x80\xfc\x5f\x1b" "\xa1\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x0a" "\x3b\x70\x20\x00\x00\x00\x00\x00\xe4\xff\xda\x08\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\xd8\xbb\xbb\x18\xb9\xce" "\xfa\x0c\xe0\x67\xbf\xec\xb5\x13\x88\x4b\x42\x08\xc1\x90\xb5\xe3\x04" "\x43\x36\xde\x5d\x7f\x25\x26\x18\x1c\x20\x34\x0d\x2d\x4d\x03\xa1\xa5" "\x0d\x75\x8c\xbd\xfe\x00\x7f\xd5\xbb\x86\x24\x8a\x9a\x4d\x93\xb6\x41" "\x44\x6a\xa4\xf6\x22\xbd\x28\x05\x44\x11\x52\x5b\x25\x42\x48\xa5\x52" "\x8a\x22\x15\xa9\xbd\x6b\xae\x40\xb9\x41\xad\x94\x0b\x4b\x4d\x2a\x13" "\x41\x25\xaa\x24\x5b\x9d\x39\xef\xfb\xee\xcc\xec\xec\xcc\xfa\x63\xed" "\x39\xe7\xfc\x7e\x51\xfc\xf7\xce\x9c\x99\x79\xe7\xcc\x99\xd9\x7d\xd6" "\x7a\x66\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9a\x6d\xf8\xf8\xf4\x9f" "\x0f\x64\x59\x96\xff\xdf\xf8\x63\x5d\x96\x5d\x99\xff\x7d\x4d\xb6\x27" "\xff\x72\x6e\xe7\xe5\x5e\x21\x00\x00\x00\x70\xa1\xde\x6c\xfc\xf9\x0f" "\x57\xa5\x13\xf6\x2c\xe3\x42\x4d\xdb\xfc\xdb\xfb\xfe\xe3\x07\xf3\xf3" "\xf3\xf3\xd9\x17\x5f\x3f\xf3\xd6\x5f\xce\xcf\xa7\x33\xc6\xb2\x6c\x68" "\x75\x96\x35\xce\x8b\xfe\xfd\x57\xbf\x9c\x6f\xde\x26\x78\x22\x1b\x1d" "\x18\x6c\xfa\x7a\xb0\xc7\xcd\x0f\xf5\x38\x7f\xb8\xc7\xf9\x23\x3d\xce" "\x5f\xd5\xe3\xfc\xd5\x3d\xce\x1f\xed\x71\xfe\xa2\x1d\xb0\xc8\x9a\xe2" "\xf7\x31\x8d\x2b\xdb\xd4\xf8\xeb\xba\x62\x97\x66\xd7\x64\x23\x8d\xf3" "\x36\x75\xb8\xd4\x13\x03\xab\x07\x07\xe3\xef\x72\x1a\x06\x1a\x97\x99" "\x1f\x39\x98\x1d\xc9\x8e\x66\xd3\xd9\xe4\xa2\xcb\x0c\x34\xfe\xcb\xb2" "\x17\x36\xe4\xb7\x75\x77\x16\x6f\x6b\xb0\xe9\xb6\xd6\x67\x59\x76\xf6" "\xe7\x8f\xee\x8f\x6b\x18\x08\xfb\x78\x53\xd6\x72\x63\x0d\xcd\x8f\xdd" "\x6b\x77\x66\x63\xaf\xff\xfc\xd1\xfd\xdf\x9d\x7d\xf5\xdd\x9d\x66\xcf" "\xdd\xb0\x68\xa5\x59\xb6\x79\x63\xbe\xce\x27\xb3\x6c\xe1\xd7\x55\xd9" "\x40\xb6\x3a\xed\x93\xb8\xce\xc1\xa6\x75\xae\xef\xb0\xce\xa1\x96\x75" "\x0e\x34\x2e\x97\xff\xbd\x7d\x9d\x67\x97\xb9\xce\x78\xbf\x47\xc3\x3a" "\x5f\xea\xb2\xce\xf5\xe1\xb4\x87\x6e\xcc\xb2\x6c\x2e\x5b\x72\x9b\x76" "\x4f\x64\x83\xd9\xda\xb6\x5b\x4d\xfb\x7b\xb4\x38\x22\xf2\xeb\xc8\x1f" "\xca\x77\x64\xc3\xe7\x74\x9c\x6c\x58\xc6\x71\x92\x5f\xe6\x95\x1b\x5b" "\x8f\x93\xf6\x63\x32\xee\xff\x0d\x61\x9f\x0c\x2f\xb1\x86\xe6\x87\xe3" "\xb5\xc7\x57\x2d\xda\xef\xe7\x7b\x9c\xe4\xf7\xba\x1f\x8e\xd5\xfc\xba" "\xef\xcd\x6f\x74\x74\xb4\xf9\x57\xab\x2d\xc7\x6a\xbe\xcd\xa3\x37\x2d" "\x7d\x0c\x74\x7c\xec\x3a\x1c\x03\xe9\x58\x6e\x3a\x06\x36\xf6\x3a\x06" "\x06\x57\x0d\x35\x8e\x81\xc1\x85\x35\x6f\x6c\x39\x06\xa6\x16\x5d\x66" "\x30\x1b\x68\xdc\xd6\x99\x9b\xba\x1f\x03\x13\xb3\xc7\x4e\x4e\xcc\x3c" "\xfc\xc8\xad\x47\x8e\xed\x3b\x34\x7d\x68\xfa\xf8\xd4\xe4\xce\xed\xdb" "\x76\x6c\xdf\xb6\x63\xc7\xc4\xc1\x23\x47\xa7\x27\x8b\x3f\xcf\x6d\x97" "\x96\xc8\xda\x6c\x30\x1d\x83\x1b\xc3\x6b\x4d\x3c\x06\xdf\xdf\xb6\x6d" "\xf3\x21\x39\xff\xad\x8b\xf7\x3c\x18\xed\x93\xe7\x41\x7e\xdf\x3f\x7b" "\x73\xbe\xa0\x2b\x07\xb3\x25\x8e\xf1\x7c\x9b\x27\x37\x5f\xf8\xf3\x20" "\x7d\xdf\x6f\x7a\x1e\x0c\x37\x3d\x0f\x3a\xbe\xa6\x76\x78\x1e\x0c\x2f" "\xe3\x79\x90\x6f\x73\x76\xf3\xf2\xbe\x67\x0e\x37\xfd\xdf\x69\x0d\x2b" "\xf5\x5a\xb8\xae\xe9\x18\xb8\x9c\xdf\x0f\xf3\xdb\x7c\xe0\x03\x4b\xbf" "\x16\xae\x0f\xeb\x7a\xea\x83\xe7\xfa\xfd\x70\x68\xd1\x31\x10\xef\xd6" "\x40\x78\xee\xe5\xa7\xa4\x9f\xf7\x46\x6f\x0f\xfb\x65\xf1\x71\x71\x7d" "\x7e\xc6\x15\xab\xb2\xd3\x33\xd3\xa7\xb6\x3c\xb4\x6f\x76\xf6\xd4\x54" "\x16\xc6\x25\x71\x75\xd3\x63\xd5\x7e\xbc\xac\x6d\xba\x4f\xd9\xa2\xe3" "\x65\xf0\x9c\x8f\x97\x3d\x7f\xff\xc6\xcd\xd7\x77\x38\x7d\x5d\xd8\x57" "\xa3\xb7\x74\x7f\xac\xf2\x6d\xb6\x8f\x77\x7f\xac\x1a\xaf\xee\xad\xfb" "\x73\x55\x56\xec\xcf\x96\x53\xb7\x66\x61\x5c\x64\x97\x7a\x7f\x76\xfa" "\x6e\x96\xef\xcf\x94\x25\xba\xec\xcf\x7c\x9b\x27\x6f\xbd\xf0\x9f\x05" "\x53\x2e\x69\x7a\xfd\x1b\xe9\xf5\xfa\x37\x34\x32\x5c\xbc\xfe\x0d\xa5" "\xbd\x31\xd2\xf2\xfa\xb7\xf8\xa1\x19\x6a\xac\x2c\xcb\xce\xde\xba\xbc" "\xd7\xbf\x91\xf0\xff\xa5\x7e\xfd\xbb\xa6\x4f\x5e\xff\xf2\x7d\xf5\xc0" "\x96\xee\xc7\x40\xbe\xcd\x53\x13\xe7\x7a\x0c\x0c\x77\x7d\xfd\xbb\x31" "\xcc\x81\xb0\x9e\x0f\x84\xc4\x30\xda\x94\xfb\xdf\x6a\x9c\x3f\x57\x1c" "\xa6\x4d\x8f\x65\xcf\xe3\x66\x78\x78\x24\x1c\x37\xc3\xf1\x16\x5b\x8f" "\x9b\x6d\x8b\x2e\x93\x5f\x5b\x7e\xdb\x9b\x27\xcf\xef\xb8\xd9\x7c\x63" "\xeb\x63\xd5\xf2\x73\x4b\x05\x8f\x9b\x7c\x5f\xfd\xd5\x64\xf7\xe3\x26" "\xdf\xe6\xc5\xa9\x0b\x7f\xed\x58\x13\xff\xda\xf4\xda\xb1\xaa\xd7\x31" "\x30\x32\xb4\x2a\x5f\xef\x48\x3a\x08\x8a\xd7\xbb\xf9\x35\xf1\x18\xd8" "\x92\xed\xcf\x4e\x64\x47\xb3\x03\xe9\x32\xf9\xa3\x9c\xdf\xd6\xf8\xd6" "\xe5\x1d\x03\xab\xc2\xff\x97\xfa\xb5\xe3\xba\x3e\x39\x06\xf2\x7d\xf5" "\xec\xd6\xee\xc7\x40\xbe\xcd\x8f\xb7\x5d\xdc\x9f\x9d\x36\x87\x53\xd2" "\x36\x4d\x3f\x3b\xb5\xff\x7e\x61\xa9\xcc\x7f\xfd\xf0\xc2\xf5\xb5\xef" "\xb6\x8b\x9d\xf9\xf3\x75\x7e\xe2\x27\x9f\x4e\xa7\x75\xca\x10\xf9\x36" "\xaf\x6e\x3f\xd7\x9c\xd1\x7d\x3f\xdd\x12\x4e\xb9\xa2\xc3\x7e\x6a\x7f" "\xfe\x2c\x75\x4c\x1f\xc8\x2e\xcd\x7e\xba\x2e\xac\xf3\xe8\x8e\xee\xbf" "\x9b\xca\xb7\xb9\x66\xe7\xe2\xfd\x34\xda\xe9\x78\xda\x93\x65\xd9\xcb" "\x53\x2f\x37\x7e\xdf\x15\x7e\xbf\xfb\xfd\xd3\x3f\xf9\x41\xcb\xef\x7d" "\x3b\xfd\x4e\xf9\xe5\xa9\x97\xef\x99\xb8\xef\xa7\xe7\xb2\x7e\x00\x00" "\xce\xdf\x5b\x8d\x3f\xe7\x56\x15\x3f\x6b\x36\xfd\x8b\xf5\x72\xfe\xfd" "\x1f\x00\x00\x00\x28\x85\x98\xfb\x07\xc3\x4c\xe4\x7f\x00\x00\x00\xa8" "\x8c\x98\xfb\x87\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x87\xc3" "\x4c\x6a\x92\xff\x0f\xdf\xbe\xeb\xb9\x37\x1f\xcb\xd2\xbb\x01\xce\x07" "\xf1\xfc\xb8\x1b\xee\xfd\x48\xb1\x5d\xec\x78\xcf\x85\xaf\xc7\xe6\x17" "\xe4\xa7\x7f\xec\x3b\x23\xcf\x7d\xed\xb1\xe5\xdd\xf6\x60\x96\x65\x6f" "\xdc\xf3\x9e\x8e\xdb\x1f\xfe\x48\x5c\x57\xe1\x64\x5c\xe7\x87\x5a\x4f" "\x5f\xe4\xba\x1b\x96\x75\xfb\x0f\xde\xbf\xb0\x5d\xf3\xfb\x27\x9c\xdd" "\x55\x5c\x7f\xbc\x3f\xcb\x3d\x0c\x62\x57\xf9\x85\x89\xad\x8d\xeb\x1d" "\x7b\x78\xaa\x31\x5f\xbc\x27\x6b\xcc\xfb\xe6\x9e\x7a\xa2\xb8\xfe\xe2" "\xeb\xb8\xfd\x99\x6d\xc5\xf6\x7f\x13\xde\xb4\x64\xcf\xc1\x81\x96\xcb" "\x6f\x0e\xeb\xd9\x14\xe6\x58\x78\x4f\x99\x7b\xf7\x2c\xec\x87\x7c\xc6" "\xcb\x3d\xb7\xfe\x7d\xff\x7a\xf5\xe7\x16\x6e\x2f\x5e\x6e\x60\xe3\xdb" "\x1b\x77\xf3\xd9\x3f\x2e\xae\x37\xbe\x47\xd4\x33\x57\x17\xdb\xc7\xfb" "\xbd\xd4\xfa\xff\xe5\xeb\xdf\x7b\x2e\xdf\xfe\xa1\x9b\x3a\xaf\xff\xb1" "\xc1\xce\xeb\x3f\x13\xae\xf7\x95\x30\x7f\xb5\xbb\xd8\xbe\x79\x9f\x7f" "\xad\x69\xfd\x7f\x1a\xd6\x1f\x6f\x2f\x5e\x6e\xcb\xb7\x7f\xd4\x71\xfd" "\xcf\xbf\xab\xd8\xfe\xf9\x70\x5c\x7c\x33\xcc\xf6\xf5\xdf\xf9\x17\xef" "\x7d\xb3\xd3\xe3\x15\x6f\x67\xcf\x1d\xc5\xe5\xe2\xed\x4f\xfe\xef\xf6" "\xc6\xe5\xe2\xf5\xc5\xeb\x6f\x5f\xff\xe8\x63\x53\x2d\xfb\xa3\xfd\xfa" "\x5f\x7c\xbd\xb8\x9e\xdd\x5f\xf9\xc5\x50\xf3\xf6\xf1\xf4\x78\x3b\xd1" "\x83\x77\xb4\x1e\xdf\x03\xe1\xf1\x6d\xe9\x91\x67\x59\xf6\xbd\x3f\xcb" "\x5a\xf6\x73\xf6\xe1\xe2\x72\xff\xdc\xb6\xfe\x78\x7d\x27\xef\xe8\xbc" "\xfe\x5b\xda\xd6\x79\x72\xe0\x86\xc6\xe5\x17\xee\xcf\xba\x96\xfb\xf5" "\x8d\xbf\xdb\xda\xf1\xfe\xc6\xf5\xec\xf9\xc7\x75\x2d\xf7\xe7\x99\xbb" "\xc2\xfe\x7b\x7d\xe2\xc7\xf9\xf5\x9e\xb9\x2f\x1c\x8f\xe1\xfc\xff\x7b" "\xa9\xb8\xbe\xf6\xf7\x32\x7d\xfe\xae\xd6\xd7\x9b\xb8\xfd\x37\xd7\x15" "\xcf\xdb\x78\x7d\x13\x6d\xeb\x7f\xa6\x6d\xfd\x73\x37\xe4\xfb\xae\xf7" "\xfa\xef\x7e\xbd\x58\xff\xf3\x1f\x5d\xdd\xb2\xfe\x3d\x9f\x0c\xc7\xd3" "\xdd\xc5\xec\xb5\xfe\x43\x7f\x7b\x55\xcb\xe5\xbf\xf5\xdd\xe2\xf1\x38" "\xf5\xd5\xf1\xe3\x27\x66\x4e\x1f\x39\xd0\xb4\x57\x9b\x9f\xc7\xab\x47" "\xd7\xac\xbd\xe2\xca\xb7\xbd\xfd\xaa\xf0\x5a\xda\xfe\xf5\xde\x13\xb3" "\x87\xa7\x4f\x8d\x4d\x8e\x4d\x66\xd9\x58\x09\xdf\x32\x70\xa5\xd7\xff" "\xed\x30\xff\xa7\x18\x73\x17\xff\x16\x0a\x3f\xfd\x45\x71\xdc\x3d\xfd" "\xa9\xe2\xfb\xd6\xfb\x7f\x59\x7c\xfd\x4c\x38\xfd\xc1\xf0\x78\xc6\xef" "\x8f\xdf\xf8\xeb\x91\x96\xe3\xb5\xfd\x71\x9f\xfb\x68\x31\x2f\x74\xfd" "\x1f\x0c\xeb\x58\xae\x77\x7d\xfd\xbf\x6e\x58\xd6\x86\x67\xbe\xf0\xc2" "\xe9\x7f\xfa\x93\x57\xdb\x7f\x2e\x88\xf7\xe7\xe4\x3b\x47\x1b\xf7\xef" "\xd9\x0d\xd7\x36\xce\x1b\x78\xb1\x38\xbf\xfd\xf5\xaa\x97\xff\x7c\x67" "\xeb\xf3\xfa\x67\xc3\x93\x8d\xf9\xc3\xb0\x5f\xe7\xc3\x3b\x33\x6f\xbc" "\xb6\xb8\xbd\xf6\xeb\x8f\xef\x4d\xf2\xf4\x67\x8a\xe7\x6f\xfc\x49\x2e" "\x5e\x3e\x6b\x7b\x3f\x91\x75\x43\xad\xf7\xe3\x42\xd7\xff\xb3\xf0\x73" "\xcc\x8f\xae\x6b\x7d\xfd\x8b\xc7\xc7\x0f\x1f\x6b\x7b\x37\xe7\x75\xd9" "\x40\xbe\x84\xb9\xf0\xfa\x90\xcd\x15\xe7\xc7\xad\xe2\xfe\x7e\xfa\xec" "\xb5\x1d\x6f\x2f\xbe\x0f\x4f\x36\xf7\xee\x73\x59\xe6\x92\x66\x1e\x9e" "\x99\x38\x7a\xe4\xf8\xe9\x87\x26\x66\xa7\x67\x66\x27\x66\x1e\x7e\x64" "\xef\xb1\x13\xa7\x8f\xcf\xee\x6d\xbc\x77\xe9\xde\x2f\xf5\xba\xfc\xc2" "\xf3\x7b\x6d\xe3\xf9\x7d\x60\x7a\xe7\xf6\xac\xf1\x6c\x3f\x51\x8c\x15" "\x76\xb9\xd7\x7f\xf2\xfe\xfd\x07\x6e\x9b\xbc\xf9\xc0\xf4\xc1\x7d\xa7" "\x0f\xce\xde\x7f\x72\xfa\xd4\xa1\xfd\x33\x33\xfb\xa7\x0f\xcc\xdc\xbc" "\xef\xe0\xc1\xe9\xaf\xf6\xba\xfc\x91\x03\xbb\xa7\xb6\xee\xda\x76\xdb" "\xd6\xf1\x43\x47\x0e\xec\xbe\x7d\xd7\xae\x6d\xbb\xc6\x8f\x1c\x3f\x91" "\x2f\xa3\x58\x54\x0f\x3b\x27\xbf\x3c\x7e\xfc\xd4\xde\xc6\x45\x66\x76" "\x6f\xdf\x35\xb5\x63\xc7\xf6\xc9\xf1\x63\x27\x0e\x4c\xef\xbe\x6d\x72" "\x72\xfc\x74\xaf\xcb\x37\xbe\x37\x8d\xe7\x97\xfe\xca\xf8\xa9\xe9\xa3" "\xfb\x66\x8f\x1c\x9b\x1e\x9f\x39\xf2\xc8\xf4\xee\xa9\x5d\x3b\x77\x6e" "\xed\xf9\xee\x8f\xc7\x4e\x1e\x9c\x19\x9b\x38\x75\xfa\xf8\xc4\xe9\x99" "\xe9\x53\x13\xc5\x7d\x19\x9b\x6d\x9c\x9c\x7f\xef\xeb\x75\x79\xea\x61" "\xe6\x44\x78\xbd\x6b\x33\x10\x7e\x3a\xff\xfc\x2d\x3b\xd3\xfb\xe3\xe6" "\xbe\xf3\xf8\x92\x57\x55\x6c\xd2\xfa\xe3\x69\xf6\x5a\x78\x2f\xa8\xf8" "\xfd\xad\xd7\xd7\x31\xf7\x8f\x84\x99\xd4\x24\xff\x03\x00\x00\x40\x1d" "\xc4\xdc\x1f\xde\xf8\x7f\xe1\x0c\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe" "\xd5\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x45\xf2\x1f\x4d\x1f" "\xff\x5e\x97\xfc\x7f\xb1\xfa\xff\x8f\xeb\xff\x37\xe8\xff\xeb\xff\x67" "\xfa\xff\x89\xfe\xbf\xfe\x7f\xa6\xff\xaf\xff\xdf\x83\xfe\xbf\xfe\x7f" "\x99\xd7\xaf\xff\xaf\xff\x4f\x6f\xfd\xd6\xff\x0f\xb9\x3f\x5b\x93\x65" "\xfe\xfd\x1f\x00\x00\x00\x2a\x2a\xe6\xfe\xb5\x61\x26\xf2\x3f\x00\x00" "\x00\x54\x46\xcc\xfd\x57\x84\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7" "\x5f\x19\x66\x52\x93\xfc\xef\xf3\xff\xf5\xff\xf5\xff\xbb\xf5\xff\xe3" "\xb6\xfa\xff\x99\xfe\x7f\x3f\xf4\xff\x37\xfd\xb7\xfe\xff\x22\xfa\xff" "\xfa\xff\x99\xfe\xff\x79\xbb\xdc\xfd\xf9\xb2\xaf\xbf\x0f\xfb\xff\x6b" "\xf4\xff\xe9\x37\xfd\xd6\xff\x8f\xb9\xff\x6d\x61\x26\x35\xc9\xff\x00" "\x00\x00\x50\x07\x31\xf7\xbf\x3d\xcc\x44\xfe\x07\x00\x00\x80\xca\x88" "\xb9\xff\xaa\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x75\x61\x26" "\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\x3e\xff\x5f\xff\xbf\x34\xfd\x7f" "\x9f\xff\xdf\x81\xfe\xbf\xfe\x7f\xa6\xff\x7f\xde\x2e\x77\x7f\xbe\xec" "\xeb\xef\xc3\xfe\xbf\xcf\xff\xa7\xef\xf4\x5b\xff\x3f\xe6\xfe\x5f\x0b" "\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\x1d\x61\x26\xf2\x3f" "\x00\x00\x00\x54\x46\xcc\xfd\x57\x87\x99\xc8\xff\x00\x00\x00\x50\x19" "\x31\xf7\x5f\x13\x66\x52\x93\xfc\x5f\xcf\xfe\xff\x2b\x59\x96\xe9\xff" "\x67\xfa\xff\xfa\xff\x6d\xeb\xd4\xff\xd7\xff\x5f\x09\xfa\xff\xfa\xff" "\xdd\xe8\xff\xeb\xff\x97\x79\xfd\xfa\xff\xfa\xff\xf4\xd6\x6f\xfd\xff" "\x98\xfb\xdf\x19\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\xb5" "\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xef\x0a\x33\x91\xff\x01" "\x00\x00\xa0\x32\x62\xee\xbf\x2e\xcc\xa4\x26\xf9\xbf\x9e\xfd\x7f\x9f" "\xff\xaf\xff\x5f\xd0\xff\x6f\x5d\xa7\xfe\xbf\xfe\xff\x4a\xa8\x75\xff" "\xff\x8d\xc3\xfa\xff\x3d\xe8\xff\xeb\xff\x97\x79\xfd\xfa\xff\xfa\xff" "\xf4\xd6\x6f\xfd\xff\x98\xfb\xdf\x1d\x66\x52\x93\xfc\x0f\x00\x00\x00" "\x75\x10\x73\xff\xf5\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xef" "\x09\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x5f\x1f\x66\x52\x93\xfc" "\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xbf\x92\xca\xd5\xff" "\x1f\x5c\xf2\x1c\x9f\xff\x5f\xd0\xff\x6f\x75\xf1\xfa\xff\x73\x0b\x0b" "\xd0\xff\x2f\xcd\xfa\xf5\xff\xf5\xff\xe9\xad\xdf\xfa\xff\x31\xf7\xbf" "\x37\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\xf7\x85\x99\xc8" "\xff\x00\x00\x00\x50\x19\x31\xf7\xdf\x10\x66\x22\xff\x03\x00\x00\x40" "\x65\xc4\xdc\x3f\x16\x66\x52\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff" "\xaf\xff\xaf\xff\xbf\x92\xca\xd5\xff\x5f\x9a\xfe\x7f\x41\xff\xbf\x95" "\xcf\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xbb\x7e\xeb\xff\xc7\xdc\xbf\x21" "\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\x8d\x61\x26\xf2\x3f" "\x00\x00\x00\x54\x46\xcc\xfd\x37\x86\x99\xc8\xff\x00\x00\x00\x50\x19" "\x31\xf7\x6f\x0a\x33\xa9\x4c\xfe\x7f\x5b\xd7\x73\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\xf5\xff\x57\x92\xfe\xbf\xfe\x7f\x37\xfa\xff\xfa" "\xff\x65\x5e\xbf\xfe\xbf\xfe\x3f\xbd\xf5\x5b\xff\x3f\xe6\xfe\x9b\xc2" "\x4c\x2a\x93\xff\x01\x00\x00\x80\x98\xfb\x6f\x0e\x33\x91\xff\x01\x00" "\x00\xa0\x32\x62\xee\x7f\x7f\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73" "\xff\xe6\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\xff\x12\xf7\xff\x87" "\xf4\xff\x33\xfd\xff\xbe\xa7\xff\xaf\xff\xdf\x8d\xfe\xbf\xfe\x7f\x99" "\xd7\xaf\xff\xaf\xff\x4f\x6f\xfd\xd6\xff\x8f\xb9\xff\x03\x61\x26\x35" "\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\x7f\x30\xcc\x44\xfe\x07\x00\x00" "\x80\xca\x88\xb9\xff\x96\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe" "\xf1\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\xff\x12\xf7\xff\x7d\xfe" "\x7f\xcb\xfa\xf5\xff\xfb\x93\xfe\x7f\x59\xfa\xff\x23\xad\x5f\xea\xff" "\x2f\x8b\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\xdd\xf5\x5b\xff\x3f\xe6\xfe" "\x5b\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\xdf\x12\x66\x22" "\xff\x03\x00\x00\x40\x65\xc4\xdc\x3f\x11\x66\x22\xff\x03\x00\x00\x40" "\x65\xc4\xdc\x3f\x19\x66\x52\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff" "\xaf\xff\xaf\xff\xbf\x92\xf4\xff\xcb\xd2\xff\x6f\xa3\xff\xbf\x2c\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\x74\xd7\x6f\xfd\xff\x98\xfb\xa7\xc2\x4c" "\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\xdf\x1a\x66\x22\xff\x03\x00" "\x00\x40\x65\xc4\xdc\xbf\x2d\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9" "\x7f\x7b\x98\x49\x4d\xf2\x7f\x49\xfa\xff\x5b\x52\x01\x4a\xff\x5f\xff" "\x5f\xff\x5f\xff\x5f\xff\xbf\x54\xf4\xff\xf5\xff\xbb\xd1\xff\xd7\xff" "\x2f\xf3\xfa\xf5\xff\xf5\xff\x69\x35\xd8\xe1\xb4\x7e\xeb\xff\xc7\xdc" "\xbf\x23\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\x9d\x61\x26" "\x0b\xf9\x7f\xdd\xa5\x5f\x15\x00\x00\x00\x70\x31\xc5\xdc\x7f\x5b\x98" "\x89\x7f\xff\x07\x00\x00\x80\xca\x88\xb9\xff\xf6\x30\x93\x9a\xe4\xff" "\x92\xf4\xff\x7d\xfe\xbf\xfe\xbf\xfe\x7f\x13\xfd\x7f\xfd\xff\x32\xd1" "\xff\xd7\xff\xef\x46\xff\x5f\xff\xbf\xcc\xeb\xd7\xff\xd7\xff\xa7\xb7" "\x7e\xeb\xff\xc7\xdc\xbf\x2b\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20" "\xe6\xfe\x0f\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xdf\x11\x66" "\x22\xff\x03\x00\x00\x40\xa9\x74\xfa\x1c\xc2\x28\xe6\xfe\x0f\x87\x99" "\xd4\x24\xff\xeb\xff\x57\xbd\xff\x3f\xbf\x5a\xff\x5f\xff\x5f\xff\xbf" "\xfb\xfa\xf5\xff\x57\x96\xfe\xbf\xfe\x7f\x37\xfa\xff\xfa\xff\x65\x5e" "\xbf\xfe\xbf\xfe\x3f\xbd\xf5\x5b\xff\x3f\xe6\xfe\xdd\x61\x26\x35\xc9" "\xff\x00\x00\x00\x50\x07\x31\xf7\x7f\x24\xcc\x44\xfe\x07\x00\x00\x80" "\xca\x88\xb9\xff\xa3\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x7b" "\xc2\x4c\x6a\x92\xff\xf5\xff\xab\xde\xff\xf7\xf9\xff\xfa\xff\xfa\xff" "\xbd\xd6\xaf\xff\xbf\xb2\xf4\xff\xf5\xff\xbb\xd1\xff\x2f\x67\xff\x3f" "\xfc\xd8\xa2\xff\xdf\x47\xfd\xff\xfc\x18\xd2\xff\xa7\x1f\xf5\x5b\xff" "\x3f\xe6\xfe\x3b\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\xff" "\x58\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xc7\xc3\x4c\xe4\x7f" "\x00\x00\x00\xa8\x8c\x98\xfb\x3f\x11\x66\x52\x93\xfc\xaf\xff\xaf\xff" "\xaf\xff\xaf\xff\x5f\xce\xfe\xff\x88\xfe\x7f\x49\xe8\xff\xaf\x58\xff" "\xbf\xf1\x52\xa8\xff\x5f\xd0\xff\x3f\x3f\x97\xbb\x3f\x5f\xf6\xf5\xf7" "\x53\xff\xdf\xe7\xff\xd3\xaf\xfa\xad\xff\x1f\x73\xff\x5d\x61\x26\x35" "\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\x7f\x32\xcc\x44\xfe\x07\x00\x00" "\x80\xca\x88\xb9\xff\xd7\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb" "\xef\x0e\x33\xa9\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x2f\x67\xff" "\xdf\xe7\xff\x97\x85\xfe\xbf\xcf\xff\xef\x46\xff\x5f\xff\xbf\xcc\xeb" "\xd7\xff\xd7\xff\xa7\xb7\x7e\xeb\xff\xc7\xdc\xff\x1b\x61\x26\x35\xc9" "\xff\x00\x00\x00\x50\x07\x31\xf7\xdf\x13\x66\x22\xff\x03\x00\x00\x40" "\x65\xc4\xdc\xff\xa9\x30\x13\xf9\x1f\x00\x00\x00\x4a\x66\xd5\x92\xe7" "\xc4\xdc\xff\x9b\x61\x26\x35\xc9\xff\xe5\xeb\xff\x8f\x95\xb2\xff\x3f" "\x98\xae\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xff\x62\xd2\xff\xd7" "\xff\xcf\xf4\xff\xcf\xdb\xe5\xee\xcf\x97\x7d\xfd\xfa\xff\xfa\xff\xf4" "\xd6\x6f\xfd\xff\x98\xfb\x7f\x2b\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea" "\x20\xe6\xfe\x4f\x87\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xff\x76" "\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xbd\x61\x26\x35\xc9\xff" "\x17\xbb\xff\xdf\x7e\xf9\x6e\x7c\xfe\xbf\xfe\x7f\xa6\xff\xaf\xff\xaf" "\xff\xaf\xff\x7f\x81\xf4\xff\xf5\xff\x33\xfd\xff\xf3\x76\xb9\xfb\xf3" "\x25\x5e\x7f\xfc\x51\x44\xff\x5f\xff\x9f\x1e\xfa\xad\xff\x1f\x73\xff" "\xef\x84\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\x7f\x5f\x98\x89" "\xfc\x0f\x00\x00\x00\x7d\xea\xf0\x39\x5f\x22\xe6\xfe\xcf\x84\x99\xc8" "\xff\x00\x00\x00\x50\x19\x31\xf7\x7f\x36\xcc\xa4\x26\xf9\xbf\x7c\x9f" "\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x5f\x26\xfa\xff\xfa\xff" "\xdd\xe8\xff\xeb\xff\x97\x79\xfd\x3e\xff\x5f\xff\x9f\xde\xfa\xad\xff" "\x1f\x73\xff\xfd\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\x7f" "\x2e\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x77\xc3\x4c\xe4\x7f" "\x00\x00\x00\xa8\x8c\x98\xfb\x7f\x2f\xcc\xa4\x26\xf9\x5f\xff\x5f\xff" "\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x7f\x25\xe9\xff\x2f\xee\xff\xe7\xaf" "\x61\xfa\xff\x05\xfd\x7f\xfd\xff\x32\xaf\x5f\xff\x5f\xff\x9f\xde\xfa" "\xad\xff\x1f\x73\xff\xe7\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62" "\xee\xff\xfd\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x3f\x08\x33" "\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x7f\x20\xcc\xa4\x26\xf9\x5f\xff" "\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x7f\x25\xe9\xff\xfb\xfc\xff" "\x6e\xf4\xff\xf5\xff\xcb\xbc\x7e\xfd\x7f\xfd\x7f\x7a\xeb\xb7\xfe\x7f" "\xcc\xfd\x5f\x08\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\x0f" "\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xf7\x86\x99\xc8\xff\x00" "\x00\x00\x50\x19\x31\xf7\x3f\x18\x66\x52\x93\xfc\xaf\xff\xaf\xff\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\xbf\x92\xf4\xff\xf5\xff\xbb\xd1\xff\xd7" "\xff\x2f\xf3\xfa\xf5\xff\xf5\xff\xe9\xad\xdf\xfa\xff\x31\xf7\xef\x0b" "\x33\xd9\xd3\x7a\x33\x00\x00\x00\x40\x79\xc5\xdc\xff\xc5\x30\x93\x9a" "\xfc\xfb\x3f\x00\x00\x00\xd4\x41\xcc\xfd\xfb\xc3\x4c\xe4\x7f\x00\x00" "\x00\xa8\x8c\x98\xfb\x0f\x84\x99\xd4\x24\xff\xeb\xff\xeb\xff\xeb\xff" "\xeb\xff\xeb\xff\xeb\xff\xaf\x24\xfd\x7f\xfd\xff\x6e\xf4\xff\xf5\xff" "\xcb\xbc\x7e\xfd\x7f\xfd\x7f\x7a\xeb\xb7\xfe\x7f\xcc\xfd\xd3\x61\x26" "\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\x1f\x0c\x33\x91\xff\x01\x00" "\x00\xa0\x32\x62\xee\x3f\x14\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc" "\x7f\x38\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\x5f\xff\xbf\xb6\xfd\xff\x97" "\xbe\xdf\xb6\x4e\xfd\x7f\xfd\xff\x95\xa0\xff\xaf\xff\xdf\x8d\xfe\xbf" "\xfe\x7f\x99\xd7\xaf\xff\xaf\xff\x4f\x6f\xfd\xd6\xff\x8f\xb9\xff\x48" "\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x5f\x0a\x33\x91\xff" "\x01\x00\x00\xa0\x32\x62\xee\xff\x72\x98\x89\xfc\x0f\x00\x00\x00\x95" "\x11\x73\xff\xd1\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\xff\xda\xf6" "\xff\x97\xf7\xf9\xff\x6b\x16\x6e\x57\xff\x5f\xff\xff\x7c\xe8\xff\xeb" "\xff\x77\xa3\xff\xaf\xff\x5f\xe6\xf5\xeb\xff\xeb\xff\xd3\x5b\xbf\xf5" "\xff\x63\xee\x3f\x16\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff" "\xf1\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x13\x61\x26\xf2\x3f" "\x00\x00\x00\x54\x46\xcc\xfd\x27\xc3\x4c\x6a\x92\xff\xf5\xff\xcf\xad" "\xff\x3f\xb0\x44\x37\x50\xff\xbf\xf3\xfa\xf5\xff\x2b\xd0\xff\x6f\xa2" "\xff\xaf\xff\x7f\x3e\xf4\xff\xf5\xff\xbb\xd1\xff\xd7\xff\x2f\xf3\xfa" "\xf5\xff\xf5\xff\xe9\xad\xdf\xfa\xff\x31\xf7\xff\x51\x98\x49\x4d\xf2" "\x3f\x00\x00\x00\xd4\x41\xcc\xfd\xa7\xc2\x4c\xe4\x7f\x00\x00\x00\xa8" "\x8c\x98\xfb\x67\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x67\xc3" "\x4c\x6a\x92\xff\xf5\xff\x7d\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff" "\x4a\xd2\xff\xd7\xff\xef\x46\xff\x5f\xff\xbf\xcc\xeb\xd7\xff\xd7\xff" "\xa7\xb7\x7e\xeb\xff\xc7\xdc\x7f\x3a\xcc\xff\x67\xef\xbe\x97\x3c\x2b" "\xab\x3d\x0e\x37\xc3\x99\xc3\x50\xa8\xd7\x40\x79\x07\x5e\x81\x97\xe0" "\x35\x58\x65\x79\x09\xe6\x00\x66\xcc\x8a\x39\x27\xcc\x09\xb3\x62\xce" "\x39\x67\xcc\x18\x51\x14\x73\xac\xd2\x9a\xee\xb5\x16\x30\xf4\xec\xdd" "\x03\xfd\xeb\x79\xf7\xbb\x9e\xe7\x0f\x97\xb6\x50\xbc\x53\x70\xaa\xce" "\xb7\xc6\x4f\xed\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x1f\x14\xb7" "\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x0f\x8e\x5b\xec\x7f\x00\x00\x00" "\x98\x46\xee\xfe\x87\xc4\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\xbb\xa4\xff\xd7\xff\x2f\xd1\xff\xeb\xff\xb7\xfc\x7e" "\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb\x1f\x1a\xb7\x34\xd9\xff\x00" "\x00\x00\xd0\x41\xee\xfe\x87\xc5\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77" "\xff\xc3\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x11\x71\x4b\x93" "\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x2e\xe9\xff\xf5" "\xff\x4b\xf4\xff\xfa\xff\x2d\xbf\x5f\xff\xaf\xff\x67\xdd\x68\xfd\x7f" "\xee\xfe\x47\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x51\x71" "\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xe8\xb8\xc5\xfe\x07\x00\x00" "\x80\x69\xe4\xee\xbf\x2a\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xff\x06" "\xfb\xff\xff\xd3\xff\xeb\xff\xb7\x43\xff\xaf\xff\x5f\xa2\xff\xd7\xff" "\x6f\xf9\xfd\xfa\x7f\xfd\x3f\xeb\x46\xeb\xff\x73\xf7\x5f\x1d\xb7\x34" "\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xc7\xc4\x2d\xf6\x3f\x00\x00\x00" "\x6c\xce\xbd\x1f\x78\xf8\xcf\x73\xf7\x3f\x36\x6e\xb1\xff\x01\x00\x00" "\x60\x1a\xb9\xfb\x1f\x17\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x7f\x83" "\xfd\xbf\xef\xff\xeb\xff\x37\x44\xff\xaf\xff\x5f\xa2\xff\xd7\xff\x6f" "\xf9\xfd\xfa\x7f\xfd\x3f\xeb\x46\xeb\xff\x73\xf7\x3f\x3e\x6e\x69\xb2" "\xff\x01\x00\x00\xa0\x83\xdc\xfd\x4f\x88\x5b\xec\x7f\x00\x00\x00\x98" "\x46\xee\xfe\x27\xc6\x2d\xf6\x3f\x00\x00\x00\x6c\xdd\xe9\xfc\x37\xb9" "\xfb\x9f\x14\xb7\x34\xd9\xff\xfa\xff\x93\xeb\xff\x2f\xd1\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xff\xb1\xd3\xff\xeb\xff\xf7\xf4\xff\x77\xd9\xc5" "\xee\xe7\xb7\xfe\x7e\xfd\xbf\xfe\x9f\x75\x3b\xef\xff\xef\x77\xcd\xfe" "\x3d\x6a\xff\x9f\xbb\xff\x9a\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72" "\xf7\x3f\x39\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x9f\x12\xb7\xd8" "\xff\x00\x00\x00\x30\x8d\xdc\xfd\x4f\x8d\x5b\x9a\xec\x7f\xfd\xbf\xef" "\xff\xdf\xd6\xff\xff\xf7\x12\xfd\xbf\xfe\x5f\xff\x7f\xdb\xcf\xf5\xff" "\xc7\x43\xff\xaf\xff\x5f\xa2\xff\xd7\xff\x6f\xf9\xfd\xfa\x7f\xfd\x3f" "\xeb\x76\xde\xff\xaf\xf4\xfe\xe7\xfe\xe7\xdc\xfd\x4f\x8b\x5b\x9a\xec" "\x7f\x00\x00\x00\xe8\x20\x77\xff\xd3\xe3\x16\xfb\x1f\x00\x00\x00\xa6" "\x91\xbb\xff\x19\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xcc\xb8" "\xa5\xc9\xfe\xd7\xff\xeb\xff\x7d\xff\x5f\xff\xaf\xff\xd7\xff\xef\x92" "\xfe\x7f\xd8\xfe\xff\xdc\xff\xd3\xbb\x23\xfd\xff\x91\xe8\xff\xf5\xff" "\xe7\xeb\xff\xef\x7b\x84\xf7\xeb\xff\xe9\x60\xb4\xfe\x3f\x77\xff\xb3" "\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xec\xb8\xc5\xfe\x07" "\x00\x00\x80\x69\xe4\xee\xbf\x36\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9" "\xfb\x9f\x13\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x7f\xc7\xfe" "\xff\x54\xcb\xfe\xff\xec\xcf\xf4\xff\xbb\xa1\xff\x1f\xb6\xff\x5f\xa6" "\xff\x3f\x12\xfd\xbf\xfe\xdf\xf7\xff\xf5\xff\x2c\x1b\xad\xff\xcf\xdd" "\xff\xdc\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x2f\x6e\xb1" "\xff\x01\x00\x00\x60\x1a\xb9\xfb\x9f\x1f\xb7\xd8\xff\x00\x00\x00\x30" "\x8d\xdc\xfd\x2f\x88\x5b\x4e\x5d\xac\x17\x9d\x2c\xfd\xbf\xfe\x5f\xff" "\xaf\xff\xbf\x5b\xdf\xff\xbf\x74\x8e\xfe\xdf\xf7\xff\x77\x47\xff\xaf" "\xff\x5f\xa2\xff\xd7\xff\xef\xfa\xfd\xa7\x77\xf3\xfe\x9b\xee\x75\x70" "\xf5\xff\xfa\x7f\x56\x8c\xd6\xff\xe7\xee\x7f\x61\xdc\xe2\xf7\xff\x01" "\x00\x00\x60\x0e\xa7\xf6\x6a\xf7\xbf\x28\x6e\xb1\xff\x01\x00\x00\x60" "\x1a\xb9\xfb\x5f\x1c\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x2f\x89" "\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xbf\x5b\xfd\xff\x24\xdf" "\xff\xd7\xff\xef\x8e\xfe\x5f\xff\xbf\xe4\xa8\xfd\xff\x9e\xfe\xbf\x7e" "\x2d\xfa\xff\x71\xde\xef\xfb\xff\xfa\x7f\xd6\x8d\xd6\xff\xe7\xee\x7f" "\x69\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x5f\x16\xb7\xd8\xff" "\x00\x00\x00\x30\x8d\xdc\xfd\x2f\x8f\x5b\xec\x7f\x00\x00\x00\x98\x46" "\xee\xfe\x57\xc4\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x9f\x68" "\xff\x7f\x4a\xff\xaf\xff\x3f\x5e\xfa\xff\x1e\xfd\xbf\xef\xff\xdf\xf6" "\x6b\xd1\xff\x8f\xf3\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb\x5f" "\x19\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x57\xc5\x2d\xf6\x3f" "\x00\x00\x00\x4c\x23\x77\xff\xab\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91" "\xbb\xff\x35\x71\xcb\xb9\xfb\xff\xd4\x49\xbe\xea\xe4\xe8\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xef\xff\xeb\xff\x77\x49\xff\xaf\xff\x5f\xa2\xff\x3f" "\xbc\xff\x3f\x73\x9e\xbf\x9e\xfe\x7f\xac\xf7\xeb\xff\xf5\xff\xac\x1b" "\xad\xff\xcf\xdd\x7f\x5d\xdc\xe2\xf7\xff\x01\x00\x00\x60\x1a\xb9\xfb" "\x5f\x1b\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\xaf\x8b\x5b\xec\x7f" "\x00\x00\x00\x98\x46\xee\xfe\xd7\xc7\x2d\x4d\xf6\xff\xf9\xfa\xff\x5b" "\xaf\x38\xf8\xef\xf5\xff\x47\xa3\xff\x3f\xfc\xfd\x1b\xea\xff\x2f\xd1" "\xff\xeb\xff\xf5\xff\xbb\xa1\xff\xd7\xff\x2f\xd1\xff\xfb\xfe\xff\x96" "\xdf\xaf\xff\xd7\xff\xb3\x6e\xb4\xfe\x3f\x77\xff\x1b\xe2\x96\x26\xfb" "\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xc6\xb8\xc5\xfe\x07\x00\x00\x80\x69" "\xe4\xee\x7f\x53\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xbf\x39\x6e" "\x69\xb2\xff\x8f\xff\xfb\xff\x57\xea\xff\xf5\xff\x5b\xec\xff\x7d\xff" "\x5f\xff\xaf\xff\xdf\x11\xfd\xbf\xfe\x7f\x89\xfe\x5f\xff\xbf\xe5\xf7" "\xeb\xff\xf5\xff\xac\x1b\xad\xff\xcf\xdd\xff\x96\xb8\xa5\xc9\xfe\x07" "\x00\x00\x80\x0e\x72\xf7\xbf\x35\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9" "\xfb\xdf\x16\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x6f\x8f\x5b\x9a" "\xec\xff\xe3\xef\xff\x7d\xff\x3f\xba\xec\x7b\xc4\x8f\xf4\xff\x6b\xfd" "\xff\x29\xfd\x7f\xd2\xff\xc7\xdf\x57\xfd\xbf\xfe\xff\x02\x6c\xb5\xff" "\x3f\xa5\xff\xdf\xa7\xff\xd7\xff\x6f\xf9\xfd\xfa\x7f\xfd\x3f\xeb\x46" "\xeb\xff\x73\xf7\x5f\xbf\x3f\xf5\xfa\xed\x7f\x00\x00\x00\xe8\xe0\xfa" "\xfd\x7f\x3d\xb3\xf7\x8e\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f" "\x67\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xbf\x2b\x6e\x69\xb2\xff" "\xf5\xff\xbe\xff\x7f\xd1\xfb\x7f\xdf\xff\x2f\xfa\xff\xf8\xfb\xaa\xff" "\xd7\xff\x5f\x80\xad\xf6\xff\xbe\xff\x7f\x40\xff\xaf\xff\xdf\xf2\xfb" "\xf5\xff\xfa\x7f\xd6\x8d\xd6\xff\xe7\xee\x7f\x77\xdc\xd2\x64\xff\x03" "\x00\x00\x40\x07\xb9\xfb\xdf\x13\xb7\xd8\xff\x00\x00\x00\x30\x8d\xd8" "\xfd\x07\xff\xe3\x77\xfb\x1f\x00\x00\x00\xa6\xf4\xde\xfd\x7f\x3d\xb3" "\xf7\xbe\xb8\xa5\xc9\xfe\x6f\xdc\xff\x5f\x79\x77\xfb\xff\xcb\x6f\xf7" "\xef\xf5\xff\x87\xbf\x5f\xff\x7f\x2c\xfd\xff\xf5\xe7\xfe\xb3\xa7\xff" "\xd7\xff\x6f\x89\xfe\x5f\xff\xbf\x44\xff\xaf\xff\xdf\xf2\xfb\xc7\xe9" "\xff\xe3\x07\x57\xe9\xff\x19\xcf\x68\xfd\x7f\xee\xfe\xf7\xc7\x2d\x4d" "\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x03\x71\x8b\xfd\x0f\x00\x00\x00" "\xd3\xc8\xdd\x7f\x43\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x7f\x30" "\x6e\x69\xb2\xff\x1b\xf7\xff\x93\x7c\xff\xff\xfe\xb7\xc4\x0b\xf4\xff" "\xf3\xf6\xff\xbe\xff\x1f\x57\xff\xaf\xff\x3f\x8c\xfe\x7f\x82\xfe\xff" "\xec\xff\xfb\xa5\xff\xaf\xbf\xbe\xfe\x7f\x3b\xef\x1f\xa7\xff\xf7\xfd" "\x7f\xc6\x35\x5a\xff\x9f\xbb\xff\x43\x71\x4b\x93\xfd\x0f\x00\x00\x00" "\x1d\xe4\xee\xff\x70\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x7f\x24" "\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x3f\x1a\xb7\x34\xd9\xff\xfa" "\xff\xad\xf7\xff\xbe\xff\xaf\xff\xd7\xff\xeb\xff\xc7\xa6\xff\xd7\xff" "\x2f\xf1\xfd\x7f\xfd\xff\x96\xdf\xaf\xff\xd7\xff\xb3\x6e\xb4\xfe\x3f" "\x77\xff\xc7\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xf1\xb8" "\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x44\xdc\x62\xff\x03\x00\x00" "\xc0\x34\x72\xf7\x7f\x32\x6e\x69\xb2\xff\xf5\xff\xfa\xff\x5d\xf5\xff" "\x67\xff\x22\xfa\xff\x26\xfd\xff\xd5\x97\xe5\x1f\xaf\xff\xd7\xff\xdf" "\x89\xfe\x5f\xff\xbf\x44\xff\xaf\xff\xdf\xf2\xfb\xf5\xff\xfa\x7f\xd6" "\x8d\xd6\xff\xe7\xee\xff\x54\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9" "\xfb\x3f\x1d\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x9f\x89\x5b\xec" "\x7f\x00\x00\x00\x98\x46\xee\xfe\xcf\xc6\x0d\xf7\xb9\xe7\xc5\x7b\xd2" "\xf1\x3a\x7d\x9e\x9f\x47\xae\xab\xff\xd7\xff\xfb\xfe\xbf\xfe\xdf\xf7" "\xff\xf5\xff\xbb\xa4\xff\xd7\xff\x2f\xd1\xff\xeb\xff\xb7\xfc\x7e\xfd" "\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb\x3f\x17\xb7\xf8\xfd\x7f\x00\x00" "\x00\x98\x46\xee\xfe\xcf\xc7\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff" "\x17\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x8b\x71\x4b\x93\xfd" "\xaf\xff\xd7\xff\xeb\xff\x37\xdb\xff\x5f\xae\xff\xbf\xe3\xfb\xf5\xff" "\x63\xd2\xff\xeb\xff\x97\xe8\xff\xf5\xff\x5b\x7e\xff\x91\xfb\xff\x1b" "\x0f\xff\xf3\xf5\xff\x74\x30\x5a\xff\x9f\xbb\xff\x4b\x71\x4b\x93\xfd" "\x0f\x00\x00\x00\x1d\xe4\xee\xff\x72\xdc\x62\xff\x03\x00\x00\xc0\x34" "\x72\xf7\x7f\x25\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\xbf\x1a\xb7" "\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x7f\xb3\xfd\xbf\xef\xff\x9f\xf3\x7e" "\xfd\xff\x98\xf4\xff\xfa\xff\x03\x37\x1f\xfa\x53\xfd\xbf\xfe\x7f\xcb" "\xef\xf7\xfd\x7f\xfd\x3f\xeb\x46\xeb\xff\x73\xf7\x7f\x2d\x6e\x69\xb2" "\xff\x01\x00\x00\xa0\x83\xdc\xfd\x5f\x8f\x5b\xec\x7f\x00\x00\x00\x98" "\x46\xee\xfe\x6f\xc4\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x37\xe3" "\x96\x26\xfb\x7f\xdb\xfd\xff\xb9\xd5\xb0\xfe\x5f\xff\xaf\xff\xd7\xff" "\xeb\xff\x47\xa3\xff\xd7\xff\x2f\xd1\xff\xeb\xff\xb7\xfc\x7e\xfd\xbf" "\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb\xbf\x15\xb7\x34\xd9\xff\x00\x00\x00" "\xd0\x41\xee\xfe\x6f\xc7\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x77" "\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\xbb\x71\x4b\x93\xfd\xbf" "\xed\xfe\xff\x10\xb7\xeb\xff\x97\xfe\x30\xfd\xff\x01\xfd\xbf\xfe\x7f" "\x4f\xff\xaf\xff\xdf\x31\xfd\xbf\xfe\x7f\x89\xfe\x5f\xff\xbf\xe5\xf7" "\xeb\xff\xf5\xff\xac\x1b\xad\xff\xcf\xdd\xff\xbd\xb8\xa5\xc9\xfe\x07" "\x00\x00\x80\x0e\x72\xf7\x7f\x3f\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9" "\xfb\x6f\x8c\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x1f\xc4\x2d\x4d" "\xf6\xff\xcc\xfd\xff\x12\xfd\xff\x01\xfd\xbf\xfe\x7f\x4f\xff\xaf\xff" "\xdf\x31\xfd\xbf\xfe\x7f\x89\xfe\x5f\xff\xbf\xe5\xf7\xeb\xff\xf5\xff" "\xac\xbb\x48\xfd\xff\xe9\xbd\xf3\xf4\xff\xb9\xfb\x7f\x18\xb7\x34\xd9" "\xff\x00\x00\x00\xd0\x41\xee\xfe\x1f\xc5\x2d\xf6\x3f\x00\x00\x00\x4c" "\x23\x77\xff\x8f\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x27\x71" "\xcb\x3c\xfb\xff\x01\x37\x2c\xfc\x97\xfa\xff\x63\xef\xff\xf7\xff\x21" "\xd2\xff\xeb\xff\xf7\xf4\xff\xfa\x7f\xfd\xff\x3e\xfd\xbf\xfe\x7f\x89" "\xfe\x5f\xff\x7f\x0c\xef\x3f\x5d\xff\x51\xff\xaf\xff\x67\x38\xa3\x7d" "\xff\x3f\x77\xff\x4f\xe3\x96\x79\xf6\x3f\x00\x00\x00\xb4\x97\xbb\xff" "\x67\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\x7f\x53\xdc\x62\xff\x03" "\x00\x00\xc0\x34\x72\xf7\xff\x3c\x6e\x69\xb2\xff\xf5\xff\xbe\xff\xaf" "\xff\x6f\xd5\xff\x5f\xba\xa7\xff\xd7\xff\x9f\x30\xfd\xbf\xfe\x7f\x89" "\xfe\x5f\xff\xbf\xe5\xf7\xeb\xff\xf5\xff\xac\x1b\xad\xff\xcf\xdd\xff" "\x8b\xb8\x25\x87\xdf\x15\x77\xe5\x57\x09\x00\x00\x00\x8c\x24\x77\xff" "\x2f\xe3\x96\x26\xbf\xff\x0f\x00\x00\x00\x1d\xe4\xee\xff\x55\xdc\x62" "\xff\x03\x00\x00\xc0\x34\x72\xf7\xff\x3a\x6e\x69\xb2\xff\xf5\xff\xfa" "\x7f\xfd\x7f\xab\xfe\xdf\xf7\xff\xf5\xff\x27\x4e\xff\xaf\xff\x5f\xa2" "\xff\xd7\xff\x6f\xf9\xfd\xd9\xff\xe7\x3f\x77\xfa\x7f\xfd\x3f\x77\x36" "\x5a\xff\x9f\xbb\xff\x37\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee" "\xbf\x39\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x7f\x1b\xb7\xd8\xff" "\x00\x00\x00\x30\x8d\xdc\xfd\xbf\x8b\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\x77\x49\xff\xaf\xff\x5f\xa2\xff\xd7\xff" "\x6f\xf9\xfd\xbe\xff\xaf\xff\x67\xdd\x68\xfd\x7f\xee\xfe\x5b\xe2\x96" "\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xfb\xb8\xc5\xfe\x07\x00\x00" "\x80\x69\xe4\xee\xff\x43\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xdf" "\x1a\xb7\x34\xd9\xff\xfa\x7f\xfd\xff\x94\xfd\xff\x65\x9d\xfb\xff\xb3" "\x7f\x96\xfe\x7f\x4f\xff\x3f\x0c\xfd\xbf\xfe\x7f\x89\xfe\x5f\xff\xbf" "\xe5\xf7\xeb\xff\xf5\xff\xac\x1b\xad\xff\xcf\xdd\xff\xc7\xb8\xa5\xc9" "\xfe\x07\x00\x00\x80\x0e\x72\xf7\xff\x29\x6e\xb1\xff\x01\x00\x00\x60" "\x1a\xb9\xfb\xff\x1c\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x7f\x89" "\x5b\x9a\xec\x7f\xfd\xbf\xfe\xff\xc2\xfb\xff\xd3\xf5\xeb\x1e\xb6\xff" "\xf7\xfd\x7f\xfd\xbf\xfe\x7f\x18\xf3\xf6\xff\xff\xaf\xff\x3f\xac\xff" "\x3f\x73\x61\xef\xef\xde\xff\x5f\x7b\xdd\xc1\x8f\xf5\xff\xdb\x7c\xbf" "\xfe\x5f\xff\xcf\xba\xd1\xfa\xff\xdc\xfd\x7f\x8d\x5b\x9a\xec\x7f\x00" "\x00\x00\xe8\x20\x77\xff\xdf\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb" "\xff\xef\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\x8f\xb8\xa5\xc9" "\xfe\xd7\xff\xeb\xff\xa7\xfc\xfe\xbf\xfe\x5f\xff\xaf\xff\x1f\xc6\xbc" "\xfd\xbf\xef\xff\xfb\xfe\xbf\xef\xff\xeb\xff\xf5\xff\xfa\x7f\xd6\x8c" "\xd6\xff\xe7\xee\xff\x67\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb" "\xff\x15\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\xff\x8e\x5b\xec\x7f" "\x00\x00\x00\x98\x46\xee\xfe\xff\xc4\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\xf5\xff\xbb\xa4\xff\xd7\xff\x2f\xd1\xff\xeb\xff" "\xb7\xfc\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb\xff\x17\x00\x00" "\xff\xff\xef\xaa\x25\xa5", 24486); syz_mount_image( /*fs=*/0x20000400, /*dir=*/0x20000300, /*flags=MS_POSIXACL|MS_REC|MS_SYNCHRONOUS|MS_STRICTATIME|MS_SILENT|0x802*/ 0x101c812, /*opts=*/0x20002740, /*chdir=*/3, /*size=*/0x5fa6, /*img=*/0x20007fc0); 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 = 0x42 (4 bytes) // mode: open_mode = 0x0 (2 bytes) // ] // returns fd memcpy((void*)0x200002c0, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200002c0ul, /*flags=O_CREAT|O_RDWR*/ 0x42, /*mode=*/0); if (res != -1) r[0] = res; break; case 2: // openat$dir arguments: [ // fd: const = 0xffffffffffffff9c (8 bytes) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 00} (length 0xfd) // } // flags: open_flags = 0x80042 (4 bytes) // mode: open_mode = 0xb0 (2 bytes) // ] // returns fd_dir memcpy((void*)0x20000ac0, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 253); syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x20000ac0ul, /*flags=O_CREAT|O_CLOEXEC|O_RDWR*/ 0x80042, /*mode=S_IWGRP|S_IRGRP|S_IWUSR*/ 0xb0); break; case 3: // pwritev2 arguments: [ // fd: fd (resource) // vec: ptr[in, array[iovec[in, array[int8]]]] { // array[iovec[in, array[int8]]] { // iovec[in, array[int8]] { // addr: ptr[in, buffer] { // buffer: {df} (length 0x1) // } // len: len = 0xf4240 (8 bytes) // } // } // } // vlen: len = 0x1 (8 bytes) // off_low: int32 = 0x800001 (4 bytes) // off_high: int32 = 0x0 (4 bytes) // flags: rwf_flags = 0x0 (8 bytes) // ] *(uint64_t*)0x200000c0 = 0x20000200; memset((void*)0x20000200, 223, 1); *(uint64_t*)0x200000c8 = 0xf4240; syscall(__NR_pwritev2, /*fd=*/r[0], /*vec=*/0x200000c0ul, /*vlen=*/1ul, /*off_low=*/0x800001, /*off_high=*/0, /*flags=*/0ul); break; case 4: // symlinkat arguments: [ // old: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 2f 66 69 6c 65 30 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 2f 66 69 // 6c 65 30 00} (length 0xfff) // } // newfd: fd_dir (resource) // new: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // ] memcpy( (void*)0x20001040, "./file0/" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaa/file0\000", 4095); memcpy((void*)0x20000640, "./file0\000", 8); syscall(__NR_symlinkat, /*old=*/0x20001040ul, /*newfd=*/0xffffff9c, /*new=*/0x20000640ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*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; }