// https://syzkaller.appspot.com/bug?id=6cc491be132cfdce3fd4c75357d4606bed322b31 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } 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; retry: while (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW) == 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, MNT_DETACH | UMOUNT_NOFOLLOW) == 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, MNT_DETACH | UMOUNT_NOFOLLOW)) 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, MNT_DETACH | UMOUNT_NOFOLLOW)) 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) { int i, call, thread; for (call = 0; call < 4; 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 (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); 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: memcpy((void*)0x20002480, "jfs\000", 4); memcpy((void*)0x20000100, "./file0\000", 8); *(uint8_t*)0x20000400 = 0; memcpy( (void*)0x2000e100, "\x78\x9c\xec\xdd\x4d\x6f\x1d\x57\x19\x07\xf0\xe7\xbe\xf8\xfa\xa5\xb4" "\xb5\x2a\x54\x85\x88\x45\x9a\x42\x69\x29\xcd\x7b\x02\xe5\xad\x29\x0b" "\x16\xb0\x00\x09\x65\x4d\x22\xd7\xad\x02\x29\xa0\xc4\x20\x5a\x59\xc4" "\x95\x17\x88\x15\x5f\x01\x36\xdd\xb0\xe8\x57\xe0\x03\xf4\x33\x20\x3e" "\x00\x91\x6c\x56\x45\xa2\x0c\x1a\xfb\x9c\x64\x3c\xbe\xce\x4d\xda\xf8" "\xce\xb5\xcf\xef\x27\x39\x33\xcf\x9c\x3b\xbe\x67\xf2\xf7\x78\xee\xf5" "\xcc\xdc\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x40\xfc\xe8\x87\x3f\x3b\xdf\x8b\x88\xeb\xbf\x4b\x0b\x96\x23\xbe\x10" "\x83\x88\x7e\xc4\x62\x5d\x9f\x8a\x7a\xe6\x6a\x7e\xfc\x30\x22\x4e\xc4" "\x4e\x73\x3c\x1f\x11\x83\xf9\x88\x7a\xfd\x9d\x7f\x9e\x8d\xb8\x14\x11" "\x1f\x3f\x13\xb1\xb5\xbd\xbe\x52\x2f\xbe\xf0\x88\xfd\xb8\x7c\x6e\xed" "\xf6\xa7\x3f\xfe\xc1\x3f\xfe\xf8\xe7\xcd\x13\xbf\x78\xeb\xe7\x1f\xb6" "\xdb\x7f\xfa\xc5\x8b\x1f\xfd\xe9\x6e\xc4\xf2\x4f\x5e\xff\xe8\xd3\xbb" "\x4f\x66\xdb\x01\x00\x00\xa0\x14\x55\x55\x55\xbd\xf4\x36\xff\x64\x7a" "\x7f\xdf\xef\xba\x53\x00\xc0\x54\xe4\xe3\x7f\x95\xe4\xe5\x6a\xb5\x5a" "\xad\x56\xab\x8f\x5f\xdd\x54\x8d\x77\xb7\x59\x44\xc4\x46\x73\x9d\xfa" "\x35\x83\xd3\xf1\x00\x70\xc4\x6c\xc4\x27\x5d\x77\x81\x0e\xc9\xbf\x68" "\xc3\x88\x78\xaa\xeb\x4e\x00\x33\xad\xd7\x75\x07\x38\x14\x5b\xdb\xeb" "\x2b\xbd\x94\x6f\xaf\x79\x3c\x38\xb5\xdb\x9e\xaf\x05\xd9\x93\xff\x46" "\xef\xfe\xfd\x1d\x07\x4d\x27\x69\x5f\x63\x32\xad\x9f\xaf\xcd\x18\xc4" "\x73\x07\xf4\x67\x71\x4a\x7d\x98\x25\x39\xff\x7e\x3b\xff\xeb\xbb\xed" "\xa3\xf4\xb8\xc3\xce\x7f\x5a\x0e\xca\x7f\xb4\x7b\xeb\x53\x71\x72\xfe" "\x83\x76\xfe\x2d\xc7\x27\xff\xfe\xd8\xfc\x4b\x95\xf3\x1f\x3e\x56\xfe" "\x03\xf9\x03\x00\x00\x00\x00\xc0\x0c\xcb\x7f\xff\x5f\xee\xf8\xfc\xef" "\x7c\x54\x55\x35\x85\x1b\x09\x1e\x76\xfe\xf7\xd4\xe1\x3f\x3d\x00\x00" "\x00\x00\x00\x00\x00\x1c\x8a\xcf\x3b\xfe\xdf\x7d\xc6\xff\x03\x00\x00" "\x80\x99\x55\xbf\x57\xaf\xfd\xe5\x99\x07\xcb\x0e\xfa\x2c\xb6\x7a\xf9" "\xb5\x5e\xc4\xd3\xad\xc7\x03\x85\x49\x37\xcb\x2c\x75\xdd\x0f\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x28\xc9\x70\xf7\x1a\xde\x6b\xbd\x88" "\xb9\x88\x78\x7a\x69\xa9\xaa\xaa\xfa\xab\xa9\x5d\x3f\xae\xcf\xbb\xfe" "\x51\x57\xfa\xf6\x43\xc9\xba\xfe\x25\x0f\x00\x00\xbb\x3e\x7e\xa6\x75" "\x2f\x7f\x2f\x62\x21\x22\xae\xa5\xcf\xfa\x9b\x5b\x5a\x5a\xaa\xaa\x85" "\xc5\xa5\x6a\xa9\x5a\x9c\xcf\xaf\x67\x47\xf3\x0b\xd5\x62\xe3\x7d\x6d" "\x9e\xd6\xcb\xe6\x47\x8f\xf0\x82\x78\x38\xaa\xea\x6f\xb6\xd0\x58\xaf" "\x69\xd2\xfb\xe5\x49\xed\xed\xef\x57\x3f\xd7\xa8\x1a\x3c\x42\xc7\xa6" "\xa3\xc3\xc0\x01\x20\x22\x76\x8f\x46\x5b\x8e\x48\xc7\x4c\x55\x3d\x1b" "\x5d\xbf\xca\xe1\x68\xb0\xff\x1f\x3f\xf6\x7f\x1e\x45\xd7\x3f\xa7\x00" "\x00\x00\xc0\xe1\xab\xaa\xaa\xea\xa5\x8f\xf3\x3e\x99\xce\xf9\xf7\xbb" "\xee\x14\x00\x30\x15\xf9\xf8\xdf\x3e\x2f\xa0\x56\xab\xd5\x6a\xb5\xfa" "\xf8\xd5\x4d\xd5\x78\x77\x9b\x45\x44\x6c\x34\xd7\xa9\x5f\x33\x18\x8e" "\x1f\x00\x8e\x98\x8d\xf8\xa4\xeb\x2e\xd0\x21\xf9\x17\x6d\x18\x11\x27" "\xba\xee\x04\x30\xd3\x7a\x5d\x77\x80\x43\xb1\xb5\xbd\xbe\xd2\x4b\xf9" "\xf6\x9a\xc7\x83\x34\xbe\x7b\xbe\x16\x64\x4f\xfe\x1b\xbd\x9d\xf5\xf2" "\xfa\xe3\xa6\x0f\xfc\x67\xec\x5f\x9b\xda\xd7\x98\x4c\xeb\xe7\x6b\x33" "\x06\xf1\xdc\x98\xe5\x75\x7f\x9e\x9f\x52\x1f\x66\x49\xce\xbf\xdf\xce" "\xff\xfa\x6e\xfb\x28\x3d\xee\xb3\xe7\x3f\x5e\x57\xd7\x18\x1d\x94\x7f" "\xbd\x9d\xcb\x1d\xf4\xa7\x6b\x39\xff\x41\x3b\xff\x96\xe3\x93\x7f\x7f" "\x6c\xfe\xa5\xca\xf9\x0f\x1f\x2b\xff\x81\xfc\x01\x00\x00\x00\x00\x60" "\x86\xe5\xbf\xff\x2f\x1f\xda\xf9\xdf\xf1\xfa\xad\x6f\x39\x0b\xe7\x7f" "\x4f\x4d\xa9\x0f\x00\x00\x00\x00\x00\x00\x00\xf0\xa4\x6d\x6d\xaf\xaf" "\xe4\xfb\x5e\xf3\xf9\xff\x2f\x8f\x79\x9c\xfb\x3f\x8f\xa7\x9c\x7f\x4f" "\xfe\x45\xca\xf9\xf7\xdb\xf9\xb7\x2e\xc8\x19\x34\xe6\xef\xbd\xf9\x20" "\xff\x7f\x6f\xaf\xaf\x7c\xb8\xf6\xaf\x2f\xe5\xe9\xcc\xe7\x3f\x37\x18" "\xd5\xcf\x3d\xd7\xeb\x0f\x86\xe9\x9a\x9f\x6a\xee\xed\xb8\x19\xb7\x62" "\x35\xce\xed\x7b\xfc\x70\x4f\xfb\xf9\x7d\xed\x73\x7b\xda\x2f\x4c\x68" "\xbf\xb8\xaf\x7d\x54\xb7\x2f\xe6\xf6\x33\xb1\x12\xbf\x8e\x5b\xf1\xd6" "\xfd\xf6\xf9\x09\x17\x46\x2d\x4c\x68\xaf\x26\xb4\xe7\xfc\x07\xf6\xff" "\x22\xe5\xfc\x87\x8d\xaf\x3a\xff\xa5\xd4\xde\x6b\x4d\x6b\xf7\x3e\xe8" "\xef\xdb\xef\x9b\xd3\x71\xcf\x73\xf5\x6f\xff\x7d\x69\xff\xde\x35\x7d" "\x9b\x31\xb8\xbf\x6d\x4d\xf5\xf6\x9d\xee\xa0\x3f\x3b\xff\x27\x4f\x8d" "\xe2\xb7\x77\x56\x6f\x9f\xf9\xfd\x8d\xb5\xb5\xdb\xe7\x23\x4d\xf6\x2c" "\xbd\x10\x69\xf2\x84\xe5\xfc\xe7\xd2\x57\xce\xff\xe5\x17\x77\xdb\xf3" "\xef\xfd\xe6\xfe\x7a\xef\x83\xd1\x63\xe7\x3f\x2b\x36\x63\x78\x60\xfe" "\x2f\x36\xe6\xeb\xed\x7d\x65\xca\x7d\xeb\x42\xce\x7f\x94\xbe\x72\xfe" "\xf9\x08\x34\x7e\xff\x3f\xca\xf9\x1f\xbc\xff\xbf\xda\x41\x7f\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x61\xaa\xaa\xda\xb9\x45" "\xf4\x6a\x44\x5c\x49\xf7\xff\x74\x75\x6f\x26\x00\x30\x5d\xf9\xf8\x5f" "\x25\x79\xb9\x5a\xad\x56\xab\xd5\xea\xe3\x57\x37\x55\xe3\xbd\xd1\x2c" "\x22\xe2\xef\xcd\x75\xea\xd7\x0c\x7f\x18\xf7\xcd\x00\x80\x59\xf6\xbf" "\x88\xf8\x67\xd7\x9d\xa0\x33\xf2\x2f\x58\xfe\xbc\xbf\x7a\xfa\x95\xae" "\x3b\x03\x4c\xd5\x9d\xf7\xde\xff\xe5\x8d\x5b\xb7\x56\x6f\xdf\xe9\xba" "\x27\x00\x00\x00\x00\x00\x00\x00\xc0\x67\xb5\xb5\xbd\xde\x5b\x4e\xe3" "\x60\xe7\xcf\x01\xd8\xb9\x0e\xa8\x35\x6e\xf4\x9e\xf1\x5f\xdf\x8c\x53" "\x47\x76\xfc\xcf\xfe\x68\xb0\x33\xd6\x79\xda\xa0\x17\xe2\xe1\xe3\x7f" "\x9f\x8e\x87\x8f\xff\x3d\x9c\xf0\x7c\x73\x13\xda\x47\x13\xda\xe7\x27" "\xb4\x2f\x4c\x68\x1f\x7b\xa3\x47\x43\x1e\xff\xf5\x85\x94\x71\xbe\x0e" "\xec\x64\xda\xb0\x92\xc6\x7f\x7d\xb9\x83\xfe\x74\x2d\xe7\x7f\x3a\x8d" "\xf5\x9c\xf3\xff\x5a\xeb\x71\xcd\xfc\xab\xbf\x1e\xe5\xfc\xfb\x7b\xf2" "\x3f\xbb\xf6\xee\x6f\xce\xde\x79\xef\xfd\xd7\x6e\xbe\x7b\xe3\x9d\xd5" "\x77\x56\x7f\x75\xfe\xdc\x95\x4b\x17\x2f\x5f\xba\x78\xf9\xf2\xd9\xb7" "\x6f\xde\x5a\x3d\xb7\xfb\x6f\x87\x3d\x3e\x5c\x39\xff\x3c\xf6\xb5\xeb" "\x40\xcb\x92\xf3\xcf\x99\xcb\xbf\x2c\x39\xff\xaf\xa6\x5a\xfe\x65\xc9" "\xf9\xbf\x94\x6a\xf9\x97\x25\xe7\x9f\x5f\xef\xc9\xbf\x2c\x39\xff\xfc" "\xde\x47\xfe\x65\xc9\xf9\xbf\x92\x6a\xf9\x97\x25\xe7\xff\xf5\x54\xcb" "\xbf\x2c\x39\xff\x57\x53\x2d\xff\xb2\xe4\xfc\xbf\x91\x6a\xf9\x97\x25" "\xe7\xff\x5a\xaa\xe5\x5f\x96\x9c\xff\x99\x54\xcb\xbf\x2c\x39\xff\xb3" "\xa9\x96\x7f\x59\x72\xfe\xf9\x0c\x97\xfc\xcb\x92\xf3\xcf\x57\x36\xc8" "\xbf\x2c\x39\xff\x0b\xa9\x96\x7f\x59\x72\xfe\x17\x53\x2d\xff\xb2\xe4" "\xfc\x2f\xa5\x5a\xfe\x65\xc9\xf9\x5f\x4e\xb5\xfc\xcb\x92\xf3\xbf\x92" "\x6a\xf9\x97\x25\xe7\xff\xcd\x54\xcb\xbf\x2c\x39\xff\x6f\xa5\x5a\xfe" "\x65\xc9\xf9\xbf\x9e\x6a\xf9\x97\x25\xe7\xff\xed\x54\xcb\xbf\x2c\x39" "\xff\xef\xa4\x5a\xfe\x65\xc9\xf9\x7f\x37\xd5\xf2\x2f\x4b\xce\xff\x7b" "\xa9\x96\x7f\x59\x72\xfe\xdf\x4f\xb5\xfc\xcb\x92\xf3\x7f\x23\xd5\xf2" "\x2f\xcb\x83\xcf\xff\x37\x63\xc6\x8c\x99\x3c\xd3\xf5\x6f\x26\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x6d\x1a\x97\x13\x77\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\x00\x00\xff\x67\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\xb7\x18" "\x39\xcb\xfb\x0c\xe0\xdf\x9e\xec\xb5\x21\xc1\x0d\x84\x53\x1c\xb0\xcd" "\xc9\xc0\xc2\xee\xfa\x04\x0e\x31\x98\x24\xa4\x94\xf4\x40\x49\x48\x9b" "\x96\xd4\x18\xef\xda\x38\xf1\xa9\xde\x35\x27\xa1\x7a\x53\x68\x4b\x14" "\xa4\x22\xb5\x17\xf4\xa2\x69\x12\xa5\x51\xa4\xa6\x02\x55\x91\x9a\x4a" "\x34\x42\x4a\xa4\xf6\xae\xb9\x6a\xc4\x4d\xd4\x4a\xb9\xf0\x05\x54\x0e" "\x4a\x2a\xa5\x0a\x6c\xf5\xcd\xbc\xef\xeb\x99\xd9\xf1\xcc\xfa\x30\x78" "\xe6\x7b\x7f\x3f\x64\xff\xbd\x33\xdf\xcc\xbc\xf3\xcd\x37\xb3\xf3\x2c" "\x7a\x66\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1a\xad\xff\xf8\xec\x5f\x0c\x15" "\x45\x51\xfe\xa9\xfd\xb5\xa6\x28\x2e\x2e\xff\xbd\xaa\xd8\x59\x7e\xb9" "\xb0\xed\x42\xaf\x10\x00\x00\x00\x38\x57\xef\xd4\xfe\xfe\xce\x25\xe9" "\x84\x9d\xcb\xb8\x50\xc3\x36\xff\x76\xcd\x7f\x7c\x77\x71\x71\x71\xb1" "\x78\xec\xed\x13\xef\xfe\xd5\xe2\x62\x3a\x63\x5d\x51\x8c\xac\x2c\x8a" "\xda\x79\xd1\xbf\xff\xf2\x17\x8b\x8d\xdb\x04\xcf\x15\xe3\x43\xc3\x0d" "\x5f\x0f\x77\xb9\xf9\x91\x2e\xe7\x8f\x76\x39\x7f\xac\xcb\xf9\x2b\xba" "\x9c\xbf\xb2\xcb\xf9\xe3\x5d\xce\x5f\xb2\x03\x96\x58\x55\xff\x79\x4c" "\xed\xca\xae\xaf\xfd\x73\x4d\x7d\x97\x16\x97\x15\x63\xb5\xf3\xae\x6f" "\x73\xa9\xe7\x86\x56\x0e\x0f\xc7\x9f\xe5\xd4\x0c\xd5\x2e\xb3\x38\xb6" "\xb7\xd8\x5f\x1c\x28\x66\x8b\xa9\x25\x97\x19\xaa\xfd\x57\x14\xaf\xad" "\x2f\x6f\xeb\xfe\x22\xde\xd6\x70\xc3\x6d\xad\x2d\x8a\xe2\xe4\xcf\x9e" "\xdd\x13\xd7\x30\x14\xf6\xf1\xf5\x45\xd3\x8d\xd5\x34\x3e\x76\x6f\xdd" "\x5b\xac\x7b\xfb\x67\xcf\xee\xf9\xd6\xfc\x9b\x57\xb5\x9b\x5d\x77\xc3" "\x92\x95\x16\xc5\xc6\x0d\xe5\x3a\x9f\x2f\x8a\x53\x3f\xae\x2a\x86\x8a" "\x95\x69\x9f\xc4\x75\x0e\x37\xac\x73\x6d\x9b\x75\x8e\x34\xad\x73\xa8" "\x76\xb9\xf2\xdf\xad\xeb\x3c\xb9\xcc\x75\xc6\xfb\x3d\x1e\xd6\xf9\xa3" "\x0e\xeb\x5c\x1b\x4e\x7b\xea\xba\xa2\x28\x16\x8a\xd3\x6e\xd3\xea\xb9" "\x62\xb8\x58\xdd\x72\xab\x69\x7f\x8f\xd7\x8f\x88\xf2\x3a\xca\x87\xf2" "\x03\xc5\xe8\x19\x1d\x27\xeb\x97\x71\x9c\x94\x97\xf9\xe9\x75\xcd\xc7" "\x49\xeb\x31\x19\xf7\xff\xfa\xb0\x4f\x46\x4f\xb3\x86\xc6\x87\xe3\xad" "\x2f\xad\x58\xb2\xdf\xcf\xf6\x38\x29\xef\x75\x3f\x1c\xab\xe5\x75\x3f" "\x58\xde\xe8\xf8\x78\xe3\x8f\x56\x9b\x8e\xd5\x72\x9b\x67\x6f\x38\xfd" "\x31\xd0\xf6\xb1\x6b\x73\x0c\xa4\x63\xb9\xe1\x18\xd8\xd0\xed\x18\x18" "\x5e\x31\x52\x3b\x06\x86\x4f\xad\x79\x43\xd3\x31\x30\xbd\xe4\x32\xc3" "\xc5\x50\xed\xb6\x4e\xdc\xd0\xf9\x18\x98\x9c\x3f\x78\x64\x72\xee\xe9" "\x67\x6e\xdb\x7f\x70\xf7\xbe\xd9\x7d\xb3\x87\xa6\xa7\xb6\x6d\xd9\xbc" "\x75\xcb\xe6\xad\x5b\x27\xf7\xee\x3f\x30\x3b\x55\xff\xfb\xcc\x76\xe9" "\x00\x59\x5d\x0c\xa7\x63\x70\x43\x78\xad\x89\xc7\xe0\x4d\x2d\xdb\x36" "\x1e\x92\x8b\x5f\x3f\x7f\xcf\x83\xf1\x3e\x79\x1e\x94\xf7\xfd\x33\x37" "\x96\x0b\xba\x78\xb8\x38\xcd\x31\x5e\x6e\xf3\xfc\xc6\x73\x7f\x1e\xa4" "\xef\xfb\x0d\xcf\x83\xd1\x86\xe7\x41\xdb\xd7\xd4\x36\xcf\x83\xd1\x65" "\x3c\x0f\xca\x6d\x4e\x6e\x5c\xde\xf7\xcc\xd1\x86\x3f\xed\xd6\xd0\xab" "\xd7\xc2\x35\x0d\xc7\xc0\x85\xfc\x7e\x58\xde\xe6\x23\x37\x9f\xfe\xb5" "\x70\x6d\x58\xd7\x0b\xb7\x9c\xe9\xf7\xc3\x91\x25\xc7\x40\xbc\x5b\x43" "\xe1\xb9\x57\x9e\x92\xde\xef\x8d\xdf\x19\xf6\xcb\xd2\xe3\xe2\xea\xf2" "\x8c\x8b\x56\x14\xc7\xe6\x66\x8f\xde\xfe\xd4\xee\xf9\xf9\xa3\xd3\x45" "\x18\xef\x89\x4b\x1b\x1e\xab\xd6\xe3\x65\x75\xc3\x7d\x2a\x96\x1c\x2f" "\xc3\x67\x7c\xbc\xec\xfc\x87\x5f\xdd\x78\x75\x9b\xd3\xd7\x84\x7d\x35" "\x7e\x6b\xe7\xc7\xaa\xdc\x66\xcb\x44\xe7\xc7\xaa\xf6\xea\xde\x7e\x7f" "\x36\x9d\xba\xa9\x08\xe3\x3c\x7b\xaf\xf7\x67\xbb\xef\x66\xe5\xfe\x4c" "\x59\xa2\xc3\xfe\x2c\xb7\x79\xfe\xb6\x73\x7f\x2f\x98\x72\x49\xc3\xeb" "\xdf\x58\xb7\xd7\xbf\x91\xb1\xd1\xfa\xeb\xdf\x48\xda\x1b\x63\x4d\xaf" "\x7f\x4b\x1f\x9a\x91\xda\xca\x8a\xe2\xe4\x6d\xcb\x7b\xfd\x1b\x0b\x7f" "\xde\xeb\xd7\xbf\xcb\xfa\xe4\xf5\xaf\xdc\x57\x8f\xdc\xde\xf9\x18\x28" "\xb7\x79\x61\xf2\x4c\x8f\x81\xd1\x8e\xaf\x7f\xd7\x85\x39\x14\xd6\x73" "\x73\x48\x0c\xe3\x0d\xb9\xff\xdd\xda\xf9\x0b\xf5\xc3\xb4\xe1\xb1\xec" "\x7a\xdc\x8c\x8e\x8e\x85\xe3\x66\x34\xde\xe2\xce\xa6\xe3\x66\xf3\x92" "\xcb\x94\xd7\x56\xde\xf6\xc6\xa9\xb3\x3b\x6e\x36\x5e\xd7\xfc\x58\x35" "\xbd\x6f\xa9\xe0\x71\x53\xee\xab\xbf\x9e\xea\x7c\xdc\x94\xdb\xbc\x3e" "\x7d\xee\xaf\x1d\xab\xe2\x3f\x1b\x5e\x3b\x56\x74\x3b\x06\xc6\x46\x56" "\x94\xeb\x1d\x4b\x07\x41\xfd\xf5\x6e\x71\x55\x3c\x06\x6e\x2f\xf6\x14" "\x87\x8b\x03\xc5\x4c\xba\x4c\xf9\x28\x97\xb7\x35\xb1\x69\x79\xc7\xc0" "\x8a\xf0\xe7\xbd\x7e\xed\xb8\xb2\x4f\x8e\x81\x72\x5f\xbd\xbc\xa9\xf3" "\x31\x50\x6e\xf3\xc3\xcd\xe7\xf7\xbd\xd3\xc6\x70\x4a\xda\xa6\xe1\xbd" "\x53\xeb\xcf\x17\x4e\x97\xf9\xaf\x1e\x3d\x75\x7d\xad\xbb\xed\x7c\x67" "\xfe\x72\x9d\x9f\xd8\xd2\xf9\x67\x43\xe5\x36\x6f\x6e\x39\xd3\x9c\xd1" "\x79\x3f\xdd\x1a\x4e\xb9\xa8\xcd\x7e\x6a\x7d\xfe\x9c\xee\x98\x9e\x29" "\xde\x9b\xfd\x74\x65\x58\xe7\x81\xad\x9d\x7f\x36\x55\x6e\x73\xd9\xb6" "\x65\x1e\x4f\xe5\x8b\xfe\x1b\xd3\x6f\xd4\x7e\xde\x15\x7e\xbe\xfb\x4f" "\xc7\xfe\xf3\xbb\x4d\x3f\xf7\x6d\xf7\x33\xe5\x37\xa6\xdf\x78\x60\xf2" "\xa1\x1f\x9f\xc9\xfa\x01\x00\x38\x7b\xef\xd6\xfe\x5e\x58\x51\x7f\xaf" "\xd9\xf0\x7f\xac\x97\xf3\xff\xff\x01\x00\x00\x80\x81\x10\x73\xff\x70" "\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x48\x98\x89\xfc\x0f\x00" "\x00\x00\x95\x11\x73\xff\x68\x98\x49\x26\xf9\xff\xf1\x3b\xb7\xbf\xf2" "\xce\xf1\x22\x7d\x1a\xe0\x62\x10\xcf\x8f\xbb\xe1\xc1\xbb\xeb\xdb\xc5" "\x8e\xf7\x42\xf8\x7a\xdd\xe2\x29\xe5\xe9\x1f\xfb\xe6\xd8\x2b\x5f\x3e" "\xbe\xbc\xdb\x1e\x2e\x8a\xe2\x57\x0f\x7c\xa8\xed\xf6\x8f\xdf\x1d\xd7" "\x55\x77\x24\xae\xf3\x23\xcd\xa7\x2f\x71\xe5\xb5\xcb\xba\xfd\x47\x1f" "\x3e\xb5\x5d\xe3\xe7\x27\x9c\xdc\x5e\xbf\xfe\x78\x7f\x96\x7b\x18\xc4" "\xae\xf2\x6b\x93\x9b\x6a\xd7\xbb\xee\xe9\xe9\xda\x7c\xfd\x81\xa2\x36" "\x1f\x5a\x78\xe1\xb9\xfa\xf5\xd7\xbf\x8e\xdb\x9f\xd8\x5c\xdf\xfe\x6f" "\xc3\x87\x96\xec\xdc\x3b\xd4\x74\xf9\x8d\x61\x3d\xd7\x87\xb9\x2e\x7c" "\xa6\xcc\x83\x3b\x4f\xed\x87\x72\xc6\xcb\xbd\xb2\xf6\x9a\x1f\x5c\xfa" "\xd9\x53\xb7\x17\x2f\x37\xb4\xe1\xfd\xb5\xbb\xf9\xf2\x9f\xd4\xaf\x37" "\x7e\x46\xd4\x4b\x97\xd6\xb7\x8f\xf7\xfb\x74\xeb\xff\xd7\xaf\x7c\xfb" "\x95\x72\xfb\xa7\x6e\x68\xbf\xfe\xe3\xc3\xed\xd7\x7f\x22\x5c\xef\x4f" "\xc3\xfc\xe5\x8e\xfa\xf6\x8d\xfb\xfc\xcb\x0d\xeb\xff\xb3\xb0\xfe\x78" "\x7b\xf1\x72\xb7\x7f\xe3\xfb\x6d\xd7\xff\xea\x15\xf5\xed\x5f\x0d\xc7" "\xc5\xd7\xc2\x6c\x5d\xff\xbd\x7f\xf9\xe1\x77\xda\x3d\x5e\xf1\x76\x76" "\xde\x55\xbf\x5c\xbc\xfd\xa9\xff\xdd\x52\xbb\x5c\xbc\xbe\x78\xfd\xad" "\xeb\x1f\x3f\x3e\xdd\xb4\x3f\x5a\xaf\xff\xf5\xb7\xeb\xd7\xb3\xe3\x89" "\x9f\x8f\x34\x6e\x1f\x4f\x8f\xb7\x13\x3d\x7a\x57\xf3\xf1\x3d\x14\x1e" "\xdf\xa6\x1e\x79\x51\x14\xdf\xfe\xf3\xa2\x69\x3f\x17\x1f\xad\x5f\xee" "\x5f\x5a\xd6\x1f\xaf\xef\xc8\x5d\xed\xd7\x7f\x6b\xcb\x3a\x8f\x0c\x5d" "\x5b\xbb\xfc\xa9\xfb\xb3\xa6\xe9\x7e\x7d\xf5\xef\x37\xb5\xbd\xbf\x71" "\x3d\x3b\xff\x71\x4d\xd3\xfd\x79\xe9\xbe\xb0\xff\xde\x9e\xfc\x61\x79" "\xbd\x27\x1e\x0a\xc7\x63\x38\xff\xff\x7e\x54\xbf\xbe\xd6\xcf\x32\x7d" "\xf5\xbe\xe6\xd7\x9b\xb8\xfd\xd7\xd6\xd4\x9f\xb7\xf1\xfa\x26\x5b\xd6" "\xff\x52\xcb\xfa\x17\xae\x2d\xf7\x5d\xf7\xf5\xdf\xff\x76\x7d\xfd\xaf" "\xde\xb3\xb2\x69\xfd\x3b\x3f\x19\x8e\xa7\xfb\xeb\xb3\xdb\xfa\xf7\xfd" "\xdd\x25\x4d\x97\xff\xfa\xb7\xea\x8f\xc7\xd1\x27\x27\x0e\x1d\x9e\x3b" "\xb6\x7f\xa6\x61\xaf\x36\x3e\x8f\x57\x8e\xaf\x5a\x7d\xd1\xc5\xef\x7b" "\xff\x25\xe1\xb5\xb4\xf5\xeb\x5d\x87\xe7\x1f\x9f\x3d\xba\x6e\x6a\xdd" "\x54\x51\xac\x1b\xc0\x8f\x0c\xec\xf5\xfa\xbf\x11\xe6\xff\xd4\xc7\xc2" "\xf9\xbf\x85\xba\x1f\xff\xbc\x7e\xdc\xbd\xf8\xa9\xfa\xf7\xad\x9b\x7e" "\x51\xff\xfa\xa5\x70\xfa\xa3\xe1\xf1\x8c\xdf\x1f\xbf\xfa\x37\x63\x4d" "\xc7\x6b\xeb\xe3\xbe\x70\x4f\x7d\x9e\xeb\xfa\x6f\x09\xeb\x58\xae\x2b" "\xbe\xf2\xdf\xd7\x2e\x6b\xc3\x13\x9f\x7f\xed\xd8\x3f\xff\xe9\x9b\xad" "\xef\x0b\xe2\xfd\x39\xf2\xc1\xf1\xda\xfd\x7b\x79\xfd\xe5\xb5\xf3\x86" "\x5e\xaf\x9f\xdf\xfa\x7a\xd5\xcd\x7f\x7d\xb0\xf9\x79\xfd\x93\xd1\xa9" "\xda\xfc\x5e\xd8\xaf\x8b\xe1\x93\x99\x37\x5c\x5e\xbf\xbd\xd6\xeb\x8f" "\x9f\x4d\xf2\xe2\xa7\xeb\xcf\xdf\xf8\x4e\x2e\x5e\xbe\x68\xf9\x3c\x91" "\x35\x23\xcd\xf7\xe3\x5c\xd7\xff\x93\xf0\x3e\xe6\xfb\x57\x36\xbf\xfe" "\xc5\xe3\xe3\x7b\xc7\x5b\x3e\xcd\x79\x4d\x31\x54\x2e\x61\x21\xbc\x3e" "\x14\x0b\xf5\xf3\xe3\x56\x71\x7f\xbf\x78\xf2\xf2\xb6\xb7\x17\x3f\x87" "\xa7\x58\xb8\xea\x4c\x96\x79\x5a\x73\x4f\xcf\x4d\x1e\xd8\x7f\xe8\xd8" "\x53\x93\xf3\xb3\x73\xf3\x93\x73\x4f\x3f\xb3\xeb\xe0\xe1\x63\x87\xe6" "\x77\xd5\x3e\xbb\x74\xd7\x17\xba\x5d\xfe\xd4\xf3\x7b\x75\xed\xf9\x3d" "\x33\xbb\x6d\x4b\x51\x7b\xb6\x1f\xae\x8f\x1e\xbb\xd0\xeb\x3f\xf2\xf0" "\x9e\x99\x3b\xa6\x6e\x9c\x99\xdd\xbb\xfb\xd8\xde\xf9\x87\x8f\xcc\x1e" "\xdd\xb7\x67\x6e\x6e\xcf\xec\xcc\xdc\x8d\xbb\xf7\xee\x9d\x7d\xb2\xdb" "\xe5\xf7\xcf\xec\x98\xde\xb4\x7d\xf3\x1d\x9b\x26\xf6\xed\x9f\xd9\x71" "\xe7\xf6\xed\x9b\xb7\x4f\xec\x3f\x74\xb8\x5c\x46\x7d\x51\x5d\x6c\x9b" "\xfa\xe2\xc4\xa1\xa3\xbb\x6a\x17\x99\xdb\xb1\x65\xfb\xf4\xd6\xad\x5b" "\xa6\x26\x0e\x1e\x9e\x99\xdd\x71\xc7\xd4\xd4\xc4\xb1\x6e\x97\xaf\x7d" "\x6f\x9a\x28\x2f\xfd\xc4\xc4\xd1\xd9\x03\xbb\xe7\xf7\x1f\x9c\x9d\x98" "\xdb\xff\xcc\xec\x8e\xe9\xed\xdb\xb6\x6d\xea\xfa\xe9\x8f\x07\x8f\xec" "\x9d\x5b\x37\x79\xf4\xd8\xa1\xc9\x63\x73\xb3\x47\x27\xeb\xf7\x65\xdd" "\x7c\xed\xe4\xf2\x7b\x5f\xb7\xcb\x93\x87\xb9\xc3\xe1\xf5\xae\xc5\x50" "\x78\x77\xfe\xb9\x5b\xb7\xa5\xcf\xc7\x2d\x7d\xf3\x4b\xa7\xbd\xaa\xfa" "\x26\xcd\x6f\x4f\x8b\xb7\xc2\x67\x41\xc5\xef\x6f\xdd\xbe\x8e\xb9\x7f" "\x2c\xcc\x24\x93\xfc\x0f\x00\x00\x00\x03\x6c\x68\xb9\x3f\x40\x8f\xb9" "\x3f\x7c\xf0\xff\xa9\x33\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x57\x86" "\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x8f\x87\x99\x64\x92\xff\xf5" "\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x7b\x49\xff\x5f\xff\xbf" "\x13\xfd\x7f\xfd\xff\x41\x5e\xff\xb2\xfb\xff\xa7\x79\x43\xa9\xff\x4f" "\x0e\xfa\xad\xff\x1f\x73\xff\xaa\xa2\xc8\x32\xff\x03\x00\x00\x40\x0e" "\x62\xee\x5f\x1d\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x51\x98" "\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xc5\x61\x26\x99\xe4\x7f\xfd" "\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\x96\xfe\x7f\xfd\x83\x61\xf5\xff" "\xcf\x13\xfd\x7f\xfd\xff\x4e\xf2\xeb\xff\xd7\x57\xa3\xff\x7f\x7e\x5c" "\xe8\xf5\xfb\xfd\xff\xfa\xff\x74\xd7\x6f\xfd\xff\x98\xfb\xdf\x17\x66" "\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xff\xfe\x30\x13\xf9\x1f\x00" "\x00\x00\x2a\x23\xe6\xfe\x4b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98" "\xfb\xd7\x84\x99\x64\x92\xff\xf5\xff\xf5\xff\x07\xbf\xff\x7f\x4f\x51" "\x14\xfa\xff\xfa\xff\x7e\xff\x7f\xbf\xd2\xff\xd7\xff\x0f\x1e\x6b\x77" "\x62\x7e\xfd\x7f\xbf\xff\xff\x7c\xba\xd0\xeb\xd7\xff\xd7\xff\xa7\xbb" "\x7e\xeb\xff\xc7\xdc\xff\x6b\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41" "\xcc\xfd\x1f\x08\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x34\xcc" "\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xb2\x30\x93\x4c\xf2\xbf\xfe" "\xbf\xfe\xff\xe0\xf7\xff\xfd\xfe\x7f\xfd\x7f\xfd\xff\x7e\xa6\xff\xaf" "\xff\xdf\x89\xfe\xbf\xfe\xff\x20\xaf\x5f\xff\x5f\xff\x9f\xee\xfa\xad" "\xff\x1f\x73\xff\x07\xc3\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb" "\x2f\x0f\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x22\xcc\x44\xfe" "\x07\x00\x00\x80\xca\x88\xb9\xff\xca\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff\xf9\x77\xea\x59\xae\xff\xaf\xff" "\xdf\x89\xfe\xbf\xfe\xff\x20\xaf\x5f\xff\x5f\xff\x9f\xee\xfa\xad\xff" "\x1f\x73\xff\x55\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x57" "\x87\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x7f\x28\xcc\x44\xfe\x07" "\x00\x00\x80\xca\x88\xb9\x7f\x6d\x98\x49\x26\xf9\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x97\xf4\xff\xf5\xff\x3b\xd1\xff\xd7" "\xff\x1f\xe4\xf5\xeb\xff\xeb\xff\xd3\x5d\xbf\xf5\xff\x63\xee\xff\x70" "\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\x35\x61\x26\xf2\x3f" "\x00\x00\x00\x54\x46\xcc\xfd\xd7\x86\x99\xc8\xff\x00\x00\x00\x50\x19" "\x31\xf7\xaf\x0b\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb" "\xff\xeb\xff\xf7\x92\xfe\xbf\xfe\x7f\x27\xfa\xff\xfa\xff\x83\xbc\x7e" "\xfd\x7f\xfd\x7f\xba\xeb\xb7\xfe\x7f\xcc\xfd\xeb\xc3\x4c\x32\xc9\xff" "\x00\x00\x00\x90\x83\x98\xfb\x37\x84\x99\xc8\xff\x00\x00\x00\x50\x19" "\x31\xf7\x5f\x17\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x7d\x98" "\x49\x26\xf9\xff\xac\xfb\xff\xc7\xf5\xff\x1b\xe9\xff\xb7\x5f\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x27\xfa\xff\xfa\xff\x83" "\xbc\x7e\xfd\x7f\xfd\x7f\xba\xeb\xb7\xfe\x7f\xcc\xfd\x37\x84\x99\x64" "\x92\xff\x01\x00\x00\x20\x07\x31\xf7\xdf\x18\x66\x22\xff\x03\x00\x00" "\x40\x65\xc4\xdc\x7f\x53\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff" "\xc6\x30\x93\x4c\xf2\xbf\xdf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf" "\xff\xdf\x4b\xfa\xff\xfa\xff\x9d\xe8\xff\xeb\xff\x0f\xf2\xfa\xf5\xff" "\xf5\xff\xe9\xae\xdf\xfa\xff\x1b\x8b\x62\x45\xf9\xdd\xe2\xe6\xda\xa5" "\xf3\xcb\xff\x00\x00\x00\x90\x83\x98\xfb\x6f\x09\x33\x91\xff\x01\x00" "\x00\xa0\x32\x62\xee\xbf\x35\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9" "\x7f\x22\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf" "\xff\xdf\x4b\xfa\xff\xfa\xff\x9d\xe8\xff\xeb\xff\x0f\xf2\xfa\xf5\xff" "\xf5\xff\xe9\xae\xdf\xfa\xff\x31\xf7\xdf\x16\x66\x92\x49\xfe\x07\x00" "\x00\x80\x1c\xc4\xdc\x7f\x7b\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73" "\xff\x64\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x54\x98\x49\x26" "\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x97\xf4\xff" "\xf5\xff\x3b\xd1\xff\xd7\xff\x1f\xe4\xf5\xeb\xff\xeb\xff\xd3\x5d\xbf" "\xf5\xff\x63\xee\x9f\x0e\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee" "\xdf\x14\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x39\xcc\x44\xfe" "\x07\x00\x00\x80\xca\x88\xb9\x7f\x4b\x98\x49\x26\xf9\x5f\xff\x5f\xff" "\x5f\xff\x5f\xff\xbf\x8f\xfb\xff\x2b\x0a\xfd\x7f\xfd\xff\x2e\xf4\xff" "\xf5\xff\x0b\xfd\xff\xb3\x76\xa1\xfb\xf3\x83\xbe\x7e\xfd\x7f\xfd\x7f" "\xba\xeb\xb7\xfe\x7f\xcc\xfd\x5b\xc3\x4c\x32\xc9\xff\x00\x00\x00\x90" "\x83\x98\xfb\xb7\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xdf\x11" "\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x67\x98\x49\x26\xf9\x5f" "\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x8f\xfb\xff\x4d\xfb\x53\xff\x5f\xff" "\xbf\x1d\xfd\x7f\xfd\xff\x42\xff\xff\xac\x5d\xe8\xfe\xfc\xa0\xaf\xbf" "\x6f\xfb\xff\x3f\xd0\xff\xa7\x7f\xf4\x5b\xff\x3f\xe6\xfe\xed\x61\x26" "\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x1f\x09\x33\x91\xff\x01\x00" "\x00\xa0\x32\x62\xee\xbf\x2b\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9" "\xff\xa3\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\xfd\xff\x5e\xd2\xff\xd7\xff\xef\x44\xff\x5f\xff\x7f\x90\xd7\xdf\xb7" "\xfd\x7f\xbf\xff\x9f\x3e\xd2\x6f\xfd\xff\x98\xfb\x77\x84\x99\x64\x92" "\xff\x01\x00\x00\x20\x07\x31\xf7\xdf\x1d\x66\x22\xff\x03\x00\x00\x40" "\x65\xc4\xdc\x7f\x4f\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xce" "\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f" "\x2f\xe9\xff\xeb\xff\x77\xa2\xff\xaf\xff\x3f\xc8\xeb\xd7\xff\xd7\xff" "\xa7\xbb\x7e\xeb\xff\xc7\xdc\x7f\x6f\x98\x49\x26\xf9\x1f\x00\x00\x00" "\x72\x10\x73\xff\xc7\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x3f" "\x1e\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\x89\x30\x93\x4c\xf2" "\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x2f\xe9\xff\xeb" "\xff\x77\xa2\xff\xaf\xff\x3f\xc8\xeb\xd7\xff\xd7\xff\xa7\xbb\x7e\xeb" "\xff\xc7\xdc\x7f\x5f\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff" "\x27\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x7f\x3d\xcc\x44\xfe" "\x07\x00\x00\x80\xca\x88\xb9\xff\xfe\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x2f\xe9\xff\xeb\xff\x77\xa2\xff" "\xaf\xff\x3f\xc8\xeb\xd7\xff\xd7\xff\xa7\xbb\x7e\xeb\xff\xc7\xdc\xff" "\x1b\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x0f\x84\x99\xc8" "\xff\x00\x00\x00\x50\x19\x31\xf7\x7f\x2a\xcc\x44\xfe\x07\x00\x00\x80" "\xca\x88\xb9\xff\x37\xc3\x4c\x32\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\xbd\xa4\xff\xaf\xff\xdf\x89\xfe\xbf\xfe\xff\x20" "\xaf\x5f\xff\x5f\xff\x9f\xee\xfa\xad\xff\x1f\x73\xff\x6f\x85\x99\x64" "\x92\xff\x01\x00\x00\x20\x07\x31\xf7\xff\x76\x98\x89\xfc\x0f\x00\x00" "\x00\x95\x11\x73\xff\xef\x84\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7" "\x3f\x18\x66\x92\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7" "\xff\xef\x25\xfd\x7f\xfd\xff\x4e\xf4\xff\xf5\xff\x07\x79\xfd\xfa\xff" "\xfa\xff\x74\xd7\x6f\xfd\xff\x98\xfb\x7f\x37\xcc\x24\x93\xfc\x0f\x00" "\x00\x00\x55\xf3\x9d\xf7\x2d\x3d\x2d\xe6\xfe\x87\xc2\x4c\xe4\x7f\x00" "\x00\x00\xa8\x8c\x98\xfb\x3f\x1d\x66\x22\xff\x03\x00\x00\x40\x65\xc4" "\xdc\xff\x99\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe" "\xbf\xfe\x7f\x2f\xe9\xff\xeb\xff\x77\xa2\xff\xaf\xff\x3f\xc8\xeb\xd7" "\xff\xd7\xff\xa7\xbb\xde\xf5\xff\x57\xd5\x5e\xd1\xcf\xb4\xff\x1f\x73" "\xff\xc3\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x9f\x0d\x33" "\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\xbd\x30\x13\xf9\x1f\x00\x00" "\x00\x2a\x23\xe6\xfe\xdf\x0f\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff" "\xeb\xff\xeb\xff\xeb\xff\xf7\x92\xfe\xbf\xfe\x7f\x27\xfa\xff\xfa\xff" "\x83\xbc\x7e\xfd\x7f\xfd\x7f\xba\xeb\xb7\xdf\xff\x1f\x73\xff\xe7\xc2" "\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\xff\x20\xcc\x44\xfe\x07" "\x00\x00\x80\xca\x88\xb9\xff\x0f\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c" "\x98\xfb\x1f\x09\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb" "\xff\xeb\xff\xf7\x92\xfe\xbf\xfe\x7f\x27\xfa\xff\xfa\xff\x83\xbc\x7e" "\xfd\xff\xc6\xfe\xff\x88\xfe\x3f\x6d\xf5\x5b\xff\x3f\xe6\xfe\xcf\x87" "\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7\xff\x51\x98\x89\xfc\x0f" "\x00\x00\x00\x95\x11\x73\xff\xae\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23" "\xe6\xfe\x47\xc3\x4c\x32\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa" "\xff\xfa\xff\xbd\xa4\xff\xaf\xff\xdf\x89\xfe\xbf\xfe\xff\x20\xaf\x5f" "\xff\xdf\xef\xff\xa7\xbb\x7e\xeb\xff\xc7\xdc\xbf\x3b\xcc\x24\x93\xfc" "\x0f\x00\x00\x00\x39\x88\xb9\xff\xb1\x30\x13\xf9\x1f\x00\x00\x00\x2a" "\x23\xe6\xfe\x3d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x33\x61" "\x26\x99\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\x5e" "\xd2\xff\xd7\xff\xef\x44\xff\x5f\xff\x7f\x90\xd7\xaf\xff\xaf\xff\x4f" "\x77\xfd\xd6\xff\x8f\xb9\x7f\x36\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39" "\x88\xb9\x7f\x6f\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xbe\x30" "\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xc7\xc3\x4c\x32\xc9\xff\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xbd\xa4\xff\xaf\xff\xdf" "\x89\xfe\xbf\xfe\xff\x20\xaf\x5f\xff\x5f\xff\x9f\xee\xce\x67\xff\x3f" "\xbc\x44\x36\xa5\xbd\x33\xed\xff\xc7\xdc\xbf\x3f\xcc\x24\x93\xfc\x0f" "\x00\x00\x00\x39\x88\xb9\xff\x0b\x61\x26\xf2\x3f\x00\x00\x00\x54\x46" "\xcc\xfd\x5f\x0c\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x3f\x10\x66" "\x92\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\x25" "\xfd\x7f\xfd\xff\x4e\xf4\xff\xf5\xff\x07\x79\xfd\x47\x1e\xde\x33\x13" "\x1f\x3c\xfd\x7f\xfd\x7f\xda\x3b\x9f\xfd\xff\xda\xdf\xcd\x6f\x4f\xcf" "\xb8\xff\x1f\x73\xff\xc1\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6" "\xfe\x43\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x87\xc3\x4c\xe4" "\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x8f\x84\x99\x64\x92\xff\x33\xeb\xff" "\x8f\xc5\x7f\xe8\xff\xd7\xe9\xff\xeb\xff\x17\xfa\xff\xfa\xff\x3d\xa6" "\xff\xaf\xff\xdf\x89\xfe\xbf\xfe\xff\x20\xaf\xdf\xef\xff\xd7\xff\xa7" "\xbb\x7e\xeb\xff\xc7\xdc\xff\xc7\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8" "\x41\xcc\xfd\x47\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xe7\xc2" "\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xe7\xc3\x4c\x32\xc9\xff\x99" "\xf5\xff\x13\xfd\xff\x3a\xfd\x7f\xfd\xff\x42\xff\x5f\xff\xbf\xc7\xf4" "\xff\xf5\xff\x3b\xd1\xff\xd7\xff\x1f\xe4\xf5\xeb\xff\xeb\xff\xd3\x5d" "\xbf\xf5\xff\x63\xee\x3f\x16\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4" "\xdc\xff\x44\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x93\x61\x26" "\xf2\x3f\x00\x00\xc0\xff\xb3\x77\x17\x4b\xbe\x5d\x55\x1c\xc7\xfb\x62" "\x15\x66\x3c\x02\x43\x1e\x81\x09\x0f\xc5\x0c\x02\x04\x77\x77\x97\xe0" "\xee\xee\xee\xee\xee\x12\xdc\x09\x56\x40\x91\x5e\x6b\x15\xfd\xcf\xe5" "\x9c\xee\xce\x3d\xdd\xfb\xec\xf5\xf9\x4c\x56\x41\xf5\x60\x77\x25\xa1" "\xea\x57\x97\x6f\x0e\x4c\x23\x77\xff\xbd\xe2\x96\x26\xfb\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x2d\xe9\xff\xf5\xff\x4b\xf4\xff" "\xfa\xff\x3d\xbf\x5f\xff\xaf\xff\x67\xdd\x68\xfd\x7f\xee\xfe\x7b\xc7" "\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xfa\xb8\xc5\xfe\x07\x00" "\x00\x80\x69\xe4\xee\xbf\x4f\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7" "\xdf\x37\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\xdf\x92\xfe\x5f\xff\xbf\x44\xff\xaf\xff\xdf\xf3\xfb\xf5\xff\xfa\x7f" "\xd6\x8d\xd6\xff\xe7\xee\xbf\x5f\xdc\xd2\x64\xff\x03\x00\x00\x40\x07" "\xb9\xfb\x6f\x88\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xfb\xc7\x2d" "\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x03\xe2\x96\x26\xfb\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x2d\xe9\xff\xf5\xff\x4b\xf4\xff" "\xfa\xff\x3d\xbf\xff\xb2\xfa\xff\xfc\x7b\x5a\xff\xcf\x1e\x8c\xd6\xff" "\xe7\xee\x7f\x60\xdc\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\xbf\x83\xfe" "\xbf\xfe\xc1\xd4\xff\x1f\xd3\xff\xeb\xff\xf7\x44\xff\xaf\xff\x5f\xa2" "\xff\xd7\xff\xef\xf9\xfd\xbe\xff\xaf\xff\x67\xdd\x68\xfd\x7f\xee\xfe" "\x87\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x61\x71\x8b\xfd" "\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xf0\xb8\xc5\xfe\x07\x00\x00\x80\x69" "\xe4\xee\x7f\x44\xdc\xd2\x64\xff\xeb\xff\xf5\xff\x3b\xe8\xff\x7d\xff" "\x5f\xff\x7f\x0b\xfd\xbf\xfe\xff\x6a\xf4\xff\xfa\xff\x23\xfd\xff\xb9" "\x5d\x76\x3f\xbf\xf7\xf7\xeb\xff\xf5\xff\xac\x1b\xad\xff\xcf\xdd\xff" "\xc8\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x2a\x6e\xb1\xff" "\x01\x00\x00\x60\x1a\xb9\xfb\x1f\x1d\xb7\xd8\xff\x00\x00\x00\x30\x8d" "\xdc\xfd\x8f\x89\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff" "\xeb\xff\xb7\x74\xd1\xfd\xff\x95\x8d\xfe\x0d\x00\xfa\xff\x63\xfa\xff" "\x93\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x65\xa3\xf5\xff\xb9\xfb\x1f\x1b" "\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xc7\xc5\x2d\xf6\x3f\x00" "\x00\x00\x4c\x23\x77\xff\xe3\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb" "\xff\x09\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd" "\xff\x96\x7c\xff\x5f\xff\xbf\x44\xff\xaf\xff\xdf\xf3\xfb\xf5\xff\xfa" "\x7f\xd6\x8d\xd6\xff\xe7\xee\x7f\x62\xdc\xd2\x64\xff\x03\x00\x00\x40" "\x07\xb9\xfb\x9f\x14\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x4f\x8e" "\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xa7\xc4\x2d\x4d\xf6\xbf\xfe" "\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x5b\xd2\xff\xeb\xff\x97\xe8" "\xff\xf5\xff\x7b\x7e\xbf\xfe\x5f\xff\xcf\xba\xd1\xfa\xff\xdc\xfd\x4f" "\x8d\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xd3\xe2\x16\xfb\x1f" "\x00\x00\x00\xa6\x91\xbb\xff\xe9\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8" "\xdd\xff\x8c\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\x7f\x4b\xfa\x7f\xfd\xff\x12\xfd\xbf\xfe\x7f\xcf\xef\xd7\xff\xeb" "\xff\x59\x37\x5a\xff\x9f\xbb\xff\x99\x71\x4b\x93\xfd\x0f\x00\x00\x00" "\x1d\xe4\xee\x7f\x56\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x3f\x3b" "\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x9f\x13\xb7\x34\xd9\xff\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x6f\x49\xff\xaf\xff\x5f\xa2" "\xff\xd7\xff\xef\xf9\xfd\xfa\x7f\xfd\x7f\x7b\xb7\x5b\xff\x91\xd1\xfa" "\xff\xdc\xfd\xcf\x8d\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xf3" "\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\xf9\x71\x8b\xfd\x0f\x00" "\x00\x00\xd3\xc8\xdd\xff\x82\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff" "\xfa\xff\x33\xf5\xff\xb7\xd7\xff\xeb\xff\xcf\x46\xff\x7f\xb1\xfd\xff" "\xe1\xdf\xdf\x87\xf4\xff\x27\x7f\x0f\xfd\xbf\xfe\x5f\xff\xaf\xff\x67" "\x5b\xa3\xf5\xff\xb9\xfb\x6f\x8c\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20" "\x77\xff\x0b\xe3\x96\xd3\xed\xff\x1b\xee\xb1\xcd\xb3\x00\x00\x00\x80" "\x6b\x28\x77\xff\x8b\xe2\x16\x7f\xfe\x0f\x00\x00\x00\xd3\xc8\xdd\xff" "\xe2\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xdf\xff\xd7\xff" "\x6f\x49\xff\xef\xfb\xff\x4b\xf4\xff\xfa\xff\x3d\xbf\x5f\xff\xaf\xff" "\x67\xdd\x68\xfd\x7f\xee\xfe\x97\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74" "\x90\xbb\xff\xa5\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xb2\xb8" "\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x79\xdc\xd2\x64\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xff\x68\xfd\xff\x95\x3b\x1c\xff\xde\xfa\x7f\xfd" "\xff\x69\xe8\xff\xf5\xff\x47\xfa\xff\x73\xbb\xec\x7e\x7e\xef\xef\xd7" "\xff\xeb\xff\x59\x37\x5a\xff\x9f\xbb\xff\x15\x71\x4b\x93\xfd\x0f\x00" "\x00\x00\x1d\xe4\xee\x7f\x65\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7" "\xbf\x2a\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x5f\x1d\xb7\x34\xd9" "\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x3f\x5a\xff\xef\xfb\xff\xfa\xff\xb3" "\xd0\xff\xeb\xff\x8f\xf4\xff\xe7\x76\xd9\xfd\xfc\xde\xdf\xaf\xff\xd7" "\xff\xb3\x6e\xb4\xfe\x3f\x77\xff\x6b\xe2\x96\x26\xfb\x1f\x00\x00\x00" "\x3a\xc8\xdd\xff\xda\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x5d" "\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xbf\x3e\x6e\x69\xb2\xff\xf5" "\xff\xfa\x7f\xfd\xff\xa5\xf7\xff\xf7\xbc\x3e\x7e\x5e\xff\x1f\x7f\x5d" "\xf5\xff\xfa\xff\x33\xd0\xff\x1f\xf6\xff\x37\x2e\xfe\xbc\xfe\xff\xe4" "\xef\xa1\xff\xd7\xff\xeb\xff\xf5\xff\x6c\x6b\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\xbb\xf7\xff\xd7\xe9\xff\xf5\xff\x97\xdf" "\xff\x17\xfd\x7f\xfc\x75\xd5\xff\xeb\xff\xcf\x40\xff\xef\xfb\xff\x47" "\xfa\xff\x73\xbb\xec\x7e\x7e\xef\xef\xd7\xff\xeb\xff\x59\x37\x5a\xff" "\x9f\xbb\xff\x2d\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x6b" "\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xbf\x2d\x6e\xb1\xff\x01\x00" "\x00\x60\x1a\xb9\xfb\xdf\x1e\xb7\x34\xd9\xff\xdd\xfb\xff\x23\xfd\xbf" "\xfe\x5f\xff\xaf\xff\xd7\xff\x6f\x4a\xff\xaf\xff\x5f\xa2\xff\xd7\xff" "\xef\xf9\xfd\xfa\x7f\xfd\x3f\xeb\x46\xeb\xff\x73\xf7\xbf\x23\x6e\x69" "\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xef\x8c\x5b\xec\x7f\x00\x00\x00" "\x98\x46\xee\xfe\x77\xc5\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\xbb" "\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x2d" "\xed\xb6\xff\xbf\xdb\x9d\x4f\xfc\x47\xfd\xff\x31\xfd\xff\x49\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\xcf\xb2\xd1\xfa\xff\xdc\xfd\xef\x89\x5b\x9a\xec" "\x7f\x00\x00\x00\xe8\x20\x77\xff\x7b\xe3\x16\xfb\x1f\x00\x00\x00\xa6" "\x91\xbb\xff\x7d\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xfe\xb8" "\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\x4b\xbb" "\xed\xff\x0f\xe8\xff\x8f\xe9\xff\x4f\xd2\xff\xeb\xff\xf5\xff\xa7\xea" "\xff\xef\xbe\xd9\xff\x38\x33\x92\x3b\x5d\xed\xbf\x1c\xad\xff\xcf\xdd" "\xff\x81\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x7f\x30\x6e\xb1" "\xff\x01\x00\x00\x60\x1a\xb9\xfb\x3f\x14\xb7\xd8\xff\x00\x00\x00\x30" "\x8d\xdc\xfd\x1f\x8e\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\xb7\xa4\xff\xd7\xff\x2f\xd1\xff\xeb\xff\xf7\xfc\x7e\xfd" "\xbf\xef\xff\xb3\x6e\xb4\xfe\x3f\x77\xff\x47\xe2\x96\x26\xfb\x1f\x00" "\x00\x00\x3a\xc8\xdd\xff\xd1\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee" "\xff\x58\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x7f\x3c\x6e\x69\xb2" "\xff\xf5\xff\xe7\xea\xff\xaf\x1c\x06\x9a\xfa\xff\xab\xbf\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x25\xfa\x7f\xfd\xff\x9e\xdf\xaf" "\xff\xd7\xff\xb3\x6e\xb4\xfe\x3f\x77\xff\x27\xe2\x96\x26\xfb\x1f\x00" "\x00\x00\x3a\xc8\xdd\xff\xc9\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee" "\xff\x54\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x7f\x3a\x6e\x69\xb2" "\xff\xf5\xff\xbe\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x5b\xd2\xff\xeb" "\xff\x97\xe8\xff\xf5\xff\x7b\x7e\xbf\xfe\x5f\xff\xcf\xba\xd1\xfa\xff" "\xdc\xfd\x9f\x89\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x67\xe3" "\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x73\x71\x8b\xfd\x0f\x00\x00" "\x00\xd3\xc8\xdd\xff\xf9\xb8\xa5\xc9\xfe\xbf\x75\xff\x7f\x45\xff\xaf" "\xff\xd7\xff\xeb\xff\x83\xfe\x5f\xff\x7f\xdb\xe9\xff\xf5\xff\x4b\xf4" "\xff\xfa\xff\x3d\xbf\x5f\xff\xaf\xff\x67\xdd\x68\xfd\x7f\xee\xfe\x2f" "\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x8b\x71\x8b\xfd\x0f" "\x00\x00\x00\xd3\xc8\xdd\xff\xa5\xb8\xe5\x7f\xf6\xff\xe1\xff\x57\x14" "\x00\x00\x00\xd8\x97\xdc\xfd\x5f\x8e\x5b\x9a\xfc\xf9\xbf\xef\xff\xeb" "\xff\xaf\xd6\xff\xdf\x45\xff\xaf\xff\xbf\x85\xfe\x5f\xff\x7f\xdb\xe9" "\xff\xf5\xff\x4b\xf4\xff\xfa\xff\x3d\xbf\x5f\xff\xaf\xff\x67\xdd\x68" "\xfd\x7f\xee\xfe\xaf\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff" "\xab\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xb5\xb8\xc5\xfe\x07" "\x00\x00\x80\x69\xe4\xee\xff\x7a\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xbe" "\xff\xaf\xff\xd7\xff\xeb\xff\xb7\xa4\xff\xd7\xff\x2f\xd1\xff\xeb\xff" "\xf7\xfc\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb\xbf\x11\xb7\x34" "\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x6f\xc6\x2d\xf6\x3f\x00\x00\x00" "\x4c\x23\x77\xff\xb7\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\xdb" "\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x96" "\xf4\xff\xfa\xff\x25\xfa\x7f\xfd\xff\x9e\xdf\xaf\xff\xd7\xff\xb3\x6e" "\xb4\xfe\x3f\x77\xff\x77\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd" "\xff\xdd\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x5e\xdc\x62\xff" "\x03\x00\x00\xc0\x34\x72\xf7\x7f\x3f\x6e\x69\xb2\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\x7f\xa0\xfe\xff\xa6\x23\xfd\xbf\xfe\xff\x8c\xf4\xff\x87" "\xfd\xff\x1d\x17\x7f\x5e\xff\x7f\xf2\xf7\xd0\xff\xeb\xff\xf5\xff\xfa" "\x7f\xb6\x35\x5a\xff\x9f\xbb\xff\x07\x71\x4b\x93\xfd\x0f\x00\x00\x00" "\x1d\xe4\xee\xff\x61\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xff\x28" "\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x7f\x1c\xb7\x34\xd9\xff\xfa" "\xff\x2d\xfb\xff\xbb\xea\xff\xf5\xff\xfa\x7f\xdf\xff\xd7\xff\xeb\xff" "\x7d\xff\x7f\x81\xfe\x5f\xff\xbf\xe7\xf7\xef\xab\xff\xff\xd7\xc1\x3f" "\xcd\xfa\x7f\x2e\xc6\x68\xfd\x7f\xee\xfe\x9f\xc4\x2d\x4d\xf6\x3f\x00" "\x00\x00\x4c\xef\xe6\xa3\xda\xfd\x3f\x8d\x5b\xec\x7f\x00\x00\x00\x98" "\x46\xee\xfe\x9f\xc5\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x4d\x71" "\x4b\x93\xfd\xaf\xff\xf7\xfd\xff\xf9\xfa\xff\xff\xfe\xa8\xfe\x5f\xff" "\xaf\xff\x1f\x85\xfe\x5f\xff\xbf\x44\xff\xaf\xff\xdf\xf3\xfb\xf7\xd5" "\xff\xdf\x9a\xfe\x9f\x8b\x30\x5a\xff\x9f\xbb\xff\xe7\x71\x4b\x93\xfd" "\x0f\x00\x00\x00\x1d\xe4\xee\xff\x45\xdc\x72\xba\xfd\x7f\xdd\x36\xaf" "\x02\x00\x00\x00\xae\xa5\xdc\xfd\xbf\x8c\x5b\xfc\xf9\x3f\x00\x00\x00" "\x4c\x23\x77\xff\xaf\xe2\x96\x26\xfb\x5f\xff\xaf\xff\x9f\xaf\xff\xf7" "\xfd\x7f\xfd\xff\x31\xfd\xff\x18\xf4\xff\xfa\xff\x25\xfa\x7f\xfd\xff" "\x9e\xdf\xaf\xff\xd7\xff\xb3\x6e\xb4\xfe\x3f\x77\xff\xaf\xe3\x96\x26" "\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x9b\xb8\xc5\xfe\x07\x00\x00\x80" "\x69\xe4\xee\xff\x6d\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xff\x2e" "\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xa3\xfe\xff\xdf\xf9" "\x73\xfa\x7f\xfd\xbf\xfe\x5f\xff\xff\xff\xe8\xff\xf5\xff\x7b\x7e\xbf" "\xfe\x5f\xff\xcf\xba\xd1\xfa\xff\xdc\xfd\xbf\x8f\x5b\x9a\xec\x7f\x00" "\x00\x00\xe8\x20\x77\xff\x1f\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb" "\xff\x8f\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xa7\xb8\xa5\xc9" "\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xdf\xff\xd7\xff\x6f\x49\xff\xaf" "\xff\x5f\xa2\xff\xd7\xff\xef\xf9\xfd\xfa\x7f\xfd\x3f\xeb\x46\xeb\xff" "\x73\xf7\xff\x39\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x7f\x89" "\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x9b\xe3\x16\xfb\x1f\x00\x00" "\x00\xa6\x91\xbb\xff\xaf\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\xfa\x7f\xfd\xff\x96\xf4\xff\xfa\xff\x25\xfa\x7f\xfd\xff\x9e\xdf" "\xaf\xff\xd7\xff\xb3\x6e\xb4\xfe\x3f\x77\xff\xdf\xe2\x96\x26\xfb\x1f" "\x00\x00\x00\x3a\xc8\xdd\xff\xf7\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4" "\xee\xff\x47\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xff\x33\x6e\x69" "\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\x92\xfe\x5f" "\xff\xbf\x44\xff\xaf\xff\xdf\xf3\xfb\xf5\xff\xfa\x7f\xd6\x8d\xd6\xff" "\xe7\xee\xff\x4f\x00\x00\x00\xff\xff\x80\x48\x58\xe9", 24187); syz_mount_image(/*fs=*/0x20002480, /*dir=*/0x20000100, /*flags=MS_NOATIME|MS_MANDLOCK*/ 0x440, /*opts=*/0x20000400, /*chdir=*/2, /*size=*/0x5e7b, /*img=*/0x2000e100); break; case 1: memcpy((void*)0x20000140, "./file0\000", 8); memcpy((void*)0x20000180, "security.ima\000", 13); *(uint8_t*)0x200001c0 = 4; *(uint8_t*)0x200001c1 = 5; syscall(__NR_lsetxattr, /*path=*/0x20000140ul, /*name=*/0x20000180ul, /*val=*/0x200001c0ul, /*size=*/2ul, /*flags=*/0ul); break; case 2: memcpy((void*)0x20000080, "cgroup.controllers\000", 19); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000080ul, /*flags=*/0x275aul, /*mode=*/0ul); if (res != -1) r[0] = res; break; case 3: memset((void*)0x20000000, 50, 1); syscall(__NR_write, /*fd=*/r[0], /*buf=*/0x20000000ul, /*count=*/1ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); for (procid = 0; procid < 6; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }