// https://syzkaller.appspot.com/bug?id=857976e0a2e819366bc548bb8d19d9af217c19dd // 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 #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FUSE_MIN_READ_BUFFER 8192 enum fuse_opcode { FUSE_LOOKUP = 1, FUSE_FORGET = 2, FUSE_GETATTR = 3, FUSE_SETATTR = 4, FUSE_READLINK = 5, FUSE_SYMLINK = 6, FUSE_MKNOD = 8, FUSE_MKDIR = 9, FUSE_UNLINK = 10, FUSE_RMDIR = 11, FUSE_RENAME = 12, FUSE_LINK = 13, FUSE_OPEN = 14, FUSE_READ = 15, FUSE_WRITE = 16, FUSE_STATFS = 17, FUSE_RELEASE = 18, FUSE_FSYNC = 20, FUSE_SETXATTR = 21, FUSE_GETXATTR = 22, FUSE_LISTXATTR = 23, FUSE_REMOVEXATTR = 24, FUSE_FLUSH = 25, FUSE_INIT = 26, FUSE_OPENDIR = 27, FUSE_READDIR = 28, FUSE_RELEASEDIR = 29, FUSE_FSYNCDIR = 30, FUSE_GETLK = 31, FUSE_SETLK = 32, FUSE_SETLKW = 33, FUSE_ACCESS = 34, FUSE_CREATE = 35, FUSE_INTERRUPT = 36, FUSE_BMAP = 37, FUSE_DESTROY = 38, FUSE_IOCTL = 39, FUSE_POLL = 40, FUSE_NOTIFY_REPLY = 41, FUSE_BATCH_FORGET = 42, FUSE_FALLOCATE = 43, FUSE_READDIRPLUS = 44, FUSE_RENAME2 = 45, FUSE_LSEEK = 46, FUSE_COPY_FILE_RANGE = 47, FUSE_SETUPMAPPING = 48, FUSE_REMOVEMAPPING = 49, CUSE_INIT = 4096, CUSE_INIT_BSWAP_RESERVED = 1048576, FUSE_INIT_BSWAP_RESERVED = 436207616, }; struct fuse_in_header { uint32_t len; uint32_t opcode; uint64_t unique; uint64_t nodeid; uint32_t uid; uint32_t gid; uint32_t pid; uint32_t padding; }; struct fuse_out_header { uint32_t len; uint32_t error; uint64_t unique; }; struct syz_fuse_req_out { struct fuse_out_header* init; struct fuse_out_header* lseek; struct fuse_out_header* bmap; struct fuse_out_header* poll; struct fuse_out_header* getxattr; struct fuse_out_header* lk; struct fuse_out_header* statfs; struct fuse_out_header* write; struct fuse_out_header* read; struct fuse_out_header* open; struct fuse_out_header* attr; struct fuse_out_header* entry; struct fuse_out_header* dirent; struct fuse_out_header* direntplus; struct fuse_out_header* create_open; struct fuse_out_header* ioctl; }; static int fuse_send_response(int fd, const struct fuse_in_header* in_hdr, struct fuse_out_header* out_hdr) { if (!out_hdr) { return -1; } out_hdr->unique = in_hdr->unique; if (write(fd, out_hdr, out_hdr->len) == -1) { return -1; } return 0; } static volatile long syz_fuse_handle_req(volatile long a0, volatile long a1, volatile long a2, volatile long a3) { struct syz_fuse_req_out* req_out = (struct syz_fuse_req_out*)a3; struct fuse_out_header* out_hdr = NULL; char* buf = (char*)a1; int buf_len = (int)a2; int fd = (int)a0; if (!req_out) { return -1; } if (buf_len < FUSE_MIN_READ_BUFFER) { return -1; } int ret = read(fd, buf, buf_len); if (ret == -1) { return -1; } if ((size_t)ret < sizeof(struct fuse_in_header)) { return -1; } const struct fuse_in_header* in_hdr = (const struct fuse_in_header*)buf; if (in_hdr->len > (uint32_t)ret) { return -1; } switch (in_hdr->opcode) { case FUSE_GETATTR: case FUSE_SETATTR: out_hdr = req_out->attr; break; case FUSE_LOOKUP: case FUSE_SYMLINK: case FUSE_LINK: case FUSE_MKNOD: case FUSE_MKDIR: out_hdr = req_out->entry; break; case FUSE_OPEN: case FUSE_OPENDIR: out_hdr = req_out->open; break; case FUSE_STATFS: out_hdr = req_out->statfs; break; case FUSE_RMDIR: case FUSE_RENAME: case FUSE_RENAME2: case FUSE_FALLOCATE: case FUSE_SETXATTR: case FUSE_REMOVEXATTR: case FUSE_FSYNCDIR: case FUSE_FSYNC: case FUSE_SETLKW: case FUSE_SETLK: case FUSE_ACCESS: case FUSE_FLUSH: case FUSE_RELEASE: case FUSE_RELEASEDIR: case FUSE_UNLINK: case FUSE_DESTROY: out_hdr = req_out->init; if (!out_hdr) { return -1; } out_hdr->len = sizeof(struct fuse_out_header); break; case FUSE_READ: out_hdr = req_out->read; break; case FUSE_READDIR: out_hdr = req_out->dirent; break; case FUSE_READDIRPLUS: out_hdr = req_out->direntplus; break; case FUSE_INIT: out_hdr = req_out->init; break; case FUSE_LSEEK: out_hdr = req_out->lseek; break; case FUSE_GETLK: out_hdr = req_out->lk; break; case FUSE_BMAP: out_hdr = req_out->bmap; break; case FUSE_POLL: out_hdr = req_out->poll; break; case FUSE_GETXATTR: case FUSE_LISTXATTR: out_hdr = req_out->getxattr; break; case FUSE_WRITE: case FUSE_COPY_FILE_RANGE: out_hdr = req_out->write; break; case FUSE_FORGET: case FUSE_BATCH_FORGET: return 0; case FUSE_CREATE: out_hdr = req_out->create_open; break; case FUSE_IOCTL: out_hdr = req_out->ioctl; break; default: return -1; } return fuse_send_response(fd, in_hdr, out_hdr); } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void loop(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 7; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } uint64_t r[2] = {0xffffffffffffffff, 0x0}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: NONFAILING(memcpy((void*)0x20000140, "./file0\000", 8)); NONFAILING(syz_mount_image(/*fs=*/0, /*dir=*/0x20000140, /*flags=MS_LAZYTIME*/ 0x2000000, /*opts=*/0, /*chdir=*/0, /*size=*/0, /*img=*/0x20000000)); break; case 1: NONFAILING(memcpy((void*)0x20000040, "/dev/fuse\000", 10)); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000040ul, /*flags=*/0x42, /*mode=*/0); if (res != -1) r[0] = res; break; case 2: NONFAILING(memcpy((void*)0x20000000, "./file0\000", 8)); NONFAILING(memcpy((void*)0x20002100, "fuse\000", 5)); NONFAILING(memcpy((void*)0x20000080, "fd=", 3)); NONFAILING(sprintf((char*)0x20000083, "%023llo", (long long)r[0])); NONFAILING(memcpy((void*)0x2000009a, ",rootmode=0000000000000000040000,user_id=", 41)); NONFAILING(sprintf((char*)0x200000c3, "%020llu", (long long)0)); NONFAILING(memcpy((void*)0x200000d7, ",group_id=", 10)); NONFAILING(sprintf((char*)0x200000e1, "%020llu", (long long)0)); syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x20000000ul, /*type=*/0x20002100ul, /*flags=*/0ul, /*opts=*/0x20000080ul); break; case 3: res = syscall(__NR_read, /*fd=*/r[0], /*buf=*/0x20008180ul, /*len=*/0x2020ul); if (res != -1) NONFAILING(r[1] = *(uint64_t*)0x20008188); break; case 4: NONFAILING(*(uint32_t*)0x20000100 = 0x50); NONFAILING(*(uint32_t*)0x20000104 = 0); NONFAILING(*(uint64_t*)0x20000108 = r[1]); NONFAILING(*(uint32_t*)0x20000110 = 7); NONFAILING(*(uint32_t*)0x20000114 = 0x28); NONFAILING(*(uint32_t*)0x20000118 = 0); NONFAILING(*(uint32_t*)0x2000011c = 0); NONFAILING(*(uint16_t*)0x20000120 = 0); NONFAILING(*(uint16_t*)0x20000122 = 0); NONFAILING(*(uint32_t*)0x20000124 = 0); NONFAILING(*(uint32_t*)0x20000128 = 0); NONFAILING(*(uint16_t*)0x2000012c = 0); NONFAILING(*(uint16_t*)0x2000012e = 0); NONFAILING(memset((void*)0x20000130, 0, 32)); syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x20000100ul, /*len=*/0x50ul); break; case 5: NONFAILING(memcpy( (void*)0x2000c280, "\x89\x7c\x65\x00\xff\x30\x35\x46\x5c\x7a\xcb\x4e\x06\x98\x0b\x05\x68" "\x7c\x14\x80\xc7\xaa\xfe\x63\x1c\x05\x43\xdb\x2b\xf0\xd6\xf5\x39\x50" "\x6e\x87\x82\xda\x06\xc1\xca\x01\x87\x74\xd7\x2e\x9e\x5a\x34\x18\xab" "\x66\xee\x78\xda\xd6\x84\x57\xb1\x7e\xc9\xd4\x7b\xf7\xd8\x27\x2d\x60" "\x7c\x1c\x0a\x4b\xd9\x06\xf0\xce\xe7\xf8\x45\x18\x28\xd2\x45\x85\x96" "\xbd\xd6\xa4\x59\xba\x18\xeb\xaf\x61\xb3\x8f\x5d\x66\xc2\x7f\xa8\xa0" "\x24\xad\x78\x32\xa8\x5e\x58\x68\x9a\x4c\x25\x4c\x94\xcb\xcf\x72\x08" "\xfc\xe6\xe6\x1d\x95\x66\x45\x97\x89\xd1\x5a\x6f\x91\xdd\x7d\xb7\xc5" "\x4c\xc3\xa9\x4d\xa9\x56\xfb\x29\x0a\x8a\x15\xf8\x49\x27\x0b\xc4\x59" "\xd9\xd9\xf4\x78\x01\xbe\x86\xdd\x5c\x9d\x18\x38\x20\x81\xa9\x93\xb7" "\xbf\xde\x5c\x28\xad\xca\x4c\x71\x32\xfd\x6b\xe7\x43\xb0\x76\x03\x3b" "\x58\x59\x89\x17\x03\xeb\x65\xfa\x25\x6d\x6f\x47\x45\x0b\x6e\xda\xcb" "\xd0\x5a\x9b\xd8\xb3\x72\xe9\x0c\xfc\x30\xf3\x28\x26\x56\x6d\xac\x6c" "\x48\xe6\xef\x00\x18\x81\xcb\xc3\x04\x82\xf9\xec\x46\x9e\x47\x6a\x10" "\x1d\xa4\x96\xb8\xc0\x78\x5e\xaf\x87\x5d\x36\x08\xb0\xc4\x9e\x9d\x39" "\xba\xaa\x10\x41\xf9\x03\xa8\x05\xf0\xf2\x4a\xa6\x37\x22\xfa\x2d\x87" "\xb9\x85\x95\xfa\x5c\xfa\xf8\xb7\x9c\x45\x8d\xe4\x3e\xe3\x99\x04\xe7" "\xca\xc7\x54\x0a\x93\x4b\x41\x08\x95\x77\x85\xd5\x88\x07\xab\xff\x18" "\x69\x49\xf1\xb9\x4c\xd2\x1b\x72\x4a\xff\x34\xac\x45\xc7\x06\x6d\xcd" "\xbd\x68\xea\x7b\x76\x6a\xf9\xd0\x45\xcd\x7f\xaf\xea\xfc\x5c\x5a\x0c" "\x34\x00\xef\x4e\x0c\x71\xa6\xfd\xd5\xb8\xd6\x8a\x6f\x31\x76\x44\xcd" "\xa9\xd2\xfd\x2c\x83\x9a\x82\xb9\x7b\x3d\x90\x9b\x54\xc6\x72\x22\x7b" "\xef\x57\x3c\x9d\xe1\x99\x1d\x65\xa6\x30\x17\xf7\x24\xd1\xf7\xf1\x57" "\x5e\x69\xdb\x53\x31\x8a\x7f\xd7\x06\x5b\x30\x3e\x75\x15\x18\xc8\xee" "\xf0\x4f\x64\x2d\xbd\x4d\xfa\x34\x90\x40\xa7\xb5\x40\x10\x50\xff\xc2" "\xb4\xef\x62\x80\x3a\x7c\x8e\xab\xa9\x9e\x01\x1d\xfa\xc2\x4d\x81\xb2" "\xb6\x1e\x0b\x05\x81\xe5\x3b\xf5\x20\xf6\x23\xec\xa1\x7f\x05\x45\xc5" "\xe5\x9f\xf1\x5b\x52\x74\x75\xf9\x70\xf5\x89\x89\x4a\xe5\x89\x14\x5f" "\xa4\x28\x3f\x72\x25\x08\x8c\xcf\xeb\xa1\xd7\x2e\x91\x28\xf8\xc2\x23" "\xae\x18\x40\xf2\xed\xae\x3d\xbc\xdf\x7e\x56\x0d\x5c\xdf\x4f\x71\xc9" "\xad\xa1\x93\x1c\x0f\x83\x12\xc0\x00\x10\x1b\x26\x4a\xad\xdb\x9f\xab" "\x16\x6b\xa8\xd8\x90\x3d\x60\x98\xec\xa2\x09\x35\xca\x60\x7e\xa7\x9e" "\x93\x67\x98\xb3\xdf\xb2\x2a\x7e\x15\x9a\xbb\x23\x4c\xf2\x1f\x37\x33" "\xdb\xf2\x63\xa8\xff\x11\x60\x92\xf2\x51\x65\x91\x08\x89\x2b\x2e\x21" "\xe1\xb4\x28\xfd\x22\x50\x96\xa5\x04\x02\x70\xb2\xd7\x03\x47\x01\x3e" "\xaa\x1f\xd8\xe4\x52\x94\x22\x00\x28\x3a\xab\x09\x2c\x4f\xfc\x5b\x8b" "\x42\x7b\x5d\x69\x1a\x5a\x77\x3e\x09\xda\x20\x53\x9f\xf0\xf8\x21\x43" "\x31\xc5\xd8\x41\x07\xae\x8a\x59\xae\xb5\x8e\xfe\x22\xd7\xa0\x79\xe4" "\x46\xf1\xdf\xb0\x75\x10\x37\x77\x99\xbf\xdc\x7e\xe5\x9c\xab\xcd\x76" "\xaf\x0f\xe8\xa4\x27\xac\x82\x58\xff\x33\xbb\xad\x5a\x80\x61\xf1\xcf" "\xdf\xbf\x37\x5d\x73\xd6\x76\xcc\x79\x16\xd6\x65\x8c\xe4\x6a\x0b\x17" "\xad\x63\x50\x15\x0f\x98\xe3\x51\x2b\x51\x3e\x25\xca\x73\xf5\xf5\xdf" "\x0a\x1f\xb9\x58\x2a\xce\x79\x06\xc4\x93\xfe\x1f\xd2\x88\x9d\x9a\xac" "\x0b\x7c\x29\xc2\xb6\xc2\x05\x53\x76\x27\xba\xd6\x4d\xf4\x33\x33\x6a" "\x5a\xce\x32\xca\x87\x1e\x51\xb4\xda\xb0\xfb\xb0\x08\x86\xa1\xfa\x81" "\xa9\x8b\x74\xde\x0a\x26\xce\xbf\x65\x72\x35\x15\xeb\xb8\x07\xfc\x3c" "\x16\x1e\xd4\x2d\x1a\x7b\x6b\x55\x71\x76\x13\x57\x7e\xa4\x37\xf3\xa2" "\x96\x7c\x66\xce\x45\xff\x85\xa6\xa3\x5b\x7c\xd4\x06\x25\xfc\x57\x5b" "\x10\x7d\x73\x94\xe3\xd2\xdb\x51\xd5\x83\x47\x27\x6c\x33\xe2\x1f\x50" "\xb5\xa6\xb5\x67\x2b\xf9\xfd\xa6\x31\x39\xbb\x75\xae\xad\x1f\xe4\xee" "\x9a\x40\x64\xaf\x5a\x59\x58\x46\x6a\xa3\x9f\xaa\x6d\x82\x14\x89\xfa" "\x41\x52\x24\xc8\xd6\x9d\x3b\x59\x22\x23\x68\x32\xc2\xb1\xe4\xf6\xb8" "\x86\x3b\x32\xf9\xae\xa8\x3f\xb5\x22\xa2\xde\x08\x1d\x67\x45\x02\xb4" "\x8f\x73\xce\x6d\xb9\x8d\x84\x13\x60\x59\xb4\xa6\x67\x6b\xc8\x5a\xc6" "\xb7\x62\x63\x29\xaf\xa9\xbc\x7d\x3f\x9f\x2c\xaa\x3c\x4d\x87\x27\x44" "\xe0\xa8\xe0\x2d\x72\xa7\x5c\x6c\x54\x5b\x8e\xc8\xe1\x5b\x6f\xb0\xfe" "\x41\x85\xbd\x0d\x15\x49\x60\xe6\xfe\xf0\x5b\xa4\x0e\x5f\xe2\x96\x8e" "\xb1\x30\x1d\xcc\x52\xa0\x33\x37\x17\x9e\x74\xba\x15\x22\xaf\x93\xd7" "\x78\x27\x84\x5f\x89\x41\xc6\x9e\xd8\xbb\x84\x56\x7e\x3c\x63\xf1\xcc" "\x37\x8a\x54\x2f\x1d\xe7\x00\x7b\x68\x8f\xf0\xa9\xc6\x9d\x58\x61\xf0" "\xb8\x54\x02\xc3\x0a\x2f\xd3\x91\xc5\x2b\xaf\xbe\x65\xf8\xe8\x21\x35" "\xfd\x38\x36\x1d\x7c\x0b\x43\xc9\x82\xb2\xf3\xe7\xcb\x09\xc4\x0c\x7e" "\x21\x51\x14\xf4\x24\x3d\x67\x0c\xd5\x76\xbc\xd9\x3c\x1e\x95\x93\x45" "\x17\x0c\x75\xd6\xc3\xcf\x89\xcf\x8c\x2c\x70\xdc\x79\x2e\x64\x6e\x7c" "\x64\x9d\x4c\x5f\x36\xbb\x01\x6c\x7a\xcd\x46\x6a\xd5\x84\x73\xd4\x0d" "\xfe\xf3\x63\x94\xe5\x81\x06\x5a\x85\x81\xab\x85\x22\x50\x40\x3c\xf3" "\x72\xac\x00\x65\xbf\x75\x7f\xa3\xf4\x45\x42\x4a\xc0\xd8\x2a\xec\x19" "\x38\xa2\xea\x11\x6b\xdf\xd3\x06\xba\xa1\xcb\x06\xc6\x2a\x4a\x97\xd6" "\x6a\xb1\xb9\x48\x94\x69\xcb\x8b\xa8\x42\xda\x12\xe3\x10\xca\xed\x02" "\xc5\xef\x05\xc0\xbe\x1e\x1e\x8c\x9c\x8b\x87\xd6\x87\x1c\x94\xc5\x7d" "\x16\x4d\x08\x67\x2b\x20\x5c\x94\x80\x86\xa0\x6a\x54\x5b\x26\x6b\x7a" "\xd9\x02\xa9\x08\x68\x1e\xb1\x88\xbc\x51\xb6\x19\x0b\x5c\xb9\xd8\xca" "\x59\xb8\xc4\xc6\xe7\x36\x9c\x00\xd6\xf6\x11\x9f\xd5\xd4\x37\x23\x9e" "\x3d\x3c\x89\xcb\x81\xe0\x9e\x56\x0f\xb8\x17\x59\x01\x06\x01\x5f\x08" "\xe7\xb0\x9f\x1e\x1e\x65\xbf\xab\x3b\x84\x89\xfa\x05\x8e\x24\x08\x19" "\x78\xb9\xe2\x54\x63\xd9\x94\x5b\xfb\xca\x81\xc0\x88\x85\xd4\xb6\xd4" "\xc6\x2e\x21\x7b\xd9\xe1\x94\x60\x76\x2f\x36\xc6\x6b\xc9\x48\xfe\x31" "\xcd\xe0\x89\x62\x6f\xbb\x31\x0e\x3c\x78\xa8\xd3\xf2\xea\xc2\x1d\x37" "\x4d\x9b\x58\xd8\x87\x23\x5d\x3a\x95\x72\x11\x68\xe4\xb9\x47\x58\x49" "\x07\x1d\x60\xec\xfe\x7e\xa5\xd6\xc4\xbf\x60\xda\x37\x47\x61\x2e\xf5" "\x9b\xb6\x51\x27\x0f\x32\x6c\x0a\xf3\x1b\xc8\xc7\x13\x61\xf8\x51\xde" "\x34\xcc\xb3\xc8\x07\x1b\x96\xf1\x12\x8d\x7e\xe7\x9b\x41\x24\x6e\x56" "\x6e\xdd\x02\x72\xdb\xd3\xcc\xfe\x47\x2b\x38\xe5\xe0\x3d\x3e\xf8\x32" "\x18\xbd\x49\x8e\x6d\xe8\xb4\xd9\x2c\xb6\xf8\x27\x16\x44\x9e\xde\x7b" "\xa8\x45\x02\x8e\xcc\xdb\x91\x37\xbe\x8a\x62\x2a\xc8\x8a\xc5\x31\x18" "\xfb\xc3\x96\x37\xfa\x7a\x93\xcd\x3a\xbc\x6f\x76\x71\xc7\x80\x44\x20" "\xd6\x6e\x94\x72\x0a\xcb\xca\xc9\x16\x95\x0f\x9b\xac\xa7\x7f\xef\x42" "\x17\x15\x5c\xcc\x2c\xd0\x50\x73\x39\xa0\x48\x6f\x9f\x46\x8e\xb2\x87" "\x72\x98\x6e\xe7\x68\xc6\x3e\xba\x67\x1b\xf8\xc5\x2e\x48\xa2\xa5\xdc" "\x2c\xc2\x4f\xe9\x25\x36\x87\x06\xc2\xd7\x12\xdd\x10\x64\x69\x2b\x0f" "\xb2\xa3\x2d\xdf\xbd\x4a\x0f\xfc\xf9\xc2\xab\xce\xda\xae\x6e\x52\x7b" "\xc1\xd4\x26\x37\xaf\xf2\xa2\x75\xb7\x6a\x7a\x7f\x01\x0e\x42\xe1\xcc" "\x1d\x27\x14\x1f\x6c\x35\x85\xa2\xbf\x58\xc6\xc5\x78\x9c\xe6\x15\x51" "\xd1\x01\x18\xa0\x00\xe3\x76\x46\x31\xec\x0b\x7f\x4b\x1a\x6f\x22\xa6" "\x78\x13\x3a\x30\x94\x0b\x79\xdc\x76\xf8\x63\xdd\x9f\x6e\x0d\x77\x76" "\x30\x08\x98\xc9\x7c\xef\x28\x6c\x73\x1c\x20\x50\x92\x8c\x49\x24\x39" "\x25\x6e\x48\x16\x52\xbf\xf0\xd2\x02\xdb\x3c\xfd\xc5\x4c\x98\x16\xce" "\xea\x78\x95\x35\x7b\xfa\x03\x62\xfa\xd7\x9a\xfd\x09\xed\x55\x18\x92" "\x94\xd6\xea\xd7\xe8\x98\xac\x09\x1c\xdd\xbe\x7e\xfc\xed\xb3\x14\xbc" "\x02\xa1\x8d\xd5\xbb\xdd\xc4\x2e\x08\x91\x24\x75\x8b\xb4\x91\xfd\x15" "\x36\xaa\xb2\x7c\x5c\x12\x45\x67\xbc\x32\x5e\x70\x28\xbc\xed\x5a\x17" "\x9a\x01\x1d\x1c\xb9\xa5\xff\xb6\x1d\x7a\xf8\x63\xe9\x1e\xc8\xe6\x04" "\x95\x56\x11\x88\xb7\x4d\x15\x8b\xa1\x41\x82\x28\xd4\x4e\x92\x91\x5a" "\x22\xeb\x1c\x16\x6e\xf7\xd6\x17\x9e\x84\x38\x1e\xd9\x50\xff\xd7\x47" "\xf1\x3e\x24\x17\x29\x42\xd9\x22\xca\x31\x09\xfb\x8b\x1e\x4e\x62\x64" "\xfa\x4a\x4e\xec\x75\xad\x0d\x0e\x22\x57\x9d\x90\xf4\x5d\x6c\xd1\x57" "\x30\x0e\x38\xae\x66\x5e\xb5\x64\x57\x20\x2e\x25\xa8\xdd\x58\x77\xba" "\x99\x72\x5d\xe2\x88\x66\x0b\xad\xd2\x70\x43\x45\xd9\xba\xd2\x08\xc9" "\x03\xba\x27\xea\x16\x7d\xd4\x5a\x77\xf7\x7b\x65\x02\xb5\x25\xb2\x97" "\x32\x70\x58\x28\x58\x18\x3c\x78\x4c\x32\x4c\x13\x66\xfb\xba\x8d\x41" "\x0c\x38\xbf\x75\xb4\x1e\x06\x7f\x6a\x9a\x01\x7c\x56\x59\x51\x61\xdb" "\x4f\xc5\x63\x93\x93\xfd\xaf\xb1\xf1\x48\xd3\xf4\x16\xc1\xad\xc5\xfe" "\x1a\xb9\xce\xbe\x46\x89\x85\x5c\x9b\x4b\xda\x6d\xcb\xa5\xd5\xfa\x85" "\x8a\x1b\x87\xd2\xad\x23\xcd\xf5\x4d\xbd\xf4\xd1\x4a\xa4\x46\x2d\xa0" "\xb6\xf1\x10\x7f\x4a\xfa\x00\x91\xc2\x64\x35\x08\x86\x1a\x4d\x9f\x13" "\x3b\xa7\x77\x51\x94\x1b\xb8\xfb\x75\x6a\xbf\x1a\x10\x42\x05\xb8\x0d" "\x47\xa3\xb4\xa5\x97\x24\xd9\x59\xc8\xb5\x83\x3d\xa4\xf5\x6f\xb6\x61" "\x32\x31\xf2\x30\xa9\x37\x8c\x9a\xf7\x41\xe9\x4f\xd2\xc7\x21\x3a\xc1" "\xd7\x62\x55\x59\xb3\xf0\x32\xf6\xc8\xdf\x3a\xb4\x41\x92\x97\x20\xfe" "\x43\xd7\xc5\x48\xcc\x66\x1e\xed\x5b\x3c\x62\xb3\xc6\x1f\x53\x8e\xa3" "\x22\x83\x76\xe2\xa1\x8c\x6d\xa2\xad\x90\x63\x22\xf6\x4f\xb4\x86\x5c" "\xde\x8e\x18\x89\xa8\xe5\x23\x7f\xd6\xa3\x9b\xbd\x66\x62\xf1\xde\xdc" "\x22\xfb\xd7\x4e\x43\x76\xfa\x61\x0c\xd7\x10\x70\x3d\xbd\x39\x24\xa3" "\x8b\xea\xe6\x97\x83\xd1\xd5\xab\xf3\x61\x22\xcb\xb8\x71\x29\xba\x71" "\x90\x42\x74\x8f\x06\x0f\x43\x03\xa3\x19\x9c\x58\x91\xc5\x04\x0f\xd8" "\xcd\xb9\x76\x1b\x00\x6b\xf6\x4c\xdc\xb6\x5e\x5c\xc5\x0a\x29\x99\x4b" "\x8c\x1c\x34\xb8\x37\x60\xec\xe1\x2e\xd9\xed\x7c\x3d\x2a\x7f\x89\x11" "\xcd\xf2\x3a\x1a\xfe\x0d\x7d\xb1\xbf\x34\x2a\xa0\x12\x3d\xd5\xcd\x31" "\x33\x9f\x5c\x8e\x16\x0c\x4e\xfe\xf8\x82\x60\x2b\x3e\xcc\xbe\x76\xfb" "\x69\x01\x62\xb8\xbf\xb8\xa3\x19\x10\xbc\xdf\x9a\x4a\x5d\xde\x76\xc2" "\xac\x2f\xcd\x86\x78\xad\xd7\xa0\x00\xcf\xdc\xab\x39\x8e\xb2\x17\x1c" "\x02\x63\x13\xeb\x6e\xb5\x6b\x4b\x87\xbf\x8e\xf9\x3f\x7f\x8a\x1c\x0b" "\xcc\x37\x75\xb6\x81\xd4\x22\x9e\xa5\x61\xcb\x52\x28\x1d\x8b\xa4\x31" "\x5c\x36\x94\xed\x08\x43\x35\x96\x88\x4d\x5a\x7c\xe3\xa8\xb1\xf8\x23" "\x59\x84\x6b\x71\x36\x72\x6e\x2f\xe3\x7b\xf4\xf7\xb7\xe2\x20\x6c\xdc" "\xdb\x07\x05\xce\xd9\xf0\xdc\xaa\xa2\xed\x3a\x78\xea\x70\xd2\xcf\xea" "\xb6\x68\xeb\x32\x14\x00\xfc\x95\x5e\x9a\xeb\x7b\xbc\xf8\x6c\xd0\x3f" "\x02\xdd\x44\x35\x03\xa1\x48\x0d\x9d\x9f\x89\x9f\x53\xbd\x74\x7a\x95" "\x29\x37\x86\x79\x8f\xc5\x9f\xce\xb0\x9e\x68\x6a\x93\x28\xda\x4f\x92" "\x9b\x62\x01\x84\x1b\xbb\xef\xaf\xfc\xf3\x38\x6a\xbd\xf6\x95\x40\xe3" "\xb4\x6a\x64\x3e\xc1\x0f\x0a\xcf\x21\xf2\x7c\x00\x53\xdc\x13\xf1\x84" "\x85\xdb\xc8\x98\x72\x9d\xfb\xea\xaa\x48\x87\xb5\x8c\xd4\x42\xd7\xff" "\xa9\x41\x80\x8c\xd9\x65\x85\x95\xbe\x86\x50\xa8\x15\xb0\x88\x62\x12" "\x78\xd8\x9f\x0d\x8a\x42\x52\x56\x6b\x92\x3d\xf3\xa3\xcd\x65\xc0\xe4" "\xaf\x08\xfa\xd3\x85\x92\x72\x51\xb3\x1d\x35\xf7\x5e\xaf\x25\xe6\xcf" "\x13\xa5\x79\xae\xeb\x0b\xcc\x0a\x14\xca\x4a\x20\xa6\x83\x1d\x53\x2b" "\xe0\xb2\xaf\x38\x21\x79\x2a\x2d\xf9\x51\x31\xb7\xfa\xfe\xf2\x45\xaa" "\x19\xb2\x14\x05\x33\x42\xaa\x82\x0c\x35\x85\x8d\x13\xf8\x4e\x49\x62" "\x94\x52\x94\x11\x01\x5c\x41\xed\x44\x7b\x5b\x51\xdc\x44\xa4\x5d\x52" "\x55\x2a\x2b\xe1\xab\xfc\x15\x7f\x3a\xce\x7b\xfa\x32\xd5\xb9\x31\x42" "\x1d\x5a\x15\x2d\xd6\x6b\x7b\xf5\x49\x31\x1b\x08\x32\x5e\x5a\x72\x01" "\xf7\x93\x03\x7b\x38\x99\x0b\xed\xec\xa8\xa6\x47\xc0\x8d\x24\x78\x67" "\x0f\x8f\xc2\xb4\xe8\x98\x3e\xa1\x8b\xcd\x51\x4d\xae\xee\xeb\x9d\x7a" "\x77\x8f\x78\x3c\x76\xed\xf0\x1b\xd4\xbe\xda\x4b\x77\xb6\x12\xcd\x2e" "\x86\x5c\x2e\x4f\x58\xca\x7a\xe0\x61\x47\xbf\x66\xae\x6a\xee\x22\x1c" "\xf9\xb9\x50\x5d\xc0\x7e\x6f\xb6\xcf\x4f\x82\xdc\x8c\x40\x6c\x78\xe2" "\x70\x21\x0c\x11\xcf\x25\x31\x01\x1e\xd6\x78\xd9\xdf\xe1\xf4\x9c\x9a" "\x69\xa9\x5a\x9f\x3b\x0e\x5b\x62\x4d\x9c\x26\x64\xd7\x87\xab\x91\x1b" "\x75\xa4\xa3\x8d\x63\xe9\xd6\xc3\x53\xf8\xaa\xf4\x33\xff\x96\x1f\xe5" "\xe3\x4d\x84\x93\x6e\xad\x0d\x0b\xc7\x95\x4c\xaf\x84\xe5\x41\xf5\xc6" "\xf3\xf2\x0c\x9e\xed\x21\xeb\x03\x16\xb8\x2c\x0d\xc5\x18\x25\x40\xe6" "\x3a\x0a\xf2\x55\x65\x49\x67\x92\x15\x3d\x63\x95\xad\xc2\xb8\xd6\x8b" "\x8b\xcd\x93\xdd\x11\x0f\xf5\x68\x58\x79\xdb\x43\x84\xec\x39\x0d\x44" "\xb8\x96\x63\xd4\x3a\x5d\xe3\xbd\xc0\xe1\x03\xb7\xc1\xb3\x55\xdc\x5f" "\x6f\xe3\x51\x8c\x93\x62\x87\x80\xba\x03\xf1\x56\xba\xde\xa6\x5d\x1d" "\x0a\xf8\x43\x3c\x9e\x8a\x97\x5f\xdd\x19\x45\x3d\xa6\x62\xa3\x3f\xa9" "\xf0\xf5\xfa\x15\xfd\xb2\x16\xb4\x83\xfb\x48\x37\x0a\x96\x72\x46\xe0" "\xb7\x63\xdf\x8b\x3b\xc7\x92\x4a\x6c\x76\xc4\xb1\x14\xf8\x03\xdb\xfa" "\x3b\x31\x2e\x68\x15\xb4\xeb\x67\xbe\x16\x72\x83\xa9\xe4\x82\xd9\xa5" "\xbe\xac\x25\x00\x89\xd0\x69\xd4\xc3\x86\xb7\xfd\xa5\xfc\x22\x84\x04" "\xa0\xf5\x8b\x12\xca\x4d\xc1\x31\xc3\x81\xb4\x9b\x42\xb5\x70\xbc\xfc" "\x0d\xd6\x63\xf2\x4a\xfa\xf6\x5a\x26\xa2\x1f\x6d\x92\xf5\x2c\x9f\x8d" "\xe3\x6c\xb7\x6b\xac\xba\xa0\xee\xf9\x8b\xa6\xb7\xdb\xbc\x26\x29\xa0" "\x3b\xb2\xb6\xf8\x3f\xc5\xad\xaf\x20\xc2\x17\xbc\x8d\x0f\x0d\x24\x21" "\xe0\x14\x72\x53\x2b\xcb\x54\x6a\xeb\x2d\x48\x3c\x8f\x95\x01\x1a\x3b" "\xa1\xd2\xfd\x80\x86\xa7\x17\xcb\x01\x5d\xd5\x30\x64\xef\x4a\x80\xb6" "\xd6\xfd\xc1\x2d\x90\x69\x22\x3f\xdf\x2a\xa9\xb1\x92\xa0\xe0\xbd\xb3" "\x84\x36\xf4\x9d\x9e\xed\xfe\xf3\x66\x58\x15\x63\x3f\xee\x43\x44\xaf" "\xf1\x11\x62\x52\x63\x62\xb7\x0b\x18\xe1\xdb\xed\xbb\x5d\x8c\x46\x98" "\x86\x0b\xec\xcf\x66\x78\x51\x87\x8a\x25\xa1\xe7\x66\xca\xae\x28\x61" "\xf2\xe2\x34\x04\xaa\xc8\x59\xe6\x2f\xdf\xea\xc0\x6a\x60\x57\x55\x48" "\x28\xd7\x03\x58\x06\xe8\xab\x3e\xe2\xfa\x6d\x71\x1e\x58\x11\xdb\x61" "\x23\x1a\x22\xf4\x67\x2f\x6a\x11\xb2\x76\x41\xf3\x50\xbc\xab\x78\x79" "\x23\x62\xe6\xeb\xc1\xc0\x54\xa6\x43\xbb\xbf\x27\x46\x67\x8c\x14\xdc" "\x56\x7d\x1f\x73\xe3\x70\x05\xc8\xab\x63\x74\xc4\xd8\xd3\x10\x63\x84" "\xa2\xd3\x2c\x5f\xcf\x05\xcb\x9b\xa9\x7c\xb7\xfa\x1a\xff\x11\x50\x5a" "\x70\x1b\xea\xd5\x43\xe5\x55\xf3\x90\x1e\xf3\xb6\x93\xd5\xb9\xeb\xf4" "\x95\x18\xc3\x50\x9a\xf0\x42\xb7\xe8\x4b\x1b\x86\x7c\x22\xb7\xe0\x87" "\x25\x22\x0e\x43\x38\xfd\x07\x4e\xdc\xe4\x28\x21\x2e\x6a\x35\x63\xa0" "\x8e\x2c\xcd\x8a\xb7\x19\x10\x25\x65\x32\x90\x45\x42\xe9\x3d\x5c\x7d" "\xeb\x5b\xf5\xd4\x9b\xeb\x32\x02\xd4\xda\x4f\x64\x36\x49\xe5\x5e\xdb" "\xb9\x11\x88\xcd\xcf\x08\x83\xa4\x0c\x6e\xd6\xb8\xa0\x86\xfb\x5c\x50" "\xdc\x08\xfe\xe0\x03\x08\x42\x01\x21\xd4\xc7\x43\x1b\x3c\xfb\x80\xf9" "\xc1\xe0\x99\x42\x3a\xc4\x51\xd6\x7b\x12\xe9\x30\xd9\xe3\x91\xd0\xa7" "\x99\xc7\xd4\xb5\x4a\x0d\x56\xea\x0a\xae\x00\xc1\xd0\x09\xe2\x1f\xb5" "\x45\x94\x16\xb4\x64\xb2\x27\xd6\x6c\xcc\x1a\x68\xda\x59\xd6\x4c\x15" "\x83\xde\xe5\x4b\xbc\xd7\xd6\x1f\xfe\x54\x1f\xd0\xfb\x74\x52\xad\xba" "\x91\x90\x69\x18\x96\x6a\x7d\x58\x01\x9a\xd1\xf8\xfd\xeb\xec\xee\xed" "\x70\x18\x83\x7b\x6e\x42\x72\xee\xfe\xec\x83\x85\xab\xe7\x20\x7f\xb2" "\xd7\x06\x1f\xa6\xcd\xc4\x78\x16\x5a\x98\x97\x1f\x97\x29\xb8\x18\xa7" "\x3e\xde\xfe\xd9\x76\xd5\xc7\xc0\xa6\x51\xc0\x91\xcf\xd1\x17\x4c\x02" "\x0e\x39\x33\x0a\x79\x14\x42\x71\xfe\x4c\xbc\x61\xea\x0f\xfa\x27\x4d" "\x0d\x87\xd0\x6d\xd0\x8c\x1d\x5f\x8a\x03\x64\xd4\x6e\xf7\xb5\x44\x26" "\xbc\x28\x63\x30\xc7\x5f\xa2\x57\xaf\xeb\x27\x15\xc2\xae\x51\x1f\xf5" "\x3b\x11\x89\xcc\x59\xab\x80\xb1\x32\x5f\xbd\xce\xdf\xdb\x8f\x36\xed" "\x71\xf7\x00\x91\x11\x6e\x16\xb5\x21\x88\xb7\x94\xe6\x37\x75\x50\x27" "\xca\xac\x8d\xb8\x55\x4f\x86\x74\xb8\x44\x96\x4c\x71\x0c\xac\xd7\xa9" "\xd6\xb0\x6b\xaf\x6f\xef\x76\x15\x9a\x38\x0e\x63\x9b\x0d\x3e\x66\x08" "\x0a\x7c\xf7\xf8\x6b\xaa\xc0\x1d\xbe\x47\xfe\x68\x7f\xce\xf2\xf3\xbf" "\xbf\x6f\x8f\xba\x04\x51\x81\xde\xe6\x88\x36\x0a\x11\xee\x56\xe5\xfc" "\x73\xed\x31\xc0\xe2\x92\x4a\xe5\x7f\x0c\xc9\x3c\x63\xa3\x06\x62\xa6" "\x5c\x5d\x5f\x17\x12\x3a\xe2\x8c\xc5\xb7\x4d\xd1\x3e\xd8\x1b\x03\xdc" "\x7f\xa6\x1d\xc5\x75\x66\x88\x68\xc0\xdf\x12\xd3\x55\x32\x69\xf0\x4b" "\xa7\x90\x84\xd0\x70\xab\xcd\xbd\x47\x45\xde\x80\xe9\x0e\x4e\x3e\x52" "\x4f\x27\x24\x9b\x5c\x4a\x2f\x2d\x4c\x8b\x33\x1b\x0c\xb6\xd4\xef\xe6" "\x2a\x29\x8d\xaa\xcc\x6e\xac\xdf\xe0\x08\xc1\xf9\x12\x79\x5d\xbd\xc3" "\x70\x98\xc4\x2d\xb8\x60\x95\x31\x20\xfd\xa7\x09\xba\xa6\xd4\x6f\x52" "\xea\xba\x78\x15\x05\xe6\x85\x61\xca\x0f\x28\x1e\x85\x05\x32\xef\x8e" "\x7c\x77\x98\x83\xe3\x12\x80\x6e\x1c\x35\x7b\xde\xf8\xd0\xdd\xa0\x05" "\xe7\x10\xcf\xa6\xeb\x86\x86\xe8\xbf\x3b\xff\x03\x6b\x3f\xcd\xc4\x03" "\x65\x41\xd9\x35\x30\xce\x6f\x59\x84\x42\xc2\x41\x70\xb3\x07\xef\x05" "\xf2\x3c\x93\xaa\x0e\xc9\x68\x31\xb5\x32\xd8\x12\x04\x02\x21\x4a\x94" "\x0d\x1f\xa0\x1e\xd6\x49\x06\x1a\x4a\x71\x30\x8b\xe1\x89\xcf\xfd\x72" "\x9a\x19\x67\x54\xfb\x8a\x75\xf2\x38\x51\x18\x95\x89\xbe\x1b\x81\x9f" "\x06\x12\xca\xd3\xdc\x94\xcc\xee\x88\xf4\xab\x9e\xf6\xac\x9c\x7d\xaa" "\xd8\xcf\x94\xf5\xed\x94\x96\xc4\xc8\x24\xe5\xb4\xf6\x6c\xe3\x2a\x80" "\xe7\xa6\xef\x06\x9a\x32\xf6\x81\x2e\x65\x6a\xa5\xf5\x74\x2b\xd4\x32" "\xaf\xdf\x02\x6c\x86\xe8\xf2\x82\x12\xc1\x13\x9d\xad\x47\xd7\xfc\x07" "\xe5\xc1\xa8\x3e\x99\x3d\xaa\xa4\xa4\xbb\x5f\x0c\x94\x35\xcc\xab\x2a" "\x10\xf8\x67\xff\xe2\x59\xdb\xa7\xa1\xd9\x16\x86\x19\xb1\xe3\x04\x88" "\x60\xa5\x12\x2e\x4a\x5d\x0b\x00\x37\x2e\xaa\xe8\x61\xa0\xcc\x88\x54" "\x98\x52\xff\xfa\x76\xe6\xd7\x87\x39\xb6\x54\xd6\x7d\xf1\x5e\xa9\x7a" "\x9a\x46\xb7\xc3\x82\xd8\x31\x91\xa6\x73\xaa\x61\x9b\x4a\x10\xec\x05" "\xbc\x68\x13\x79\xb0\xd6\xdf\x82\x4c\xb6\xfe\x15\x8e\x9d\x89\xae\x5d" "\xd1\xef\x66\x97\x6f\x67\x97\x2b\x55\x3d\xb5\x2e\xb6\xfe\xef\x83\x6d" "\xca\x60\x26\x29\x3f\x83\xa6\x1e\x11\x77\x54\xa7\x42\x4a\x3d\xa6\x3b" "\xd8\x2d\x01\x7f\x87\xf0\x60\x3e\x2a\x9b\x8f\xc5\x50\xaa\xe6\x11\x68" "\x19\x35\xae\x91\xf7\xca\x2b\x53\x41\xb0\x5a\x25\x20\x8b\xd2\x8f\x1a" "\x20\x2a\x7f\x2a\x21\x3b\x1d\x74\x11\xff\xb5\x57\x47\x0a\xec\x00\xc4" "\xd1\x3c\x70\x16\x3f\x22\xa0\x38\xa1\x89\x71\x0d\xd1\x9a\x47\xe8\xdb" "\x4a\x87\xc3\xfd\x32\x9a\x63\xab\xca\x17\x2a\x98\x10\xed\xad\x2d\x8e" "\x19\xef\x85\xb5\x7e\xa4\x28\x7c\xfb\x3d\x74\x0d\x7e\xa3\xfa\x9c\x80" "\xd0\x6e\x1a\xa8\x4b\x31\x7f\x67\x8d\xdb\x3c\x14\x7b\xa5\xe0\xdb\x43" "\x21\x25\xf5\x9c\xa4\x94\x4c\x8e\x90\x50\x28\x1c\xa8\x2a\x3e\xcf\x67" "\xb2\xa5\xdf\x67\x86\x97\xa5\x2a\x72\x97\xaf\x1e\xcb\x03\xc5\x86\xaf" "\x7b\x91\xd7\x4e\x88\x19\x64\xed\x95\xf7\xbe\x12\xfa\x07\xe2\xa4\xe7" "\x1a\xab\x8b\x91\x3a\x13\x99\x6f\xa3\x3e\x91\x51\x44\xbf\x00\xe4\x9b" "\x8e\x7a\xde\xc5\xb2\xc4\xb8\x16\x5f\x54\xba\x31\x55\x23\x0e\x24\x1e" "\xe0\x23\xaf\x77\xa2\x95\xab\x87\xc4\x0f\x63\xf6\x09\x2c\xce\xe0\x5c" "\xb0\x8a\x26\x5a\xbe\x8f\x57\xc9\x91\x9b\xf4\x50\x64\xb6\xc2\x24\x0b" "\xa8\x01\x1d\xb2\x23\xa2\x83\xa4\xe2\x29\x2d\x9b\x59\xdf\x8c\x9a\x4f" "\xdc\x76\x3f\x06\x31\x00\x7d\xb9\x97\x6f\x35\x17\x17\xdb\x0e\x6b\x5f" "\x9c\x6e\x5f\x22\x7c\x2e\xfa\x1a\xe5\xfe\x0b\xe1\xaf\x0b\x22\xfc\x16" "\x4f\x9f\x96\x78\xa0\x1f\xe8\xb0\x59\x74\x9f\xe8\xa2\x97\x24\x55\x73" "\x2d\xa1\x98\x9c\x60\x9d\x19\x15\x44\xef\x9f\xbb\x3e\x58\xda\x93\xec" "\x4a\x58\x24\x30\x52\x3f\x26\x0b\x77\x6e\x4d\x74\x73\x12\x74\x7d\x18" "\xa9\xba\xe1\x47\x40\xf5\xdc\xd3\x5f\xd1\x07\x2f\x8a\x4d\x81\x57\x3b" "\x58\x82\x20\x3b\xe8\x56\xb6\x2d\x7e\x1d\x87\x08\x1a\x9e\x43\x18\x72" "\xc9\xd6\x88\x64\x19\x7b\xbc\x61\xf1\x5d\xd8\xae\xae\x95\x0d\x34\xd6" "\xce\x97\x18\x2d\xee\xbd\x2a\xd6\x4c\xab\xd1\xc7\x23\xba\xf5\x12\xac" "\xfc\x7e\x94\x67\x5b\x31\x36\x9b\xd6\x0e\x15\x5a\xf7\x9b\x97\xbb\x73" "\x43\x12\x56\x9f\x73\x6d\xcd\x5b\x5a\x78\x22\x3f\xfa\xa0\xf7\xe9\x3e" "\x1a\x11\x2c\xb9\xf6\xa5\xb8\x8f\xe3\xcf\x12\xc3\x00\x24\xc1\x6c\x6b" "\x83\x80\xfd\xf0\x86\xc6\x62\x66\x5d\x37\x51\xc1\x16\x17\xcc\x4d\xbd" "\x5b\x8b\xc7\x54\x33\x01\xa2\x3f\xbc\x90\xba\x8d\x06\x01\x93\xcd\xc2" "\xb6\x8c\x31\xc7\x34\xd5\x16\x70\x7b\x75\x9f\x7d\xb0\x09\xc8\xf0\x6e" "\x69\xb4\x01\x54\xe1\xcd\x8a\xe4\x44\xaf\xb2\x81\x34\xac\xdf\x87\x11" "\x36\xb4\xfd\x78\xbd\x86\xd7\xfa\xaa\xf6\x18\xaf\xb2\x5e\x92\xd1\xee" "\x37\xcd\xff\x05\x95\x27\x8f\x95\x65\xf5\xeb\x10\x9e\x18\x1e\x9c\xac" "\xec\x2f\x22\xe3\x2e\x9f\x34\x77\x4e\xe2\x23\xfd\xb9\x92\xfe\xbc\xc5" "\xdb\xc5\xcc\xee\xda\x16\xcb\xcf\x14\x34\x73\x0d\x85\x9e\x7e\x03\xd3" "\x6f\xf1\x76\x36\xa7\xa7\xe6\x69\x56\xb5\x15\x89\x4d\xa1\x14\xf3\x04" "\x09\x09\xf9\x0c\xe3\xcf\xbb\x2d\x7d\x46\xe3\x70\x49\xc0\xfb\x12\x4e" "\x06\x83\xd6\x62\xeb\x42\x7c\xd7\xb8\x51\xad\xa2\x29\x45\x1e\x6e\x3a" "\xae\xe6\x4b\x99\x64\xce\xd3\x03\x6b\xde\x5d\x9d\x80\xeb\x06\x24\x74" "\xf9\x6e\xcf\xb9\xb6\x5f\xca\xfc\x71\x94\x94\xac\x12\xab\x7d\xf2\x45" "\x47\x5f\x2a\x5e\x7f\x85\xca\x47\x89\x83\x3c\xa3\x73\xe6\x21\x4d\x39" "\x17\x6c\x8f\x51\xdd\xe8\x7a\x4c\xfe\x54\x14\xa2\x0f\x68\xbb\x9f\x34" "\x70\x99\x79\xb9\x95\x33\xba\x34\x35\xc4\xaa\x56\xe5\x25\x19\x5e\x10" "\xff\xd0\x0f\x8e\x41\xae\xe3\x0a\x90\x9c\x07\xb9\x73\xbb\xf7\x33\xd4" "\x55\x00\xb5\x39\xeb\xe2\x20\x6d\x43\x82\x16\x69\x09\x98\xd9\xe2\x56" "\xdb\x1b\x7a\xc6\xbe\xf3\xe8\x10\x78\x5e\x19\x86\x98\x5c\x94\x5a\x2b" "\x82\x03\x23\xa5\x92\x72\x1f\xcf\xa4\x44\x93\x4d\x0f\xaf\x8a\xa4\x39" "\xd5\xef\xca\x5d\xcd\x77\xb7\x2d\x1e\xb9\x1b\x37\x90\xd5\x0d\x0a\x74" "\x83\xe3\x54\xc4\x15\xf8\x1d\x99\xc1\x33\xd6\x48\xc1\x29\x3e\x79\x5b" "\x3c\x43\xf9\xb4\x7e\x23\xef\x98\x2e\x10\x07\x2e\xa5\xba\xaf\xb0\xdf" "\x67\x5e\x69\xaf\x18\x07\xb2\x25\xaf\xa0\xce\xc3\xea\xfb\xde\x85\x35" "\xd3\xec\xaa\x0e\xa6\xdd\xbf\xfe\x44\x65\x20\x74\x25\xbb\x00\x36\x70" "\x32\x03\x24\xdf\x0a\xee\xb1\x6b\x38\xa0\x43\xf9\xc0\xe8\x56\x73\xb3" "\x6d\xef\x33\x2f\xd6\x8b\x2b\x1e\x6e\xdd\xa6\x21\xd0\xca\xde\xbb\xce" "\xd8\xc7\xfc\x8f\x89\x04\x89\x11\x5b\x45\x72\x49\xe8\xd8\x10\x36\x76" "\xb3\x20\x7a\x47\x28\x04\xd3\x3e\x0f\xe5\x11\xac\x56\xcd\x8d\xc5\x33" "\x3b\x23\x33\x89\x2f\x87\xb4\x55\x94\x0a\xda\x78\xfc\xf5\x07\x5c\x35" "\x8f\xce\x99\x0e\x6f\x65\xf0\x95\xeb\x41\x6d\x87\x6c\xe6\xf1\x20\xb8" "\xb0\x2c\xfa\x6b\x17\x6e\xe2\x69\xc9\x42\xf8\x81\x24\x7c\x3e\x46\x4c" "\xce\x2a\xa6\x5c\x39\x13\x76\x07\xc5\x85\xae\xb4\xb5\xf2\x4f\x5f\x8e" "\x05\x8c\x9c\x8b\x48\x00\x3c\x18\x09\xda\x3e\x8a\xad\x1b\xee\x79\x55" "\xc3\xa9\x76\xd4\x3f\xe1\x32\xe2\xb1\x6f\x47\x58\xa0\xa9\x88\x4e\x51" "\xd1\x3b\x93\x06\x75\xa4\x36\x1f\xf3\x66\xb0\xfe\xd1\x90\xad\x7b\x2a" "\x00\x38\x55\x28\x95\x1e\x39\xcd\x44\xea\x06\xd8\x92\x1b\x9d\x61\x3d" "\x76\x26\x22\x11\x54\xcf\x86\x24\x9a\x55\x01\x98\xfe\x4e\x5b\x05\xad" "\x30\x52\xb4\x74\x29\x1d\xa0\xa0\xa2\xf7\x01\x75\x98\x59\xbc\x03\x92" "\xad\xf2\x43\xad\x5e\xca\x89\xe6\xd1\x8e\x28\xdf\xf9\x9e\xf9\x57\x43" "\xbc\xab\xe7\x55\x04\xbe\x8c\x71\x5c\xd6\x36\x0f\xac\xf3\xbb\x06\xcb" "\x97\xc2\x99\x89\xd4\xf6\xff\x50\x83\x57\x3c\xef\xe6\xef\x0b\x39\xa2" "\x52\xa2\x67\x81\x12\xfa\x88\xe5\xb0\x6c\x9a\x6b\xfc\x95\x97\xcc\x96" "\xe5\xa4\x97\x10\xc4\xfc\x12\x0f\xb0\xda\x49\x45\xb9\xd9\x4e\x46\xde" "\x1e\x99\x89\xd0\xfc\x3d\x8d\x20\xdf\x23\xd8\x15\xb6\x60\xc7\x99\xa9" "\x03\xf6\x51\xb0\xd0\x13\xf7\xfe\x15\x8f\x1d\x29\x7f\x7f\xcb\x6a\x48" "\x78\x0c\xa5\x52\x5f\x1d\x08\x1a\xda\x0a\xaf\xa8\x35\x52\x31\x8b\x84" "\x87\x83\x30\x65\x49\x75\x0b\x62\x54\xcf\x67\x6c\x7b\x93\x4c\xf7\xfd" "\xab\x99\x27\x17\xf0\xcd\xc0\x89\xb3\x42\x78\xf3\xfb\x15\x1c\xad\xde" "\x14\xd0\xd3\x25\x0e\x85\xa4\xb0\xff\x2a\x27\x78\xa2\x19\xaa\x40\x56" "\x3d\x3e\xf5\x75\x28\x54\x84\x42\x4b\x6d\x0e\x7c\xc8\x39\x23\x42\xe4" "\x84\x8c\x6f\xc8\xcb\x20\xfa\x1b\x45\x0c\xc4\xc1\xfe\xa1\x9f\x3b\xbd" "\xd9\xe3\x42\xe6\xc4\x9c\xd7\xac\x89\x3b\x1e\xda\x2e\x93\xd1\xd7\x4d" "\x20\x96\x94\x65\x94\x6b\x39\x8f\xbc\x73\x37\x57\x74\x1a\xc8\x22\xc4" "\xa1\x18\x63\x2c\xd2\x42\xa4\x39\xfc\x37\x51\x2c\xf7\x9b\x7c\x62\x95" "\x04\xcc\xc1\xe7\xf2\xf1\x17\x98\x95\x5c\x32\x62\xb5\xe9\x69\x56\x25" "\xba\x74\xd8\x05\x0e\x20\xf5\x1d\x47\x69\xe1\xab\x93\x8f\x48\x7f\x1b" "\xc4\xb5\x5b\x5a\xbc\xaa\x3e\xc0\x79\xc2\xd0\x97\x2b\x2a\xe9\xbf\xb7" "\xc5\x42\x3b\x95\x91\x19\x29\x2e\xa0\x5f\x1d\x79\xd3\x5a\xfe\x47\xe4" "\x9d\x97\xc9\x46\xb1\x93\xbf\xfc\x0a\x8f\x60\x7f\x18\xa6\x84\x5c\xec" "\xbb\xdd\x98\xcd\x35\x1d\xb2\xb2\xdc\xe0\x5a\x48\x48\xba\x84\xa6\xa4" "\x97\xb4\x61\x89\x50\x13\x0c\xb7\xe7\x6c\x03\xd0\x97\x6e\xb2\xfb\x41" "\xd3\xa4\x2a\x14\x30\x06\x3e\xd8\xe5\xb8\xc6\x7e\x80\xfd\x4f\xc1\x14" "\x89\x11\x95\x8b\xab\xbc\xbf\xf3\x3a\x65\x05\xde\x20\x9b\x0d\x93\x20" "\x01\x7f\xd7\x36\xfd\x02\x7a\x16\x56\x40\x08\xab\x2e\x1f\x48\xa6\xdd" "\x66\xc9\x25\x67\x30\xe9\xfd\xa0\xa6\x06\x87\x5d\x08\x71\xb2\xb9\xb0" "\xbc\x2e\xd4\xe1\xb6\x96\xdb\xf0\x28\x3c\x8d\xc7\x2c\xf4\x33\x8e\x59" "\x52\x66\xf5\x39\x0b\xc3\xa2\x1f\x98\x83\x53\x11\x8f\x29\x48\xfc\x75" "\xd0\x50\xea\x07\x6b\x73\x50\x8d\x9e\xd8\x9b\xad\xe0\xba\x30\x5c\x1f" "\x4e\x5d\xaf\x9d\x40\xd2\xf5\xe7\xab\xab\xed\x8d\x1b\x1d\x91\x9c\x61" "\xa6\xd3\xfb\x14\x9c\x1a\x9b\x44\xe3\x85\x85\xa2\xfe\x32\x2f\x83\xd7" "\x3a\x3a\xec\xb4\x4d\xa3\xf0\xe8\x29\x42\xd7\x5d\x62\xed\x3f\x91\xeb" "\x44\xf3\x41\x1d\xf0\x14\xf8\x88\x39\xe4\xcb\x1e\x21\xb9\xb2\x59\xd4" "\xeb\x4a\xda\xf6\xb0\xbe\x43\x3d\x0e\xd4\xc8\x7e\xc7\x7d\xde\x5e\xe9" "\xd5\x66\xe3\xdd\x8d\x92\x8f\xc1\x87\x5c\x63\xaf\x26\xc5\x9d\xab\xa5" "\xae\x26\x7d\x9b\xd5\xda\x72\xb9\x9a\x03\xe6\xa3\x3c\xc4\x8e\xd9\x61" "\xab\x48\x4f\xf4\xa4\x6c\x2d\x5f\xa5\x97\xe6\x26\xe0\x0b\x53\x0d\x7b" "\x9a\x97\x05\xe4\xe0\x8d\x03\xf3\xa7\xf2\xa5\xa5\x23\x3a\xd6\x34\x0e" "\x3b\x5c\x89\xdb\x81\xca\x71\x3b\x6d\x7d\x85\x5c\x63\x24\x95\x5f\x85" "\x10\x9b\x20\x45\x66\xf5\x01\x78\xcd\x88\xab\xe3\xfc\xba\x25\xde\x90" "\x5e\x8e\xa0\xb7\x5a\xd5\x18\x31\x76\x1e\xd9\xb1\xaf\x24\x70\xf9\x76" "\xf0\x5e\xc7\x3b\xf7\x4d\x13\x7c\x20\x72\x70\xcf\xd6\x14\x17\x05\x18" "\xcd\xc4\x49\xae\xeb\x66\x3e\x11\x43\x59\xc8\x12\x4e\xaf\x24\x99\xd8" "\xcf\x5d\xc8\x4a\x08\x72\x30\x1d\xb2\xe5\x7b\x50\xbd\x28\x50\x60\xec" "\x43\x90\xd9\x9d\x4a\xe3\x67\x4c\xa3\xbb\x86\x79\xc1\xb0\x8e\x56\x6b" "\xa4\xf3\x0d\xae\xc8\x68\x4a\x98\x00\x55\xeb\x43\xcb\x5a\x13\x06\xc4" "\xb5\x2a\x15\x46\x82\xaa\x96\x63\x7e\x06\xc8\x69\x27\x8a\xa2\xf7\x4e" "\xf7\x34\x56\x32\xc1\x12\x65\xef\x8a\xc9\x7e\x95\x37\x45\x30\x25\x56" "\x88\x1b\xa0\xcb\x59\x0f\xef\x27\x1c\x0a\xbb\x19\x3f\xb8\x4d\x18\xee" "\x3f\x24\xd9\x97\x6a\xe8\x16\xb8\x57\xd6\xf6\x8d\x1f\xdf\xe1\x0b\x31" "\x2c\x79\x9f\xe0\x14\xde\xbf\x87\x5d\x04\xbf\xf8\xb4\xf3\x87\x85\x9e" "\x97\xc6\xbf\x13\xf7\x08\x3c\x28\xa2\x04\x5a\x0b\x5e\xb0\x9c\x94\xe7" "\x81\xa1\x65\x96\x5e\x86\x17\xc0\xef\xed\x17\x01\xea\x96\x67\xae\xca" "\x26\xd9\x57\x7e\xa7\xb1\x24\x2e\x1d\x91\xb2\x5d\x6a\x66\x75\x6c\xc6" "\x27\x64\x8a\x29\x3b\x9f\x43\x45\x96\x6b\xc4\x69\xfa\xfa\xed\xdc\x11" "\x18\xd0\x97\x2b\xd5\xc7\x75\x1a\x1f\x51\xe5\x98\x9f\xd9\x52\xf3\x14" "\xae\x10\x41\x7c\x97\xb4\x1e\x60\xeb\xfb\xc4\x7e\x49\x64\x86\xfa\x4a" "\x89\xfd\x16\xae\xa7\xfa\x1e\xab\xeb\xd2\x6e\xb2\xa3\x7a\x3e\x2b\x35" "\x1e\x0c\x9d\x2f\x67\xb2\xe5\xbe\x0f\x92\x1a\xdc\x9b\x60\x45\xb0\x45" "\x94\x8e\x51\x03\xaf\x0e\x50\x50\xb9\xc0\x79\x9b\x51\x3c\x00\x86\x5d" "\xee\xbd\xa7\x30\xde\x53\x8f\x95\x6c\xeb\x61\x64\xe0\x8b\xd6\xf5\x86" "\x55\xa2\x94\xb4\xb4\x4f\xc6\x53\x09\xb3\x0f\x9c\x00\xf9\x2e\xf5\xbd" "\x5b\x91\x1a\x3d\x83\x0f\x72\xc2\x58\xb1\x95\x21\xbb\x8e\x80\xdb\x02" "\x12\x99\x54\xef\xb6\x14\x23\xf5\x18\xd2\xc5\xf3\x65\x87\x30\x38\x90" "\xca\xd9\xa9\x3f\xa4\xf4\xbc\xd0\xe2\x4c\x67\xdb\x67\x9c\x67\xea\x59" "\xc1\x35\x0b\x84\x42\x57\x76\x32\xd5\xe8\x73\x58\x33\xf3\xda\xf5\xa7" "\x4b\xc7\xbd\x82\x65\x9a\x81\xbe\xba\x8c\x88\x96\x32\xef\xe0\x3c\xd2" "\x41\x87\xae\xe8\x56\xcf\x65\x9e\x16\xe1\x95\x46\x4f\x52\xf2\xb9\x84" "\xfc\x7a\x29\x9e\x7b\x2a\xa5\x39\x79\xa1\x47\xeb\xed\x35\x70\x5d\x5e" "\x89\x69\x16\x66\x53\x6f\x2f\xeb\xac\xfc\xef\x9b\x32\xd1\x49\x52\xf9" "\x58\xb7\x25\x12\x86\x9e\x4f\x6a\x0a\x34\x17\x69\x18\x21\x78\x88\xb1" "\xeb\x8b\x89\x32\x2e\xbb\x6b\xb1\xde\xad\x2b\x47\x44\xe7\x28\x47\x98" "\x80\xdb\x70\xe6\x14\x7e\xda\xff\x6c\x3f\x08\x3f\x18\xe0\x69\x6b\xdb" "\xd7\x8c\xf0\xbd\xa1\x4d\x9f\x42\xe5\xc1\x07\x7c\xed\x00\x04\x1a\xad" "\xff\x90\x47\x0a\xac\xec\x0e\x48\xe2\xa5\xf2\xa0\xed\x37\x81\x8a\x17" "\x3b\x96\x06\x1e\x8c\x5b\xf2\x4c\x0b\xde\x9e\x09\xf9\xe0\xdd\xb8\xe1" "\x33\x06\xef\x1d\x4e\xb8\x04\x3e\xba\xdd\xe5\xd7\x55\x3e\x52\x12\xec" "\xd4\x69\x1e\xb4\x26\x25\x1f\x9d\x67\x20\xb8\x27\x6a\xc5\x43\xdd\xe0" "\x23\x99\xa3\x5d\x97\x4b\x22\xc1\x72\x7d\x4b\x6d\xf0\x19\x57\xca\xe4" "\x74\x43\xb7\x06\xd4\x31\x65\xe0\x1d\x69\x32\xb1\x36\xf5\x61\xce\x83" "\x74\x31\x25\x4c\xfb\x2a\x6e\x7d\x80\x70\xa2\xd3\x80\x5a\xaa\x15\xb3" "\xc1\x0c\xcd\x0c\xda\x2e\x9b\x41\x8c\xe9\xef\x38\x0e\x5d\x08\x21\x77" "\x52\xe1\x2b\x3b\x89\x2d\x03\xa9\x49\x5c\x83\xd7\x8d\x67\x46\x12\xfd" "\xe5\xa6\x77\x38\xb2\xd4\x64\x9c\xe4\x46\x06\xec\xce\x6b\xf3\xbd\x12" "\x93\xec\xa2\x46\xa8\x36\x43\xe4\xf1\xc7\xba\x36\x2b\x11\x0e\x07\xc8" "\x47\x9f\x21\x6e\x3d\x4a\xfc\x4f\xcb\x8d\x08\x20\xc8\xab\x70\x2a\x66" "\xd8\x18\x3e\x83\x17\x45\x97\x03\x5e\x92\xb9\xb5\x00\xde\xe0\x8c\x80" "\xb9\x27\xb4\x2c\x36\x89\xc7\xc9\x61\x7b\x41\x12\xc9\xe5\x4c\xbf\xa5" "\x1e\x98\x9b\x5f\xd4\x2b\x80\xc5\x95\xd3\xed\xd2\x65\xf1\x38\xe8\x12" "\x8c\xfb\xbb\x0e\x4f\x53\xaa\x0a\xa9\x5a\x2e\xcd\xa4\x51\x8b\x2e\x56" "\x4c\x42\xd5\xde\x76\x71\x56\x08\x43\xd0\x81\x03\xb9\xbd\xce\xac\x5f" "\xde\xb0\xb1\x26\x6f\x72\xf4\x91\x26\x5d\xd2\xb2\xb8\x0a\x22\x5a\x50" "\x95\x51\x67\xda\x18\x12\x36\x4e\xa3\x40\xd8\x2f\x61\x53\x54\x01\xba" "\xe6\xf3\x14\x0a\x87\x95\xd7\xc3\x18\xa6\x4c\xee\x46\x76\x62\x72\x44" "\x93\x09\x57\xb2\xf0\xb2\x27\xbe\x21\xb7\x2d\x90\x02\x7e\x6a\x5a\x7a" "\xf3\xc5\x94\x70\xc7\x4d\xcd\xb7\x1d\x1e\xf0\x90\xa0\xf4\x9c\x91\xac" "\xd6\x04\xc7\x92\x38\x5c\x8f\x4e\x08\x57\x65\x29\x28\x22\xee\x5e\xca" "\x03\x88\x5f\xd6\xbf\xea\xca\x9b\x3b\xbb\xde\xac\x93\x9f\x78\x46\xa4" "\x87\xc5\xa4\x83\xed\x1e\x4f\xbf\x37\xc9\x38\x86\xea\x27\xbb\x35\xc8" "\x12\x08\x9b\x90\x0b\x77\xc7\xc9\x24\x14\x7e\x97\xb6\xa7\x15\x33\x61" "\x07\x50\xbc\x84\x92\x10\x12\xaa\x81\x58\xb2\x13\xf7\x60\x1d\x93\x4a" "\x20\xbd\xd1\xf7\x57\xb0\xa3\x30\x42\xa6\x83\xaf\x6b\x90\x69\xf3\x90" "\x00\x59\xd7\xf8\x0f\x9f\xdc\xc9\xf3\x3e\xce\x8c\xf7\x88\x8d\xc9\xe2" "\x4f\x1f\xc6\xca\x0e\xcc\xcf\x16\x1c\x53\x34\xc6\x0f\x44\x0f\xeb\x3a" "\xcf\xc3\xd1\x15\x01\x1c\x17\x6d\xfa\x05\x31\x4c\x5b\xcf\x08\x9e\x3c" "\x82\xbb\xe7\x68\x0a\x3e\xef\xdc\xdb\xf3\xac\x27\x26\x5b\x77\x9d\xb4" "\xf4\x9b\xad\xe0\x12\x8e\xda\x6e\x29\xbc\x59\x33\xef\x45\x46\x01\xdb" "\x1b\x49\x62\x8f\xd3\x9a\xb9\x38\x79\x4f\xa4\x6a\x33\x93\x7a\x08\x6e" "\xce\x70\x50\xd3\x1a\x21\x52\x4e\x2f\x0c\xac\xb3\x07\xed\x44\x12\xa2" "\x07\x86\x36\xf9\xcc\x8e\x11\xc5\xc3\x1c\xc0\xf9\xed\xd7\xbe\x6d\x1e" "\x31\xa1\x51\x3a\x58\xe2\x52\x15\xf5\xa2\x42\x45\xcb\x98\x85\x89\xe6" "\xd5\xe5\x11\x9f\x4f\x65\x57\xc6\x97\xfa\xd7\xd1\xc3\xa7\xe3\xba\xe0" "\x64\xdb\x43\x82\x70\x1e\x33\xe4\x8c\x5b\x6a\x52\xfe\x91\x41\xa3\x85" "\xef\x23\x25\xc6\xf7\x78\x11\x34\x60\x7e\x98\xbf\xd0\x2c\x43\xd6\xde" "\xef\xaa\x86\x17\x00\x38\x8b\x40\xd9\x8e\x94\x1c\xfb\x2d\xde\xc2\x09" "\xf9\x77\xe8\xb9\xf9\x3d\x29\xfd\xbf\x85\xe3\x01\x0c\xe7\xcd\x62\x2e" "\x8c\x75\xce\x3d\xf5\x35\xe3\x92\x05\x2b\x6d\x65\xd5\x04\x2d\x2a\x6e" "\x78\xbb\xfe\x5e\xe1\x46\xe8\xb1\x8d\x4b\xc7\xfb\x02\x4d\xbb\xa5\x7c" "\xbe\x04\x02\x20\x55\x93\x76\x6a\x31\x39\x50\xcb\x71\x9d\x00\xc6\x7b" "\xb6\xb3\xbc\xaa\x10\x15\xb8\x9e\x82\x0f\x11\x47\x5a\xfc\xe6\x55\x94" "\x71\x13\xa7\xc3\xdc\xbb\x52\x42\x7f\x09\x0d\xf9\x94\xfb\xf0\x76\xdb" "\x86\x7e\x0a\xb3\xf6\x12\x5f\xb8\x88\x4c\x1d\x13\xff\x3e\x99\xfa\xb5" "\xfa\x8b\x9f\x0b\x72\xcb\x44\xdb\x4d\x0a\x48\xd9\xec\x17\xf9\x73\x37" "\x64\xe2\x13\xc4\x0a\x15\xad\x82\x1e\xc6\x0e\x4a\x88\xcb\x2f\xd9\xdd" "\x9a\x4f\x35\xe6\xa7\x08\xf4\xb7\x40\x67\xf4\xbe\x3f\x03\xa9\x52\x61" "\xf6\xb1\x91\xdf\x53\xfa\x5b\xb5\x16\x4e\x4a\x16\x46\x30\xad\x9c\xe3" "\x90\x87\xaa\x95\x0a\xd9\xe6\x0c\xd2\xc4\x4f\xa2\x23\x7c\x49\xab\xf8" "\x58\xc9\x77\x37\xfd\x21\x18\x0f\xd0\xb9\x54\x27\x67\x15\x0f\xbe\xd3" "\xf3\x9a\x29\xe6\xc3\x48\x4d\x94\x37\xe1\x5d\x24\x39\xf2\xa5\x4b\x2a" "\x1a\xc7\xe6\x3e\x6c\x43\x66\x58\xab\xc3\xf1\xdd\x52\xd9\x84\xf6\xc6" "\x90\x17\x68\xa8\xcf\x2e\xc9\x8e\xbf\x44\xe9\x0e\x0f\xc0\xc2\x4f\x89" "\x57\xc6\x2e\x05\xd8\xea\xce\xca\xf2\x5b\x17\x8f\xd7\x10\xaf\x60\x9a" "\x8a\x1b\xc4\xd7\x95\x5b\x5f\x0c\xb4\xf4\x8a\x37\x68\x5e\x63\x04\xea" "\x58\x43\x57\x3a\x1a\xbf\xf3\x7b\x51\x06\x91\x6c\x83\xc8\xf2\x3f\x93" "\x9a\x0d\xc4\x3a\xea\x8d\x19\x61\x91\xed\x6e\x18\xdd\x79\x39\x90\xd1" "\xf3\x7d\x7d\xe0\xbf\x8f\xac\x6f\x46\x98\x43\x72\x4e\xaa\xb8\x6b\xe8" "\xa4\x83\xbe\x28\x1b\x8e\xcf\x4a\xa2\x9d\x9c\x57\x19\x51\xcd\xe8\xcd" "\x8c\x2a\xaf\x4d\x59\x7a\xc2\xcb\x48\xf2\x3f\xad\x14\x59\x16\x92\x0a" "\x55\xd6\x55\x92\x49\x40\x57\x3b\x64\xdb\xd4\x2a\x28\x0c\xdd\xc4\x81" "\x04\x34\xf9\x30\x18\x3f\xdb\xbd\xc7\x2d\xb1\x49\x1a\x4c\x9d\x44\xda" "\xf9\xb1\xbc\x2f\xec\xd8\x55\x50\x86\x48\x06\x30\x40\xfa\xeb\x12\x5d" "\xa0\xe6\x8e\x6c\xd2\x00\x21\x81\x11\x8e\xec\xff\x0b\xe1\xdd\x8e\xae" "\x72\x6a\xf5\xd4\x51\x63\x0c\xd6\x51\x19\xc5\x2a\xbd\x6d\xde\xd9\x7f" "\x93\x12\x02\xf1\x86\xa1\x8c\x4b\xa3\x4b\xc2\xc3\xf6\xd7\x65\xe2\xd8" "\xf4\x45\xe9\x59\xf2\x6f\xfb\x55\x82\x7c\xf3\xff\x2c\xc0\x28\x9f\x17" "\xb8\x2c\x8c\xaa\x5a\x2d\x3d\x54\x30\x6a\x30\x0f\x0e\xf4\x2b\xbe\x4e" "\xa9\xe3\x2c\x5d\x4b\x11\x73\x94\x27\x45\xcd\xcf\xe4\xf5\xd1\x61\x9e" "\xef\xaf\x8d\xc6\x00\xaf\xbc\x91\x71\xd5\x16\xf7\xf4\xb3\x53\x31\xd0" "\xb9\xbe\x00\x51\x32\xff\xad\x5e\x9d\xf5\x97\x10\x27\x8b\x84\x2a\xfb" "\x62\x6a\x78\xb8\xb8\xb3\x7f\xc3\xa8\x94\xdc\x70\x5b\x2d\x4e\x09\x40" "\xcb\x26\x4e\x9d\xc8\x7e\xaa\x14\x8e\x6f\xaf\x78\x12\x54\x62\xf2\x8a" "\x0f\x1d\x7b\x3c\x65\xa2\x91\xb8\x57\x13\xfa\x71\xff\xc4\x78\xf6\x60" "\x1e\x87\x16\xc3\x54\x89\xf4\xa5\x4e\xd0\xc7\x0b\xcf\xd5\x50\x2c\xc9" "\x13\x74\xdc\x3c\x98\x20\x75\xc5\x18\x03\x98\xbc\x6b\x19\x5b\x36\xe7" "\x9d\xcc\x40\x87\xcb\x99\x0c\xc9\xd9\x64\xa1\x50\xe0\xdc\xc8\x87\xd4" "\x96\xbd\xd2\x7c\x3f\x29\x87\x36\xb9\xad\x83\x45\xba\x2d\xf4\x60\x21" "\x96\x4c\xf4\x3c\x38\xf9\xd2\xe9\x4b\x77\xbe\xe2\xb7\xbf\x05\x9e\x08" "\x70\xff\x9f\x17\xb9\xef\x13\x20\xc0\xaa\x88\xa2\xfa\x97\x81\xe9\x01" "\x7a\xb6\x46\x43\xde\x9a\x3d\xf9\xed\x4b\x8c\xfd\x8f\xa0\x80\xa2\xe4" "\x94\x40\x95\x20\xb7\x95\xeb\x15\x17\xd2\x24\xa0\x5e\x45\x0c\x4c\x8a" "\xe0\xe9\xfd\x29\xc0\xe7\x2d\x3a\x59\x2c\xce\x55\xf6\xdd\x51\x07\xf2" "\x12\x14\xe1\xa3\xf9\xa5\x44\x83\x84\xde\x06\x14\x9f\x95\x9e\xc0\xc9" "\x27\x90\xf0\xff\x22\x9a\xb4\x97\x11\x71\xf1\xc5\x28\xae\x6d\x09\x5e" "\xc0\x07\xbf\x5e\x7f\x55\xd6\x23\xa6\x81\x94\xe9\xea\x8e\xdc\x3a\xf4" "\x18\x07\x53\x38\x32\x8f\x24\xe7\x50\x43\x41\xc2\x2b\xef\x72\xc2\x96" "\x3f\xc9\xc3\x23\x7b\xa9\x90\xd2\x9c\x2c\x8a\xa3\x00\x73\x95\xf6\xd9" "\x6e\x95\xb4\x0e\xe1\xb1\x8d\xba\xd5\x50\xbf\x39\xd0\xd9\x82\x68\xcb" "\x74\xdd\xe7\x6d\x98\x7c\x31\x69\xc9\x06\x74\x95\xfb\x1b\x88\x50\x8b" "\xbb\x7e\x94\xcb\xb7\xdf\xc1\x5c\x03\xb1\xd5\xb1\x63\x13\x2c\x8a\x46" "\x89\x06\xf0\x2d\x42\x2a\x8c\xf9\x8d\x0b\x43\x2b\x57\x79\xdd\x96\x20" "\x74\xb7\x2d\xd2\x74\x39\xb2\xe9\x43\x12\xf5\x73\x43\x5e\x5a\xa8\x46" "\x64\x43\x2c\x19\x14\x83\x9c\xd6\xe1\x72\x18\x6c\xe9\x3e\xeb\x1d\x7c" "\xb0\x65\x96\x96\xd9\xd5\x50\xeb\x3b\x18\x5f\x8c\x6e\xe1\x6e\x53\xf7" "\x82\x33\xcb\xe7\x09\xf9\x9d\x28\x79\xd6\x3d\x93\xf7\xd0\xed\x13\x32" "\x41\xd2\xf1\xab\x1e\xb2\xc5\x66\x05\xca\x0f\x0e\x01\xc3\x9a\xb0\xba" "\x23\x70\xfe\x5c\x4e\x68\xde\x05\x61\xb5\x17\xff\x9a\x10\x02\x3c\x38" "\x62\x36\x39\x83\x72\xc7\x17\x6e\x35\x44\x3e\x2c\xf5\xdd\x6c\xbe\xd9" "\xf2\x33\x95\xf2\x31\xe6\xa5\x4f\x65\x62\x6c\xb5\x86\x0a\x8b\x72\x12" "\x2c\x34\x66\x41\x19\xe7\xc4\x72\x04\xef\x4a\x70\x58\x3a\x00", 8192)); NONFAILING(*(uint64_t*)0x20001940 = 0); NONFAILING(*(uint64_t*)0x20001948 = 0); NONFAILING(*(uint64_t*)0x20001950 = 0); NONFAILING(*(uint64_t*)0x20001958 = 0); NONFAILING(*(uint64_t*)0x20001960 = 0); NONFAILING(*(uint64_t*)0x20001968 = 0); NONFAILING(*(uint64_t*)0x20001970 = 0); NONFAILING(*(uint64_t*)0x20001978 = 0); NONFAILING(*(uint64_t*)0x20001980 = 0); NONFAILING(*(uint64_t*)0x20001988 = 0); NONFAILING(*(uint64_t*)0x20001990 = 0); NONFAILING(*(uint64_t*)0x20001998 = 0x200006c0); NONFAILING(*(uint32_t*)0x200006c0 = 0x96); NONFAILING(*(uint32_t*)0x200006c4 = 0); NONFAILING(*(uint64_t*)0x200006c8 = 0); NONFAILING(*(uint64_t*)0x200006d0 = 4); NONFAILING(*(uint64_t*)0x200006d8 = 0); NONFAILING(*(uint64_t*)0x200006e0 = 8); NONFAILING(*(uint64_t*)0x200006e8 = 0); NONFAILING(*(uint32_t*)0x200006f0 = 0); NONFAILING(*(uint32_t*)0x200006f4 = 0xfffffffe); NONFAILING(*(uint64_t*)0x200006f8 = 0); NONFAILING(*(uint64_t*)0x20000700 = 0); NONFAILING(*(uint64_t*)0x20000708 = 0); NONFAILING(*(uint64_t*)0x20000710 = 0); NONFAILING(*(uint64_t*)0x20000718 = 0); NONFAILING(*(uint64_t*)0x20000720 = 0); NONFAILING(*(uint32_t*)0x20000728 = 0); NONFAILING(*(uint32_t*)0x2000072c = 0); NONFAILING(*(uint32_t*)0x20000730 = 4); NONFAILING(*(uint32_t*)0x20000734 = 0x4000); NONFAILING(*(uint32_t*)0x20000738 = 3); NONFAILING(*(uint32_t*)0x2000073c = 0); NONFAILING(*(uint32_t*)0x20000740 = 0); NONFAILING(*(uint32_t*)0x20000744 = 0); NONFAILING(*(uint32_t*)0x20000748 = 0); NONFAILING(*(uint32_t*)0x2000074c = 0); NONFAILING(*(uint64_t*)0x200019a0 = 0); NONFAILING(*(uint64_t*)0x200019a8 = 0); NONFAILING(*(uint64_t*)0x200019b0 = 0); NONFAILING(*(uint64_t*)0x200019b8 = 0); NONFAILING(syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x2000c280, /*len=*/0x2000, /*res=*/0x20001940)); break; case 6: NONFAILING(memcpy((void*)0x20000200, "./file0/../file0/file0\000", 23)); syscall(__NR_rmdir, /*path=*/0x20000200ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; install_segv_handler(); loop(); return 0; }