// https://syzkaller.appspot.com/bug?id=5689aff48689f3ca418d44391fe4a4390a1ac21a // 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 static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } 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; } 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 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, CUSE_INIT = 4096, CUSE_INIT_BSWAP_RESERVED = 1048576, FUSE_INIT_BSWAP_RESERVED = 436207616, }; struct fuse_in_header { uint32_t len; uint32_t opcode; uint64_t unique; uint64_t nodeid; uint32_t uid; uint32_t gid; uint32_t pid; uint32_t padding; }; struct fuse_out_header { uint32_t len; uint32_t error; uint64_t unique; }; struct syz_fuse_req_out { struct fuse_out_header* init; struct fuse_out_header* lseek; struct fuse_out_header* bmap; struct fuse_out_header* poll; struct fuse_out_header* getxattr; struct fuse_out_header* lk; struct fuse_out_header* statfs; struct fuse_out_header* write; struct fuse_out_header* read; struct fuse_out_header* open; struct fuse_out_header* attr; struct fuse_out_header* entry; struct fuse_out_header* dirent; struct fuse_out_header* direntplus; struct fuse_out_header* create_open; struct fuse_out_header* ioctl; }; static int fuse_send_response(int fd, const struct fuse_in_header* in_hdr, struct fuse_out_header* out_hdr) { if (!out_hdr) { return -1; } out_hdr->unique = in_hdr->unique; if (write(fd, out_hdr, out_hdr->len) == -1) { return -1; } return 0; } static volatile long syz_fuse_handle_req(volatile long a0, volatile long a1, volatile long a2, volatile long a3) { struct syz_fuse_req_out* req_out = (struct syz_fuse_req_out*)a3; struct fuse_out_header* out_hdr = NULL; char* buf = (char*)a1; int buf_len = (int)a2; int fd = (int)a0; if (!req_out) { return -1; } if (buf_len < FUSE_MIN_READ_BUFFER) { return -1; } int ret = read(fd, buf, buf_len); if (ret == -1) { return -1; } if ((size_t)ret < sizeof(struct fuse_in_header)) { return -1; } const struct fuse_in_header* in_hdr = (const struct fuse_in_header*)buf; if (in_hdr->len > (uint32_t)ret) { return -1; } switch (in_hdr->opcode) { case FUSE_GETATTR: case FUSE_SETATTR: out_hdr = req_out->attr; break; case FUSE_LOOKUP: case FUSE_SYMLINK: case FUSE_LINK: case FUSE_MKNOD: case FUSE_MKDIR: out_hdr = req_out->entry; break; case FUSE_OPEN: case FUSE_OPENDIR: out_hdr = req_out->open; break; case FUSE_STATFS: out_hdr = req_out->statfs; break; case FUSE_RMDIR: case FUSE_RENAME: case FUSE_RENAME2: case FUSE_FALLOCATE: case FUSE_SETXATTR: case FUSE_REMOVEXATTR: case FUSE_FSYNCDIR: case FUSE_FSYNC: case FUSE_SETLKW: case FUSE_SETLK: case FUSE_ACCESS: case FUSE_FLUSH: case FUSE_RELEASE: case FUSE_RELEASEDIR: case FUSE_UNLINK: case FUSE_DESTROY: out_hdr = req_out->init; if (!out_hdr) { return -1; } out_hdr->len = sizeof(struct fuse_out_header); break; case FUSE_READ: out_hdr = req_out->read; break; case FUSE_READDIR: out_hdr = req_out->dirent; break; case FUSE_READDIRPLUS: out_hdr = req_out->direntplus; break; case FUSE_INIT: out_hdr = req_out->init; break; case FUSE_LSEEK: out_hdr = req_out->lseek; break; case FUSE_GETLK: out_hdr = req_out->lk; break; case FUSE_BMAP: out_hdr = req_out->bmap; break; case FUSE_POLL: out_hdr = req_out->poll; break; case FUSE_GETXATTR: case FUSE_LISTXATTR: out_hdr = req_out->getxattr; break; case FUSE_WRITE: case FUSE_COPY_FILE_RANGE: out_hdr = req_out->write; break; case FUSE_FORGET: case FUSE_BATCH_FORGET: return 0; case FUSE_CREATE: out_hdr = req_out->create_open; break; case FUSE_IOCTL: out_hdr = req_out->ioctl; break; default: return -1; } return fuse_send_response(fd, in_hdr, out_hdr); } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { int i, call, thread; for (call = 0; call < 7; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { 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 (;;) { 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; } } } uint64_t r[2] = {0xffffffffffffffff, 0x0}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x20002040, "./file0\000", 8); syscall(__NR_mkdirat, 0xffffff9c, 0x20002040ul, 0ul); break; case 1: memcpy((void*)0x20002080, "/dev/fuse\000", 10); res = syscall(__NR_openat, 0xffffffffffffff9cul, 0x20002080ul, 0x42ul, 0ul); if (res != -1) r[0] = res; break; case 2: memcpy((void*)0x200042c0, "./file0\000", 8); memcpy((void*)0x20002100, "fuse\000", 5); memcpy((void*)0x20002140, "fd", 2); *(uint8_t*)0x20002142 = 0x3d; sprintf((char*)0x20002143, "0x%016llx", (long long)r[0]); *(uint8_t*)0x20002155 = 0x2c; memcpy((void*)0x20002156, "rootmode", 8); *(uint8_t*)0x2000215e = 0x3d; sprintf((char*)0x2000215f, "%023llo", (long long)0x4000); *(uint8_t*)0x20002176 = 0x2c; memcpy((void*)0x20002177, "user_id", 7); *(uint8_t*)0x2000217e = 0x3d; sprintf((char*)0x2000217f, "%020llu", (long long)0); *(uint8_t*)0x20002193 = 0x2c; memcpy((void*)0x20002194, "group_id", 8); *(uint8_t*)0x2000219c = 0x3d; sprintf((char*)0x2000219d, "%020llu", (long long)0); *(uint8_t*)0x200021b1 = 0x2c; *(uint8_t*)0x200021b2 = 0; syscall(__NR_mount, 0ul, 0x200042c0ul, 0x20002100ul, 0ul, 0x20002140ul); break; case 3: res = syscall(__NR_read, r[0], 0x200021c0ul, 0x2020ul); if (res != -1) r[1] = *(uint64_t*)0x200021c8; break; case 4: memcpy( (void*)0x20004440, "\x55\x4e\x81\x52\xb1\xe0\xa1\x01\x94\x73\x02\x77\xbe\x76\xff\x0f\x2c" "\x5e\x60\x13\xdc\x95\x21\x75\x90\x65\xf4\x35\x83\x54\x98\x7a\xec\xcd" "\x5c\x7b\x71\x97\x29\xf5\x2a\x13\x94\x36\xa0\x73\x85\x25\x21\x93\x3c" "\x4f\xdb\x8e\xb6\xbb\xd4\x09\xdf\x99\xe0\x8d\xe7\xa7\x6d\x5b\xc4\x94" "\xf9\xa1\x37\xfd\x42\x18\x25\x5e\x45\x78\x54\xb1\x58\xc9\x65\xbc\x7e" "\x8e\x32\xd3\xc8\x7c\xe6\xa1\x69\x8d\xa2\x84\x21\x1e\x83\x0e\x5e\xac" "\xaa\x21\x62\xd2\xc3\x97\xb1\x9f\x86\x4e\x36\x94\xb8\x00\xd0\xe7\xcc" "\x99\xbf\xf4\xef\xe1\xb7\xf0\x2d\xf2\x14\x66\xdf\x79\x3a\x4a\xc8\xae" "\xb1\x0f\xc5\x01\xf1\x81\xab\x86\x1b\xae\x39\xb4\x93\xb0\xd1\x76\x2c" "\x6f\xe9\x9f\xf2\x3e\xe5\xed\x30\xaf\xf8\x0f\x19\x93\x61\xce\x84\xdc" "\xa5\x58\xa5\x7e\x39\x79\x71\x57\xe2\x72\x49\x56\xd5\x8d\xed\xeb\x1b" "\x0d\x2c\x50\x43\x43\x9c\xb5\x83\xf4\xc0\x71\x21\xf7\x66\x15\x3c\x6b" "\xec\x04\x9a\xee\xd8\xbe\xb3\x20\xd1\x36\x31\xe0\xca\xe9\x97\x6b\xd6" "\x1b\x07\x81\x69\x42\xae\xbe\x4e\x5e\xc6\xe1\x42\x1c\xf1\x8d\x54\x06" "\x57\x01\xaa\xdf\x2a\x2d\xf7\x17\x43\x39\xd6\xbe\xbb\x45\xca\xfd\x66" "\x4d\x8f\xdd\x87\x69\x12\xe5\x2f\x06\xf6\x12\x64\x81\x77\xfd\x5b\xf2" "\x5a\xd6\x2f\xaa\x0a\x4b\x0b\x11\x16\x2a\x10\x73\xd0\x1c\x4c\x7c\x95" "\x19\xe3\x56\x17\x9d\x26\x74\x70\x80\x86\x8a\x9c\x4c\xa9\x90\xbb\xed" "\xf0\x37\xc9\xd7\x0f\xa4\x89\xe7\x33\x61\x76\x96\x7f\x99\x2e\x8c\x9d" "\xbe\xd5\x49\xbd\x2e\x31\x33\x2b\xbb\x19\x78\x9e\xb9\x25\xa2\xd4\xf3" "\xa5\x9c\xf9\x52\xaa\x7a\xa1\x9a\x46\xbc\x98\x6a\xc9\x88\xcb\x94\x1d" "\xda\x07\x8e\x28\x71\xde\x9a\xe0\xcf\x2f\x11\x82\xa1\x18\xf5\xff\x66" "\x3d\xee\x94\xaa\xc0\xc4\xd9\x11\x8b\x48\x04\x4f\xf2\x7d\x06\x90\xb1" "\xc3\x57\x6a\xd4\x1a\xaa\x5a\xed\xd0\x2f\x78\x9d\xc2\xd9\x98\xb7\xb3" "\x93\x74\xd3\x92\x2b\x9d\x40\xd0\x7f\x53\x7d\xbf\xb9\x1a\x7d\x50\xdc" "\x34\xce\xdc\x21\xe2\x17\xac\x3a\x5b\xcc\xdb\x2a\xe6\xc8\xfd\xe6\xa6" "\xc7\x51\xb2\xff\x8c\x01\x56\xfd\x67\xbb\xe5\xdc\xd7\xc9\x36\xbd\x4e" "\x39\xda\x7b\x04\x25\x89\xd8\xa9\x07\xa3\x7e\xd9\xab\x1d\xcd\x05\x2f" "\x4d\xcf\x7c\x3d\xe2\x2e\x14\xe9\x2e\xaa\x58\x47\x2b\x08\x08\xea\x16" "\xa1\x48\x5a\xdc\x75\xf5\x7a\x99\x45\x8e\x40\x92\x4b\x3d\x1d\x05\xaa" "\xe2\xd7\xd3\xb9\x0b\x98\xd6\x67\x02\x30\xbd\xcd\x5f\xd8\x42\x7f\x2e" "\xc3\xc7\x4e\xca\x18\xa1\x5f\x0a\x1d\x61\x41\x55\xd4\xa8\xb4\x68\x6d" "\xcd\xe9\xae\x8b\x0c\x60\x64\x6e\xe6\x07\xca\x5a\x8f\x25\x10\x4b\xc2" "\x65\x80\x32\xe9\x82\xf7\x6a\x6b\xbf\xa6\x2a\xeb\x6d\x21\xb2\x62\x43" "\x95\x95\x35\xca\xef\x14\xbc\xd3\xc3\xf8\xe9\xd5\x92\x1a\xef\xb8\xab" "\x36\x18\x2d\x6d\x91\x94\xe8\xb2\xa5\xdd\xc3\x8a\xf3\x07\xa7\xf4\x85" "\xd4\x47\x9d\x8d\xc5\xac\xf2\x60\x11\x46\xcc\xc4\xc9\x2a\x9c\xa7\x2a" "\x3e\x4f\x98\xf3\x1c\xa7\x62\xef\x78\x49\x1c\xde\xdf\x1d\x8a\x8c\x28" "\x5b\x67\x01\x28\xe0\x60\x38\x5e\x37\xad\xdc\x41\x9e\xce\x0c\xbd\x4b" "\x86\xcc\x36\x04\xb4\xa7\x91\x01\x5b\x2c\xf4\x0d\x96\x63\x10\x96\xf9" "\xcb\xb8\xd2\x18\x0a\x7f\x4e\x98\x99\xe5\x0f\xfc\x4e\xeb\xed\x45\xcc" "\xc2\xd5\x37\x69\xc4\x66\x39\xcb\xbe\x69\x2b\x87\xd5\x07\x2a\xd0\xa9" "\x3d\x78\xf0\x39\x4e\xc2\x95\x0f\xfd\x37\xa3\xb1\x76\x97\xbe\x25\x9f" "\x06\x2a\x07\x6d\x19\x8c\x68\x51\xe4\x51\x6c\x2c\x8b\xba\xe2\xce\xf7" "\xb1\xf8\x55\x97\xeb\x1b\xe2\xa7\x99\xff\x20\x84\xb6\x15\xa7\xfb\x29" "\xfb\x8e\x78\x0a\xd5\x85\x0e\x0d\xfb\x13\x13\x1d\x38\xa3\xe3\x9b\x3f" "\x23\x54\x2f\xb6\x2c\x54\xee\xab\xf5\xef\x1c\xd9\xdb\x8b\x28\x85\xc3" "\xcb\x79\x4b\x43\x8b\x8a\xc2\x56\x71\x33\x9d\xad\x41\xd9\x43\xa2\x41" "\x2c\x81\x09\x7f\xc2\x3d\x40\x2e\x57\x7d\x72\xa0\x75\x97\xa6\x79\x8d" "\x71\x23\xce\x91\xb0\x63\x39\x87\x5d\x4d\xfa\x30\x42\x6f\xcb\x91\x8d" "\x71\x8d\xac\x79\x04\xc6\xd3\x77\x18\x8d\xf6\x4f\x22\x22\xf8\x76\x21" "\xbe\x1c\x48\x34\x64\xa4\xf8\x69\x2a\xa2\x38\xb5\xe4\xc9\x36\x51\xff" "\xd1\xdf\x59\xb3\xb8\xd6\x20\xc2\x7c\x5e\xc3\x62\xde\xac\x80\xb3\x45" "\x51\xb2\xbf\x18\x7a\xa7\x43\xaf\x98\x08\x05\x0a\xce\x16\xe6\x61\x9b" "\xcd\xe5\x4f\x35\x89\x56\xf6\xb7\xf8\x65\x39\x7a\xff\x74\x18\xc9\xec" "\x7d\xba\xf7\xf2\x1d\x2d\x46\x4a\x27\xfd\x01\xe8\xb3\x33\x5c\x63\x41" "\x74\x6d\x53\x19\xd5\xa2\xe9\x17\x20\x65\x79\x2d\xd6\x56\x79\x15\xb7" "\xab\x5d\xb5\x06\x99\xd5\xe9\xda\xe4\xb3\x69\x91\xc5\xc3\x9b\xd4\x90" "\x6e\x16\x8a\x7c\x82\x53\x11\x88\x8c\x04\xc8\x55\x74\xcd\x01\x93\x40" "\x4a\x60\x18\xd8\x9d\x91\x29\x2a\x2a\x7c\x08\x1f\xbf\x00\x8e\x74\xf9" "\x95\xf1\xc8\xd5\xeb\x68\xdb\x9b\xc1\x17\x4f\xfc\xb8\x84\xf1\xc9\xdd" "\x40\xa8\xc9\xd3\xd7\xb0\xaf\xf5\xd6\xf9\xfa\xb9\xe4\x89\x56\xe3\x28" "\x40\x79\x52\x96\x72\x11\x31\xc6\x75\x2b\xad\x6a\x13\xb6\x07\x2d\xab" "\x4c\xa3\x22\x53\xe6\x09\x64\x6e\x74\x3e\x39\xcd\xfa\x11\x56\x80\x85" "\x6f\x40\x6a\x37\x29\x1a\x85\x6c\x36\x60\x67\x88\x42\xbe\xf1\x83\xee" "\x82\xeb\xbd\x13\x1f\xf1\xf6\x84\xc4\x7a\x52\xa5\x13\x1a\x43\x84\x9c" "\x25\x47\xf4\xae\xa9\xc2\x93\x32\x50\x5b\x0d\x24\x12\xe9\x71\xc3\x8f" "\xc2\x1d\x26\x65\x95\xa5\xf9\xcd\x12\xdf\x0b\xa6\x83\xcd\x78\xc2\x5e" "\x5f\x35\x4d\x3f\xba\x83\x30\xaf\xe8\x8d\xa9\x86\xc8\x5e\xdf\x6a\x35" "\x3d\xbb\x1e\x7f\xbf\xa4\x92\xb1\xd0\x4b\x6b\x48\x9f\x63\x4c\xb1\x51" "\xb0\x89\xb8\x12\x2e\x72\x2c\x89\xd2\xe7\x1d\xe5\xb1\x18\xa2\x85\x5b" "\x80\x66\x6c\x9d\xd0\xe0\xb8\x39\x51\xce\xf2\x86\xbc\xfb\xd0\xea\x29" "\xee\x66\xce\x64\x60\xa1\x67\xb3\x41\xbd\x0c\xa3\x6c\x25\xee\x6c\x32" "\x5e\x0e\x4c\x2d\x50\xb6\xb4\xc8\xf7\x6e\x40\x91\xed\x2d\xc5\xc4\xb5" "\xf1\xa6\x75\xc1\x29\x5e\x95\xb0\x57\x98\xc2\x14\xdc\x41\x04\x05\x47" "\xe8\xdb\x61\x73\x05\x92\x9f\xc0\x8e\x3b\x13\x02\xeb\x78\xd2\xa6\x7f" "\x78\xe3\x89\x62\xba\xfa\x65\x2a\x87\xaf\x5c\x1c\xbe\x8d\xbc\x5b\x8d" "\x44\x79\x74\x88\x3d\x02\x38\x85\xfd\x00\xc9\xa4\xf7\x5c\x7a\x8f\x32" "\xea\xd6\x88\x4f\xce\x15\xc3\xa7\x5d\x34\x50\x4d\x70\x3e\xbd\x75\x46" "\x37\xb5\xf4\x06\xa5\x53\x36\xef\x28\x56\x0c\x30\x7e\xf2\x67\xed\x6c" "\xa1\x52\xe8\x04\x37\x4a\x9e\x3b\x81\xde\x5c\x91\x84\xd0\x37\xfb\x59" "\x73\x91\xf9\xb9\x27\x32\x0e\x2e\x28\xa8\x16\x92\xc8\x67\x49\xf9\xb1" "\xf0\x14\xf3\xea\x9e\xc6\x9b\x6f\xbe\x79\xe1\xd0\xf0\x8b\x35\xb4\x4e" "\x19\x85\x74\x97\x98\x33\x53\x3b\xa7\x56\x82\x4c\xd3\x04\xd7\xf7\x84" "\x9c\xa0\x64\xa5\xbc\x2d\x24\xa6\x47\x8e\x07\x37\xf7\xec\x2c\x70\x1b" "\x99\x76\x43\x7c\xcc\xba\xd4\xd4\x20\x9c\xdc\xf8\xba\x2d\x10\xc5\xb5" "\x17\x83\x01\xd0\xa0\x24\xc1\x4e\xab\xcb\x5d\x3f\xa4\xcd\x60\xd6\xe9" "\x00\x78\xd0\x97\x3f\x08\x96\x9d\x03\x88\x1f\xf2\x57\x9c\x54\x84\xa3" "\xff\x0e\x29\x4a\xc2\x23\x04\x45\x5f\xc2\x70\x52\xf4\x1e\xe5\x07\xe7" "\xd9\xa1\xbe\xe5\x36\x55\xc0\x82\xdf\xde\xd0\xdc\x5f\xd2\x7c\xfa\x4e" "\x0c\xe7\x5e\x6d\x27\x63\xd8\x95\x24\x6f\x61\xae\x91\x96\x39\xf6\x23" "\x75\x2e\x26\x88\x71\x06\x7b\x52\xf3\xea\x9f\x54\x77\x58\xcb\xec\x7c" "\x22\x62\xfb\xaa\xc7\x34\x27\x3b\x80\x01\xc4\x13\xc8\x1b\x43\xc3\xf5" "\x63\x2d\x54\x58\x3c\xa6\x93\xfe\x48\x99\xd5\x5a\x12\x0e\xe7\xf6\x11" "\x85\xfc\x5f\x15\x54\x96\x6a\x37\x74\x5f\xc7\x90\x97\xd1\x56\x96\x13" "\xd8\x60\xdf\x1f\x83\xad\x73\xf5\xf0\xb6\xcb\x06\xc5\x6f\xbb\x3c\xd8" "\xd5\x7d\xee\xaa\x1b\x86\x46\x57\xc0\x73\xa7\x3a\xd2\x2c\x9a\x0a\xd2" "\x09\x23\x87\xcf\xb2\x21\xeb\xf2\xb8\x7f\x8b\x3e\xd3\x42\xb9\xe0\x6c" "\xc2\x22\xda\x69\x15\x4b\x31\xae\x25\xc5\xa6\x8c\x1d\x93\xae\x88\x9b" "\x58\x7e\xf3\xe8\xd6\xd1\x01\x4d\x4d\xfd\xd6\x07\xbc\x14\x6e\x0f\x21" "\x9e\x21\x0c\x9a\x06\x24\xb6\x66\x64\x38\x12\xf6\xba\xe3\xa9\x3f\x8f" "\x0c\x90\xfb\x07\xf7\x1f\x5f\xe7\xee\x63\x21\x79\x1e\x02\x22\xbf\x6f" "\x78\xab\xb5\x51\x2c\xae\x49\xd4\x38\x1d\x8e\xec\x01\xc1\xf3\xc6\x6c" "\x8f\xf9\x46\xe3\x76\x4b\xae\x19\x6a\x7b\x4a\x7d\x51\x8d\xea\x93\x3f" "\x26\x2f\xbd\x11\xd8\x6c\xa9\xcc\xa4\x3e\x2d\xa6\x8f\xb0\x3d\x65\xc7" "\x8b\x6c\x53\x8e\x30\xa2\x9e\x60\xe6\x2b\x8f\x22\x8c\xe8\x8a\x8e\x28" "\xc1\x38\x71\x31\x54\x44\x49\x89\xad\xc7\xf5\xbd\x2e\xf8\x03\xd7\xc6" "\x04\x2d\x67\x77\x56\x63\x8d\x38\x4e\xc4\xd5\xc8\x42\xdd\x26\x30\x4c" "\x1e\x89\x15\x3c\x67\xd4\xd7\x93\x61\x6f\x6e\xf7\x72\xd6\x68\x71\x14" "\xab\x17\xf5\x4c\xc7\x7c\x38\x81\x2b\x0d\x5d\x8b\x4b\xb9\x83\xa9\x20" "\x70\x1b\xad\xb6\xae\x16\xaa\x46\x79\x79\x65\x0f\x79\x72\x32\xc9\x9b" "\xa5\x78\x21\x6d\x5a\x97\xb0\x5e\x6d\xc2\x5d\x4a\x7f\xa9\xf9\x1e\xf7" "\xd3\x3a\xa7\x75\x59\x78\xa2\x05\xe4\x7d\xce\x35\x7e\x4c\xa0\x23\x48" "\xd4\x42\xa9\x84\xd0\x7c\xc6\xe3\x4f\x33\x0f\xbe\x29\xa9\xcb\x09\xaf" "\x81\x85\xc9\x38\x9e\x65\x98\xa1\xec\xe3\x3b\xed\xc3\xd2\x87\xb4\x2d" "\xee\x8e\x6e\x1c\x3e\xe2\x02\x7f\x40\xb4\xeb\x43\xa9\x0f\xfc\x72\x46" "\x6b\x3d\x5c\x8e\x79\x62\xb6\x3a\x37\x9b\x34\x6b\x6a\x4c\xdd\x62\x67" "\xc1\x1b\xbf\x24\xb0\x0d\xb1\x28\x4f\x38\x5d\xd2\x6a\x32\xf6\x0c\x5d" "\x35\x13\x1a\x73\xca\x0d\x7f\x39\x5f\x6d\xd1\xdd\x06\x87\x35\x8b\x5e" "\xa0\xe3\x35\xed\x39\xf9\x97\x82\x1e\x42\x73\xce\x19\xf2\xf1\x8f\x50" "\x6d\x4b\xd6\x04\xa0\xdf\xa3\xa0\xb8\xd0\xae\x48\x3f\x06\xf3\xba\x32" "\x81\x60\x40\x73\x2b\x0d\x9a\x59\x8e\xf7\xf1\x45\x39\x0f\xe9\x5b\x2f" "\x4d\x83\x87\x1d\xfc\xb2\x83\xed\x57\x0e\x9d\xdf\xbd\xa7\xc8\x9a\x17" "\xcf\x9a\xca\x6a\x00\x76\x55\xe5\xd4\xa2\x49\x78\xc7\x50\x07\x71\xf2" "\x6f\x22\xcf\x74\xff\xd8\x27\xcc\xb2\x47\x76\x55\xd1\x14\x94\x4e\xa7" "\x69\x6c\x9a\xd4\x2a\x98\x59\x97\x53\xa7\x08\xab\x98\x33\x17\xf0\xd0" "\x83\x49\xb0\xd2\x26\x0f\xc5\x3c\xdc\xb3\x70\x88\x84\xa7\x98\xbb\x3a" "\xa2\x21\xcb\x14\x58\xf9\xec\x27\xb7\x38\xaf\xda\x6c\xe1\xa4\xa4\xe5" "\x2b\xfb\x75\x28\x76\x1e\x8c\x6a\x21\x28\x40\xc3\x98\xac\xa0\xf9\x5f" "\xef\x68\x40\xf2\x1d\xa5\xd6\xd9\xf1\x37\x2a\x21\x44\x25\x08\xe1\x5d" "\x45\xeb\xbd\x3e\x97\x66\xf6\x2f\x73\x43\x79\x4e\xc6\x24\xb2\xa7\x38" "\xdb\x62\x84\x5e\xd3\x0a\xe9\xc8\xef\xfc\xf1\xc4\x18\x26\xfd\xa7\x8e" "\xcd\xb2\x94\x1d\x01\x20\x9d\x88\x67\xd2\xa6\x06\x75\x8e\xd3\xac\x15" "\x89\xad\x0d\x78\xa4\x3c\x4c\x84\x6b\x08\x19\xc9\x95\x8c\x0c\x60\x22" "\xa9\x66\xc2\x40\x39\x71\x99\x9c\xcc\x0d\xf5\x6d\x36\x84\x7b\x1e\x61" "\x30\xa1\x30\x82\xea\x10\x01\x54\x96\x8c\x52\x94\x6d\x3b\xff\x8c\x95" "\x75\x23\xb2\x3a\x3d\xb2\xd5\x5d\x84\x62\x10\x3e\x54\xd0\x02\xfb\xb1" "\x52\xe1\x48\x2f\xd7\x4c\x87\xb9\x5b\xb1\xb6\x60\xbd\xe5\xc5\x3a\x87" "\xdd\x96\x57\xbf\x3a\x8a\x9e\x85\xaf\x4a\xd4\x0a\x6f\xb7\xed\xab\x11" "\x62\x7e\xb4\x35\xe6\x4a\xf4\xa7\x72\xbf\x36\x89\x9f\xf7\x0e\x19\x4a" "\x5f\x19\xee\x73\xb3\x2c\x7f\xb7\x7d\xf0\xad\x3d\xe0\x3d\x67\x23\x7f" "\x49\x08\xcd\x81\x00\xba\xba\xe6\x80\xdd\x36\x30\x6c\xd1\xa4\x48\x45" "\x14\xcd\xd3\x5e\x99\x1b\xcd\xf3\x34\xdf\x8a\x37\x8d\xb2\x0f\x10\x12" "\x9e\x2f\x59\x19\xd9\x2d\xc2\x2f\x05\xde\x69\xfb\xf8\xf6\xf7\xe1\x0c" "\xba\x03\x8f\xd7\x97\xe4\x15\xfe\x41\x89\x99\x54\x6f\xaf\xa1\xec\xc0" "\xdc\x27\xe9\x6c\xff\x7b\x31\x21\x92\x74\xe0\x4a\x92\x5f\xd3\xbf\x8f" "\x74\xf0\x32\x37\xb7\xfc\x75\x6f\xa2\xa5\x0c\x15\xf4\x3e\x45\x20\x01" "\xcf\x8b\xc0\xf1\x20\x31\x54\x68\x72\xe9\x1a\xe8\x98\x52\xce\x73\x00" "\x06\x70\xb7\x79\x9a\xcf\x55\x1c\xd4\x08\xf5\xee\xdb\xb7\x37\x58\x7c" "\x91\x4f\x90\x5d\xab\xb3\xfa\x75\x2e\x37\x12\xc8\x4b\x1a\x56\x45\xfe" "\x87\x41\x08\xaf\x23\x74\x5e\x5d\x6f\x54\xc2\x22\x5c\xc4\xf2\x98\x5d" "\x44\x33\x20\x71\x37\xd5\x53\xaa\x63\x92\xff\x98\x00\xaa\x97\x8d\x05" "\xf8\x2b\x5e\xea\xd6\x71\x1e\x40\xaa\x61\xc5\x77\xff\x6f\x8f\x26\xab" "\xbf\x03\x09\x97\x68\x35\x1f\xf1\xeb\x52\xbe\x14\x96\xd1\x00\x38\x05" "\x95\x5c\xd0\xb7\x2c\x0c\x67\xa5\x0d\xe5\xd6\x32\xaa\x52\xec\xdb\xe4" "\x0a\xf9\x00\xd2\x77\x59\x18\x0e\x9a\x64\x4e\x87\xf6\xeb\xcd\x13\xb9" "\x29\x02\xba\xa7\x44\x61\x74\xbf\xbd\x70\xab\xdf\xbf\x40\x7e\xdb\x4f" "\x8d\xe4\x61\x5b\x78\xf1\xff\xf4\xf5\x69\x39\x66\x7e\xf0\x58\xc2\x45" "\xf7\x98\xba\x2a\x6c\x37\xfb\x8a\x9b\xfd\x7a\xa1\x06\x28\x7c\x7a\x10" "\x88\xf4\x14\x2e\xbb\x22\xa6\x89\x80\x0d\x50\x5b\x6b\x1a\xc5\x6c\xe0" "\xe4\xe1\xd0\x42\x1e\x0e\x39\xe7\x12\xd6\xd8\x41\xbe\xdb\x4a\x76\x17" "\x59\x35\xbf\x3d\x14\x08\x27\xc9\x55\xaa\x65\xb0\xce\xdb\x0f\xa5\xe5" "\x9f\x39\x2d\x0e\xeb\x27\x85\xfa\x17\x3b\x61\x46\xb7\x15\x09\x5a\x78" "\xfb\xbb\xb3\x78\x2a\xd0\x0b\xc0\x4a\x16\x8d\x00\x14\x93\xc8\xf6\xe9" "\x1e\x93\xdb\xd8\xa1\xdb\x93\xee\xc8\x74\x01\x54\xde\x44\xf8\x29\x75" "\x22\x68\x29\x82\x94\xd6\xd5\x3e\x9b\x37\x18\x6f\x0e\x36\xd8\x94\xdc" "\x64\x7e\x71\x7b\xf2\x9d\xc2\x25\x81\x21\xfb\xfa\xfe\xbe\x49\x50\x6b" "\x67\x2d\xfc\x10\x6d\x28\x99\x6b\xd1\x60\x3a\x8e\x66\xb2\x3e\xb5\x8f" "\x25\x95\xb4\xc5\xbc\x7c\x78\x93\xce\x7d\x0e\xda\x00\xad\x7d\x07\xca" "\xe8\x0b\x88\x75\xa0\x81\xff\xb4\x7d\xf8\xb2\xe0\xbd\xfd\x94\x40\x72" "\x76\x2e\xf9\x9d\xc5\x22\x79\x9e\x2a\x88\x03\x38\x63\x4c\x83\x6f\xc5" "\xf4\x0b\x4e\x96\x5f\xca\xee\x85\x49\x99\xf0\xe4\xfc\x19\x9d\x08\x50" "\x6c\xff\x60\x3e\x09\x55\x9f\xc9\x8f\xbf\x6c\x5c\x31\xa0\x88\xae\xb2" "\x9c\x14\x9d\xbd\x0d\x2e\x52\xbd\xd9\xbb\xa4\xc1\x43\x14\x47\x17\xfc" "\xcf\x96\x1e\x69\x75\x40\x41\x6a\x41\x89\xa8\x8b\x03\x85\xdc\xb2\x60" "\x5b\x7d\x9b\x86\xed\xf2\xab\x45\x81\x8e\x26\x9a\xba\x84\x09\x39\x1f" "\x0d\x64\x98\x4d\x33\xcb\x4b\x1a\x24\x79\xfa\x57\x8b\xc7\xa9\xcb\x77" "\xd1\x13\x1b\x3f\x1b\x4b\x39\x94\x9a\xf9\xf3\xaa\xc5\x9b\xaf\x6d\x3e" "\x01\x6c\x2d\x62\xee\x75\x5f\x12\xad\x26\x4b\x73\xe5\xe6\x6e\x23\x33" "\xa6\xbe\xea\xb9\x56\x93\xcb\x04\xb7\x41\xf7\x99\xba\x17\x23\xa0\x8d" "\xce\x34\x91\x1c\x62\x3b\x30\x02\x9e\x6a\x61\xc2\x31\x05\x2e\x65\x29" "\xf0\x53\x89\xbc\xf7\x75\x21\x67\x9d\x6e\xf6\xa8\xe4\xfe\x68\x0f\x4c" "\xd9\xda\xee\x13\x21\xff\xb2\xb6\x64\xc6\x41\xfd\xca\x8a\x7e\x3a\x71" "\x9d\xbb\x96\x6e\xf9\x88\x10\x31\xbe\x9f\xd3\x3a\x94\xd6\x6a\xb8\x4f" "\x5f\x7b\xb1\x88\xce\xb2\x6b\x53\x4b\x05\xd6\x8b\x6c\x50\x3e\xda\xb3" "\x7e\xe2\x81\xb7\xac\xb2\x4a\x4a\xcf\xd4\x3d\xb1\x68\xff\x06\x44\x64" "\xe6\xd5\x8b\x68\xf1\x87\x45\xd5\x63\x1c\x21\x60\x7d\x97\x6d\xf4\xa7" "\x9b\x48\xb5\xb1\x29\x5f\x63\xee\x30\xe1\x27\xf5\xdd\x28\x78\x87\xde" "\xc1\x8a\x3f\x0a\xa0\xce\xcd\x9f\x38\x1e\xe6\x18\x1c\x35\xaa\x1f\x17" "\xe8\xbb\x05\x89\x0f\xcc\x43\xe8\x8f\xda\xf3\xa9\x56\xa0\xe4\xfe\x44" "\x09\x37\x3b\x2c\x4f\x4c\x73\xec\xbd\x2e\x64\x8d\x95\xfd\x85\xaf\x2a" "\xb9\x73\x8b\x35\xea\x3c\x79\xa2\x31\x4f\xa1\xe0\xc4\xbd\x3e\xb0\x7e" "\x81\x81\x23\x55\xbe\xde\xab\x0b\x5a\xa3\x54\x49\xe4\x70\x29\x05\x43" "\x69\xd1\x08\x11\xa8\x54\xb1\xb7\x84\xf3\xbb\x38\xa2\x5e\x56\xda\xda" "\x76\xfd\xf6\xc8\x5f\x68\x17\x65\x3a\x29\xa0\x5c\xfc\xd9\xfb\x9d\xdf" "\x56\x4c\x48\x6b\xc7\xa6\xef\x37\x1f\x7c\xae\xd8\x7e\x9b\xe8\x66\xbf" "\x9b\x08\x1b\xa3\xf3\x3a\x7c\xef\xde\xe8\xe1\x78\x1b\x66\xc5\x6b\x79" "\x31\x17\x1d\xde\x66\x5c\x26\xef\x43\xad\x13\xdc\x47\x1e\x2c\x77\xfa" "\x74\x5f\xd5\x05\x4e\x82\x46\x6a\xcb\x6d\x21\xba\xf9\x86\x3e\xf6\x65" "\x41\xa8\x7c\xe0\x84\x87\x88\x25\xc5\x87\x95\xbd\x59\x27\xb1\x43\x59" "\x2b\xf2\x69\x7a\xfd\xcf\x07\x49\x98\x43\x2e\x4b\xad\xd4\x79\xc0\x6f" "\x89\x53\x20\x1c\xee\xc4\x22\x58\x80\xa7\x68\x1a\x16\xe7\x71\x81\x37" "\x01\xa8\xfa\x0d\x8a\xed\x82\x43\x94\xac\x6d\x8c\xc8\xaa\x94\x7d\x62" "\xcf\x35\xb3\x87\x12\x63\xed\xc9\xa1\x6f\x96\xb6\x1b\x73\xdd\x3e\x44" "\x5b\x39\x1e\x0d\x88\xae\xa9\xce\x4d\xb6\x26\xb1\x00\x27\xbe\x1f\xbf" "\x98\xe7\x70\x83\x81\xc2\xac\x00\xe6\x23\x1b\x65\x1f\x85\x99\x82\xc4" "\x66\x83\xd5\x65\xb5\x52\x84\xd7\x39\x40\x9d\x29\x82\xa1\x4c\x1c\x0f" "\xf4\xa8\xf9\xd4\xcf\xdb\x21\x76\xbc\xce\x57\xf2\x4c\xc4\x1e\x7d\xba" "\xd4\x21\x4a\xb2\x15\x2a\x3b\xdd\xab\xe3\x51\x07\xe5\xf8\x0e\xe7\x12" "\x72\xbb\x8e\xe2\xcc\x4d\x15\xf4\xcb\xcb\x0b\xb8\x08\x38\x7d\xc0\x4f" "\x1a\xb7\x68\x38\x51\x08\xf3\x1b\xea\x17\xdb\x00\xb7\x79\x74\x82\x8a" "\xd1\x02\x92\xc9\xf9\xed\x40\xaa\xbc\x28\xb6\xce\xe5\xe2\x34\x36\x9a" "\x8b\xe7\x22\x40\x1d\xed\x91\x07\xb6\x88\xb3\x58\x4a\x2f\x82\x04\x86" "\xc5\x6b\xab\xb8\xd8\x5a\x07\xeb\x8b\xf3\x1b\x52\xde\xb4\x4b\x8e\x65" "\x70\xd3\x71\x82\x2b\x9a\xf6\x2b\x51\x3a\x90\x55\x60\xb7\x71\xf8\x4d" "\xf9\x0d\xac\x34\x22\x7c\x21\x42\x3d\xe9\x27\x22\x8c\x8d\xb9\xce\xa5" "\x95\x5b\xf5\x08\xe4\x5e\x91\x38\x4f\xc6\xa9\x58\x3c\x01\x5e\x35\xb7" "\xe4\xaa\xbb\xbe\x8a\xe4\x6d\x06\x57\xe9\xb7\xb4\xf4\xf1\xd5\x85\xa3" "\x36\xb3\x5f\x5e\xd4\xcb\xeb\x4d\xcd\x12\xe7\xdf\x2a\x84\x41\x02\x77" "\xea\xe0\x67\x72\x26\xe6\x9e\x82\x9f\x0c\x27\xe6\x16\x97\x25\x65\x0c" "\xf6\xc6\x8d\x69\x13\x5e\x39\x15\x1e\x8b\x90\xda\x2f\xe2\xa9\x75\xcb" "\x72\xe3\x31\x3f\x57\xbf\x73\x15\x00\xec\x67\x7f\x4c\xf5\x11\x02\x74" "\x4c\xac\x58\x38\x82\xd6\xb3\x01\x6e\xa6\x35\x44\xc5\xca\x57\xfd\x45" "\x6e\x57\x96\x29\xb5\xf6\xd1\xfe\x9f\x34\x56\x35\xb4\xd7\x03\x29\x1d" "\x89\xa1\xc1\x83\xd1\xfc\x42\x58\x13\x56\x02\x68\xf0\xa1\xfd\x97\xf7" "\xde\xb5\xa4\x1e\xbc\xc0\xf6\x6c\x95\xb0\xca\x4f\xc2\x40\x74\xa9\x0f" "\x9c\x8d\xa4\x25\x66\xb5\x95\x89\x19\x70\xc7\x06\xba\x2b\x05\xaa\x6d" "\xc6\x4b\xa5\xc3\x18\x9b\xce\x05\x68\xfa\xd9\x35\x4f\x67\x06\x8a\xf4" "\x79\x36\xf2\x7d\xe3\x72\x37\x76\x78\xe0\x8d\xf7\xc1\x1b\x37\x94\xad" "\xda\x76\x22\x2f\xab\x94\x93\xa9\x4a\xe1\xcd\xf5\xc8\xdb\xaa\x14\xed" "\xcd\x88\x38\xac\xac\xcc\xf7\xf3\x04\x4c\xd7\x6f\xac\xad\xff\xdc\xbf" "\xf3\xe9\x45\xcc\xb0\xd0\x55\x9f\xde\x25\x4f\xe6\xbe\x94\xa9\x5d\xc1" "\xdf\x11\x4a\xd4\xf0\xc5\xd7\xad\x9f\x14\x31\x22\x89\x54\x1f\x3c\x9c" "\x14\x0a\x9a\xfe\x6c\x9e\xc1\xb4\x24\x83\x60\xb2\x28\x53\xc6\xdb\xd4" "\x26\x7d\x1e\x2a\xcc\xf5\x86\xe4\xd4\x0c\x09\x4c\x21\xd2\x01\x22\x87" "\xfe\x73\x05\x2d\xf9\xbc\xa3\xf7\xaa\x51\x4f\x81\x11\x09\x01\x9f\x63" "\xdb\xfd\x10\x25\xad\x42\xaa\xe7\xe9\x98\x4c\x00\x63\x83\x03\xc5\x63" "\x90\x94\x3b\xb2\xe7\xc0\xda\x89\xfc\x71\x6d\x9f\x80\xf5\xef\x1e\x8c" "\x61\xcf\xef\xec\xe5\xf0\x63\x7b\xac\x02\x24\x98\x14\xfa\x7e\xde\x10" "\xa9\x5c\x20\x38\x98\x4c\xad\xec\x71\x7c\x72\x9b\x90\xee\xf5\x11\xb1" "\xcc\x32\x6f\x0e\x39\xf7\xad\x42\x80\xd1\x75\xc2\x01\xd7\x11\x81\x19" "\xb9\x8b\xb6\x8a\x41\xd7\x26\x16\xf1\x2e\x33\x8e\xb6\x45\x16\xd9\x5e" "\x61\x20\x65\xdd\x66\x03\xdf\x18\x2a\x65\x8c\xd6\xfa\x62\x25\xd9\x79" "\x48\xe7\xc2\x61\x92\x70\x8e\x1a\xc9\x86\x78\x94\x09\x71\xb2\xb8\x9f" "\x1f\xb4\x14\x9e\x60\x35\x7a\x1d\x6e\x86\xc7\x9f\x69\x7d\xaa\x19\x60" "\xfa\xf0\x6b\xee\xfb\xb6\x4d\x9c\xe1\xc8\xa1\x1d\x10\x80\x43\xe3\x66" "\xf5\xc1\xa3\x23\xc4\x88\xcd\xaf\x6d\x79\xce\x61\x41\xaf\x40\xc9\xd6" "\xad\x34\x93\x01\xf4\x67\x9f\x3a\x82\x12\x5b\xea\x71\xa6\xb7\xe9\x7a" "\xaf\x71\x19\x01\x5c\xa4\x1d\x21\xdd\x21\x18\xb7\xe7\xf5\x00\xd7\x15" "\xf7\x1b\xf6\x26\xf2\x87\xf0\x9f\x68\x70\x11\xc6\x23\xfc\xc5\x49\x07" "\x6e\x1c\xa8\x6f\x65\x5d\x4a\xe7\x9c\x45\x04\x57\x46\x2e\x7f\x35\x44" "\x04\x1f\xb5\x42\x16\x20\xdf\x2f\x85\x63\x1f\xf4\x16\x6c\xff\x09\x83" "\xc1\x6d\x36\x5f\xec\x56\x9a\xe7\xe9\x47\xce\x03\xe5\x0e\x3f\xc2\x50" "\x48\xfd\x9a\x92\x9b\x9f\x74\xce\x7a\xd1\xf6\x11\xd6\x34\x54\x4e\xf2" "\x57\x4d\x1c\xbd\xff\xcc\xcf\x8d\x00\xee\x05\x9b\x83\xf4\x61\xf0\x04" "\xf6\x47\xde\xc0\x44\xc0\x32\xc3\x84\x96\xe2\x7f\x91\x57\x7c\x5f\x25" "\x10\x06\x47\x8e\x99\xca\xd1\xdd\x25\x29\x46\x41\x34\xe5\x09\x51\xd8" "\xd9\x2c\xa0\xb6\x76\xa9\x57\x73\x0b\x02\x30\xa7\xdb\x62\x9d\x4e\x5c" "\x34\x15\x22\xd3\x84\x9c\x48\xa4\xe2\x82\x63\xd1\x45\x51\xf9\x4f\x8f" "\x70\x19\xe6\x61\x95\xe9\xa6\x42\xf2\xcc\xaf\x96\x1d\xab\x32\x35\x8a" "\x9b\x62\x0d\x27\xf4\x63\x9e\x6a\xbe\x6c\x1d\xbf\x7e\x1e\x21\xc8\xd6" "\x21\xf1\x5c\x00\x9f\xc6\x06\x0f\xdc\x55\x71\xb0\xb9\x9e\x24\x69\x49" "\x1b\x8b\x4b\xbd\x93\x8b\x8e\x87\xda\x72\x24\x3c\x28\x8c\x54\x04\xe2" "\x71\x7b\x39\xfc\xfc\xce\x9d\xef\xa2\x89\x9c\x50\x63\xa8\x98\x34\xcd" "\xed\xe6\xe7\x91\xe1\xea\x9b\xdf\x3c\x15\xb5\xc6\x92\x5e\x17\x30\x83" "\xa9\x8b\xc5\x41\x08\xbf\x7d\xb8\x7b\x13\x84\xff\x93\xab\x35\x71\xf5" "\xd3\x66\x10\xad\xbb\x3c\xcd\xf6\x94\x9c\x22\xc3\x4a\x2f\x73\x4c\xe6" "\x15\x59\xbf\x94\x68\x66\x06\x9d\xc4\x2f\xc1\xe0\xd4\x27\xb7\xd3\xf9" "\x48\x99\x1b\xd5\x73\x1d\x79\x24\x3b\x08\x84\x6b\x18\xef\xa9\x3e\x2e" "\xee\x09\xb2\xbf\x16\xfc\x51\x9d\x21\x41\xac\xca\x37\x53\x52\x7f\x1a" "\xe7\xde\x31\xf0\xc9\x09\x19\xf0\x60\x01\x10\x8c\x99\xf6\xfa\x8e\xe9" "\xc1\x99\x3f\x89\x11\x93\x41\x43\xcc\x85\x36\x45\x5b\x8f\x67\xa1\x0c" "\x67\xbb\xee\x31\x27\xe6\xca\x35\x61\x28\xee\xaa\xd1\xc8\x20\xbb\x39" "\x98\xb3\xb6\x9c\x28\xe4\x49\xd8\x68\xfb\x20\xbd\x09\xaa\x52\x8a\x34" "\x4d\x98\x91\xce\xd6\xa8\x35\x5d\x9f\x60\x60\x73\x7b\xa2\x72\x31\xe8" "\xdc\x1d\x06\x58\xde\x08\x84\x37\x30\xe8\xde\x61\x62\x4f\x1a\x41\x6f" "\x82\x48\xa4\x8d\xf9\x69\x26\xa0\x42\xd0\xee\x37\x78\x09\xd5\xab\x0a" "\xae\x48\x07\x4d\x2f\xd2\x55\xbc\x54\xf2\x2f\xd0\x12\xd9\x03\x02\xcf" "\x4d\xfb\xa3\x76\x22\x20\x62\x88\xea\xff\x4c\x9e\x84\x10\x4e\xb5\x97" "\x53\xff\x95\x02\x82\x74\x62\xa6\x60\x54\x41\x3c\x6f\x18\xbc\x37\x94" "\x03\x68\x03\x56\x18\xa9\x89\x04\x5c\xe7\x2e\x16\xc0\x82\xc9\x05\x2c" "\x39\xf6\x27\xa7\x09\xa9\xdc\x8d\x39\xbe\xf6\xeb\xf5\x55\x4e\x58\x35" "\x7d\xa0\x15\x7d\x27\x8a\x9e\x0e\xa5\xd5\x65\xf8\x70\x7f\xc3\x75\x40" "\x4e\xb4\x94\x42\xa6\xc4\x50\x78\x43\x7b\x19\x3c\x8f\x46\x41\xb8\x30" "\x9e\x66\xba\xf9\xf6\x8c\xd5\x61\x19\x3c\xe0\x99\x63\x34\xe6\xcf\x30" "\xb6\xdf\xa9\x1b\x30\x28\xc2\x74\x9a\xe7\x8a\xb4\x39\x54\xfc\xc1\xe4" "\x78\x32\xc5\xce\x36\xcd\x60\x60\x1f\xe0\x36\x54\x90\xb8\xac\x3d\xa5" "\x09\xa0\xc9\xc5\xec\x30\x88\x57\xb0\xcb\x8e\xb9\x07\xc9\xc5\xc7\x8d" "\x63\x02\xa2\xd7\x79\xf5\xea\xaf\x44\xa0\xeb\x3e\xf2\xcf\x63\xb3\x57" "\xd8\x0d\x81\x31\x6e\x1f\xf5\x1f\x0c\xbc\x49\x13\x14\x56\xc7\x10\x8a" "\x00\x1c\x25\x91\xbd\xdc\x43\xb8\x51\x01\x50\x65\x69\xc2\x80\x32\x76" "\xa8\x0e\xe0\x8a\xef\xc0\x87\x16\x8f\xac\x47\x04\x72\x69\x97\xa9\xda" "\x39\x54\x26\xca\xb6\x40\xab\x5a\x85\x4b\x21\xc6\x10\xa5\xaa\x8c\x22" "\xb3\x05\xbb\x13\x50\x60\x79\x30\x1f\xf1\x41\x8c\x05\x27\xfc\xd7\x87" "\x6c\x95\xa0\x86\xf8\x85\xf1\xa7\xda\xe3\x4f\xdb\x0e\x9e\xf7\xb0\x4a" "\x80\xf9\x42\x88\xcf\x32\x0a\x7f\x52\x93\x8a\xcb\xd7\xd1\x25\xe3\x2c" "\xf8\xa1\xd2\xc1\xc3\x36\x68\x08\x23\x7e\xaf\x05\x38\xb2\xdf\xca\xa5" "\xf2\x40\x05\x04\xfd\x7b\x5a\x95\x2b\x5d\x27\x40\x06\x80\xa0\x0c\xec" "\xc1\x0c\x28\xf0\xef\x4c\xc6\xc7\x9b\xf9\xda\x48\x69\xeb\xb8\xbf\x71" "\x0f\xeb\xa3\x36\xcb\x42\x14\xb3\x20\xdc\xb0\xe6\x29\x75\x2e\xd3\x9a" "\x1b\x39\x46\xf7\x0e\xac\x52\x67\xbf\x31\x6d\x63\x43\xee\xf9\x28\xd8" "\xef\x33\x97\x24\x2f\xb5\x27\x56\x20\xcf\x58\x7f\x87\x9f\x64\xaa\x7d" "\x21\x45\x28\x5a\x6a\x58\x91\xab\x8f\x93\x2c\x1c\x6a\xea\x77\x40\xa5" "\x0b\x10\x3d\x8e\xf4\xad\x11\x5c\x7e\x67\x9f\x88\x02\xa0\xe4\x9b\x3a" "\xab\xdc\x26\xde\xe0\xfd\x61\x02\x9f\xee\xdf\x19\x2d\xfc\x82\x23\xca" "\x54\x2a\xab\xa3\x72\x1b\xea\x2c\x72\x5f\x3b\x64\xfa\xf3\x88\xb7\xda" "\x94\x1a\x0d\x85\x92\xcd\x68\xdd\xae\x4c\x90\x3a\x26\x03\x02\x0a\x44" "\x09\xe9\x52\xac\x0f\x25\x06\xe2\xa5\xf6\x4e\x54\x6b\x2d\x57\xc8\xd0" "\xc1\x04\x89\x87\xf3\xa4\xea\x7c\x23\xa5\x06\x5a\x5f\xc4\x5c\x46\xb4" "\x06\xfc\xdd\x23\x0e\x71\x1d\x83\xda\x72\x7c\x75\xd9\x9d\xb9\xcb\xad" "\x2f\xa1\xf3\x40\xe6\x58\xf8\x6c\x49\x4c\x15\x37\xb7\x2b\xa4\x4f\x8f" "\x52\x05\x31\x72\x70\xae\x93\x6d\xcf\x6c\xd4\xf9\x4d\x20\x76\xb2\xdd" "\x96\x1e\x41\x14\x91\xb1\x6d\xe1\x11\xf8\x2a\xb9\xb3\x80\xb9\x2d\xfa" "\x77\x47\xfd\x59\xf7\x2c\x4b\x6d\x6f\x2e\x60\xf7\x8d\x02\x24\x16\x2e" "\x0c\x23\x94\x12\xf0\x3b\xea\x4b\xd8\xea\xae\x71\x9b\x69\x81\xbb\x42" "\xe5\x72\x92\x04\x8b\x0c\x7e\x83\xcb\xdc\x14\x45\xe9\x91\x79\x84\xeb" "\x44\xa4\x3e\xa3\xde\x3d\xc3\x13\xea\x89\x36\x99\x9d\x3a\x16\xa0\x31" "\x82\xcc\xc0\xd0\xe2\x26\xa0\x1c\xac\x6f\x28\x8e\xfd\x28\xb5\xe1\xd2" "\x08\xc0\x54\xce\x2f\xd0\x50\x01\x2a\x53\x08\x6d\x6a\x1f\x7e\xba\xe6" "\x6a\x5c\x88\x81\x09\x0d\xe9\xa1\xa2\xc0\x20\xd0\x26\x69\x5b\xde\x91" "\xc7\x80\x3e\x40\x1b\xc0\x97\xc4\x36\x86\xbe\x0f\xcf\x0c\xa6\x9d\x53" "\xf2\x16\x9f\x45\x8a\xfc\xcf\x23\x81\x6f\x21\x20\xdc\x2d\xb8\x56\xee" "\xa8\xf5\x7a\x2c\x65\xc9\x22\xf9\x95\x5b\x89\x35\x44\xc6\xcc\xc7\xf7" "\x75\x92\x40\x03\x78\x9e\xde\x0d\xab\x6b\xbd\xdc\xb7\x6e\xd0\x2e\x42" "\xc6\xab\xb4\xce\x28\xde\xe3\xdd\x4c\x87\x59\x5d\x33\x6d\x45\x8d\xb5" "\xd3\xfb\x1c\xe9\xdf\x57\x84\x32\xd9\xa1\x82\x07\x76\xf6\xc2\x4a\x88" "\x89\x73\x59\x44\x41\x37\xbe\x61\x2f\xca\x7f\x8b\xdf\xc6\x0c\x2f\x3e" "\x4f\xda\x1b\xc0\x1f\xb7\xb2\x06\xd6\x66\x16\xae\x33\xa1\x46\x40\x68" "\x1d\x41\x79\xc6\x5f\xb3\x78\x7e\x87\xbb\x84\x4c\x6d\xb8\x3b\xcd\x7d" "\x5a\xf1\x77\x1c\x4b\x38\xb9\x51\x95\x6b\x05\xe8\x63\x23\xa3\xaa\x0e" "\xb4\xfe\xca\x6e\xf6\x3f\x17\xf8\xe9\xcf\x9a\xf9\xf2\x95\xab\x09\x8b" "\x74\xf0\xf1\xe4\x97\x15\xd8\x56\x55\xf0\xc0\x40\x3d\x8b\x64\x3a\x47" "\x21\xac\xac\x62\x21\x8e\x42\xfb\xc5\xc9\x54\xdb\x8b\xdd\x40\x1a\x9e" "\xac\xdd\x61\xec\x2e\x0a\x66\xa7\x9d\x4c\x7b\x14\x4f\x09\x50\xa5\xd0" "\x1e\xce\x87\xef\xc8\x0a\x19\xba\xed\xe3\x13\x79\x7c\x56\xc3\xb5\x85" "\x29\x7e\x0f\xa8\x5d\xba\xf3\x13\x17\xd0\x93\xba\xeb\x60\xaf\x52\xec" "\x3e\x19\xe8\xfe\x71\x88\x24\xdb\xb2\x30\xae\x96\xff\x02\xa4\xca\xcc" "\x09\x19\x6d\xbf\x15\xe3\x7c\x56\xc3\xe5\x19\x9e\x41\x22\x56\x12\xc1" "\x46\x39\xa0\x0a\xbf\x92\xe6\x8c\xe4\x0d\x9b\x2f\x41\x54\x04\x5b\xbb" "\xa5\x86\xee\xbf\x6b\x17\x27\xe1\xae\x90\x06\xf8\x87\x94\x95\xaf\x0f" "\x3f\x27\xad\x53\xbc\x07\xf8\x11\xda\xce\xab\x23\xb1\x5e\x19\xe9\xff" "\xd0\xbd\x28\x8e\x49\x1b\xbc\x7f\x25\x61\x59\x5c\x9b\x90\x03\x48\xdd" "\x55\xf2\x50\x08\x91\xd1\x72\xe5\x65\x31\xd4\xc3\x95\xc8\x19\xb8\x3f" "\x63\x56\xbc\xc1\xb6\x6e\x0c\x1e\x34\x2d\x2e\xe6\x6f\x37\x2b\xce\x33" "\x0d\x07\xbe\x9d\x6c\x66\x0e\xd8\x42\xe3\x02\x39\x52\x6a\x95\x5f\xdb" "\xee\x77\x74\x52\x8e\xc8\xae\x92\xee\x4e\x36\xb3\x18\x04\x16\xe3\x91" "\x67\xac\x6b\x14\xbb\x0b\x76\xcf\x24\x8e\x1e\x2a\x4b\xf7\xc6\x1e\x7a" "\x39\x08\x5d\xc1\x51\x6b\x0f\x26\x77\xcb\xa3\x9d\xd6\x5b\xcc\x79\xcc" "\xf9\x8f\x8e\xbe\x5b\x4b\x48\xf5\x7b\x7e\xf6\x4e\x53\xd2\xdb\x9a\x11" "\xca\xf8\x4a\xd1\x1a\x8f\x01\xf3\xaa\xc1\x63\xa9\x21\x72\x9e\x63\x96" "\x0c\x08\x19\x60\xda\x77\x7b\xb4\x24\x6f\x9f\x55\x5f\xee\xe8\xc7\x41" "\x92\xa8\x02\xdb\x85\x71\xff\xdd\xa5\x90\x55\x7e\xfe\x90\x9f\x53\x31" "\x29\x01\x2c\xd2\x88\xa8\x21\xc2\x16\xc8\xd1\xe0\x18\xcb\xc3\x75\xad" "\xf2\xa9\x36\x1a\x2f\x3d\x71\x7a\x7e\x78\xc7\xeb\xa6\x01\x76\x24\x42" "\x92\x97\x3b\xcb\x5d\xc7\xff\x51\xac\x63\xc7\x81\x99\x9d\xdd\x85\x65" "\xc8\x8f\x28\x91\x7f\x8b\xe8\x4e\x4a\x09\x6e\x98\xbf\x08\xd2\xd5\xca" "\xd0\xd7\xeb\xe4\xda\x7a\x17\xc7\x1d\x80\x6b\xff\x15\xc8\xfe\x5f\x74" "\xfc\xa0\xe1\xa9\xfd\x6a\x3b\x98\xac\xdd\xb8\x47\x04\x91\x0b\x2f\xae" "\xa6\x77\xec\xe6\x63\x1a\x07\xb6\xab\x31\xf8\xcb\x39\x28\x09\x1c\x31" "\xdd\x42\x63\x68\x2d\x74\x4a\xc3\x8c\x05\x5c\x70\xad\x1b\xeb\xfa\xf6" "\x12\xf1\xe5\x0a\x24\xc6\xc4\x42\x46\x88\x70\xb7\x0d\x4e\x86\x7f\x3f" "\x33\x72\xaa\x4d\xf3\x11\xd0\x25\x88\xb1\x98\xbf\x3d\x8c\x5e\x5a\x24" "\xc9\x26\x0e\x9b\xdf\x3a\x97\x55\x95\x30\xbe\x5d\x7a\x26\x13\x86\x3e" "\x32\xec\x0f\x33\x27\x67\x1a\x42\xc8\xbe\x0c\x0b\xbb\x17\xd4\x93\xd8" "\x7f\x71\x0d\x15\x7a\xe0\x97\xb6\xae\xb7\x4c\x73\xa9\x44\x4a\xf7\xe6" "\x4a\x83\x49\xe0\x3d\x20\x78\x65\x16\x4d\x6b\x72\x5d\x20\x3d\x0d\x59" "\xd5\x23\x01\x03\x2f\x75\x70\x6e\x4a\xd0\x79\x2a\xca\x4f\xe0\xcc\x5f" "\x56\x6a\xfe\x57\xcc\x46\xb2\x3c\x68\x09\xcb\x9d\xa0\xab\x3c\x01\x74" "\xc0\x6c\xfc\xf2\x9b\xdc\x84\xad\xa0\x56\xe3\x6f\x8d\xf5\x2d\xaf\xa4" "\xb8\x58\x51\xd3\x66\xaa\x51\xc1\x84\xcf\x1e\x97\x09\x75\x89\x66\xed" "\x4c\xac\x51\x28\xaf\x71\x41\x7b\xa7\x70\x18\x4d\xab\x18\xad\x86\xe3" "\x1f\xbc\xa2\x3f\x62\x13\x45\xd3\xae\xfa\x5c\x5b\xd7\xd9\xf0\xd0\x47" "\x53\xf5\xb3\x9d\x14\x89\x10\x16\xca\xc1\x4a\x38\x08\x2f\x36\xbe\x74" "\x57\x79\xf6\xa4\x8f\x17\x09\x7d\xbb\x02\xf0\x7a\x8e\x3d\x31\x15\xef" "\x40\x8c\x04\xd0\xf4\xfe\x4a\x49\x0a\xb0\x8d\xb4\x70\xbf\x16\xc9\x87" "\x48\x05\x23\x12\xf8\x33\x6d\xd2\x57\x21\xb4\x6c\xb0\xd4\xc8\x3f\xb6" "\xfe\x0a\x02\xbf\xd8\xcf\xe9\x75\xa0\x5f\x72\x70\x88\xcb\x76\x15\xc8" "\x5a\xef\xf1\xcf\xaf\x4d\x6d\x6c\xb6\x8b\xfa\x76\x14\x2f\xdc\x66\xec" "\xf6\x3b\x0b\x73\xcd\xb3\xfe\x2d\x1e\xaf\xe9\xfd\xc0\xd0\xe2\xd4\x3d" "\xad\x3e\x0a\x43\x61\x56\x4e\x8a\x79\xf4\x8c\x40\x19\xc2\xd5\x71\x00" "\x3f\x8e\x49\x50\xf8\x7c\x19\xea\x20\x43\x16\x27\x62\x21\xb9\x9c\x86" "\xae\xf8\x16\x38\x2e\x74\xd3\x90\x69\x2c\x30\xfc\xd9\x0a\x8c\x51\xc8" "\x65\x4b\xf2\x25\x92\x4e\x9f\xbc\x66\x10\xef\xf3\x63\xd3\xac\xa1\x1d" "\xca\x65\x91\x76\x22\x6f\xe4\x88\x97\x35\x82\x98\x96\x2f\x39\xfb\x5c" "\xc0\x09\x61\x78\x71\x92\x2b\xd7\x7f\x7b\xf0\xf5\x3a\x86\x40\xff\xca" "\x34\xb9\x4c\xfb\x95\xca\x54\x73\x33\x22\x32\xb4\xa3\x12\x8f\xe9\x41" "\x64\xc7\x61\x75\x97\x4e\xc7\xa0\x6a\x8f\x37\x59\xdf\x53\x1a\x89\x0c" "\x55\x1e\x9a\x48\xcf\xb7\x92\x44\x63\x4e\x4d\x8e\x84\xd8\x06\xc3\x58" "\xf0\x74\xb7\xc9\x66\xe6\x69\x29\xe2\x8e\x37\xf7\x2b\xb2\x66\x50\xed" "\xb1\xc9\xf3\x75\x1d\x56\x02\xb0\x7f\x32\x26\x32\x0d\x25\x79\xfd\x73" "\xb7\x40\xdd\xb1\x33\xbc\x80\xe3\xe6\xe8\x35\xf2\x7d\xff\xe8\xa8\x48" "\x13\x30\x53\x6e\x1b\x67\xcc\x2d\xdb\x29\xf7\x7f\x3c\x88\xbf\xac\x19" "\x31\x15\xd2\x1f\x3f\x44\xce\xff\x3e\x9e\xbf\xe6\x6c\x28\xac\x20\x12" "\x33\x96\x88\x9d\xad\x68\x95\x72\xfd\xc1\xbb\xa8\x1c\x8c\x1b\xc3\xca" "\x06\xfd\xf1\xb7\xa5\xc6\x7f\x37\x55\x27\xcc\x1a\xdb\x02\x34\x4a\x01" "\xb1\xf8\x02\x96\x48\xbd\xc7\xfb\xa5\x64\xee\x83\x52\x0a\xa7\xdf\x96" "\xc6\x03\xd0\x8f\xd9\x69\x34\x27\x38\xa7\xc3\x55\x5a\xd4\xcb\x07\x90" "\x97\x7f\x1e\x9f\xe9\xc7\x33\x10\x1c\xc8\x87\x55\xc6\x00\x19\x27\x30" "\x02\xfd\xa1\x88\x55\x50\xab\x19\xe2\x79\x96\x2d\x26\x50\xe2\xe0\xc9" "\x85\xe4\xa8\x59\x34\x2f\x7b\x9f\x9f\x6b\xc8\x5b\x18\x08\x3d\x4f\x75" "\x3c\x58\xbf\x10\x30\xbd\x06\xd4\x1c\xca\x73\xd7\x3f\xbe\xcf\x20\x3c" "\xeb\xac\x1f\x62\x48\x00\x3c\xb2\x93\x71\x2f\x8b\x89\xc6\x13\x93\x18" "\xb6\xd4\x36\xab\x46\x10\x79\x91\xef\x4b\x5c\x97\xb0\x4a\x52\x71\x56" "\x52\x07\x5a\x02\x51\x9b\x55\x32\xef\xa0\x4f\xc2\x4e\xf0\xd5\xf8\x5e" "\x35\x74\x21\x57\x20\x4a\x55\xf6\x1e\x10\x3e\xdb\xb0\x84\x03\x39\xb7" "\x97\x03\x8a\x77\x45\x3c\xee\x0c\x25\x08\x98\x13\x7e\xb9\x77\xa1\xac" "\xe4\xf8\xbb\x85\x21\x4c\x09\x2c\xfb\x94\x6e\x19\x11\x39\xa2\x27\x0b" "\x5c\x58\x04\x02\x69\x77\xc2\xa3\x06\xcc\xfa\x3e\xd2\x31\x3c\x5d\xc1" "\xa2\x42\x2b\x9c\xe1\x89\x7d\xd7\x2f\x75\x5c\x33\x3e\xe5\x1f\x51\xaf" "\x29\x3d\x13\x43\x9f\x9d\xe2\x23\xaf\x2e\xd6\xaa\xe9\xa9\x90\xec\xb7" "\xc9\x50\x46\xfc\x67\x32\x7a\xf0\xf7\x6c\xf0\x54\x63\xe0\x26\x46\x43" "\x35\x1e\xca\x59\xb8\xfd\x2a\x78\xcf\x6d\xa4\xa4\x81\x5c\x0d\x67\xb8" "\x65\xb0\x79\x70\xef\x4b\xd9\xbd\xf2\xaf\xbc\x8c\xb0\x49\xc6\x9a\xb6" "\xde\x05\xeb\xd4\x2a\xe4\x3d\x47\x40\xf9\x2e\x73\x4b\x01\x0b\x8c\xf4" "\xe4\x00\x2a\xbf\x37\x3e\x4d\x6b\xe9\xc5\x4e\xd3\xda\x64\x5a\x26\x41" "\x1f\xd3\x6f\x21\x4e\xc0\x6f\x95\x62\x75\xdd\xc9\x9a\xa6\x52\x8e\x48" "\xf2\x56\x42\xe0\x54\x47\xe4\x68\xf6\xd6\x66\xf9\x86\x38\xd4\x08\x4f" "\xb0\xbe\x3d\x89\x8f\x78\xfd\x16\xbc\x20\xc2\xf8\xf1\xd5\xb9\x38\x25" "\x67\x55\x91\x9c\xbb\x35\x04\xdd\x65\x9c\xed\x7a\x61\x16\xdb\xc8\x94" "\xc5\x36\x8f\xf2\x38\xd4\x33\xeb\x62\x29\x9b\xac\x82\x57\x52\x4e\x69" "\xf1\x61\x4c\xa1\xd2\x11\x3f\x90\x7c\x5e\x0f\x08\x0f\x6a\xd0\xfe\xce" "\x81\xeb\x76\xbe\x9a\x77\xf0\x91\x1e\xb5\xf2\xd9\x77\x46\x1a\xed\x39" "\xfb\xab\x99\x26\x15\x59\xa5\xe8\x7f\x15\x1e\x7a\x6e\x2f\xd3\xea\xf7" "\xc3\xee\x9d\x67\x50\xb7\x06\x47\x7c\x0d\x8f\x53\x2f\x47\xe9\x06\xc4" "\xa7\x0c\x6b\x0e\x2a\x18\x81\xa9\x89\x95\xc6\x49\xe5\x07\xd9\x95\x6f" "\x05\x2c\xed\x93\x75\xc6\xcf\xf0\x49\x28\x2c\x4a\x61\x29\x87\x41\x1f" "\x73\x49\x34\x2d\xe5\x9d\x24\xf7\xf0\xdf\x15\x39\x67\x94\x33\x95\x62" "\xab\x02\x4b\xa6\x83\xaf\x7c\x66\x01\x8f\x1a\xbe\xd6\x96\x2e\x2c\xa6" "\xfd\x34\xb0\xb7\x0f\xae\x31\x46\xe5\x9e\xcf\xcf\xc0\x46\xd1\x64\x48" "\x1f\x73\x77\xe8\x95\xe6\x8c\x5a\xd3\x5c\xbc\xf8\x7a\x49\xf3\xc3\x32" "\xba\x64\x38\x80\xe7\x04\x58\x29\x6e\x1d\x0f\x50\x85\xd2\x66\xf1\x6e" "\xff\xe7\xce\x14\x86\x3c\x44\xc1\xa0\x0a\x55\x73\x8f\x9d\x76\xe2\x67" "\xb1\x26\x7d\x7b\x87\x17\x9c\x3e\x3d\xc1\xdd\xf7\x91\x05\x56\x74\xf2" "\x17\xe3\xcf\x59\x51\x17\xcd\xc4\x16\xd5\x47\xf3\xfa\xee\x76\x41\x8e" "\x76\x12\x6f\x73\x15\x51\x63\x2a\x2d\x47\x7c\xb6\x00\x46\xbe\x35\xfd" "\xc3\x41\xd6\x2f\x5e\x00\x30\x4b\xf4\xa0\x78\x10\xe8\xda\x17\x63\x7e" "\x27\xf7\x36\x69\x6c\x45\xe8\x7f\x4e\x4c\x7f\x4b\xf3\xbb\x89\x33\x46" "\xcf\xbe\x9d\x0a\x2f\xca\x03\x7a\x58\x31\x48\x0b\x90\x4c\x7c\xc5\x33" "\x4a\x74\x3d\x89\x72\x71\xf0\x56\x32\xd2\x87\x74\xcd\x75\x8a\xd6\x3c" "\x93\x18\x20\x8c\x08\x9f\x79\x54\x38\x52\x06\xed\x88\xa3\x69\x40\x26" "\x0e\xfd\x03\x8a\x1e\x68\xf3\x31\x2d\x8c\xcf\x7d\xe1\xe8\x92\x51\xda" "\xab\xf3\x38\x13\x9c\x0e\xda\x4e\xa9\xc0\xca\xd8\x2e\x5a\xe5\x0c\x63" "\x6b\x7c\x75\x2f\xc2\x53\xb7\x36\x31\x92\x06\x20\x95\xc0\x98\x36\xfe" "\xda\x6d\xa6\x52\x72\x7e\xee\x4f\x98\x3d\xec\xdb\x61\x18\xc2\xcb\x0e" "\x30\x7b\x0b\xdf\x2d\x6c\xe2\x70\x2c\x05\xf0\x7f\xf9\xfd\x5a\x14\x03" "\xe5\x02\x97\x27\x17\x6c\x90\x76\x03\x64\x48\x74\xc2\xca\x90\xf0\x2b" "\x65\x35\x54\x2f\xed\xd7\x58\xbc\x09\x94\x64\x53\x86\xa3\x9d\xc0\xa9" "\x6b\x29\x5f\x9e\x82\x2a\xe1\xc5\x1e\xad\x71\x0e\xd9\x40\x16\xe7\xd1" "\xb2\x8b\xe3\x6f\x2a\x43\xa4\x4d\x88\x03\x5c\x94\xd5\x97\xf0\x2a\x9e" "\xd6\x55\x2b\x10\x53\x80\x8b\x19\xc5\x22\x62\x3c\xd7\xfb\x19\x36\x79" "\xcc\xc4\x7e\x58\x38\x64\x25\x3d\x8f\x87\x6d\xbd\xd6\xd3\xb5\xdf\x83" "\xbd\x32\xd6\x38\xa4\x3b\xc9\xcb\xf2\x46\x2e\xc0\x03\x3f\x1d\xf7\xb7" "\xc5\x0b\x60\x2c\x3f\xd2\x3f\x6e\xb8\x23\x54\xce\xfb\xb2\xf8\x12\xc3" "\xbf\xcd\xd4\x5a\x2a\xf2\xc2\xf4\x50\x11\x6a\x6e\x72\xe6\xdd\x19\x81" "\x68\x4e\x51\xa2\x25\x5f\xec\x52\x6c\x0e\x9b\x1b\x3a\x04\x05\x7c\x0e" "\x11\xc6\x04\x82\xb6\xa3\x4b\xfc\xac\x8b\xa0\x70\xdf\xe9\xf0\x0b\x13" "\x38\x4e\x8d\x7f\xe9\x2d\x71\x03\x9c\xfe\x8a\x9e\xff\xcd\x5f\x51\xeb" "\x52\x9c\x85\x56\xc9\x8e\xe8\x52\x94\xc4\xad\x04\xd4\xda\xf3\x0c\x21" "\xbc\x11\x65\xf5\x45\xe1\xce\x25\x65\x04\x7d\xfe\xe3\x83\x5d\x00\x86" "\xb5\xe0\xb5\x22\x60\x01\xd1\x1d\x97\x81\x44\xb1\x83\x6d\x83\xd0\xf6" "\x27\xb2\x24\x94\x74\xf3\xb5\xc7\x78\x05\x9a\x5f\x84\x25\xeb\xee\x8a" "\xca\xb5\xf2\xe0\x50\x43\xb6\xf2\xa0\x8a\xa6\x68\xe8\x0b\xff\xbe\xd5" "\xc9\x8a\x2c\x44\x0e\x02\x11\xc0\x50\x3d\x29\xc6\xfe\x88\xef\x44\x44" "\x59\xe8\x8f\x60\x2d\x9c\xe9\xb7\x5c\x4c\xda\x17\x0b\x0d\xf0\xce\xf7" "\x80\xe4\xd1\xc9\x0e\xf9\x12\x64\x94\x5a\x67\xa4\xb3\x48\x0f\xd8\xc0" "\x85\x63\xaf\xff\x6c\x10\x79\x05\x62\xb9\xe6\x95\xf7\x3b\x34\x99\x1d" "\x7d\x25\xed\xec\x76\x48\xb4\xaa\x10\xf5\x78\xdc\xbc\xbd\xa2\xca\x66" "\xc0\x02\xf3\x77\x42\xfa\xae\x59\x68\x69\x28\x95\x72\x29\xbc\x98\x7e" "\xcf\x62\x4a\x9d\xed\x1c\xca\xd1\x73\x0f\x97\x46\xe6\xdf\x82\x52\x63" "\xda\x8d\x91\xea\x30\x72\xe6\xbd\xe3\xc7\x53\xf8\xe4\x84\x55\x51\x2f" "\xd2\xcc\x79\x7e\xea\xa1\x16\xec\x98\x2b\x44\x98\xdf\x7b\xda\x34\xda" "\x0f\x41\x12\xf8\x22\x2e\xb4\x34\xd7\xc3\xee\x1f\x97\xd6\x1f\x59\x77" "\x59\x20\xce\xdb\xcc\x68\x78\x65\xbe\x25\x32\xd1\x6d\xbd\x6a\x69\x81" "\xb5\x56\x17\xde\x88\x11\x99\x78\x9e\x11\x89\xe1\x4e\x48\x18\x7c\x7e" "\x93\xac\x68\x98\xc7\xcd\x55\x9b\x9b\xef\xdb\xb9\x91\xfb\xa4\xea\x08" "\x26\x2f\x35\xed\x74\x66\xef\x59\xc1\x00\xc2\x6b\xbf\x81\x70\x0d\xef" "\x5e\x1b\xe4\x52\x21\x44\x71\x97\xaf\x0b\x56\x75\x0b\x78\x5e\xfe\x8a" "\x98\xa4\x04\x9c\xa0\x1b\x1c\xe5\x4c\x85\x97\x09\xd4\x65\x81\x2f\x81" "\x28\x80\xc0\x5d\xd7\x15\x22\xa7\x80\xe8\x73\x28\xa0\x6c\x2e\x42\xb6" "\xc2\x47\x38\x28\x9e\x1a\x78\x4a\xcf\x1f\x18\xe8\x48\x87\x19\xd0\xfb" "\x63\x62\x54\xfd\xce\xff\x78\x0c\x62\xef\x6e\x6b\x8a\xb5\xe0\x36\xef" "\x2c\x15\xd9\xb3\x63\xb5\x84\x3b\xd0\xf3\xa9\x11\xfa\x2c\x90", 8192); *(uint64_t*)0x200108c0 = 0; *(uint64_t*)0x200108c8 = 0; *(uint64_t*)0x200108d0 = 0; *(uint64_t*)0x200108d8 = 0; *(uint64_t*)0x200108e0 = 0; *(uint64_t*)0x200108e8 = 0; *(uint64_t*)0x200108f0 = 0; *(uint64_t*)0x200108f8 = 0; *(uint64_t*)0x20010900 = 0; *(uint64_t*)0x20010908 = 0; *(uint64_t*)0x20010910 = 0; *(uint64_t*)0x20010918 = 0x200068c0; *(uint32_t*)0x200068c0 = 0x90; *(uint32_t*)0x200068c4 = 0; *(uint64_t*)0x200068c8 = 0; *(uint64_t*)0x200068d0 = 1; *(uint64_t*)0x200068d8 = 0; *(uint64_t*)0x200068e0 = 0; *(uint64_t*)0x200068e8 = 0; *(uint32_t*)0x200068f0 = 0; *(uint32_t*)0x200068f4 = 0; *(uint64_t*)0x200068f8 = 0; *(uint64_t*)0x20006900 = 0; *(uint64_t*)0x20006908 = 0; *(uint64_t*)0x20006910 = 0; *(uint64_t*)0x20006918 = 0; *(uint64_t*)0x20006920 = 0; *(uint32_t*)0x20006928 = 0; *(uint32_t*)0x2000692c = 0; *(uint32_t*)0x20006930 = 0; *(uint32_t*)0x20006934 = 0x1000; *(uint32_t*)0x20006938 = 0; *(uint32_t*)0x2000693c = 0; *(uint32_t*)0x20006940 = 0; *(uint32_t*)0x20006944 = 0; *(uint32_t*)0x20006948 = 0; *(uint32_t*)0x2000694c = 0; *(uint64_t*)0x20010920 = 0; *(uint64_t*)0x20010928 = 0; *(uint64_t*)0x20010930 = 0; *(uint64_t*)0x20010938 = 0; syz_fuse_handle_req(r[0], 0x20004440, 0x2000, 0x200108c0); break; case 5: *(uint32_t*)0x20004200 = 0x50; *(uint32_t*)0x20004204 = 0; *(uint64_t*)0x20004208 = r[1]; *(uint32_t*)0x20004210 = 7; *(uint32_t*)0x20004214 = 0x20; *(uint32_t*)0x20004218 = 0; *(uint32_t*)0x2000421c = 0; *(uint16_t*)0x20004220 = 0; *(uint16_t*)0x20004222 = 0; *(uint32_t*)0x20004224 = 0; *(uint32_t*)0x20004228 = 0; *(uint16_t*)0x2000422c = 0; *(uint16_t*)0x2000422e = 0; *(uint32_t*)0x20004230 = 0; *(uint32_t*)0x20004234 = 0; *(uint32_t*)0x20004238 = 0; *(uint32_t*)0x2000423c = 0; *(uint32_t*)0x20004240 = 0; *(uint32_t*)0x20004244 = 0; *(uint32_t*)0x20004248 = 0; *(uint32_t*)0x2000424c = 0; syscall(__NR_write, r[0], 0x20004200ul, 0x50ul); break; case 6: memcpy((void*)0x20004400, "./file0/file0\000", 14); syscall(__NR_openat, 0xffffff9c, 0x20004400ul, 0ul, 0ul); break; } } int main(void) { syscall(__NR_mmap, 0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); loop(); return 0; }