// https://syzkaller.appspot.com/bug?id=8a97cbdba3aff9e08c456aaae06c4d34baeab97e // 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 #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 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"); } 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_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x20000400, "jfs\000", 4); memcpy((void*)0x200000c0, "./file2\000", 8); memcpy( (void*)0x200085c0, "\x78\x9c\xec\xdd\x4f\x6f\x1c\x67\x1d\x07\xf0\xdf\xfe\xf1\xfa\x4f\x69\x13" "\x55\xa8\x0a\x11\x87\x34\x85\xd2\x52\x9a\xff\x09\x94\x7f\x4d\x39\x70\x80" "\x03\x48\x28\x67\x12\xb9\x6e\x15\x48\x01\x25\x01\xd1\x2a\x22\xae\x72\x40" "\x5c\x80\x97\x00\x97\x5e\x38\xf4\x65\x70\xe9\x6b\x40\xbc\x00\x22\xd9\x9c" "\x7a\xa0\x0c\x1a\xfb\x79\x92\xf1\x78\x9d\x75\x48\xbc\xb3\xeb\xe7\xf3\x91" "\x9c\x99\xdf\x3c\x3b\xde\x67\xf2\xf5\x78\x76\x3d\x33\xfb\x04\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x3f\xf8\xfe\x4f\xce\xf6\x22" "\xe2\xea\x6f\xd2\x82\xa3\x11\x9f\x8b\x41\x44\x3f\x62\xb9\xae\x4f\x44\x3d" "\x73\x39\x3f\x7e\x18\x11\xc7\x62\xab\x39\x5e\x88\x88\xc1\x62\x44\xbd\xfe" "\xd6\x3f\x47\x22\x2e\x44\xc4\x27\xcf\x45\x6c\x6c\xde\x59\xad\x17\x9f\xdb" "\x67\x3f\x2e\x9e\xb9\x7d\xf3\xb3\x1f\x7e\xef\x1f\xbf\xff\xd3\xbd\x63\x3f" "\x7b\xfb\xa7\x1f\xb5\xdb\x7f\xfc\xf9\xf3\x1f\xff\xe1\x6e\xc4\xd1\x1f\xbd" "\xf1\xf1\x67\x77\x9f\xce\xb6\x03\x00\x00\x40\x29\xaa\xaa\xaa\x7a\xe9\x6d" "\xfe\xf1\xf4\xfe\xbe\xdf\x75\xa7\x00\x80\xa9\xc8\xc7\xff\x2a\xc9\xcb\xd5" "\x6a\xb5\x5a\xfd\x54\xeb\x3f\xf6\x67\xab\x3f\xea\x42\xeb\xa6\x6a\xbc\xbb" "\xcd\x22\x22\xd6\x9b\xeb\xd4\xaf\x19\x9c\x8e\x07\x80\x39\xb3\x1e\x9f\x76" "\xdd\x05\x3a\x24\xff\xa2\x0d\x23\xe2\x99\xae\x3b\x01\xcc\xb4\x5e\xd7\x1d" "\xe0\x40\x6c\x6c\xde\x59\xed\xa5\x7c\x7b\xcd\xe3\xc1\x89\xed\xf6\xfc\x77" "\xca\x1d\xf9\xaf\xf7\x1e\xdc\xdf\xb1\xd7\x74\x92\xf6\x35\x26\xd3\xfa\xf9" "\xba\x17\x83\x78\x7e\x8f\xfe\x2c\x4f\xa9\x0f\xb3\x24\xe7\xdf\x6f\xe7\x7f" "\x75\xbb\x7d\x94\x1e\x77\xd0\xf9\x4f\xcb\x5e\xf9\x8f\xb6\x6f\x7d\x2a\x4e" "\xce\x7f\xd0\xce\xbf\x65\x47\xfe\x7f\x8e\x88\xb9\xcd\xbf\x3f\x36\xff\x52" "\xe5\xfc\x87\x8f\x93\xff\xfa\x60\x8e\xf7\x7f\xf9\x03\x00\x00\x00\x00\x70" "\xf8\xe5\xbf\xff\x1f\xed\xf8\xfc\xef\xe2\x93\x6f\xca\xbe\x3c\xea\xfc\xef" "\x89\x29\xf5\x01\x00\x00\x00\x00\x00\x00\x00\x9e\xb6\x27\x1d\xff\xef\x01" "\xe3\xff\x01\x00\x00\xc0\xcc\xaa\xdf\xab\xd7\xfe\xf2\xdc\xc3\x65\x7b\x7d" "\x16\x5b\xbd\xfc\x4a\x2f\xe2\xd9\xd6\xe3\x81\xc2\xa4\x9b\x65\x56\xba\xee" "\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x94\x64\xb8\x7d\x0d\xef\x95" "\x5e\xc4\x42\x44\x3c\xbb\xb2\x52\x55\x55\xfd\xd5\xd4\xae\x1f\xd7\x93\xae" "\x3f\xef\x4a\xdf\x7e\x28\x59\xd7\xbf\xe4\x01\x00\x60\xdb\x27\xcf\xb5\xee" "\xe5\xef\x45\x2c\x45\xc4\x95\x88\xf8\xfb\x91\x88\x85\x95\x95\x95\xaa\x5a" "\x5a\x5e\xa9\x56\xaa\xe5\xc5\xfc\x7a\x76\xb4\xb8\x54\x2d\x37\xde\xd7\xe6" "\x69\xbd\x6c\x71\xb4\x8f\x17\xc4\xc3\x51\x55\x7f\xb3\xa5\xc6\x7a\x4d\x93" "\xde\x2f\x4f\x6a\x6f\x7f\xbf\xfa\xb9\x46\xd5\x60\x1f\x1d\x9b\x8e\x0e\x03" "\x07\x80\x88\xd8\x3e\x1a\x6d\x38\x22\x1d\x32\x55\x75\x24\xba\x7e\x95\xc3" "\x7c\xb0\xff\x1f\x3e\xf6\x7f\xf6\xa3\xeb\x9f\x53\x00\x00\x00\xe0\xe0\x55" "\x55\x55\xf5\xd2\xc7\x79\x1f\x4f\xe3\xfb\xf5\xbb\xee\x14\x00\x30\x0d\x4b" "\xf9\xf8\xdf\x3e\x2f\xa0\x56\xab\xd5\x6a\xb5\xfa\xf0\xd5\x4d\xd5\x78\x77" "\x9b\x45\x44\xac\x37\xd7\xa9\x5f\x33\x18\x8e\x1f\x00\xe6\xcc\x7a\x7c\xda" "\x75\x17\xe8\x90\xfc\x8b\x36\x8c\x88\x63\x5d\x77\x02\x98\x69\xbd\xae\x3b" "\xc0\x81\xd8\xd8\xbc\xb3\xda\x4b\xf9\xf6\x9a\xc7\x83\x34\xbe\x7b\xbe\x16" "\x64\x47\xfe\xeb\xbd\xad\xf5\xf2\xfa\xe3\xa6\x93\xb4\xaf\x31\x99\xd6\xcf" "\xd7\xbd\x18\xc4\xf3\x7b\xf4\xe7\x85\x29\xf5\x61\x96\xe4\xfc\xfb\xed\xfc" "\xaf\x6e\xb7\x8f\xd2\xe3\x0e\x3a\xff\x69\xd9\x2b\xff\x7a\x3b\x8f\x76\xd0" "\x9f\xae\xe5\xfc\x07\xed\xfc\x5b\x0e\x4f\xfe\xfd\xb1\xf9\x97\x2a\xe7\x3f" "\x7c\xac\xfc\x07\xf2\x07\x00\x00\x00\x00\x80\x19\x96\xff\xfe\x7f\xd4\xf9" "\xdf\xbc\xc9\x00\x00\x00\x00\x00\x00\x00\x30\x77\x36\x36\xef\xac\xe6\xfb" "\x5e\xf3\xf9\xff\x2f\x8e\x79\x5c\xaf\x39\xe7\xfe\xcf\x43\x23\xe7\xdf\xdb" "\x77\xfe\xee\xff\x3d\x4c\x72\xfe\xfd\x76\xfe\xad\x0b\x72\x06\x8d\xf9\xfb" "\x6f\x3d\xcc\xff\xdf\x9b\x77\x56\x3f\xba\xfd\xaf\x2f\xe4\xe9\xcc\xe7\xbf" "\x30\x18\xd5\xcf\xbd\xd0\xeb\x0f\x86\xe9\x9a\x9f\x6a\xe1\x9d\xb8\x1e\x37" "\x62\x2d\xce\xec\x7a\xfc\x70\x47\xfb\xd9\x5d\xed\x0b\x3b\xda\xcf\x4d\x68" "\x3f\xbf\xab\x7d\x54\xb7\x2f\xe7\xf6\x53\xb1\x1a\xbf\x8c\x1b\xf1\xf6\x83" "\xf6\xc5\x09\x17\x46\x2d\x4d\x68\xaf\x26\xb4\xe7\xfc\x07\xf6\xff\x22\xe5" "\xfc\x87\x8d\xaf\x3a\xff\x95\xd4\xde\x6b\x4d\x6b\xf7\x3f\xec\xef\xda\xef" "\x9b\xd3\x71\xcf\x73\xf9\x6f\xff\x79\x79\xf7\xde\x35\x7d\xf7\x62\xf0\x60" "\xdb\x9a\xea\xed\x3b\xd9\x41\x7f\xb6\xfe\x4f\x9e\x19\xc5\xaf\x6f\xad\xdd" "\x3c\xf5\xdb\x6b\xb7\x6f\xdf\x3c\x1b\x69\xb2\x63\xe9\xb9\x48\x93\xa7\x2c" "\xe7\xbf\x90\xbe\x72\xfe\xaf\xbc\xb4\xdd\x9e\x7f\xef\x37\xf7\xd7\xfb\x1f" "\x8e\x1e\x3b\xff\x59\x71\x2f\x86\x7b\xe6\xff\x52\x63\xbe\xde\xde\x57\xa7" "\xdc\xb7\x2e\xe4\xfc\x47\xe9\x2b\xe7\x9f\x8f\x40\xe3\xf7\xff\x79\xce\x7f" "\xef\xfd\xff\xb5\x0e\xfa\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x8f\x52\x55\xd5\xd6\x2d\xa2\x97\x23\xe2\x52\xba\xff\xa7\xab\x7b\x33" "\x01\x80\xe9\xca\xc7\xff\x2a\xc9\xcb\xd5\x6a\xb5\x5a\xad\x56\x1f\xbe\xba" "\xa9\x1a\xef\xcd\x66\x11\x4b\x3b\xd7\xa9\x5f\x33\xfc\x6e\xdc\x37\x03\x00" "\x66\xd9\x7f\x23\xe2\x9f\x5d\x77\x82\xce\xc8\xbf\x60\xf9\xf3\xfe\xea\xe9" "\x97\xba\xee\x0c\x30\x55\xb7\xde\xff\xe0\xe7\xd7\x6e\xdc\x58\xbb\x79\xab" "\xeb\x9e\x00\x00\x00\x00\x00\x00\x00\x00\xff\xaf\x3c\xfe\xe7\x89\xc6\xf8" "\xcf\x5b\xd7\x01\xb5\xc6\x8d\xde\x31\xfe\xeb\x5b\x71\x62\x6e\xc7\xff\xec" "\x8f\x06\x5b\x63\x9d\xa7\x0d\x7a\x31\x1e\x3d\xfe\xf7\xc9\x78\xf4\xf8\xdf" "\xc3\x09\xcf\xb7\x30\xa1\x7d\x34\xa1\x7d\x71\x42\xfb\xd2\x84\xf6\xb1\x37" "\x7a\x34\xe4\xfc\x5f\x4c\x19\xe7\xfc\x8f\xa7\x0d\x2b\x69\xfc\xd7\x57\x3a" "\xe8\x4f\xd7\x72\xfe\x27\xd3\x58\xcf\x39\xff\xaf\xb4\x1e\xd7\xcc\xbf\xfa" "\xeb\x3c\xe7\xdf\xdf\x91\xff\xe9\xdb\xef\xfd\xea\xf4\xad\xf7\x3f\x78\xfd" "\xfa\x7b\xd7\xde\x5d\x7b\x77\xed\x17\x67\xcf\x5c\xba\x70\xfe\xe2\x85\xf3" "\x17\x2f\x9e\x7e\xe7\xfa\x8d\xb5\x33\xdb\xff\x76\xd8\xe3\x83\x95\xf3\xcf" "\x63\x5f\xbb\x0e\xb4\x2c\x39\xff\x9c\xb9\xfc\xcb\x92\xf3\xff\x72\xaa\xe5" "\x5f\x96\x9c\xff\xcb\xa9\x96\x7f\x59\x72\xfe\xf9\xf5\x9e\xfc\xcb\x92\xf3" "\xcf\xef\x7d\xe4\x5f\x96\x9c\xff\xab\xa9\x96\x7f\x59\x72\xfe\x5f\x4d\xb5" "\xfc\xcb\x92\xf3\x7f\x2d\xd5\xf2\x2f\x4b\xce\xff\x6b\xa9\x96\x7f\x59\x72" "\xfe\xaf\xa7\x5a\xfe\x65\xc9\xf9\x9f\x4a\xb5\xfc\xcb\x92\xf3\x3f\x9d\x6a" "\xf9\x97\x25\xe7\x9f\xcf\x70\xc9\xbf\x2c\x39\xff\x7c\x65\x83\xfc\xcb\x92" "\xf3\x3f\x97\x6a\xf9\x97\x25\xe7\x7f\x3e\xd5\xf2\x2f\x4b\xce\xff\x42\xaa" "\xe5\x5f\x96\x9c\xff\xc5\x54\xcb\xbf\x2c\x39\xff\x4b\xa9\x96\x7f\x59\x72" "\xfe\x5f\x4f\xb5\xfc\xcb\x92\xf3\xff\x46\xaa\xe5\x5f\x96\x9c\xff\x1b\xa9" "\x96\x7f\x59\x72\xfe\xdf\x4c\xb5\xfc\xcb\x92\xf3\xff\x56\xaa\xe5\x5f\x96" "\x9c\xff\xb7\x53\x2d\xff\xb2\xe4\xfc\xbf\x93\x6a\xf9\x97\x25\xe7\xff\xdd" "\x54\xcb\xbf\x2c\x39\xff\x37\x53\x2d\xff\xb2\x3c\xfc\xfc\x7f\x33\x66\xcc" "\x98\xc9\x33\x5d\xff\x66\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xda" "\xa6\x71\x39\x71\xd7\xdb\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\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfc\x8f\x1d\x38\x10\x00\x00\x00" "\x00\x00\xf2\x7f\x6d\x84\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x2a\xec\xc0" "\x81\x00\x00\x00\x00\x00\x90\xff\x6b\x23\x54\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x61\xef\xee\x62\xe4\x2a\xef\x33\x80\x9f\xfd\xb2\xd7\x86\x04\x37" "\x10\x42\x88\x13\x6c\x63\x88\x81\x85\xdd\xf5\x17\x38\xc4\x60\x92\x90\x52" "\xd2\xa6\x94\x84\xb4\x69\x49\x8d\x63\xaf\x8d\x13\x7f\xd5\xbb\x26\x80\x50" "\x59\x0a\x6d\x89\x82\x54\xa4\xf6\x82\x5e\x34\x4d\xa2\x34\x8a\xd4\x56\xa0" "\x28\x52\x53\x89\x46\x48\x8d\xd4\xde\x95\xab\x44\xdc\x44\xad\xc4\x85\xa5" "\x42\xe5\xa0\xa4\x52\xaa\xc0\x56\x67\xce\xfb\xbe\x9e\x99\x9d\x9d\xb3\xfe" "\x18\x7b\xe6\x9c\xdf\x0f\xe1\xbf\x77\xe6\xcc\xcc\x3b\x67\xce\xcc\xee\xb3" "\xd6\x33\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x40\xb3\xf5\x1f\x9f\xf9\xf3\xa1\x2c\xcb\xf2\xff\x1b\x7f" "\xac\xc9\xb2\x4b\xf3\xbf\xaf\xca\x76\xe5\x5f\xce\x6f\xbf\xd8\x2b\x04\x00" "\x00\x00\xce\xd5\xdb\x8d\x3f\xff\xe1\xb2\x74\xc2\xae\x65\x5c\xa8\x69\x9b" "\x7f\xfb\xd0\x7f\x7c\x7f\x61\x61\x61\x21\xfb\xe2\x5b\x27\xdf\xf9\xcb\x85" "\x85\x74\xc6\xba\x2c\x1b\x59\x99\x65\x8d\xf3\xa2\x7f\xff\xe5\x2f\x16\x9a" "\xb7\x09\x9e\xce\xc6\x87\x86\x9b\xbe\x1e\x2e\xb9\xf9\x91\x92\xf3\x47\x4b" "\xce\x1f\x2b\x39\x7f\x45\xc9\xf9\x2b\x4b\xce\x1f\x2f\x39\x7f\xd1\x0e\x58" "\x64\x55\xf1\xfb\x98\xc6\x95\x6d\x6c\xfc\x75\x4d\xb1\x4b\xb3\x2b\xb2\xb1" "\xc6\x79\x1b\x3b\x5c\xea\xe9\xa1\x95\xc3\xc3\xf1\x77\x39\x0d\x43\x8d\xcb" "\x2c\x8c\xed\xcf\x0e\x66\x87\xb2\x99\x6c\x6a\xd1\x65\x86\x1a\xff\x65\xd9" "\xcb\xeb\xf3\xdb\xba\x27\x8b\xb7\x35\xdc\x74\x5b\x6b\xb3\x2c\x3b\xf5\xb3" "\x27\xf6\xc6\x35\x0c\x85\x7d\xbc\x31\x6b\xb9\xb1\x86\xe6\xc7\xee\xcd\xbb" "\xb2\x75\x6f\xfd\xec\x89\xbd\xdf\x99\x7b\xe3\xfd\x9d\x66\xe9\x6e\x58\xb4" "\xd2\x2c\xdb\xb4\x21\x5f\xe7\x33\x59\x76\xfa\xd7\x55\xd9\x50\xb6\x32\xed" "\x93\xb8\xce\xe1\xa6\x75\xae\xed\xb0\xce\x91\x96\x75\x0e\x35\x2e\x97\xff" "\xbd\x7d\x9d\xa7\x96\xb9\xce\x78\xbf\xc7\xc3\x3a\x5f\xed\xb2\xce\xb5\xe1" "\xb4\x47\xaf\xcd\xb2\x6c\x3e\x5b\x72\x9b\x76\x4f\x67\xc3\xd9\xea\xb6\x5b" "\x4d\xfb\x7b\xbc\x38\x22\xf2\xeb\xc8\x1f\xca\xf7\x64\xa3\x67\x74\x9c\xac" "\x5f\xc6\x71\x92\x5f\xe6\xf5\x6b\x5b\x8f\x93\xf6\x63\x32\xee\xff\xf5\x61" "\x9f\x8c\x2e\xb1\x86\xe6\x87\xe3\xcd\xa7\x56\x2c\xda\xef\x67\x7b\x9c\xe4" "\xf7\xba\x1f\x8e\xd5\xfc\xba\xef\xcb\x6f\x74\x7c\xbc\xf9\x57\xab\x2d\xc7" "\x6a\xbe\xcd\x13\xd7\x2d\x7d\x0c\x74\x7c\xec\x3a\x1c\x03\xe9\x58\x6e\x3a" "\x06\x36\x94\x1d\x03\xc3\x2b\x46\x1a\xc7\xc0\xf0\xe9\x35\x6f\x68\x39\x06" "\xa6\x17\x5d\x66\x38\x1b\x6a\xdc\xd6\xc9\xeb\xba\x1f\x03\x93\x73\x87\x8f" "\x4d\xce\x3e\xf6\xf8\xcd\x07\x0f\xef\x39\x30\x73\x60\xe6\xc8\xf4\xd4\xf6" "\xad\x5b\xb6\x6d\xdd\xb2\x6d\xdb\xe4\xfe\x83\x87\x66\xa6\x8a\x3f\xcf\x6c" "\x97\x0e\x90\xd5\xd9\x70\x3a\x06\x37\x84\xd7\x9a\x78\x0c\x7e\xb8\x6d\xdb" "\xe6\x43\x72\xe1\x9b\xe7\xef\x79\x30\xde\x27\xcf\x83\xfc\xbe\x7f\xf6\xfa" "\x7c\x41\x97\x0e\x67\x4b\x1c\xe3\xf9\x36\xcf\x6c\x3a\xf7\xe7\x41\xfa\xbe" "\xdf\xf4\x3c\x18\x6d\x7a\x1e\x74\x7c\x4d\xed\xf0\x3c\x18\x5d\xc6\xf3\x20" "\xdf\xe6\xd4\xa6\xe5\x7d\xcf\x1c\x6d\xfa\xbf\xd3\x1a\x7a\xf5\x5a\xb8\xa6" "\xe9\x18\xb8\x98\xdf\x0f\xf3\xdb\x7c\xf0\x86\xa5\x5f\x0b\xd7\x86\x75\x3d" "\x7b\xe3\x99\x7e\x3f\x1c\x59\x74\x0c\xc4\xbb\x35\x14\x9e\x7b\xf9\x29\xe9" "\xe7\xbd\xf1\xdb\xc2\x7e\x59\x7c\x5c\x5c\x9d\x9f\x71\xc9\x8a\xec\xc4\xec" "\xcc\xf1\x5b\x1e\xdd\x33\x37\x77\x7c\x3a\x0b\xe3\x82\xb8\xbc\xe9\xb1\x6a" "\x3f\x5e\x56\x37\xdd\xa7\x6c\xd1\xf1\x32\x7c\xc6\xc7\xcb\xae\xbf\xff\xd5" "\xf5\x57\x77\x38\x7d\x4d\xd8\x57\xe3\x37\x75\x7f\xac\xf2\x6d\xb6\x4e\x74" "\x7f\xac\x1a\xaf\xee\xad\xfb\x73\x45\x56\xec\xcf\x96\x53\x37\x67\x61\x9c" "\x67\x17\x7a\x7f\x76\xfa\x6e\x96\xef\xcf\x94\x25\xba\xec\xcf\x7c\x9b\x67" "\x6e\x3e\xf7\x9f\x05\x53\x2e\x69\x7a\xfd\x1b\x2b\x7b\xfd\x1b\x19\x1b\x2d" "\x5e\xff\x46\xd2\xde\x18\x6b\x79\xfd\x5b\xfc\xd0\x8c\x34\x56\x96\x65\xa7" "\x6e\x5e\xde\xeb\xdf\x58\xf8\xff\x42\xbf\xfe\x5d\xd1\x27\xaf\x7f\xf9\xbe" "\x7a\xf0\x96\xee\xc7\x40\xbe\xcd\xb3\x93\x67\x7a\x0c\x8c\x76\x7d\xfd\xbb" "\x36\xcc\xa1\xb0\x9e\x1b\x42\x62\x18\x6f\xca\xfd\xef\x34\xce\x9f\x2f\x0e" "\xd3\xa6\xc7\xb2\xf4\xb8\x19\x1d\x1d\x0b\xc7\xcd\x68\xbc\xc5\xd6\xe3\x66" "\xcb\xa2\xcb\xe4\xd7\x96\xdf\xf6\xa6\xa9\xb3\x3b\x6e\x36\x5d\xdb\xfa\x58" "\xb5\xfc\xdc\x52\xc1\xe3\x26\xdf\x57\x7f\x35\xd5\xfd\xb8\xc9\xb7\x79\x65" "\xfa\xdc\x5f\x3b\x56\xc5\xbf\x36\xbd\x76\xac\x28\x3b\x06\xc6\x46\x56\xe4" "\xeb\x1d\x4b\x07\x41\xf1\x7a\xb7\xb0\x2a\x1e\x03\xb7\x64\x7b\xb3\xa3\xd9" "\xa1\x6c\x5f\xba\x4c\xfe\x28\xe7\xb7\x35\xb1\x79\x79\xc7\xc0\x8a\xf0\xff" "\x85\x7e\xed\xb8\xaa\x4f\x8e\x81\x7c\x5f\xbd\xb0\xb9\xfb\x31\x90\x6f\xf3" "\xa3\x2d\xe7\xf7\x67\xa7\x4d\xe1\x94\xb4\x4d\xd3\xcf\x4e\xed\xbf\x5f\x58" "\x2a\xf3\x5f\x3d\x7a\xfa\xfa\xda\x77\xdb\xf9\xce\xfc\xf9\x3a\x3f\xf1\xe3" "\x4f\xa7\xd3\x3a\x65\x88\x7c\x9b\x37\xb6\x9e\x69\xce\xe8\xbe\x9f\x6e\x0a" "\xa7\x5c\xd2\x61\x3f\xb5\x3f\x7f\x96\x3a\xa6\xf7\x65\x17\x66\x3f\x5d\x15" "\xd6\x79\x68\x5b\xf7\xdf\x4d\xe5\xdb\x5c\xb1\x7d\x99\xc7\xd3\xae\x2c\xcb" "\x5e\x9b\x7e\xad\xf1\xfb\xae\xf0\xfb\xdd\xef\x9d\xf8\xf1\xf7\x5b\x7e\xef" "\xdb\xe9\x77\xca\xaf\x4d\xbf\x76\xef\xe4\xfd\x3f\x39\x93\xf5\x03\x00\x70" "\xf6\xde\x69\xfc\x39\xbf\xa2\xf8\x59\xb3\xe9\x5f\xac\x97\xf3\xef\xff\x00" "\x00\x00\xc0\x40\x88\xb9\x7f\x38\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9" "\x7f\x24\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x34\xcc\xa4\x26\xf9" "\xff\xe1\xdb\x76\xbc\xf8\xf6\x93\x59\x7a\x37\xc0\x85\x20\x9e\x1f\x77\xc3" "\x7d\x77\x14\xdb\xc5\x8e\xf7\x7c\xf8\x7a\xdd\xc2\x69\xf9\xe9\x1f\xfb\xf6" "\xd8\x8b\x5f\x7d\x72\x79\xb7\x3d\x9c\x65\xd9\xaf\xee\xfd\x40\xc7\xed\x1f" "\xbe\x23\xae\xab\x70\x2c\xae\xf3\x23\xad\xa7\x2f\x72\xd5\x35\xcb\xba\xfd" "\x87\x1e\x38\xbd\x5d\xf3\xfb\x27\x9c\xda\x51\x5c\x7f\xbc\x3f\xcb\x3d\x0c" "\x62\x57\xf9\xe5\xc9\xcd\x8d\xeb\x5d\xf7\xd8\x74\x63\xbe\x72\x6f\xd6\x98" "\xf7\xcf\x3f\xfb\x74\x71\xfd\xc5\xd7\x71\xfb\x93\x5b\x8a\xed\xff\x26\xbc" "\x69\xc9\xae\xfd\x43\x2d\x97\xdf\x14\xd6\xb3\x31\xcc\x75\xe1\x3d\x65\xee" "\xdb\x75\x7a\x3f\xe4\x33\x5e\xee\xc5\xb5\x1f\xfa\xd7\xcb\x3f\x77\xfa\xf6" "\xe2\xe5\x86\x36\xbc\xbb\x71\x37\x5f\xf8\xe3\xe2\x7a\xe3\x7b\x44\x3d\x7f" "\x79\xb1\x7d\xbc\xdf\x4b\xad\xff\x5f\xbe\xf6\xdd\x17\xf3\xed\x1f\xbd\xae" "\xf3\xfa\x9f\x1c\xee\xbc\xfe\x93\xe1\x7a\x5f\x0f\xf3\x97\x3b\x8b\xed\x9b" "\xf7\xf9\x57\x9b\xd6\xff\xa7\x61\xfd\xf1\xf6\xe2\xe5\x6e\xf9\xd6\x0f\x3b" "\xae\xff\xa5\xf7\x15\xdb\xbf\x14\x8e\x8b\x6f\x84\xd9\xbe\xfe\xbb\xfe\xe2" "\x83\x6f\x77\x7a\xbc\xe2\xed\xec\xba\xbd\xb8\x5c\xbc\xfd\xa9\xff\xdd\xda" "\xb8\x5c\xbc\xbe\x78\xfd\xed\xeb\x1f\x7f\x72\xba\x65\x7f\xb4\x5f\xff\x2b" "\x6f\x15\xd7\xb3\xf3\x91\x9f\x8f\x34\x6f\x1f\x4f\x8f\xb7\x13\x3d\x74\x7b" "\xeb\xf1\x3d\x14\x1e\xdf\x96\x1e\x79\x96\x65\xdf\xfd\xb3\xac\x65\x3f\x67" "\x1f\x2d\x2e\xf7\xcf\x6d\xeb\x8f\xd7\x77\xec\xf6\xce\xeb\xbf\xa9\x6d\x9d" "\xc7\x86\xae\x69\x5c\xfe\xf4\xfd\x59\xd3\x72\xbf\xbe\xfe\x77\x9b\x3b\xde" "\xdf\xb8\x9e\x5d\xff\xb8\xa6\xe5\xfe\x3c\x7f\x77\xd8\x7f\x6f\x4d\xfe\x28" "\xbf\xde\x93\xf7\x87\xe3\x31\x9c\xff\x7f\xaf\x16\xd7\xd7\xfe\x5e\xa6\x2f" "\xdd\xdd\xfa\x7a\x13\xb7\xff\xc6\x9a\xe2\x79\x1b\xaf\x6f\xb2\x6d\xfd\xcf" "\xb7\xad\x7f\xfe\x9a\x7c\xdf\x95\xaf\xff\x9e\xb7\x8a\xf5\xbf\x74\xe7\xca" "\x96\xf5\xef\xfa\x64\x38\x9e\xee\x29\x66\xd9\xfa\x0f\xfc\xed\x65\x2d\x97" "\xff\xe6\x77\x8a\xc7\xe3\xf8\x57\x26\x8e\x1c\x9d\x3d\x71\x70\x5f\xd3\x5e" "\x6d\x7e\x1e\xaf\x1c\x5f\xb5\xfa\x92\x4b\xdf\xf5\xee\xcb\xc2\x6b\x69\xfb" "\xd7\xbb\x8f\xce\x3d\x3c\x73\x7c\xdd\xd4\xba\xa9\x2c\x5b\x37\x80\x6f\x19" "\xd8\xeb\xf5\x7f\x2b\xcc\xff\x29\xc6\xfc\xf9\xbf\x85\xc2\x4f\x7e\x5e\x1c" "\x77\xcf\x7d\xaa\xf8\xbe\xf5\xe1\x5f\x14\x5f\x3f\x1f\x4e\x7f\x28\x3c\x9e" "\xf1\xfb\xe3\xd7\xff\x7a\xac\xe5\x78\x6d\x7f\xdc\xe7\xef\x2c\xe6\xb9\xae" "\xff\xc6\xb0\x8e\xe5\x7a\xdf\xd7\xfe\xeb\x9a\x65\x6d\x78\xf2\x0b\x2f\x9f" "\xf8\xa7\x3f\x79\xa3\xfd\xe7\x82\x78\x7f\x8e\xbd\x77\xbc\x71\xff\x5e\x58" "\x7f\x65\xe3\xbc\xa1\x57\x8a\xf3\xdb\x5f\xaf\xca\xfc\xe7\x7b\x5b\x9f\xd7" "\x3f\x1d\x9d\x6a\xcc\x1f\x84\xfd\xba\x10\xde\x99\x79\xc3\x95\xc5\xed\xb5" "\x5f\x7f\x7c\x6f\x92\xe7\x3e\x53\x3c\x7f\xe3\x4f\x72\xf1\xf2\x59\xdb\xfb" "\x89\xac\x19\x69\xbd\x1f\xe7\xba\xfe\x9f\x86\x9f\x63\x7e\x78\x55\xeb\xeb" "\x5f\x3c\x3e\x7e\xf0\x64\xdb\xbb\x39\xaf\xc9\x86\xf2\x25\xcc\x87\xd7\x87" "\x6c\xbe\x38\x3f\x6e\x15\xf7\xf7\x73\xa7\xae\xec\x78\x7b\xf1\x7d\x78\xb2" "\xf9\xf7\x9f\xc9\x32\x97\x34\xfb\xd8\xec\xe4\xa1\x83\x47\x4e\x3c\x3a\x39" "\x37\x33\x3b\x37\x39\xfb\xd8\xe3\xbb\x0f\x1f\x3d\x71\x64\x6e\x77\xe3\xbd" "\x4b\x77\x7f\xa9\xec\xf2\xa7\x9f\xdf\xab\x1b\xcf\xef\x7d\x33\xdb\xb7\x66" "\x8d\x67\xfb\xd1\x62\xf4\xd8\xc5\x5e\xff\xb1\x07\xf6\xee\xbb\x75\xea\xfa" "\x7d\x33\xfb\xf7\x9c\xd8\x3f\xf7\xc0\xb1\x99\xe3\x07\xf6\xce\xce\xee\x9d" "\xd9\x37\x7b\xfd\x9e\xfd\xfb\x67\xbe\x52\x76\xf9\x83\xfb\x76\x4e\x6f\xde" "\xb1\xe5\xd6\xcd\x13\x07\x0e\xee\xdb\x79\xdb\x8e\x1d\x5b\x76\x4c\x1c\x3c" "\x72\x34\x5f\x46\xb1\xa8\x12\xdb\xa7\xbe\x3c\x71\xe4\xf8\xee\xc6\x45\x66" "\x77\x6e\xdd\x31\xbd\x6d\xdb\xd6\xa9\x89\xc3\x47\xf7\xcd\xec\xbc\x75\x6a" "\x6a\xe2\x44\xd9\xe5\x1b\xdf\x9b\x26\xf2\x4b\x3f\x32\x71\x7c\xe6\xd0\x9e" "\xb9\x83\x87\x67\x26\x66\x0f\x3e\x3e\xb3\x73\x7a\xc7\xf6\xed\x9b\x4b\xdf" "\xfd\xf1\xf0\xb1\xfd\xb3\xeb\x26\x8f\x9f\x38\x32\x79\x62\x76\xe6\xf8\x64" "\x71\x5f\xd6\xcd\x35\x4e\xce\xbf\xf7\x95\x5d\x9e\x7a\x98\x3d\x1a\x5e\xef" "\xda\x0c\x85\x9f\xce\x3f\x7f\xd3\xf6\xf4\xfe\xb8\xb9\x6f\x3f\xb5\xe4\x55" "\x15\x9b\xb4\xfe\x78\x9a\xbd\x19\xde\x0b\x2a\x7e\x7f\x2b\xfb\x3a\xe6\xfe" "\xb1\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\xc3\x1b\xff\x9f\x3e" "\x43\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x65\x98\x89\xfc\x0f\x00\x00\x00" "\x95\x11\x73\x7f\x91\xfc\xc7\xd3\xc7\xbf\xd7\x25\xff\x9f\xaf\xfe\xff\x53" "\xfa\xff\x0d\xfa\xff\xfa\xff\x99\xfe\x7f\xa2\xff\xaf\xff\x9f\xe9\xff\xeb" "\xff\x97\xd0\xff\xd7\xff\x1f\xe4\xf5\xeb\xff\xeb\xff\x53\xae\xdf\xfa\xff" "\x21\xf7\x67\xab\xb2\xcc\xbf\xff\x03\x00\x00\x40\x45\xc5\xdc\xbf\x3a\xcc" "\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x92\x30\x13\xf9\x1f\x00\x00\x00" "\x2a\x23\xe6\xfe\x4b\xc3\x4c\x6a\x92\xff\x7d\xfe\xbf\xfe\xbf\xfe\x7f\xb7" "\xfe\x7f\xdc\x56\xff\x3f\xd3\xff\xef\x87\xfe\xff\xc6\xff\xd6\xff\x5f\x44" "\xff\x5f\xff\x3f\xd3\xff\x3f\x6b\x17\xbb\x3f\x3f\xe8\xeb\xef\xc3\xfe\xff" "\x2a\xfd\x7f\xfa\x4d\xbf\xf5\xff\x63\xee\x7f\x57\x98\x49\x4d\xf2\x3f\x00" "\x00\x00\xd4\x41\xcc\xfd\xef\x0e\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee" "\xbf\x2c\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x4d\x98\x49\x4d\xf2" "\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xcf\xff\xd7\xff\x1f\x98\xfe\xbf\xcf\xff\xef" "\x40\xff\x5f\xff\x3f\xd3\xff\x3f\x6b\x17\xbb\x3f\x3f\xe8\xeb\xef\xc3\xfe" "\xbf\xcf\xff\xa7\xef\xf4\x5b\xff\x3f\xe6\xfe\x5f\x0b\x33\xa9\x49\xfe\x07" "\x00\x00\x80\x3a\x88\xb9\xff\x3d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc" "\xfd\x97\x87\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x5f\x11\x66\x52\x93" "\xfc\x5f\xcf\xfe\xff\xeb\x59\x96\xe9\xff\x67\xfa\xff\xfa\xff\x6d\xeb\xd4" "\xff\xd7\xff\xef\x05\xfd\x7f\xfd\xff\x6e\xf4\xff\xf5\xff\x07\x79\xfd\xfa" "\xff\xfa\xff\x94\xeb\xb7\xfe\x7f\xcc\xfd\xef\x0d\x33\xa9\x49\xfe\x07\x00" "\x00\x80\x3a\x88\xb9\xff\xca\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe" "\xf7\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x5f\x15\x66\x52\x93\xfc" "\x5f\xcf\xfe\xbf\xcf\xff\xd7\xff\x2f\xe8\xff\xb7\xae\x53\xff\x5f\xff\xbf" "\x17\xf4\xff\xf5\xff\xbb\xd1\xff\xd7\xff\x1f\xe4\xf5\xeb\xff\xeb\xff\x53" "\xae\xdf\xfa\xff\x31\xf7\xbf\x3f\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20" "\xe6\xfe\xab\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x3f\x10\x66\x22" "\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x36\xcc\xa4\x26\xf9\x5f\xff\x5f\xff" "\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x97\x06\xab\xff\x3f\xbc\xe4\x39\xfa" "\xff\x05\xfd\xff\x56\xe7\xaf\xff\x3f\x7f\x7a\x01\xfa\xff\x03\xb3\x7e\xfd" "\x7f\xfd\x7f\xca\xf5\x5b\xff\x3f\xe6\xfe\x0f\x86\x99\xd4\x24\xff\x03\x00" "\x00\x40\x1d\xc4\xdc\xff\xa1\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe" "\x6b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xd7\x85\x99\xd4\x24\xff" "\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xf7\xd2\x60\xf5\xff\x97" "\xa6\xff\x5f\xd0\xff\x6f\xe5\xf3\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xae\xdf" "\xfa\xff\x31\xf7\xaf\x0f\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\x7f" "\x43\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xb5\x61\x26\xf2\x3f\x00" "\x00\x00\x54\x46\xcc\xfd\x1b\xc3\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff" "\xf5\xff\xf5\xff\xf5\xff\x7b\x49\xff\x5f\xff\xbf\x1b\xfd\x7f\xfd\xff\x41" "\x5e\xbf\xfe\xbf\xfe\x3f\xe5\xfa\xad\xff\x1f\x73\xff\x75\x61\x26\x35\xc9" "\xff\x00\x00\x00\x50\x07\x31\xf7\x5f\x1f\x66\x22\xff\x03\x00\x00\x40\x65" "\xc4\xdc\xff\xe1\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x4d\x61\x26" "\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\x03\xdc\xff\x1f\xd1\xff\xcf\xf4\xff" "\xfb\x9e\xfe\xbf\xfe\x7f\x37\xfa\xff\xfa\xff\x83\xbc\x7e\xfd\x7f\xfd\x7f" "\xca\xf5\x5b\xff\x3f\xe6\xfe\x1b\xc2\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e" "\x62\xee\xbf\x31\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xa6\x30\x13" "\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x89\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd" "\x7f\xfd\xff\x01\xee\xff\xfb\xfc\xff\x96\xf5\xeb\xff\xf7\x27\xfd\x7f\xfd" "\xff\x6e\xf4\xff\xf5\xff\x07\x79\xfd\xfa\xff\xfa\xff\x94\xeb\xb7\xfe\x7f" "\xcc\xfd\x37\x87\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\x7f\x4b\x98" "\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x64\x98\x89\xfc\x0f\x00\x00\x00" "\x95\x11\x73\xff\x54\x98\x49\x4d\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\xbf\xfe\x7f\x2f\xe9\xff\xeb\xff\x77\xa3\xff\xaf\xff\x3f\xc8\xeb\xd7" "\xff\xd7\xff\xa7\x5c\xbf\xf5\xff\x63\xee\x9f\x0e\x33\xa9\x49\xfe\x07\x00" "\x00\x80\x3a\x88\xb9\x7f\x73\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff" "\x96\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xad\x61\x26\x35\xc9\xff" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xbd\xa4\xff\xaf\xff\xdf" "\x8d\xfe\xbf\xfe\xff\x20\xaf\x5f\xff\x5f\xff\x9f\x56\xc3\x1d\x4e\xeb\xb7" "\xfe\x7f\xcc\xfd\xdb\xc2\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\xdf" "\x1e\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x6b\x98\x89\xfc\x0f\x00" "\x00\x00\x95\x11\x73\xff\x6d\x61\x26\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\xbd\xa4\xff\xaf\xff\xdf\x8d\xfe\xbf\xfe\xff\x20" "\xaf\x5f\xff\x5f\xff\x9f\x72\xfd\xd6\xff\x8f\xb9\x7f\x47\x98\x49\x4d\xf2" "\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x1f\x09\x33\x91\xff\x01\x00\x00\xa0\x32" "\x62\xee\xbf\x3d\xcc\x44\xfe\x07\x00\x00\x80\x81\xd2\xe9\x73\x08\xa3\x98" "\xfb\x3f\x1a\x66\x52\x93\xfc\xaf\xff\x5f\xf5\xfe\xff\xc2\x4a\xfd\x7f\xfd" "\x7f\xfd\xff\xee\xeb\xd7\xff\xef\x2d\xfd\x7f\xfd\xff\x6e\xf4\xff\xf5\xff" "\x07\x79\xfd\xfa\xff\xfa\xff\x94\xeb\xb7\xfe\x7f\xcc\xfd\x3b\xc3\x4c\x6a" "\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\xbf\x23\xcc\x44\xfe\x07\x00\x00\x80" "\xca\x88\xb9\xff\xce\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x5d\x61" "\x26\x35\xc9\xff\xfa\xff\x55\xef\xff\xfb\xfc\x7f\xfd\x7f\xfd\xff\xb2\xf5" "\xeb\xff\xf7\x96\xfe\xbf\xfe\x7f\x37\xfa\xff\x83\xd9\xff\x0f\x3f\xb6\xe8" "\xff\xf7\x51\xff\x3f\x3f\x86\xf4\xff\xe9\x47\xfd\xd6\xff\x8f\xb9\xff\xae" "\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x3f\x16\x66\x22\xff\x03" "\x00\x00\x40\x65\xc4\xdc\xff\xf1\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6" "\xfe\x4f\x84\x99\xd4\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb" "\xff\xf7\x92\xfe\x7f\xcf\xfa\xff\x8d\x97\x42\xfd\xff\x82\xfe\xff\xd9\xb9" "\xd8\xfd\xf9\x41\x5f\x7f\x3f\xf5\xff\x7d\xfe\x3f\xfd\xaa\xdf\xfa\xff\x31" "\xf7\xdf\x1d\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\x27\xc3\x4c" "\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x7f\x3d\xcc\x44\xfe\x07\x00\x00\x80" "\xca\x88\xb9\xff\x9e\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\xff\x5e\xd2\xff\xf7\xf9\xff\xdd\xe8\xff\xeb\xff\x0f\xf2\xfa" "\xf5\xff\xf5\xff\x29\xd7\x6f\xfd\xff\x98\xfb\x7f\x23\xcc\xa4\x26\xf9\x1f" "\x00\x00\x00\xea\x20\xe6\xfe\x7b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98" "\xfb\x3f\x15\x66\x22\xff\x03\x00\x00\xc0\x80\x59\xb1\xe4\x39\x31\xf7\xff" "\x66\x98\x49\x4d\xf2\xbf\xfe\xff\x85\xe9\xff\x0f\xa7\xeb\xd7\xff\xd7\xff" "\xd7\xff\xd7\xff\xd7\xff\x3f\x9f\xf4\xff\xf5\xff\x33\xfd\xff\xb3\x76\xb1" "\xfb\xf3\x83\xbe\x7e\xfd\x7f\xfd\x7f\xca\xf5\x5b\xff\x3f\xe6\xfe\xdf\x0a" "\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\xd3\x61\x26\xf2\x3f\x00" "\x00\x00\x54\x46\xcc\xfd\xbf\x1d\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc" "\x7f\x5f\x98\x49\x4d\xf2\xff\xf9\xee\xff\xb7\x5f\xbe\x9b\x3a\xf5\xff\x7d" "\xfe\xbf\xfe\x7f\xa6\xff\xaf\xff\xdf\xb4\x57\xf5\xff\xcf\x1f\xfd\x7f\xfd" "\xff\x4c\xff\xff\xac\x5d\xec\xfe\xfc\xa0\xaf\x5f\xff\x5f\xff\x9f\x72\xfd" "\xd6\xff\x8f\xb9\xff\x77\xc2\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee" "\xbf\x3f\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x33\x61\x26\xf2\x3f" "\x00\x00\x00\x54\x46\xcc\xfd\x9f\x0d\x33\xa9\x49\xfe\xf7\xf9\xff\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xbd\xa4\xff\xaf\xff\xdf\x8d\xfe\xbf\xfe" "\xff\x20\xaf\x5f\xff\x5f\xff\x9f\x72\xfd\xd6\xff\x8f\xb9\xff\x81\x30\x93" "\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x3f\x17\x66\x22\xff\x03\x00\x00" "\x40\x65\xc4\xdc\xff\xbb\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xbf" "\x17\x66\x52\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf" "\x4b\xfa\xff\x8b\xfb\xff\xf9\x6b\x98\xfe\x7f\x41\xff\x5f\xff\x7f\x90\xd7" "\xaf\xff\xaf\xff\x4f\xb9\x7e\xeb\xff\xc7\xdc\xff\xf9\x30\x93\x9a\xe4\x7f" "\x00\x00\x00\xa8\x83\x98\xfb\x7f\x3f\xcc\x44\xfe\x07\x00\x00\x80\xca\x88" "\xb9\xff\x0f\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x1f\x0c\x33\xa9" "\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\x25\xfd\x7f" "\x9f\xff\xdf\x8d\xfe\xbf\xfe\xff\x20\xaf\x5f\xff\x5f\xff\x9f\x72\xfd\xd6" "\xff\x8f\xb9\xff\x0b\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\xff" "\x61\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xee\x30\x13\xf9\x1f\x00" "\x00\x00\x2a\x23\xe6\xfe\x87\xc2\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff" "\xf5\xff\xf5\xff\xf5\xff\x7b\x49\xff\x5f\xff\xbf\x1b\xfd\x7f\xfd\xff\x41" "\x5e\xbf\xfe\xbf\xfe\x3f\xe5\xfa\xad\xff\x1f\x73\xff\x9e\x30\x93\x5d\xad" "\x37\x03\x00\x00\x00\x0c\xae\x98\xfb\xbf\x18\x66\x52\x93\x7f\xff\x07\x00" "\x00\x80\x3a\x88\xb9\x7f\x6f\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff" "\xbe\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff" "\x5e\xd2\xff\xd7\xff\xef\x46\xff\x5f\xff\x7f\x90\xd7\xaf\xff\xaf\xff\x4f" "\xb9\x7e\xeb\xff\xc7\xdc\x3f\x13\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10" "\x73\xff\xfe\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x03\x61\x26\xf2" "\x3f\x00\x00\x00\x54\x46\xcc\xfd\x0f\x87\x99\xd4\x24\xff\xeb\xff\xeb\xff" "\xeb\xff\xd7\xb6\xff\xff\xea\xf7\xda\xd6\xa9\xff\xaf\xff\xdf\x0b\xfa\xff" "\xfa\xff\xdd\xe8\xff\xeb\xff\x0f\xf2\xfa\xf5\xff\xf5\xff\x29\xd7\x6f\xfd" "\xff\x98\xfb\x0f\x86\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\xff\xa5" "\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x2f\x87\x99\xc8\xff\x00\x00" "\x00\x50\x19\x31\xf7\x1f\x0a\x33\xa9\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xaf" "\x6d\xff\xdf\xe7\xff\x07\xfa\xff\xbd\xa5\xff\xaf\xff\xdf\x8d\xfe\xbf\xfe" "\xff\x20\xaf\x5f\xff\x5f\xff\x9f\x72\xfd\xd6\xff\x8f\xb9\xff\x70\x98\x49" "\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x47\xc2\x4c\xe4\x7f\x00\x00\x00" "\xa8\x8c\x98\xfb\x8f\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x1f\x0b" "\x33\xa9\x49\xfe\xd7\xff\x3f\xb3\xfe\xff\xd0\x12\xdd\x40\xfd\xff\xce\xeb" "\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\x46\xff\x5f\xff\x7f" "\x90\xd7\xaf\xff\xaf\xff\x4f\xb9\x7e\xeb\xff\xc7\xdc\xff\x47\x61\x26\x35" "\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\x1f\x0f\x33\x91\xff\x01\x00\x00\xa0" "\x32\x62\xee\x9f\x0d\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x9f\x0b\x33" "\xa9\x49\xfe\xd7\xff\xf7\xf9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xbd\xa4" "\xff\xaf\xff\xdf\x8d\xfe\xbf\xfe\xff\x20\xaf\x5f\xff\x5f\xff\x9f\x72\xfd" "\xd6\xff\x8f\xb9\xff\x44\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd" "\x8f\x84\x99\xc8\xff\x00\x00\xff\xcf\xde\x7d\xe5\x0a\x72\x16\x7d\x1c\x3e" "\x9f\xad\xd1\x87\x84\xd8\x03\x5b\x60\x05\x2c\x81\x35\x20\xb1\x07\x32\xd8" "\x64\x93\xc1\xe4\x9c\x4c\x4e\x26\x83\xc9\x39\xe7\x9c\x73\x36\x98\x1c\x25" "\x10\x4c\x55\x59\x58\x73\xba\x27\xb5\x4f\x77\xd5\xf3\xdc\x94\x7c\xc6\x92" "\xdf\xd1\xf8\xe6\xaf\xd1\x4f\x0d\x00\x6d\xe4\xee\xbf\x6f\xdc\x62\xff\x03" "\x00\x00\x40\x1b\xb9\xfb\xef\x17\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f" "\xff\xaf\xff\xd7\xff\x6f\x49\xff\xaf\xff\x5f\xa2\xff\xd7\xff\x1f\xf9\xfd" "\xfa\x7f\xfd\x3f\xeb\xf6\xd6\xff\xe7\xee\xbf\x7f\xdc\x32\x64\xff\x03\x00" "\x00\xc0\x04\xb9\xfb\x1f\x10\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x07" "\xc6\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x41\x71\xcb\x90\xfd\xaf\xff" "\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x96\xf4\xff\xfa\xff\x25\xfa\x7f" "\xfd\xff\x91\xdf\xaf\xff\xd7\xff\xb3\x6e\x6f\xfd\x7f\xee\xfe\x07\xc7\x2d" "\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff\x21\x71\x8b\xfd\x0f\x00\x00\x00" "\x6d\xe4\xee\x7f\x68\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\xaf\x8b\x5b" "\x86\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xb7\xa4\xff\xd7" "\xff\x2f\xd1\xff\xeb\xff\x8f\xfc\x7e\xfd\xbf\xfe\x9f\x75\x7b\xeb\xff\x73" "\xf7\x5f\x1f\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41\xee\xfe\x87\xc5\x2d\xf6" "\x3f\x00\x00\x00\xb4\x91\xbb\xff\xe1\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4" "\xee\x7f\x44\xdc\x32\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xbf\x25\xfd\xbf\xfe\x7f\x89\xfe\x5f\xff\x7f\xe4\xf7\xeb\xff\xf5\xff\xac" "\xdb\x5b\xff\x9f\xbb\xff\x91\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee" "\x7f\x54\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\x1f\x1d\xb7\xd8\xff\x00" "\x00\x00\xd0\x46\xee\xfe\xc7\xc4\x2d\x43\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\xf5\xff\x5b\xd2\xff\xeb\xff\x97\xe8\xff\xf5\xff\x47\x7e\xbf" "\xfe\x5f\xff\xcf\xba\xcd\xfb\xff\x7b\xdd\xf0\xdf\x7b\xb1\xfd\x7f\xee\xfe" "\x1b\xe2\x96\x21\xfb\x1f\x00\x00\x00\x26\xc8\xdd\xff\xd8\xb8\xc5\xfe\x07" "\x00\x00\x80\x36\x72\xf7\x3f\x2e\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd" "\x8f\x8f\x5b\x86\xec\x7f\xfd\xbf\xfe\xff\xf6\xfe\xff\x5f\xff\xa7\xff\xd7" "\xff\xeb\xff\x6f\xff\xb9\xfe\xff\xea\xd0\xff\xeb\xff\x97\xe8\xff\xf5\xff" "\x47\x7e\xbf\xfe\x5f\xff\xcf\xba\xcd\xfb\xff\x95\xde\xff\x8e\xff\x9c\xbb" "\xff\x09\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee\x7f\x62\xdc\x62\xff" "\x03\x00\x00\x40\x1b\xb9\xfb\x9f\x14\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee" "\xfe\x27\xc7\x2d\x43\xf6\xbf\xfe\x5f\xff\xef\xfb\xff\xfa\x7f\xfd\xbf\xfe" "\x7f\x4b\xfa\x7f\xfd\xff\x12\xfd\xbf\xfe\xff\xc8\xef\x5f\xea\xff\xef\x79" "\x11\xef\xd7\xff\x33\xc1\xde\xfa\xff\xdc\xfd\x4f\x89\x5b\x86\xec\x7f\x00" "\x00\x00\x98\x20\x77\xff\x53\xe3\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\x7f" "\x63\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\x9f\x16\xb7\x0c\xd9\xff\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\xff\xbf\xfd\xff\x35\x23\xfb\xff\xff\xfc\x4c\xff" "\xbf\x0d\xfd\xbf\xfe\x7f\x89\xfe\x5f\xff\x7f\xe4\xf7\xfb\xfe\xbf\xfe\x9f" "\x75\x7b\xeb\xff\x73\xf7\x3f\x3d\x6e\x19\xb2\xff\x01\x00\x00\x60\x82\xdc" "\xfd\xcf\x88\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\x33\xe3\x16\xfb\x1f" "\x00\x00\x00\xda\xc8\xdd\xff\xac\xb8\x65\xc8\xfe\xd7\xff\xeb\xff\xf5\xff" "\xfa\xff\x2b\xfa\xfe\xff\xb5\x3d\xfa\x7f\xdf\xff\xdf\x8e\xfe\x5f\xff\xbf" "\x44\xff\xaf\xff\x3f\xf2\xfb\xf5\xff\xfa\x7f\xd6\xed\xad\xff\xcf\xdd\xff" "\xec\xb8\x65\xc8\xfe\x07\x00\x00\x80\x09\x72\xf7\x3f\x27\x6e\xb1\xff\x01" "\x00\x00\xa0\x8d\xdc\xfd\xcf\x8d\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff" "\xf3\xe2\x96\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xaf\xa8\xff\x6f\xf2" "\xfd\x7f\xfd\xff\x76\xf4\xff\xfa\xff\x25\x17\xdb\xff\x9f\xe8\xff\xeb\xf7" "\xa2\xff\xdf\xcf\xfb\xf5\xff\xfa\x7f\xd6\xed\xad\xff\xcf\xdd\xff\xfc\xb8" "\x65\xc8\xfe\x07\x00\x00\x80\x09\x72\xf7\xbf\x20\x6e\xb1\xff\x01\x00\x00" "\xa0\x8d\xdc\xfd\x2f\x8c\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\x8b\xe2" "\x96\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x2d\xe9\xff" "\xf5\xff\x4b\x7c\xff\x5f\xff\x7f\xe4\xf7\xeb\xff\xf5\xff\xac\xdb\x5b\xff" "\x9f\xbb\xff\xc5\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee\x7f\x49\xdc" "\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\x5f\x1a\xb7\xd8\xff\x00\x00\x00\xd0" "\x46\xee\xfe\x97\xc5\x2d\x43\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\x5b\xd2\xff\xeb\xff\x97\xe8\xff\x2f\xdc\xff\xdf\xe5\x94\xff\x9e" "\xfe\x7f\x5f\xef\xd7\xff\xeb\xff\x59\xb7\xb7\xfe\x3f\x77\xff\x4d\x71\xcb" "\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee\x7f\x79\xdc\x62\xff\x03\x00\x00\x40" "\x1b\xb9\xfb\x5f\x11\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x57\xc6\x2d" "\x43\xf6\xff\x69\xfd\xff\x6d\x77\x3d\xff\xeb\xfa\xff\x8b\xa3\xff\xbf\xf0" "\xfb\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x5f\xa2\xff\xf7\xfd\xff" "\x23\xbf\x5f\xff\xaf\xff\x67\xdd\xde\xfa\xff\xdc\xfd\xaf\x8a\x5b\x86\xec" "\x7f\x00\x00\x00\x98\x20\x77\xff\xab\xe3\x16\xfb\x1f\x00\x00\x00\xda\xc8" "\xdd\xff\x9a\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\xbf\x36\x6e\x19\xb2" "\xff\xaf\xfe\xf7\xff\xef\xae\xff\xd7\xff\xeb\xff\xe3\xea\xff\xf5\xff\xfa" "\x7f\xfd\xbf\xfe\x7f\x99\xfe\x5f\xff\x7f\xe4\xf7\xeb\xff\xf5\xff\xac\xdb" "\x5b\xff\x9f\xbb\xff\x75\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee\x7f" "\x7d\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\xdf\x10\xb7\xd8\xff\x00\x00" "\x00\xd0\x46\xee\xfe\x37\xc6\x2d\x43\xf6\xff\xd5\xef\xff\x7d\xff\x5f\xff" "\x7f\x89\xfd\xff\x35\xfa\xff\xa4\xff\x8f\x3f\x57\xfd\xbf\xfe\xff\x12\xe8" "\xff\xf5\xff\x27\xfa\xff\xcb\x76\xd6\xfd\xfc\xd1\xdf\xaf\xff\xd7\xff\xb3" "\x6e\x6f\xfd\x7f\xee\xfe\x9b\xe3\x96\x21\xfb\x1f\x00\x00\x00\x26\xc8\xdd" "\xff\xa6\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\xbf\x39\x6e\xb1\xff\x01" "\x00\x00\xa0\x8d\xdc\xfd\x6f\x89\x5b\x86\xec\x7f\xfd\xbf\xfe\xff\xcc\xfb" "\x7f\xdf\xff\x2f\xfa\xff\xf8\x73\xd5\xff\xeb\xff\x2f\x81\xfe\x5f\xff\x7f" "\xa2\xff\xbf\x6c\x67\xdd\xcf\x1f\xfd\xfd\xfa\x7f\xfd\x3f\xeb\xf6\xd6\xff" "\xe7\xee\x7f\x6b\xdc\x32\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\xdf\x16\xb7" "\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\xb7\xc7\x2d\xf6\x3f\x00\x00\x00\xb4" "\x91\xbb\xff\x1d\x71\xcb\x90\xfd\xaf\xff\xd7\xff\xeb\xff\x77\xdf\xff\xdf" "\x7c\xc7\xff\xdf\xf4\xff\xfa\xff\x23\xd1\xff\xeb\xff\x97\xe8\xff\xf5\xff" "\x47\x7e\xff\x7e\xfa\xff\xf8\xc1\x75\xfa\x7f\xf6\x67\x6f\xfd\x7f\xee\xfe" "\x77\xc6\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff\x5d\x71\x8b\xfd\x0f" "\x00\x00\x00\x6d\xe4\xee\xbf\x25\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd" "\xef\x8e\x5b\x86\xec\x7f\xfd\xff\xd1\xfb\xff\x7b\xdf\x1a\x2f\xd0\xff\xf7" "\xed\xff\x7d\xff\x3f\xae\xfe\x5f\xff\x7f\x21\xfa\x7f\xfd\xff\x89\xfe\xff" "\xb2\x9d\x75\x3f\x7f\xf4\xf7\xef\xa7\xff\xf7\xfd\x7f\xf6\x6b\x6f\xfd\x7f" "\xee\xfe\xf7\xc4\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff\xbd\x71\x8b" "\xfd\x0f\x00\x00\x00\x6d\xe4\xee\x7f\x5f\xdc\x62\xff\x03\x00\x00\x40\x1b" "\xb9\xfb\xdf\x1f\xb7\x0c\xd9\xff\xfa\xff\xa3\xf7\xff\xbe\xff\xaf\xff\xd7" "\xff\xeb\xff\xf7\x4d\xff\xaf\xff\x5f\xa2\xff\xd7\xff\x1f\xf9\xfd\xfa\x7f" "\xfd\x3f\xeb\xf6\xd6\xff\xe7\xee\xff\x40\xdc\x32\x64\xff\x03\x00\x00\xc0" "\x04\xb9\xfb\x3f\x18\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x0f\xc5\x2d" "\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xc3\x71\xcb\x90\xfd\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\x57\xdc\xff\x5f\xaf\xff\x3f\xd1\xff\x9f\x4a\xff\xaf\xff" "\x5f\xa2\xff\xd7\xff\x1f\xf9\xfd\xfa\x7f\xfd\x3f\xeb\xf6\xd6\xff\xe7\xee" "\xff\x48\xdc\x32\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\x3f\x1a\xb7\xd8\xff" "\x00\x00\x00\xd0\x46\xee\xfe\x8f\xc5\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb" "\xff\xe3\x71\xc3\x3d\xee\x76\x76\x4f\xba\xba\xce\x9d\xf2\xf3\xe8\xcd\xf5" "\xff\xfa\x7f\xfd\xbf\xfe\xdf\xf7\xff\xf5\xff\x5b\xd2\xff\xeb\xff\x97\xe8" "\xff\xf5\xff\x47\x7e\xbf\xfe\x5f\xff\xcf\xba\xbd\xf5\xff\xb9\xfb\x3f\x11" "\xb7\xf8\xfb\x7f\x00\x00\x00\x68\x23\x77\xff\x27\xe3\x16\xfb\x1f\x00\x00" "\x00\xda\xc8\xdd\xff\xa9\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\x7f\x3a" "\x6e\x19\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\x92\xfe" "\x5f\xff\xbf\x44\xff\xaf\xff\x3f\xf2\xfb\xf5\xff\xfa\x7f\xd6\xed\xad\xff" "\xcf\xdd\xff\x99\xb8\x65\xc8\xfe\x07\x00\x00\x80\x09\x72\xf7\x7f\x36\x6e" "\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\x9f\x8b\x5b\xec\x7f\x00\x00\x00\x68" "\x23\x77\xff\xe7\xe3\x96\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff" "\xfa\xff\x2d\xe9\xff\xf5\xff\x4b\xf4\xff\xfa\xff\x23\xbf\x5f\xff\xaf\xff" "\x67\xdd\xde\xfa\xff\xdc\xfd\x5f\x88\x5b\x86\xec\x7f\x00\x00\x00\x98\x20" "\x77\xff\x17\xe3\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xa5\xb8\xc5\xfe" "\x07\x00\x00\x80\x36\x72\xf7\x7f\x39\x6e\x19\xb2\xff\xf5\xff\xfa\x7f\xfd" "\xbf\xfe\x5f\xff\xaf\xff\xdf\x92\xfe\x5f\xff\xbf\x44\xff\xaf\xff\x3f\xf2" "\xfb\xf5\xff\xfa\x7f\xd6\xed\xad\xff\xcf\xdd\xff\x95\xb8\x65\xc8\xfe\x07" "\x00\x00\x80\x09\x72\xf7\x7f\x35\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd" "\x5f\x8b\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\xd7\xe3\x96\x21\xfb\xbf" "\x73\xff\xbf\xf4\xaf\xe9\xff\xcf\xd3\xff\xeb\xff\x4f\xf4\xff\xfa\xff\x8d" "\xe9\xff\xf5\xff\x4b\xf4\xff\xfa\xff\x23\xbf\x5f\xff\xaf\xff\x67\xdd\xde" "\xfa\xff\xdc\xfd\xdf\x88\x5b\x86\xec\x7f\x00\x00\x00\x98\x20\x77\xff\x37" "\xe3\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xad\xb8\xc5\xfe\x07\x00\x00" "\x80\x36\x72\xf7\x7f\x3b\x6e\x19\xb2\xff\x3b\xf7\xff\x4b\xf4\xff\xe7\xe9" "\xff\xf5\xff\x27\xfa\x7f\xfd\xff\xc6\xf4\xff\xfa\xff\x25\xfa\x7f\xfd\xff" "\x91\xdf\xaf\xff\xd7\xff\xb3\xee\x8c\xfa\xff\x73\x27\xa7\xf4\xff\xb9\xfb" "\xbf\x13\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41\xee\xfe\xef\xc6\x2d\xf6\x3f" "\x00\x00\x00\xb4\x91\xbb\xff\x7b\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee" "\xff\x7e\xdc\xd2\x67\xff\xdf\xe7\x96\x85\x5f\xd4\xff\xeb\xff\xf5\xff\xfa" "\x7f\xfd\xbf\xfe\x7f\x4b\xfa\x7f\xfd\xff\x12\xfd\xbf\xfe\xff\xc8\xef\xd7" "\xff\xeb\xff\x59\xb7\xb7\xef\xff\xe7\xee\xff\x41\xdc\xd2\x67\xff\x03\x00" "\x00\xc0\x78\xb9\xfb\x7f\x18\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x1f" "\xc5\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xc7\x71\xcb\x90\xfd\xaf\xff" "\xd7\xff\xeb\xff\x47\xf5\xff\xd7\x9e\xe8\xff\xf5\xff\x77\x32\xfd\xbf\xfe" "\x7f\x89\xfe\x5f\xff\x7f\xe4\xf7\xeb\xff\xf5\xff\xac\xdb\x5b\xff\x9f\xbb" "\xff\x27\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee\xff\x69\xdc\x62\xff" "\x03\x00\x00\x40\x1b\xb9\xfb\x7f\x16\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee" "\xfe\x9f\xc7\x2d\x43\xf6\xbf\xfe\x5f\xff\xaf\xff\x1f\xd5\xff\xfb\xfe\xbf" "\xfe\xff\x4e\xa7\xff\xd7\xff\x2f\xd1\xff\xeb\xff\x8f\xfc\x7e\xfd\xbf\xfe" "\x9f\x75\x7b\xeb\xff\x73\xf7\xff\x22\x6e\x19\xb2\xff\x01\x00\x00\x60\x82" "\xdc\xfd\xbf\x8c\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\xaf\xe2\x16\xfb" "\x1f\x00\x00\x00\xda\xc8\xdd\xff\xeb\xb8\x65\xc8\xfe\xd7\xff\xeb\xff\xf5" "\xff\xfa\x7f\xfd\xbf\xfe\x7f\x4b\xfa\x7f\xfd\xff\x12\xfd\xbf\xfe\xff\xc8" "\xef\xd7\xff\xeb\xff\x59\xb7\xb7\xfe\x3f\x77\xff\xad\x71\xcb\x90\xfd\x0f" "\x00\x00\x00\x13\xe4\xee\xff\x4d\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb" "\x7f\x1b\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\xdb\xe2\x96\x21\xfb\x5f" "\xff\xaf\xff\x6f\xd9\xff\xff\xbf\xfe\x5f\xff\xaf\xff\xdf\x0b\xfd\xbf\xfe" "\x7f\x89\xfe\x5f\xff\x7f\xe4\xf7\xeb\xff\xf5\xff\xac\xdb\x5b\xff\x9f\xbb" "\xff\x77\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee\xff\x7d\xdc\x62\xff" "\x03\x00\x00\x40\x1b\xb9\xfb\xff\x10\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee" "\xfe\x3f\xc6\x2d\x43\xf6\xbf\xfe\x5f\xff\x7f\xe9\xfd\xff\xb9\xfa\x7d\xef" "\xb6\xff\xf7\xfd\x7f\xfd\xbf\xfe\x7f\x37\xf4\xff\xfa\xff\x25\xd3\xfb\xff" "\x1b\x6f\x3a\xff\x63\xfd\xff\x31\xdf\xaf\xff\xd7\xff\xb3\x6e\x6f\xfd\x7f" "\xee\xfe\x3f\xc5\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff\xcf\x71\x8b" "\xfd\x0f\x00\x00\x00\x6d\xe4\xee\xff\x4b\xdc\x62\xff\x03\x00\x00\x40\x1b" "\xb9\xfb\xff\x1a\xb7\x0c\xd9\xff\xfa\x7f\xfd\x7f\xcb\xef\xff\xeb\xff\xf5" "\xff\xfa\xff\xdd\xd0\xff\xeb\xff\x97\x4c\xef\xff\x7d\xff\xff\xd8\xef\xd7" "\xff\xeb\xff\x59\xb7\xb7\xfe\x3f\x77\xff\xdf\xe2\x96\x21\xfb\x1f\x00\x00" "\x00\x26\xc8\xdd\xff\xf7\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\xff\x23" "\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\xff\x8c\x5b\x86\xec\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xb7\xa4\xff\xd7\xff\x2f\xd1\xff\xeb" "\xff\x8f\xfc\x7e\xfd\xbf\xfe\x9f\x75\x7b\xeb\xff\x73\xf7\xff\x3b\x00\x00" "\xff\xff\x25\xd1\x3c\xeb", 24234); syz_mount_image( /*fs=*/0x20000400, /*dir=*/0x200000c0, /*flags=MS_POSIXACL|MS_REC|MS_SILENT|MS_NOSUID|MS_NODIRATIME*/ 0x1c802, /*opts=*/0x20000ec0, /*chdir=*/1, /*size=*/0x5ea7, /*img=*/0x200085c0); memcpy((void*)0x20000240, ".\000", 2); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000240ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[0] = res; *(uint32_t*)0x20000080 = 0x4100; *(uint32_t*)0x20000084 = 0; memcpy((void*)0x20000088, "\000\000\021\021\"\"33", 8); memset((void*)0x20000090, 0, 24); memset((void*)0x200000ac, 0, 20); syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0xc0185879, /*arg=*/0x20000080ul); } 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; loop(); return 0; }