// https://syzkaller.appspot.com/bug?id=0fc296513bfd125daf5d1dd4c95091886f376da1 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static __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 bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } #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, FUSE_SYNCFS = 50, FUSE_TMPFILE = 51, FUSE_STATX = 52, 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; struct fuse_out_header* statx; }; 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; case FUSE_STATX: out_hdr = req_out->statx; break; default: return -1; } return fuse_send_response(fd, in_hdr, out_hdr); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$ext4 arguments: [ // fs: ptr[in, buffer] { // buffer: {65 78 74 34 00} (length 0x5) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: mount_flags = 0x218004 (8 bytes) // opts: ptr[in, fs_options[ext4_options]] { // fs_options[ext4_options] { // elems: array[fs_opt_elem[ext4_options]] { // fs_opt_elem[ext4_options] { // elem: union ext4_options { // block_validity: buffer: {62 6c 6f 63 6b 5f 76 61 6c 69 64 69 // 74 79} (length 0xe) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // bsddf: buffer: {62 73 64 64 66} (length 0x5) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // noacl: buffer: {6e 6f 61 63 6c} (length 0x5) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // norecovery: buffer: {6e 6f 72 65 63 6f 76 65 72 79} (length // 0xa) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // debug_want_extra_isize: fs_opt["debug_want_extra_isize", // fmt[hex, int32]] { // name: buffer: {64 65 62 75 67 5f 77 61 6e 74 5f 65 78 74 72 // 61 5f 69 73 69 7a 65} (length 0x16) eq: const = 0x3d (1 // bytes) val: int32 = 0x80 (18 bytes) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // orlov: buffer: {6f 72 6c 6f 76} (length 0x5) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // nogrpid: buffer: {6e 6f 67 72 70 69 64} (length 0x7) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // noauto_da_alloc: buffer: {6e 6f 61 75 74 6f 5f 64 61 5f 61 6c // 6c 6f 63} (length 0xf) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // norecovery: buffer: {6e 6f 72 65 63 6f 76 65 72 79} (length // 0xa) // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x3 (1 bytes) // size: len = 0x56a (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x56a) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000000040, "ext4\000", 5)); NONFAILING(memcpy((void*)0x200000000140, "./file1\000", 8)); NONFAILING(memcpy((void*)0x2000000005c0, "block_validity", 14)); NONFAILING(*(uint8_t*)0x2000000005ce = 0x2c); NONFAILING(memcpy((void*)0x2000000005cf, "bsddf", 5)); NONFAILING(*(uint8_t*)0x2000000005d4 = 0x2c); NONFAILING(memcpy((void*)0x2000000005d5, "noacl", 5)); NONFAILING(*(uint8_t*)0x2000000005da = 0x2c); NONFAILING(memcpy((void*)0x2000000005db, "norecovery", 10)); NONFAILING(*(uint8_t*)0x2000000005e5 = 0x2c); NONFAILING(memcpy((void*)0x2000000005e6, "debug_want_extra_isize", 22)); NONFAILING(*(uint8_t*)0x2000000005fc = 0x3d); NONFAILING(sprintf((char*)0x2000000005fd, "0x%016llx", (long long)0x80)); NONFAILING(*(uint8_t*)0x20000000060f = 0x2c); NONFAILING(memcpy((void*)0x200000000610, "orlov", 5)); NONFAILING(*(uint8_t*)0x200000000615 = 0x2c); NONFAILING(memcpy((void*)0x200000000616, "nogrpid", 7)); NONFAILING(*(uint8_t*)0x20000000061d = 0x2c); NONFAILING(memcpy((void*)0x20000000061e, "noauto_da_alloc", 15)); NONFAILING(*(uint8_t*)0x20000000062d = 0x2c); NONFAILING(memcpy((void*)0x20000000062e, "norecovery", 10)); NONFAILING(*(uint8_t*)0x200000000638 = 0x2c); NONFAILING(*(uint8_t*)0x200000000639 = 0); NONFAILING(memcpy( (void*)0x2000000015c0, "\x78\x9c\xec\xdd\xcf\x6b\x1c\x55\x1c\x00\xf0\xef\x6c\x92\xfe\xd6\xa6\x50" "\x8a\x7a\x90\x40\x0f\x56\x6a\x37\x4d\xe2\x8f\x0a\x42\xeb\x51\xb4\x58\xd0" "\x7b\x5d\x92\x69\x28\xd9\x74\x4b\x76\x53\x9a\x58\x68\x7b\xb0\x17\x2f\x52" "\x04\x11\x0b\xe2\x1f\xe0\xdd\x63\xf1\x1f\xf0\xaf\x28\x68\xa1\x48\x09\x7a" "\xf0\x12\x99\xcd\x6c\xbb\x4d\xb2\xf9\xb9\x75\xb7\xce\xe7\x03\xd3\xbe\x37" "\x33\x9b\x37\x6f\xdf\x7c\xdf\x7e\x67\x67\x97\x0d\xa0\xb0\x46\xb2\x7f\x4a" "\x11\xaf\x46\xc4\x37\x49\xc4\xe1\xb6\x6d\x83\x91\x6f\x1c\x59\xd9\x6f\xe9" "\xf1\x8d\xc9\x6c\x49\x62\x79\xf9\xb3\x3f\x93\x48\xf2\x75\xad\xfd\x93\xfc" "\xff\x83\x79\xe5\x95\x88\xf8\xf5\xab\x88\x93\xa5\xb5\xed\xd6\x17\x16\x67" "\x2a\xd5\x6a\x3a\x97\xd7\x47\x1b\xb3\x57\x47\xeb\x0b\x8b\xa7\x2e\xcf\x56" "\xa6\xd3\xe9\xf4\xca\xf8\xc4\xc4\x99\x77\x26\xc6\xdf\x7f\xef\xdd\xae\xf5" "\xf5\xcd\x0b\x7f\x7f\xff\xe9\xfd\x8f\xce\x7c\x7d\x7c\xe9\xbb\x9f\x1f\x1e" "\xb9\x9b\xc4\xb9\x38\x94\x6f\x6b\xef\xc7\x2e\xdc\x6a\xaf\x8c\xc4\x48\xfe" "\x9c\x0c\xc5\xb9\x55\x3b\x8e\x75\xa1\xb1\x7e\x92\xf4\xfa\x00\xd8\x91\x81" "\x3c\xce\x87\x22\x9b\x03\x0e\xc7\x40\x1e\xf5\xc0\xff\xdf\xcd\x88\x58\x06" "\x0a\x2a\x11\xff\x50\x50\xad\x3c\xa0\x75\x6d\xdf\xa5\xeb\xe0\x17\xc6\xa3" "\x0f\x57\x2e\x80\xd6\xf6\x7f\x70\xe5\xbd\x91\xd8\xd7\xbc\x36\x3a\xb0\x94" "\x3c\x73\x65\x94\x5d\xef\x0e\x77\xa1\xfd\xac\x8d\x5f\xfe\xb8\x77\x37\x5b" "\x62\x93\xf7\x21\x6e\x76\xa1\x3d\x80\x96\x5b\xb7\x23\xe2\xf4\xe0\xe0\xda" "\xf9\x2f\xc9\xe7\xbf\x9d\x3b\xdd\x7c\xf3\x78\x63\xab\xdb\x28\xda\xeb\x0f" "\xf4\xd2\xfd\x2c\xff\x79\x6b\xbd\xfc\xa7\xf4\x24\xff\x89\x75\xf2\x9f\x83" "\xeb\xc4\xee\x4e\x6c\x1e\xff\xa5\x87\x5d\x68\xa6\xa3\x2c\xff\xfb\x60\xdd" "\xfc\xf7\xc9\xd4\x35\x3c\x90\xd7\x5e\x6a\xe6\x7c\x43\xc9\xa5\xcb\xd5\xf4" "\x74\x44\xbc\x1c\x11\x27\x62\x68\x6f\x56\xdf\xe8\x7e\xce\x99\xa5\x07\xcb" "\x9d\xb6\xb5\xe7\x7f\xd9\x92\xb5\xdf\xca\x05\xf3\xe3\x78\x38\xb8\xf7\xd9" "\xc7\x4c\x55\x1a\x95\xdd\xf4\xb9\xdd\xa3\xdb\x11\xaf\x3d\xcd\x7f\x93\x58" "\x33\xff\xef\x6b\xe6\xba\xab\xc7\x3f\x7b\x3e\x2e\x6c\xb1\x8d\x63\xe9\xbd" "\xd7\x3b\x6d\xdb\xbc\xff\xed\xba\x9f\x01\x2f\xff\x14\xf1\xc6\xba\xe3\xff" "\xf4\x8e\x56\xb2\xf1\xfd\xc9\xd1\xe6\xf9\x30\xda\x3a\x2b\xd6\xfa\xeb\xce" "\xb1\xdf\x3a\xb5\xbf\xbd\xfe\x77\x5f\x36\xfe\x07\x36\xee\xff\x70\xd2\x7e" "\xbf\xb6\xbe\xfd\x36\x7e\xdc\xf7\x4f\xda\x69\xdb\x4e\xcf\xff\x3d\xc9\xe7" "\xcd\xf2\x9e\x7c\xdd\xf5\x4a\xa3\x31\x37\x16\xb1\x27\xf9\x64\xed\xfa\xf1" "\xa7\x8f\x6d\xd5\x5b\xfb\x67\xfd\x3f\x71\x7c\xe3\xf9\x6f\xbd\xf3\x7f\x7f" "\x44\x7c\xb1\xc5\xfe\xdf\x39\x7a\xa7\xe3\xae\xfd\x30\xfe\x53\xdb\x1a\xff" "\xed\x17\x1e\x7c\xfc\xe5\x0f\x9d\xda\xdf\xda\xf8\xbf\xdd\x2c\x9d\xc8\xd7" "\x6c\x65\xfe\xdb\xea\x01\xee\xe6\xb9\x03\x00\x00\x00\x00\x00\x80\x7e\x53" "\x8a\x88\x43\x91\x94\xca\x4f\xca\xa5\x52\xb9\xbc\xf2\xf9\x8e\xa3\x71\xa0" "\x54\xad\xd5\x1b\x27\x2f\xd5\xe6\xaf\x4c\x45\xf3\xbb\xb2\xc3\x31\x54\x6a" "\xdd\xe9\x3e\xdc\xf6\x79\x88\xb1\xfc\xf3\xb0\xad\xfa\xf8\xaa\xfa\x44\x44" "\x1c\x89\x88\x6f\x07\xf6\x37\xeb\xe5\xc9\x5a\x75\xaa\xd7\x9d\x07\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x3e\x71\xb0\xc3\xf7" "\xff\x33\xbf\x0f\xf4\xfa\xe8\x80\xe7\xce\x4f\x7e\x43\x71\x6d\x1a\xff\xdd" "\xf8\xa5\x27\xa0\x2f\x79\xfd\x87\xe2\x12\xff\x50\x5c\xe2\x1f\x8a\x4b\xfc" "\x43\x71\x89\x7f\x28\x2e\xf1\x0f\xc5\x25\xfe\xa1\xb8\xc4\x3f\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x74\xd5\x85\xf3\xe7\xb3\x65\x79\xe9\xf1\x8d\xc9\xac\x3e\x75\x6d\x61\x7e" "\xa6\x76\xed\xd4\x54\x5a\x9f\x29\xcf\xce\x4f\x96\x27\x6b\x73\x57\xcb\xd3" "\xb5\xda\x74\x35\x2d\x4f\xd6\x66\x37\xfb\x7b\xd5\x5a\xed\xea\xd8\x78\xcc" "\x5f\x1f\x6d\xa4\xf5\xc6\x68\x7d\x61\xf1\xe2\x6c\x6d\xfe\x4a\xe3\xe2\xe5" "\xd9\xca\x74\x7a\x31\x1d\xfa\x4f\x7a\x05\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x2f\x96\xfa\xc2\xe2\x4c\xa5\x5a\x4d\xe7\x14" "\x3a\x16\xce\x46\x5f\x1c\xc6\x8e\x0b\xc9\x66\xa3\x7c\x36\x3f\x19\x76\xd4" "\xc4\x60\xef\x3b\xa8\xf0\x1c\x0a\x3d\x9e\x98\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xa0\xcd\xbf\x01\x00\x00\xff\xff\xdf\x29\x33" "\xc7", 1386)); NONFAILING(syz_mount_image( /*fs=*/0x200000000040, /*dir=*/0x200000000140, /*flags=MS_POSIXACL|MS_SILENT|MS_RELATIME|MS_NODEV*/ 0x218004, /*opts=*/0x2000000005c0, /*chdir=*/3, /*size=*/0x56a, /*img=*/0x2000000015c0)); // setxattr$security_ima arguments: [ // path: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 2f 66 69 6c 65 30 00} (length 0xe) // } // name: nil // val: nil // size: len = 0x0 (8 bytes) // flags: setxattr_flags = 0x0 (8 bytes) // ] NONFAILING(memcpy((void*)0x2000000000c0, "./file0/file0\000", 14)); syscall(__NR_setxattr, /*path=*/0x2000000000c0ul, /*name=*/0ul, /*val=*/0ul, /*size=*/0ul, /*flags=*/0ul); // quotactl$Q_QUOTAON arguments: [ // cmd: quota_cmd_quota_on = 0xffffffff80000201 (8 bytes) // special: ptr[in, blockdev_filename] { // union blockdev_filename { // loop: loop_filename { // prefix: buffer: {2f 64 65 76 2f 6c 6f 6f 70} (length 0x9) // id: proc = 0x0 (1 bytes) // z: const = 0x0 (1 bytes) // } // } // } // id: uid (resource) // addr: nil // ] NONFAILING(memcpy((void*)0x200000000180, "/dev/loop", 9)); NONFAILING(*(uint8_t*)0x200000000189 = 0x30 + procid * 1); NONFAILING(*(uint8_t*)0x20000000018a = 0); syscall(__NR_quotactl, /*cmd=Q_QUOTAON_GRP*/ 0xffffffff80000201ul, /*special=*/0x200000000180ul, /*id=*/0, /*addr=*/0ul); // mprotect arguments: [ // addr: VMA[0x3000] // len: len = 0x3000 (8 bytes) // prot: mmap_prot = 0x1 (8 bytes) // ] syscall(__NR_mprotect, /*addr=*/0x200000000000ul, /*len=*/0x3000ul, /*prot=PROT_READ*/ 1ul); // openat$cgroup_ro arguments: [ // fd: fd_cgroup (resource) // file: ptr[in, buffer] { // buffer: {6d 65 6d 6f 72 79 2e 63 75 72 72 65 6e 74 00} (length 0xf) // } // flags: const = 0x275a (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd NONFAILING(memcpy((void*)0x200000000180, "memory.current\000", 15)); res = syscall(__NR_openat, /*fd=*/(intptr_t)-1, /*file=*/0x200000000180ul, /*flags=*/0x275a, /*mode=*/0); if (res != -1) r[0] = res; // mmap arguments: [ // addr: VMA[0xb36000] // len: len = 0xb36000 (8 bytes) // prot: mmap_prot = 0xa (8 bytes) // flags: mmap_flags = 0x28011 (8 bytes) // fd: fd (resource) // offset: intptr = 0x0 (8 bytes) // ] syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0xb36000ul, /*prot=PROT_SEM|PROT_WRITE*/ 0xaul, /*flags=MAP_STACK|MAP_POPULATE|MAP_FIXED|MAP_SHARED*/ 0x28011ul, /*fd=*/r[0], /*offset=*/0ul); // syz_fuse_handle_req arguments: [ // fd: fd_fuse (resource) // buf: ptr[in, buffer] { // buffer: {62 4d 42 44 ed bd 38 19 f7 73 de 79 01 09 ae 4a ed ed c9 86 // 66 6d d7 50 49 4b 74 f1 85 06 dc 03 25 f4 04 83 bf 3d e4 b2 d0 c8 06 // 34 0f 8e 75 86 c0 4b 7b d2 11 97 6c 3f 94 b2 86 b8 89 46 be 7e 48 1a // 0e a4 f5 f4 3a c3 9d ba 05 d0 80 2c f0 03 fa c5 e0 1b 53 d7 d8 0f a0 // 6d 6b 14 cd e6 63 ed 5e e2 a8 1c 2c 7d 21 2a eb d3 4c 8c 79 af 19 e7 // a3 0d 58 da 57 74 43 e2 ff ba 32 e0 44 a1 9c 6d 16 19 11 01 b9 cd 10 // ab 61 c8 85 13 a2 d5 5d 94 3e e7 0b 51 87 2e b6 55 c8 11 cb 51 ce 1a // 80 99 fa 12 fc 4e 9d a4 3c 86 98 69 ee 51 dd 15 03 e5 76 fc b7 7c 8e // 39 b3 87 c7 c3 02 cb 78 12 78 d9 a2 60 53 c3 fc 8d 28 ce 3b 52 1c 69 // b6 d0 23 75 f8 8b 8d 63 fe 43 37 b6 69 ce 8b 08 93 1c fe 06 90 1c 5d // 0f c2 2f 02 e4 ca ca 24 8e 72 ad e2 88 ea a3 bf 1f 87 f1 35 31 d6 a2 // bf 5a 82 65 87 ac 8b a2 2b 9f 61 49 3f e0 f5 68 2f fb b1 6e 2e 0d e1 // 33 30 5e 83 22 c5 5b ef 0d 35 c5 7e 71 3d ed a9 66 50 57 e5 0a 30 67 // 79 84 4c 2e d2 ed c0 2a e1 cd c0 5c 9b 59 cd 6e 64 ed bf 22 f6 14 d9 // b2 76 6c 43 48 52 4c 2b 16 fe 91 c9 24 b5 4b 40 4d 6a 29 c5 fb f6 01 // 66 3f 3e 5f 05 0f 96 e4 fa 2a 26 6a 81 0e ee dc ff a0 4a a5 c6 97 95 // ef 66 ad 79 87 e9 b1 34 cf c5 63 d5 ff 85 cc 59 0f 5f 3b 60 6e 1b d6 // 20 ab 7a d1 a6 a7 9a 12 81 70 8a 16 a2 27 00 4c 80 f2 9e d4 07 1d e4 // d6 a4 da 40 f7 06 7e 62 30 3d bc ed 42 60 b1 74 0b 53 a2 56 b8 b5 3e // 7f 37 97 1b f5 08 76 e0 02 52 75 b7 6b 36 df ce 96 7c c6 0b 14 21 dc // b3 83 98 d4 c0 b8 08 9f 1c d1 ad 3f b1 e5 c4 55 b1 74 83 75 54 55 4b // f4 4f d3 70 e0 08 f2 0e e6 90 a1 6f ed 10 55 02 4b 5d 13 e7 36 8c 11 // f9 4d cf b9 0f ea 6f c1 a0 14 76 3d ed 93 dd e5 02 01 d1 27 6d e0 5a // 9f 1a 9c c2 c4 cc 4f fd 56 94 8d 44 82 ec 6b dc c4 21 7c ef d9 3e 4f // df bd 21 fc ac f6 d9 0c 17 f3 e5 80 8a 9d cb a7 39 51 79 8a b8 ce 07 // 05 d7 0c ee 8b d8 f3 fd ca 49 89 20 11 cc b3 8e eb ed 94 90 a7 53 e8 // 6e b5 b2 9a e3 8c fb ac 86 9f da e0 a3 9a ac 6d b3 b9 2f 1a 5e b2 1d // d8 06 18 44 2f e7 17 f0 f0 e8 7c c6 2d 49 eb be 97 4c 9d 72 f3 8b a2 // 7d 0b a9 87 5e 82 95 2b dc 33 95 5a cf 95 1f 86 db 40 0b 6e 8d eb 0f // 83 2c 60 23 59 3f ef d3 30 b0 cc f5 41 ba b6 3b 8f 0c ed 64 02 94 dd // 3a bc e6 99 b5 07 16 cb 8d af cb c6 42 f1 b6 8f b4 9b 5e 5a ac b4 b8 // 46 e0 dc c3 6c 7b 02 8f 9e 0f 44 61 4d ee f0 0a ed 13 dc 0f 93 c7 39 // 71 2d ce 21 b0 1d 8b 7b 4f 5d 46 8d da c5 17 58 d2 e9 93 32 ff a1 5a // 9f 96 5d ba 1f b2 e2 70 89 6d a9 50 15 47 ab b0 8b 72 12 a9 63 3c 20 // 96 25 ee 54 38 9c cc f3 cc 26 47 65 ad c5 03 9c 9f 80 58 33 42 7b f0 // 86 c1 5a 78 cc 91 e7 a9 ad 39 bc 8f 51 bd ac 0a 52 d8 82 87 95 27 f0 // 87 b5 89 f5 0a 1d 84 02 de 99 60 fa a9 1e 1c 43 ae 46 40 b5 e8 5f f7 // 92 4b f8 7b ee ff 7a 5f c3 d0 27 36 f3 73 99 1f 32 d3 f2 4a b8 f4 92 // 90 4b bb f6 5e f5 ce e8 c1 d7 cb 0b f0 d6 7e 8a 0a 6b e8 e3 57 77 56 // 31 d9 4e e8 47 d5 f2 ad 2d a6 cd 38 ec 69 3a 5e 9d d5 59 62 da a6 02 // bd 87 e6 83 ea fe 29 aa 34 81 0b 8c ca 23 93 57 99 a3 e9 a0 4c 50 15 // 6f 99 8c 59 fc f6 ac c2 f7 a8 f9 f5 9a 94 1c 84 49 fc be 03 a4 3d f5 // 88 92 06 b6 16 33 76 62 5c 31 58 64 09 3c 84 10 8f 7b 7a 1b 1c e0 62 // 8f c6 8a 61 cb ff 7d 5f 0f c9 9a 6b dc 94 ba 76 22 14 37 c4 87 d0 f5 // 21 fd 9d 7d 19 24 64 64 72 b0 69 f1 98 c9 ef 11 94 30 df 16 8c d9 bd // 6b f1 be 35 12 df 26 5e 8e 94 7f 43 cc 80 7b 89 89 65 8e 96 4d 91 24 // 34 06 32 48 ba d7 3b 69 42 60 48 9b 71 5f 38 61 d2 5e 4c 9d c5 72 40 // 3c 21 43 5c 2c 23 8d 11 da 45 0d 80 7a 32 e0 75 95 7c b8 91 f6 a3 99 // 4b 0d 68 e1 15 c5 d0 ec 0c a3 6b eb fc bd 31 b0 77 88 74 6e cf 39 8c // 59 d4 01 7b 30 ea 3e 07 91 93 8d 36 e2 f7 9f 42 47 0e 89 1f d4 ce a7 // 62 3a ba ef 65 b0 b0 0a 5b d0 93 a0 87 b7 61 c1 ef 6f 6b 3c b2 63 eb // 33 ee 0f 44 26 b7 5e 9b 40 f2 40 46 4c 29 ae 4c 60 a4 ef 8b de 98 b3 // 37 79 ea 17 3e c4 28 5f 74 38 d9 45 f2 7d 2f e5 4d d3 f0 f0 4f 3d 27 // 06 6a aa 65 f1 11 06 ac 13 73 9b 34 c8 78 e4 d6 f3 95 25 71 4e c0 50 // a2 d4 ca c2 00 cf 25 e4 06 86 47 2d ff a7 fe 10 47 f8 13 f7 ea 95 1f // 80 51 db be 6a 7e 57 85 7a 5f c0 1a 99 7b 54 26 97 b8 81 c1 17 3e 57 // 34 54 b4 70 52 d7 b3 fe cf d3 86 d5 ab 4a 38 f5 e2 1a 89 89 32 d6 b0 // ec a2 94 c1 bd e8 41 34 fb 12 61 57 4c f6 e1 91 26 ec a0 68 6d b0 20 // 38 c5 c5 4e 45 51 f4 0f d5 e2 8d 06 82 83 7c d7 18 15 cf 87 ca fc 08 // 74 85 f5 76 a4 0d 45 ae db 1a c9 3e 2f b5 2e 9a 02 80 10 43 9b 23 b0 // 8d c6 51 43 fe b5 06 a7 0c 93 e3 20 05 af 25 40 61 9b 5f d3 be 81 c6 // 7e cd 8a be 60 c4 d5 09 26 69 b9 fa ba 13 a0 70 c8 82 07 63 f1 8b 77 // 9c 6f 03 88 8d e2 66 ba 90 0e 6d eb b7 f9 8d ef 3e 90 fc 4b 2e 97 2d // 60 6a 65 a5 dc f5 da a0 3e df 74 a6 c8 4f a4 6a ea a1 69 da 6d 6c 5d // b0 5e f7 fb 52 be f0 ce d7 82 c9 eb db ab c8 bf d9 11 14 f2 11 5a 80 // e4 7c 1c 72 94 f6 cb 12 8b f9 51 32 3e 3b 6b 18 1f 7c 66 1d da c1 34 // fd 5f 6c fa 3d 69 61 ee 2f bd 2e e5 93 32 f6 3d a1 1e 16 2b 0c 1c ff // 52 c1 18 fa 6e 1b ac 11 30 09 15 e0 80 94 ae 2d 84 0e e7 51 2a ee 48 // 8d d6 20 af bd d2 78 c4 ca 34 dd 3f ab f8 4d ff ec 8e 08 08 51 ac d0 // 46 cd 77 bd af 17 2e 41 b9 dc bc 6b f2 f1 ec 1d c8 7c 7a ba a4 a1 5a // 09 bb 74 08 47 99 6a 5d fb a4 80 19 55 32 3a 34 eb 3c ad 71 65 1e bf // 66 b6 a2 75 8d f2 a7 a3 fb 9b 49 ed d0 15 5f 36 a2 2a b7 30 d0 93 d2 // be 88 3f 6c 36 a2 e1 74 44 39 b6 58 88 1c 73 9a 3c 00 e1 0f 19 3f e9 // f6 c1 97 34 56 c4 2f 2b 3b f7 35 e3 cd f5 a5 95 74 cc d1 84 1c ea 36 // 69 02 78 e2 72 22 05 10 85 02 07 f5 d0 53 56 cd 37 3a 3b 98 4c 66 23 // d7 8c 6d 63 15 ac af ad 33 21 23 a5 e5 1b 8c a7 e1 fe 00 eb e7 41 ef // 9b 95 06 ff 57 f7 57 98 92 3e e5 82 af 3e c2 c5 fd 6c 2a 14 85 04 d3 // d4 55 e5 3a 7d c7 ab b5 1e 72 29 7a 5c 45 33 c5 b8 1a b3 75 43 ac 95 // a8 8a ca 05 de bb 9b c7 98 ca ab e0 54 df e3 3f 8b 81 55 d9 97 b4 95 // 2a 54 68 7f 02 21 59 52 08 86 fe 59 93 76 20 ed fd 3d 61 e3 c2 9e 99 // 94 93 c6 0d ea 3c 83 9d 8f 4e cd 18 c2 ec 5d 2d ed 57 33 18 73 cd 1f // bb bf 5f 27 54 b1 c6 51 8b 73 43 c7 dc 32 fa d1 40 1e 00 1a 24 55 ef // 5d 6d 31 22 df bd bc bf 71 8a 86 ee a5 3e 13 60 70 34 f1 46 3c 62 ed // ad 82 d4 c1 2c 85 cd 1f 9d bd b7 f3 f8 5f 13 f9 65 cc a6 33 15 d4 36 // 4d c7 c8 cd 14 ad a7 66 79 c1 e1 39 e9 81 52 d5 1e ef 22 77 fc 44 1b // b1 2e dd 45 fb c2 c1 31 ec 41 7a 9b 0c 19 da 16 33 f7 04 ff a7 31 2e // 11 0d 24 85 20 c9 9e 2a a6 5e 1a a7 10 36 f0 41 40 58 f9 07 f7 91 1c // 89 55 0d 4a 0d 06 df a5 6c 63 e8 16 65 41 c3 d6 f4 0e aa a8 96 4f 19 // 9f c8 bf da 9f f6 2f 71 fa 4b ad c5 4e 8a 4f 91 ce 15 12 41 bf 0c df // c7 6d 05 3c b2 6a a0 c1 a7 bc af 99 6b 94 10 8e 16 81 8b 0a 4f 53 19 // a9 48 a6 3d 30 72 38 18 3e 05 3e da 3b dd 40 45 a7 6f 36 5f 15 2f 14 // 48 c1 fa 6a 66 fa 97 59 da 78 f3 3c 60 91 33 2c f6 4d 98 eb c7 d2 01 // 79 02 5c ff 04 ac 28 8e 4c bf 4c c9 27 2b c1 94 06 a3 8a 4e a0 53 91 // 1d 92 52 e5 68 b6 80 5f c6 2e f4 13 cc af 3a ac 2c 55 5e 04 3d ee c5 // d1 0c 42 ca a6 c2 b4 75 37 32 14 34 10 2d 07 6a 0a 07 96 ca ec 2e cd // 0f 2b 71 5b 28 a6 0e 64 c4 3e 2d 8b b6 14 e3 d5 75 cf b1 f2 b8 b9 ba // ba 32 75 23 e0 34 66 82 93 f3 3d c6 de 66 88 8c d4 f8 e8 9b ca 84 0f // 80 2f ae fe df 5e a7 98 5b 72 d0 7c 8c c1 ea ac a3 a3 cd 77 fe dd 3a // e5 57 6b c9 e2 d7 2e ad 7a ce bf 30 ae 76 a8 43 e0 86 7b 7d 27 00 5c // 02 5b 0a 4b d3 da d4 d1 46 4e 83 96 b4 80 35 6b fc 42 7e 68 97 fc b7 // 8c c8 73 41 38 18 51 45 0f e6 bd 3e 59 93 7f a2 db fc 3f 09 16 bd 43 // 21 7d f1 2b 2d 3a b8 82 74 3c 4f 2d c1 ca d7 54 37 18 2a ed 7f ca d7 // 6d fa cb 70 39 2d 2c f8 04 84 ee fd f7 10 34 e7 19 67 74 14 44 a1 e6 // 44 2b f3 5e a1 33 c9 64 43 42 c2 03 f8 5f d0 b6 8b 9a e4 5f 26 15 39 // 1d 3d fe e6 32 c8 a7 41 01 b4 9f c6 a8 a8 f6 03 a3 2c 2e 76 b7 57 46 // 74 c4 2b a0 b8 eb 94 bf f2 d6 1b f4 b3 ce a5 c1 ce 78 f4 43 1a 68 7c // 7c 9b 28 ee 5e b9 55 93 66 97 dc b2 fa ab 71 d3 42 fc ca 80 77 44 43 // 2d fd 81 0f a8 1e b2 74 85 82 ae 17 92 b5 3b d4 ba af b3 b6 a4 5b 3c // 0e 96 6f d4 ec 11 3f ce dc 8a a1 ae 32 69 3a 43 bf 6e cf 28 9b 97 9b // 9b f2 d8 4f cb dc db 3c fa 53 ad e4 94 66 fb 3d c3 a8 90 ea 72 39 5a // a0 0a f8 92 c4 32 5c 9a 6c 4a 77 58 46 76 bb 79 b1 1f cf 93 08 80 6f // d7 2e 1b 41 85 d6 58 b2 60 9c fc 5f be f6 84 4e 5d 9e 72 0e ae 11 64 // 9c 73 3b 90 d9 cc 3e 7f 61 10 c4 3a b3 9a 7b 81 3b 85 c6 89 54 e1 bc // 91 aa e1 3d 95 fb ee 1e fb 29 72 6d c2 5f e5 c8 26 68 97 9e 9d 6b c5 // bc e7 f2 7a 82 54 15 bd 13 0a 51 f4 f3 f8 2e e1 1a 81 53 51 e5 ec 9a // 1b 51 cc 35 f9 53 d0 d8 85 83 69 1f 09 a5 43 2c 05 64 46 ab 56 55 3d // ec 70 a3 e3 1f 41 fa 47 36 df 08 0c 32 b7 74 ef 71 22 be 40 0c 1d 05 // 19 ab 27 f4 51 26 03 12 41 4b ba 6c 93 cf a1 00 00 00 6c 28 a5 2a 75 // ae aa 82 7d bf 28 2b e3 55 84 f9 12 26 d4 1a 5c d3 5d ac fa ad 5c 48 // 3e 9c 31 7e 23 bf 2f da 6c f0 ba 79 c2 80 80 c0 f8 6f 01 27 72 8c 7d // fb 9a f7 bf 41 a9 56 9d 8e f8 68 92 50 de 28 22 b4 45 59 b4 f7 7e 62 // c3 60 96 1a 8e 07 8d 8c 85 02 f8 3b 00 f5 d6 4c 51 2f 12 86 fd c1 9f // ff 41 06 5f cd 7e c7 77 b4 55 52 e5 73 4a 48 9f 02 8b 6d 82 2c 97 83 // ca 7a 77 f4 3b ca 21 b5 5f 98 fd ec f6 5c ea 40 77 7f 6c 5c 60 65 44 // 6f cc 34 68 37 0e d1 e1 99 98 57 f9 6a cf 04 46 3e 09 ae 68 5e da e8 // cc 09 99 ad 44 24 7f ef 32 0e 1c 88 fe 2a 22 a2 39 03 df eb 1f 74 14 // d3 f3 c1 e8 da 24 68 89 78 1b d1 c2 04 b3 be 22 a2 7e e2 93 5a c6 2e // 1d ff 8e 6d 67 d9 ef 6d ba 91 88 40 46 9d 6d ff b4 a0 b1 3f 60 ab 4f // ea 38 11 a1 f4 17 a2 38 29 38 3f 6b 86 56 90 5b 52 d8 fb e5 55 41 4d // 36 8d e8 6c 37 b1 a2 e2 4e 75 b4 c5 c8 b4 ab 0f 4c 44 11 19 43 06 25 // 54 3b af 11 e8 05 44 da 74 26 62 5c 08 e3 a8 11 bf 36 44 ac 61 b1 5a // 96 bf b5 e2 c2 fb b3 15 f5 bd b1 6d a0 fa e3 9c a3 ef 27 a6 e9 f8 b0 // 15 d5 10 ed 79 40 f2 13 03 24 21 25 ec 34 bd 9e f7 25 7b e4 d2 08 b5 // cc 02 8c 10 3a 9d 94 ae 77 d4 af 85 00 07 d4 6d c3 0c 57 0e d4 2d 18 // 9f 9b 5a 51 19 63 88 bc 1f b7 09 b6 6e 2b 27 05 1e c7 89 5b 19 46 54 // d0 77 c5 75 63 43 2c 64 e7 34 20 93 d0 61 f1 a6 b7 01 6f 3c 01 91 66 // c5 d2 7b 1b 58 f2 df cd b5 e3 80 24 16 d2 11 2f d7 35 09 04 0e 8e 6f // 06 f6 85 1b eb 91 cd 12 0d 4c a9 c0 15 48 b1 f0 50 bc e8 50 63 cd 8e // 26 5a 86 78 4e b3 ce 6b 3d 86 ee 43 e8 2b d2 c3 4f eb 70 0f 5b 95 89 // 5c 86 d5 19 e0 27 53 e8 25 0e c3 d5 96 53 3d 1d 05 1c 92 42 64 bb 65 // b6 b1 2a ad 89 1d 2c 37 99 68 71 11 ae a4 be e7 7f 71 93 19 6b 86 3c // 3d 10 37 26 4c 6e 7f 59 09 f5 ba 10 55 f7 9b 66 56 2f 76 c9 37 5b f1 // 0c 2f 3b 23 e2 81 58 1a d0 f8 55 ca cf 00 42 61 b1 7b 5c 82 8b 10 dc // e6 d5 3d ff cf 61 51 81 5e 97 9a fd 08 cb 94 51 1b 98 a2 33 92 95 38 // 18 5d 95 77 0c 16 4b f5 3f 49 08 1a 4b f2 d2 d8 2c 10 a4 e6 4a 26 4b // 3f 14 09 85 68 f1 96 2f 06 c0 00 43 6f c2 cf 63 b5 db 2e 5f ef 97 3e // 46 c5 19 52 f0 46 29 96 34 69 c5 1e c4 60 71 df f8 a7 3e bc 62 c8 a3 // 9d 86 f8 71 bd 9b 2b 9e f5 93 c1 88 c0 46 08 fd c8 87 93 5f 00 d2 70 // f2 a5 44 0e e0 3c e1 41 c3 16 14 18 8f a5 b4 d0 7b c2 e4 c2 ec 69 cf // 64 8a 93 59 80 90 79 41 43 df c3 29 e4 8b 87 09 06 c2 65 8b 13 50 e3 // 62 8e 2a 4d d8 9a e6 53 87 57 f7 07 2c 87 fa 42 f1 f4 2d e0 55 f0 a5 // 1e 27 66 5c 97 8d 6c 9e bd 63 5d d7 cb 49 41 11 31 96 ca 81 3f af 77 // cf 2c 57 2f 16 85 88 e5 26 82 97 7f d0 5a 96 fb a3 e3 a2 0d ff 14 ea // e4 6e 10 fd 3b 9c 4f 80 3e 73 f7 29 d4 be 09 66 36 f1 ec 79 4c 76 d9 // 90 e1 35 f9 cb 10 58 00 1a ba 39 53 02 a6 92 ff ba b4 49 1b 51 5b 93 // 90 2a b4 29 7d 43 ed dc 4a 3e 58 7d be 52 49 45 15 e1 0b ec de 25 4a // 23 1c 63 90 07 58 8c 0e 40 9f 2e 82 ea 15 15 e9 c1 be 4c ae 9b 1d ed // 2d 7a b0 cd 74 b2 22 b1 9d 06 81 85 45 78 d6 e2 74 e4 55 f0 b3 66 13 // 36 8d e9 18 be da 53 bd ce d9 36 81 cd 72 e8 31 cf 66 ec c4 c3 73 2c // 2f 5c 93 50 1a da 66 c9 3d 8c 49 94 0d 03 24 27 0d 78 a7 20 78 a5 4b // e2 4d ff ed 99 d2 ea 42 30 2e 40 0f 22 95 26 6d 7e 0b 20 d9 1b f8 be // 80 85 ae 40 ca 9f f9 09 7d b5 03 4c 7e 69 06 92 ef fa 84 03 f6 5e 8b // 3f 7e 52 e8 c3 c4 58 88 6e f2 59 75 5e 4a e7 0c ae 0b d4 25 42 3d 39 // 6e c6 65 a2 a8 c1 71 ec 46 d1 3f c6 2d 1c 28 97 93 4c fc 20 90 41 9f // e0 07 d5 44 ce 76 e6 64 0d f7 b4 1c 73 f1 96 70 78 3d 9a d8 27 56 3b // d0 ff eb 3b f1 4e ce 8d b3 31 44 de 80 17 19 40 61 71 85 9c 66 78 89 // 36 e9 15 75 92 5c 1f f5 b9 b9 57 bc ac 43 d1 75 52 eb c4 05 a1 d9 58 // e7 64 c3 5e 6f 64 aa df b9 fb 63 80 6b 61 4f 8a 45 e7 1a 05 33 71 5a // 2c 6e af bc 85 09 d7 89 73 f6 45 51 0c a3 40 a5 c8 6c 16 42 f8 4a b1 // 10 d5 64 9d 0e 1f 91 92 61 2c 4e 13 e2 43 45 a6 72 12 fe ad 33 95 b5 // ad 10 f6 eb 60 01 6c cb b9 e6 d0 7e a8 dc 29 5e ba 02 bc 35 49 a7 85 // 23 f3 06 76 6e 24 d6 6f e0 4c 18 2e ac 76 69 3e 50 7e 66 4c 25 bd c2 // bd fc 88 c5 70 8f 1d d8 4d 68 5b 3f bf 6f 51 4a 6f 50 62 84 9e 4a 0f // b2 aa 98 a0 47 39 17 cb f0 1c ef fe 04 ac 96 b0 a2 ec f2 4d c8 3e 98 // f0 c0 8d e0 1c cd f2 2c e6 50 ef 2b 1b 8e 47 b5 67 06 53 4d 86 55 0a // 57 78 3d 34 d0 09 be a8 96 91 a6 bb f0 14 dc 75 62 d4 21 63 0a ec 61 // cb d7 7c a8 ca 98 0a 05 ff d6 7f c1 be 51 d8 81 2c af ad 33 d7 2b 73 // 35 33 40 c3 ba 93 87 35 83 9e 3e 80 9d f8 fe f1 3b 23 db e6 0e b4 5e // b6 a4 8d b6 bf 3a f8 07 33 7c 70 28 a5 69 70 4c ea c8 5b f0 67 35 1e // f4 6b 08 8d 81 c6 fb 77 6b 4f cf 5f 88 81 84 6a 85 72 e5 52 55 43 6d // c5 eb 40 c9 76 ed 42 bc 2a 9d 85 75 9e 94 7c 6e 42 12 05 eb 64 d8 0a // 2f 0d da 45 dc 7c 7d a9 a7 72 6d fa d0 ef 56 eb 89 7e d4 0d 2a ce 48 // 35 a5 17 4d d6 a6 c4 f5 c8 cc f8 e0 c8 c1 5b 49 43 89 46 b4 a5 dd 1c // 8c 57 e5 95 bb 8e e8 35 1b da f1 1a 0b c5 31 89 fd c3 c3 44 43 42 01 // 9c 53 04 01 2e 3e 1b c1 53 f5 fd 3b 62 2e 2b b6 41 6c 23 45 33 77 0b // 89 79 09 7d b8 b4 e0 62 2b 33 08 29 01 bd c6 58 17 05 ca e2 85 cd 90 // 04 43 db 6b d4 07 c9 95 77 fd dc 46 a3 00 d8 3e 8f b6 84 4b 66 9b d2 // 5a 3d 88 c9 c9 70 ad 9f 7a 70 99 8a b6 2d 73 1a 6c 87 a1 64 18 56 e6 // af 5c 88 05 89 03 cd de 4d fd cf 2a 69 f0 73 06 bc 45 1d cc aa 92 8a // aa c7 42 92 09 a9 e0 7c b9 0b bf 63 94 e3 e5 4d d2 54 86 9e 7d d1 a9 // de 56 ce 44 03 54 0d b2 c8 86 70 46 91 b8 3f 41 55 75 2c d2 11 df fa // 24 f2 3f 39 12 44 77 26 9b 59 80 70 a5 76 c1 b3 df 08 74 b2 a4 6c 57 // e3 b6 4e b3 41 c7 03 fe ff d5 7d 92 e4 d5 6e 24 e0 1d 91 61 ec ba 1d // 17 52 cf 68 6e ac 14 47 53 b8 54 1a 49 f9 e3 7e ed e3 ca ac b6 11 79 // 9c 61 ec ac 10 ce ff 6a 3b f4 30 0b 05 c8 93 1e 3d 19 d4 62 de 64 89 // d5 60 56 54 4b 5e d3 3b cc 1c 9a 95 26 0c e3 54 d7 a4 6f 4f b0 35 47 // 47 d4 b0 2e bf 01 29 93 f0 10 3e 21 a2 a1 6e 90 10 ed 5d db 07 22 e5 // fa f0 6f e2 1e 60 7c b0 af 24 b0 cd cf 85 2a a0 51 65 1a a8 32 f0 51 // d4 12 58 48 fb c3 23 99 09 60 fd 61 03 00 46 a2 23 b4 03 2d 9a fd f8 // 1b 13 e0 fd 02 fe 0e e3 99 68 d7 0c bb b4 c1 b8 2f 08 73 d5 ad 60 34 // 9b 3a a5 b9 d0 9a c5 0e c3 5a b1 00 e6 d8 13 10 f8 91 e3 7a d5 e2 d0 // d9 bf 10 e6 cf 07 91 15 6d eb 5c 22 81 a3 5e 44 47 14 63 50 99 46 e2 // 20 79 b6 e1 d3 2b 90 5c a7 5d 90 bc ea 1f 0e 37 d7 11 b6 7a e5 b0 90 // 11 94 70 27 d3 cf 30 ac e3 da aa 01 76 9a 9c fb e7 28 0a 96 63 53 47 // b2 33 02 27 da e5 e3 31 f1 9b 79 fc da 9f 57 8a 68 20 37 8e 40 f7 38 // d9 ba 97 dc a2 43 1f 89 38 3e 64 eb 0c 6e aa c5 23 21 60 48 fc ea 6d // 31 7b 53 71 4f 8d 4a 73 78 ca b4 d4 e7 b3 06 16 1e 08 02 0f 4b ff ea // d1 ba a0 e5 40 b7 80 73 a0 56 19 bd 9a b3 21 ed f9 57 a7 b5 42 a4 9f // 84 aa 8b a7 67 fe 3a 0d 6a d8 47 86 de e7 93 22 d1 d0 ee de da b9 31 // 3e 67 a3 06 f6 63 ca 8e e9 5b dd 10 36 0d f4 03 de 4e cb 42 ef 1e 1d // 79 84 c1 e7 5d 4d 23 40 63 a0 53 4a a3 51 f2 1f ef ed f3 f5 57 76 0e // 28 b8 40 7b 07 df 9c 4f 18 44 2d ca 35 e7 bd 53 38 d9 93 3d c4 3b 63 // 7f 29 b2 cb d8 a5 df 7f 91 eb 1c ee 7c cd 99 ac 0f 4d e0 ac 20 63 11 // bf 0e 96 48 99 b8 52 f7 f5 db e1 e6 0d 10 84 10 ef 14 b6 7b ab 2f e3 // 55 ed 98 17 fd 0b 75 e7 a2 99 7c 96 3c 61 14 83 58 33 ae 60 3c fd 61 // 9b da 8b 76 ca b0 85 3c 8c 21 62 df 8e f1 d1 eb 12 1d 5f 07 16 c7 e5 // 0c 27 b8 38 b7 8f 18 4a a6 b8 f5 26 ce 6c 75 44 40 08 7e a9 20 4b 50 // 1b e4 98 95 b6 0a 4f 44 e5 31 60 ea ff 36 66 d8 6e 98 43 ed a1 20 ca // 33 02 6d 53 e8 2b 6f 20 2c ca 6a 54 ca 5f cf 05 0d 4a d4 68 64 9e 76 // 54 65 98 9d 04 01 43 d4 db b1 05 f1 56 67 04 bb fc 95 5c f4 9e f4 84 // 8b e6 eb 1d d7 16 8e 58 ff 7b 48 7f cf e2 9e ed 48 15 ad 61 49 6d 6c // 9a 15 a1 e3 63 4b 39 41 9a 0b 6e 4a 58 2a ac 9e 7e bb 3a b8 0f ab cd // ca b1 24 48 af b3 50 88 91 eb 26 a3 4e af ee 1c 88 47 86 4d 4a 5a e1 // ea 98 ef 89 ad f3 4b 4f b0 30 d7 2c 36 56 39 10 ed 74 60 14 4c f8 38 // f6 79 f7 45 9a 39 1d 0d 3f 51 df f1 f4 0a 10 04 46 2a c3 0f 21 11 96 // 8f 3b dc 06 fb 23 76 de de 29 24 64 0e f2 13 c5 5f 45 98 bb 62 a9 4c // d9 b6 3b 7e 5b 78 47 dd cb d7 9c ba 3c 29 ce 74 6e 00 57 12 9c c1 64 // 89 db a9 17 1f 06 f7 45 af 68 b0 e2 d2 e2 24 f1 1c 84 b3 41 2f a9 5b // 96 fc d6 2c ad f6 52 3c 08 ef e5 2c 26 14 34 0e 05 c7 a8 e1 d7 cf b8 // a4 ed e2 60 fa 5f 17 11 7a 11 ca d6 00 42 67 73 9a 85 fb 75 34 79 08 // f0 e4 12 97 2b c2 2e be 9c 7c 92 d1 2d e8 30 b7 99 55 39 ef 50 3f 37 // f5 8e 6a 64 0b 69 f1 fd 29 2f 22 9c 98 9f d8 7c 7d d7 32 e9 76 f3 5a // c8 9d 3a b0 b9 48 77 32 ed 00 5d f1 5f 97 a3 f8 d5 c2 38 20 6e fc 55 // ea 7a 69 42 43 a9 56 6d 35 2a e4 4d 84 bf 73 bb 2b af 02 e7 87 4c d7 // 6a 9d ad a7 30 47 2d ca 43 d2 59 7a c4 f0 46 c0 5a b4 33 29 70 76 d7 // 1d d0 c5 1b 3d 8f 0b 90 5d 74 be dd 16 e4 d8 2b a3 36 54 15 06 af 04 // 39 9d 17 6c d9 82 40 fe 0f 6d 8f d2 eb a3 77 67 50 85 b1 e9 d9 df 2e // f8 1a 12 63 d1 d4 80 9a 72 07 00 00 00 00 00 00 00 7a ed 7a a4 ec 22 // 3b af b0 20 71 09 9c d8 1d bb 52 80 3f 47 a6 37 92 2d ac 81 77 57 76 // b0 cc 15 44 25 5c 89 13 f4 91 f0 bb 39 b6 3c 05 39 25 84 3c 7d 0a e6 // b1 be e6 66 f3 84 9a 14 10 7b 02 cd 26 03 d3 1e c9 7a 69 35 3a 2a 44 // 75 7d b8 4a bf db 4d c8 38 9b 1d f2 ea 64 35 81 b1 c0 9b 6a cf 72 03 // 69 16 d4 4b 1d a4 92 5a b7 39 0f e8 ef 51 e4 52 3a f6 f8 2d 1c 5d d7 // d9 50 aa fa 7b d3 4f 6e ec b3 84 71 12 33 e2 82 2d 5c 24 bb b2 9d 70 // 16 91 b6 0f 75 db a2 7e bc 92 9a 11 4b bd ed a7 40 9a c7 bf 3f 44 c9 // 11 49 b7 a0 41 9d 8e 83 c3 d8 24 0b 59 2f b1 45 bb 62 fe dd 5b f3 15 // ac ec 43 c3 27 37 71 4d fe 4f d6 32 de 32 ca c2 81 70 f1 1f 9d 9f a8 // b9 2b d7 20 3e bf be 2b 49 b1 f9 79 0f 06 82 8d 57 a0 ba 72 84 f5 41 // 18 78 00 fc 39 c7 7c 3a 9f b5 55 9b b0 00 38 02 72 6b cb 55 9b 68 c1 // 52 ee 5c c8 20 bf 81 05 35 2c fe 14 be b8 6e 38 c9 55 1c fa 68 e5 06 // 5a 81 f7 11 39 31 08 4b b8 36 c0 9d 7c 2c 66 ca 8e b7 a8 55 a2 c0 20 // 55 29 a3 b3 d7 04 b3 02 52 c9 f2 19 0c 34 48 fa 1b 5c 33 0a 15 cc d8 // 7a b9 e3 e0 ad cb dd ab 19 ff b9 0e 9c 24 f2 b1 13 06 02 e0 2f b9 e1 // 18 33 49 4e 20 4b 37 de 57 73 3f de 98 d1 c6 92 af 7f db b4 4b e8 b7 // 70 0e c0 16 0d f9 69 b8 44 85 4d ba 7f e7 ed 4a 69 24 4c bc 06 76 bf // 2f 8a d8 17 17 ce 8b 53 2a b6 21 c4 e2 28 bb 3b cc 2d ae 3b ed 92 f9 // 77 e9 75 27 79 31 c7 14 19 3b a2 ff 3e 6b 5c f6 7d db c1 5b e3 76 9f // d1 f8 37 e3 bd b3 28 63 42 4f be 1b a9 c7 cc f0 db 85 23 37 48 84 e3 // 9b a4 b4 49 80 e8 c6 c9 8d a6 d0 04 72 3a b8 69 52 8a 9f 05 ab 8a 6f // c4 36 94 80 63 69 1f f6 cf f9 80 ec d0 9b 49 11 df b9 1f 26 66 fc bf // 6f f4 f2 2c 3c 87 3d a1 73 1a 9d e5 a9 a2 b3 f9 1f de 3b 1b cc b2 4d // 0e e1 1a 36 38 5e 9c 75 eb db 88 33 53 07 e4 27 8b c6 5a c5 37 98 db // e9 64 d4 3e 9f ce 3c 70 a1 b5 ca 7e 36 68 39 e9 54 b1 2e af 27 15 46 // 2a 3f 54 38 b4 3c a2 d2 48 04 4f 5b 5e ed 30 b4 a5 88 03 83 cd fa 4a // 05 e1 d7 58 98 94 a4 a5 30 d8 d3 a2 d1 84 0f 9f b9 4d 75 34 98 73 90 // f4 57 dd 64 8b d8 eb 97 55 49 9d dc d6 d5 dc 64 c8 40 7a a7 2b 48 77 // 53 13 32 8e 3d 81 03 57 a1 30 a5 d3 b1 5d a9 e7 d1 16 f2 c1 fc b1 db // ea 35 97 05 bd 60 f0 4c 09 57 a5 74 85 8c 08 fc 03 26 2d 16 69 d3 da // 5d fa e3 87 af 84 0b 14 03 a7 82 31 41 9b 7f 54 b6 9b b0 af b9 e8 89 // c7 10 ed 1f 5b 70 6b 1c f3 83 18 77 ea 57 58 72 a5 34 38 67 0d b6 e8 // 2b 02 16 22 ed 48 59 6d 75 89 cc 6f 79 c8 65 42 84 67 1d 0a d5 82 52 // 6d 0b aa b9 be 8e 38 c5 b5 e2 e4 01 b2 21 57 ad aa 2a d4 e3 7a 4d 22 // dd 82 43 a0 a0 51 75 90 fa 55 8e f6 bc 47 15 ad 69 cb 02 23 41 bf 4d // 00 fa df 0d 66 0b 78 27 dc 0d 32 bc 48 ca 86 18 f1 81 49 d5 63 74 db // c1 2d 25 dd 2b 14 39 bf c0 4e e0 3a e5 8d 78 ab ea c7 cb 9c c6 ef 54 // 71 b6 ae 0e 9d 9d a0 b8 1d b1 db 8d 7c c5 48 85 88 02 26 49 19 9f 8f // c6 d1 5d f9 c1 2b 41 b9 a9 2b 06 06 b0 f2 7e 7e 7f 51 a9 51 91 d4 0a // cb 55 67 a2 3f aa eb 5e fc 2c ff 7f 18 a0 44 2e a9 7d 11 69 6d 1f 67 // d6 38 9c 5f 8b ac 46 72 ac 2b 16 8d c8 7e e2 d0 6c 16 b1 94 f8 d2 bb // f7 6e 73 f6 4e ea 87 5f 55 9d c0 52 4a 23 71 64 f5 c1 47 1a 3c 93 b5 // 4e 42 33 8a f0 b8 f3 6b e8 b2 aa 40 6a c4 94 19 68 fe 6e d6 82 8f d4 // 0c a6 da 8f 69 af 89 8f 36 1a e1 30 8a bc 02 c3 bb 38 6c 09 f0 e5 3e // de 29 15 86 1b b0 77 5e 68 f0 b2 da 69 fd 99 e4 1f ee be f4 6d 49 16 // 16 b4 0c 14 86 11 c6 5b a0 83 1a 8f 91 68 dd fd 47 bd 9c e1 f9 2c 0b // 6c 90 2d fb b3 32 9d 13 d9 58 ec ca f6 e9 b4 c8 ed ce 66 1d 05 6d 1a // c5 cf 5e 03 c7 e1 b8 bd 2c 0c 01 1a 98 55 ea 69 cc 32 6d 5b ad fd c1 // 27 3c f4 f3 df e7 b5 dc fa 54 81 6a d7 27 4f 08 3e 3a 0a f2 57 5f 51 // c1 96 bd 7f f4 38 7e 8d da 8b a6 62 bb c1 60 c3 be 05 7b 18 fa 25 65 // dd e9 b6 07 14 6e 63 9e e2 9a 57 53 bc 1e 1f e6 c1 33 8a d4 49 8b cf // dc 29 fe 9c 8c ac 53 14 c6 43 e0 99 67 5d b9 b4 3b b6 24 b6 32 97 89 // 8f 3f 51 ce 76 2f f8 11 d8 cd 60 b9 28 05 aa 55 3a 29 aa 8f 99 40 f7 // 06 ee a3 d4 d5 8a 36 33 e3 3e 7b 4e c9 80 99 33 b1 91 dc 53 2b 19 08 // 67 55 81 33 e6 8f de f2 b8 be d7 c7 a8 a6 7f 71 2e 23 c0 7a e0 58 37 // 39 51 81 a0 81 f7 16 92 0c 75 f2 9a c8 78 98 5d 56 f9 3d e4 52 ae a2 // 8f 18 b3 9d 8b 7f 5a 86 b5 c7 f8 7c 6c cf 73 ca 09 71 f1 98 48 f6 a7 // 93 da c7 61 0c 50 3c 02 18 58 79 ca 1c a3 2e 07 fd ec af 23 e3 7a 84 // 53 26 d8 d2 4b 41 65 a2 b2 22 ec cb ea db 17 bf 8b 7a f7 e6 34 49 27 // 68 09 65 20 db 37 e2 83 6d 06 60 95 23 8a c1 a5 21 62 df a5 28 ee 15 // 4b 8d 92 df b0 dd cf cf 8c b4 a9 92 a8 de 8c 80 83 52 b5 e0 b8 52 05 // 95 a2 a2 4a 8f fe cc 66 b0 bc bc 40 d1 25 11 f4 40 d6 32 98 9a 32 80 // 8d 2c 60 e4 e8 b8 fd cb 2f 7e 4b 45 c3 ec 48 c4 94 0a d9 af 16 0e 8b // 15 37 97 1b df 62 09 cf ee d8 13 68 c3 d9 53 c5 6e 4f 48 65 1d bc 17 // 16 fc b8 fb 38 21 e7 ff 48 ef d6 08 4e fc 54 ec 49 43 6c fe 0d 9e 96 // 53 53 0a 87 dd 34 d0 50 58 95 d5 00 d5 f1 3c c8 b1 28 45 07 e6 6d 22 // 78 14 39 5b 04 21 2c f7 2e 7f de 1c d0 ba cf 06 ed 8c 83 4e c6 19 ff // 82 52 64 2c 43 a1 6d c4 56 c0 e6 0b 54 a4 e4 c4 43 a8 4b 62 e2 62 d7 // 0e f0 75 1b cd cf 03 8c 32 bb 11 a6 54 f9 29 e4 04 30 a8 51 d4 45 8c // f6 26 b8 3b 70 ef da 09 9f 28 49 08 97 66 9b 39 b2 19 95 65 84 b1 94 // d5 0e fc 9d 0f bc 12 d1 0a c8 04 2c 46 a7 2b 6f 44 9c 39 d9 43 73 63 // b9 c0 56 d1 42 62 73 a9 ab 3a 3e cd ba a7 74 a5 01 c9 71 30 da 1e fa // bc ad 25 8d 6b 6d ad d5 9d 15 6e b9 7b 37 84 53 f3 92 aa f1 5f 99 8b // fe 58 ec 9a cc cd c1 29 5a 96 f5 6f f7 07 b8 ea 56 c6 3e 81 a8 c5 b5 // cf 52 84 30 38 8b 2b 49 06 ea 29 3c b7 73 f1 8e 8b 10 63 0d 80 0e be // 6a e8 a0 44 da e0 2f 73 b9 84 6f 11 44 63 87 c7 f2 f7 48 bd 79 b7 79 // 5c fc e0 ec 87 61 e9 fb 6d 2c e5 0b f3 5d b2 cf 9d ef 38 ed a7 10 29 // a7 c4 f6 04 da 2d df 60 d0 b2 1a 3b 65 3d d5 98 1c ac b0 02 11 7b 97 // 15 b8 5d e2 1c e5 b1 76 a6 60 fa 21 d4 64 bc 7c 5f 9e e7 5f 3b 7b 6a // d7 99 db 97 6f e6 5a 26 03 5a 92 87 99 19 32 82 96 c5 a1 53 5d ba f5 // b4 01 80 95 68 85 e6 2a af bc 4f ab 18 ea c0 86 44 8c 04 64 be ce 5e // bb e2 1e fd c9 1a 08 a1 40 d0 b8 1d d9 34 11 ab f8 91 26 87 6f d7 75 // 36 6d 13 0c 0e ee 1a b3 ce d6 bf de 0c d0 1c 93 5f f8 3a 5c 36 2c 25 // 44 0c 6b e4 9b 44 82 35 75 4e 82 3c 06 0d 19 ae 32 f3 77 73 87 ca c8 // bb 73 6b 99 85 c1 f8 e9 3d cf 5e 5c 25 3f d3 10 93 12 bb 78 c9 43 c7 // b1 8c 59 3c 21 41 ca 3e 97 5f 11 1e 0b 31 fd 20 05 16 cb 15 64 75 0f // f1 de ce 8e 28 ac 13 17 52 02 01 83 6e 3c ee 33 dc 0c c3 68 fc 90 7f // d1 5a 63 82 29 9a 3d c2 16 da 05 29 11 82 f5 14 24 29 73 36 9c cd 05 // fe 6f a1 c0 2e 06 c6 17 8c 80 8a 12 b4 85 a7 36 b8 d6 8e 75 ed 88 e2 // 4c 9e c1 e9 3a 7f c9 29 c7 7a 75 6c b4 fc 0f ba d2 ff 54 ab 7e 7b 36 // 36 e1 54 00 bf 0b 7d b6 38 eb 60 74 78 98 c0 ce 5f 84 6a 40 df e7 d7 // ec 5b 2f 9d 92 01 67 31 1d ed 6c 3c 09 74 f9 72 a3 b6 4f cb b5 d6 71 // d1 31 36 0f 70 b7 a2 bc cd 90 ff fa e2 48 ae 30 5b ec 4d 3d d7 b3 d8 // cd d0 08 95 25 8e 96 d1 1c 5b 87 76 d8 3c 32 94 4c c6 97 5c 42 c1 b7 // f0 d3 32 c2 ff 31 b8 22 b6 1b c1 91 ae 2d c7 3e e8 68 e8 37 ea 61 65 // 0e 80 48 b3 dd c7 22 c7 c8 fd 33 d2 e9 a3 e2 51 7c 26 f2 11 c4 0a d2 // 35 be 74 12 7e a3 54 0f f1 fb 4d d0 ad a3 cf cd 49 d3 0b cc de d3 00 // 67 90 86 67 77 70 a3 84 81 c4 f2 54 f1 48 78 3f bf 0f af 4e bf 98 53 // 02 cd ad dc 89 82 dd 20 7e 2a ea 14 c1 48 7a 70 3d 9a a5 ed 8a d5 9b // 07 7c 8e cf 6c 07 3a 9e b5 0f db e1 af f0 f7 35 5f f7 63 fb 6e 66 a8 // 78 18 5c 8d 56 0e 29 50 c8 83 d7 2c 66 f1 62 b9 be f3 73 0c 89 55 35 // db c9 0b da 8c d4 fa 84 2a 1e e4 af ff ac df 84 1f 38 00 a6 47 26 b7 // 88 86 fe 75 fe f6 65 17 ee d4 94 a0 ba db e5 54 3c 4c 14 bd f7 4f 8d // 4f 62 9e 57 6a 0b 94 7c 65 b1 38 f0 77 7d e3 2e 2c 86 89 8c 0c 96 74 // e4 08 d3 4f 6c cf a1 7b 91 f7 01 0c 12 78 d2 ff b3 7e 13 d2 ef a4 6c // 51 a2 ee 35 b9 7c 97 02 e0 af d5 0e 2b bb ac f2 82 45 1c 4a 78 6d 4b // f5 81 c7 7e c3 0a 79 7c 87 63 2e 48 d4 51 ed cf 62 9a 1d b4 ba 98 33 // 74 64 0b af cb 2c bb 01 30 a4 85 01 4f 46 41 fb b3 04 db 8a 52 97 a8 // 24 2a 9c e5 35 79 6b 25 45 e4 10 e2 d9 58 c2 26 7f ad a9 c0 46 9d 56 // 84 0a cf 9b bf dd fb 1f 79 35 54 e4 24 5b 54 31 83 34 e6 d6 3e d4 bb // fe 37 b5 d0 97 f2 b1 b4 dc 7c bb e6 0a c2 5b 9e d7 c8 a5 f9 63 a2 cd // a3 7d 9b 4d 59 2e d9 1e a9 61 7d 51 71 81 38 2e 39 05 c6 ba 96 23 8e // 8b 77 13 3f 1b dd e7 4d 3c 58 cf 0e 47 e6 a0 86 23 dc 58 36 5f 37 48 // c8 c0 b1 07 47 92 1a 75 2f d0 06 43 06 48 d2 3d 68 5d 00 bc b2 97 81 // 6b 13 1a 8e 8b 24 70 61 a6 b8 4a 87 14 6a 53 db d4 83 d0 17 61 16 24 // ff a1 c3 6b 0a da 9e c0 d2 c3 1c a4 18 67 05 52 b5 d4 11 ea 50 bd d0 // 5e 27 a1 a0 d0 3d 76 7d 42 48 59 26 00 72 89 91 89 27 90 cc 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00} (length 0x2000) // } // len: bytesize = 0x2058 (8 bytes) // res: nil // ] NONFAILING(memcpy( (void*)0x200000000880, "\x62\x4d\x42\x44\xed\xbd\x38\x19\xf7\x73\xde\x79\x01\x09\xae\x4a\xed\xed" "\xc9\x86\x66\x6d\xd7\x50\x49\x4b\x74\xf1\x85\x06\xdc\x03\x25\xf4\x04\x83" "\xbf\x3d\xe4\xb2\xd0\xc8\x06\x34\x0f\x8e\x75\x86\xc0\x4b\x7b\xd2\x11\x97" "\x6c\x3f\x94\xb2\x86\xb8\x89\x46\xbe\x7e\x48\x1a\x0e\xa4\xf5\xf4\x3a\xc3" "\x9d\xba\x05\xd0\x80\x2c\xf0\x03\xfa\xc5\xe0\x1b\x53\xd7\xd8\x0f\xa0\x6d" "\x6b\x14\xcd\xe6\x63\xed\x5e\xe2\xa8\x1c\x2c\x7d\x21\x2a\xeb\xd3\x4c\x8c" "\x79\xaf\x19\xe7\xa3\x0d\x58\xda\x57\x74\x43\xe2\xff\xba\x32\xe0\x44\xa1" "\x9c\x6d\x16\x19\x11\x01\xb9\xcd\x10\xab\x61\xc8\x85\x13\xa2\xd5\x5d\x94" "\x3e\xe7\x0b\x51\x87\x2e\xb6\x55\xc8\x11\xcb\x51\xce\x1a\x80\x99\xfa\x12" "\xfc\x4e\x9d\xa4\x3c\x86\x98\x69\xee\x51\xdd\x15\x03\xe5\x76\xfc\xb7\x7c" "\x8e\x39\xb3\x87\xc7\xc3\x02\xcb\x78\x12\x78\xd9\xa2\x60\x53\xc3\xfc\x8d" "\x28\xce\x3b\x52\x1c\x69\xb6\xd0\x23\x75\xf8\x8b\x8d\x63\xfe\x43\x37\xb6" "\x69\xce\x8b\x08\x93\x1c\xfe\x06\x90\x1c\x5d\x0f\xc2\x2f\x02\xe4\xca\xca" "\x24\x8e\x72\xad\xe2\x88\xea\xa3\xbf\x1f\x87\xf1\x35\x31\xd6\xa2\xbf\x5a" "\x82\x65\x87\xac\x8b\xa2\x2b\x9f\x61\x49\x3f\xe0\xf5\x68\x2f\xfb\xb1\x6e" "\x2e\x0d\xe1\x33\x30\x5e\x83\x22\xc5\x5b\xef\x0d\x35\xc5\x7e\x71\x3d\xed" "\xa9\x66\x50\x57\xe5\x0a\x30\x67\x79\x84\x4c\x2e\xd2\xed\xc0\x2a\xe1\xcd" "\xc0\x5c\x9b\x59\xcd\x6e\x64\xed\xbf\x22\xf6\x14\xd9\xb2\x76\x6c\x43\x48" "\x52\x4c\x2b\x16\xfe\x91\xc9\x24\xb5\x4b\x40\x4d\x6a\x29\xc5\xfb\xf6\x01" "\x66\x3f\x3e\x5f\x05\x0f\x96\xe4\xfa\x2a\x26\x6a\x81\x0e\xee\xdc\xff\xa0" "\x4a\xa5\xc6\x97\x95\xef\x66\xad\x79\x87\xe9\xb1\x34\xcf\xc5\x63\xd5\xff" "\x85\xcc\x59\x0f\x5f\x3b\x60\x6e\x1b\xd6\x20\xab\x7a\xd1\xa6\xa7\x9a\x12" "\x81\x70\x8a\x16\xa2\x27\x00\x4c\x80\xf2\x9e\xd4\x07\x1d\xe4\xd6\xa4\xda" "\x40\xf7\x06\x7e\x62\x30\x3d\xbc\xed\x42\x60\xb1\x74\x0b\x53\xa2\x56\xb8" "\xb5\x3e\x7f\x37\x97\x1b\xf5\x08\x76\xe0\x02\x52\x75\xb7\x6b\x36\xdf\xce" "\x96\x7c\xc6\x0b\x14\x21\xdc\xb3\x83\x98\xd4\xc0\xb8\x08\x9f\x1c\xd1\xad" "\x3f\xb1\xe5\xc4\x55\xb1\x74\x83\x75\x54\x55\x4b\xf4\x4f\xd3\x70\xe0\x08" "\xf2\x0e\xe6\x90\xa1\x6f\xed\x10\x55\x02\x4b\x5d\x13\xe7\x36\x8c\x11\xf9" "\x4d\xcf\xb9\x0f\xea\x6f\xc1\xa0\x14\x76\x3d\xed\x93\xdd\xe5\x02\x01\xd1" "\x27\x6d\xe0\x5a\x9f\x1a\x9c\xc2\xc4\xcc\x4f\xfd\x56\x94\x8d\x44\x82\xec" "\x6b\xdc\xc4\x21\x7c\xef\xd9\x3e\x4f\xdf\xbd\x21\xfc\xac\xf6\xd9\x0c\x17" "\xf3\xe5\x80\x8a\x9d\xcb\xa7\x39\x51\x79\x8a\xb8\xce\x07\x05\xd7\x0c\xee" "\x8b\xd8\xf3\xfd\xca\x49\x89\x20\x11\xcc\xb3\x8e\xeb\xed\x94\x90\xa7\x53" "\xe8\x6e\xb5\xb2\x9a\xe3\x8c\xfb\xac\x86\x9f\xda\xe0\xa3\x9a\xac\x6d\xb3" "\xb9\x2f\x1a\x5e\xb2\x1d\xd8\x06\x18\x44\x2f\xe7\x17\xf0\xf0\xe8\x7c\xc6" "\x2d\x49\xeb\xbe\x97\x4c\x9d\x72\xf3\x8b\xa2\x7d\x0b\xa9\x87\x5e\x82\x95" "\x2b\xdc\x33\x95\x5a\xcf\x95\x1f\x86\xdb\x40\x0b\x6e\x8d\xeb\x0f\x83\x2c" "\x60\x23\x59\x3f\xef\xd3\x30\xb0\xcc\xf5\x41\xba\xb6\x3b\x8f\x0c\xed\x64" "\x02\x94\xdd\x3a\xbc\xe6\x99\xb5\x07\x16\xcb\x8d\xaf\xcb\xc6\x42\xf1\xb6" "\x8f\xb4\x9b\x5e\x5a\xac\xb4\xb8\x46\xe0\xdc\xc3\x6c\x7b\x02\x8f\x9e\x0f" "\x44\x61\x4d\xee\xf0\x0a\xed\x13\xdc\x0f\x93\xc7\x39\x71\x2d\xce\x21\xb0" "\x1d\x8b\x7b\x4f\x5d\x46\x8d\xda\xc5\x17\x58\xd2\xe9\x93\x32\xff\xa1\x5a" "\x9f\x96\x5d\xba\x1f\xb2\xe2\x70\x89\x6d\xa9\x50\x15\x47\xab\xb0\x8b\x72" "\x12\xa9\x63\x3c\x20\x96\x25\xee\x54\x38\x9c\xcc\xf3\xcc\x26\x47\x65\xad" "\xc5\x03\x9c\x9f\x80\x58\x33\x42\x7b\xf0\x86\xc1\x5a\x78\xcc\x91\xe7\xa9" "\xad\x39\xbc\x8f\x51\xbd\xac\x0a\x52\xd8\x82\x87\x95\x27\xf0\x87\xb5\x89" "\xf5\x0a\x1d\x84\x02\xde\x99\x60\xfa\xa9\x1e\x1c\x43\xae\x46\x40\xb5\xe8" "\x5f\xf7\x92\x4b\xf8\x7b\xee\xff\x7a\x5f\xc3\xd0\x27\x36\xf3\x73\x99\x1f" "\x32\xd3\xf2\x4a\xb8\xf4\x92\x90\x4b\xbb\xf6\x5e\xf5\xce\xe8\xc1\xd7\xcb" "\x0b\xf0\xd6\x7e\x8a\x0a\x6b\xe8\xe3\x57\x77\x56\x31\xd9\x4e\xe8\x47\xd5" "\xf2\xad\x2d\xa6\xcd\x38\xec\x69\x3a\x5e\x9d\xd5\x59\x62\xda\xa6\x02\xbd" "\x87\xe6\x83\xea\xfe\x29\xaa\x34\x81\x0b\x8c\xca\x23\x93\x57\x99\xa3\xe9" "\xa0\x4c\x50\x15\x6f\x99\x8c\x59\xfc\xf6\xac\xc2\xf7\xa8\xf9\xf5\x9a\x94" "\x1c\x84\x49\xfc\xbe\x03\xa4\x3d\xf5\x88\x92\x06\xb6\x16\x33\x76\x62\x5c" "\x31\x58\x64\x09\x3c\x84\x10\x8f\x7b\x7a\x1b\x1c\xe0\x62\x8f\xc6\x8a\x61" "\xcb\xff\x7d\x5f\x0f\xc9\x9a\x6b\xdc\x94\xba\x76\x22\x14\x37\xc4\x87\xd0" "\xf5\x21\xfd\x9d\x7d\x19\x24\x64\x64\x72\xb0\x69\xf1\x98\xc9\xef\x11\x94" "\x30\xdf\x16\x8c\xd9\xbd\x6b\xf1\xbe\x35\x12\xdf\x26\x5e\x8e\x94\x7f\x43" "\xcc\x80\x7b\x89\x89\x65\x8e\x96\x4d\x91\x24\x34\x06\x32\x48\xba\xd7\x3b" "\x69\x42\x60\x48\x9b\x71\x5f\x38\x61\xd2\x5e\x4c\x9d\xc5\x72\x40\x3c\x21" "\x43\x5c\x2c\x23\x8d\x11\xda\x45\x0d\x80\x7a\x32\xe0\x75\x95\x7c\xb8\x91" "\xf6\xa3\x99\x4b\x0d\x68\xe1\x15\xc5\xd0\xec\x0c\xa3\x6b\xeb\xfc\xbd\x31" "\xb0\x77\x88\x74\x6e\xcf\x39\x8c\x59\xd4\x01\x7b\x30\xea\x3e\x07\x91\x93" "\x8d\x36\xe2\xf7\x9f\x42\x47\x0e\x89\x1f\xd4\xce\xa7\x62\x3a\xba\xef\x65" "\xb0\xb0\x0a\x5b\xd0\x93\xa0\x87\xb7\x61\xc1\xef\x6f\x6b\x3c\xb2\x63\xeb" "\x33\xee\x0f\x44\x26\xb7\x5e\x9b\x40\xf2\x40\x46\x4c\x29\xae\x4c\x60\xa4" "\xef\x8b\xde\x98\xb3\x37\x79\xea\x17\x3e\xc4\x28\x5f\x74\x38\xd9\x45\xf2" "\x7d\x2f\xe5\x4d\xd3\xf0\xf0\x4f\x3d\x27\x06\x6a\xaa\x65\xf1\x11\x06\xac" "\x13\x73\x9b\x34\xc8\x78\xe4\xd6\xf3\x95\x25\x71\x4e\xc0\x50\xa2\xd4\xca" "\xc2\x00\xcf\x25\xe4\x06\x86\x47\x2d\xff\xa7\xfe\x10\x47\xf8\x13\xf7\xea" "\x95\x1f\x80\x51\xdb\xbe\x6a\x7e\x57\x85\x7a\x5f\xc0\x1a\x99\x7b\x54\x26" "\x97\xb8\x81\xc1\x17\x3e\x57\x34\x54\xb4\x70\x52\xd7\xb3\xfe\xcf\xd3\x86" "\xd5\xab\x4a\x38\xf5\xe2\x1a\x89\x89\x32\xd6\xb0\xec\xa2\x94\xc1\xbd\xe8" "\x41\x34\xfb\x12\x61\x57\x4c\xf6\xe1\x91\x26\xec\xa0\x68\x6d\xb0\x20\x38" "\xc5\xc5\x4e\x45\x51\xf4\x0f\xd5\xe2\x8d\x06\x82\x83\x7c\xd7\x18\x15\xcf" "\x87\xca\xfc\x08\x74\x85\xf5\x76\xa4\x0d\x45\xae\xdb\x1a\xc9\x3e\x2f\xb5" "\x2e\x9a\x02\x80\x10\x43\x9b\x23\xb0\x8d\xc6\x51\x43\xfe\xb5\x06\xa7\x0c" "\x93\xe3\x20\x05\xaf\x25\x40\x61\x9b\x5f\xd3\xbe\x81\xc6\x7e\xcd\x8a\xbe" "\x60\xc4\xd5\x09\x26\x69\xb9\xfa\xba\x13\xa0\x70\xc8\x82\x07\x63\xf1\x8b" "\x77\x9c\x6f\x03\x88\x8d\xe2\x66\xba\x90\x0e\x6d\xeb\xb7\xf9\x8d\xef\x3e" "\x90\xfc\x4b\x2e\x97\x2d\x60\x6a\x65\xa5\xdc\xf5\xda\xa0\x3e\xdf\x74\xa6" "\xc8\x4f\xa4\x6a\xea\xa1\x69\xda\x6d\x6c\x5d\xb0\x5e\xf7\xfb\x52\xbe\xf0" "\xce\xd7\x82\xc9\xeb\xdb\xab\xc8\xbf\xd9\x11\x14\xf2\x11\x5a\x80\xe4\x7c" "\x1c\x72\x94\xf6\xcb\x12\x8b\xf9\x51\x32\x3e\x3b\x6b\x18\x1f\x7c\x66\x1d" "\xda\xc1\x34\xfd\x5f\x6c\xfa\x3d\x69\x61\xee\x2f\xbd\x2e\xe5\x93\x32\xf6" "\x3d\xa1\x1e\x16\x2b\x0c\x1c\xff\x52\xc1\x18\xfa\x6e\x1b\xac\x11\x30\x09" "\x15\xe0\x80\x94\xae\x2d\x84\x0e\xe7\x51\x2a\xee\x48\x8d\xd6\x20\xaf\xbd" "\xd2\x78\xc4\xca\x34\xdd\x3f\xab\xf8\x4d\xff\xec\x8e\x08\x08\x51\xac\xd0" "\x46\xcd\x77\xbd\xaf\x17\x2e\x41\xb9\xdc\xbc\x6b\xf2\xf1\xec\x1d\xc8\x7c" "\x7a\xba\xa4\xa1\x5a\x09\xbb\x74\x08\x47\x99\x6a\x5d\xfb\xa4\x80\x19\x55" "\x32\x3a\x34\xeb\x3c\xad\x71\x65\x1e\xbf\x66\xb6\xa2\x75\x8d\xf2\xa7\xa3" "\xfb\x9b\x49\xed\xd0\x15\x5f\x36\xa2\x2a\xb7\x30\xd0\x93\xd2\xbe\x88\x3f" "\x6c\x36\xa2\xe1\x74\x44\x39\xb6\x58\x88\x1c\x73\x9a\x3c\x00\xe1\x0f\x19" "\x3f\xe9\xf6\xc1\x97\x34\x56\xc4\x2f\x2b\x3b\xf7\x35\xe3\xcd\xf5\xa5\x95" "\x74\xcc\xd1\x84\x1c\xea\x36\x69\x02\x78\xe2\x72\x22\x05\x10\x85\x02\x07" "\xf5\xd0\x53\x56\xcd\x37\x3a\x3b\x98\x4c\x66\x23\xd7\x8c\x6d\x63\x15\xac" "\xaf\xad\x33\x21\x23\xa5\xe5\x1b\x8c\xa7\xe1\xfe\x00\xeb\xe7\x41\xef\x9b" "\x95\x06\xff\x57\xf7\x57\x98\x92\x3e\xe5\x82\xaf\x3e\xc2\xc5\xfd\x6c\x2a" "\x14\x85\x04\xd3\xd4\x55\xe5\x3a\x7d\xc7\xab\xb5\x1e\x72\x29\x7a\x5c\x45" "\x33\xc5\xb8\x1a\xb3\x75\x43\xac\x95\xa8\x8a\xca\x05\xde\xbb\x9b\xc7\x98" "\xca\xab\xe0\x54\xdf\xe3\x3f\x8b\x81\x55\xd9\x97\xb4\x95\x2a\x54\x68\x7f" "\x02\x21\x59\x52\x08\x86\xfe\x59\x93\x76\x20\xed\xfd\x3d\x61\xe3\xc2\x9e" "\x99\x94\x93\xc6\x0d\xea\x3c\x83\x9d\x8f\x4e\xcd\x18\xc2\xec\x5d\x2d\xed" "\x57\x33\x18\x73\xcd\x1f\xbb\xbf\x5f\x27\x54\xb1\xc6\x51\x8b\x73\x43\xc7" "\xdc\x32\xfa\xd1\x40\x1e\x00\x1a\x24\x55\xef\x5d\x6d\x31\x22\xdf\xbd\xbc" "\xbf\x71\x8a\x86\xee\xa5\x3e\x13\x60\x70\x34\xf1\x46\x3c\x62\xed\xad\x82" "\xd4\xc1\x2c\x85\xcd\x1f\x9d\xbd\xb7\xf3\xf8\x5f\x13\xf9\x65\xcc\xa6\x33" "\x15\xd4\x36\x4d\xc7\xc8\xcd\x14\xad\xa7\x66\x79\xc1\xe1\x39\xe9\x81\x52" "\xd5\x1e\xef\x22\x77\xfc\x44\x1b\xb1\x2e\xdd\x45\xfb\xc2\xc1\x31\xec\x41" "\x7a\x9b\x0c\x19\xda\x16\x33\xf7\x04\xff\xa7\x31\x2e\x11\x0d\x24\x85\x20" "\xc9\x9e\x2a\xa6\x5e\x1a\xa7\x10\x36\xf0\x41\x40\x58\xf9\x07\xf7\x91\x1c" "\x89\x55\x0d\x4a\x0d\x06\xdf\xa5\x6c\x63\xe8\x16\x65\x41\xc3\xd6\xf4\x0e" "\xaa\xa8\x96\x4f\x19\x9f\xc8\xbf\xda\x9f\xf6\x2f\x71\xfa\x4b\xad\xc5\x4e" "\x8a\x4f\x91\xce\x15\x12\x41\xbf\x0c\xdf\xc7\x6d\x05\x3c\xb2\x6a\xa0\xc1" "\xa7\xbc\xaf\x99\x6b\x94\x10\x8e\x16\x81\x8b\x0a\x4f\x53\x19\xa9\x48\xa6" "\x3d\x30\x72\x38\x18\x3e\x05\x3e\xda\x3b\xdd\x40\x45\xa7\x6f\x36\x5f\x15" "\x2f\x14\x48\xc1\xfa\x6a\x66\xfa\x97\x59\xda\x78\xf3\x3c\x60\x91\x33\x2c" "\xf6\x4d\x98\xeb\xc7\xd2\x01\x79\x02\x5c\xff\x04\xac\x28\x8e\x4c\xbf\x4c" "\xc9\x27\x2b\xc1\x94\x06\xa3\x8a\x4e\xa0\x53\x91\x1d\x92\x52\xe5\x68\xb6" "\x80\x5f\xc6\x2e\xf4\x13\xcc\xaf\x3a\xac\x2c\x55\x5e\x04\x3d\xee\xc5\xd1" "\x0c\x42\xca\xa6\xc2\xb4\x75\x37\x32\x14\x34\x10\x2d\x07\x6a\x0a\x07\x96" "\xca\xec\x2e\xcd\x0f\x2b\x71\x5b\x28\xa6\x0e\x64\xc4\x3e\x2d\x8b\xb6\x14" "\xe3\xd5\x75\xcf\xb1\xf2\xb8\xb9\xba\xba\x32\x75\x23\xe0\x34\x66\x82\x93" "\xf3\x3d\xc6\xde\x66\x88\x8c\xd4\xf8\xe8\x9b\xca\x84\x0f\x80\x2f\xae\xfe" "\xdf\x5e\xa7\x98\x5b\x72\xd0\x7c\x8c\xc1\xea\xac\xa3\xa3\xcd\x77\xfe\xdd" "\x3a\xe5\x57\x6b\xc9\xe2\xd7\x2e\xad\x7a\xce\xbf\x30\xae\x76\xa8\x43\xe0" "\x86\x7b\x7d\x27\x00\x5c\x02\x5b\x0a\x4b\xd3\xda\xd4\xd1\x46\x4e\x83\x96" "\xb4\x80\x35\x6b\xfc\x42\x7e\x68\x97\xfc\xb7\x8c\xc8\x73\x41\x38\x18\x51" "\x45\x0f\xe6\xbd\x3e\x59\x93\x7f\xa2\xdb\xfc\x3f\x09\x16\xbd\x43\x21\x7d" "\xf1\x2b\x2d\x3a\xb8\x82\x74\x3c\x4f\x2d\xc1\xca\xd7\x54\x37\x18\x2a\xed" "\x7f\xca\xd7\x6d\xfa\xcb\x70\x39\x2d\x2c\xf8\x04\x84\xee\xfd\xf7\x10\x34" "\xe7\x19\x67\x74\x14\x44\xa1\xe6\x44\x2b\xf3\x5e\xa1\x33\xc9\x64\x43\x42" "\xc2\x03\xf8\x5f\xd0\xb6\x8b\x9a\xe4\x5f\x26\x15\x39\x1d\x3d\xfe\xe6\x32" "\xc8\xa7\x41\x01\xb4\x9f\xc6\xa8\xa8\xf6\x03\xa3\x2c\x2e\x76\xb7\x57\x46" "\x74\xc4\x2b\xa0\xb8\xeb\x94\xbf\xf2\xd6\x1b\xf4\xb3\xce\xa5\xc1\xce\x78" "\xf4\x43\x1a\x68\x7c\x7c\x9b\x28\xee\x5e\xb9\x55\x93\x66\x97\xdc\xb2\xfa" "\xab\x71\xd3\x42\xfc\xca\x80\x77\x44\x43\x2d\xfd\x81\x0f\xa8\x1e\xb2\x74" "\x85\x82\xae\x17\x92\xb5\x3b\xd4\xba\xaf\xb3\xb6\xa4\x5b\x3c\x0e\x96\x6f" "\xd4\xec\x11\x3f\xce\xdc\x8a\xa1\xae\x32\x69\x3a\x43\xbf\x6e\xcf\x28\x9b" "\x97\x9b\x9b\xf2\xd8\x4f\xcb\xdc\xdb\x3c\xfa\x53\xad\xe4\x94\x66\xfb\x3d" "\xc3\xa8\x90\xea\x72\x39\x5a\xa0\x0a\xf8\x92\xc4\x32\x5c\x9a\x6c\x4a\x77" "\x58\x46\x76\xbb\x79\xb1\x1f\xcf\x93\x08\x80\x6f\xd7\x2e\x1b\x41\x85\xd6" "\x58\xb2\x60\x9c\xfc\x5f\xbe\xf6\x84\x4e\x5d\x9e\x72\x0e\xae\x11\x64\x9c" "\x73\x3b\x90\xd9\xcc\x3e\x7f\x61\x10\xc4\x3a\xb3\x9a\x7b\x81\x3b\x85\xc6" "\x89\x54\xe1\xbc\x91\xaa\xe1\x3d\x95\xfb\xee\x1e\xfb\x29\x72\x6d\xc2\x5f" "\xe5\xc8\x26\x68\x97\x9e\x9d\x6b\xc5\xbc\xe7\xf2\x7a\x82\x54\x15\xbd\x13" "\x0a\x51\xf4\xf3\xf8\x2e\xe1\x1a\x81\x53\x51\xe5\xec\x9a\x1b\x51\xcc\x35" "\xf9\x53\xd0\xd8\x85\x83\x69\x1f\x09\xa5\x43\x2c\x05\x64\x46\xab\x56\x55" "\x3d\xec\x70\xa3\xe3\x1f\x41\xfa\x47\x36\xdf\x08\x0c\x32\xb7\x74\xef\x71" "\x22\xbe\x40\x0c\x1d\x05\x19\xab\x27\xf4\x51\x26\x03\x12\x41\x4b\xba\x6c" "\x93\xcf\xa1\x00\x00\x00\x6c\x28\xa5\x2a\x75\xae\xaa\x82\x7d\xbf\x28\x2b" "\xe3\x55\x84\xf9\x12\x26\xd4\x1a\x5c\xd3\x5d\xac\xfa\xad\x5c\x48\x3e\x9c" "\x31\x7e\x23\xbf\x2f\xda\x6c\xf0\xba\x79\xc2\x80\x80\xc0\xf8\x6f\x01\x27" "\x72\x8c\x7d\xfb\x9a\xf7\xbf\x41\xa9\x56\x9d\x8e\xf8\x68\x92\x50\xde\x28" "\x22\xb4\x45\x59\xb4\xf7\x7e\x62\xc3\x60\x96\x1a\x8e\x07\x8d\x8c\x85\x02" "\xf8\x3b\x00\xf5\xd6\x4c\x51\x2f\x12\x86\xfd\xc1\x9f\xff\x41\x06\x5f\xcd" "\x7e\xc7\x77\xb4\x55\x52\xe5\x73\x4a\x48\x9f\x02\x8b\x6d\x82\x2c\x97\x83" "\xca\x7a\x77\xf4\x3b\xca\x21\xb5\x5f\x98\xfd\xec\xf6\x5c\xea\x40\x77\x7f" "\x6c\x5c\x60\x65\x44\x6f\xcc\x34\x68\x37\x0e\xd1\xe1\x99\x98\x57\xf9\x6a" "\xcf\x04\x46\x3e\x09\xae\x68\x5e\xda\xe8\xcc\x09\x99\xad\x44\x24\x7f\xef" "\x32\x0e\x1c\x88\xfe\x2a\x22\xa2\x39\x03\xdf\xeb\x1f\x74\x14\xd3\xf3\xc1" "\xe8\xda\x24\x68\x89\x78\x1b\xd1\xc2\x04\xb3\xbe\x22\xa2\x7e\xe2\x93\x5a" "\xc6\x2e\x1d\xff\x8e\x6d\x67\xd9\xef\x6d\xba\x91\x88\x40\x46\x9d\x6d\xff" "\xb4\xa0\xb1\x3f\x60\xab\x4f\xea\x38\x11\xa1\xf4\x17\xa2\x38\x29\x38\x3f" "\x6b\x86\x56\x90\x5b\x52\xd8\xfb\xe5\x55\x41\x4d\x36\x8d\xe8\x6c\x37\xb1" "\xa2\xe2\x4e\x75\xb4\xc5\xc8\xb4\xab\x0f\x4c\x44\x11\x19\x43\x06\x25\x54" "\x3b\xaf\x11\xe8\x05\x44\xda\x74\x26\x62\x5c\x08\xe3\xa8\x11\xbf\x36\x44" "\xac\x61\xb1\x5a\x96\xbf\xb5\xe2\xc2\xfb\xb3\x15\xf5\xbd\xb1\x6d\xa0\xfa" "\xe3\x9c\xa3\xef\x27\xa6\xe9\xf8\xb0\x15\xd5\x10\xed\x79\x40\xf2\x13\x03" "\x24\x21\x25\xec\x34\xbd\x9e\xf7\x25\x7b\xe4\xd2\x08\xb5\xcc\x02\x8c\x10" "\x3a\x9d\x94\xae\x77\xd4\xaf\x85\x00\x07\xd4\x6d\xc3\x0c\x57\x0e\xd4\x2d" "\x18\x9f\x9b\x5a\x51\x19\x63\x88\xbc\x1f\xb7\x09\xb6\x6e\x2b\x27\x05\x1e" "\xc7\x89\x5b\x19\x46\x54\xd0\x77\xc5\x75\x63\x43\x2c\x64\xe7\x34\x20\x93" "\xd0\x61\xf1\xa6\xb7\x01\x6f\x3c\x01\x91\x66\xc5\xd2\x7b\x1b\x58\xf2\xdf" "\xcd\xb5\xe3\x80\x24\x16\xd2\x11\x2f\xd7\x35\x09\x04\x0e\x8e\x6f\x06\xf6" "\x85\x1b\xeb\x91\xcd\x12\x0d\x4c\xa9\xc0\x15\x48\xb1\xf0\x50\xbc\xe8\x50" "\x63\xcd\x8e\x26\x5a\x86\x78\x4e\xb3\xce\x6b\x3d\x86\xee\x43\xe8\x2b\xd2" "\xc3\x4f\xeb\x70\x0f\x5b\x95\x89\x5c\x86\xd5\x19\xe0\x27\x53\xe8\x25\x0e" "\xc3\xd5\x96\x53\x3d\x1d\x05\x1c\x92\x42\x64\xbb\x65\xb6\xb1\x2a\xad\x89" "\x1d\x2c\x37\x99\x68\x71\x11\xae\xa4\xbe\xe7\x7f\x71\x93\x19\x6b\x86\x3c" "\x3d\x10\x37\x26\x4c\x6e\x7f\x59\x09\xf5\xba\x10\x55\xf7\x9b\x66\x56\x2f" "\x76\xc9\x37\x5b\xf1\x0c\x2f\x3b\x23\xe2\x81\x58\x1a\xd0\xf8\x55\xca\xcf" "\x00\x42\x61\xb1\x7b\x5c\x82\x8b\x10\xdc\xe6\xd5\x3d\xff\xcf\x61\x51\x81" "\x5e\x97\x9a\xfd\x08\xcb\x94\x51\x1b\x98\xa2\x33\x92\x95\x38\x18\x5d\x95" "\x77\x0c\x16\x4b\xf5\x3f\x49\x08\x1a\x4b\xf2\xd2\xd8\x2c\x10\xa4\xe6\x4a" "\x26\x4b\x3f\x14\x09\x85\x68\xf1\x96\x2f\x06\xc0\x00\x43\x6f\xc2\xcf\x63" "\xb5\xdb\x2e\x5f\xef\x97\x3e\x46\xc5\x19\x52\xf0\x46\x29\x96\x34\x69\xc5" "\x1e\xc4\x60\x71\xdf\xf8\xa7\x3e\xbc\x62\xc8\xa3\x9d\x86\xf8\x71\xbd\x9b" "\x2b\x9e\xf5\x93\xc1\x88\xc0\x46\x08\xfd\xc8\x87\x93\x5f\x00\xd2\x70\xf2" "\xa5\x44\x0e\xe0\x3c\xe1\x41\xc3\x16\x14\x18\x8f\xa5\xb4\xd0\x7b\xc2\xe4" "\xc2\xec\x69\xcf\x64\x8a\x93\x59\x80\x90\x79\x41\x43\xdf\xc3\x29\xe4\x8b" "\x87\x09\x06\xc2\x65\x8b\x13\x50\xe3\x62\x8e\x2a\x4d\xd8\x9a\xe6\x53\x87" "\x57\xf7\x07\x2c\x87\xfa\x42\xf1\xf4\x2d\xe0\x55\xf0\xa5\x1e\x27\x66\x5c" "\x97\x8d\x6c\x9e\xbd\x63\x5d\xd7\xcb\x49\x41\x11\x31\x96\xca\x81\x3f\xaf" "\x77\xcf\x2c\x57\x2f\x16\x85\x88\xe5\x26\x82\x97\x7f\xd0\x5a\x96\xfb\xa3" "\xe3\xa2\x0d\xff\x14\xea\xe4\x6e\x10\xfd\x3b\x9c\x4f\x80\x3e\x73\xf7\x29" "\xd4\xbe\x09\x66\x36\xf1\xec\x79\x4c\x76\xd9\x90\xe1\x35\xf9\xcb\x10\x58" "\x00\x1a\xba\x39\x53\x02\xa6\x92\xff\xba\xb4\x49\x1b\x51\x5b\x93\x90\x2a" "\xb4\x29\x7d\x43\xed\xdc\x4a\x3e\x58\x7d\xbe\x52\x49\x45\x15\xe1\x0b\xec" "\xde\x25\x4a\x23\x1c\x63\x90\x07\x58\x8c\x0e\x40\x9f\x2e\x82\xea\x15\x15" "\xe9\xc1\xbe\x4c\xae\x9b\x1d\xed\x2d\x7a\xb0\xcd\x74\xb2\x22\xb1\x9d\x06" "\x81\x85\x45\x78\xd6\xe2\x74\xe4\x55\xf0\xb3\x66\x13\x36\x8d\xe9\x18\xbe" "\xda\x53\xbd\xce\xd9\x36\x81\xcd\x72\xe8\x31\xcf\x66\xec\xc4\xc3\x73\x2c" "\x2f\x5c\x93\x50\x1a\xda\x66\xc9\x3d\x8c\x49\x94\x0d\x03\x24\x27\x0d\x78" "\xa7\x20\x78\xa5\x4b\xe2\x4d\xff\xed\x99\xd2\xea\x42\x30\x2e\x40\x0f\x22" "\x95\x26\x6d\x7e\x0b\x20\xd9\x1b\xf8\xbe\x80\x85\xae\x40\xca\x9f\xf9\x09" "\x7d\xb5\x03\x4c\x7e\x69\x06\x92\xef\xfa\x84\x03\xf6\x5e\x8b\x3f\x7e\x52" "\xe8\xc3\xc4\x58\x88\x6e\xf2\x59\x75\x5e\x4a\xe7\x0c\xae\x0b\xd4\x25\x42" "\x3d\x39\x6e\xc6\x65\xa2\xa8\xc1\x71\xec\x46\xd1\x3f\xc6\x2d\x1c\x28\x97" "\x93\x4c\xfc\x20\x90\x41\x9f\xe0\x07\xd5\x44\xce\x76\xe6\x64\x0d\xf7\xb4" "\x1c\x73\xf1\x96\x70\x78\x3d\x9a\xd8\x27\x56\x3b\xd0\xff\xeb\x3b\xf1\x4e" "\xce\x8d\xb3\x31\x44\xde\x80\x17\x19\x40\x61\x71\x85\x9c\x66\x78\x89\x36" "\xe9\x15\x75\x92\x5c\x1f\xf5\xb9\xb9\x57\xbc\xac\x43\xd1\x75\x52\xeb\xc4" "\x05\xa1\xd9\x58\xe7\x64\xc3\x5e\x6f\x64\xaa\xdf\xb9\xfb\x63\x80\x6b\x61" "\x4f\x8a\x45\xe7\x1a\x05\x33\x71\x5a\x2c\x6e\xaf\xbc\x85\x09\xd7\x89\x73" "\xf6\x45\x51\x0c\xa3\x40\xa5\xc8\x6c\x16\x42\xf8\x4a\xb1\x10\xd5\x64\x9d" "\x0e\x1f\x91\x92\x61\x2c\x4e\x13\xe2\x43\x45\xa6\x72\x12\xfe\xad\x33\x95" "\xb5\xad\x10\xf6\xeb\x60\x01\x6c\xcb\xb9\xe6\xd0\x7e\xa8\xdc\x29\x5e\xba" "\x02\xbc\x35\x49\xa7\x85\x23\xf3\x06\x76\x6e\x24\xd6\x6f\xe0\x4c\x18\x2e" "\xac\x76\x69\x3e\x50\x7e\x66\x4c\x25\xbd\xc2\xbd\xfc\x88\xc5\x70\x8f\x1d" "\xd8\x4d\x68\x5b\x3f\xbf\x6f\x51\x4a\x6f\x50\x62\x84\x9e\x4a\x0f\xb2\xaa" "\x98\xa0\x47\x39\x17\xcb\xf0\x1c\xef\xfe\x04\xac\x96\xb0\xa2\xec\xf2\x4d" "\xc8\x3e\x98\xf0\xc0\x8d\xe0\x1c\xcd\xf2\x2c\xe6\x50\xef\x2b\x1b\x8e\x47" "\xb5\x67\x06\x53\x4d\x86\x55\x0a\x57\x78\x3d\x34\xd0\x09\xbe\xa8\x96\x91" "\xa6\xbb\xf0\x14\xdc\x75\x62\xd4\x21\x63\x0a\xec\x61\xcb\xd7\x7c\xa8\xca" "\x98\x0a\x05\xff\xd6\x7f\xc1\xbe\x51\xd8\x81\x2c\xaf\xad\x33\xd7\x2b\x73" "\x35\x33\x40\xc3\xba\x93\x87\x35\x83\x9e\x3e\x80\x9d\xf8\xfe\xf1\x3b\x23" "\xdb\xe6\x0e\xb4\x5e\xb6\xa4\x8d\xb6\xbf\x3a\xf8\x07\x33\x7c\x70\x28\xa5" "\x69\x70\x4c\xea\xc8\x5b\xf0\x67\x35\x1e\xf4\x6b\x08\x8d\x81\xc6\xfb\x77" "\x6b\x4f\xcf\x5f\x88\x81\x84\x6a\x85\x72\xe5\x52\x55\x43\x6d\xc5\xeb\x40" "\xc9\x76\xed\x42\xbc\x2a\x9d\x85\x75\x9e\x94\x7c\x6e\x42\x12\x05\xeb\x64" "\xd8\x0a\x2f\x0d\xda\x45\xdc\x7c\x7d\xa9\xa7\x72\x6d\xfa\xd0\xef\x56\xeb" "\x89\x7e\xd4\x0d\x2a\xce\x48\x35\xa5\x17\x4d\xd6\xa6\xc4\xf5\xc8\xcc\xf8" "\xe0\xc8\xc1\x5b\x49\x43\x89\x46\xb4\xa5\xdd\x1c\x8c\x57\xe5\x95\xbb\x8e" "\xe8\x35\x1b\xda\xf1\x1a\x0b\xc5\x31\x89\xfd\xc3\xc3\x44\x43\x42\x01\x9c" "\x53\x04\x01\x2e\x3e\x1b\xc1\x53\xf5\xfd\x3b\x62\x2e\x2b\xb6\x41\x6c\x23" "\x45\x33\x77\x0b\x89\x79\x09\x7d\xb8\xb4\xe0\x62\x2b\x33\x08\x29\x01\xbd" "\xc6\x58\x17\x05\xca\xe2\x85\xcd\x90\x04\x43\xdb\x6b\xd4\x07\xc9\x95\x77" "\xfd\xdc\x46\xa3\x00\xd8\x3e\x8f\xb6\x84\x4b\x66\x9b\xd2\x5a\x3d\x88\xc9" "\xc9\x70\xad\x9f\x7a\x70\x99\x8a\xb6\x2d\x73\x1a\x6c\x87\xa1\x64\x18\x56" "\xe6\xaf\x5c\x88\x05\x89\x03\xcd\xde\x4d\xfd\xcf\x2a\x69\xf0\x73\x06\xbc" "\x45\x1d\xcc\xaa\x92\x8a\xaa\xc7\x42\x92\x09\xa9\xe0\x7c\xb9\x0b\xbf\x63" "\x94\xe3\xe5\x4d\xd2\x54\x86\x9e\x7d\xd1\xa9\xde\x56\xce\x44\x03\x54\x0d" "\xb2\xc8\x86\x70\x46\x91\xb8\x3f\x41\x55\x75\x2c\xd2\x11\xdf\xfa\x24\xf2" "\x3f\x39\x12\x44\x77\x26\x9b\x59\x80\x70\xa5\x76\xc1\xb3\xdf\x08\x74\xb2" "\xa4\x6c\x57\xe3\xb6\x4e\xb3\x41\xc7\x03\xfe\xff\xd5\x7d\x92\xe4\xd5\x6e" "\x24\xe0\x1d\x91\x61\xec\xba\x1d\x17\x52\xcf\x68\x6e\xac\x14\x47\x53\xb8" "\x54\x1a\x49\xf9\xe3\x7e\xed\xe3\xca\xac\xb6\x11\x79\x9c\x61\xec\xac\x10" "\xce\xff\x6a\x3b\xf4\x30\x0b\x05\xc8\x93\x1e\x3d\x19\xd4\x62\xde\x64\x89" "\xd5\x60\x56\x54\x4b\x5e\xd3\x3b\xcc\x1c\x9a\x95\x26\x0c\xe3\x54\xd7\xa4" "\x6f\x4f\xb0\x35\x47\x47\xd4\xb0\x2e\xbf\x01\x29\x93\xf0\x10\x3e\x21\xa2" "\xa1\x6e\x90\x10\xed\x5d\xdb\x07\x22\xe5\xfa\xf0\x6f\xe2\x1e\x60\x7c\xb0" "\xaf\x24\xb0\xcd\xcf\x85\x2a\xa0\x51\x65\x1a\xa8\x32\xf0\x51\xd4\x12\x58" "\x48\xfb\xc3\x23\x99\x09\x60\xfd\x61\x03\x00\x46\xa2\x23\xb4\x03\x2d\x9a" "\xfd\xf8\x1b\x13\xe0\xfd\x02\xfe\x0e\xe3\x99\x68\xd7\x0c\xbb\xb4\xc1\xb8" "\x2f\x08\x73\xd5\xad\x60\x34\x9b\x3a\xa5\xb9\xd0\x9a\xc5\x0e\xc3\x5a\xb1" "\x00\xe6\xd8\x13\x10\xf8\x91\xe3\x7a\xd5\xe2\xd0\xd9\xbf\x10\xe6\xcf\x07" "\x91\x15\x6d\xeb\x5c\x22\x81\xa3\x5e\x44\x47\x14\x63\x50\x99\x46\xe2\x20" "\x79\xb6\xe1\xd3\x2b\x90\x5c\xa7\x5d\x90\xbc\xea\x1f\x0e\x37\xd7\x11\xb6" "\x7a\xe5\xb0\x90\x11\x94\x70\x27\xd3\xcf\x30\xac\xe3\xda\xaa\x01\x76\x9a" "\x9c\xfb\xe7\x28\x0a\x96\x63\x53\x47\xb2\x33\x02\x27\xda\xe5\xe3\x31\xf1" "\x9b\x79\xfc\xda\x9f\x57\x8a\x68\x20\x37\x8e\x40\xf7\x38\xd9\xba\x97\xdc" "\xa2\x43\x1f\x89\x38\x3e\x64\xeb\x0c\x6e\xaa\xc5\x23\x21\x60\x48\xfc\xea" "\x6d\x31\x7b\x53\x71\x4f\x8d\x4a\x73\x78\xca\xb4\xd4\xe7\xb3\x06\x16\x1e" "\x08\x02\x0f\x4b\xff\xea\xd1\xba\xa0\xe5\x40\xb7\x80\x73\xa0\x56\x19\xbd" "\x9a\xb3\x21\xed\xf9\x57\xa7\xb5\x42\xa4\x9f\x84\xaa\x8b\xa7\x67\xfe\x3a" "\x0d\x6a\xd8\x47\x86\xde\xe7\x93\x22\xd1\xd0\xee\xde\xda\xb9\x31\x3e\x67" "\xa3\x06\xf6\x63\xca\x8e\xe9\x5b\xdd\x10\x36\x0d\xf4\x03\xde\x4e\xcb\x42" "\xef\x1e\x1d\x79\x84\xc1\xe7\x5d\x4d\x23\x40\x63\xa0\x53\x4a\xa3\x51\xf2" "\x1f\xef\xed\xf3\xf5\x57\x76\x0e\x28\xb8\x40\x7b\x07\xdf\x9c\x4f\x18\x44" "\x2d\xca\x35\xe7\xbd\x53\x38\xd9\x93\x3d\xc4\x3b\x63\x7f\x29\xb2\xcb\xd8" "\xa5\xdf\x7f\x91\xeb\x1c\xee\x7c\xcd\x99\xac\x0f\x4d\xe0\xac\x20\x63\x11" "\xbf\x0e\x96\x48\x99\xb8\x52\xf7\xf5\xdb\xe1\xe6\x0d\x10\x84\x10\xef\x14" "\xb6\x7b\xab\x2f\xe3\x55\xed\x98\x17\xfd\x0b\x75\xe7\xa2\x99\x7c\x96\x3c" "\x61\x14\x83\x58\x33\xae\x60\x3c\xfd\x61\x9b\xda\x8b\x76\xca\xb0\x85\x3c" "\x8c\x21\x62\xdf\x8e\xf1\xd1\xeb\x12\x1d\x5f\x07\x16\xc7\xe5\x0c\x27\xb8" "\x38\xb7\x8f\x18\x4a\xa6\xb8\xf5\x26\xce\x6c\x75\x44\x40\x08\x7e\xa9\x20" "\x4b\x50\x1b\xe4\x98\x95\xb6\x0a\x4f\x44\xe5\x31\x60\xea\xff\x36\x66\xd8" "\x6e\x98\x43\xed\xa1\x20\xca\x33\x02\x6d\x53\xe8\x2b\x6f\x20\x2c\xca\x6a" "\x54\xca\x5f\xcf\x05\x0d\x4a\xd4\x68\x64\x9e\x76\x54\x65\x98\x9d\x04\x01" "\x43\xd4\xdb\xb1\x05\xf1\x56\x67\x04\xbb\xfc\x95\x5c\xf4\x9e\xf4\x84\x8b" "\xe6\xeb\x1d\xd7\x16\x8e\x58\xff\x7b\x48\x7f\xcf\xe2\x9e\xed\x48\x15\xad" "\x61\x49\x6d\x6c\x9a\x15\xa1\xe3\x63\x4b\x39\x41\x9a\x0b\x6e\x4a\x58\x2a" "\xac\x9e\x7e\xbb\x3a\xb8\x0f\xab\xcd\xca\xb1\x24\x48\xaf\xb3\x50\x88\x91" "\xeb\x26\xa3\x4e\xaf\xee\x1c\x88\x47\x86\x4d\x4a\x5a\xe1\xea\x98\xef\x89" "\xad\xf3\x4b\x4f\xb0\x30\xd7\x2c\x36\x56\x39\x10\xed\x74\x60\x14\x4c\xf8" "\x38\xf6\x79\xf7\x45\x9a\x39\x1d\x0d\x3f\x51\xdf\xf1\xf4\x0a\x10\x04\x46" "\x2a\xc3\x0f\x21\x11\x96\x8f\x3b\xdc\x06\xfb\x23\x76\xde\xde\x29\x24\x64" "\x0e\xf2\x13\xc5\x5f\x45\x98\xbb\x62\xa9\x4c\xd9\xb6\x3b\x7e\x5b\x78\x47" "\xdd\xcb\xd7\x9c\xba\x3c\x29\xce\x74\x6e\x00\x57\x12\x9c\xc1\x64\x89\xdb" "\xa9\x17\x1f\x06\xf7\x45\xaf\x68\xb0\xe2\xd2\xe2\x24\xf1\x1c\x84\xb3\x41" "\x2f\xa9\x5b\x96\xfc\xd6\x2c\xad\xf6\x52\x3c\x08\xef\xe5\x2c\x26\x14\x34" "\x0e\x05\xc7\xa8\xe1\xd7\xcf\xb8\xa4\xed\xe2\x60\xfa\x5f\x17\x11\x7a\x11" "\xca\xd6\x00\x42\x67\x73\x9a\x85\xfb\x75\x34\x79\x08\xf0\xe4\x12\x97\x2b" "\xc2\x2e\xbe\x9c\x7c\x92\xd1\x2d\xe8\x30\xb7\x99\x55\x39\xef\x50\x3f\x37" "\xf5\x8e\x6a\x64\x0b\x69\xf1\xfd\x29\x2f\x22\x9c\x98\x9f\xd8\x7c\x7d\xd7" "\x32\xe9\x76\xf3\x5a\xc8\x9d\x3a\xb0\xb9\x48\x77\x32\xed\x00\x5d\xf1\x5f" "\x97\xa3\xf8\xd5\xc2\x38\x20\x6e\xfc\x55\xea\x7a\x69\x42\x43\xa9\x56\x6d" "\x35\x2a\xe4\x4d\x84\xbf\x73\xbb\x2b\xaf\x02\xe7\x87\x4c\xd7\x6a\x9d\xad" "\xa7\x30\x47\x2d\xca\x43\xd2\x59\x7a\xc4\xf0\x46\xc0\x5a\xb4\x33\x29\x70" "\x76\xd7\x1d\xd0\xc5\x1b\x3d\x8f\x0b\x90\x5d\x74\xbe\xdd\x16\xe4\xd8\x2b" "\xa3\x36\x54\x15\x06\xaf\x04\x39\x9d\x17\x6c\xd9\x82\x40\xfe\x0f\x6d\x8f" "\xd2\xeb\xa3\x77\x67\x50\x85\xb1\xe9\xd9\xdf\x2e\xf8\x1a\x12\x63\xd1\xd4" "\x80\x9a\x72\x07\x00\x00\x00\x00\x00\x00\x00\x7a\xed\x7a\xa4\xec\x22\x3b" "\xaf\xb0\x20\x71\x09\x9c\xd8\x1d\xbb\x52\x80\x3f\x47\xa6\x37\x92\x2d\xac" "\x81\x77\x57\x76\xb0\xcc\x15\x44\x25\x5c\x89\x13\xf4\x91\xf0\xbb\x39\xb6" "\x3c\x05\x39\x25\x84\x3c\x7d\x0a\xe6\xb1\xbe\xe6\x66\xf3\x84\x9a\x14\x10" "\x7b\x02\xcd\x26\x03\xd3\x1e\xc9\x7a\x69\x35\x3a\x2a\x44\x75\x7d\xb8\x4a" "\xbf\xdb\x4d\xc8\x38\x9b\x1d\xf2\xea\x64\x35\x81\xb1\xc0\x9b\x6a\xcf\x72" "\x03\x69\x16\xd4\x4b\x1d\xa4\x92\x5a\xb7\x39\x0f\xe8\xef\x51\xe4\x52\x3a" "\xf6\xf8\x2d\x1c\x5d\xd7\xd9\x50\xaa\xfa\x7b\xd3\x4f\x6e\xec\xb3\x84\x71" "\x12\x33\xe2\x82\x2d\x5c\x24\xbb\xb2\x9d\x70\x16\x91\xb6\x0f\x75\xdb\xa2" "\x7e\xbc\x92\x9a\x11\x4b\xbd\xed\xa7\x40\x9a\xc7\xbf\x3f\x44\xc9\x11\x49" "\xb7\xa0\x41\x9d\x8e\x83\xc3\xd8\x24\x0b\x59\x2f\xb1\x45\xbb\x62\xfe\xdd" "\x5b\xf3\x15\xac\xec\x43\xc3\x27\x37\x71\x4d\xfe\x4f\xd6\x32\xde\x32\xca" "\xc2\x81\x70\xf1\x1f\x9d\x9f\xa8\xb9\x2b\xd7\x20\x3e\xbf\xbe\x2b\x49\xb1" "\xf9\x79\x0f\x06\x82\x8d\x57\xa0\xba\x72\x84\xf5\x41\x18\x78\x00\xfc\x39" "\xc7\x7c\x3a\x9f\xb5\x55\x9b\xb0\x00\x38\x02\x72\x6b\xcb\x55\x9b\x68\xc1" "\x52\xee\x5c\xc8\x20\xbf\x81\x05\x35\x2c\xfe\x14\xbe\xb8\x6e\x38\xc9\x55" "\x1c\xfa\x68\xe5\x06\x5a\x81\xf7\x11\x39\x31\x08\x4b\xb8\x36\xc0\x9d\x7c" "\x2c\x66\xca\x8e\xb7\xa8\x55\xa2\xc0\x20\x55\x29\xa3\xb3\xd7\x04\xb3\x02" "\x52\xc9\xf2\x19\x0c\x34\x48\xfa\x1b\x5c\x33\x0a\x15\xcc\xd8\x7a\xb9\xe3" "\xe0\xad\xcb\xdd\xab\x19\xff\xb9\x0e\x9c\x24\xf2\xb1\x13\x06\x02\xe0\x2f" "\xb9\xe1\x18\x33\x49\x4e\x20\x4b\x37\xde\x57\x73\x3f\xde\x98\xd1\xc6\x92" "\xaf\x7f\xdb\xb4\x4b\xe8\xb7\x70\x0e\xc0\x16\x0d\xf9\x69\xb8\x44\x85\x4d" "\xba\x7f\xe7\xed\x4a\x69\x24\x4c\xbc\x06\x76\xbf\x2f\x8a\xd8\x17\x17\xce" "\x8b\x53\x2a\xb6\x21\xc4\xe2\x28\xbb\x3b\xcc\x2d\xae\x3b\xed\x92\xf9\x77" "\xe9\x75\x27\x79\x31\xc7\x14\x19\x3b\xa2\xff\x3e\x6b\x5c\xf6\x7d\xdb\xc1" "\x5b\xe3\x76\x9f\xd1\xf8\x37\xe3\xbd\xb3\x28\x63\x42\x4f\xbe\x1b\xa9\xc7" "\xcc\xf0\xdb\x85\x23\x37\x48\x84\xe3\x9b\xa4\xb4\x49\x80\xe8\xc6\xc9\x8d" "\xa6\xd0\x04\x72\x3a\xb8\x69\x52\x8a\x9f\x05\xab\x8a\x6f\xc4\x36\x94\x80" "\x63\x69\x1f\xf6\xcf\xf9\x80\xec\xd0\x9b\x49\x11\xdf\xb9\x1f\x26\x66\xfc" "\xbf\x6f\xf4\xf2\x2c\x3c\x87\x3d\xa1\x73\x1a\x9d\xe5\xa9\xa2\xb3\xf9\x1f" "\xde\x3b\x1b\xcc\xb2\x4d\x0e\xe1\x1a\x36\x38\x5e\x9c\x75\xeb\xdb\x88\x33" "\x53\x07\xe4\x27\x8b\xc6\x5a\xc5\x37\x98\xdb\xe9\x64\xd4\x3e\x9f\xce\x3c" "\x70\xa1\xb5\xca\x7e\x36\x68\x39\xe9\x54\xb1\x2e\xaf\x27\x15\x46\x2a\x3f" "\x54\x38\xb4\x3c\xa2\xd2\x48\x04\x4f\x5b\x5e\xed\x30\xb4\xa5\x88\x03\x83" "\xcd\xfa\x4a\x05\xe1\xd7\x58\x98\x94\xa4\xa5\x30\xd8\xd3\xa2\xd1\x84\x0f" "\x9f\xb9\x4d\x75\x34\x98\x73\x90\xf4\x57\xdd\x64\x8b\xd8\xeb\x97\x55\x49" "\x9d\xdc\xd6\xd5\xdc\x64\xc8\x40\x7a\xa7\x2b\x48\x77\x53\x13\x32\x8e\x3d" "\x81\x03\x57\xa1\x30\xa5\xd3\xb1\x5d\xa9\xe7\xd1\x16\xf2\xc1\xfc\xb1\xdb" "\xea\x35\x97\x05\xbd\x60\xf0\x4c\x09\x57\xa5\x74\x85\x8c\x08\xfc\x03\x26" "\x2d\x16\x69\xd3\xda\x5d\xfa\xe3\x87\xaf\x84\x0b\x14\x03\xa7\x82\x31\x41" "\x9b\x7f\x54\xb6\x9b\xb0\xaf\xb9\xe8\x89\xc7\x10\xed\x1f\x5b\x70\x6b\x1c" "\xf3\x83\x18\x77\xea\x57\x58\x72\xa5\x34\x38\x67\x0d\xb6\xe8\x2b\x02\x16" "\x22\xed\x48\x59\x6d\x75\x89\xcc\x6f\x79\xc8\x65\x42\x84\x67\x1d\x0a\xd5" "\x82\x52\x6d\x0b\xaa\xb9\xbe\x8e\x38\xc5\xb5\xe2\xe4\x01\xb2\x21\x57\xad" "\xaa\x2a\xd4\xe3\x7a\x4d\x22\xdd\x82\x43\xa0\xa0\x51\x75\x90\xfa\x55\x8e" "\xf6\xbc\x47\x15\xad\x69\xcb\x02\x23\x41\xbf\x4d\x00\xfa\xdf\x0d\x66\x0b" "\x78\x27\xdc\x0d\x32\xbc\x48\xca\x86\x18\xf1\x81\x49\xd5\x63\x74\xdb\xc1" "\x2d\x25\xdd\x2b\x14\x39\xbf\xc0\x4e\xe0\x3a\xe5\x8d\x78\xab\xea\xc7\xcb" "\x9c\xc6\xef\x54\x71\xb6\xae\x0e\x9d\x9d\xa0\xb8\x1d\xb1\xdb\x8d\x7c\xc5" "\x48\x85\x88\x02\x26\x49\x19\x9f\x8f\xc6\xd1\x5d\xf9\xc1\x2b\x41\xb9\xa9" "\x2b\x06\x06\xb0\xf2\x7e\x7e\x7f\x51\xa9\x51\x91\xd4\x0a\xcb\x55\x67\xa2" "\x3f\xaa\xeb\x5e\xfc\x2c\xff\x7f\x18\xa0\x44\x2e\xa9\x7d\x11\x69\x6d\x1f" "\x67\xd6\x38\x9c\x5f\x8b\xac\x46\x72\xac\x2b\x16\x8d\xc8\x7e\xe2\xd0\x6c" "\x16\xb1\x94\xf8\xd2\xbb\xf7\x6e\x73\xf6\x4e\xea\x87\x5f\x55\x9d\xc0\x52" "\x4a\x23\x71\x64\xf5\xc1\x47\x1a\x3c\x93\xb5\x4e\x42\x33\x8a\xf0\xb8\xf3" "\x6b\xe8\xb2\xaa\x40\x6a\xc4\x94\x19\x68\xfe\x6e\xd6\x82\x8f\xd4\x0c\xa6" "\xda\x8f\x69\xaf\x89\x8f\x36\x1a\xe1\x30\x8a\xbc\x02\xc3\xbb\x38\x6c\x09" "\xf0\xe5\x3e\xde\x29\x15\x86\x1b\xb0\x77\x5e\x68\xf0\xb2\xda\x69\xfd\x99" "\xe4\x1f\xee\xbe\xf4\x6d\x49\x16\x16\xb4\x0c\x14\x86\x11\xc6\x5b\xa0\x83" "\x1a\x8f\x91\x68\xdd\xfd\x47\xbd\x9c\xe1\xf9\x2c\x0b\x6c\x90\x2d\xfb\xb3" "\x32\x9d\x13\xd9\x58\xec\xca\xf6\xe9\xb4\xc8\xed\xce\x66\x1d\x05\x6d\x1a" "\xc5\xcf\x5e\x03\xc7\xe1\xb8\xbd\x2c\x0c\x01\x1a\x98\x55\xea\x69\xcc\x32" "\x6d\x5b\xad\xfd\xc1\x27\x3c\xf4\xf3\xdf\xe7\xb5\xdc\xfa\x54\x81\x6a\xd7" "\x27\x4f\x08\x3e\x3a\x0a\xf2\x57\x5f\x51\xc1\x96\xbd\x7f\xf4\x38\x7e\x8d" "\xda\x8b\xa6\x62\xbb\xc1\x60\xc3\xbe\x05\x7b\x18\xfa\x25\x65\xdd\xe9\xb6" "\x07\x14\x6e\x63\x9e\xe2\x9a\x57\x53\xbc\x1e\x1f\xe6\xc1\x33\x8a\xd4\x49" "\x8b\xcf\xdc\x29\xfe\x9c\x8c\xac\x53\x14\xc6\x43\xe0\x99\x67\x5d\xb9\xb4" "\x3b\xb6\x24\xb6\x32\x97\x89\x8f\x3f\x51\xce\x76\x2f\xf8\x11\xd8\xcd\x60" "\xb9\x28\x05\xaa\x55\x3a\x29\xaa\x8f\x99\x40\xf7\x06\xee\xa3\xd4\xd5\x8a" "\x36\x33\xe3\x3e\x7b\x4e\xc9\x80\x99\x33\xb1\x91\xdc\x53\x2b\x19\x08\x67" "\x55\x81\x33\xe6\x8f\xde\xf2\xb8\xbe\xd7\xc7\xa8\xa6\x7f\x71\x2e\x23\xc0" "\x7a\xe0\x58\x37\x39\x51\x81\xa0\x81\xf7\x16\x92\x0c\x75\xf2\x9a\xc8\x78" "\x98\x5d\x56\xf9\x3d\xe4\x52\xae\xa2\x8f\x18\xb3\x9d\x8b\x7f\x5a\x86\xb5" "\xc7\xf8\x7c\x6c\xcf\x73\xca\x09\x71\xf1\x98\x48\xf6\xa7\x93\xda\xc7\x61" "\x0c\x50\x3c\x02\x18\x58\x79\xca\x1c\xa3\x2e\x07\xfd\xec\xaf\x23\xe3\x7a" "\x84\x53\x26\xd8\xd2\x4b\x41\x65\xa2\xb2\x22\xec\xcb\xea\xdb\x17\xbf\x8b" "\x7a\xf7\xe6\x34\x49\x27\x68\x09\x65\x20\xdb\x37\xe2\x83\x6d\x06\x60\x95" "\x23\x8a\xc1\xa5\x21\x62\xdf\xa5\x28\xee\x15\x4b\x8d\x92\xdf\xb0\xdd\xcf" "\xcf\x8c\xb4\xa9\x92\xa8\xde\x8c\x80\x83\x52\xb5\xe0\xb8\x52\x05\x95\xa2" "\xa2\x4a\x8f\xfe\xcc\x66\xb0\xbc\xbc\x40\xd1\x25\x11\xf4\x40\xd6\x32\x98" "\x9a\x32\x80\x8d\x2c\x60\xe4\xe8\xb8\xfd\xcb\x2f\x7e\x4b\x45\xc3\xec\x48" "\xc4\x94\x0a\xd9\xaf\x16\x0e\x8b\x15\x37\x97\x1b\xdf\x62\x09\xcf\xee\xd8" "\x13\x68\xc3\xd9\x53\xc5\x6e\x4f\x48\x65\x1d\xbc\x17\x16\xfc\xb8\xfb\x38" "\x21\xe7\xff\x48\xef\xd6\x08\x4e\xfc\x54\xec\x49\x43\x6c\xfe\x0d\x9e\x96" "\x53\x53\x0a\x87\xdd\x34\xd0\x50\x58\x95\xd5\x00\xd5\xf1\x3c\xc8\xb1\x28" "\x45\x07\xe6\x6d\x22\x78\x14\x39\x5b\x04\x21\x2c\xf7\x2e\x7f\xde\x1c\xd0" "\xba\xcf\x06\xed\x8c\x83\x4e\xc6\x19\xff\x82\x52\x64\x2c\x43\xa1\x6d\xc4" "\x56\xc0\xe6\x0b\x54\xa4\xe4\xc4\x43\xa8\x4b\x62\xe2\x62\xd7\x0e\xf0\x75" "\x1b\xcd\xcf\x03\x8c\x32\xbb\x11\xa6\x54\xf9\x29\xe4\x04\x30\xa8\x51\xd4" "\x45\x8c\xf6\x26\xb8\x3b\x70\xef\xda\x09\x9f\x28\x49\x08\x97\x66\x9b\x39" "\xb2\x19\x95\x65\x84\xb1\x94\xd5\x0e\xfc\x9d\x0f\xbc\x12\xd1\x0a\xc8\x04" "\x2c\x46\xa7\x2b\x6f\x44\x9c\x39\xd9\x43\x73\x63\xb9\xc0\x56\xd1\x42\x62" "\x73\xa9\xab\x3a\x3e\xcd\xba\xa7\x74\xa5\x01\xc9\x71\x30\xda\x1e\xfa\xbc" "\xad\x25\x8d\x6b\x6d\xad\xd5\x9d\x15\x6e\xb9\x7b\x37\x84\x53\xf3\x92\xaa" "\xf1\x5f\x99\x8b\xfe\x58\xec\x9a\xcc\xcd\xc1\x29\x5a\x96\xf5\x6f\xf7\x07" "\xb8\xea\x56\xc6\x3e\x81\xa8\xc5\xb5\xcf\x52\x84\x30\x38\x8b\x2b\x49\x06" "\xea\x29\x3c\xb7\x73\xf1\x8e\x8b\x10\x63\x0d\x80\x0e\xbe\x6a\xe8\xa0\x44" "\xda\xe0\x2f\x73\xb9\x84\x6f\x11\x44\x63\x87\xc7\xf2\xf7\x48\xbd\x79\xb7" "\x79\x5c\xfc\xe0\xec\x87\x61\xe9\xfb\x6d\x2c\xe5\x0b\xf3\x5d\xb2\xcf\x9d" "\xef\x38\xed\xa7\x10\x29\xa7\xc4\xf6\x04\xda\x2d\xdf\x60\xd0\xb2\x1a\x3b" "\x65\x3d\xd5\x98\x1c\xac\xb0\x02\x11\x7b\x97\x15\xb8\x5d\xe2\x1c\xe5\xb1" "\x76\xa6\x60\xfa\x21\xd4\x64\xbc\x7c\x5f\x9e\xe7\x5f\x3b\x7b\x6a\xd7\x99" "\xdb\x97\x6f\xe6\x5a\x26\x03\x5a\x92\x87\x99\x19\x32\x82\x96\xc5\xa1\x53" "\x5d\xba\xf5\xb4\x01\x80\x95\x68\x85\xe6\x2a\xaf\xbc\x4f\xab\x18\xea\xc0" "\x86\x44\x8c\x04\x64\xbe\xce\x5e\xbb\xe2\x1e\xfd\xc9\x1a\x08\xa1\x40\xd0" "\xb8\x1d\xd9\x34\x11\xab\xf8\x91\x26\x87\x6f\xd7\x75\x36\x6d\x13\x0c\x0e" "\xee\x1a\xb3\xce\xd6\xbf\xde\x0c\xd0\x1c\x93\x5f\xf8\x3a\x5c\x36\x2c\x25" "\x44\x0c\x6b\xe4\x9b\x44\x82\x35\x75\x4e\x82\x3c\x06\x0d\x19\xae\x32\xf3" "\x77\x73\x87\xca\xc8\xbb\x73\x6b\x99\x85\xc1\xf8\xe9\x3d\xcf\x5e\x5c\x25" "\x3f\xd3\x10\x93\x12\xbb\x78\xc9\x43\xc7\xb1\x8c\x59\x3c\x21\x41\xca\x3e" "\x97\x5f\x11\x1e\x0b\x31\xfd\x20\x05\x16\xcb\x15\x64\x75\x0f\xf1\xde\xce" "\x8e\x28\xac\x13\x17\x52\x02\x01\x83\x6e\x3c\xee\x33\xdc\x0c\xc3\x68\xfc" "\x90\x7f\xd1\x5a\x63\x82\x29\x9a\x3d\xc2\x16\xda\x05\x29\x11\x82\xf5\x14" "\x24\x29\x73\x36\x9c\xcd\x05\xfe\x6f\xa1\xc0\x2e\x06\xc6\x17\x8c\x80\x8a" "\x12\xb4\x85\xa7\x36\xb8\xd6\x8e\x75\xed\x88\xe2\x4c\x9e\xc1\xe9\x3a\x7f" "\xc9\x29\xc7\x7a\x75\x6c\xb4\xfc\x0f\xba\xd2\xff\x54\xab\x7e\x7b\x36\x36" "\xe1\x54\x00\xbf\x0b\x7d\xb6\x38\xeb\x60\x74\x78\x98\xc0\xce\x5f\x84\x6a" "\x40\xdf\xe7\xd7\xec\x5b\x2f\x9d\x92\x01\x67\x31\x1d\xed\x6c\x3c\x09\x74" "\xf9\x72\xa3\xb6\x4f\xcb\xb5\xd6\x71\xd1\x31\x36\x0f\x70\xb7\xa2\xbc\xcd" "\x90\xff\xfa\xe2\x48\xae\x30\x5b\xec\x4d\x3d\xd7\xb3\xd8\xcd\xd0\x08\x95" "\x25\x8e\x96\xd1\x1c\x5b\x87\x76\xd8\x3c\x32\x94\x4c\xc6\x97\x5c\x42\xc1" "\xb7\xf0\xd3\x32\xc2\xff\x31\xb8\x22\xb6\x1b\xc1\x91\xae\x2d\xc7\x3e\xe8" "\x68\xe8\x37\xea\x61\x65\x0e\x80\x48\xb3\xdd\xc7\x22\xc7\xc8\xfd\x33\xd2" "\xe9\xa3\xe2\x51\x7c\x26\xf2\x11\xc4\x0a\xd2\x35\xbe\x74\x12\x7e\xa3\x54" "\x0f\xf1\xfb\x4d\xd0\xad\xa3\xcf\xcd\x49\xd3\x0b\xcc\xde\xd3\x00\x67\x90" "\x86\x67\x77\x70\xa3\x84\x81\xc4\xf2\x54\xf1\x48\x78\x3f\xbf\x0f\xaf\x4e" "\xbf\x98\x53\x02\xcd\xad\xdc\x89\x82\xdd\x20\x7e\x2a\xea\x14\xc1\x48\x7a" "\x70\x3d\x9a\xa5\xed\x8a\xd5\x9b\x07\x7c\x8e\xcf\x6c\x07\x3a\x9e\xb5\x0f" "\xdb\xe1\xaf\xf0\xf7\x35\x5f\xf7\x63\xfb\x6e\x66\xa8\x78\x18\x5c\x8d\x56" "\x0e\x29\x50\xc8\x83\xd7\x2c\x66\xf1\x62\xb9\xbe\xf3\x73\x0c\x89\x55\x35" "\xdb\xc9\x0b\xda\x8c\xd4\xfa\x84\x2a\x1e\xe4\xaf\xff\xac\xdf\x84\x1f\x38" "\x00\xa6\x47\x26\xb7\x88\x86\xfe\x75\xfe\xf6\x65\x17\xee\xd4\x94\xa0\xba" "\xdb\xe5\x54\x3c\x4c\x14\xbd\xf7\x4f\x8d\x4f\x62\x9e\x57\x6a\x0b\x94\x7c" "\x65\xb1\x38\xf0\x77\x7d\xe3\x2e\x2c\x86\x89\x8c\x0c\x96\x74\xe4\x08\xd3" "\x4f\x6c\xcf\xa1\x7b\x91\xf7\x01\x0c\x12\x78\xd2\xff\xb3\x7e\x13\xd2\xef" "\xa4\x6c\x51\xa2\xee\x35\xb9\x7c\x97\x02\xe0\xaf\xd5\x0e\x2b\xbb\xac\xf2" "\x82\x45\x1c\x4a\x78\x6d\x4b\xf5\x81\xc7\x7e\xc3\x0a\x79\x7c\x87\x63\x2e" "\x48\xd4\x51\xed\xcf\x62\x9a\x1d\xb4\xba\x98\x33\x74\x64\x0b\xaf\xcb\x2c" "\xbb\x01\x30\xa4\x85\x01\x4f\x46\x41\xfb\xb3\x04\xdb\x8a\x52\x97\xa8\x24" "\x2a\x9c\xe5\x35\x79\x6b\x25\x45\xe4\x10\xe2\xd9\x58\xc2\x26\x7f\xad\xa9" "\xc0\x46\x9d\x56\x84\x0a\xcf\x9b\xbf\xdd\xfb\x1f\x79\x35\x54\xe4\x24\x5b" "\x54\x31\x83\x34\xe6\xd6\x3e\xd4\xbb\xfe\x37\xb5\xd0\x97\xf2\xb1\xb4\xdc" "\x7c\xbb\xe6\x0a\xc2\x5b\x9e\xd7\xc8\xa5\xf9\x63\xa2\xcd\xa3\x7d\x9b\x4d" "\x59\x2e\xd9\x1e\xa9\x61\x7d\x51\x71\x81\x38\x2e\x39\x05\xc6\xba\x96\x23" "\x8e\x8b\x77\x13\x3f\x1b\xdd\xe7\x4d\x3c\x58\xcf\x0e\x47\xe6\xa0\x86\x23" "\xdc\x58\x36\x5f\x37\x48\xc8\xc0\xb1\x07\x47\x92\x1a\x75\x2f\xd0\x06\x43" "\x06\x48\xd2\x3d\x68\x5d\x00\xbc\xb2\x97\x81\x6b\x13\x1a\x8e\x8b\x24\x70" "\x61\xa6\xb8\x4a\x87\x14\x6a\x53\xdb\xd4\x83\xd0\x17\x61\x16\x24\xff\xa1" "\xc3\x6b\x0a\xda\x9e\xc0\xd2\xc3\x1c\xa4\x18\x67\x05\x52\xb5\xd4\x11\xea" "\x50\xbd\xd0\x5e\x27\xa1\xa0\xd0\x3d\x76\x7d\x42\x48\x59\x26\x00\x72\x89" "\x91\x89\x27\x90\xcc\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00", 8192)); NONFAILING(syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x200000000880, /*len=*/0x2058, /*res=*/0)); // llistxattr arguments: [ // path: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // list: nil // size: len = 0x0 (8 bytes) // ] NONFAILING(memcpy((void*)0x200000000400, "./file0\000", 8)); syscall(__NR_llistxattr, /*path=*/0x200000000400ul, /*list=*/0ul, /*size=*/0ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; install_segv_handler(); for (procid = 0; procid < 5; procid++) { if (fork() == 0) { loop(); } } sleep(1000000); return 0; }