// https://syzkaller.appspot.com/bug?id=a3af56e42c2b60922587e6856e3be9be53eaaad6 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } 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, destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, loopfd = -1, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; retry: while (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, MNT_DETACH | UMOUNT_NOFOLLOW) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, MNT_DETACH | UMOUNT_NOFOLLOW)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } 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"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[2] = {0xffffffffffffffff, 0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; *(uint64_t*)0x20000140 = 8; *(uint64_t*)0x20000148 = 0x8b; syscall(__NR_prlimit64, /*pid=*/0, /*res=*/0xeul, /*new=*/0x20000140ul, /*old=*/0ul); syscall(__NR_sched_setscheduler, /*pid=*/0, /*policy=*/2ul, /*prio=*/0ul); syscall(__NR_sendmsg, /*fd=*/-1, /*msg=*/0ul, /*f=*/0x20004000ul); syscall(__NR_sendmmsg, /*fd=*/-1, /*mmsg=*/0ul, /*vlen=*/0ul, /*f=*/0ul); memcpy((void*)0x20001500, "exfat\000", 6); memcpy((void*)0x20000040, "./file0\000", 8); memcpy( (void*)0x20002a80, "\x78\x9c\xec\xdc\x77\x74\x96\xc5\xb6\x30\xf0\xd9\x33\xf3\x40\x88\x11\x5f" "\x23\x52\x02\xb3\x67\x3f\xf0\x8a\x01\x86\x88\x88\x48\x11\x11\x29\x22\x22" "\x22\x22\x22\xd2\x44\x40\xc0\x88\x88\x88\x80\x08\x01\x69\x22\x06\x44\xa4" "\x97\x88\x48\x09\x08\x88\x94\x08\x11\x43\xef\x45\x7a\x33\x72\x10\x11\x11" "\x91\x26\x4d\x60\xbe\x85\xe7\xdc\xcb\x3d\xc7\x73\x17\xf7\xfb\xce\xf9\x2e" "\x7f\x64\xff\xd6\x9a\x95\xd9\x79\xde\xbd\xdf\x99\xec\xac\x3c\x65\xad\xbc" "\x3f\x77\x1d\x56\xb3\x71\xad\x6a\x0d\x89\x48\xfc\x4b\xe0\xaf\x5f\x52\x84" "\x10\x31\x42\x88\x41\x42\x88\xdb\x84\x10\x81\x10\xa2\x5c\x7c\xb9\xf8\x6b" "\xc7\xf3\x28\x48\xf9\xd7\xde\x84\xfd\x7b\x3d\x93\x7e\xb3\x57\xc0\x6e\x26" "\xee\x7f\xce\xc6\xfd\xcf\xd9\xb8\xff\x39\x1b\xf7\x3f\x67\xe3\xfe\xe7\x6c" "\xdc\xff\x9c\x8d\xfb\x9f\xb3\x71\xff\x19\xcb\xc9\xb6\xce\x2c\x74\x3b\x8f" "\x9c\x3b\xf8\xf9\x7f\x4e\xc6\xe7\xff\x9c\x8d\xfb\x9f\xb3\x71\xff\x73\x36" "\xee\x7f\xce\xc6\xfd\xcf\xd9\xb8\xff\x39\x1b\xf7\x3f\x67\xe3\xfe\xe7\x6c" "\xdc\x7f\xc6\x72\xb2\x9b\xfd\xfc\x99\xc7\xcd\x1d\x37\xfb\xf7\x8f\x31\xc6" "\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c" "\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18" "\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31" "\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63" "\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6" "\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c" "\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x58" "\xce\x70\xc1\x5f\xa7\x85\x10\xff\x31\xbf\xd9\xeb\x62\x8c\x31\xc6\x18\x63" "\x8c\x31\xc6\xd8\xbf\x8f\xcf\x7d\xb3\x57\xc0\x18\x63\x8c\x31\xc6\x18\x63" "\x8c\xb1\xff\xff\x40\x48\xa1\x84\x16\x81\xc8\x25\x72\x8b\x18\x91\x47\xc4" "\x8a\x5b\x44\x9c\xb8\x55\xe4\x15\xb7\x89\x88\xb8\x5d\xc4\x8b\x3b\x44\x3e" "\x71\xa7\xc8\x2f\x0a\x88\x82\xa2\x90\x48\x10\x85\x45\x11\x61\x04\x0a\x2b" "\x48\x84\xa2\xa8\x28\x26\xa2\xe2\x2e\x51\x5c\xdc\x2d\x12\x45\x09\x51\x52" "\x94\x12\x4e\x94\x16\x49\xe2\x1e\x51\x46\xdc\x2b\xca\x8a\xfb\x44\x39\x71" "\xbf\x28\x2f\x1e\x10\x15\x44\x45\x51\x49\x54\x16\x0f\x8a\x2a\xe2\x21\x51" "\x55\x3c\x2c\xaa\x89\x47\x44\x75\x51\x43\xd4\x14\xb5\xc4\xa3\xa2\xb6\x78" "\x4c\xd4\x11\x8f\x8b\xba\xe2\x09\x51\x4f\x3c\x29\xea\x8b\xa7\x44\x03\xf1" "\xb4\x68\x28\x9e\x11\x8d\xc4\xb3\xa2\xb1\x78\x4e\x34\x11\xcf\x8b\xa6\xa2" "\x99\x68\x2e\x5a\x88\x96\xff\x4f\xf9\x6f\x89\x9e\xe2\x6d\xd1\x4b\xf4\x16" "\x29\xa2\x8f\xe8\x2b\xde\x11\xfd\x44\x7f\x31\x40\x0c\x14\x83\xc4\xbb\x62" "\xb0\x78\x4f\x0c\x11\xef\x8b\x54\x31\x54\x0c\x13\x1f\x88\xe1\xe2\x43\x31" "\x42\x7c\x24\x46\x8a\x51\x62\xb4\x18\x23\xc6\x8a\x71\x62\xbc\x98\x20\x26" "\x8a\x49\x22\x4d\x7c\x2c\x26\x8b\x4f\xc4\x14\xf1\xa9\x98\x2a\xa6\x89\xe9" "\x62\x86\x48\x17\x33\xc5\x2c\xf1\x99\x98\x2d\xe6\x88\xb9\xe2\x73\x31\x4f" "\x7c\x21\xe6\x8b\x05\x62\xa1\x58\x24\x32\xc4\x97\x62\xb1\x58\x22\x32\xc5" "\x57\x62\xa9\xf8\x5a\x64\x89\x65\x62\xb9\x58\x21\x56\x8a\x55\x62\xb5\x58" "\x23\xd6\x8a\x75\x62\xbd\xd8\x20\x36\x8a\x4d\x62\xb3\xd8\x22\xb6\x8a\x6f" "\xc4\x36\xb1\x5d\xec\x10\x3b\xc5\x2e\xb1\x5b\xec\x11\x7b\xc5\x3e\xb1\x5f" "\x1c\x10\xdf\x8a\x6c\xf1\xdd\xff\x65\xfe\xf9\x7f\xc8\xef\x06\x02\x04\x48" "\x90\xa0\x41\x43\x2e\xc8\x05\x31\x10\x03\xb1\x10\x0b\x71\x10\x07\x79\x21" "\x2f\x44\x20\x02\xf1\x10\x0f\xf9\x20\x1f\xe4\x87\xfc\x50\x10\x0a\x42\x02" "\x24\x40\x11\x28\x02\x08\x08\x04\x04\x45\xa1\x28\x44\x21\x0a\xc5\xa1\x38" "\x24\x42\x22\x94\x84\x92\xe0\xc0\x41\x12\x24\x41\x19\xb8\x17\xca\x42\x59" "\x28\x07\xe5\xa0\x3c\x94\x87\x0a\x50\x11\x2a\x42\x65\xa8\x0c\x55\xa0\x0a" "\x54\x85\xaa\x50\x0d\xaa\x41\x75\xa8\x0e\x35\xa1\x26\x3c\x0a\x8f\xc2\x63" "\x50\x07\xea\x40\x5d\xa8\x0b\xf5\xa0\x1e\xd4\x87\xfa\xd0\x00\x1a\x40\x43" "\x68\x08\x8d\xa0\x11\x34\x86\xc6\xd0\x04\x9a\x40\x53\x68\x0a\xcd\xa1\x39" "\xb4\x84\x96\xd0\x0a\x5a\x41\x6b\x68\x0d\x6d\xa1\x2d\xb4\x83\x76\xd0\x01" "\x3a\x40\x32\x24\x43\x47\xe8\x08\xed\xa1\x13\x74\x86\xce\xd0\x05\xba\x40" "\x57\xe8\x0a\xdd\xa0\x3b\x74\x87\xb7\xe0\x2d\x78\x1b\xde\x86\xde\x50\x5d" "\xf6\x81\xbe\xd0\x17\xfa\x41\x3f\x18\x00\x03\x61\x20\xbc\x0b\x83\xe1\x3d" "\x78\x0f\xde\x87\x54\x18\x0a\xc3\xe0\x03\xf8\x00\x3e\x84\x11\x70\x0e\x46" "\xc2\x28\x18\x0d\xa3\xa1\x8a\x1c\x07\xe3\x61\x02\x90\x9c\x04\x69\x90\x06" "\x93\x61\x32\x4c\x81\x29\x30\x15\xa6\xc1\x34\x98\x01\xe9\x30\x13\x66\xc1" "\x2c\x98\x0d\x73\x60\x0e\x7c\x0e\xf3\xe0\x0b\xf8\x02\x16\xc0\x02\x58\x04" "\x19\x90\x01\x8b\x61\x09\x64\x42\x26\x2c\x85\xf3\x90\x05\xcb\x60\x39\xac" "\x80\x95\xb0\x0a\x56\xc2\x1a\x58\x0b\x6b\x60\x3d\x6c\x80\xf5\xb0\x09\x36" "\xc1\x16\xd8\x02\xdf\xc0\x37\x30\x06\xb6\xc3\x4e\xd8\x09\xbb\x61\x37\xec" "\x85\xbd\xb0\x1f\xf6\x43\x2a\x64\x43\x36\x1c\x84\x83\x70\x08\x0e\xc1\x61" "\x38\x0c\x47\xe0\x08\x1c\x85\xa3\x70\x0c\x8e\xc1\x71\x38\x0e\x27\xe0\x04" "\x9c\x84\x53\x70\x1a\x4e\xc1\x59\x38\x0b\xe7\xe0\x3c\x5c\x80\x0b\x70\x09" "\x2e\xc1\x65\x78\x23\xe1\xc7\x46\xbb\x4b\xac\x4b\x15\xf2\x1a\x2d\xb5\xcc" "\x25\x73\xc9\x18\x19\x23\x63\x65\xac\x8c\x93\x71\x32\xaf\xcc\x2b\x23\x32" "\x22\xe3\x65\xbc\xcc\x27\xf3\xc9\xfc\x32\xbf\x2c\x28\x0b\xca\x04\x99\x20" "\x8b\xc8\x22\x12\x25\x4a\x92\xa1\x2c\x2a\x8b\xca\xa8\x8c\xca\xe2\xb2\xb8" "\x4c\x94\x89\xb2\xa4\x2c\x29\x9d\x74\x32\x49\x26\xc9\x32\xb2\x8c\x2c\x2b" "\xcb\xca\x72\xf2\x7e\x59\x5e\x3e\x20\x2b\xc8\x8a\xb2\x8d\xab\x2c\x2b\xcb" "\x2a\xb2\xad\xab\x2a\x1f\x96\xd5\x64\x35\x59\x5d\xd6\x90\x35\x65\x2d\x59" "\x4b\xd6\x96\xb5\x65\x1d\x59\x47\xd6\x95\x75\x65\x3d\x59\x4f\xd6\x97\x4f" "\xc9\x06\xb2\x0f\x0c\x80\x67\xe4\xb5\xce\x34\x96\x43\xa1\x89\x1c\x06\x4d" "\x65\x33\xd9\x5c\xb6\x90\x1f\xc2\x0b\xb2\x95\x1c\x01\xad\x65\x1b\xd9\x56" "\xbe\x24\x47\xc1\x48\xe8\x20\x5b\xb9\x64\xf9\x8a\xec\x28\xc7\x43\x27\xf9" "\x9a\x9c\x00\xaf\xcb\x2e\x72\x12\x74\x95\x6f\xca\x6e\xb2\xbb\xec\x21\xdf" "\x92\x3d\x65\x6b\xd7\x4b\xf6\x96\x53\xa1\x8f\xec\x2b\x67\x40\x3f\xd9\x5f" "\x0e\x90\x03\xe5\x6c\xa8\x21\xaf\x75\xac\xa6\x7c\x5f\xa6\xca\xa1\x72\x98" "\xfc\x40\x2e\x82\x0f\xe5\x08\xf9\x91\x1c\x29\x47\xc9\xd1\x72\x8c\x1c\x2b" "\xc7\xc9\xf1\x72\x82\x9c\x28\x27\xc9\x34\xf9\xb1\x9c\x2c\x3f\x91\x53\xe4" "\xa7\x72\xaa\x9c\x26\xa7\xcb\x19\x32\x5d\xce\x94\xb3\xe4\x67\x72\xb6\x9c" "\x23\xe7\xca\xcf\xe5\x3c\xf9\x85\x9c\x2f\x17\xc8\x85\x72\x91\xcc\x90\x5f" "\xca\xc5\x72\x89\xcc\x94\x5f\xc9\xa5\xf2\x6b\x99\x25\x97\xc9\xe5\x72\x85" "\x5c\x29\x57\xc9\xd5\x72\x8d\x5c\x2b\xd7\xc9\xf5\x72\x83\xdc\x28\x37\xc9" "\xcd\x72\x8b\xdc\x2a\xbf\x91\xdb\xe4\x76\xb9\x43\xee\x94\xbb\xe4\x6e\xb9" "\x47\xee\x95\xfb\xe4\x7e\x79\x40\x7e\x2b\xb3\xe5\x77\xf2\xa0\xfc\x8b\x3c" "\x24\xbf\x97\x87\xe5\x0f\xf2\x88\xfc\x51\x1e\x95\x3f\xc9\x63\xf2\x67\x79" "\x5c\xfe\x22\x4f\xc8\x5f\xe5\x49\x79\x4a\x9e\x96\x67\xe4\x59\xf9\x9b\x3c" "\x27\xcf\xcb\x0b\xf2\xa2\xbc\x24\x7f\x97\x97\xe5\x15\x79\x55\x7a\x29\x14" "\x28\xa9\x94\xd2\x2a\x50\xb9\x54\x6e\x15\xa3\xf2\xa8\x58\x75\x8b\x8a\x53" "\xb7\xaa\xbc\xea\x36\x15\x51\xb7\xab\x78\x75\x87\xca\xa7\xee\x54\xf9\x55" "\x01\x55\x50\x15\x52\x09\xaa\xb0\x2a\xa2\x8c\x42\x65\x15\xa9\x50\x15\x55" "\xc5\x54\x54\xdd\xa5\x8a\xab\xbb\x55\xa2\x2a\xa1\x4a\xaa\x52\xca\xa9\xd2" "\x2a\x49\xdd\xa3\xca\xa8\x7b\x55\x59\x75\x9f\x2a\xa7\xee\x57\xe5\xd5\x03" "\xaa\x82\xaa\xa8\x2a\xa9\xca\xea\x41\x55\x45\x3d\xa4\xaa\xaa\x87\x55\x35" "\xf5\x88\xaa\xae\x6a\xa8\x9a\xaa\x96\x7a\x54\xd5\x56\x8f\xa9\x3a\xea\x71" "\x55\x57\x3d\xa1\xea\xa9\x27\x55\x7d\xf5\x94\x6a\xa0\x9e\x56\x0d\xd5\x33" "\xaa\x91\x7a\x56\x35\x56\xcf\xa9\x26\xea\x79\xd5\x54\x35\x53\xcd\x55\x0b" "\xd5\x52\xbd\xa0\x5a\xa9\x17\x55\x6b\xd5\x46\xb5\x55\x2f\xa9\x76\xaa\xbd" "\xea\xa0\x5e\x56\xc9\xea\x15\xd5\x51\xbd\xaa\x3a\xa9\xd7\x54\x67\xf5\xba" "\xea\xa2\xde\x50\x5d\xd5\x9b\xaa\x9b\xea\xae\x7a\xa8\x2b\xea\xaa\xf2\xaa" "\x97\xea\xad\x52\x54\x1f\xd5\x57\xbd\xa3\xfa\xa9\xfe\x6a\x80\x1a\xa8\x06" "\xa9\x77\xd5\x60\xf5\x9e\x1a\xa2\xde\x57\xa9\x6a\xa8\x1a\xa6\x3e\x50\xc3" "\xd5\x87\x6a\x84\xfa\x48\x8d\x54\xa3\xd4\x68\x35\x46\x8d\x55\xe3\xd4\x78" "\x35\x41\x4d\x54\x93\x54\x9a\xfa\x58\x4d\x56\x9f\xa8\x29\xea\x53\x35\x55" "\x4d\x53\xd3\xd5\x0c\x95\xae\x66\xaa\x01\x7f\xab\x34\xf7\x7f\x90\xff\xc9" "\x3f\xc9\x1f\xf2\xc7\xbb\x6f\x51\x5b\xd5\x37\x6a\x9b\xda\xae\x76\xa8\x9d" "\x6a\x97\xda\xad\xf6\xa8\x3d\x6a\x9f\xda\xa7\x0e\xa8\x03\x2a\x5b\x65\xab" "\x83\xea\xa0\x3a\xa4\x0e\xa9\xc3\xea\xb0\x3a\xa2\x8e\xa8\xa3\xea\xa8\x3a" "\xa6\x8e\xa9\xe3\xea\xb8\x3a\xa1\x4e\xa8\x93\xea\x94\xba\xa8\xce\xa8\xb3" "\xea\x37\x75\x4e\x9d\x57\xe7\xd5\x45\x75\x49\x5d\x52\x97\xff\xf6\x33\x10" "\x1a\xb4\xd4\x4a\x6b\x1d\xe8\x5c\x3a\xb7\x8e\xd1\x79\x74\xac\xbe\x45\xc7" "\xe9\x5b\x75\x5e\x7d\x9b\x8e\xe8\xdb\x75\xbc\xbe\x43\xe7\xd3\x77\xea\xfc" "\xba\x80\x2e\xa8\x0b\xe9\x04\x5d\x58\x17\xd1\x46\xa3\xb6\x9a\x74\xa8\x8b" "\xea\x62\x3a\xaa\xef\xd2\xc5\xf5\xdd\x3a\x51\x97\xd0\x25\x75\x29\xed\x74" "\x69\x9d\xa4\xef\xf9\x97\xf3\x6f\xb4\xbe\x96\xba\xa5\x6e\xa5\x5b\xe9\xd6" "\xba\xb5\x6e\xab\xdb\xea\x76\xba\x9d\xee\xa0\x3b\xe8\x64\x9d\xac\x3b\xea" "\x8e\xba\x93\xee\xa4\x3b\xeb\xce\xba\x8b\xee\xa2\xbb\xea\xae\xba\x9b\xee" "\xa6\x7b\xe8\x1e\xba\xa7\xee\xa9\x7b\xe9\x5e\x3a\x45\xa7\xe8\xbe\xfa\x1d" "\xdd\x4f\xf7\xd7\x03\xf4\x40\x3d\x48\xbf\xab\x07\xeb\xc1\x7a\x88\x1e\xa2" "\x53\x75\xaa\x1e\xa6\x87\xe9\xe1\x7a\xb8\x1e\xa1\x47\xe8\x91\x7a\xa4\x1e" "\xad\x47\xeb\xb1\x7a\xac\x1e\xaf\xc7\xeb\x89\x7a\xa2\x4e\xd3\x69\x7a\xb2" "\x9e\xac\xa7\xe8\x29\x7a\xaa\x9e\xaa\xa7\xeb\xe9\x3a\x5d\xa7\xeb\x59\x7a" "\x96\x9e\xad\x67\xeb\xb9\x7a\xae\x9e\xa7\xe7\xe9\xf9\x7a\xbe\x5e\xa8\x17" "\xea\x0c\x9d\xa1\x17\xeb\xc5\x3a\x53\x67\xea\xa5\x7a\xa9\xce\xd2\xcb\xf4" "\x32\xbd\x42\xaf\xd0\xab\xf4\x2a\xbd\x46\xaf\xd1\xeb\xf4\x3a\xbd\x41\x6f" "\xd0\x9b\xf4\x26\x9d\xa5\xb7\xea\xad\x7a\x9b\xde\xa6\x77\xe8\x1d\x7a\x97" "\xde\xa5\xf7\xe8\x3d\x7a\x9f\xde\xa7\x0f\xe8\x03\x3a\x5b\x67\xeb\x83\xfa" "\xa0\x3e\xa4\x0f\xe9\xc3\xfa\xb0\x3e\xa2\x8f\xe8\xa3\xfa\xa8\x3e\xa6\x8f" "\xe9\xe3\xfa\xb8\x3e\xa1\x4f\xe8\x93\xfa\xa4\x3e\xad\x4f\xeb\xb3\xfa\xac" "\x3e\xa7\xcf\xe9\x0b\xfa\x82\xbe\xa4\x2f\xe9\xcb\xfa\xb2\xbe\xaa\xaf\x5e" "\xbb\xec\x0b\x64\x20\x03\x1d\xe8\x20\x57\x90\x2b\x88\x09\x62\x82\xd8\x20" "\x36\x88\x0b\xe2\x82\xbc\x41\xde\x20\x12\x44\x82\xf8\x20\x3e\xc8\x17\xdc" "\x19\xe4\x0f\x0a\x04\x05\x83\x42\x41\x42\x50\x38\x28\x12\x98\x00\x03\x1b" "\x50\x10\x06\x45\x83\x62\x41\x34\xb8\x2b\x28\x1e\xdc\x1d\x24\x06\x25\x82" "\x92\x41\xa9\xc0\x05\xa5\x83\xa4\xe0\x9e\xa0\x4c\x70\x6f\x50\x36\xb8\x2f" "\x28\x17\xdc\x1f\x94\x0f\x1e\x08\x2a\x04\x15\x83\x4a\x41\xe5\xe0\xc1\xa0" "\x4a\xf0\x50\x50\x35\x78\x38\xa8\x16\x3c\x12\x54\x0f\x6a\x04\x35\x83\x5a" "\xc1\xa3\x41\xed\xe0\xb1\xa0\x4e\xf0\x78\x50\x37\x78\x22\xa8\x17\x3c\x19" "\xd4\x0f\x9e\x0a\x1a\x04\x4f\x07\x0d\x83\x67\x82\x46\xc1\xb3\x41\xe3\xe0" "\xb9\xa0\x49\xf0\x7c\xd0\x34\x68\x16\x34\x0f\x5a\x04\x2d\xff\xad\xf5\xbd" "\x3f\x57\xe0\x45\xd7\xcb\xf4\x36\x29\xa6\x8f\xe9\x6b\xde\x31\xfd\x4c\x7f" "\x33\xc0\x0c\x34\x83\xcc\xbb\x66\xb0\x79\xcf\x0c\x31\xef\x9b\x54\x33\xd4" "\x0c\x33\x1f\x98\xe1\xe6\x43\x33\xc2\x7c\x64\x46\x9a\x51\x66\xb4\x19\x63" "\xc6\x9a\x71\x66\xbc\x99\x60\x26\x9a\x49\x26\xcd\x7c\x6c\x26\x9b\x4f\xcc" "\x14\xf3\xa9\x99\x6a\xa6\x99\xe9\x66\x86\x49\x37\x33\xcd\x2c\xf3\x99\x99" "\x6d\xe6\x98\xb9\xe6\x73\x33\xcf\x7c\x61\xe6\x9b\x05\x66\xa1\x59\x64\x32" "\xcc\x97\x66\xb1\x59\x62\x32\xcd\x57\x66\xa9\xf9\xda\x64\x99\x65\x66\xb9" "\x59\x61\x56\x9a\x55\x66\xb5\x59\x63\xd6\x9a\x75\x66\xbd\xd9\x60\x36\x9a" "\x4d\x66\xb3\xd9\x62\xb6\x9a\x6f\xcc\x36\xb3\xdd\xec\x30\x3b\xcd\x2e\xb3" "\xdb\xec\x31\x7b\xcd\x3e\xb3\xdf\x1c\x30\xdf\x9a\x6c\xf3\x9d\x39\x68\xfe" "\x62\x0e\x99\xef\xcd\x61\xf3\x83\x39\x62\x7e\x34\x47\xcd\x4f\xe6\x98\xf9" "\xd9\x1c\x37\xbf\x98\x13\xe6\x57\x73\xd2\x9c\x32\xa7\xcd\x19\x73\xd6\xfc" "\x66\xce\x99\xf3\xe6\x82\xb9\x68\x2e\x99\xdf\xcd\x65\x73\xc5\x5c\x35\xfe" "\xda\xc5\xfd\xb5\xd3\x3b\x6a\xd4\x98\x0b\x73\x61\x0c\xc6\x60\x2c\xc6\x62" "\x1c\xc6\x61\x5e\xcc\x8b\x11\x8c\x60\x3c\xc6\x63\x3e\xcc\x87\xf9\x31\x3f" "\x16\xc4\x82\x98\x80\x09\x58\x04\x8b\xe0\x35\x84\x84\x45\xb1\x28\x46\x31" "\x8a\xc5\xb1\x38\x26\x62\x22\x96\xc4\x92\xe8\xd0\x61\x12\x26\x61\x19\x2c" "\x83\x65\xb1\x2c\x96\xc3\x72\x58\x1e\xcb\x63\x05\xac\x80\x95\xb0\x12\x3e" "\x88\x0f\xe2\x43\xf8\x10\x3e\x8c\x0f\xe3\x23\xf8\x08\xd6\xc0\x1a\x58\x0b" "\x6b\x61\x6d\xac\x8d\x75\xb0\x0e\xd6\xc5\xba\x58\x0f\xeb\x61\x7d\xac\x8f" "\x0d\xb0\x01\x36\xc4\x86\xd8\x08\x1b\x61\x63\x6c\x8c\x4d\xb0\x09\x36\xc5" "\xa6\xd8\x1c\x9b\x63\x4b\x6c\x89\xad\xb0\x15\xb6\xc6\xd6\xd8\x16\xdb\x62" "\x3b\x6c\x87\x1d\xb0\x03\x26\x63\x32\x76\xc4\x8e\xd8\x09\x3b\x61\x67\xec" "\x8c\x5d\xb0\x0b\x76\xc5\xae\xd8\x0d\xbb\x61\x0f\xec\x81\x3d\xb1\x27\xf6" "\xc2\x5e\x98\x82\x29\xd8\x17\xfb\x62\x3f\xec\x87\x03\x70\x00\x0e\xc2\x41" "\x38\x18\x07\xe3\x10\x1c\x82\xa9\x98\x8a\xc3\x70\x18\x0e\xc7\xe1\x38\x02" "\x47\xe0\x48\x1c\x85\xa3\x71\x0c\x8e\xc5\x71\x38\x1e\x27\xe0\x44\x9c\x84" "\x69\x98\x86\x93\x71\x32\x4e\xc1\x29\x38\x15\xa7\xe2\x74\x9c\x8e\xe9\x98" "\x8e\xb3\x70\x16\xce\xc6\xd9\x38\x17\xe7\xe2\x3c\x9c\x87\xf3\x71\x3e\x2e" "\xc4\x85\x98\x81\x19\xb8\x18\x17\x63\x26\x66\xe2\x52\x5c\x8a\x59\x98\x85" "\xcb\x71\x39\xae\xc4\x95\xb8\x1a\x57\xe3\x5a\x5c\x8b\xeb\x71\x3d\x6e\xc4" "\x8d\xb8\x19\x37\xe3\x56\xdc\x8a\xdb\x70\x1b\xee\xc0\x1d\xb8\x0b\x77\xe1" "\x1e\xdc\x83\xfb\x70\x1f\x1e\xc0\x03\x98\x8d\xd9\x78\x10\x0f\xe2\x21\x3c" "\x84\x87\xf1\x30\x1e\xc1\x23\x78\x14\x8f\xe2\x31\x3c\x86\xc7\xf1\x38\x9e" "\xc0\x13\x78\x12\x4f\xe2\x69\x3c\x8d\x67\xf1\x2c\x9e\xc3\x73\x78\x01\x2f" "\xe0\x25\xfc\x1d\x2f\xe3\x15\xbc\x8a\x1e\x63\x6c\x1e\x1b\x6b\x6f\xb1\x71" "\xf6\x56\x9b\xd7\xde\x66\xff\x31\x2e\x68\x0b\xd9\x04\x5b\xd8\x16\xb1\xc6" "\xe6\xb7\x05\xfe\x2e\x46\x6b\x6d\xa2\x2d\x61\x4b\xda\x52\xd6\xd9\xd2\x36" "\xc9\xde\xf3\xa7\xb8\x82\xad\x68\x2b\xd9\xca\xf6\x41\x5b\xc5\x3e\x64\xab" "\xfe\x29\xae\x6d\x1f\xb3\x75\xec\xe3\xb6\xae\x7d\xc2\xd6\xb2\x8f\xfe\x5d" "\x5c\xcf\x3e\x69\xeb\xdb\xe7\x6c\x03\xfb\xbc\x6d\x68\x9b\xd9\x46\xb6\x85" "\x6d\x6c\x9f\xb3\x4d\xec\xf3\xb6\xa9\x6d\x66\x9b\xdb\x16\xb6\x9d\x6d\x6f" "\x3b\xd8\x97\x6d\xb2\x7d\xc5\x76\xb4\xaf\xfe\x29\x5e\x6c\x97\xd8\xb5\x76" "\x9d\x5d\x6f\x37\xd8\x7d\x76\xbf\xbd\x60\x2f\xda\x63\xf6\x67\x7b\xc9\xfe" "\x6e\x7b\xd9\xde\x76\x90\x7d\xd7\x0e\xb6\xef\xd9\x21\xf6\x7d\x9b\x6a\x87" "\xfe\x29\x1e\x6d\xc7\xd8\xb1\x76\x9c\x1d\x6f\x27\xd8\x89\x76\xd2\x9f\xe2" "\xe9\x76\x86\x4d\xb7\x33\xed\x2c\xfb\x99\x9d\x6d\xe7\xfc\x29\xce\xb0\x5f" "\xda\x79\x36\xd3\xce\xb7\x0b\xec\x42\xbb\xe8\x8f\xf8\xda\x9a\x32\xed\x57" "\x76\xa9\xfd\xda\x66\xd9\x65\x76\xb9\x5d\x61\x57\xda\x55\x76\xb5\x5d\xf3" "\x9f\x6b\x5d\x61\x37\xd9\xcd\x76\x8b\xdd\x63\xf7\xda\x6d\x76\xbb\xdd\x61" "\x77\xda\x5d\x76\xf7\x1f\xf1\xb5\x7d\x1c\xb0\xdf\xda\x6c\xfb\x9d\x3d\x6a" "\x7f\xb2\x87\xec\xf7\xf6\xb0\x3d\x6e\x8f\xd8\x1f\xff\x88\xaf\xed\xef\xb8" "\xfd\xc5\x9e\xb0\xbf\xda\x93\xf6\x94\x3d\x6d\xcf\xd8\xb3\xf6\x37\x7b\xce" "\x9e\xff\x63\xff\xd7\xf6\x7e\xc6\x5e\xb1\x57\xad\xb7\x82\x80\x24\x29\xd2" "\x14\x50\x2e\xca\x4d\x31\x94\x87\x62\xe9\x16\x8a\xa3\x5b\x29\x2f\xdd\x46" "\x11\xba\x9d\xe2\xe9\x0e\xca\x47\x77\x52\x7e\x2a\x40\x05\xa9\x10\x25\x50" "\x61\x2a\x42\x86\x90\x2c\x11\x85\x54\x94\x8a\x51\x94\xee\xa2\xe2\x74\x37" "\x25\x52\x09\x2a\x49\xa5\xc8\x51\x69\x4a\xa2\x7b\xa8\x0c\xdd\x4b\x65\xe9" "\x3e\x2a\x47\xf7\x53\x79\x7a\x80\x2a\x50\x45\xaa\x44\x95\xe9\x41\xaa\x42" "\x0f\x51\x55\x7a\x98\xaa\xd1\x23\x54\x9d\x6a\x50\x4d\xaa\x45\x8f\x52\x6d" "\x7a\x8c\xea\xd0\xe3\x54\x97\x9e\xa0\x7a\xf4\x24\xd5\xa7\xa7\xa8\x01\x3d" "\x4d\x0d\xe9\x19\x6a\x44\xcf\x52\x63\x7a\x8e\x9a\xd0\xf3\xd4\x94\x9a\x51" "\x73\x6a\x41\x2d\xe9\x05\x6a\x45\x2f\x52\x6b\x6a\x43\x6d\xe9\x25\x6a\x47" "\xed\xa9\x03\xbd\x4c\xc9\xf4\x0a\x75\xa4\x57\xa9\x13\xbd\x46\x9d\xe9\x75" "\xea\x42\x6f\x50\x57\x7a\x93\xba\x51\x77\xea\x41\x6f\x51\x4f\x7a\x9b\x7a" "\x51\x6f\x4a\xa1\x3e\xd4\x97\xde\xa1\x7e\xd4\x9f\x06\xd0\x40\x1a\x44\xef" "\xd2\x60\x7a\x8f\x86\xd0\xfb\x94\x4a\x43\x69\x18\x7d\x40\xc3\xe9\x43\x1a" "\x41\x1f\xd1\x48\x1a\x45\xa3\x69\x0c\x8d\xa5\x71\x34\x9e\x26\xd0\x44\x9a" "\x44\x69\xf4\x31\x4d\xa6\x4f\x68\x0a\x7d\x4a\x53\x69\x1a\x4d\xa7\x19\x94" "\x4e\x33\x69\x16\x7d\x46\xb3\x69\x0e\xcd\xa5\xcf\x69\x1e\x7d\x41\xf3\x69" "\x01\x2d\xa4\x45\x94\x41\x5f\xd2\x62\x5a\x42\x99\xf4\x15\x2d\xa5\xaf\x29" "\x8b\x96\xd1\x72\x5a\x41\x2b\x69\x15\xad\xa6\x35\xb4\x96\xd6\xd1\x7a\xda" "\x40\x1b\x69\x13\x6d\xa6\x2d\xb4\x95\xbe\xa1\x6d\xb4\x9d\x76\xd0\x4e\xda" "\x45\xbb\x69\x0f\xed\xa5\x7d\xb4\x9f\x0e\xd0\xb7\x94\x4d\xdf\xd1\x41\xfa" "\x0b\x1d\xa2\xef\xe9\x30\xfd\x40\x47\xe8\x47\x3a\x4a\x3f\xd1\x31\xfa\x99" "\x8e\xd3\x2f\x74\x82\x7e\xa5\x93\x74\x8a\x4e\xd3\x19\x3a\x4b\xbf\xd1\x39" "\x3a\x4f\x17\xe8\x22\x5d\xa2\xdf\xe9\x32\x5d\xa1\xab\xe4\x49\x84\x10\xca" "\x50\x85\x3a\x0c\xc2\x5c\x61\xee\x30\x26\xcc\x13\xc6\x86\xb7\x84\x71\xe1" "\xad\x61\xde\xf0\xb6\x30\x12\xde\x1e\xc6\x87\x77\x84\xf9\xc2\x3b\xc3\xfc" "\x61\x81\xb0\x60\x58\x28\x4c\x08\x0b\x87\x45\x42\x13\x62\x68\x43\x0a\xc3" "\xb0\x68\x58\x2c\x8c\x86\x77\x85\xc5\xc3\xbb\xc3\xc4\xb0\x44\x58\x32\x2c" "\x15\xba\xb0\x74\x98\x14\xde\x13\x96\x09\xef\x0d\xcb\x86\xf7\x85\xe5\xc2" "\xfb\xc3\xf2\xe1\x03\x61\x85\xb0\x62\xf8\xdc\x13\x95\xc3\x07\xc3\x2a\xe1" "\x43\x61\xd5\xf0\xe1\xb0\x5a\xf8\x48\x58\x3d\xac\x11\xd6\x0c\x6b\x85\x8f" "\x86\xb5\xc3\xc7\xc2\x3a\xe1\xe3\x61\xdd\xf0\x89\xb0\x6c\xf8\x64\x58\x3f" "\x7c\x2a\x6c\x10\x3e\x1d\x36\x0c\x9f\x09\x1b\x85\xcf\x86\x8d\xc3\xe7\xc2" "\x26\xe1\xf3\x61\xd3\xb0\x59\xd8\x3c\x6c\x11\xb6\x0c\x5f\x08\x5b\x85\x2f" "\x86\xad\xc3\x36\x61\xdb\xf0\xa5\xb0\x5d\xd8\x3e\xec\x10\xbe\x1c\x26\x87" "\xaf\x84\x1d\xc3\x57\x6f\x78\x3c\x25\xec\x13\xf6\x0d\xdf\x09\xdf\x09\xbd" "\x7f\x5c\x2d\x8c\x2e\x8a\x66\x44\xbf\x8c\x2e\x8e\x2e\x89\x66\x46\xbf\x8a" "\x2e\x8d\x7e\x1d\xcd\x8a\x2e\x8b\x2e\x8f\xae\x88\xae\x8c\xae\x8a\xae\x8e" "\xae\x89\xae\x8d\xae\x8b\xae\x8f\x6e\x88\x6e\x8c\x6e\x8a\x6e\x8e\x6e\x89" "\x7a\x5f\x2b\xb7\x70\xe0\xa4\x53\x4e\xbb\xc0\xe5\x72\xb9\x5d\x8c\xcb\xe3" "\x62\xdd\x2d\x2e\xce\xdd\xea\xf2\xba\xdb\x5c\xc4\xdd\xee\xe2\xdd\x1d\x2e" "\x9f\xbb\xd3\xe5\x77\x05\x5c\x41\x57\xc8\x25\xb8\xc2\xae\x88\x33\x0e\x9d" "\x75\xe4\x42\x57\xd4\x15\x73\x51\x77\x97\x2b\xee\xee\x76\x89\xae\x84\x2b" "\xe9\x4a\x39\xe7\x4a\xbb\x24\xd7\xc2\xb5\x74\x2d\x5d\x2b\xf7\xa2\x6b\xed" "\xda\xb8\xb6\xee\x25\xf7\x92\x6b\xef\xda\xbb\x97\xdd\xcb\xee\x15\xd7\xd1" "\xbd\xea\x3a\xb9\xd7\x5c\x67\xf7\xba\xeb\xe2\xde\x70\x6f\xb8\x37\x5d\x37" "\xd7\xdd\xf5\x70\x6f\xb9\x9e\xee\x6d\xd7\xcb\xf5\x76\x29\x2e\xc5\xf5\x75" "\x7d\x5d\x3f\xd7\xcf\x0d\x70\x03\xdc\x20\x37\xc8\x0d\x76\x83\xdd\x10\x37" "\xc4\xa5\xba\x54\x37\xcc\x0d\x73\xc3\xdd\x70\x37\xc2\x8d\x70\x23\xdd\x48" "\x37\xda\x8d\x76\x63\xdd\x58\x37\xde\x8d\x77\x13\xdd\x44\x97\xe6\xd2\xdc" "\x64\x37\xd9\x4d\x71\x53\xdc\x54\x37\xd5\x4d\x77\xd3\x5d\xba\x4b\x77\xb3" "\xdc\x2c\x37\xdb\xcd\x76\x73\xdd\x5c\x37\x2f\x71\x9e\x9b\xef\xe6\xbb\x85" "\x6e\xa1\xcb\x70\x19\x6e\xb1\x5b\xec\x32\x5d\xa6\x5b\xea\x96\xba\x2c\x97" "\xe5\x96\xbb\xe5\x6e\xa5\x5b\xe9\x56\xbb\xd5\x6e\xad\x5b\xeb\xd6\xbb\xf5" "\x6e\xa3\xdb\xe8\x36\xbb\xcd\x6e\xab\xdb\xea\xb6\xb9\x6d\x6e\x87\xdb\xe1" "\x76\xb9\x5d\x6e\x8f\xdb\xe3\xf6\xb9\x7d\xee\x80\x3b\xe0\xb2\x5d\xb6\x3b" "\xe8\x0e\xba\x43\xee\x90\x3b\xec\x7e\x70\x47\xdc\x8f\xee\xa8\xfb\xc9\x1d" "\x73\x3f\xbb\xe3\xee\x17\x77\xc2\xfd\xea\x4e\xba\x53\xee\xb4\x3b\xe3\xce" "\xba\xdf\xdc\x39\x77\xde\x5d\x70\x17\xdd\x25\xf7\xbb\xbb\xec\xae\xb8\xab" "\xce\xbb\xb4\xc8\xc7\x91\xc9\x91\x4f\x22\x53\x22\x9f\x46\xa6\x46\xa6\x45" "\xa6\x47\x66\x44\xd2\x23\x33\x23\xb3\x22\x9f\x45\x66\x47\xe6\x44\xe6\x46" "\x3e\x8f\xcc\x8b\x7c\x11\x99\x1f\x59\x10\x59\x18\x59\x14\xc9\x88\x7c\x19" "\x59\x1c\x59\x12\xc9\x8c\x7c\x15\x59\x1a\xf9\x3a\x92\x15\x59\x16\x59\x1e" "\x59\x11\x59\x19\x59\x15\xf1\xbe\xf0\xb6\xd0\x17\xf5\xc5\x7c\xd4\xdf\xe5" "\x8b\xfb\xbb\x7d\xa2\x2f\xe1\x4b\xfa\x52\xde\xf9\xd2\x3e\xc9\xdf\xe3\xcb" "\xf8\x7b\x7d\x59\x7f\x9f\x2f\xe7\xef\xf7\xe5\xfd\x03\xbe\x82\xaf\xe8\x2b" "\xf9\xe7\x7d\x53\xdf\xcc\x37\xf7\x2d\x7c\x4b\xff\x82\x6f\xe5\x5f\xf4\xad" "\x7d\x1b\xdf\xd6\xbf\xe4\xdb\xf9\xf6\xbe\x83\x7f\xd9\x27\xfb\x57\x7c\x47" "\xff\xaa\xef\xe4\x5f\xf3\x9d\xfd\xeb\xbe\x8b\x7f\xc3\x77\xf5\x6f\xfa\x6e" "\xbe\xbb\xef\xe1\xdf\xf2\x3d\xfd\xdb\xbe\x97\xef\xed\x53\x7c\x1f\xdf\xd7" "\xbf\xe3\xfb\xf9\xfe\x7e\x80\x1f\xe8\x07\xf9\x77\xfd\x60\xff\x9e\x1f\xe2" "\xdf\xf7\xa9\x7e\xa8\x1f\xe6\x3f\xf0\xc3\xfd\x87\x7e\x84\xff\xc8\x8f\xf4" "\xa3\xfc\x68\x3f\xc6\x8f\xf5\xe3\xfc\x78\x3f\xc1\x4f\xf4\x93\x7c\x9a\xff" "\xd8\x4f\xf6\x9f\xf8\x29\xfe\x53\x3f\xd5\x4f\xf3\xd3\xfd\x0c\x9f\xee\x67" "\xfa\x59\xfe\x33\x3f\xdb\xcf\xf1\x73\xfd\xe7\x7e\x9e\xff\xc2\xcf\xf7\x0b" "\xfc\x42\xbf\xc8\x67\xf8\x2f\xfd\x62\xbf\xc4\x67\xfa\xaf\xfc\x52\xff\xb5" "\xcf\xf2\xcb\xfc\x72\xbf\xc2\xaf\xf4\xab\xfc\x6a\xbf\xc6\xaf\xf5\xeb\xfc" "\x7a\xbf\xc1\x6f\xf4\x9b\xfc\x66\xbf\xc5\x6f\xf5\xdf\xf8\x6d\x7e\xbb\xdf" "\xe1\x77\xfa\x5d\x7e\xb7\xdf\xe3\xf7\xfa\x7d\x7e\xbf\x3f\xe0\xbf\xf5\xd9" "\xfe\x3b\x7f\xd0\xff\xc5\x1f\xf2\xdf\xfb\xc3\xfe\x07\x7f\xc4\xff\xe8\x8f" "\xfa\x9f\xfc\x31\xff\xb3\x3f\xee\x7f\xf1\x27\xfc\xaf\xfe\xa4\x3f\xe5\x4f" "\xfb\x33\xfe\xac\xff\xcd\x9f\xf3\xe7\xfd\x05\x7f\xd1\x5f\xf2\xbf\xfb\xcb" "\xfe\x8a\xbf\xca\xff\xb3\xc6\x18\x63\x8c\x31\xf6\x3f\xa2\x6e\x70\xbc\xcf" "\x3f\xf9\x9e\xfc\xdb\xb8\xa6\xaf\x10\xe2\xd6\xed\x85\x8e\xfc\x63\xcd\x8d" "\xf9\xff\x3a\xef\x2f\x13\xda\x45\x84\x10\xaf\xf4\xee\xfa\xcc\x7f\x8c\xea" "\xd5\x53\x52\x52\xfe\xf6\xda\x2c\x25\x82\x62\x0b\x84\x10\x91\xeb\xf9\xb9" "\xc4\xf5\x78\x99\x68\x2b\xda\x8b\x64\xd1\x46\x94\xf9\xa7\xeb\xeb\x2f\xbb" "\x5f\xa2\x1b\xd4\x8f\xde\x2f\x44\xec\x7f\xc9\x89\x11\xd7\xe3\xeb\xf5\xef" "\xfd\x6f\xea\x8f\x9b\x77\xc3\xfa\x0b\x84\x48\x2c\x76\x3d\x27\x8f\xb8\x1e" "\x5f\xaf\x5f\xf6\xbf\xa9\x5f\xa0\xd5\x0d\xea\xe7\xf9\x3e\x4d\x88\xd6\xff" "\x25\x27\x4e\x5c\x8f\xaf\xd7\x4f\x12\x2f\x8a\x57\x45\xf2\xdf\xbd\x92\x31" "\xc6\x18\x63\x8c\x31\xc6\x18\xfb\xab\xfe\xb2\x52\xe7\x1b\xdd\xdf\x5e\xbb" "\x3f\x4f\xd0\xd7\x73\x72\x8b\xeb\xf1\x8d\xee\xcf\x19\x63\x8c\x31\xc6\x18" "\x63\x8c\x31\x76\xf3\xbd\xde\xbd\xc7\xcb\x2f\x24\x27\xb7\xe9\xcc\x13\x9e" "\xf0\x84\x27\xff\x39\xb9\xd9\x7f\x99\x18\x63\x8c\x31\xc6\x18\x63\xff\x6e" "\xd7\x2f\xfa\x6f\xf6\x4a\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63" "\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6" "\x18\x63\x8c\x31\xc6\x18\x63\x8c\xb1\x9c\xeb\x7f\xe3\xe3\xc4\x6e\xf6\x1e" "\x19\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c" "\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18" "\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\xb1\x9b\xed\xff\x04\x00" "\x00\xff\xff\x6c\x43\x36\x9f", 5335); syz_mount_image(/*fs=*/0x20001500, /*dir=*/0x20000040, /*flags=*/0x20010080, /*opts=*/0x20000300, /*chdir=*/9, /*size=*/0x14d7, /*img=*/0x20002a80); memcpy((void*)0x20000040, "./bus\000", 6); res = syscall(__NR_creat, /*file=*/0x20000040ul, /*mode=*/0ul); if (res != -1) r[0] = res; syscall(__NR_ftruncate, /*fd=*/r[0], /*len=*/0x800ul); memcpy((void*)0x200002c0, "/sys/power/resume", 17); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*dir=*/0x200002c0ul, /*flags=*/0x141a82ul, /*mode=*/0ul); if (res != -1) r[1] = res; sprintf((char*)0x20000040, "0x%016llx", (long long)0x700); syscall(__NR_write, /*fd=*/r[1], /*buf=*/0x20000040ul, /*len=*/0x12ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=*/7ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); use_temporary_dir(); loop(); return 0; }