// https://syzkaller.appspot.com/bug?id=dcecd7055fda09451367a40db390ae0f9e707516 // 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 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; } 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"); } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 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++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[1] = {0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x20000000, "jfs\000", 4); memcpy((void*)0x20000040, "./file0\000", 8); memcpy( (void*)0x200000c0, "\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x6d\x61\x63\x63\x72\x6f\x61" "\x74\x69\x61\x6e\x2c\x64\x69\x73\x63\x61\x72\x64\x3d\x30\x78\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x33\x2c\x6e\x6f" "\x64\x69\x73\x63\x61\x72\x64\x2c\x65\x72\x72\x6f\x72\x73\x3d\x63\x6f" "\x6e\x74\x69\x6e\x75\x65\x2c\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d" "\x6d\x61\x63\x63\x79\x72\x69\x6c\x6c\x69\x63\x2c\x00\x67\xad\xd4\xce" "\xec\x7c\xb8\x70\x2b\x1b\x4a\x0f\xf3\x22\x83\x9e\x69\xb5\x07\xd7\x47" "\x8e\x07\x06\xb0\x04\x08\xdc\x59\x28\x3f\x5c\x01\x59\xb8\xe3\xc0\x28" "\x9d\xcb\x18\x25\x04\x84\x4e\xf8\xe6\x97\x2c\xdb\x3f\x50\x68\x0f\xc9" "\x60\x2e\xd2\x7c\x1f\x6b\x47\xa9\x1f\x94\x1f\x15\x4a\xe2\x05\xd3\x4a" "\x9b\x7a\x7c\x67\xef\xa0\xc0\xe2\xa7\x02\x51\xd6\x64\xfc\xe1\x2a\xe6" "\x4a\x5a\x52\x1a\xa8\x30\x80\xb7\x67\x2c\x4e\x15\x66\xa6\x1a\x0a\xde" "\x4b\x6c\x9d\x78\x15\x10\x53\xd9\xfb\x31\xfd\x2c\xfc\x77\xf2\x69\xf8" "\x73\xe1\x4e\x5f\xe3\xc4\x6c\x0a\xcb\xb2\x2d\x40\x39\x1a\xe3\x1d\x20" "\x25\xdc\xd9\x47\xad\xf7\x67\x39\xae\x4e\xcb\xe3\xb6\x30\x04\x0b\x37" "\xe2\xb0\x9d\x78\x16\xe0\xb9\x39\x81\xde\x11\x47\x53\x2c\xf2\xf4\x6d" "\x4d\x49\x04\xf6\x8f\xb4\x3c\xd1\x65\xb9", 282); memcpy( (void*)0x20006940, "\x78\x9c\xec\xdd\xcd\x8e\x1c\x57\xd9\x07\xf0\xa7\xfa\x6b\x3e\xf2\xc6" "\xb1\xb2\x88\xf2\x5a\x08\x4d\x12\x03\x09\x21\xfe\x0c\xc6\x10\x20\xc9" "\x02\x16\x6c\x58\x20\x6f\x91\xad\xc9\x24\xb2\x70\x00\xd9\x06\x39\x91" "\x85\x27\x9a\x0d\x0b\x2e\x02\x84\xc4\x12\x10\x4b\x56\x5c\x40\x16\x6c" "\xd9\x71\x01\x58\xb2\x91\x80\xac\x52\xa8\x66\xce\x19\xd7\x34\xdd\xee" "\xb1\x9d\xe9\xea\x99\xf3\xfb\x49\x93\xaa\xa7\x4e\xd5\xf4\xa9\xfc\xbb" "\xa6\xbb\x5d\x55\x7d\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x88\xef\x7d\xf7\x07\x67\xab\x88\xb8\xfc\xf3\xb4\xe0\x78" "\xc4\xff\x45\x3f\xa2\x17\xb1\xd2\xd4\x6b\x11\xb1\xb2\x76\x3c\xaf\x3f" "\x88\x88\xe7\x63\xbb\x39\x9e\x8b\x88\xe1\x52\x44\x95\x1b\x9f\x89\x78" "\x3d\x22\x3e\x3e\x16\x71\xef\xfe\xed\xf5\x66\xd1\xb9\x7d\xf6\xe3\x3b" "\x7f\xfc\xdb\x6f\x7f\xf8\xd4\xf7\xff\xfa\xfb\xe1\xe9\x7f\xff\xe9\x66" "\xff\x8d\x69\xeb\xdd\xba\xf5\xab\x7f\xfd\xf9\xce\xe3\xef\x2f\x00\x00" "\x00\x94\xa8\xae\xeb\xba\x4a\x1f\xf3\x4f\xa4\xcf\xf7\xbd\xae\x3b\x05" "\x00\xcc\x45\x7e\xfd\xaf\x93\xbc\x5c\xbd\x70\xf5\xe6\x82\xf5\x47\xad" "\x56\xab\xd5\x87\xb0\x6e\xab\x27\xbb\xd3\x2e\x22\x62\xb3\xbd\x4d\xf3" "\x9e\xc1\xe9\x78\x00\x38\x64\x36\xe3\x93\xae\xbb\x40\x87\xe4\x5f\xb4" "\x41\x44\x3c\xd5\x75\x27\x80\x85\x56\x75\xdd\x01\x0e\xc4\xbd\xfb\xb7" "\xd7\xab\x94\x6f\xd5\x7e\x3d\x58\xdb\x69\xcf\xd7\x82\xec\xc9\x7f\xb3" "\xda\xbd\xbf\x63\xda\x74\x96\xf1\x6b\x4c\xe6\xf5\xfc\xda\x8a\x7e\x3c" "\x3b\xa5\x3f\x2b\x73\xea\xc3\x22\xc9\xf9\xf7\xc6\xf3\xbf\xbc\xd3\x3e" "\x4a\xeb\x1d\x74\xfe\xf3\x32\x2d\xff\xd1\xce\xad\x4f\xc5\xc9\xf9\xf7" "\xc7\xf3\x1f\x73\x74\xf2\xef\x4d\xcc\xbf\x54\x39\xff\xc1\x23\xe5\xdf" "\x97\x3f\x00\x00\x00\x00\x00\x2c\xb0\xfc\xef\xff\xc7\x3b\x3e\xff\xbb" "\xf4\xe4\xbb\xb2\x2f\x0f\x3b\xff\xbb\x36\xa7\x3e\x00\x00\x00\x00\x00" "\x00\x00\xc0\x67\xed\x49\xc7\xff\xdb\x55\x19\xff\x0f\x00\x00\x00\x16" "\x55\xf3\x59\xbd\xf1\xeb\x63\x0f\x96\x4d\xfb\x2e\xb6\x66\xf9\xa5\x2a" "\xe2\xe9\xb1\xf5\x81\xc2\xa4\x9b\x65\x56\xbb\xee\x07\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x94\x64\xb0\x73\x0d\xef\xa5\x2a\x62\x18\x11" "\x4f\xaf\xae\xd6\x75\xdd\xfc\xb4\x8d\xd7\x8f\xea\x49\xb7\x3f\xec\x4a" "\xdf\x7f\x28\x59\xd7\x7f\xe4\x01\x00\x60\xc7\xc7\xc7\xc6\xee\xe5\xaf" "\x22\x96\x23\xe2\x52\xfa\xae\xbf\xe1\xea\xea\x6a\x5d\x2f\xaf\xac\xd6" "\xab\xf5\xca\x52\x7e\x3f\x3b\x5a\x5a\xae\x57\x5a\x9f\x6b\xf3\xb4\x59" "\xb6\x34\xda\xc7\x1b\xe2\xc1\xa8\x6e\x7e\xd9\x72\x6b\xbb\xb6\x59\x9f" "\x97\x67\xb5\x8f\xff\xbe\xe6\xb1\x46\x75\x7f\x1f\x1d\x9b\x8f\x0e\x03" "\x07\x80\x88\xd8\x79\x35\xba\xe7\x15\xe9\x88\xa9\xeb\x67\xa2\xeb\x77" "\x39\x1c\x0e\x8e\xff\xa3\xc7\xf1\xcf\x7e\x74\xfd\x3c\x05\x00\x00\x00" "\x0e\x5e\x5d\xd7\x75\x95\xbe\xce\xfb\x44\x3a\xe7\xdf\xeb\xba\x53\x00" "\xc0\x5c\xe4\xd7\xff\xf1\xf3\x02\x6a\xb5\x5a\xad\x56\xab\x8f\x5e\xdd" "\x56\x4f\x76\xa7\x5d\x44\xc4\x66\x7b\x9b\xe6\x3d\x83\xe1\xf8\x01\xe0" "\x90\xd9\x8c\x4f\xba\xee\x02\x1d\x92\x7f\xd1\x06\x11\xf1\x7c\xd7\x9d" "\x00\x16\x5a\xd5\x75\x07\x38\x10\xf7\xee\xdf\x5e\xaf\x52\xbe\x55\xfb" "\xf5\x20\x8d\xef\x9e\xaf\x05\xd9\x93\xff\x66\xb5\xbd\x5d\xde\x7e\xd2" "\x74\x96\xf1\x6b\x4c\xe6\xf5\xfc\xda\x8a\x7e\x3c\x3b\xa5\x3f\xcf\xcd" "\xa9\x0f\x8b\x24\xe7\xdf\x1b\xcf\xff\xf2\x4e\xfb\x28\xad\x77\xd0\xf9" "\xcf\xcb\xb4\xfc\x9b\xfd\x3c\xde\x41\x7f\xba\x96\xf3\xef\x8f\xe7\x3f" "\xe6\xe8\xe4\xdf\x9b\x98\x7f\xa9\x72\xfe\x83\x47\xca\xbf\x2f\x7f\x00" "\x00\x00\x00\x00\x58\x60\xf9\xdf\xff\x8f\x2f\xd4\xf9\xdf\xd1\xe3\xee" "\xce\x4c\x0f\x3b\xff\xbb\x76\x60\x8f\x0a\x00\x00\x00\x00\x00\x00\x00" "\x07\xeb\xde\xfd\xdb\xeb\xf9\xbe\xd7\x7c\xfe\xff\x73\x13\xd6\x73\xff" "\xe7\xd1\x94\xf3\xaf\xe4\x5f\xa4\x9c\x7f\xba\xff\x7f\xf7\xc2\x9b\x97" "\xc7\xd6\xeb\xb7\xe6\xef\xbe\xfd\x20\xff\x7f\xde\xbf\xbd\xfe\xbb\x9b" "\xff\xf8\xff\x3c\xdd\x6f\xfe\x4b\x79\xa6\x4a\xcf\xac\x2a\x3d\x23\xaa" "\xf4\x48\xd5\x20\x4d\x1f\x73\xc7\xa6\xd8\x1a\xf6\x47\xcd\x23\x0d\xab" "\x5e\x7f\x90\xae\xf9\xa9\x87\xef\xc6\xd5\xb8\x16\x1b\x71\x66\xcf\xba" "\xbd\x74\x3c\x3c\x68\x3f\xbb\xa7\xbd\xe9\xe9\x70\xbb\xbd\xee\xef\xb4" "\x9f\xdb\xd3\x3e\xd8\x6d\xcf\xdb\x9f\xdf\xd3\x3e\x4c\x57\x3a\xd5\x2b" "\xb9\xfd\x54\xac\xc7\x4f\xe2\x5a\xbc\xb3\xdd\xde\xb4\x2d\xcd\xd8\xff" "\xe5\x19\xed\xf5\x8c\xf6\x9c\x7f\xdf\xf1\x5f\xa4\x9c\xff\xa0\xf5\xd3" "\xe4\xbf\x9a\xda\xab\xb1\x69\xe3\xee\x47\xbd\xff\x39\xee\xdb\xd3\x49" "\x8f\xf3\xd6\xd5\xcf\xff\xf2\xcc\xc1\xef\xce\x4c\x5b\xd1\xdf\xdd\xb7" "\xb6\x66\xff\x5e\xec\xa0\x3f\xdb\xff\x4f\x9e\x1a\xc5\xcf\x6e\x6c\x5c" "\x3f\x75\xeb\xca\xcd\x9b\xd7\xcf\x46\x9a\xec\x59\x7a\x2e\xd2\xe4\x33" "\x96\xf3\x1f\xa6\x9f\x9c\xff\xcb\x2f\xed\xb4\xe7\xbf\xfb\xed\xe3\xf5" "\xee\x47\xa3\x47\xce\x7f\x51\x6c\xc5\x60\x6a\xfe\x2f\xb5\xe6\x9b\xfd" "\x7d\x65\xce\x7d\xeb\x42\xce\x7f\x94\x7e\x72\xfe\xef\xa4\xf6\xc9\xc7" "\xff\x61\xce\x7f\xfa\xf1\xff\x6a\x07\xfd\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x80\x87\xa9\xeb\x7a\xfb\x16\xd1\xb7\x22\xe2\x42" "\xba\xff\xa7\xab\x7b\x33\x01\x80\xf9\xca\xaf\xff\x75\x92\x97\xcf\xab" "\xee\x3f\xee\xf6\x7f\xd8\xbb\x1f\x5d\xf5\x5f\xad\x9e\x73\x5d\x2d\x58" "\x7f\xe6\x5a\x7f\x5a\x2f\x56\x7f\xd4\x0b\x59\xff\x67\xc1\xfa\xb3\x70" "\x75\x5b\x3d\xd9\x9b\xed\x22\x22\xfe\xd2\xde\xa6\x79\xcf\xf0\x8b\x49" "\xbf\x0c\x00\x58\x64\x9f\x46\xc4\xdf\xbb\xee\x04\x9d\x91\x7f\xc1\xf2" "\xf7\xfd\x35\xd3\x93\x5d\x77\x06\x98\xab\x1b\x1f\x7c\xf8\xa3\x2b\xd7" "\xae\x6d\x5c\xbf\xd1\x75\x4f\x00\x00\x00\x00\x00\x00\x00\x80\xc7\x95" "\xc7\xff\x5c\x6b\x8d\xff\x7c\xb2\xae\xeb\x3b\x63\xeb\xed\x19\xff\xf5" "\xed\x58\x7b\xd2\xf1\x3f\x07\x79\x66\x77\x80\xd1\x29\x03\x55\xf7\x1f" "\x7d\x9f\x1e\x66\xab\x37\xea\xf7\x5a\xc3\x8d\xbf\x10\xd3\xc6\xff\x1e" "\xee\xce\x3d\x6c\xfc\xef\xc1\x8c\xc7\x1b\xce\x68\x1f\xcd\x68\x5f\x9a" "\xd1\xbe\x3c\xa3\x7d\xe2\x8d\x1e\x2d\x39\xff\x17\x5a\xe3\x9d\x9f\x8c" "\x88\x13\x63\xc3\xaf\x97\x30\xfe\xeb\xf8\x98\xf7\x25\xc8\xf9\xbf\xd8" "\x7a\x3e\x37\xf9\x7f\x69\x6c\xbd\x76\xfe\xf5\x6f\x0e\x73\xfe\xbd\x3d" "\xf9\x9f\xbe\xf9\xfe\x4f\x4f\xdf\xf8\xe0\xc3\xd7\xae\xbe\x7f\xe5\xbd" "\x8d\xf7\x36\x7e\x7c\xfe\xec\xd9\x33\xe7\x2f\x5c\xb8\x78\xf1\xe2\xe9" "\x77\xaf\x5e\xdb\x38\xb3\xf3\xdf\x0e\x7b\x7c\xb0\x72\xfe\x79\xec\x6b" "\xd7\x81\x96\x25\xe7\x9f\x33\x97\x7f\x59\x72\xfe\x5f\x48\xb5\xfc\xcb" "\x92\xf3\xff\x62\xaa\xe5\x5f\x96\x9c\x7f\x7e\xbf\x27\xff\xb2\xe4\xfc" "\xf3\x67\x1f\xf9\x97\x25\xe7\xff\x4a\xaa\xe5\x5f\x96\x9c\xff\x97\x53" "\x2d\xff\xb2\xe4\xfc\x5f\x4d\xb5\xfc\xcb\x92\xf3\xff\x4a\xaa\xe5\x5f" "\x96\x9c\xff\x6b\xa9\x96\x7f\x59\x72\xfe\xa7\x52\x2d\xff\xb2\xe4\xfc" "\x4f\xa7\x7a\x9f\xf9\xaf\x1c\x74\xbf\x98\x8f\x9c\x7f\x3e\xc3\xe5\xf8" "\x2f\x4b\xce\x3f\x5f\xd9\x20\xff\xb2\xe4\xfc\xcf\xa5\x5a\xfe\x65\xc9" "\xf9\x9f\x4f\xb5\xfc\xcb\x92\xf3\x7f\x3d\xd5\xf2\x2f\x4b\xce\xff\xab" "\xa9\x96\x7f\x59\x72\xfe\x17\x52\x2d\xff\xb2\xe4\xfc\xbf\x96\x6a\xf9" "\x97\x25\xe7\x7f\x31\xd5\xf2\x2f\x4b\xce\xff\xeb\xa9\x96\x7f\x59\x72" "\xfe\xdf\x48\xb5\xfc\xcb\x92\xf3\x7f\x23\xd5\xf2\x2f\x4b\xce\xff\x9b" "\xa9\x96\x7f\x59\x72\xfe\xdf\x4a\xb5\xfc\xcb\x92\xf3\xff\x76\xaa\xe5" "\x5f\x96\x9c\xff\x9b\xa9\x96\x7f\x59\x1e\x7c\xff\xbf\x19\x33\x66\xcc" "\xe4\x99\xae\xff\x32\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe3" "\xe6\x71\x39\x71\xd7\xfb\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xc0\x7f\xd9\x81\x03\x01\x00\x00\x00\x00\x20\xff\xd7\x46\xa8" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xc2\x0e" "\x1c\x08\x00\x00\x00\x00\x00\xf9\xbf\x36\x42\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x15\xf6\xee\x2d\x46\xae\xbb\xbe" "\x03\xf8\x99\xbd\x79\xe3\x40\x62\x20\xa4\x4e\x6a\xc2\xc6\x31\xc6\x38" "\x9b\xec\xfa\x12\x5f\x68\x5d\x4c\xb8\x36\xdc\x4a\x42\x28\xf4\x82\xed" "\x7a\xd7\x66\xc1\x37\xbc\x76\x09\x34\xaa\x1d\x05\x4a\x24\x8c\x8a\x2a" "\xda\x86\x87\xb6\x80\x50\x9b\x97\x0a\xab\xe2\x81\x56\x80\xf2\x80\x5a" "\x55\xaa\x04\xed\x03\x7d\x41\x54\xa8\x3c\x44\x55\x40\x01\xa9\x2a\xad" "\x20\x5b\xcd\x9c\xff\xff\xbf\x33\xb3\xb3\x33\xbb\xde\xf1\xe6\xcc\x39" "\x9f\x8f\x94\xfc\xb2\x33\x67\xe6\x9c\x39\xf3\x9f\xd9\xfd\xda\xf9\xee" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xcd\xee\x7c\xc3\xec\xa7\x6a\x59\x96\xd5\x6a\xb5\xfc\x82\x4d\x59" "\xf6\xa2\xfa\xbc\x61\x62\x53\xe3\x92\xd7\xbe\xb0\xc7\x07\x00\x00\x00" "\xac\xdd\x2f\x1a\xff\x7e\xee\xe6\x74\xc1\xe1\x15\xdc\xa8\x69\x9b\x7f" "\xba\xe3\xdb\x5f\x5d\x58\x58\x58\xc8\xde\x37\xfc\xa7\xa3\x9f\x5b\x58" "\x48\x57\x4c\x64\xd9\xe8\x86\x2c\x6b\x5c\x17\x5d\xfd\xc1\xfb\x6b\xcd" "\xdb\x04\x8f\x67\xe3\xb5\xa1\xa6\xaf\x87\x7a\xec\x7e\xb8\xc7\xf5\x23" "\x3d\xae\x1f\xed\x71\xfd\x58\x8f\xeb\x37\xf4\xb8\x7e\xbc\xc7\xf5\x4b" "\x4e\xc0\x12\x37\x64\xb5\x74\x67\xdb\x1a\xff\xb9\x29\x3f\xa5\xd9\x2d" "\xd9\x68\xe3\xba\x6d\x1d\x6e\xf5\x78\x6d\xc3\x50\xfd\xdc\xa5\xdb\x66" "\xb5\xc6\x6d\x16\x46\x4f\x64\x73\xd9\xa9\x6c\x36\x9b\x6e\xd9\x3e\xdf" "\xb6\xd6\xd8\xfe\xeb\x77\xd6\xf7\xf5\xd6\x2c\xee\x6b\xa8\x69\x5f\x5b" "\xea\x2b\xe4\x27\x8f\x1e\x8f\xc7\x50\x0b\xe7\x78\x5b\xcb\xbe\x16\xef" "\x33\xfa\xd1\xeb\xb3\x89\x9f\xfe\xe4\xd1\xe3\x7f\x7d\xe1\xd9\xdb\x3a" "\xcd\x9e\xa7\xa1\xe5\xfe\xf2\xe3\xdc\xb1\xb5\x7e\x9c\x9f\x08\x97\xe4" "\xc7\x5a\xcb\x36\xa4\x73\x12\x8f\x73\xa8\xe9\x38\xb7\x74\x78\x4e\x86" "\x5b\x8e\xb3\xd6\xb8\x5d\xfd\xbf\xdb\x8f\xf3\xb9\x15\x1e\xe7\xf0\xe2" "\x61\xae\xab\xf6\xe7\x7c\x3c\x1b\x6a\xfc\xf7\x77\x1a\xe7\x69\xa4\x96" "\x75\x38\x4f\x5b\xc2\x65\x3f\xbb\x2b\xcb\xb2\xcb\x8b\x87\xdd\xbe\xcd" "\x92\x7d\x65\x43\xd9\xc6\x96\x4b\x86\x16\x9f\x9f\xf1\x7c\x45\xd6\xef" "\xa3\xbe\x94\x5e\x9a\x8d\xac\x6a\x9d\xde\xb9\x82\x75\x5a\x9f\x33\xdb" "\x5a\xd7\x69\xfb\x6b\x22\x3e\xff\x77\x86\xdb\x8d\x2c\x73\x0c\xcd\x4f" "\xd3\x8f\x1e\x1b\x6b\x7a\xde\x7f\xbe\x70\x2d\xeb\x34\xaa\x3f\xea\xe5" "\x5e\x2b\xed\x6b\xb0\xdf\xaf\x95\xa2\xac\xc1\xb8\x2e\xbe\xd3\x78\xd0" "\x4f\x74\x5c\x83\xdb\xc2\xe3\x7f\x74\xfb\xf2\x6b\xb0\xe3\xda\xe9\xb0" "\x06\xd3\xe3\x6e\x5a\x83\x5b\x7b\xad\xc1\xa1\xb1\xe1\xc6\x31\xa7\x27" "\xa1\xd6\xb8\xcd\xe2\x1a\xdc\xd5\xb2\xfd\x70\x63\x4f\xb5\xc6\x7c\x66" "\x7b\xf7\x35\x38\x75\xe1\xf4\xb9\xa9\xf9\x8f\x7d\xfc\x9e\xb9\xd3\xc7" "\x4e\xce\x9e\x9c\x3d\xb3\x67\xd7\xae\xe9\x3d\xfb\xf6\x1d\x38\x70\x60" "\xea\xc4\xdc\xa9\xd9\xe9\xfc\xdf\xd7\x78\xb6\x8b\x6f\x63\x36\x94\x5e" "\x03\x5b\xc3\xb9\x8b\xaf\x81\x57\xb7\x6d\xdb\xbc\x54\x17\xbe\x38\xb6" "\xe4\xfd\xf7\x5a\x5f\x87\xe3\x5d\x5e\x87\x9b\xda\xb6\xed\xf7\xeb\x70" "\xa4\xfd\xc1\xd5\xd6\xe7\x05\xb9\x74\x4d\xe7\xaf\x8d\xf7\xd4\x4f\xfa" "\xf8\x95\xa1\x6c\x99\xd7\x58\xe3\xf9\xd9\xb9\xf6\xd7\x61\x7a\xdc\x4d" "\xaf\xc3\x91\xa6\xd7\x61\xc7\xef\x29\x1d\x5e\x87\x23\x2b\x78\x1d\xd6" "\xb7\x39\xb7\x73\x65\x3f\xb3\x8c\x34\xfd\xd3\xe9\x18\x96\xff\x5e\xb0" "\xb6\x35\xb8\xa9\x69\x0d\xb6\xff\x3c\xd2\xbe\x06\xfb\xfd\xf3\x48\x51" "\xd6\xe0\x78\x58\x17\xdf\xdb\xb9\xfc\xf7\x82\x2d\xe1\x78\x9f\x98\x5c" "\xed\xcf\x23\xc3\x4b\xd6\x60\x7a\xb8\xe1\xbd\xa7\x7e\x49\xfa\x79\x7f" "\xfc\x40\x63\x74\x5a\x97\xb7\xd7\xaf\xb8\x71\x2c\xbb\x38\x3f\x7b\xfe" "\xde\x47\x8e\x5d\xb8\x70\x7e\x57\x16\xc6\xba\x78\x59\xd3\x5a\x69\x5f" "\xaf\x1b\x9b\x1e\x53\xb6\x64\xbd\x0e\xad\x7a\xbd\x1e\x9e\xbb\xe3\x89" "\xdb\x3b\x5c\xbe\x29\x9c\xab\xf1\x7b\xea\xff\x1a\x5f\xf6\xb9\xaa\x6f" "\xb3\xf7\xde\xee\xcf\x55\xe3\xbb\x5b\xe7\xf3\xd9\x72\xe9\xee\x2c\x8c" "\x3e\x5b\xef\xf3\xd9\xe9\xbb\x79\xfd\x7c\x8e\x65\xd9\xe7\xbf\xf5\xd8" "\x83\xdf\x78\xf4\xf3\x6f\x58\xf6\x7c\xd6\xf3\xe6\x27\xa6\xd6\xfe\xb3" "\x78\xca\xa5\x4d\xef\xbf\xa3\xcb\xbc\xff\xc6\xdc\xff\x7c\xbe\xbf\x74" "\x57\x8f\x0f\x8f\x8e\xe4\xaf\xdf\xe1\x74\x76\x46\x5b\xde\x8f\x5b\x9f" "\xaa\x91\xc6\x7b\x57\xad\xb1\xef\xe7\xa6\x56\xf6\x7e\x3c\x1a\xfe\x59" "\xef\xf7\xe3\x5b\xba\xbc\x1f\x6f\x6e\xdb\xb6\xdf\xef\xc7\xa3\xed\x0f" "\x2e\xbe\x1f\xd7\x7a\xfd\x69\xc7\xda\xb4\x3f\x9f\xe3\x61\x9d\x9c\x9a" "\xee\xfe\x7e\x5c\xdf\x66\xf3\xee\xd5\xae\xc9\x91\xae\xef\xc7\x77\x85" "\x59\x0b\xe7\xff\x35\x21\x29\xa4\x5c\xd4\xb4\x76\x96\x5b\xb7\x69\x5f" "\x23\x23\xa3\xe1\x71\x8d\xc4\x3d\xb4\xae\xd3\x3d\x2d\xdb\x8f\x86\x6c" "\x56\xdf\xd7\x53\xbb\xaf\x6d\x9d\xee\xb8\x2b\xbf\xaf\xe1\xf4\xe8\x16" "\xad\xd7\x3a\x9d\x68\xdb\xb6\xdf\xeb\x34\xfd\xd9\xd7\x72\xeb\xb4\xd6" "\xeb\x4f\xdf\xae\x4d\xfb\xf3\x39\x1e\xd6\xc5\x2d\x7b\xba\xaf\xd3\xfa" "\x36\x4f\xef\x5d\xfb\x7b\xe7\x0d\xf1\x3f\x9b\xde\x3b\xc7\x7a\xad\xc1" "\xd1\xe1\xb1\xfa\x31\x8f\xa6\x45\xd8\x78\xbf\xcf\x16\x6e\x88\x6b\xf0" "\xde\xec\x78\x76\x36\x3b\x95\xcd\x34\xae\x1d\x6b\xac\xa7\x5a\x63\x5f" "\x93\xf7\xad\x6c\x0d\x8e\x85\x7f\xd6\xfb\xbd\x72\x73\x97\x35\xb8\xa3" "\x6d\xdb\x7e\xaf\xc1\xf4\x7d\x6c\xb9\xb5\x57\x1b\x59\xfa\xe0\xfb\xa0" "\xfd\xf9\x1c\x0f\xeb\xe2\xc9\xfb\xba\xaf\xc1\xfa\x36\x6f\xdc\xdf\xdf" "\x9f\x5d\x77\x84\x4b\xd2\x36\x4d\x3f\xbb\xb6\xff\xf9\xda\x72\x7f\xe6" "\x75\x7b\xdb\x69\xba\x5e\x6b\x65\x24\x1c\xe7\xb7\xf6\x77\xff\xb3\xd9" "\xfa\x36\xa7\x0e\xac\x36\x67\x76\x3f\x4f\x77\x87\x4b\x6e\xec\x70\x9e" "\xda\x5f\xbf\xcb\xbd\xa6\x66\xb2\xf5\x39\x4f\x9b\xc3\x71\x3e\x7b\x60" "\xf9\xf3\x54\x3f\x9e\xfa\x36\x9f\x3b\xb8\xc2\xf5\x74\x38\xcb\xb2\x4b" "\x1f\xb9\xbf\xf1\xe7\xbd\xe1\xef\x57\xfe\xee\xe2\x77\xbf\xda\xf2\xf7" "\x2e\x9d\xfe\x4e\xe7\xd2\x47\xee\xff\xf1\x8b\x4f\xfc\xe3\x6a\x8e\x1f" "\x80\xc1\xf7\x7c\x3e\x36\xe6\xdf\xeb\x9a\xfe\x66\x6a\x25\x7f\xff\x0f" "\x00\x00\x00\x0c\x84\x98\xfb\x87\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d" "\x98\xfb\xe3\xff\x15\x9e\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x8f\x84" "\x99\x54\x24\xff\x6f\x7e\xe3\xb3\x73\xcf\x5f\xca\x52\x33\x7f\x21\x88" "\xd7\xa7\xd3\xf0\x40\xbe\x5d\xec\xb8\x4e\x87\xaf\x27\x16\x16\xd5\x2f" "\xbf\xff\xcb\xb3\xff\xfd\x0f\x97\x56\xb6\xef\xa1\x2c\xcb\x7e\xfe\xc0" "\x1f\x74\xdc\x7e\xf3\x03\xf1\xb8\x72\x13\xe1\x38\xaf\xbe\xa9\xf5\xf2" "\x25\xbe\x7a\xcf\x8a\xf6\x7d\xf4\xe1\x4b\x69\xbf\xcd\xfd\xf5\x2f\x84" "\xfb\x8f\x8f\x67\xa5\xcb\xa0\x53\x05\x77\x3a\xcb\xb2\xaf\xdf\xfc\x99" "\xc6\x7e\x26\xde\x7f\xa5\x31\x9f\x7e\xe0\x68\x63\x3e\x78\xf9\x89\xc7" "\xeb\xdb\x3c\x77\x30\xff\x3a\xde\xfe\x99\x97\xe5\xdb\xff\x45\x28\xff" "\x1e\x3e\x71\xac\xe5\xf6\xcf\x84\xf3\xf0\xc3\x30\xa7\xdf\xd6\xf9\x7c" "\xc4\xdb\x7d\xe5\xca\x6b\xb6\xec\x7f\xef\xe2\xfe\xe2\xed\x6a\x5b\x6f" "\x6a\x3c\xec\x27\x3f\x90\xdf\x6f\xfc\x3d\x39\x9f\x7d\x3c\xdf\x3e\x9e" "\xe7\xe5\x8e\xff\x1b\x9f\x7e\xea\x2b\xf5\xed\x1f\x79\x55\xe7\xe3\xbf" "\x34\xd4\xf9\xf8\x9f\x0a\xf7\xfb\xe5\x30\xff\xf7\x15\xf9\xf6\xcd\xcf" "\x41\xfd\xeb\x78\xbb\x4f\x86\xe3\x8f\xfb\x8b\xb7\xbb\xf7\x4b\xdf\xec" "\x78\xfc\x57\x3f\x95\x6f\x7f\xee\xcd\xf9\x76\x47\xc3\x8c\xfb\xdf\x11" "\xbe\xde\xf6\xe6\x67\xe7\x9a\xcf\xd7\x23\xb5\x63\x2d\x8f\x2b\x7b\x4b" "\xbe\x5d\xdc\xff\xf4\x77\xff\xb8\x71\x7d\xbc\xbf\x78\xff\xed\xc7\x3f" "\x7e\xe4\x4a\xcb\xf9\x68\x5f\x1f\x4f\xff\x5b\x7e\x3f\x53\x6d\xdb\xc7" "\xcb\xe3\x7e\xa2\xbf\x6f\xdb\x7f\xfd\x7e\x9a\xd7\x67\xdc\xff\x53\x7f" "\x74\xb4\xe5\x3c\xf7\xda\xff\xd5\x07\x9f\x79\x45\xfd\x7e\xdb\xf7\x7f" "\x77\xdb\x76\xe7\x3e\xb2\xb3\xb1\xff\xc5\xfb\x6b\xfd\x8d\x4d\x7f\xf9" "\xc9\xcf\x74\xdc\x5f\x3c\x9e\xc3\x7f\x7b\xae\xe5\xf1\x1c\x7e\x77\x78" "\x1d\x87\xfd\x3f\xf9\x81\xb0\x1e\xc3\xf5\xff\x77\x35\xbf\xbf\xf6\xdf" "\xae\x70\xf4\xdd\xad\xef\x3f\x71\xfb\x2f\x6c\xba\xd4\xf2\x78\xa2\xb7" "\xfe\x34\xdf\xff\xd5\xd7\x9d\x6c\xcc\x0d\xe3\x37\x6c\xbc\xf1\x45\x2f" "\xbe\xe9\xf2\x2b\xeb\xe7\x2e\xcb\xbe\xb3\x21\xbf\xbf\x5e\xfb\x3f\xf9" "\x57\x67\x5b\x8e\xff\x8b\xb7\xe6\xe7\x23\x5e\x1f\x3b\xfa\xed\xfb\x5f" "\x4e\xdc\xff\xf9\x8f\x4e\x9e\x39\x3b\x7f\x71\x6e\x26\x9d\xd5\x47\x6f" "\x6e\xfc\xee\x9c\xb7\xe7\xc7\x13\x8f\xf7\xe6\xf0\xde\xda\xfe\xf5\x91" "\xb3\x17\x3e\x38\x7b\x7e\x62\x7a\x62\x3a\xcb\x26\xca\xfb\x2b\xf4\xae" "\xd9\x97\xc2\xfc\x71\x3e\x2e\x77\xdf\x7a\x61\xc9\x3b\xe8\xce\x87\xc3" "\xf3\x79\xfb\x9f\x7f\x7d\xe3\xf6\x7f\xfd\x74\xbc\xfc\xdf\xdf\x93\x5f" "\x7e\xe5\x6d\xf9\xf7\xad\x57\x87\xed\x3e\x1b\x2e\xdf\x14\x9e\xbf\xd5" "\xed\x7f\xa9\x27\xef\xbc\xb5\xf1\xfa\xae\x3d\x1d\x8e\x70\x61\xe9\xef" "\x0b\x5e\x8b\x2d\xdb\xfe\xeb\xc0\x8a\x36\x0c\x8f\xbf\xfd\xe7\x82\xb8" "\xde\xcf\xbd\xfc\x83\x8d\xf3\x50\xbf\xae\xf1\x7d\x23\xbe\xae\xd7\x78" "\xfc\xdf\x9f\xc9\xef\xe7\x6b\xe1\xbc\x2e\x84\xdf\xcc\xbc\xf5\xd6\xc5" "\xfd\x35\x6f\x1f\x7f\x37\xc2\x95\x87\xf2\xd7\xfb\x9a\xcf\x5f\x78\x9b" "\x8b\xcf\xeb\xdf\x84\xe7\xfb\x1d\x3f\xcc\xef\x3f\x1e\x57\x7c\xbc\xdf" "\x0f\x3f\xc7\x7c\x73\x73\xeb\xfb\x5d\x5c\x1f\x5f\xbb\x34\xd4\x7e\xff" "\x8d\xdf\xe2\x71\x39\xbc\x9f\x64\x97\xf3\xeb\xe3\x56\xf1\x7c\x5f\x79" "\xee\xd6\x8e\x87\x17\x7f\x0f\x49\x76\xf9\xb6\xc6\xd7\x7f\x92\xee\xe7" "\xb6\x55\x3d\xcc\xe5\xcc\x7f\x6c\x7e\xea\xd4\xdc\x99\x8b\x8f\x4c\x5d" "\x98\x9d\xbf\x30\x35\xff\xb1\x8f\x1f\x39\x7d\xf6\xe2\x99\x0b\x47\x1a" "\xbf\xcb\xf3\xc8\x87\x7a\xdd\x7e\xf1\xfd\x69\x63\xe3\xfd\x69\x66\x76" "\xdf\xde\xac\xf1\x6e\x75\x36\x1f\xd7\xd9\x0b\x7d\xfc\xe7\x1e\x3e\x3e" "\xb3\x7f\x7a\xfb\xcc\xec\x89\x63\x17\x4f\x5c\x78\xf8\xdc\xec\xf9\x93" "\xc7\xe7\xe7\x8f\xcf\xce\xcc\x6f\x3f\x76\xe2\xc4\xec\x47\x7b\xdd\x7e" "\x6e\xe6\xd0\xae\xdd\x07\xf7\xec\xdf\x3d\x79\x72\x6e\xe6\xd0\x81\x83" "\x07\xf7\x1c\x9c\x9c\x3b\x73\xb6\x7e\x18\xf9\x41\xf5\xb0\x6f\xfa\xc3" "\x93\x67\xce\x1f\x69\xdc\x64\xfe\xd0\xde\x83\xbb\xee\xbb\x6f\xef\xf4" "\xe4\xe9\xb3\x33\xb3\x87\xf6\x4f\x4f\x4f\x5e\xec\x75\xfb\xc6\xf7\xa6" "\xc9\xfa\xad\x7f\x7f\xf2\xfc\xec\xa9\x63\x17\xe6\x4e\xcf\x4e\xce\xcf" "\x7d\x7c\xf6\xd0\xae\x83\xfb\xf6\xed\xee\xf9\xdb\x00\x4f\x9f\x3b\x31" "\x3f\x31\x75\xfe\xe2\x99\xa9\x8b\xf3\xb3\xe7\xa7\xf2\xc7\x32\x71\xa1" "\x71\x71\xfd\x7b\x5f\xaf\xdb\x53\x4e\xf3\xff\x91\xff\x3c\xdb\xae\x96" "\xff\x22\xbe\xec\x5d\x77\xef\x4b\xbf\x9f\xb5\xee\xcb\x8f\x2d\x7b\x57" "\xf9\x26\x6d\xbf\x40\xf4\xd9\xf0\xbb\x68\xfe\xf9\x25\xe7\x0e\xac\xe4" "\xeb\x98\xfb\x47\xc3\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\x1f" "\x0b\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xdf\x10\x66\x22\xff\x03" "\x00\x00\x40\x69\xc4\xdc\x3f\x1e\x66\x52\x91\xfc\x5f\xba\xfe\xff\xe6" "\x4b\x2b\xda\xbf\xfe\xbf\xfe\x7f\xf3\xf9\xd2\xff\xaf\x58\xff\xff\xa1" "\xa2\xf5\xff\xf3\xf7\x0b\xfd\xff\xfe\x58\x6b\xff\x5e\xff\x3f\xd0\xff" "\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xa7\x0f\x8a\xd6\xff\x8f\xb9\xff\x86" "\x2c\xab\x64\xfe\x07\x00\x00\x80\x2a\x88\xb9\x7f\x63\x98\x89\xfc\x0f" "\x00\x00\x00\xa5\x11\x73\xff\x8d\x61\x26\xf2\x3f\x00\x00\x00\x94\x46" "\xcc\xfd\x2f\x0a\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7" "\xff\xef\xbc\x7f\xfd\xff\xc1\xa4\xff\xdf\x9d\xfe\x7f\x0f\xfa\xff\x53" "\x59\xb5\xfa\xff\x97\xfb\x79\xfc\xfa\xff\xfa\xff\x2c\x55\xb4\xfe\x7f" "\xcc\xfd\x2f\x0e\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\xa6" "\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x9b\xc3\x4c\xe4\x7f\x00" "\x00\x00\x28\x8d\x98\xfb\x37\x85\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb" "\xff\xeb\xff\xeb\xff\x77\xde\xbf\xfe\xff\x60\xd2\xff\xef\x4e\xff\xbf" "\x07\xfd\x7f\x9f\xff\xaf\xff\xaf\xff\x4f\x5f\x15\xad\xff\x1f\x73\xff" "\x4b\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\x7f\x69\x98\x89" "\xfc\x0f\x00\x00\x00\xc5\x33\x72\x6d\x37\x8b\xb9\xff\x65\x61\x26\x4b" "\xf2\xff\x35\xee\x00\x00\x00\x00\x78\xc1\xc5\xdc\x7f\x4b\xd6\x56\x04" "\xaf\xc8\xdf\xff\xeb\xff\xeb\xff\x17\xbf\xff\xbf\x21\x5d\xa7\xff\xaf" "\xff\x9f\x15\xb2\xff\x3f\x9c\xe9\xff\x17\x87\xfe\x7f\x77\xfa\xff\x3d" "\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x57\x45\xeb\xff\x37\x72\x7f\x36" "\x9e\xbd\x3c\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\x5b\xc3" "\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x7f\x29\xcc\x44\xfe\x07\x00" "\x00\x80\xd2\x88\xb9\x7f\x73\x98\x49\x45\xf2\xbf\xfe\xbf\xfe\x7f\xf1" "\xfb\xff\x3e\xff\x5f\xff\xbf\xe8\xfd\x7f\x9f\xff\x5f\x24\xfa\xff\xdd" "\xe9\xff\xf7\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x5f\x15\xad\xff\x1f" "\x73\xff\x6d\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\xdf\x1e" "\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff\xcb\x61\x26\xf2\x3f\x00" "\x00\x00\x94\x46\xcc\xfd\x5b\xc2\x4c\x2a\x92\xff\xf5\xff\x0b\xde\xff" "\x8f\xcd\x51\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\x15\xd1\xff\xef" "\x4e\xff\xbf\x07\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfa\xaa\x68\xfd\xff" "\x98\xfb\x5f\x11\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\x1d" "\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xaf\x0c\x33\x91\xff\x01" "\x00\x00\xa0\x34\x62\xee\x9f\x08\x33\xa9\x48\xfe\xd7\xff\x2f\x78\xff" "\x3f\xef\xc1\x8f\xf9\xfc\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\x95\xd1" "\xff\xef\x4e\xff\xbf\x07\xfd\x7f\xfd\xff\xbe\xf4\xff\x17\x2e\xe9\xff" "\xeb\xff\x93\x2b\x5a\xff\x3f\xe6\xfe\x3b\xc3\x4c\x2a\x92\xff\x01\x00" "\x00\xa0\x0a\x62\xee\xdf\x1a\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc" "\x7f\x57\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xb6\x30\x93\x8a" "\xe4\x7f\xfd\xff\x81\xe8\xff\x67\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa" "\xff\x2b\xa3\xff\xdf\x9d\xfe\x7f\x0f\xfa\xff\xfa\xff\x3e\xff\x5f\xff" "\x9f\xbe\x2a\x5a\xff\x3f\xe6\xfe\x57\x85\x99\x54\x24\xff\x03\x00\x00" "\x40\x15\xc4\xdc\xbf\x3d\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff" "\xd5\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x3b\xc2\x4c\x2a\x92" "\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x3b\xef\x5f\xff\x7f\x30" "\xe9\xff\x77\xa7\xff\xdf\x83\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x7d\x55" "\xb4\xfe\x7f\xcc\xfd\xaf\x09\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88" "\xb9\x7f\x67\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xdd\x61\x26" "\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x93\x61\x26\x15\xc9\xff\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x9d\xf7\xaf\xff\x3f\x98\xf4\xff\xbb" "\xd3\xff\xef\x41\xff\x5f\xff\x5f\xff\x5f\xff\x9f\xbe\x2a\x5a\xff\x3f" "\xe6\xfe\x7b\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xbf\x37" "\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x7f\x2a\xcc\x44\xfe\x07\x00" "\x00\x80\xd2\x88\xb9\x7f\x3a\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff" "\x5f\xff\x7f\x55\xfd\xff\x57\x2e\xde\xaf\xfe\x7f\x4e\xff\xbf\x58\xf4" "\xff\xbb\xd3\xff\xef\x41\xff\x5f\xff\xff\x05\xef\xff\x8f\xea\xff\x53" "\x2a\x45\xeb\xff\xc7\xdc\xbf\x2b\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa" "\x20\xe6\xfe\xdd\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x7b\xc2" "\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xf7\x86\x99\x54\x24\xff\xeb" "\xff\xeb\xff\xeb\xff\xeb\xff\xfb\xfc\xff\xce\xfb\xd7\xff\x1f\x4c\xfa" "\xff\xdd\xf5\xbf\xff\x1f\x1f\xa2\xfe\xbf\xfe\xbf\xfe\xbf\xcf\xff\xd7" "\xff\x67\xa9\xa2\xf5\xff\x63\xee\xbf\x2f\xcc\xa4\x22\xf9\x1f\x00\x00" "\x00\xaa\x20\xe6\xfe\x7d\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd" "\xfb\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x0f\x84\x99\x54\x24" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x77\xde\xbf\xfe\xff\x60" "\xd2\xff\xef\xce\xe7\xff\xf7\xa0\xff\xaf\xff\xaf\xff\xaf\xff\xcf\x1a" "\x3d\xf4\x87\xcd\x5f\x15\xad\xff\x1f\x73\xff\xc1\x30\x93\x8a\xe4\x7f" "\x00\x00\x00\xa8\x82\x98\xfb\x5f\x1b\x66\x22\xff\x03\x00\x00\x40\x69" "\xc4\xdc\xff\x2b\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xbf\x1a" "\x66\x52\x91\xfc\xaf\xff\xdf\xd2\x3d\xaf\x3f\x5c\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\xff\x06\xfd\xff\xc1\xa4\xff\xdf\x9d\xfe\x7f\x0f\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\xf4\xd5\xb2\xfd\xff\x10\xbd\xd7\xbb\xff\x1f\x73" "\xff\xa1\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\x7f\x2d\xcc" "\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x75\x61\x26\xf2\x3f\x00\x00" "\x00\x94\x46\xcc\xfd\x87\xc3\x4c\x2a\x92\xff\xf5\xff\x7d\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\x7f\xe7\xfd\xaf\x77\xff\x7f\x2c\xde\xaf\xfe\xff\x9a" "\xe8\xff\x77\xa7\xff\xdf\x83\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x7d\x55" "\xb4\xcf\xff\x8f\xb9\xff\xf5\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05" "\x31\xf7\xdf\x1f\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff\x86\x30" "\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x37\x86\x99\x54\x24\xff\xeb" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x77\xde\xbf\xcf\xff\x1f\x4c\xfa" "\xff\xdd\xe9\xff\xf7\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x5f\x15\xad" "\xff\x1f\x73\xff\x9b\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee" "\x7f\x73\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x5b\xc2\x4c\xe4" "\x7f\x00\x00\x00\x28\x8d\x98\xfb\xdf\x1a\x66\x52\x91\xfc\xaf\xff\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x79\xff\xfa\xff\x83\x49\xff\xbf\x3b" "\xfd\xff\x1e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xab\xa2\xf5\xff\x63" "\xee\xff\xf5\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\x1f\x08" "\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x7f\x5b\x98\x89\xfc\x0f\x00" "\x00\x00\xa5\x11\x73\xff\xdb\xc3\x4c\x2a\x92\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\x3b\xef\x5f\xff\x7f\x30\xe9\xff\x77\x37\x60\xfd" "\xff\x5f\xdc\x14\x2e\xd7\xff\xcf\xe9\xff\x17\xfb\xf8\x57\xdb\xff\x1f" "\x69\xfb\xfa\xba\xf4\xff\x7f\xb0\x5c\xff\x7f\x61\x43\xfb\xed\xf5\xff" "\xb9\x1e\x8a\xd6\xff\x8f\xb9\xff\x1d\x61\x26\x15\xc9\xff\x00\x00\x00" "\x50\x05\x31\xf7\xbf\x33\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff" "\x5d\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xbf\x11\x66\x52\x91" "\xfc\xaf\xff\x5f\x3f\x8e\xc5\xf6\xb2\xfe\x7f\x59\xfb\xff\x43\xfa\xff" "\xfa\xff\xfa\xff\x15\xa1\xff\xdf\xdd\x80\xf5\xff\x7d\xfe\x7f\x1b\xfd" "\xff\x62\x1f\xbf\xcf\xff\xd7\xff\x67\xa9\xa2\xf5\xff\x63\xee\x7f\x77" "\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x0f\x86\x99\xc8\xff" "\x00\x00\x00\x50\x1a\x31\xf7\x3f\x14\x66\x22\xff\x03\x00\x00\x40\x69" "\xc4\xdc\xff\x9e\x30\x93\x8a\xe4\x7f\xfd\x7f\x9f\xff\x5f\x8d\xfe\xbf" "\xcf\xff\xcf\xf4\xff\xf5\xff\x2b\x42\xff\xbf\x3b\xfd\xff\x1e\xf4\xff" "\xf5\xff\x8b\xd6\xff\xff\x4f\xfd\x7f\x06\x5b\xd1\xfa\xff\x31\xf7\x3f" "\x1c\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\x7b\xc3\x4c\xe4" "\x7f\x00\x00\x00\x28\x8d\x98\xfb\x7f\x33\xcc\x44\xfe\x07\x00\x00\x80" "\xd2\x88\xb9\xff\x7d\x61\x26\x15\xc9\xff\xfa\xff\x83\xd2\xff\x9f\x18" "\xd0\xfe\xff\x63\xfa\xff\xd7\xb1\xff\x7f\xc7\x4d\xf9\x76\xfa\xff\xfa" "\xff\x2c\xd2\xff\xef\x4e\xff\xbf\x07\xfd\x7f\xfd\xff\xa2\xf5\xff\x7d" "\xfe\x3f\x03\xae\x68\xfd\xff\x98\xfb\xdf\x1f\x66\xb2\xf2\xfc\x3f\xbe" "\xe2\x2d\x01\x00\x00\x80\x17\x44\xcc\xfd\xbf\x15\x66\x52\x91\xbf\xff" "\x07\x00\x00\x80\x2a\x88\xb9\xff\xb7\xc3\x4c\xe4\x7f\x00\x00\x00\x28" "\x8d\x98\xfb\x7f\x27\xcc\xa4\x22\xf9\x5f\xff\x7f\x50\xfa\xff\x3e\xff" "\x3f\xd3\xff\xf7\xf9\xff\x6d\x8f\x47\xff\x5f\xff\xbf\x93\xf5\xeb\xff" "\xc7\x77\x1e\xfd\x7f\xfd\x7f\xfd\xff\x48\xff\x5f\xff\x5f\xff\x9f\x76" "\x45\xeb\xff\xc7\xdc\xff\xbb\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05" "\x31\xf7\x7f\x20\xcc\x44\xfe\x07\x00\x00\x80\x81\xd0\xe9\xff\xc9\x6e" "\x17\x73\xff\x91\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xa3\x61" "\x26\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\x05\xed\xff\xff\xd9\xd6\x7f" "\xf9\xde\xb7\xdf\x79\x74\x97\xfe\xbf\xfe\xbf\xfe\xff\xaa\xac\xeb\xe7" "\xff\xd7\x5f\xfc\x3e\xff\x5f\xff\x5f\xff\x3f\xd1\xff\xd7\xff\xd7\xff" "\xa7\x5d\xd1\xfa\xff\x31\xf7\x1f\x0b\x33\xa9\x48\xfe\x07\x00\x00\x80" "\x2a\x88\xb9\xff\xf7\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x8f" "\x87\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xcf\x84\x99\x54\x24\xff" "\xeb\xff\xeb\xff\xeb\xff\x17\xb4\xff\x3f\xc0\x9f\xff\x1f\xcf\x87\xfe" "\x7f\xab\xbe\xf5\xff\xe3\x9b\xae\xfe\x7f\x47\x79\xff\x3e\xad\xa2\xeb" "\xdb\xff\x7f\xef\x62\x4f\x5c\xff\x7f\xb5\xfd\xff\xb1\x8e\x97\xea\xff" "\xeb\xff\x0f\xf2\xf1\xeb\xff\xeb\xff\xb3\x54\xd1\xfa\xff\x31\xf7\xcf" "\x86\x99\x54\x24\xff\x03\x00\x00\x40\x15\x84\xdc\x3f\x74\x22\x9f\x8b" "\x57\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x9f\x0c\x33\x91\xff\x01\x00" "\x00\xa0\x34\x62\xee\xff\x60\x98\x49\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xcf\xff\xef\xbc\xff\x6e\xfd\xff\xda\x88\xcf\xff\x2f\xaa" "\xd4\xbf\xff\x59\xe3\x85\xa2\xff\xdf\xa6\x38\xfd\xff\xce\xf4\xff\xf5" "\xff\x07\xf9\xf8\xf5\xff\xf5\xff\x59\xaa\x68\xfd\xff\x98\xfb\xe7\xc2" "\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xff\x50\x98\x89\xfc\x0f" "\x00\x00\x00\xa5\x11\x73\xff\x87\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d" "\x98\xfb\x4f\x85\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb" "\xff\x77\xde\x7f\x61\x3f\xff\x5f\xff\xbf\xab\xb5\xf6\xef\xf5\xff\x03" "\xfd\xff\x6a\xf7\xff\xff\x47\xff\x5f\xff\x5f\xff\x9f\xfe\x28\x5a\xff" "\x3f\xe6\xfe\xd3\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\x9f" "\x09\x33\x91\xff\x01\x00\xfe\x9f\xbd\x3b\x69\xb2\xb3\x2e\xfb\x38\x7e" "\xfa\x79\xc2\x93\x4e\xf1\x2c\xdc\xb9\x70\x63\x95\x4b\x5f\x02\x0b\x5d" "\xeb\x0b\x70\xe1\xc6\x8d\x55\x96\x0b\x27\x54\x9c\x09\xce\x23\x8a\x8a" "\xb3\x22\x38\x0f\x38\x80\x20\xa2\x82\xf3\x00\x4e\x28\xce\xa0\xe2\x3c" "\x0f\x38\x21\x4a\xc5\xa2\x73\x5d\x57\xd2\xdd\x77\xdf\xa7\x3b\x39\xdd" "\x7d\xdf\xff\xff\xe7\xb3\xc8\x25\x6d\x9a\x73\xa4\x52\x09\xbf\x74\xbe" "\xde\x00\xd0\x8c\xdc\xfd\x8f\x8d\x5b\xec\x7f\x00\x00\x00\x68\x46\xee" "\xfe\xc7\xc5\x2d\x9d\xec\x7f\xfd\xff\xd9\xf4\xff\xa7\x2a\x65\xfd\xff" "\xe6\xf7\x3f\x89\xfe\xff\x41\xfa\xff\x9d\x5e\x5f\xff\xaf\xff\x6f\x99" "\xfe\x7f\x9c\xfe\x7f\x09\xfd\xbf\xe7\xff\xeb\xff\xf5\xff\xac\xd4\xd4" "\xfa\xff\xdc\xfd\x8f\x8f\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd" "\x4f\x88\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xf3\xe3\x16\xfb\x1f" "\x00\x00\x00\x9a\x91\xbb\xff\x89\x71\x4b\x27\xfb\x7f\x4b\xff\xbf\xb6" "\xe8\xb3\xff\xcf\x8c\xd7\xf3\xff\x5b\xea\xff\x3d\xff\x7f\xc7\xd7\xd7" "\xff\xeb\xff\x5b\x76\xb0\xfd\xff\x45\xf7\xfe\xcc\xa7\xff\xd7\xff\xeb" "\xff\x83\xfe\x7f\x57\xfd\xff\xd1\x9d\x3e\x5f\xff\x4f\x8b\xa6\xd6\xff" "\xe7\xee\x7f\x52\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x72" "\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x5f\x10\xb7\xd8\xff\x00\x00" "\x00\xd0\x8c\xdc\xfd\x4f\x89\x5b\x3a\xd9\xff\xab\x7b\xfe\xff\xb1\x8d" "\x8f\xcf\xb4\xff\x2f\xfa\x7f\xfd\xff\xc6\x07\xf4\xff\xfa\x7f\xfd\xff" "\x6c\x79\xfe\xff\xb8\x9e\xfa\xff\xf3\x6f\x3d\xf7\x31\x77\x5e\x7b\xbf" "\xeb\xf6\xf2\xfa\xfa\x7f\xfd\xbf\xe7\xff\xeb\xff\x59\xad\xa9\xf5\xff" "\xb9\xfb\x9f\x1a\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x9f\x16" "\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x4f\x8f\x5b\xec\x7f\x00\x00" "\x00\x68\x46\xee\xfe\x67\xc4\x2d\x9d\xec\xff\xd5\xf5\xff\xb3\x7e\xfe" "\x7f\xd1\xff\xeb\xff\x37\x3e\xa0\xff\xd7\xff\xeb\xff\x67\x4b\xff\x3f" "\xae\xa7\xfe\xff\x4c\x5e\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x59\xad\xa9" "\xf5\xff\xb9\xfb\x9f\x19\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb" "\x9f\x15\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x17\xc6\x2d\xf6\x3f" "\x00\x00\x00\x34\x23\x77\xff\xf1\xb8\xa5\x93\xfd\xaf\xff\xdf\xff\xfe" "\xff\x1e\xfd\xbf\xfe\x3f\xae\xfe\x5f\xff\xaf\xff\xdf\x7f\xfa\xff\x71" "\xfa\xff\x25\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x95\x9a\x5a\xff\x9f\xbb" "\xff\xa2\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xec\xb8\xc5" "\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x4e\xdc\x62\xff\x03\x00\x00\x40" "\x33\x72\xf7\x3f\x37\x6e\xe9\x64\xff\xeb\xff\x3d\xff\x5f\xff\xaf\xff" "\xd7\xff\x0f\xbf\xbe\xfe\x7f\x9e\xf4\xff\xe3\xf4\xff\x4b\xe8\xff\xcf" "\xb6\x9f\x3f\x47\xff\xaf\xff\xd7\xff\x73\xba\x3d\xf6\xff\x77\x8f\xfc" "\xb4\xbd\x92\xfe\x3f\x77\xff\xf3\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4" "\x20\x77\xff\xf3\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x05\x71" "\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xc2\xb8\xa5\x93\xfd\xaf\xff" "\xd7\xff\xeb\xff\xf5\xff\x67\xdc\xff\x6f\xff\xa1\xb7\x41\xff\x3f\x4c" "\xff\x7f\x30\xf4\xff\xe3\x26\xd3\xff\xaf\x1d\x19\xfc\xb0\xfe\x7f\xf6" "\xfd\xbf\xe7\xff\xeb\xff\xf5\xff\x6c\x32\xb5\xe7\xff\xe7\xee\x7f\x51" "\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x71\xdc\x32\xb2\xff" "\xf7\xfc\x9b\xf9\x00\x00\x00\xc0\xa1\xca\xdd\xff\x92\xb8\xc5\xd7\xff" "\x01\x00\x00\x60\xf6\xb2\x3a\xcb\xdd\xff\xd2\xb8\xa5\x93\xfd\xaf\xff" "\xd7\xff\xeb\xff\xf5\xff\x9e\xff\x3f\xfc\xfa\x63\xfd\xff\x75\xa7\xbd" "\x3f\xfd\xff\xb4\xe8\xff\xc7\x4d\xa6\xff\xdf\x81\xfe\x5f\xff\x3f\xe7" "\xf7\xaf\xff\xd7\xff\xb3\xdd\xd4\xfa\xff\xdc\xfd\x2f\x8b\x5b\x3a\xd9" "\xff\x00\x00\x00\xd0\x83\xdc\xfd\x17\xc7\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\xcb\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x15\x71" "\x4b\x27\xfb\x7f\xb8\xff\x3f\xf5\xdf\xeb\xff\x77\x47\xff\xbf\xf9\xfd" "\xeb\xff\x87\x7f\x7c\xac\xaa\xff\xcf\xbf\xa3\xfe\x7f\xb4\xff\x7f\xb0" "\xe7\xff\xf7\x49\xff\x3f\xee\xe0\xfb\xff\xa3\xfa\xff\xcd\x7f\x7f\xfd" "\xff\x3e\x3a\xec\xf7\xdf\x78\xff\x7f\x6c\xd9\xe7\xeb\xff\x19\x32\xb5" "\xfe\x3f\x77\xff\x25\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff" "\x95\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xaa\xb8\xc5\xfe\x07" "\x00\x00\x80\x66\xe4\xee\x7f\x75\xdc\xd2\xc9\xfe\xf7\xfc\x7f\xfd\xbf" "\xfe\x7f\x7e\xfd\xbf\xe7\xff\x9f\x74\x98\xcf\xff\x5f\x1c\x78\xff\x7f" "\x44\xff\xbf\x4b\xfa\xff\x71\x9e\xff\xbf\x84\xfe\x5f\xff\xaf\xff\xf7" "\xfc\x7f\x56\x6a\x6a\xfd\x7f\xee\xfe\x4b\xe3\x96\x4e\xf6\x3f\x00\x00" "\x00\xf4\xe0\xd2\xbb\x16\x1b\xbb\xff\x35\x8b\x85\xfd\x0f\x00\x00\x00" "\x73\x74\xfa\x9f\x1d\xd8\xfa\x07\x4a\x43\xee\xfe\xd7\xc6\x2d\xf6\x3f" "\x00\x00\x00\x34\x23\x77\xff\xeb\xe2\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\x87\x5f\x7f\x5a\xfd\xbf\xe7\xff\xef\x96\xfe\x7f" "\x9c\xfe\x7f\x09\xfd\xff\x7e\xf4\xf3\x47\x1a\xeb\xff\x2f\xdb\xe9\xf3" "\xa7\xd0\xff\x5f\xa8\xff\x67\x62\x36\xf5\xff\x37\x9c\xfa\xf8\x61\xf5" "\xff\xb9\xfb\x5f\x1f\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xdf" "\x10\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x6f\x8c\x5b\xec\x7f\x00" "\x00\x00\x68\x46\xee\xfe\x37\xc5\x2d\x9d\xec\xff\x7d\xef\xff\x8f\xed" "\xfc\xda\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xaf\x9a\xfe\x7f" "\x9c\xfe\x7f\x09\xfd\xbf\xe7\xff\x7b\xfe\xbf\xfe\x9f\x95\x3a\xd5\xff" "\x6f\xfe\xf9\xf0\xb0\xfa\xff\xdc\xfd\x6f\x8e\x5b\x3a\xd9\xff\x00\x00" "\x00\xd0\x83\xdc\xfd\x6f\x89\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe" "\xcb\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xad\x71\x4b\x27\xfb" "\xdf\xf3\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf8\xf5\xf5\xff\xf3\xa4" "\xff\x1f\xa7\xff\x5f\x42\xff\xaf\xff\xd7\xff\xeb\xff\x59\xa9\x4d\xcf" "\xff\x3f\xcd\x61\xf5\xff\xb9\xfb\x2f\x8f\x5b\x3a\xd9\xff\x00\x00\x00" "\xd0\x83\xdc\xfd\x57\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xdb" "\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xed\x71\x4b\x27\xfb\x5f" "\xff\xbf\xbf\xfd\x7f\x7e\x5c\xff\xaf\xff\x5f\xe8\xff\xf5\xff\xfa\xff" "\x03\xd1\x6d\xff\xbf\x36\xf4\x2b\xd1\x76\x3b\xf4\xff\x37\x3f\xea\xf8" "\x43\x37\x7f\x44\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xac\xc0\x24\xfa" "\xff\x13\xa7\xfe\xed\x32\x77\xff\x3b\xe2\x96\x4e\xf6\x3f\x00\x00\x00" "\xf4\x20\x77\xff\x3b\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x5d" "\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xee\xb8\x65\x8f\xfb\xff" "\x3e\x2b\x7d\x57\x07\x47\xff\xef\xf9\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf8" "\xf5\xf5\xff\xf3\xd4\x6d\xff\xbf\x4b\x9e\xff\xbf\x84\xfe\x5f\xff\xaf" "\xff\xd7\xff\xb3\x52\x93\xe8\xff\x4f\xfb\xeb\xdc\xfd\xef\x89\x5b\x7c" "\xfd\x1f\x00\x00\x00\x9a\x91\xbb\xff\xbd\x71\x8b\xfd\x0f\x00\x00\x00" "\xcd\xc8\xdd\xff\xbe\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x7f" "\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf0\xeb\x9f" "\x69\xff\xbf\xbe\x18\xa6\xff\x3f\x18\xfa\xff\x71\xfa\xff\x25\xf4\xff" "\xfa\x7f\xfd\xbf\xfe\x9f\x95\x9a\x5a\xff\x9f\xbb\xff\xca\xb8\xa5\x93" "\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x81\xb8\xc5\xfe\x07\x00\x00\x80" "\x66\xe4\xee\xff\x60\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x28" "\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf8\xf5\x3d" "\xff\x7f\x9e\xf4\xff\xe3\xf4\xff\x8b\xc5\xe2\xaa\x91\x37\x30\xd4\xff" "\x9f\x38\xaa\xff\xd7\xff\xeb\xff\xf5\xff\x9c\xa1\xa9\xf5\xff\xb9\xfb" "\x3f\x1c\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xaf\x8a\x5b\xec" "\x7f\x00\x00\x00\x68\x46\xee\xfe\xab\xe3\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\x23\x71\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\xc3\xaf\xaf\xff\x9f\x27\xfd\xff\x38\xfd\xff\x12\x9e\xff\xaf\xff" "\xd7\xff\xeb\xff\x59\xa9\xa9\xf5\xff\xb9\xfb\xaf\x89\x5b\x3a\xd9\xff" "\x00\x00\x00\xd0\x83\xdc\xfd\xd7\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23" "\x77\xff\x47\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xba\xb8\xa5" "\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfb\xd2\xff\x1f\xd7\xff\x6f" "\xa5\xff\x3f\x18\xfb\xd7\xff\x2f\xf4\xff\xfa\x7f\xfd\xff\x12\xfa\x7f" "\xfd\xbf\xfe\x9f\xad\x0e\xaa\xff\xbf\x3b\x7e\xbe\x5f\xd6\xff\xe7\xee" "\xff\x58\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xbf\x3e\x6e\xb1" "\xff\x01\x00\x00\xa0\x19\xb9\xfb\x3f\x1e\xb7\xd8\xff\x00\x00\x00\xd0" "\x8c\xdc\xfd\x9f\x88\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xef" "\xf9\xff\xc3\xaf\xaf\xff\x9f\x27\xcf\xff\x1f\xa7\xff\x5f\x42\xff\xaf" "\xff\xd7\xff\xeb\xff\x59\xa9\x83\xea\xff\x77\xea\xfd\xb7\xfe\x75\xee" "\xfe\x4f\xc6\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x1b\xe2\x16" "\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xc6\xb8\xc5\xfe\x07\x00\x00\x80" "\x66\xe4\xee\xff\x54\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\x37\xf7\xff\x8b" "\x85\xfe\x5f\xff\xaf\xff\x3f\xe9\x00\xfa\xff\xf5\x85\xfe\x7f\xe5\xf4" "\xff\xe3\xf4\xff\x4b\xe8\xff\xdb\xec\xff\xff\x67\xd1\x50\xff\x7f\x6c" "\xc7\xcf\xd7\xff\x33\x45\x53\xeb\xff\x73\xf7\x7f\x3a\x6e\xe9\x64\xff" "\x03\x00\x00\x40\x0f\x72\xf7\x7f\x26\x6e\xb1\xff\x01\x00\x00\xa0\x19" "\xb9\xfb\x3f\x1b\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x9f\x8b\x5b" "\x5a\xda\xff\xf7\xec\x9c\xbe\xcd\xbf\xff\x3f\xba\xe5\x13\xf5\xff\x8b" "\xc5\xe2\xb6\x0b\x3c\xff\x5f\xff\x3f\xf2\xfa\xfa\xff\xc9\xf4\xff\xf5" "\x4f\x55\xff\xbf\x3a\xfa\xff\x71\xfa\xff\x25\xf4\xff\x6d\xf6\xff\x9e" "\xff\xaf\xff\xe7\xd0\x4c\xad\xff\xcf\xdd\xff\xf9\xb8\xa5\xa5\xfd\x0f" "\x00\x00\x00\x9d\xcb\xdd\xff\x85\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4" "\xee\xff\x62\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x29\x6e\xe9" "\x64\xff\xcf\xbf\xff\xdf\xfa\x89\xfa\xff\xc5\x59\x3d\xff\x5f\xff\xbf" "\xf1\x01\xfd\xbf\xfe\x5f\xff\x3f\x5b\x67\xdb\xdf\x5f\xbe\x1e\xbf\xa6" "\xe9\xff\xf5\xff\xfa\xff\xc1\x7e\x7e\x6d\x87\x7f\xef\x59\xe8\xff\xf5" "\xff\xfa\x7f\x06\x4c\xad\xff\xcf\xdd\xff\xe5\xb8\xa5\x93\xfd\x0f\x00" "\x00\x00\x3d\xc8\xdd\x7f\x53\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7" "\xdf\x1c\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x5f\x89\x5b\x3a\xd9" "\xff\xfa\x7f\xfd\xbf\xfe\x7f\x9e\xfd\xff\xba\xfe\x5f\xff\xaf\xff\x1f" "\x34\x95\xe7\xff\x9f\x77\xde\x43\x6e\xd1\xff\xeb\xff\x5b\xec\xff\xc7" "\xe8\xff\xf5\xff\xfa\x7f\xb6\x9a\x5a\xff\x9f\xbb\xff\xab\x71\x4b\x27" "\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x6b\x71\x8b\xfd\x0f\x00\x00\x00" "\xcd\xc8\xdd\xff\xf5\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x46" "\xdc\xd2\xc9\xfe\xdf\xde\xff\x9f\xb3\x38\x59\xa8\x9e\x34\xd4\xff\x47" "\xa3\xa6\xff\x3f\x8d\xfe\x7f\xf3\xfb\xd7\xff\x0f\xff\xf8\xf0\xfc\x7f" "\xfd\xbf\xfe\x7f\xff\x4d\xa5\xff\xf7\xfc\xff\x33\x7b\xff\xfa\x7f\xfd" "\xff\x9c\xdf\xff\x9e\xfa\xff\xfb\x6f\xff\x7c\xfd\x3f\x2d\x9a\x5a\xff" "\x9f\xbb\xff\x96\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xcd" "\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x56\xdc\x62\xff\x03\x00" "\x00\x40\x33\x72\xf7\xdf\x1a\xb7\x74\xb2\xff\x3d\xff\x5f\xff\xaf\xff" "\xd7\xff\xeb\xff\x87\x5f\x5f\xff\x3f\x4f\xfa\xff\x71\xfa\xff\x25\xf4" "\xff\x67\xdf\xcf\xe7\xcf\xaa\xfa\xff\xf9\x3e\xff\xff\x7f\xf5\xff\xac" "\xce\xd4\xfa\xff\xdc\xfd\xdf\x8e\x5b\x36\x86\xdf\x03\xfe\xff\x0c\xff" "\x67\x02\x00\x00\x00\x13\x92\xbb\xff\x3b\x71\x4b\x27\x5f\xff\x07\x00" "\x00\x80\x1e\xe4\xee\xff\x6e\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7" "\x7f\x2f\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf8" "\xf5\xf5\xff\xf3\xa4\xff\x1f\xa7\xff\x5f\xa2\x9f\xfe\x7f\x7d\xe8\x83" "\x87\xdd\xcf\x9f\xad\xc3\x7e\xff\xcd\xf4\xff\x9e\xff\xcf\x0a\x4d\xad" "\xff\xcf\xdd\xff\xfd\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x6d\xbb\x6b\xe3" "\xdb\xdc\xfd\x3f\x88\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x1f\xc6" "\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x6d\x71\x4b\x27\xfb\x5f\xff" "\xaf\xff\x6f\xbf\xff\x7f\x84\xfe\x7f\xcb\xeb\xeb\xff\xf5\xff\x2d\xd3" "\xff\xe7\xaf\xe8\xc3\xf4\xff\x4b\xf4\xd3\xff\x0f\x3a\xec\x7e\x7e\xee" "\xef\x5f\xff\xaf\xff\x67\xbb\xa9\xf5\xff\xb9\xfb\x6f\x8f\x5b\x3a\xd9" "\xff\x00\x00\x00\xd0\x83\xdc\xfd\x3f\x8a\x5b\xec\x7f\x00\x00\x00\x68" "\x46\xee\xfe\x1f\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x4f\xe2" "\x96\x4e\xf6\xbf\xfe\xbf\xaf\xfe\x7f\x6d\xd1\x63\xff\xef\xf9\xff\xfa" "\x7f\xfd\x7f\x4f\xe6\xd3\xff\x5f\x71\x64\xe8\xa3\x9e\xff\xaf\xff\xd7" "\xff\xcf\xf7\xfd\xeb\xff\xf5\xff\x6c\x37\xb5\xfe\x3f\x77\xff\x1d\x6b" "\x47\xba\xdc\xff\x00\x00\x00\x30\x57\x0f\x7b\xe0\xa3\x6f\xdf\xed\xf7" "\xbd\x63\xe3\xdb\xf5\xc5\x4f\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb" "\xff\x67\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xf3\xb8\xa5\x93" "\xfd\xaf\xff\xef\xab\xff\xef\xf3\xf9\xff\xfa\x7f\xfd\xbf\xfe\xbf\x27" "\xf3\xe9\xff\x87\xe9\xff\xf5\xff\xfa\xff\xf9\xbe\x7f\xfd\xbf\xfe\x9f" "\xed\xa6\xd6\xff\xe7\xee\xff\x45\xdc\x72\xda\xf0\x1b\xfc\x3f\xe8\x01" "\x00\x00\x00\x0e\xcf\xff\xed\xed\xbb\xe7\xee\xff\x65\xdc\xd2\xc9\xd7" "\xff\x01\x00\x00\xa0\x07\xb9\xfb\x7f\x15\xb7\x6c\xdb\xff\x27\x76\xf9" "\xa7\xda\x01\x00\x00\x80\xa9\xc9\xdd\xff\xeb\xb8\xa5\x93\xaf\xff\xeb" "\xff\x27\xde\xff\x2f\xf6\xa9\xff\x8f\xef\xa7\xff\x3f\x49\xff\xaf\xff" "\x1f\x7a\x7d\xfd\xff\x3c\xe9\xff\xc7\x9d\x65\xff\x7f\x62\x4d\xff\xaf" "\xff\x1f\xa1\xff\xd7\xff\xeb\xff\xd9\x6a\x6a\xfd\x7f\xee\xfe\xeb\xaf" "\x59\x74\xb9\xff\x01\x00\x00\xa0\x51\x9b\x7e\x47\xe1\x37\x1b\xdf\xae" "\x2f\x7e\x1b\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xbf\x8b\x5b\xec" "\x7f\x00\x00\x00\x68\x46\xee\xfe\xdf\xc7\x2d\x9d\xec\x7f\xfd\xff\xc4" "\xfb\xff\x33\x7a\xfe\xff\xb1\xfa\x4f\x9e\xff\xdf\x79\xff\x7f\xf1\xfa" "\xe0\xeb\xeb\xff\xf5\xff\x2d\xd3\xff\x8f\xf3\xfc\xff\x25\xf4\xff\xfa" "\x7f\xfd\xbf\xfe\x9f\x95\xda\x43\xff\xbf\x31\x48\xf7\xbb\xff\xcf\xdd" "\xff\x87\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xc7\xb8\xc5" "\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x53\xdc\x62\xff\x03\x00\x00\x40" "\x33\x72\xf7\xff\x39\x6e\xe9\x64\xff\xeb\xff\x0f\xa1\xff\xbf\xe4\xe8" "\x62\xb1\xaf\xfd\xff\x2e\x9e\xff\xaf\xff\xef\xa3\xff\xdf\xe1\xf5\xdb" "\xe9\xff\xef\x7b\xee\xf1\x9b\x1e\xfe\xc8\xab\xaf\xd4\xff\x73\xca\x41" "\xf6\xff\xf9\x63\x41\xff\xaf\xff\xd7\xff\x9f\xa4\xff\xd7\xff\xeb\xff" "\xd9\x6a\x6a\xcf\xff\xcf\xdd\xff\x97\xb8\xa5\x93\xfd\x0f\x00\x00\x00" "\x3d\xc8\xdd\x7f\x67\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x35" "\x6e\xb9\x77\xff\xdf\x78\x58\xef\x0a\x00\x00\x00\x58\xa5\xdc\xfd\x7f" "\x8b\x5b\x3a\xf9\xfa\xbf\xfe\xbf\xc5\xe7\xff\xcf\xb3\xff\xcf\x7f\xd6" "\x87\xd0\xff\x1f\x9f\x5f\xff\x9f\x4d\x71\xef\xfd\xbf\xe7\xff\xeb\xff" "\xb7\xf3\xfc\xff\x71\xfa\xff\x25\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x95" "\x9a\x5a\xff\x9f\xbb\xff\xef\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90" "\xbb\xff\x1f\x71\x4b\xee\xff\xb5\x3d\xff\xd6\x3d\x00\x00\x00\x30\x31" "\xb9\xfb\xff\x19\xb7\xf8\xfa\x3f\x00\x00\x00\x34\x23\x77\xff\x5d\x71" "\x4b\x27\xfb\x5f\xff\xaf\xff\x9f\x4a\xff\x9f\x3c\xff\xff\xd4\xe7\x79" "\xfe\xff\x49\xfa\x7f\xfd\xff\x5e\xe8\xff\xc7\xe9\xff\x97\xd0\xff\xeb" "\xff\xf5\xff\xfa\x7f\x56\x6a\x6a\xfd\x7f\xee\xfe\x7f\xc5\x2d\x9d\xec" "\x7f\x00\x00\x00\xe8\x41\xee\xfe\xbb\xe3\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\xdf\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x9f\xb8" "\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xe1\xd7\xd7\xff" "\xcf\x93\xfe\x7f\x9c\xfe\x7f\x09\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xa5" "\xa6\xd6\xff\xe7\xee\xff\x6f\x00\x00\x00\xff\xff\x10\xd0\x71\xa4", 25040); syz_mount_image(/*fs=*/0x20000000, /*dir=*/0x20000040, /*flags=*/0, /*opts=*/0x200000c0, /*chdir=*/1, /*size=*/0x61d0, /*img=*/0x20006940); break; case 1: memcpy((void*)0x20000040, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000040ul, /*flags=O_SYNC|O_NOATIME|O_CREAT|O_RDWR*/ 0x141042, /*mode=*/0); if (res != -1) r[0] = res; break; case 2: *(uint32_t*)0x200017c0 = 8; memcpy( (void*)0x200017c4, "\x53\x2b\x76\x50\xcd\x96\xd6\x98\xa5\x4c\xe0\xe8\x46\xdd\xe2\x36\x08" "\xa4\x35\xdd\xbe\x06\xfd\x95\xbd\x2d\xce\xa4\xc3\x91\xeb\xe7\xf5\xfa" "\x41\xae\x31\xf9\xf1\xc8\x8e\x68\x4f\x77\x15\x0b\x1f\x0b\xf4\x7f\x39" "\xbf\xa3\x76\x2c\xee\x6a\x2b\x15\x94\x73\xaf\xf7\x0f\x9a\x68\x0e\xab" "\x6a\x59\x22\x54\x53\x86\x42\x8a\xf2\xa7\x80\x00\x6c\x07\xc1\x1e\x69" "\x29\x54\x06\x7d\x39\xf5\xce\x4f\x36\x6b\x53\x58\x13\x9b\x6f\x09\x28" "\xb9\xad\xc1\x87\xeb\x01\xfa\x36\xf2\x28\xfc\xec\xc8\x41\x67\x1a\xc5" "\x28\xab\x4f\x39\x96\x3e\xa9\x95\xf6\xed\xe2\x2b\x3f\x08\x88\xb8\xb2" "\x9d\x36\x08\xb5\x13\x8e\xa7\xe2\xc4\x5b\xe5\x69\x75\x05\x5a\xcb\x9b" "\x6d\xf8\xad\x55\xf0\xc6\xce\x2c\x84\xa8\x50\x3a\x03\x98\x3c\xf4\xab" "\x5c\xa4\x57\x09\xf7\x19\x1f\x6a\x2c\x0a\x28\x5a\xce\x84\xd2\x56\x82" "\xf3\x9b\x58\xdf\x66\x1a\x0f\xc2\xec\x8b\x53\xee\x58\x61\x8c\xe8\xd6" "\x41\x0a\x06\xbb\xb6\x39\xf6\xca\xd2\xa2\x6e\xe1\x4e\x55\xff\x17\x3f" "\xa4\x4c\x16\xb5\x5b\x23\x0f\x7f\xdb\xc4\xb0\xf6\xf1\x2c\x51\x30\x01" "\xda\xcc\x37\x6e\xd7\x8f\x87\x1b\x77\xb1\x3c\xb7\x02\xb3\x29\x30\xf9" "\xd5\xb9\xf3\xe3\xa3\x75\x6a\x2f\x12\x45\x19\xa2\x47\x09\x4e\xef\x7b" "\x33\xc7\xfd\x6c\x22\x7d\x60\x6a\xf4\x51\x6b\x0d\xc1\x7b\xd6\x82\x51" "\x54\x3b\x11\x14\x18\xbb\x47\x90\xee\xab\x62\xb4\x9f\x44\x92\x38\x45" "\x72\xe6\xd1\x46\xfa\xf3\x80\xc3\x1e\xce\x4d\xc6\x48\x79\xeb\xb8\xd7" "\xc1\x37\xeb\x94\x70\x13\x4c\xc2\x9a\xdc\x9e\x76\xbd\x7a\x55\x33\x28" "\xcc\xcd\xe1\xcc\x69\x0b\x34\xc9\xc6\xb2\x2b\x4c\xb8\xf6\x74\x52\x43" "\x7a\x56\xc7\x7f\x30\xea\xb3\x8a\x5a\x56\xff\x73\xf8\x21\x33\x7e\x3a" "\xb0\x8a\xab\x19\x28\xa2\x9a\x54\xb8\xa5\x96\x82\x55\xcc\x9c\xa8\x59" "\x92\x7f\xb1\xb5\x70\x33\x0a\x20\xfa\x71\x6c\x42\x34\x8c\x5a\x17\x01" "\x6c\x61\x72\x57\xdb\xcb\xe0\x98\xde\x08\xa7\x5b\x10\x47\x61\x70\xee" "\xbe\x3e\x71\x62\x4c\xe8\x72\xe8\xd5\xb6\xaf\xef\x82\x28\x63\x4e\x2a" "\xb4\xa7\x99\xae\x39\x21\x4f\x97\xef\x31\x29\x5a\xb5\x7a\xd7\x1a\xd6" "\x41\x45\x7d\x16\x4b\x76\xc6\xc4\xcb\xaa\x21\x5a\xcd\xa7\xbd\x31\xbf" "\x87\x58\x5f\x99\x77\x0c\xfe\xa8\x57\x76\xa8\x66\x58\x08\xc6\x05\x11" "\xe5\x57\x1c\xbc\xd4\xbf\x0b\xa5\x1c\x34\x03\x20\x69\x05\x27\xc6\x51" "\xc4\xbc\xc8\x77\x23\x5f\xcd\xe8\xfb\xc7\x8b\x35\x11\xa3\x40\x3c\x91" "\x50\x9e\x77\xd7\x7b\x6d\x2b\x01\xfd\xf1\x1d\xee\xb0\x11\x50\x6c\x18" "\xe6\x5c\x85\x6f\x9d\x50\xcc\x64\x9c\x3d\x3a\x4b\x9e\x3e\x60\x01\xe8" "\x21\x59\x35\x36\x61\x87\x6b\x85\xf1\xbf\x01\xf4\x4a\xad\x81\xa2\xdf" "\xe5\x64\x7e\xe3\x89\x95\xd5\x6a\x89\xc3\xcb\x4e\xe8\x31\xbd\x89\xe8" "\x6b\x52\x6d\x28\xaa\xba\x6f\x3b\x12\x5e\xd6\xda\xc9\xe9\xf0\xa6\x00" "\xbe\xa2\x66\x87\x19\x49\xf4\x7a\xa7\xa8\xe8\x33\xf0\xee\xd3\x33\x58" "\x41\x0f\x13\xf4\x4d\xd5\xae\x45\x75\x41\x4b\xf9\xb5\xa6\x53\x2d\x6f" "\x02\x3f\xf3\xfa\x90\x3e\xad\xb9\x60\xad\x24\xcf\x42\xf9\x42\xc9\x96" "\xc3\xbe\x94\x46\x29\x20\x2b\x19\xba\x62\x7f\x17\xad\x8e\xae\xae\x6b" "\x87\xaf\xeb\x64\xfe\x5b\xcc\x4d\x9f\x9f\x27\x11\x85\x64\x4e\xde\xa9" "\xe4\x8c\x8e\xa8\xce\x9f\x40\x85\x84\x45\xc0\xd7\xa9\x2f\xe9\xeb\x3a" "\x2b\xaf\xde\x8c\xd7\x35\x0d\x18\xd8\x57\x4c\xee\x83\x61\xca\x10\xb0" "\x14\xea\xdb\x74\x04\x2e\xa2\x05\xcc\x54\x62\xd3\xf8\x03\xb0\x72\x44" "\x4e\x2e\x3a\x23\xf4\x5c\x76\x74\xae\xb2\x42\x44\xd3\x51\xb5\x1b\xf6" "\xd8\xb4\x84\xa0\x64\x24\xfa\x0e\x3d\x59\x29\xae\x7c\x0d\x5d\x30\xbd" "\x6a\xe3\x26\xf5\x81\x4c\xba\x9b\x6d\xce\x1e\x0e\x28\xad\xfc\x1f\xa2" "\xac\x5f\x61\x63\x63\xcf\x5c\x83\x63\x8a\xda\xf4\x2f\xbb\x17\x0b\x23" "\x51\xdd\x26\x57\x12\x0b\x31\x1a\xba\x9b\x55\x79\xf0\xeb\x54\x15\x5c" "\x0b\x31\xd8\x11\xfa\x12\x7e\x5c\xb2\x43\xf0\x02\xcf\x17\xe4\xf0\x7a" "\x6e\x6c\x80\xf6\x94\xc5\x4c\xd8\x1d\xb2\xf3\xc4\x24\xa1\x25\xa1\x2c" "\x5e\xd6\x81\x80\x6d\xc3\x5c\xb7\x44\x61\x4d\x51\x0e\x91\xe6\x5d\xc8" "\x7e\x1f\x0d\x5a\xd8\x85\x56\xb6\xf6\x7d\x2a\x39\x87\x2b\x00\xe7\x4b" "\x13\x88\x9f\x01\x9f\xaf\x89\x4d\x89\x08\x79\x90\x6b\x9c\x77\x9a\x27" "\x63\x83\x03\x11\xc9\xde\x04\xf5\x33\x4b\x65\xfb\x91\x79\xe4\xd6\x3a" "\xaa\x0f\x80\x2e\x22\xc8\x96\xe9\x94\x10\x95\xa8\xe4\x7a\x70\x7b\x18" "\x76\xbb\x78\xb1\x17\x29\xa8\x85\x43\x14\xf2\x6b\x8b\xdb\x2b\xcd\x0e" "\x94\x97\x16\xe8\xfe\xcd\x13\x38\xa7\xb7\xc4\xfa\x88\x33\xda\x03\x13" "\xdc\xc6\x04\x96\x31\x6d\xb8\x63\xe4\x75\xff\xa5\x81\x02\x13\x7f\x81" "\xe4\x1f\x0b\xd6\xe5\x70\x70\xd7\x92\x27\x6c\x63\x40\x59\x76\x07\x4e" "\x10\x2e\xc7\x19\x2c\x9c\xb8\x87\xbc\x0f\x22\x31\x02\x11\xc3\x18\x68" "\xde\x4a\x9c\x5a\x57\x13\x13\x7c\x37\xa1\xa7\x53\x63\x23\xa7\x0b\x6a" "\xdf\xba\x7a\x16\x27\xab\xa7\x70\x16\x44\xe8\xf4\x4f\x6e\x2b\x13\x6b" "\x19\x72\x23\x2d\x0d\x85\x29\x29\x2b\x20\xbb\x99\x7b\x87\x1a\xb1\x83" "\x30\x4f\x86\x7e\xce\xbb\x71\x8a\x22\x80\xa1\x66\x5f\x48\x07\x11\xe9" "\x1c\x17\xd7\xf4\x45\xfe\x32\xe7\x62\xd9\x09\x41\xc7\x8b\xdf\x5b\x13" "\xd9\x3b\x55\x7c\xbd\x20\xfa\x5e\x7c\x5d\xee\x84\x14\xc3\x18\xfd\x1d" "\x9a\x89\xd7\x7f\x71\x8b\xb1\x0d\xc8\x95\xcd\x65\x38\x6a\x16\x55\xfb" "\x18\x4a\x84\xaa\x98\x13\xd1\xf5\xf4\x56\x7e\x12\x5b\xe0\x61\x36\x49" "\xd3\x7f\x0e\x91\xc1\xa1\xa4\xd4\xfa\x0b\xaa\x59\x75\xd0\x1a\x5b\x23" "\xbd\x39\xed\x8c\xd5\x94\x2d\xec\x27\xf1\xd4\x4e\x67\xe3\xe6\x0c\x81" "\xf4\x19\x4b\x93\x8c\xf8\xa3\x60\xd2\x85\xb6\x96\x67\x86\xe0\xf7\x95" "\x61\x6b\x35\x1f\x5a\xff\x5d\x98\x73\x17\x47\x4a\xac\x9b\xef\x20\x1b" "\xe3\x42\xdd\x8c\x2a\x4a\xc7\xc9\xdf\xfb\xe5\x34\xfd\xc7\x27\xd5\x93" "\x51\x89\x7f\x65\x43\x56\x3c\xfa\x5d\x27\x3f\x96\x69\x3f\x96\x59\xa9" "\xa2\x0f\x39\xc5\x39\x65\x88\x1e\x65\x40\xd6\xd7\xea\xef\x45\xda\x06" "\xaa\xdc\x7b\x67\xb9\x54\xad\x3d\xec\x0a\xed\xcc\x15\x8f\x9f\x6b\xe6" "\x08\x1e\xd0\x20\x9f\x17\xeb\xbc\xac\x20\x8c\xe2\x7f\x13\x02\x33\xe3" "\xa0\xed\xd3\x53\x6d\x73\x99\x2a\xd2\xe0\x55\x99\x09\x3a\x4a\x9f\x18" "\x9a\xbb\x78\xf0\x81\x70\x58\x22\x2d\xdb\x93\x00\xe8\xaa\xc2\x3e\xa6" "\xdf\xa6\xc3\x34\x31\x11\xff\x44\xdb\xd8\x9c\x97\x3e\x13\xcc\xa8\x76" "\x0e\x17\x26\x14\x4e\x6f\xad\xae\xf4\xc0\x0a\xc7\xac\xaa\xb1\xd5\xdd" "\x60\x94\xd7\xc2\x4a\xdb\x2f\x23\x0c\x78\x7d\x90\x31\x73\x24\x7c\x60" "\xec\xf6\x0d\x3a\x0a\x4b\x7f\xe1\xc8\xe0\xa1\xf0\xb7\x15\x91\x6e\x68" "\x06\x4a\x65\x3e\x46\xed\x8c\xc1\xe0\x49\x6c\xda\x1e\x8c\xb8\x72\x31" "\x5c\x51\xdc\xc1\xd4\xb1\xa4\x73\xeb\xdf\xfb\x24\xc7\xe2\x51\x10\xf0" "\xe8\x09\x11\x0b\x3e\xc8\x58\x52\x8e\x4d\x92\x01\xac\x3d\x65\x66\x7a" "\x44\x51\xd0\x8f\xf4\xda\x4a\xb1\xf1\xb8\xe2\x7e\x14\x86\x94\x3b\xcf" "\x1a\xb8\x21\x2b\x9c\x84\x39\xe4\xc3\x73\xff\x93\x5e\x35\x3b\xf1\xc0" "\xca\x6d\x90\x67\x94\xa3\xdb\x33\x65\x56\x95\x0d\x97\x80\xca\x38\x9f" "\x72\x55\x7f\xb2\xb0\xa9\x52\xce\x74\x42\xfd\x79\x40\x79\xbf\xc4\x7c" "\x71\x39\xf8\xcd\xd6\xcf\x0d\x6c\x98\xd5\xbc\xee\x4d\xa5\x68\xf7\xf1" "\x30\x52\x62\xbf\x7b\xab\xbf\x39\x19\x18\xd8\xfc\x60\xad\xa5\x88\x6a" "\xb4\x1c\x56\x78\xd8\x63\x11\x73\xf0\x87\x23\x9f\xbe\x45\x18\x98\x65" "\x50\x58\x50\xb7\xc9\x6c\x19\x1a\x2c\xe5\x60\xd6\x7d\x29\x45\x20\x85" "\x88\x0b\x93\x0a\x17\xed\xd3\x99\x7c\xa3\xe3\xe2\x11\x17\x71\xdc\x6b" "\x42\x98\x2e\x80\x44\x54\x42\x01\x56\x9e\xf0\x05\x75\x89\xb0\x27\xff" "\x8a\x21\x93\x5d\xb6\xf5\xc3\x11\xd2\x9c\xcb\x74\xa6\x67\x25\xc8\xfc" "\x88\x08\x04\xee\x06\x32\xd0\x7e\x92\x37\x8c\xe9\xa9\xa3\x97\x51\x8a" "\xe5\x16\x20\x38\x5b\xc6\xe5\xfb\x69\xe3\x91\x24\x20\x07\x9b\x0f\x3c" "\x23\x77\xd4\x87\xbe\xe8\x53\xec\x09\xe7\x5a\x56\xf7\x35\x63\xad\xb8" "\x2f\x8e\x39\x3e\x9a\xdd\xf3\x6b\xff\xcb\x3b\x0f\xfe\x03\x38\xcd\xcd" "\x10\xe3\x68\x8d\x69\x2c\x4d\x6d\x15\xa6\x4a\xaf\x9c\x36\x14\xe5\xd8" "\x06\xf6\x5f\x98\x25\xc1\x40\x82\x1b\x07\x0e\xdd\x97\x5e\x0a\x3f\xd3" "\xe2\xec\xad\x15\x82\x1b\x97\x95\xc4\x25\xaa\x48\x66\xdd\x44\xcc\xb2" "\x61\x6e\x41\x8b\x72\x3e\xfd\x51\x04\x80\xb2\xb8\xca\xd0\x6e\x56\x0e" "\x34\x9f\x42\xa7\xa3\x85\xf8\xb9\xb1\x5a\x4f\x7f\x6e\x59\xc4\x52\x51" "\x75\x14\x99\xca\x52\x8d\x65\x74\xf3\x78\xcd\x52\x4f\xb8\xdb\x88\x51" "\xf1\x8d\xeb\xd5\xd6\xc3\xf6\x6b\xd4\x09\x38\xf3\xe0\xa2\x8a\x32\xb2" "\xb4\x7b\xe5\x36\x73\xbe\x97\x0e\x3b\x17\x5d\xb7\xf1\x48\xc5\x7d\xdc" "\xbb\x8d\x53\xad\xdf\x08\x02\x82\x59\xc2\x3e\x09\x79\x8c\x62\x0b\x59" "\xea\x11\x29\xf9\x4b\xee\xc4\xbe\x89\xc1\x7e\xea\x8c\xee\x93\xd9\x96" "\xbf\xf0\xd5\x1a\x8a\x31\x20\x58\x90\xf5\x0a\xd6\x0e\x94\x5a\xd1\xc7" "\x16\x75\xde\x40\x7d\x42\xd8\x43\x24\xd4\xcf\xaf\x15\x93\x3a\x79\x35" "\x6f\x22\x33\xd6\xce\x5b\xcb\xda\xb9\xdc\xd6\xa4\x83\x65\x1b\x88\xd3" "\xfa\x3e\x38\x4d\x14\xee\xc6\xcd\xa5\x2b\x22\x37\x04\xc7\xcb\xd0\x41" "\x4d\x22\xbc\xb0\x5f\x5b\x7f\x92\xff\xd6\x90\xd0\x64\x0e\x5b\x78\xfb" "\x27\xdc\x3d\x2e\xfe\xa5\xa5\xa0\x16\xb0\xa0\x18\x70\x92\xdb\xfa\x17" "\xa9\x3f\x06\x74\x06\xe7\xbd\x7e\xe1\x3a\x23\xab\x9c\x93\x44\x4f\xef" "\x23\x85\xd7\x27\x78\xc6\xb2\xf7\x98\xad\x75\x76\xe4\xe1\xc3\x49\x85" "\xc0\x6f\xad\x8d\x5e\xef\xf6\xb5\x21\x7d\x97\xdb\xa4\xb8\xba\x05\xa0" "\x64\x05\xe2\x2c\x6a\x6d\x62\xc4\x33\x55\x91\xa2\xa0\xd4\xe2\x79\x94" "\xd6\x8d\xf1\xd0\xf4\x36\x87\xa5\xf6\x17\xc1\xc9\xc3\xbf\x2a\x54\x47" "\x2b\xbf\xc6\x8a\x83\x35\x0c\x7a\xfb\x87\xb4\x9d\x6d\x07\xda\x07\x25" "\xd6\x2b\x72\xaf\x49\xd5\x56\x55\xa1\x0f\xfa\xf8\xbe\x4d\x32\xf1\xc6" "\x56\x8f\xaf\x4b\x8d\x08\xcb\x2f\x8f\x05\x50\xfd\x29\x47\xc8\x78\x2d" "\x86\x0d\x5b\xc7\xef\xdd\x81\x42\xfb\x19\x87\xba\x7a\xb2\x85\x2f\xe1" "\x29\xf7\x7d\xc1\xcf\x07\xdc\x12\x63\xf1\xb8\x70\x1b\xdf\x50\x52\x54" "\x42\x7f\x29\xef\x33\x63\x2e\x80\x05\x36\x7d\x74\x8a\x2a\xeb\xd2\xa9" "\x2b\x28\xe9\xce\xc7\xa1\xe2\x97\x88\x3d\x6d\x35\xff\x6e\xe3\xf2\x42" "\xa2\x88\x3c\x5f\xbb\x2f\x32\x48\x03\xfe\xfc\x5c\x2c\x8f\xf9\x25\xa0" "\xc0\xce\xd8\xb4\xf1\xf8\xd1\xd7\xe4\x17\x08\x8d\x7a\x9c\xf5\x4b\x14" "\x95\x90\x24\x12\x4f\x50\x60\xf5\x1c\xaf\xfe\x8f\x5a\x85\xa2\xb8\x2e" "\xf1\xeb\xed\x10\xca\xca\x1a\x4b\x07\x3c\x78\x9c\xa1\x78\x97\xc9\x01" "\x4a\x7a\xbe\x99\xac\x92\xd0\x67\x22\x78\x8c\xad\x91\xb2\xb3\x7d\xaa" "\xb6\x08\x81\x41\x0b\x0a\xea\xd3\xff\x33\xbd\xb2\x9a\x5b\xb6\x4b\x08" "\x6d\x14\x5c\xb7\x75\xb9\x45\xed\xeb\x85\x2b\x50\x0b\x33\xf1\xf8\xa0" "\x7e\x57\x70\xe1\xf8\xa5\x7d\x61\xc8\x6b\x22\x5f\xb3\x84\x3c\x70\xe3" "\xc1\x24\xfa\x07\x77\x3f\xe6\x23\xdc\x0b\xfc\x99\xcf\xba\x1e\xc3\x79" "\x09\x6c\x41\xe2\x92\x92\x13\xa3\xd9\x05\xc6\x87\x80\x59\xb4\xef\x8a" "\x40\x6d\xc0\x37\xd4\xf4\x1e\xbc\x33\xe5\xdb\xac\x5a\x2d\x8f\xbd\x63" "\x05\x53\xe0\xb3\xcc\x3f\xc0\x95\x00\xfd\x5c\x5e\x31\xc9\x89\x70\x1c" "\xb3\x7e\xc6\x0d\x22\x3e\x5c\xef\x9c\xbf\x6c\xd8\x2f\x8f\x4b\x50\x82" "\x6e\x8e\x6c\x70\x3a\x9c\x59\x2b\xcb\x3f\x7a\x0a\x62\xa9\xca\x26\x29" "\x18\x38\xeb\xfd\xf8\x6b\x56\x0e\x23\x90\x68\x30\x28\x06\x10\x21\x46" "\x67\xc3\x36\x24\xe6\x25\x58\xd3\xe0\x4e\xba\x4a\xf0\x8c\xc1\x91\xd1" "\x4a\xa4\x0b\x96\x22\xfa\x38\xab\xd5\x65\x0a\x56\x46\x3e\xb8\xf2\x71" "\x8e\x85\x8c\x61\x76\x70\xe2\x5d\xc6\x77\xf1\x9e\x4d\x6b\x72\x10\xd5" "\x46\xb6\xe8\xb5\x08\x59\x26\x6e\x8a\x76\x81\xc5\xa6\xd0\x64\xe2\x36" "\x71\xca\x2e\x12\xe4\x9a\x79\x2f\xde\x41\xb5\xae\x0b\xc3\xab\x6d\x98" "\x5c\x15\x54\x77\x75\x83\x36\x54\xcd\x3d\x01\x5f\xa8\xcf\xea\x01\x91" "\x99\x7c\xd6\x27\x6d\x2d\x42\xef\x9b\xca\x03\xfe\x00\xbc\x17\x67\xab" "\x63\xed\xa6\x5b\x8e\x05\x89\xa9\xfb\x46\xfd\x27\x78\xe7\x70\x1f\xf7" "\x45\x23\xf7\x87\x92\x98\xbe\xed\xf3\xa3\x66\x3a\x08\xf2\x8a\xb1\x76" "\xca\x7e\xa3\xdc\x41\x9b\xeb\x82\xb6\x20\x5a\xec\xbd\x55\x92\x46\x3c" "\x3f\xbb\x64\xda\x8f\x08\x09\xf7\x85\x9c\x4f\x4c\x47\xf0\x07\x42\x4e" "\x79\x36\x23\xe2\xb5\x6c\xcf\xc3\x74\xed\xeb\x7c\x10\x5f\x0f\xbc\x28" "\xd1\x68\x18\x14\x08\x5d\xe2\x61\x69\xe2\x77\xf1\x35\xbf\xbb\x5a\x64" "\x52\x3a\x24\xbd\x24\xe4\x08\x1f\xaf\xc7\x13\xb3\x04\xef\x55\xd6\xd4" "\xb7\x7b\x09\x67\xf8\xee\x39\xc6\x33\xa5\x47\x9f\xe0\x8d\x1b\x79\x6f" "\xfe\x6e\x8e\x8c\x0d\xf3\x64\x14\x5c\x55\x81\x2f\x86\xb8\xb5\x5c\xae" "\x4e\x33\xf2\xc5\x2a\x37\x22\x82\x1b\xa8\xc6\xe8\xd0\xfe\xe7\x89\x81" "\xae\xcc\xe7\x06\xb0\xa9\xb5\xb3\x5e\x5b\x95\xec\x7f\x3e\xbb\x7a\xc1" "\x78\x6a\x97\xf0\x53\x2f\xe0\xfd\x3d\x16\xca\x45\xe0\xcc\x94\x62\x43" "\x38\x74\x37\xee\xeb\x86\xce\xb1\x99\x75\x49\x2a\xf1\xce\xb9\x32\xaa" "\xd7\x53\x61\xb7\x4f\x52\xcf\x79\x9d\xc2\x34\xf7\x50\x94\x00\x0b\x29" "\xc7\x8f\x5e\x57\x76\x72\xdf\x63\xe3\xc6\x63\xa1\x20\x76\xa8\x9f\xf3" "\x8a\x6a\x54\xbb\x3e\x75\xba\xbd\x8b\x91\x15\x18\x93\x91\xe1\x2a\xb6" "\xfb\xc4\xe3\xc3\x0b\x8c\x95\xe4\x2f\x9e\xff\x2c\x19\x63\xd5\x80\xe9" "\xc2\x60\x6e\xff\xc3\x0b\x35\x60\x65\x8b\x6c\x67\x84\x82\xb1\x24\x5d" "\x09\x9b\xe5\xc5\x54\xcd\x48\x7c\x34\x6a\x9d\x05\xa2\xc6\xd6\xd3\x51" "\x47\x2a\x8f\x63\x0d\x4c\xbb\xa4\x53\x3b\xe8\x57\xba\x5b\x4c\xbe\xb7" "\x07\xbe\x24\x0e\x67\xe0\xbc\xda\xf7\x66\xe6\x8b\xfa\x68\xd0\xf1\xb4" "\xce\x4e\xc9\xe0\x80\x2b\xbc\x95\xe5\xa6\x52\x5a\xb2\x5a\xba\xc3\xd2" "\xa4\x39\x5e\x00\xc8\x21\x7e\xd8\xda\xce\x8b\x8c\xbc\x71\x31\x37\x69" "\x67\xcb\x1e\xe2\x6d\xbf\x75\xb9\x20\xe8\x94\xd1\xe0\x4e\x4e\x53\x4e" "\x63\x1d\x2b\xc1\x72\xe8\xa0\xbe\x41\xeb\x13\xe5\x34\xd9\x99\x69\x29" "\xee\x0f\xc8\xf2\xc3\x86\x96\x54\x4c\xa4\x18\xe3\x9c\x4f\xc4\xf4\xac" "\xc0\x0a\xbc\x84\xc6\x1d\x82\xe5\x42\xaa\xac\x17\x5b\x0e\xaa\x2c\xb4" "\x5e\xd2\x96\x62\x2f\xcd\x3a\x42\xa7\x08\x3c\xf3\x5e\x19\xb7\x92\x5a" "\xaf\x8f\x83\x5a\x7e\x54\xb6\xf7\xb8\xaa\x96\x8f\x92\xb4\x04\xde\x19" "\xd0\x30\x27\x41\x05\x0a\x9c\xbf\x05\x5f\x54\x05\x42\xf5\x9f\x97\x2e" "\x24\xff\x3b\x34\xbd\x80\xc9\x25\xa2\x9c\xb9\xd4\x2f\xa5\x02\x09\x16" "\x63\x6c\xc8\x1a\x33\x2f\x14\x08\x28\xfe\xa1\xeb\x5e\x49\x79\x96\x32" "\x10\x22\x33\x6d\x39\x8c\x51\x3b\xb4\x93\x80\x35\x9d\xe3\x92\xe8\x65" "\x84\x3c\x8f\x4d\x41\x78\xb9\x41\x24\x11\xf8\x04\xc4\x9a\xd7\x28\x99" "\xe1\x40\xf0\xb2\x03\x55\x2d\xf1\x4c\x1f\x6b\x2e\x9f\x1f\x9c\xfd\x40" "\x7e\x89\x19\x2a\x2d\x11\x4a\xbb\x60\x6b\xa2\x94\xba\xa8\x02\xa7\x4c" "\xbd\x91\x68\x20\x55\x65\x08\x35\xc2\x67\x85\xde\xd1\x1e\x60\x57\x83" "\x4d\x8c\x3b\xbd\x84\xe6\x65\xc5\x88\x70\x57\xc9\x25\x30\xfd\x96\x04" "\x6d\x8f\xbc\x15\x20\x23\x0d\x3b\x2d\x6c\x14\xc8\xcc\x78\xd5\x0b\xc6" "\x71\x71\xc2\xa3\x7e\xbc\x0c\xbd\xa9\x27\x2b\xe3\x4a\x17\x72\x30\x08" "\xba\x33\xe1\xa0\xaf\x5d\x64\xb1\x1e\x51\xa7\x3b\xb7\x9c\xf1\xad\x71" "\x86\xd0\x71\x31\xd5\x3b\x77\xcb\x13\x08\xff\x7d\x35\xd6\x74\x82\x19" "\x90\xc8\x2a\x6c\x4c\xda\xd0\x87\xd4\x98\x80\x81\xcf\xd6\x17\x11\x24" "\xa3\x97\x99\xca\x07\x76\x6c\x1a\xd0\xc2\x82\xac\xf2\xcc\xa7\x43\x9f" "\x4e\x14\xa4\xdf\xb0\x00\x84\x3c\xaf\x6e\x06\x45\xde\xc6\xa6\xca\x09" "\x50\xf2\xb2\x42\xea\xcc\xf3\x6d\xbd\xed\xe8\xd5\xb4\x0e\xdd\xa6\x47" "\xd8\xd9\xb2\x99\x90\x52\x6c\x49\x63\x5d\x16\x7a\x4d\x9a\x3d\xf3\x5c" "\x45\x43\x6a\x06\x31\xfd\x75\xf4\xd4\xbd\x60\xe5\x24\xd3\x81\x68\x82" "\xb9\xde\xd4\xcc\xe2\x83\xb7\x42\x09\x6e\xc6\x2b\x0c\xf1\x44\x49\x38" "\xb8\x53\xb6\x2d\x10\x75\x6f\x0a\xd5\x24\x1d\x22\xcc\x53\xf9\x2e\x9e" "\x0c\xc0\xa4\xd4\x78\x67\xf7\x4d\x68\xf4\xbf\x5e\xb8\x09\x74\x58\x3c" "\xb6\x39\x47\xa5\xbb\x42\x2a\xde\x4d\x42\x95\x59\x8f\x7e\x8b\xc5\xb3" "\xd8\x52\x75\x98\xbe\x54\x91\x21\x99\x98\xe8\x6f\xa1\x31\x8d\x5f\x1b" "\x8f\x82\xed\xa1\x48\xf0\x4e\xea\x48\x39\x94\xb5\xd2\xc0\x15\xc2\xeb" "\xd2\xb6\x0b\xf0\x7f\xbd\x28\xaf\x01\x04\x40\x66\x0f\xf7\x08\x39\x18" "\x13\x2c\x15\x16\xdf\x67\x13\xc6\x19\xf5\xe6\xe2\xea\x08\x3b\x81\x97" "\xe9\x77\x0e\xd8\x06\x95\xe8\x5f\x19\xee\x42\x5b\x09\x06\x65\xd2\x2e" "\x9c\x43\x65\x56\xd7\x28\x95\x29\x25\xce\xcb\xd1\x22\x6f\x35\x74\x4a" "\x3a\x0e\xa1\x05\x3a\xd8\x67\x8d\xf8\x05\xcf\xe9\xe8\x9a\xf4\xf9\x7f" "\xe4\x19\x51\xb9\xb2\x9c\x48\x4d\x69\x1e\x15\xd0\x0f\x0f\xf7\x69\xb5" "\x88\xee\xd3\xe5\xca\xc3\xe6\xb8\x16\x48\xd7\x30\x33\xee\x8e\x99\x8e" "\x8f\xe6\x46\xfe\xe7\x03\xaf\x8f\xbd\x82\xe2\x94\x95\xbf\xcb\x61\x6c" "\x64\x5a\xbe\xf5\x43\x3c\x6a\xc7\x57\x0d\x89\xcb\xd9\x20\x30\x9f\x23" "\x2a\x80\x86\x11\x0e\x6d\xf0\xd3\x0e\x8b\x50\xbb\x95\xb3\x56\xdb\xe7" "\xd7\x6f\xd5\x8c\x77\x79\x13\x4a\xf7\x0e\x4d\xe0\xfb\x3c\x18\x86\x4f" "\x43\x54\x13\xbb\x8c\x64\x7b\xb1\xff\x75\xbb\x4b\x46\xcb\x8e\x2e\xec" "\x1f\xd5\xe5\x46\x70\x31\x3c\x26\xf3\x6b\xfd\xd5\xc1\x25\xd2\x8e\x8b" "\x6c\xca\x41\x6f\xa4\x5d\x2d\x88\x28\xc7\xd8\xc8\x69\xb2\xb2\xf9\xff" "\x40\x2a\x8d\x2a\x2c\x3e\x8a\x2f\x04\x2b\x80\x4e\xf3\xde\xc1\xda\xa0" "\x93\x49\xc3\x11\xb3\x41\xf5\x12\x85\x1f\x62\x2e\x96\x13\xb1\xc8\xc6" "\x41\x00\xa7\x57\x10\xea\xec\xc8\xcf\x9e\x02\x81\xe5\x99\x10\x32\x66" "\x2a\x5e\xe8\x76\x81\x82\xfb\xce\x6f\x1b\x9d\x32\xa0\x7c\x71\x5b\xd6" "\xfc\xf1\xac\xd0\x40\x8c\x74\xb9\x7e\x79\x46\xc5\xa8\x96\x42\x23\x56" "\x15\x02\x09\xee\xc7\x2f\xf1\xbb\x5a\x23\x64\xd0\x3e\xb2\x2b\x4a\x95" "\x6d\x47\x4a\xce\x72\x4f\xa0\x33\x06\xce\x10\x96\x5b\x59\x5d\x98\x78" "\x3b\xf0\xd6\xfb\xe1\xdd\x7f\x92\x64\xdc\x4e\x1e\x8a\x43\xf0\x97\x18" "\x13\xed\x9f\xf1\x36\x71\xff\x9e\x55\x08\xf6\x49\xb7\x03\x5f\xc0\x6f" "\xc9\x07\xb2\x5a\x07\xe6\x81\xe5\x66\x31\x04\xfb\x25\x5e\xea\x37\xae" "\x47\x35\xe1\x92\x8d\xc4\xbd\x39\x9e\x6f\x1f\xae\x6e\x70\xb9\xfa\xa7" "\x9a\x97\x9b\x56\xd4\x90\x19\xe2\xa0\xb6\xcf\xf0\x09\xa9\x57\x35\x8b" "\xe8\x5b\xac\x85\xfb\x7e\xbe\xf1\x10\x9e\xd8\x56\x31\xee\xef\x5b\x71" "\x1c\x36\xc2\xd1\xa8\x75\x39\x30\xc0\xdc\x1b\x03\x23\x1f\x7e\x28\xbe" "\x3f\x8c\x1f\x49\xa3\x86\xac\x8a\xc0\x30\x5e\x5a\x1b\x05\x90\xd8\xbf" "\x88\xe2\xbf\x16\x2d\x04\x43\x52\x5c\xa9\x2f\x5b\x82\x47\x86\x7f\xdb" "\x82\xf8\x6d\x96\x98\xf2\x6a\x97\x20\x49\x74\xb9\x06\x47\x94\xee\xea" "\x15\x03\x53\x98\x36\xd0\x63\xc2\x66\x7e\x4e\x01\x3a\x57\xb7\x85\x41" "\x2d\x38\x4e\x0f\x4c\xcf\x49\xa5\xd2\x43\xf6\x3f\x37\x1e\xe0\xb6\xee" "\xa9\x54\x3c\x35\xb8\x17\xdb\x8b\x4d\xfa\xe0\x51\x0b\xf2\xf1\x09\x19" "\x2b\x8d\x12\x45\x68\x28\xfc\x15\xeb\x0b\xd8\x62\x55\x2b\x83\xe3", 4096); *(uint16_t*)0x200027c4 = 0x1000; syscall(__NR_write, /*fd=*/r[0], /*data=*/0x200017c0ul, /*len=*/0x100dul); break; case 3: memcpy((void*)0x20000200, "./bus\000", 6); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000200ul, /*flags=O_SYNC|O_NONBLOCK|O_NOATIME|O_CREAT|O_RDWR*/ 0x141842, /*mode=*/0); 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); const char* reason; (void)reason; for (procid = 0; procid < 5; procid++) { if (fork() == 0) { loop(); } } sleep(1000000); return 0; }