// https://syzkaller.appspot.com/bug?id=da8d0f300157c342f3922aa936635922202b3260 // 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 #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } //% 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 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, loopfd = -1, 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) { memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; 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) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } 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) { int i, call, thread; for (call = 0; call < 9; 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[3] = {0xffffffffffffffff, 0x0, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x20000000, "msdos\000", 6); memcpy((void*)0x20000080, "./file0\000", 8); memcpy((void*)0x20000780, "dots", 4); *(uint8_t*)0x20000784 = 0x2c; memcpy((void*)0x20000785, "dots", 4); *(uint8_t*)0x20000789 = 0x2c; memcpy((void*)0x2000078a, "nodots", 6); *(uint8_t*)0x20000790 = 0x2c; memcpy((void*)0x20000791, "dots", 4); *(uint8_t*)0x20000795 = 0x2c; memcpy((void*)0x20000796, "nodots", 6); *(uint8_t*)0x2000079c = 0x2c; memcpy((void*)0x2000079d, "dmask", 5); *(uint8_t*)0x200007a2 = 0x3d; sprintf((char*)0x200007a3, "%023llo", (long long)1); *(uint8_t*)0x200007ba = 0x2c; memcpy((void*)0x200007bb, "time_offset", 11); *(uint8_t*)0x200007c6 = 0x3d; sprintf((char*)0x200007c7, "0x%016llx", (long long)0xd4); *(uint8_t*)0x200007d9 = 0x2c; memcpy((void*)0x200007da, "time_offset", 11); *(uint8_t*)0x200007e5 = 0x3d; sprintf((char*)0x200007e6, "0x%016llx", (long long)0x5d); *(uint8_t*)0x200007f8 = 0x2c; memcpy((void*)0x200007f9, "nodots", 6); *(uint8_t*)0x200007ff = 0x2c; memcpy((void*)0x20000800, "time_offset", 11); *(uint8_t*)0x2000080b = 0x3d; sprintf((char*)0x2000080c, "0x%016llx", (long long)0x1182); *(uint8_t*)0x2000081e = 0x2c; memcpy((void*)0x2000081f, "flush", 5); *(uint8_t*)0x20000824 = 0x2c; memcpy((void*)0x20000825, "check=relaxed", 13); *(uint8_t*)0x20000832 = 0x2c; memcpy((void*)0x20000833, "nodots", 6); *(uint8_t*)0x20000839 = 0x2c; memcpy((void*)0x2000083a, "nodots", 6); *(uint8_t*)0x20000840 = 0x2c; memcpy((void*)0x20000841, "nodots", 6); *(uint8_t*)0x20000847 = 0x2c; memcpy((void*)0x20000848, "nodots", 6); *(uint8_t*)0x2000084e = 0x2c; memcpy((void*)0x2000084f, "dots", 4); *(uint8_t*)0x20000853 = 0x2c; memcpy((void*)0x20000854, "usefree", 7); *(uint8_t*)0x2000085b = 0x2c; memcpy((void*)0x2000085c, "dots", 4); *(uint8_t*)0x20000860 = 0x2c; memcpy((void*)0x20000861, "gid", 3); *(uint8_t*)0x20000864 = 0x3d; sprintf((char*)0x20000865, "0x%016llx", (long long)0); *(uint8_t*)0x20000877 = 0x2c; memcpy((void*)0x20000878, "umask", 5); *(uint8_t*)0x2000087d = 0x3d; sprintf((char*)0x2000087e, "%023llo", (long long)5); *(uint8_t*)0x20000895 = 0x2c; memcpy((void*)0x20000896, "dots", 4); *(uint8_t*)0x2000089a = 0x2c; memcpy((void*)0x2000089b, "check=normal", 12); *(uint8_t*)0x200008a7 = 0x2c; memcpy((void*)0x200008a8, "appraise_type=imasig", 20); *(uint8_t*)0x200008bc = 0x2c; memcpy((void*)0x200008bd, "fowner", 6); *(uint8_t*)0x200008c3 = 0x3d; sprintf((char*)0x200008c4, "%020llu", (long long)0); *(uint8_t*)0x200008d8 = 0x2c; memcpy((void*)0x200008d9, "seclabel", 8); *(uint8_t*)0x200008e1 = 0x2c; memcpy((void*)0x200008e2, "fsuuid", 6); *(uint8_t*)0x200008e8 = 0x3d; *(uint8_t*)0x200008e9 = 0x36; *(uint8_t*)0x200008ea = 0x66; *(uint8_t*)0x200008eb = 0x36; *(uint8_t*)0x200008ec = 0x65; *(uint8_t*)0x200008ed = 0x37; *(uint8_t*)0x200008ee = 0x61; *(uint8_t*)0x200008ef = 0x61; *(uint8_t*)0x200008f0 = 0x38; *(uint8_t*)0x200008f1 = 0x2d; *(uint8_t*)0x200008f2 = 0x56; *(uint8_t*)0x200008f3 = 0x63; *(uint8_t*)0x200008f4 = 0x30; *(uint8_t*)0x200008f5 = 0x32; *(uint8_t*)0x200008f6 = 0x2d; *(uint8_t*)0x200008f7 = 0x65; *(uint8_t*)0x200008f8 = 0x32; *(uint8_t*)0x200008f9 = 0x39; *(uint8_t*)0x200008fa = 0x34; *(uint8_t*)0x200008fb = 0x2d; *(uint8_t*)0x200008fc = 0x65; *(uint8_t*)0x200008fd = 0x39; *(uint8_t*)0x200008fe = 0x63; *(uint8_t*)0x200008ff = 0x18; *(uint8_t*)0x20000900 = 0x2d; *(uint8_t*)0x20000901 = 0x62; *(uint8_t*)0x20000902 = 0x64; *(uint8_t*)0x20000903 = 0x30; *(uint8_t*)0x20000904 = 0x38; *(uint8_t*)0x20000905 = 0x61; *(uint8_t*)0x20000906 = 0x37; *(uint8_t*)0x20000907 = 0x62; *(uint8_t*)0x20000908 = 0x79; *(uint8_t*)0x20000909 = 0x2c; memcpy((void*)0x2000090a, "dont_appraise", 13); *(uint8_t*)0x20000917 = 0x2c; *(uint8_t*)0x20000918 = 0; memcpy( (void*)0x20000940, "\x78\x9c\xec\xdd\xbf\x8a\x13\x51\x14\x07\xe0\x93\x98\x7f\x58\xa5\x13" "\xc4\x62\xc0\xc6\x2a\xa8\x4f\x10\x91\x08\xe2\x80\xa0\xa4\xd0\x4a\x21" "\xda\x24\x22\x98\x66\xb4\xca\x63\xf8\x80\xfb\x00\x4b\xaa\x74\x59\x36" "\x13\x32\xbb\x21\xdb\x2c\x24\x37\x9b\x7c\x5f\x93\x03\x3f\x2e\x39\xf7" "\x16\x77\xaa\x39\xf3\xed\xd9\xaf\xf1\xe8\xf7\xf4\xe7\xc5\x93\xff\xd1" "\xe9\xd4\xa2\xde\x8f\x7e\x2c\x6a\xd1\x8d\x7a\xac\xb4\x23\x66\x01\x00" "\x9c\x92\xc5\x72\x19\x97\xcb\x52\xea\x5e\x00\x80\xc3\xf0\xfc\x07\x80" "\xf3\xf3\xf9\xcb\xd7\x0f\x6f\xf2\x7c\xf0\x29\xcb\x3a\x11\xf3\x59\x31" "\x2c\x86\xe5\x6f\x99\xbf\x7b\x9f\x0f\x5e\x66\x2b\xdd\x6a\xd5\xbc\x28" "\x86\x8f\x36\xf9\xab\x32\xcf\x6e\xe7\xcd\x78\xbc\xce\x5f\xef\xcc\x5b" "\xf1\xe2\x79\x99\x5f\x67\x6f\x3f\xe6\x5b\x79\x3b\x46\xfb\xdf\x3e\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24" "\xd1\xcb\x36\x76\xce\xf7\xe9\xf5\xee\xca\xcb\xea\xc6\x7c\xa0\xad\xf9" "\x3d\x8d\x78\xda\x38\xd8\x36\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xe0\x41\x9b\xfe\xfd\x37\xfe\x3e\x99\xfc\xf8\x73" "\xc6\x45\x73\x7d\x16\xc7\xd2\xcf\x29\x14\xf5\xf5\x99\xa6\xf9\xf7\xec" "\x38\x0e\x61\x12\xf7\x5b\xde\x8a\x88\xe4\xcd\x57\x77\x44\x3b\xc5\xc5" "\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x67\xa8" "\x7a\xe9\x37\x75\x27\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x90\x4e\xf5\xfd\xff\xfd\x15\xa9\xf7\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\xc0" "\xe9\xbb\x0a\x00\x00\xff\xff\x58\xb3\x2e\x56", 402); syz_mount_image(/*fs=*/0x20000000, /*dir=*/0x20000080, /*flags=*/0, /*opts=*/0x20000780, /*chdir=*/-1, /*size=*/0x192, /*img=*/0x20000940); break; case 1: memcpy((void*)0x20002080, "/dev/fuse\000", 10); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x20002080ul, /*flags=*/0x42ul, /*mode=*/0ul); if (res != -1) r[0] = res; break; case 2: memcpy((void*)0x200020c0, "./file0\000", 8); memcpy((void*)0x20002100, "fuse\000", 5); memcpy((void*)0x20002140, "fd", 2); *(uint8_t*)0x20002142 = 0x3d; sprintf((char*)0x20002143, "0x%016llx", (long long)r[0]); *(uint8_t*)0x20002155 = 0x2c; memcpy((void*)0x20002156, "rootmode", 8); *(uint8_t*)0x2000215e = 0x3d; sprintf((char*)0x2000215f, "%023llo", (long long)0x4000); *(uint8_t*)0x20002176 = 0x2c; memcpy((void*)0x20002177, "user_id", 7); *(uint8_t*)0x2000217e = 0x3d; sprintf((char*)0x2000217f, "%020llu", (long long)0); *(uint8_t*)0x20002193 = 0x2c; memcpy((void*)0x20002194, "group_id", 8); *(uint8_t*)0x2000219c = 0x3d; sprintf((char*)0x2000219d, "%020llu", (long long)0); *(uint8_t*)0x200021b1 = 0x2c; *(uint8_t*)0x200021b2 = 0; syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x200020c0ul, /*type=*/0x20002100ul, /*flags=*/0ul, /*opts=*/0x20002140ul); break; case 3: res = syscall(__NR_read, /*fd=*/r[0], /*buf=*/0x200021c0ul, /*len=*/0x2020ul); if (res != -1) r[1] = *(uint64_t*)0x200021c8; break; case 4: *(uint32_t*)0x20004200 = 0x50; *(uint32_t*)0x20004204 = 0; *(uint64_t*)0x20004208 = r[1]; *(uint32_t*)0x20004210 = 7; *(uint32_t*)0x20004214 = 0x1f; *(uint32_t*)0x20004218 = 0; *(uint32_t*)0x2000421c = 0; *(uint16_t*)0x20004220 = 0; *(uint16_t*)0x20004222 = 0; *(uint32_t*)0x20004224 = 0; *(uint32_t*)0x20004228 = 0; *(uint16_t*)0x2000422c = 0; *(uint16_t*)0x2000422e = 0; memset((void*)0x20004230, 0, 32); syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x20004200ul, /*len=*/0x50ul); break; case 5: memcpy( (void*)0x20004280, "\x28\x6e\x31\x7e\x6c\x24\x35\xe5\xb1\x33\xad\xb8\x61\x33\xc7\x20\xda" "\xb3\x48\x8d\x32\xb2\xe5\xec\x4f\x67\x55\x9c\xbd\xb4\x64\x0f\xe9\x95" "\x7e\x8d\x36\xf9\x29\x4d\xfe\xba\x59\xe4\xcd\x82\x4d\xd1\xba\x39\x1a" "\x89\x8f\xed\x13\xbb\xe2\xbd\xf0\x9b\x61\x09\x94\x51\x96\x62\x56\xdc" "\x47\xfc\xde\x19\x2c\xc2\x1b\xfe\xad\xef\xc2\xdb\x54\x3c\xe1\xa5\x84" "\xff\xbd\xd6\xa8\x7c\x7e\x3d\x16\x1f\x8e\x58\x45\x92\x89\x9b\x16\x67" "\xad\x4a\xff\x2d\x7e\xc5\xb3\x16\xb1\xbd\xb4\x35\x4a\xec\xdd\x22\xcd" "\xd3\xb9\xa8\xcf\xd1\xd7\xc3\x9f\x34\x8a\x92\xcc\xdb\xf1\x84\xde\x0c" "\x60\x8e\xe0\xdb\xab\x9a\xe4\xac\x24\x18\x65\x85\xed\x4e\xd7\xf1\xad" "\x9b\x31\x4c\xd3\x3c\x16\xae\x74\x3b\x3a\x03\xec\xbf\xa6\x71\x58\xf5" "\xa5\x22\xd7\xa7\x76\x27\x23\xaf\xa0\x40\x47\x03\xc3\xc6\x93\x67\x56" "\x82\x8a\xf7\x62\xb2\xea\x52\x62\x70\xa3\x0f\x19\x6d\xb8\xdb\x12\x08" "\x74\x2d\xcf\x40\x2b\xf5\x91\xa4\xa5\x30\xc0\xd3\xdb\x99\x74\x97\x0a" "\x6d\x81\x68\xa7\x69\x39\x92\xf2\x79\x2b\xec\x4b\x84\x7c\x65\x84\x16" "\xd3\x6a\x44\x93\x4a\x80\xbe\xad\x62\x0e\x73\x2c\x68\xa7\x53\x92\xf3" "\x9e\x3e\xf0\x38\x2c\x92\x60\x9f\x39\xaf\x81\xf3\x16\xd8\x6c\xc4\x42" "\xa2\x82\x7d\x8e\x77\x5d\x27\x04\xb5\x9c\xf5\x2c\x26\xe3\xfb\xb1\x49" "\xed\xcd\x95\x49\x86\xb9\xa4\x01\xa7\xcd\xef\xe3\x5c\x9e\x66\xc0\x74" "\xc6\x2f\xfe\xce\x7e\x9b\x9e\x36\x6f\x13\x0b\x2e\xf1\x1c\x60\xef\x66" "\xd7\xab\x76\x30\x3a\xeb\x5d\x6e\x9a\xaf\x01\xf7\x4b\xb1\x6f\x9b\x63" "\xe7\xc5\xb5\x45\x52\xc6\x71\x49\x8d\xee\x29\x4f\x43\xdd\xff\x46\xc7" "\x07\xb7\xf2\xa7\xf0\x1b\x49\xfa\x13\x06\xc7\x42\x86\xba\xc7\xdb\xd1" "\xb4\xa2\x11\x66\xaf\x4b\xf1\xd4\x7b\xe3\xf5\x09\xbd\xa4\x94\xf0\xa5" "\xb4\xcb\x6c\x1b\x02\x6f\x0d\x5f\x7f\x4e\xff\xb6\x7b\x36\x8e\x63\x04" "\x0f\x4c\x56\x4b\x55\xb4\x98\xb7\xbb\x2f\x4a\x2c\xde\x1c\x51\x22\xf1" "\x58\x2c\x20\xa9\xae\x95\x0f\x17\xd7\x01\xe8\x6a\x35\xa5\x0d\xda\x02" "\xcd\x0f\x07\x56\x55\x4c\xaa\xc3\xe8\x37\x51\x68\xc4\xb1\x2d\xde\x5b" "\x85\xc7\x9d\xee\x8f\x5c\x26\xcb\x6f\xac\x45\x41\x59\xec\xdd\x82\x62" "\xe0\x69\x5c\xcc\x06\xbd\x1a\xfe\x6b\x58\xdc\x9e\xa2\xf3\x50\xe0\x41" "\x8e\xcb\xe6\x79\xcd\xbc\xb8\xaf\xab\xa3\xfc\xdb\xd7\xc2\x35\xe3\x46" "\x23\x99\x3a\x8e\x46\x7a\x91\xa4\xcc\x3d\x41\xac\x80\x5b\x59\xfa\xf8" "\x13\x7c\xbe\xe6\xc3\xab\xbe\xd6\x46\xf7\x98\x5c\x01\x7f\xef\x92\x0d" "\x73\x6e\x12\x7c\x38\x78\x24\x8e\x48\x63\xe8\x89\xcd\x42\xae\x02\xde" "\x68\xa2\x8a\xd2\x9e\xd2\x39\x4d\xa2\x40\x46\xdf\x0a\xeb\xd0\x9d\x13" "\x30\x41\x5f\xfc\xb5\xa0\x9c\xbc\xde\x0b\xad\x13\xad\xab\xdf\x5d\x6b" "\x8e\x99\xff\x19\xac\x30\xfd\x17\x8b\xa4\xfc\x73\x20\xba\xe3\xee\x07" "\x88\x1c\xaa\x66\x78\xff\x7f\xd2\x7d\x55\x0f\x04\x02\x8c\x6b\x32\xf8" "\xad\xf3\x07\x59\xfc\x8d\xd8\xfd\x5e\x22\xf0\x5d\xc0\x14\xf0\xc0\x04" "\x1e\xb2\x5c\x6a\x4b\x7d\xce\x3e\xa5\x35\x1d\x10\x93\x4d\x92\xa7\xac" "\x87\x72\xbc\x08\x7d\x0b\x03\x5e\xf6\xe1\xa4\xdb\xfe\x77\x15\xa7\x8f" "\xc7\x2b\x4a\x04\x3b\x18\x90\xed\xf4\x9d\xd5\xce\x2c\x9c\xf2\xfa\x9f" "\x6f\x95\x43\x3f\x37\x06\xda\xa1\xa1\x73\x18\x50\x17\x80\xa5\x3a\x58" "\xc7\x81\x26\xb9\x13\x0a\x81\xf5\xb0\xc5\x5a\x1f\x3c\x7d\x59\xfc\xb0" "\x32\x48\x66\xd1\x79\x22\x29\x01\xbc\xf4\x8b\x51\xa2\xe8\xcd\xb8\x2e" "\xfd\xc4\x15\x81\xe5\x6c\x43\x08\x4d\x43\x49\x8a\x3a\xd4\x40\x24\x1c" "\x58\x3d\x40\x22\xb3\xd1\xa9\x77\x55\x1c\xfc\xf1\x81\xfa\x9a\xdd\x59" "\x6e\x47\x48\xdb\xce\x8d\x7e\x54\x6a\x5f\xa5\x97\x2e\x0b\x52\xbc\xad" "\xe2\x65\xde\x2e\x89\xd3\xc5\x2c\x8e\x22\x0a\xa1\xd1\x2e\x4e\x30\xbd" "\x03\x04\x13\xb7\xad\xf8\x4b\x00\x27\xbd\xfb\xf2\xf7\x4f\xab\x55\x6c" "\x18\xfa\x94\x03\xfd\x8b\x1d\xbe\xca\x08\xc5\x5d\xb3\x74\x30\x64\xe7" "\x94\xef\xee\xc2\x0b\x28\xcd\x05\x63\x32\x9e\xa1\xb2\xec\x9b\x17\x89" "\xfd\xee\x38\x39\xc9\x2e\x24\x14\xef\xf7\x69\x3f\x15\xa2\x38\x71\x65" "\x65\xaf\x21\x60\x02\x6e\x2c\xa6\xb6\x78\x06\x59\xf1\xcf\x22\xb4\xb9" "\xb2\x51\xf5\xae\x26\xeb\x71\x35\x9b\xc4\xe3\x64\x24\xf0\x12\xbe\x3f" "\xa0\xbc\xe9\xcc\x7e\x56\xac\xbf\x5a\x06\x25\x84\xe8\x3e\xc3\xc2\xe2" "\x97\xe5\xe1\x56\xb8\x7e\x03\x4f\x10\x65\x7d\x08\xc3\xc3\x2c\x5a\xf9" "\x56\x38\x74\xd8\xf3\x64\x68\xd4\xca\xf4\xe3\x9d\xd6\xe4\x8e\x99\xeb" "\xba\xb8\x90\x56\x46\xff\x48\x61\x5b\x68\x4e\xe9\x04\xb9\x91\x0b\xea" "\xa4\xb9\x56\xa1\x9d\x09\x13\x3f\x9a\x44\xb6\x00\xd3\x07\xea\x75\xff" "\x1f\x3f\xa8\xe6\x20\x79\xd8\xa4\x38\x4a\x57\x90\x61\xee\x3f\x18\x0e" "\xe3\x95\x7c\xd1\xb1\x30\x99\x21\x25\x9e\x66\x3b\xe2\x66\xf4\xe9\xd2" "\xb1\x67\x55\x18\x23\x9c\x3b\xdf\x1d\x63\xf6\xfe\xbf\x90\x02\xf1\x32" "\xa5\x18\x0a\x31\x12\x1f\xf6\x43\x06\x97\x3e\x00\x1d\xf5\xa8\x40\x4b" "\x0a\x09\x30\x4e\xdb\xce\x14\x1e\x18\x6b\xa4\x6c\x81\x3a\x8b\x1b\x37" "\x7b\x1e\x02\x7f\x0f\x8a\x97\xee\xf4\x78\x9d\x3c\x81\xc2\x35\x24\x23" "\x28\xd0\xa9\x40\xa6\xf9\x66\xf5\x80\xff\xeb\x0b\x81\x4d\xaf\xbe\xaa" "\x62\x25\x93\xba\x00\x4d\xd5\x4e\x61\xbd\x2d\x96\xb4\x2e\xaa\x82\xdb" "\x34\xbc\xc5\x7f\x30\x62\x8b\x25\x93\xde\x8a\x77\xb2\x83\xb4\xb5\xaa" "\xde\x8a\x3d\x69\xc4\xea\xf7\xf9\xe8\x64\x7b\xe4\xc1\x94\x59\xf4\x53" "\x8b\xec\x9f\x97\xee\x6d\xcb\x7b\x21\x6c\x61\xf6\x95\x65\x4f\x0f\x73" "\xe0\x3d\x78\xc7\xd7\x2c\x6a\x5a\x6b\x3a\x63\x91\x12\x82\x3d\xdd\x6f" "\x12\x95\xfc\x6c\xfb\xb5\xf2\x23\x0a\xf3\x53\x84\x90\xe0\x6e\x92\xd2" "\xf9\xd5\x0b\xf1\x2d\x02\x68\x6a\x60\x35\x26\xdc\x4a\xc9\xeb\xe8\x96" "\x78\x93\xb6\xee\x79\x36\x5c\x09\x75\x4c\x29\x53\x07\xb7\x16\xfc\x57" "\x68\x72\xf8\xfb\xd7\xba\x1a\xa6\x8d\x2c\xec\x62\x87\x46\xc3\xf3\xf2" "\x0a\x23\x9e\x9e\xc8\xc5\x55\xd6\x1c\x4d\xf1\xe7\x57\x8c\x39\x43\x53" "\x26\x73\x82\x70\x6f\x87\xff\xc6\xbd\x17\x98\x05\xaa\x78\xaa\x34\x20" "\xd8\x8c\x08\xf6\x8b\x3c\xec\x52\x5f\xc2\x9d\x4f\xc6\x40\xb6\xbb\x05" "\x3c\x27\x0e\xbb\xf6\x6d\x3e\x32\xc0\x60\x94\xee\x33\x65\x5c\x7a\xba" "\x6d\x33\x0a\xed\x43\x66\x20\xb7\x07\xe5\x24\xd3\x6a\x46\x50\x0d\x00" "\xa3\xbe\x27\x50\xc2\x59\x14\xd2\xc2\x34\x9c\xb9\x94\xbf\x03\x58\xd8" "\xf4\xd2\x48\xff\x5d\xa2\xeb\xe7\xf0\x1b\xdd\x45\x79\xc8\x96\x8a\x8d" "\x37\xe0\x7a\xfd\x1a\xa5\xe5\x04\x59\xb3\x79\xda\x79\x1a\x0d\xd8\x0c" "\xae\xf9\xe8\x53\xa1\x3b\x03\x5c\x54\xe2\x0e\x48\x7a\xb6\x96\x6c\x62" "\xa3\x29\x8a\x65\x26\xbf\xdd\xee\x49\x93\xba\xe7\xfd\xbc\x29\x5d\xf2" "\xde\xa9\xaa\x69\xa0\xb3\xcb\x7f\xf0\x51\xd0\x49\x8b\x84\x54\x12\x1b" "\x9c\xae\x43\xdc\xfa\x75\xcd\x1c\x46\x07\x52\xec\x8f\x01\xbb\x76\xa7" "\x9d\x37\xa9\xec\x64\x65\xf4\x07\xc6\x43\x65\xb9\xea\x40\x01\xcf\x95" "\x41\x25\x7b\xc2\x6a\x33\x5c\x5a\x3a\x82\xea\xe0\x8f\x9b\xbe\x9a\x0f" "\x81\xea\xc9\x52\xb3\x5c\x9b\x81\xf9\x88\x0b\x69\xf4\xc4\xa0\xe3\x7a" "\xad\x15\x32\x53\x02\xfc\x3e\x02\xe5\x50\xee\xce\xfa\x6d\x27\x1a\xac" "\x71\x0d\x73\xae\x04\x45\xcd\x18\x9a\x49\xa7\xeb\x3e\x90\x00\x11\x36" "\xb8\x8e\x47\x4d\x64\x53\x24\xd5\xaa\x4c\xb1\x84\xc0\x63\x08\x00\x7b" "\x1f\x21\xee\x64\x5f\xd9\x25\xf1\x0c\xf0\xce\x88\xf3\x80\x96\x57\x59" "\x0f\x50\x67\xa8\xff\xad\x6d\x12\x3a\xab\xd5\x94\x0e\x73\x0d\x43\x9a" "\x33\x45\xd8\x43\x37\x9a\xf6\x82\xa5\x46\xfe\x32\xb6\xff\xc2\x22\xbe" "\x30\x3d\xe0\x4c\xee\x28\x94\xf7\x38\xb7\x1d\x6e\x6b\xfc\x14\x1b\x7c" "\x74\x2f\xb1\x65\x62\x54\xa1\xaa\x78\xf3\x0c\x0f\xeb\x92\xd3\xc7\x9c" "\xad\x2d\x23\x81\x95\x58\xa6\x02\xfa\x02\xf4\xc4\xe5\x82\x4b\x5b\xb3" "\xdb\xc3\x18\x01\xbf\x46\xa8\x85\x97\xdf\xfd\x45\xc3\x98\xb9\x15\x7c" "\xec\x3b\x18\x7e\xdd\xc3\xfc\x5f\xb1\x7f\xb8\xdd\x10\xce\x66\x6a\x03" "\xec\x45\x9f\x2a\x69\x8b\xbf\x4c\xcc\x9f\x10\x7a\xab\xb1\x17\x0f\x12" "\x68\x72\xfc\xa4\x99\x27\x0c\x82\x4b\xf0\x89\x2d\x21\x4b\xc6\x3a\xa7" "\x0a\x28\x5c\x3d\xca\xee\xdc\xa6\x8a\x7b\xf8\x10\x98\x74\x7e\x6b\x93" "\x80\x38\x1e\x64\x26\xe5\x18\x1d\xef\x93\x77\x3d\x6c\x7b\x3b\x56\x88" "\x7d\x4d\x65\xea\xbe\x15\x53\x30\xe6\x48\x97\x7e\x4a\x31\x3d\x68\xba" "\xa7\x18\x6f\x9d\x8e\x66\x8e\x51\x85\x22\x2e\x5e\xe1\x90\x6a\x94\x15" "\x61\x63\x31\x7e\xa2\x58\xca\x5e\xf8\x09\xdc\x7a\xe4\x14\x9b\xf2\x3e" "\x39\x21\xf9\xa8\x82\x8b\x2f\x6e\x9e\x96\x35\x47\xfc\x53\x1a\xf7\x7a" "\xb1\x7c\x2a\x63\xb1\x88\x2d\x2d\xa9\x23\xec\x25\xf0\x66\x79\x92\x2f" "\x13\x29\xf7\xf4\xd5\xec\x10\xf5\x58\xfd\x9e\xc8\x9e\x31\x12\xac\x0b" "\x5f\x88\x1c\xf4\x91\x29\x82\x4e\x0e\xde\x8a\x52\x59\x2a\x82\x33\x92" "\x45\x2f\x03\x9e\x64\x87\x2d\x3f\x6f\xe2\xec\x3d\x47\xf7\x05\x0b\xa6" "\xb8\x61\x82\x10\x28\x00\xa3\x68\xeb\x2f\xaf\x12\x4c\x12\xa1\x8e\xbe" "\x09\xec\x60\xe4\xe1\x2a\x46\xda\x68\x57\x7d\xae\x31\x18\x8d\x38\x9e" "\x1a\xfb\x7a\x1f\xe7\xe3\x1a\x12\xcb\xe7\xec\xfe\xe9\x82\xbf\x09\xd8" "\xd5\x01\x0d\xdb\xb2\x7a\x7d\x91\x1e\xb4\xd7\x90\xd1\xe2\x16\x65\xc7" "\xa6\xd7\x2d\x90\x46\x46\xd0\x39\x14\x63\x29\x9d\xb2\x8c\x2b\x15\x29" "\xb7\x4e\x76\x56\x57\x12\x02\x85\x9c\x58\xc9\x95\xdc\x1b\x34\x1a\xdc" "\xe2\x0e\x85\xb0\x1f\xd9\x36\x57\x5d\x21\xe7\x5b\xb3\xc1\xfe\xe3\x91" "\x52\x5d\x27\x67\xf8\xe0\xcc\x16\xda\x19\xf1\x69\x1c\x15\x25\xa4\xf6" "\x3c\x48\xcc\x56\x3c\x8e\x5e\xde\xb4\x3a\x5a\xb3\x1b\xf8\x74\x1a\x62" "\x30\x74\x35\xb5\xa5\xe0\x52\x1d\x52\x40\x99\xd5\xfb\x18\x39\x56\xf8" "\x7b\x55\x6b\xf7\xc1\x07\x12\xb4\x9f\xf9\xd8\x72\xbb\x09\x90\x5d\x5c" "\x72\x95\x7c\x33\x2b\x6d\x6c\xbf\x0a\x5d\x30\x44\xc9\xe6\x1c\x6c\xab" "\xd6\x4c\xfd\x24\xec\xbc\xf2\x21\xf2\x4a\x06\x67\xd3\x05\x99\xcc\x94" "\x2b\x52\x2c\xdc\x45\xc3\xba\x0b\x62\x80\x18\x4b\x3a\xac\xa5\xc0\xb0" "\x50\x2d\xa1\xb6\x3e\x39\x15\xc1\xde\x0f\xef\xc1\x0a\xe8\x72\xcf\x98" "\xe5\x6a\x04\xae\xea\x15\x0b\xed\xa3\x78\xe3\x67\x5d\x69\xe5\x69\x6b" "\x80\xde\x52\x8f\x01\xf7\x88\x97\xe9\x81\x87\x08\x21\x9d\x7a\x49\x8e" "\x6b\x77\xfe\x9a\x90\xb7\xbe\x54\x4d\x75\x9a\x18\xe2\x77\xf0\xd0\x70" "\x39\x11\x7d\x20\x66\xe5\x16\xd0\x11\x8d\x0a\xab\x2e\x26\x63\x0b\xf8" "\x00\x69\xf8\x46\x92\xd0\xe8\xe9\x8d\x33\xcf\x53\x05\x01\x94\x7c\xc8" "\x1b\x48\x81\xa5\x83\x52\x55\xbb\xcc\xe8\x2a\xc6\x4b\xe0\xb0\xac\xab" "\x81\x5e\x50\x71\x58\x4b\xd7\xe7\x07\xe7\xb4\x7d\x70\xa0\x33\x35\xd9" "\x23\x8a\x93\x1c\x90\x1d\x1f\xfa\xf0\x16\x37\x63\x47\xee\xda\x7c\xc1" "\x55\x4e\xbc\xd8\xe7\xb0\xbe\xdd\xe4\x40\x83\xf4\x56\x61\xb5\x50\x0e" "\x82\xfc\x95\x99\xf5\x4c\x09\x0a\x8f\xcc\x4a\x6d\x1b\x8d\xf4\x18\xb4" "\x8a\x3c\xf6\x81\xa6\x2e\x0e\x74\x68\x18\x7b\x40\xe0\x24\x74\x77\x21" "\xe7\x57\xfb\xf6\x72\xb9\x17\xaa\x28\x1d\x65\x6b\xf2\xf4\x28\xf4\x84" "\x42\x8b\xb3\x6c\xc7\xa2\xab\xd8\x3a\x45\xb3\xb9\xc2\x16\x4c\x07\x2a" "\xc0\x2a\x7c\xe4\x6d\x84\x3b\x3c\x52\x2f\xb3\xc1\x0e\xec\x74\x36\x5a" "\xfa\xba\xa3\xb1\xff\x74\x22\x9c\x9b\xcd\x14\x2d\xac\x9e\xdd\x23\x62" "\x08\x1b\x8c\x99\xbf\x1a\xb4\xf9\xd5\x7a\x01\x2e\xfa\x2c\xe1\x1a\x52" "\x23\x15\xd8\xa3\x44\x20\x5c\x08\x41\xbd\x6f\x5d\x19\xd9\x94\x49\x1b" "\xf3\xad\x0c\xfb\xb3\xed\x1d\x78\xfd\x62\x14\xb6\x1c\x4b\x94\x6f\x1e" "\x7a\x7c\x6c\x57\x98\x2f\x80\x5d\x86\x5f\x21\xa5\x78\x6b\x94\xe5\x62" "\x9a\xbc\x5f\x8c\xff\xf1\x37\x70\xfa\x94\xc1\x9c\xf1\x5e\x29\x01\x70" "\x80\x2e\xa8\x68\x29\x7f\x0e\x30\xe0\x92\x3e\x75\x0c\x66\x84\xa4\xa4" "\xc8\xbe\xb0\x6c\xd4\x32\x65\xa2\xce\x6d\x76\xe8\xd0\x37\x40\x95\x8e" "\xd6\xc8\x38\xb8\xc8\xd5\xfa\x09\xff\x95\x20\x53\x97\x6c\x1b\x53\x1c" "\xbd\x3d\x9d\x5e\x04\x7c\x1b\x09\x7d\xaf\x20\x0f\x38\x48\xfc\xb5\x2f" "\x3b\xd3\xe0\xdb\x8c\xbe\x40\x8f\xc0\xfb\xa5\x4a\x9b\x2d\x8e\x45\x96" "\x54\x53\x35\xa9\xfd\x1f\xea\xbc\x96\xbb\xe1\x73\x24\x6a\x04\x4a\x70" "\xc6\x8c\xc2\x93\xd9\x6f\xc4\xea\x8f\x9c\x32\x57\x23\xee\xa9\x25\x97" "\xfb\x1d\xaf\x59\x18\x5a\x14\xcb\x6c\x27\x00\xf6\xbe\x50\x1b\x90\xed" "\x65\x0f\xa1\x8d\x85\xb8\x0c\xc7\xed\x5f\xea\xaa\xf6\x0a\xe3\xa3\x43" "\xb9\x1f\x09\x31\x1e\xc8\x37\x56\x35\xc7\x4a\x15\xf1\x83\x21\x2a\xdc" "\x3b\x4d\xd7\xf6\xf1\x98\x4a\x1e\xb4\xd5\x23\x0d\xa8\x01\x09\xd4\xe5" "\x6a\x1a\xcf\x2b\x93\x97\x8c\x70\x03\x65\xd7\x5e\xa0\x90\xa9\x15\x45" "\xc0\x90\xd4\xe3\x00\x75\x64\x26\xef\x5e\x29\x1a\x34\x66\xd7\xb8\x35" "\xd7\xe6\xcf\xfe\x46\xb9\x55\xf0\x7d\x96\x2f\xa8\xe2\x6e\x77\x71\xb5" "\xe2\x34\x87\xcf\xd8\xb0\x7a\xba\x09\x2b\x20\xd2\xf6\xa5\x0c\x4a\x23" "\x9c\xaf\x7d\x3d\x9b\xef\xb2\x42\x58\x6c\x63\x59\x82\x5b\x63\xd8\xec" "\x85\x8b\x1b\x4c\xe0\x0c\xe7\x6b\x99\xc6\xfc\xa9\xf6\xea\xb9\x14\xa5" "\x9c\x50\x55\x9a\xee\x5c\x3a\x86\x3f\x49\xb7\x04\x54\x47\x35\xdb\x25" "\x45\x95\x1c\x85\x2e\x63\xed\xdd\x81\xf0\x66\x91\x8d\xa8\xea\x3b\xb9" "\x01\xd3\x0e\xae\xec\x0f\x27\x4a\x30\xe0\xbb\x19\x10\xa2\x41\x42\x47" "\xff\x24\xbc\x6d\x0e\x5c\x12\x46\x91\x54\x77\x6d\x66\xe3\xaf\x34\xc8" "\xe9\xaa\x0f\x02\x91\x27\xe6\x35\x9c\x47\x68\x8d\xf5\x82\xba\x76\xa3" "\xbc\x9e\x74\xc9\x7b\x8e\xed\x35\x8a\xc2\xd2\x0c\x7b\xae\x81\xc6\xb5" "\xb4\x1b\x18\x9f\x6f\x4f\xbd\x5c\xb9\x46\xa4\xc2\x4c\x0c\x0d\xf4\x77" "\x9d\x23\xec\x85\xcd\x08\xad\x62\x29\xa2\xaf\xf8\x2c\xf2\x9f\x7d\x98" "\x8f\xc3\x2a\x99\xfd\x69\x35\x53\xe4\x2a\xe0\xfe\xa0\x2e\x7a\xa2\xd0" "\x0a\x49\xc2\x40\x0f\x6c\xd9\x2a\x42\x29\x4c\x45\xf4\x00\xfd\xff\x47" "\x9e\x81\xc5\xf8\x49\xf8\x03\x7f\x64\x2b\x5a\x5c\xa1\x2b\x43\x15\xdc" "\xe8\x6b\x68\x0f\x28\xb3\x2f\x27\x3d\x3c\x65\x54\xdb\x5e\xe3\xbb\x25" "\xb9\x12\x23\x22\x2e\xf9\x7a\x63\xdd\xf2\xcd\x8a\xa3\x9c\x12\x29\x70" "\x29\x05\xd1\x22\x9c\xec\xde\x26\x58\xe7\x4f\x83\xda\x12\x32\xa6\x0a" "\x3e\x50\xa9\x53\xb7\x9d\x1d\xad\x6e\x3a\x87\xb6\x7d\x98\x34\x07\x1c" "\x0c\xe2\x94\x5d\x09\x4f\x6a\x00\x45\x2d\x10\x17\x9d\xa3\xf6\xb5\xc7" "\x93\xb9\xc9\x53\xfc\x02\x12\x57\xd1\xd4\xb8\xd6\x7e\xd1\xb4\x8d\x73" "\x54\xc5\xf2\xa3\xe5\x50\x08\x65\x48\x15\xd5\xc8\x2b\x4a\x07\x76\x3a" "\xab\x39\x43\x08\x43\xad\xab\x18\xa9\x5a\xe2\x2b\x99\x3e\x4b\xa9\x6b" "\xc7\x0d\x54\x9d\x00\x4c\xd2\x1e\xac\x15\xf8\x1c\x36\x25\x94\x1c\x09" "\xfa\x4e\x4d\xdd\x70\x08\x10\xb6\x6c\xdc\xdc\xf7\x63\xbd\xba\x73\x3e" "\x79\xb6\xa7\x74\x5f\x9c\xe2\x84\xa1\xa5\x16\xee\xc9\xb8\x4b\xe0\xca" "\x32\xd0\x24\x95\x4f\x90\x5f\xf6\xa5\xb5\xfb\xd3\xfd\x1f\xed\xe8\x81" "\x36\xde\xb2\xac\x80\x73\x53\x48\x90\xb8\xe8\x45\x4d\x7f\x28\x49\x7a" "\xb8\x7a\x7f\xc1\x55\xdf\xdc\x5a\xbd\xe9\x75\x51\xc5\x2d\xf0\x0d\x7c" "\x40\xcf\x33\x51\xdc\x42\xc4\xfc\x18\xec\x4e\xe4\x41\x12\xb0\x56\x17" "\xa1\xb3\x4c\x31\x20\x4a\xef\xc1\xcf\x80\xbb\x47\xc1\xb0\xcc\xd1\x9a" "\x95\xf4\x33\x55\x6e\x13\x5d\x25\x31\x20\xdf\xa9\x0e\xfb\x67\x14\xda" "\xee\xf1\x69\x58\xea\x78\x0f\x6c\xe6\xff\x1c\xa9\xc5\xf1\x73\x08\x1b" "\x09\x73\x23\x85\xf7\xc0\xfa\x87\x28\x62\xbb\x34\xed\xf5\xe2\x5e\x3a" "\xa2\xcb\xc0\xac\xb8\x8f\xfc\xbe\x3d\x17\x4f\xcc\x76\x0d\x6c\x17\x07" "\x92\x71\x08\x83\xbb\x33\x6a\x9e\x66\x1d\xe6\x46\xee\x84\x73\xf5\xfb" "\x80\xe8\xaa\x47\xe9\x2c\xab\xf4\xc5\x49\x45\x6e\xb9\xb3\x58\x83\x65" "\x24\xcf\x80\xfc\xcf\x06\x22\xff\x0b\x55\x60\xf9\x64\xdb\xc7\x45\x12" "\x29\x5d\x7b\x9c\x75\xa7\x06\x2e\x74\x0c\x32\xce\xb1\x25\x5a\x97\x8a" "\x78\xae\x79\xee\x64\xfc\xf6\xc8\x09\x66\x29\x9e\xb8\x86\x7b\x2e\x0a" "\x65\x35\xd4\x8c\x27\x27\x0d\x65\xfe\xa2\xb7\x01\x3c\xf8\xda\x40\xa2" "\xa1\x67\x93\x29\x64\xc5\x2d\x70\x2d\x8c\xe1\xd0\xf0\x9d\xc6\xfa\xcc" "\xd9\x59\x1a\x54\x75\x0b\xa9\x70\x98\xe7\xf8\x43\xd3\x22\xdb\x5a\xf6" "\xdd\x48\x24\x44\x00\xf8\xe1\xb9\x2c\x3f\xec\xb0\x2e\xf7\x8e\x2a\xdb" "\xa2\x9e\xaf\x1b\x08\xbd\x6d\xd1\xdc\x77\x5f\x18\x0d\x63\xa1\xba\x89" "\x0b\x2d\x04\xbe\x14\xaf\x4e\x3f\xab\x9a\xb2\x04\x98\x5c\x2a\x4f\xc6" "\x67\x5e\x10\x06\x77\xc4\x0c\x3b\xce\xdd\x74\x33\xe5\xe4\x9c\x52\x9e" "\xa3\x42\x57\x5c\xf8\x1e\x0b\x8a\x17\xd1\x9e\x78\x39\xd1\x25\x01\x12" "\x43\x23\x44\x4e\x82\xca\x76\xaf\x9a\x61\xa2\xed\xb4\x0e\xb3\xb3\x18" "\x88\xe2\x9e\x65\xaf\x44\x06\xee\x88\x26\x61\x03\xd3\x6f\xba\xda\xa7" "\x33\xa5\x4a\x25\xd7\x13\xec\x9d\xea\x81\x2d\x2c\xb4\xe2\x75\x7c\x40" "\xbb\xc1\x98\x45\xbf\x21\x87\x46\xfd\x4a\xd8\x0b\xff\x01\xa7\x95\x23" "\xf4\xfb\x4c\x87\x39\xb7\xb6\x4f\x90\xd8\x73\xb6\x97\xbe\x84\x7a\x1f" "\x52\x02\xf5\xd9\xe3\x1f\x89\xfd\x12\x3e\xfc\x6b\x37\xb5\x84\x1a\xfd" "\xaf\x47\x0b\xea\xd6\xfc\x5d\x84\xc6\xa8\x14\x4f\xdb\x93\xb9\xb7\xa0" "\xd9\xe3\xaf\xbe\x1b\x74\x14\x94\x6c\x00\x1b\xf0\x31\x71\x4f\xce\x2b" "\x0d\x78\x8c\xa6\x61\xe0\xfe\x8c\x36\xb2\x30\x2b\x56\x02\xeb\x7d\x26" "\xf2\xaa\xcd\xdc\x3e\x3a\x8d\x59\xba\x35\x02\x1c\x7b\x2a\xe1\xcf\x3e" "\x7a\x85\x72\xc3\xaf\x57\x36\x43\xae\xe4\x90\x64\x0a\xe1\x77\x79\x5b" "\x43\xb0\x67\xd1\x59\xf9\x14\x17\xde\xc1\x5b\xf6\xab\x7c\x44\x6c\x9a" "\xe3\xb3\x55\x1c\xf8\xe4\xb5\xd0\x8f\x97\xeb\x9e\x91\xc3\x0b\x15\x19" "\x25\xed\xb2\xa6\x64\x2a\x9e\x18\xf8\xf7\x7a\x7d\x36\x69\x81\xbf\x9e" "\x57\xc7\x55\xb5\xbc\x73\x98\x0a\x5b\xbb\xc5\xf6\x69\xc3\x97\x49\xd3" "\x12\xf6\x8b\xe7\x15\xe1\x63\x59\x09\x3f\x1b\x19\x30\xb3\x50\xe7\x56" "\xf2\x20\x7d\x01\x37\xf7\x1b\x3b\xdc\x8a\x6e\x1e\x2e\x83\x42\x05\x90" "\x5a\x4c\xdf\xb6\x52\xfd\x28\x47\x00\x38\x7d\x79\xa4\x87\xbc\xec\xfb" "\xf1\x22\x67\x1a\xa6\x93\x5b\xad\x4d\xb7\x52\xc7\xc1\xa9\x15\xcb\xea" "\x53\x19\xe6\xca\x66\x9f\xca\x95\x41\x65\x5e\xb3\xfa\xf1\x6a\xff\x7f" "\x9b\x03\x68\x32\x86\x56\x60\x7b\x41\x04\xe1\x8e\xbf\x0b\xe2\x0a\x72" "\xe0\x4c\x89\x1e\x3b\x9f\x53\x77\xf3\xf4\x9d\x36\x0d\x03\x75\x31\xd3" "\x8c\xac\x06\x48\x01\x25\xc9\xd4\x91\x33\xc0\x1b\xe1\x4d\x9c\x3c\x73" "\xd4\x44\x82\x16\xdb\x02\xba\x03\x18\xdf\xf5\x17\x71\x19\x1b\x96\xb8" "\x58\xb8\x6c\x52\xf0\xa7\x4e\xb7\x3f\x8f\x35\x95\x4f\x25\x82\xe7\x4d" "\x2c\x15\xaa\xd9\x31\x9f\x33\xf2\x34\x81\x7a\x14\x46\xd8\xa5\x7d\x44" "\xe5\x81\xb4\xe7\xd0\xe1\x26\xe8\x68\x08\x7b\x1b\xdd\xb9\x5a\x65\xdd" "\x57\x3a\x78\x71\x37\x83\x97\xcc\x9e\x59\xf0\x66\x5c\xe1\x51\xd1\x93" "\xc2\xf0\x18\x53\xbe\xb0\xe6\xf2\xc9\x69\xd8\x8d\x40\xf9\x57\x34\x79" "\xde\x52\x5d\xdf\x32\x45\xfa\x8f\xb6\xbe\xf1\x47\x57\x90\x83\xd6\x35" "\xa9\x00\x37\xee\x9c\xb5\xb6\x6c\x2c\x37\x16\xbc\xd4\xb1\xe8\xdb\x4a" "\xcb\xf3\xaf\xb7\x26\x02\x91\x92\x50\x98\x6a\xf6\xbb\xcf\x62\x6c\xef" "\x13\x5f\xf2\x5a\x79\x97\x10\x29\x9f\x7d\x44\xf8\x2a\x5b\x88\x00\x1a" "\x3f\xa9\x8c\x8a\x50\x04\x02\xc1\xa3\x2b\x87\x44\xe0\x03\x97\xc2\x63" "\xbf\xfe\x5e\x35\xf8\x1b\xc6\x40\x92\xea\x09\xf1\x6a\x03\x00\x72\xc4" "\x08\x5f\xa3\xfe\x9c\x05\x17\x03\x67\x67\x66\x71\xf7\x1d\x35\xb8\x82" "\x4a\x12\xb3\x02\x93\x28\x44\x15\x8a\xf5\xb7\xf9\x16\xa2\xa9\x48\xb9" "\xb7\xe6\x3b\x11\x45\x9c\xa2\x27\xe6\xae\xcf\x44\x69\xb3\x4e\x9b\x09" "\xe7\x78\x49\xf0\xca\x2e\x51\x7e\xb6\x07\xaf\x00\xd7\xa3\xe6\xe1\xfc" "\x94\x5b\x8a\x7f\x60\xb4\x0e\xba\x04\xbf\x74\x19\x0b\x6d\x66\xa3\xd0" "\x6f\x0e\x08\xfd\x2b\x63\x5d\xe5\x76\xc4\x0a\x55\xe8\x51\x1b\x5c\xcb" "\x6c\xb6\x13\xbc\x17\x2d\x0a\x6b\xa7\xb9\x9c\x78\xc4\x8d\xe3\x8f\x53" "\x41\x43\x05\x7a\x8f\xe4\x30\x02\x7b\x21\xbf\x1c\xf5\xc0\x68\x19\x80" "\x51\x6c\xce\xe4\x72\x53\x73\xc9\x3e\xee\x28\x1c\x73\xd4\x6d\xf8\x32" "\x73\xc0\x7c\x4f\x06\xee\xdb\x3d\xf4\xb5\xe7\xfe\x7f\xeb\xc6\x33\x73" "\xb4\x6c\xab\x18\x14\x34\x61\x75\xb9\x97\x8e\x2f\xc1\xdc\x03\x47\x85" "\x8d\xe0\x43\xe5\xd2\x2d\x19\xc0\x4d\xa3\xb0\x71\x00\x84\x19\xb9\x35" "\x44\xdf\x0b\x8e\x79\x82\xf8\x3d\x0f\x95\x04\x04\xda\x6e\x24\x7e\x64" "\xd4\xc9\x30\x81\xf2\x65\x36\xa2\xec\xaa\x93\x5e\x1d\x17\x0d\x2e\x64" "\x44\xdd\xc1\x84\x82\xcb\x81\x38\x2a\x25\xeb\x26\x9b\xa7\x58\x4d\x7f" "\xd6\x57\x09\xba\xf0\xbd\x11\x2f\x04\x2a\x34\xdc\x04\x60\x8f\xe7\x87" "\xa5\x6c\xb8\xad\x3e\xb7\x1e\x48\xb6\xb7\x4e\xbc\x63\x17\x9a\x37\xf0" "\x79\x65\x4d\x8f\x8d\x02\x47\x72\x98\xcc\xfa\x48\x54\x63\x81\x60\x9a" "\xb7\xe0\x2d\x3c\x49\xc2\x16\x46\xae\xa3\x9a\xca\x36\x8c\x1a\x68\x42" "\x9c\x42\x26\x97\xa7\x1d\xf6\x12\x27\xcb\xd2\x9a\x54\xf1\x8a\xb1\x48" "\x9c\x5f\xf1\xcc\xe5\xbe\x67\x08\xab\x6f\xbf\xf4\xb5\x0f\xd5\x98\x29" "\x27\xd0\x8a\x49\x01\x0c\xf1\x1d\xf1\x58\xcf\x7c\x36\x35\xdb\x3a\x97" "\x6a\xbf\x2d\x06\xb1\xb4\x64\x18\x6e\x1d\xea\x70\x04\x71\x93\x2c\x91" "\x79\x0a\x17\x97\xae\x4f\x00\x12\x4f\x17\x5e\x33\xf0\x39\x42\x7e\xf5" "\x83\x0c\x70\xe7\xc3\x67\x6a\xe5\xe3\x5a\x84\xe1\x74\x2c\x40\xc0\xe8" "\xda\xc1\x78\xbc\xde\x3c\x84\x2b\x63\x77\x9c\x34\x2b\x95\x96\x9f\x65" "\x12\xe8\x5e\xe0\x99\x8f\x49\xa7\x4e\x5e\x15\xd3\x15\x42\x90\xea\x18" "\x66\xb4\xc8\xac\xee\x4e\x49\xf6\x7a\xa8\x09\x8e\xc9\x3b\xfc\x8b\xf1" "\xb8\xdb\xac\xa9\xe8\x69\xe8\x54\x1e\x61\x66\x98\xc7\xcb\x87\x78\x3d" "\x14\xba\xbb\xfa\xeb\xca\xf2\x76\x9b\x44\xdf\x0d\x3c\x70\x75\xed\x60" "\xaa\x3f\x6c\x77\x43\x74\x12\xd8\xc9\xae\xfb\x21\xd0\x9c\xdf\x47\xea" "\x34\x8d\xc3\x35\xf1\x06\x7a\xe5\xe1\xec\x06\x7f\xa7\xf8\x10\x47\x0e" "\x8a\x37\xff\x09\x45\xa8\xae\xd9\x18\x19\x23\x3d\xd0\xc3\x09\xf5\xb0" "\x87\x8a\x8e\xec\x0d\xd2\xfa\x71\xce\x20\xcd\x14\x87\xfd\xef\x0c\xb1" "\x9e\xb9\xa1\xd1\x67\xd1\x06\xf7\x4a\x45\x65\xfe\x89\x35\xeb\x50\x60" "\x5d\x63\x83\xb9\x82\xb1\x0f\x61\x16\x28\x3e\x97\xa2\xb4\x94\x89\x4d" "\x4d\xb3\x63\x58\x33\x4b\x2f\x5e\x25\xe1\x28\x41\x3e\xc7\xc2\xd8\x2c" "\x52\x6b\xe5\x14\x3e\xb9\x06\x07\xbf\x9b\xa0\x88\x34\x1c\x70\xec\x7f" "\x34\x0c\xe7\x14\xb4\x80\xf9\xce\xcb\xbd\xb9\xf3\x57\x7d\xbb\x84\xf7" "\xc0\xcb\x89\xce\x9e\x5e\x50\xd8\xb5\x35\xf9\x5b\xc7\x4c\xc4\xc2\xde" "\xa9\x91\xc6\x74\xa6\x38\x81\x75\x52\x49\xfd\x55\x50\x82\x35\x3e\xeb" "\x4c\x37\xa7\xef\x81\xe8\x92\x6c\x7d\x7e\xd3\x68\xa0\xe1\xa8\x52\xb6" "\x93\x1d\x53\x06\x99\x36\x07\x0e\x35\x32\xee\x69\x14\x58\x48\x0b\x7a" "\xfd\x97\xb6\x44\xcd\xae\x6b\x3e\xb6\xe2\xc2\x8a\xdf\x35\x09\xe1\xfd" "\x44\x2c\xa4\xeb\x97\x11\x85\x5c\x29\x8b\x5a\x99\x0b\x87\x48\xd6\x7f" "\x2b\xf0\xf8\xaf\xaf\xd2\xc9\x72\x62\x61\x78\x53\xc1\xa9\x1b\x8d\x02" "\x95\x0b\xb5\x26\x0f\xd2\xa3\xd3\xb5\xcc\xf6\x81\xae\xb1\xe0\xc4\x1a" "\x17\x4d\x4e\x11\xd9\xa2\x78\x7b\x69\xfb\xa6\x3b\xc3\x87\x03\x9f\xc0" "\x90\x82\x74\x0e\x9f\x49\xad\x89\x48\x3d\x98\x88\x11\x99\xf3\x8b\xe7" "\x15\xbd\x2c\x7b\x97\xa0\x30\x18\x89\xdb\x4f\x32\x59\x65\xbe\x74\x8e" "\x7c\x20\xf2\xcc\xf6\x53\xf8\xa2\x9f\xa2\x93\xe5\xd5\xe1\x3e\xa6\x41" "\x1e\x6f\x93\x87\xe3\xb7\x8e\x13\xc1\xa6\x10\xc6\x3c\x0f\x6d\x42\xc7" "\x05\x6b\xfc\x1a\x10\x82\x08\x93\x76\xc0\x18\x18\xbb\xa4\x15\x52\x65" "\x2f\x99\xdd\x7e\xe1\x39\x01\x5b\x6b\x41\xfb\x3b\x40\x14\x4a\xad\x36" "\x42\x4a\x53\x95\xb7\x4f\x4a\x30\x5b\xe6\x26\xfb\x90\x9a\xa4\x53\x2b" "\x14\xb6\xde\xb0\x9a\x71\xf8\xa5\xc9\x40\xe7\x42\xf7\x26\x3e\x90\xa7" "\x9d\x11\x99\x72\xe4\x66\x2d\x36\x85\x28\xe2\x27\x7c\x21\x0c\x7e\x3f" "\xf8\x3e\x55\x99\x48\x51\x65\xc8\xa2\x58\xb9\x6b\xd2\x60\x0f\xaf\x03" "\x6b\xf7\x35\xc2\x24\x83\xa6\x0c\x80\xc8\x5f\x7f\xe2\x1f\x6f\xdf\xba" "\xca\xfe\xa9\x06\x5c\x2c\xe1\x5b\x77\xf9\x60\xb7\x0d\xec\xa5\xf1\xa5" "\x65\xae\x11\x87\x45\x1c\xf2\xf9\x88\x69\x4c\x42\x73\xcd\x00\x05\xb5" "\xbb\xb0\x1b\x5b\x27\x4c\x06\xf4\x07\xf8\x01\xde\x66\xa9\x07\xfc\x27" "\x92\xdf\xb2\x04\x84\x24\xa5\xb9\x16\x46\xb6\x0f\xe8\x63\x7a\x8c\xb3" "\x68\x60\x44\xc8\xba\xe3\x30\x41\xb6\x66\x86\x98\xf4\x9e\x33\xac\x87" "\x2a\x79\xd7\x92\x70\x05\xe1\x74\x55\xcf\xb5\xd5\x9c\xcc\x54\xed\x76" "\xb1\x08\x34\xc8\xc0\x77\xad\x6c\x88\xff\xc9\xaf\xdc\x99\xd2\x36\xb8" "\x02\x8e\xf9\xbb\x7a\xf2\x74\xc9\x3e\x7e\xea\x7d\x19\x62\xa5\x74\x98" "\x48\x99\x55\x75\x74\xea\x36\x36\x0b\xd2\xed\x1f\x50\x74\x0e\x76\x87" "\x70\xb4\x45\x14\x33\x33\xbf\xd8\x56\x80\xb5\xc9\xa0\x45\x33\x01\x60" "\x37\x2a\x0b\xab\x9f\xaf\x4e\x89\x58\x5a\x4e\xac\xd9\xfa\xb5\x1b\x15" "\x08\x49\x41\x9d\xdb\x1d\x4d\xd4\x65\x47\x37\x86\x59\xf3\x1d\x5e\xd5" "\xdd\x23\x17\xf4\xd9\xd8\x09\x9b\x59\x5e\xc9\x34\x8f\xab\x8a\x97\xc3" "\xf3\xcd\x70\xbe\x53\x0c\xa7\x6b\xfd\x48\x01\x0e\x7a\xe8\x07\x21\xbd" "\xf8\xff\x46\x15\x34\xe9\xda\x99\xe4\x12\x45\x39\x9f\xdf\x47\x24\x64" "\x84\x64\xc6\x01\x7f\xdd\x76\xfe\x8a\x3b\x4d\x56\x40\xad\xa8\x3e\x7e" "\x18\x1a\xd6\x5f\x3c\x56\x87\xa8\xa8\x3c\xbb\x3f\x61\x9e\xb3\x1a\x98" "\xdd\xe6\x24\x64\xd1\x43\x71\x43\x7c\xbd\xa7\x38\x8f\xab\x75\xef\x87" "\x9d\x4d\x1d\x98\xda\xfb\xb4\xa7\xd6\xb0\x4a\xb7\x71\x83\xfd\x0e\x95" "\x5e\x9a\xee\xe8\x36\x73\x8e\xba\x11\x5e\x52\x31\x0c\x7f\x19\xbf\x59" "\x61\xd3\x9f\xfa\xaa\x7c\x6d\x10\x77\xc0\x47\x83\xdc\x20\x43\x1e\x44" "\x99\xaf\xd5\x00\x1e\xca\x9f\xed\xfc\x9e\xa6\x34\x01\x8d\xc5\x04\x9d" "\x48\x7a\x7a\x96\x2a\x38\xca\x6f\x15\xa4\x8c\xcb\x45\xe8\x4e\xf8\x46" "\x8a\xa6\x62\xaf\x88\x70\x74\x23\x7a\x1e\x42\x04\x95\x67\xb0\xb7\x4e" "\x3a\xc0\x14\xbf\x70\x1a\x26\xf9\xbd\x0e\x72\xae\xaf\xd3\xe8\x1d\x15" "\xd1\x1d\x3e\x8d\x51\xcc\xbb\xd1\x72\x4a\x0b\x9d\xdf\x5e\x72\xaf\x99" "\x01\x67\x42\x94\x87\xee\xe1\xa8\xef\x17\xcf\xdc\x28\xfa\xec\x81\x12" "\x68\x00\xeb\xe0\x40\x6e\x02\x22\xb5\xa3\xed\x78\xa5\xc8\x86\xa4\x42" "\x8c\x6b\x37\xd9\x9b\xe9\x9e\x45\xab\xc6\xa0\x90\x3a\xfb\xa7\xa4\xa7" "\x46\xfb\x60\xe7\x7f\x6c\x25\x62\x10\x12\x9b\x66\x3e\x13\xc6\x85\x03" "\xf7\xfa\x5a\xb1\x57\x2f\x24\x1a\xad\x2f\xc0\x7b\x7b\xe9\x32\xdc\xdc" "\xb3\xce\x94\x21\xe7\xa5\xd9\x06\x98\x2f\x8e\x78\x6a\xf6\x8b\x59\xd8" "\xef\x11\xc0\x9f\x9f\x23\x98\x7e\xcf\xe7\xcc\x63\xdc\x73\x37\x25\xff" "\xfe\x0b\x1c\xa9\x8d\xb3\x6a\xee\x64\x89\x3c\xe7\x30\xcd\x01\x0f\x37" "\xd8\x02\x15\xbf\xf1\x93\x66\x87\x07\xe5\x5f\x4e\x23\x69\xb8\xc0\x32" "\x18\x04\xa7\x6e\xb1\x95\xf3\x70\xda\x81\x3d\x0d\xfb\x0a\x28\x1f\x1b" "\x86\x42\x2f\x16\xf4\x0b\x34\x7a\xfc\x1c\xb1\xec\xe8\x8b\x32\xcb\x64" "\x60\x8b\xa9\x5e\x6a\x6a\x0d\x13\xbb\xfc\xa3\x5b\xf0\xb1\xa9\x20\x2c" "\xe9\x4e\x6f\x82\x8e\x2b\x17\x30\x18\x1d\xa0\xb4\x5e\x24\x9b\x53\x7d" "\x6b\x30\x5f\x78\xf6\x3f\x7f\x5c\x86\xf5\xaa\xf5\x6c\xf5\xab\x79\x71" "\x31\x6b\x01\xca\x25\xf7\xb2\x1a\x98\xf1\xbb\xf9\xd8\x29\xaa\x7a\x8e" "\x1b\xb3\x91\x93\x5d\x07\xa1\x58\x9e\xc6\x38\x81\x4f\xe7\x92\x3b\x6f" "\x10\xaf\xd4\xca\x93\x51\x9e\xbe\x41\xc2\x4e\x87\xdf\xb7\xf4\xa8\xfc" "\x05\xdd\xc9\x29\x5e\x2a\xeb\x1c\x85\x5b\x17\x85\xc0\x3e\x1d\xfb\x19" "\x2c\xc3\xa1\x43\xac\x88\x08\xee\xba\xb9\x3d\x28\x00\xee\x40\xbc\xd7" "\xdb\x05\xd4\xb7\x67\x35\x35\xc5\xa8\x43\x14\xfb\x9e\x68\x1f\x71\x24" "\xb2\x45\x84\xb2\x0b\xa5\xdc\xfe\x14\x63\x4b\xd5\x83\xc4\x2b\xd0\xb7" "\xfa\x01\xa3\xfa\x68\x1f\x2c\x32\xfa\xb5\x8d\x64\x55\x8e\x0e\x80\x33" "\xb0\xf8\xad\x19\xfd\x68\x57\x28\x2a\x5a\x7e\x90\x56\xa9\xe3\xf6\x79" "\x0c\xa5\x76\x19\xf1\x8e\xc1\xe4\xd6\x6c\xaa\xfa\xe0\x30\x13\x16\x43" "\x20\xb2\x9c\xfa\xd2\x36\xcc\x05\x66\x4e\x0a\xc3\xd2\x88\x2f\xba\x40" "\x10\x8f\x03\x31\xa9\xfe\xeb\x33\x1e\x82\xbf\xbb\x26\x16\xe1\x88\x5b" "\x72\x0d\xeb\xd7\x52\xaf\x4b\x96\x18\xb0\x37\x49\xca\xcf\xaf\x97\x9c" "\xa7\xd2\xce\x26\x1c\x12\xa2\x9c\xbe\x31\xeb\x2b\xf9\x3d\xce\x41\xfa" "\x27\x9e\xf5\x45\x33\xd9\xe3\x88\xb3\x15\x2c\x35\x12\xf8\x12\x83\x89" "\xf0\xf9\xea\x71\xd6\x48\x70\x8c\xdb\x9f\xb4\x04\x57\x40\x95\xa6\x24" "\xee\x9e\x7b\x78\x8a\x6c\x7b\x8f\x3b\xdb\x10\xff\x92\x88\xfe\xab\x98" "\x58\xbb\xa1\x8d\x31\x04\x3c\xa3\xe5\x63\xcb\xd5\xc9\xc9\x62\x29\x65" "\xa8\xda\x1e\xea\x6e\x20\x1c\xe3\xa6\x90\xba\x94\x12\x86\x19\xa3\x30" "\x6d\x79\x00\x44\x47\xa1\x2e\x80\x83\x35\x12\x66\xc0\x80\x53\xdc\x6c" "\x34\x52\xbc\x5e\x51\x1e\x36\xb8\xc2\xa2\xd7\x53\xfa\x1e\x2c\xce\x0e" "\xa3\x97\xd7\x46\x01\x72\xd2\x14\x24\x1b\xf3\xae\xfc\x06\xaa\xb3\xf9" "\x12\x94\xed\x73\xca\xdb\x82\x05\xf8\x00\xe5\x5e\x3e\x84\xaf\x0c\x10" "\x26\xfd\x23\x59\x9d\x56\x97\xd2\xfa\x81\x5a\xcf\xf0\xc1\xc5\xe8\x1b" "\x1c\x4f\x3e\x58\xe0\x9e\xf9\x92\x23\xd1\xfe\x25\xd6\x52\x0a\xcb\x75" "\xe5\x31\x08\x87\x2c\x8c\xf5\xff\xf8\x9c\xf1\xad\xf1\xdb\x8b\xc4\x6d" "\x73\x45\xcc\x49\x29\x92\xb2\x48\xef\x99\x2b\xe7\x77\xa1\x1c\x51\xa2" "\xe6\xe9\x96\x9b\x61\x38\x77\x56\x2a\xaa\xdc\x97\xab\x37\xd6\x80\x27" "\x7e\x0a\x8c\xbb\xbf\x1f\x13\x27\x09\x4f\xd5\x36\x47\xd5\xeb\x59\x24" "\x4f\x12\xc0\x33\xaf\x58\xf9\xd3\x6a\xbf\x40\x23\x03\xfb\x53\x8e\x33" "\x8d\x8e\x25\xfd\x2b\x92\x27\x07\xf2\x6c\xd6\x5f\x4e\x17\x9f\x81\x34" "\x1f\xe4\x6a\xc4\xf2\x14\x56\x6b\x97\x04\xbf\xcf\x8a\x99\x6f\xac\x9a" "\x2f\x22\x18\x78\x95\x3b\x59\x63\x1a\x6e\xa7\x74\x60\x1e\x31\x5d\x16" "\x03\x65\xce\x5c\x8a\xd5\x5f\x2c\x54\x8e\x84\xf7\xbf\x18\x39\xe5\xb8" "\x91\xbf\x0b\x36\x07\x0f\xd5\x7a\x08\x41\xe3\x38\xff\x42\xe6\x91\x9a" "\x6f\xed\xd5\x87\x39\xf2\x97\x9b\x76\x2e\xae\x83\x97\x2b\x82\x1d\x02" "\x63\xe6\x6d\x55\x50\x0d\x18\x0e\xe2\x6c\x1c\x65\x6f\xad\xaf\xc0\x2c" "\x16\x45\xef\x76\x0d\x39\xf4\x21\xfc\xb7\x56\x62\xbe\xac\xda\x75\x47" "\x4a\xb0\x52\x2f\x35\x18\x63\x61\xbc\xed\xa8\xe2\x63\x1b\x4d\xd9\x6a" "\x3b\x11\x19\xa8\xb4\xb5\xdb\x57\x11\x18\x7c\x73\xfc\xb4\x62\x08\x94" "\xa4\x25\x3e\xf8\x11\x1e\xc7\xfa\x81\x64\x8e\xd6\x01\xdc\x26\xc1\x32" "\xaa\x1a\xf7\xb0\xcb\x40\x88\x93\x68\x17\x0e\x16\x60\x37\x5f\x3e\xd0" "\x13\x4f\x43\xe1\xad\x75\x67\x35\x0c\x1a\x6a\xe3\xe1\x78\x44\x17\xba" "\xc1\x12\x1b\x91\x51\xef\x9c\xcc\xe4\x38\x2b\x0f\x48\xa4\xe5\xef\x7e" "\x90\xd6\x33\xb6\x15\x3d\xaf\x69\xd1\xed\x45\x4f\x42\xed\x4c\x05\x4b" "\xb3\x11\xf7\x97\x9f\x5a\x52\xda\x04\x7d\xd6\x84\x44\xb6\x97\x4d\x60" "\x69\x5a\x94\x8c\x4b\x35\x56\xfa\x8f\x22\x27\x16\x6f\xde\x1a\xd1\x2a" "\x32\x0b\x17\x88\x47\xb2\xd0\x7c\x81\x78\x8c\x1b\x42\x98\x85\x47\xff" "\x4a\x7b\xb9\x30\x28\xcc\x85\x23\x33\xca\x05\x44\x1c\x32\xec\x57\x79" "\x28\xa6\x02\x8c\x8d\x75\x00\x58\x6a\x23\xd0\x7e\x1f\x5d\x0e\x7e\x18" "\x91\x75\x48\xbf\x4c\x33\x45\xe7\x73\x1b\xc4\x6d\x29\xf8\x2d\x57\x68" "\xe2\xdf\x79\xb1\x27\xed\xf7\xee\xdb\x0b\xd5\xd3\x72\x35\xa7\xfa\xa8" "\x6f\xde\x76\xa9\x31\x60\x0d\xab\x96\xe0\x18\xb5\xbd\x2a\x4f\x3d\xf2" "\x30\x52\xe8\xd5\xda\xd9\x0e\xbe\xeb\x5e\xe0\xbc\x0b\x99\xca\xc4\xe4" "\x67\x67\x94\xf8\xc0\xf0\xac\x75\xe8\xd6\x91\xd9\x4f\xdd\x1c\x92\x21" "\x0c\x6a\x91\x9d\xde\xc7\x1b\x9c\xd7\x64\xf5\xe9\xa7\x4e\x70\xc1\x5a" "\xb3\xdb\xde\x00\x9b\xe9\x72\xc1\x18\xae\x33\x9c\x79\x98\xb4\x6d\xc3" "\xa4\x7c\x2f\x1b\xcc\xbe\xee\x85\x99\x12\xcb\x08\x29\xf4\x24\xd2\x08" "\xab\x95\x55\x3c\xe1\x93\xd3\xa5\xba\xbc\x26\x7a\x09\xde\x9c\x9e\xb4" "\x10\x58\xe5\x16\x12\xab\xbe\x8d\x8d\xaa\x20\x47\x2c\x98\xe3\x3d\xd0" "\x1d\x8a\x69\x57\x88\x13\x63\x86\xbc\xdc\xb8\xbb\x35\x74\xf5\xd3\x31" "\xd8\xa8\x11\xf0\x34\x91\x07\x44\xb5\x8f\x42\x44\xf7\x89\x83\xe1\x77" "\xf2\x1b\xa2\x83\x26\x76\x1c\xcd\x9b\xac\x73\xc9\xfc\x58\x74\xb6\x32" "\x62\xa9\x62\x41\x32\x24\x49\x7c\xb4\x57\xf9\xb4\x9a\x4d\x25\x40\x06" "\x1e\x5d\xa3\xc2\x80\xfe\x03\xcd\xf9\x1e\x23\x2a\x94\x2f\xf3\x20\x07" "\xd1\x22\x7a\x6d\x4c\xce\x99\x04\x54\xbd\xb1\x04\x0c\xad\x83\x0c\xa9" "\xaa\xb9\x7c\x3b\x2c\x22\x93\x93\xff\x12\x9c\xf9\x8d\x0d\x62\xf2\x49" "\x7c\x38\x4a\x10\xb5\xe6\xbd\x82\x88\x4b\xb7\x6f\x02\x95\x4e\x20\x90" "\xe4\xc8\x42\x90\x17\xd8\xd5\x6d\xc9\xc8\x3d\x2e\xb9\x23\xf9\xab\xc7" "\xc7\x90\x7f\x3d\x64\x5e\xd0\xce\xd6\x24\x43\x99\x4e\xcb\xa5\x01\xcc" "\xf3\x3c\xe2\x9c\x3a\xa4\x28\xac\xb8\xce\x67\x2b\x48\x3c\xb3\xa3\xcb" "\x13\xa4\x05\x08\xcb\x8d\x4a\xb2\xc7\x59\x82\xf7\x4c\x8e\xbc\xc6\x11" "\x68\xcb\xea\xc0\x6d\xb8\x4e\xe2\x6e\xc8\x6e\x5f\xb2\xbf\x88\x2a\x7b" "\xfc\x99\x9d\x2b\xd2\x23\x21\xad\x31\x73\x87\x12\x53\xda\x46\x54\x08" "\x20\x0f\xf7\x11\x29\x8a\x75\x37\xc1\x07\x96\x91\xb6\x1a\xf8\x45\x52" "\x6a\xec\xaf\xf6\x2e\x8f\x1f\xba\x41\xf0\xb3\xb5\xeb\x52\xd6\xdc\x4f" "\xee\xe4\x84\xea\xbc\x16\xe9\x64\x62\xe2\x9e\xea\x65\x50\x6b\xa6\x9e" "\x72\x60\x3b\x79\x08\x42\xa7\x68\x7b\x14\xcd\x13\x57\x47\xcc\x64\x8f" "\xec\x5a\x51\xae\x9e\x90\x5a\xfe\x46\xe0\xc3\x2e\x8a\x0f\x74\x05\x07" "\x21\xfe\x76\x47\x79\x5e\x34\x92\x20\x99\x47\x77\x44\x71\x80\xdb\x56" "\x44\xce\xc7\x75\xb0\xc6\x4e\x46\xba\x46\x23\x6e\xdd\xa5\x26\x8b\xbf" "\x61\x24\xfc\x7e\xeb\x23\x52\xde\xba\xec\x0b\x12\x6d\x66\x42\x10\x57" "\xde\x01\xb4\x0b\x5d\x53\x39\x02\x71\x1a\xe4\xc7\x2b\x99\x24\xeb\x39" "\xfb\x4d\xb5\xcc\x89\x41\x02\xff\x1a\x0e\x92\xb6\xba\x7e\x4e\x7e\x49" "\x5d\x69\xec\x75\x5a\x1c\x1c\xf1\xa0\xb6\x20\xb7\x57\x5f\x26\x86\x39" "\x3d\xc7\xe8\xea\x61\x35\xdd\xf0\x2c\xe5\xa2\x5b\x2a\xc3\x13\x64\x4e" "\x00\x38\x24\x55\xb7\xff\x11\x52\xa4\xe6\x25\xd0\x0e\x28\xb6\x64\xca" "\xb9\x0b\x93\xe1\x13\xa1\x60\xbd\xe8\x6f\x54\x2a\x66\x2b\x04\x65\xf7" "\x71\x75\x77\x81\xa1\x85\x6d\x0c\x0d\xbe\x06\x60\x8f\x05\xa7\x5e\x05" "\x54\x0b\x57\x89\x8a\xb3\xdf\x2c\x47\xfb\x38\x6b\x7a\xba\x6e\x3f\x14" "\xf8\xcd\x84\xdf\xe7\xba\x64\xc4\x14\xdd\x9a\xb7\x9e\x20\xac\x95\x24" "\x19\x85\x88\x87\x5b\x24\x78\xc6\x09\xb2\xb1\x0e\x68\xc7\x31\xd6\x77" "\x38\x61\xa5\x9c\x98\xef\xb2\x63\xfd\x16\x50\x61\x8f\xe2\x7f\x86\x72" "\x5c\x61\xe5\xd5\x8c\xd4\x4a\xd0\x5c\xa0\xe7\xd6\xbf\xed\x9c\x09\x46" "\x22\xc0\xff\x0b\x6b\xc5\x0a\x63\xdd\xe2\x7e\x77\x3e\xe3\xf4\x8a\x18" "\xb2\xe0\x8c\x04\xf1\x9a\xa5\x61\x2a\x04\xd6\x17\x94\xce\xda\xd7\x64" "\x69\xa7\x54\x83\x51\x69\x81\x83\xba\xb0\x19\x55\x46\x85\xb7\x17\xbf" "\x50\x69\x69\xb1\x0e\x2d\x68\x49\x67\x3d\xcd\x82\x04\x89\x08\xc5\x36" "\xce\xfb\xce\x50\xb7\xd1\x1c\x35\x5a\xe6\xd0\x16\x2a\xd5\xfb\x65\x1e" "\x5d\x45\xc9\x69\x23\x82\xf5\x9c\x4c\x3f\x4e\x98\xd4\x18\x21\x11\xff" "\x48\x60\x36\xe5\x94\x7e\x47\xb1\x20\x94\xd6\x27\x88\x79\xda\x93\xd2" "\x08\xd7\xcb\x3d\xa8\x13\x39\xe9\x9e\xb0\xf1\x4b\x06\xe4\x40\x4e\x90" "\x71\x93\xcc\x24\x68\x54\xf8\x9f\x5f\x07\xd8\x6f\x4d\x46\x73\xc7\x19" "\xb1\x76\x8d\x1c\x2c\xcb\x10\x63\x52\x36\x8f\xe4\x0e\x2f\x6d\x95\x7c" "\xcf\x46\xe3\x41\x4a\xdf\xb4\x27\x30\x06\x69\xce\x27\x1f\x85\xe5\xc3" "\x64\x24\xd9\x2e\xad\xce\x4c\x2e\xf7\xec\xfc\x04\x5e\xb7\x9d\x0b\x7a" "\xb8\x21\x79\x3d\xae\x4f\xe6\xac\x01\xc8\x80\x65\xcb\x42\x26\xb4\x61" "\xb1\x64\x38\x4f\xe1\xdd\x1b\xc5\x55\xc5\x78\xc2\x76\x34\xb1\xf1\x43" "\x30\x87\x43\x14\x65\x06\x4f\x65\x22\x86\x41\xcb\x5d\x29\x7f\xab\x59" "\x95\x7e\x0e\x17\x49\x13\xe7\x9d\xaa\xa3\xf4\xef\xf6\xce\xe5\xae\x32" "\xd1\x97\xf7\xc0\x13\x01\x57\xc1\x7e\xd6\x27\xd1\xe1\x2a\x93\xeb\xb9" "\xa7\xd2\x9b\xcd\xf4\xa5\x50\x91\xb3\x00\xe1\x25\x06\x78\x53\xc4\x94" "\x7a\x53\x0c\xb6\x66\xef\x54\xe7\xd3\x25\x56\xb8\xc7\xa6\xc1\x30\x1f" "\x01\xf8\xd1\xe4\xc5\xdc\x41\xc0\x91\x34\xa1\x5c\x6f\x5e\xdb\xb7\x64" "\xc6\x28\xfa\x14\x30\x7a\xff\xa7\x44\xcf\xec\xd7\x38\x28\x4c\x42\xdf" "\x7c\x92\xd7\xea\x02\x6a\xf9\x3a\x0d\xcd\x1b\xa4\xdd\xa2\xdf\x96\xc1" "\xc6\x96\xa6\xf1\x2c\xb8\xec\x25\x56\x47\x1f\x96\x89\xad\x75\x59\x7f" "\xf6\x5a\xb5\x86\x29\xb3\x25\xa7\x4f\xe0\xc0\x49\x2a\x07\x98\x4b\xac" "\xe3\xaa\x95\x3d\x3e\x4c\x1b\x24\x38\x84\xf2\x12\x6b\x9a\xfc\x3f\x50" "\x5b\xb3\x76\xa7\x2a\xbf\x81\xcb\xe2\xa0\xb5\xd9\x41\x78\x1b\xe3\xf0" "\x99\xec\x38\x84\xf7\x6a\x96\x0b\x87\x57\x8c\xa3\x0b\xef\x08\x6f\x46" "\xf8\x41\x15\x06\x13\x4f\x2a\x77\xf2\x0b\x50\x4a\x04\x97\xdc\xf3\xc2" "\x79\xca\x73\x1e\x24\xd3\x20\xf4\xd5\xb7\x2c\x4b\x1e\xd6\xd6\x08\xc8" "\x02\x12\x21\x20\xbf\x36\x08\x82\xf0\x5a\x2a\x6f\x33\xec\xac\x33\x93" "\xc9\x9e\x93\x50\xd2\x6b\x67\xde\x6a\xca\xe4\x47\x1f\x69\x80\x08\x35" "\x0d\x75\xaa\x55\x12\x81\x7f\x61\x58\x19\xe2\x09\xe7\xc4\x53\xc5\x96" "\xed\x35\x5c\x0c\x9e\xad\xb9\xf5\xe1\x2a\x6b\x4b\xeb\x67\xb3\x1a\x46" "\xdd\x1f\x99\xa4\x7f\xa6\xb3\xb9\x58\xe4\xd7\x59\x5e\x67\x1e\xf0\x5c" "\x83\x2d\xb6\x09\xcd\xb6\x50\xe4\xc9\x53\xac\xc9\x15\x28\x8c\x96\xbc" "\xf4\x4c\xc9\x2d\x85\xac\xb2\x00\xad\x2e\x3d\xe8\x7f\x30\x5e\xe6\x23" "\x29\xd1\x8c\xd7\xf7\xaf\xf2\x3d\x8a\x39\x59\x04\x8a\x19\xb5\x51\x33" "\x7a\x21\xf3\x02\xee\xd8\x82\x8e\x09\xe7\xa5\x7f\x0e\x84\xf7\x63\xe7" "\x2a\x48\x19\x60\xa1\x46\x0d\x33\xab\x0d\x5f\xdf\xe7\xf2\x17\x27\x67" "\xac\x5e\xa4\x1d\xc3\xf6\x35\x29\x30\x58\xa6\xf6\x18\x26\xd6\xe8\x03" "\x7d\x00\xdf\xf0\x24\x0e\x63\x45\xf9\x33\xea\x11\x6f\xb0\x63\x65\x63" "\xd2\x51\x50\xc3\xe7\x78\x58\x56\xe3\x03\xb1\xb4\x21\xa2\xaf\x01\x77" "\x6f\xe0\x9d\x58\x19\xce\x92\x1f\x85\x61\xea\x5f\xab\xe3\xbb\x46\x17" "\x5a\x32\x2a\xb3\xb6\x05\x9b\x30\x5b\x32\x5a\xe1\xbc\x97\x63\x00\x5b" "\x16\x71\x69\xd3\x25\xfc\x43\x6d\x3b\x48\x7e\x45\xfd\x95\x63", 8192); *(uint64_t*)0x20000f00 = 0; *(uint64_t*)0x20000f08 = 0; *(uint64_t*)0x20000f10 = 0; *(uint64_t*)0x20000f18 = 0; *(uint64_t*)0x20000f20 = 0; *(uint64_t*)0x20000f28 = 0; *(uint64_t*)0x20000f30 = 0; *(uint64_t*)0x20000f38 = 0; *(uint64_t*)0x20000f40 = 0; *(uint64_t*)0x20000f48 = 0; *(uint64_t*)0x20000f50 = 0; *(uint64_t*)0x20000f58 = 0x20000540; *(uint32_t*)0x20000540 = 0x90; *(uint32_t*)0x20000544 = 0; *(uint64_t*)0x20000548 = 0; *(uint64_t*)0x20000550 = 0; *(uint64_t*)0x20000558 = 0; *(uint64_t*)0x20000560 = 0; *(uint64_t*)0x20000568 = 0; *(uint32_t*)0x20000570 = 0; *(uint32_t*)0x20000574 = 0; *(uint64_t*)0x20000578 = 0; *(uint64_t*)0x20000580 = 0; *(uint64_t*)0x20000588 = 0; *(uint64_t*)0x20000590 = 0; *(uint64_t*)0x20000598 = 0; *(uint64_t*)0x200005a0 = 0; *(uint32_t*)0x200005a8 = 0; *(uint32_t*)0x200005ac = 0; *(uint32_t*)0x200005b0 = 0; *(uint32_t*)0x200005b4 = 0; *(uint32_t*)0x200005b8 = 0; *(uint32_t*)0x200005bc = 0; *(uint32_t*)0x200005c0 = 0; *(uint32_t*)0x200005c4 = 0; *(uint32_t*)0x200005c8 = 0; *(uint32_t*)0x200005cc = 0; *(uint64_t*)0x20000f60 = 0; *(uint64_t*)0x20000f68 = 0; *(uint64_t*)0x20000f70 = 0; *(uint64_t*)0x20000f78 = 0; syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x20004280, /*len=*/0x2000, /*res=*/0x20000f00); break; case 6: memset((void*)0x20000540, 168, 1); syscall(__NR_write, /*fd=*/-1, /*arg=*/0x20000540ul, /*len=*/0xa8ul); break; case 7: res = syscall(__NR_inotify_init1, /*flags=*/0ul); if (res != -1) r[2] = res; break; case 8: memcpy((void*)0x20000980, "./file0/file0\000", 14); syscall(__NR_inotify_add_watch, /*fd=*/r[2], /*file=*/0x20000980ul, /*mask=*/0x4000200ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=*/7ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); loop(); return 0; }