// https://syzkaller.appspot.com/bug?id=be54052008215872bbf2ea3aa2933a6b56e52513 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_mkdirat #define __NR_mkdirat 34 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_mount #define __NR_mount 40 #endif #ifndef __NR_openat #define __NR_openat 56 #endif #ifndef __NR_pivot_root #define __NR_pivot_root 41 #endif #ifndef __NR_read #define __NR_read 63 #endif #ifndef __NR_write #define __NR_write 64 #endif 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 long syz_open_dev(volatile long a0, volatile long a1, volatile long a2) { if (a0 == 0xc || a0 == 0xb) { char buf[128]; sprintf(buf, "/dev/%s/%d:%d", a0 == 0xc ? "char" : "block", (uint8_t)a1, (uint8_t)a2); return open(buf, O_RDWR, 0); } else { char buf[1024]; char* hash; strncpy(buf, (char*)a0, sizeof(buf) - 1); buf[sizeof(buf) - 1] = 0; while ((hash = strchr(buf, '#'))) { *hash = '0' + (char)(a1 % 10); a1 /= 10; } return open(buf, a2, 0); } } 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 < 9; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50); 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*)0x20000040, "/dev/fuse\000", 10); res = syscall(__NR_openat, 0xffffffffffffff9cul, 0x20000040ul, 0x42ul, 0ul); if (res != -1) r[0] = res; break; case 2: memcpy((void*)0x200020c0, "./file0\000", 8); memcpy((void*)0x20002100, "fuse\000", 5); memcpy((void*)0x20002140, "fd", 2); *(uint8_t*)0x20002142 = 0x3d; sprintf((char*)0x20002143, "0x%016llx", (long long)r[0]); *(uint8_t*)0x20002155 = 0x2c; memcpy((void*)0x20002156, "rootmode", 8); *(uint8_t*)0x2000215e = 0x3d; sprintf((char*)0x2000215f, "%023llo", (long long)0x4000); *(uint8_t*)0x20002176 = 0x2c; memcpy((void*)0x20002177, "user_id", 7); *(uint8_t*)0x2000217e = 0x3d; sprintf((char*)0x2000217f, "%020llu", (long long)0); *(uint8_t*)0x20002193 = 0x2c; memcpy((void*)0x20002194, "group_id", 8); *(uint8_t*)0x2000219c = 0x3d; sprintf((char*)0x2000219d, "%020llu", (long long)0); *(uint8_t*)0x200021b1 = 0x2c; *(uint8_t*)0x200021b2 = 0; syscall(__NR_mount, 0ul, 0x200020c0ul, 0x20002100ul, 0ul, 0x20002140ul); break; case 3: res = syscall(__NR_read, r[0], 0x200077c0ul, 0x2020ul); if (res != -1) r[1] = *(uint64_t*)0x200077c8; break; case 4: memcpy((void*)0x20000000, "./file0\000", 8); memcpy((void*)0x200001c0, "./file0\000", 8); syscall(__NR_pivot_root, 0x20000000ul, 0x200001c0ul); break; case 5: *(uint32_t*)0x20004200 = 0x50; *(uint32_t*)0x20004204 = 0; *(uint64_t*)0x20004208 = r[1]; *(uint32_t*)0x20004210 = 7; *(uint32_t*)0x20004214 = 0x1f; *(uint32_t*)0x20004218 = 0; *(uint32_t*)0x2000421c = 0x2023015; *(uint16_t*)0x20004220 = 0; *(uint16_t*)0x20004222 = 0; *(uint32_t*)0x20004224 = 0; *(uint32_t*)0x20004228 = 0; *(uint16_t*)0x2000422c = 0; *(uint16_t*)0x2000422e = 0; memset((void*)0x20004230, 0, 32); syscall(__NR_write, r[0], 0x20004200ul, 0x50ul); break; case 6: memcpy((void*)0x20000200, "/dev/input/mouse#\000", 18); syz_open_dev(0x20000200, 0x2e, 0x4000); break; case 7: memcpy( (void*)0x20009800, "\x08\xa4\x41\x72\x8a\x97\xc3\x8a\x3c\x26\xcc\x2e\x6f\xcf\x2f\x89\x3a" "\xba\xb1\x38\x81\x94\xda\x3b\x07\xf2\x65\x1a\x59\x22\x23\x50\xa7\xfe" "\x0c\x5f\x24\xc4\x94\x09\xa7\x3e\x9f\xcb\x99\x0b\xa0\x31\xb5\x67\xcf" "\x5e\x09\x1d\x20\x39\x12\x2c\x80\xd9\xf5\x8e\xf1\x37\x59\x9d\x9d\xdb" "\xe2\x28\x89\x1f\x6a\x38\x22\xca\xf9\xb7\x27\x9d\xa1\x2e\xbe\x11\xac" "\x29\x54\x5a\xf1\x75\x4b\x59\xad\xd5\xb1\x8a\xb3\xd5\xe8\xe5\x1f\x04" "\x3a\xe9\x11\xa1\x69\x2b\x4b\x46\xaf\x5e\x56\x11\x48\xa3\x6e\x8e\xe1" "\x36\x9c\x58\x9e\xd9\x7b\x4a\xab\x94\xf8\xf1\x2b\xd4\x82\x62\xc5\x6a" "\x92\xbf\xa4\x41\x50\x3b\xfb\x4c\x2e\x18\x86\xbf\x74\xa2\xd2\xf1\x22" "\x92\xb5\xa8\x64\x65\xf5\xa0\x5e\xf3\x47\xb3\x61\x8b\xf9\xce\x00\x18" "\xa2\x05\x2d\x47\x41\x94\x3d\xe5\x14\x07\x03\xb7\xe3\x32\xb3\xf7\xcc" "\x72\x89\x1e\xfa\xea\x73\xfa\x33\xca\x3f\xfb\x70\x0d\xcd\x8f\x86\xe9" "\x96\xd8\x25\x28\x54\x29\xc4\xdc\xdb\x10\x56\x25\xb3\x5e\xed\x45\x10" "\x15\xe4\x8b\x22\xbf\x18\x03\xac\x65\xfe\x42\x4d\x45\x62\x24\x3e\x0e" "\xe7\x18\x11\x87\xf3\x76\xe0\x63\x51\x99\x7e\x0f\xd6\x9b\xdf\xea\x0f" "\xff\x87\xf7\x83\x6d\xa7\x2e\x10\xfe\x0c\xbe\x00\x89\x08\x35\x5d\xaa" "\xdd\x66\xd8\x94\x06\x48\x1f\x89\x13\x01\x2e\x05\x72\xec\x19\x5f\x44" "\x4e\x2c\x55\x03\xbd\xc9\xb4\xb9\xae\xba\xa5\xfb\x24\xc5\x39\xe9\x1b" "\xf0\xaf\x00\xe8\xfb\x9b\x6a\x96\x50\xaa\x9a\x3f\x4e\x9b\x02\x66\xac" "\x6a\xff\x2c\xcd\x06\x76\x92\xbf\xb3\xe6\x23\x3d\xff\xe8\xf7\x3c\xf9" "\xc7\xe4\x92\x85\xd1\x93\xf7\x2e\xe0\x72\x18\xd8\x31\xd0\xa8\x28\x2e" "\x4c\x12\x93\x73\xb4\xec\xa5\xa6\x8b\x7e\x05\xd3\x78\x33\x77\x5e\x38" "\xc6\xa8\xb3\x63\xb2\x21\xb4\x82\x1c\x09\xaa\x0c\x64\xbd\xca\xaa\x67" "\x02\x58\x5d\x68\x3f\xf4\x54\x49\xed\xa5\x36\x79\xfc\xf3\x3a\x61\x79" "\x52\x60\xa2\xa0\x20\xc7\x95\xd0\x43\x78\x58\xf9\xd6\xce\x1c\x68\x7a" "\xa8\xfb\xa7\x95\xed\xd3\xe8\x28\xa5\x97\x16\xdf\x2d\x1c\x3b\xe0\x96" "\x0c\x8c\x67\x2a\x1d\x3c\x93\x68\x9e\xee\x78\x8f\xd9\xd7\x7f\xed\x0d" "\x2a\xed\x3c\x52\x0b\xcf\x4f\x09\x31\x01\xd0\xea\x21\xd3\x62\x4d\x87" "\x2a\x7d\x0b\x70\x66\x67\xcc\x13\x1d\xeb\xcd\x98\x8f\xa0\xf8\x6c\x69" "\xcc\x6b\xad\x9d\x7f\x00\xe4\xe5\xba\xe2\x1d\x67\x21\x36\x54\xf9\xf5" "\x63\x1d\x92\xe7\x36\x23\xf6\x94\xca\x79\x1e\xab\x3b\x68\xfb\xaa\x7b" "\xe2\x6a\x17\x13\x64\x96\xe0\xb6\x4d\x78\x7a\x9b\x8b\x9b\xd2\xef\x66" "\xa4\xfd\x52\x0e\x86\x4c\x57\x07\x35\xa4\xdb\x3d\xea\x05\x70\x90\x35" "\x04\x2a\x7b\xa7\x38\xaa\x43\x2f\x33\xd3\xbe\x5f\x93\x56\xc6\x05\x22" "\x58\x2e\x40\x06\x95\x81\xfd\xc3\x8b\xce\xa4\x97\x10\xcf\x6c\xe4\x46" "\x17\xb5\xc1\x0e\x79\xad\x58\x73\x75\xe5\xcb\x49\x46\xa3\x29\x69\xc6" "\x90\x8b\x6f\xcf\xab\x9d\xc2\x67\xfd\x10\xfc\x53\x92\xe3\x09\x2a\xbc" "\x09\x88\x1a\x85\xd8\xcf\x46\xc7\xca\xdc\x25\x03\xe0\xd8\x58\x3c\xf2" "\x42\x6e\xe6\x53\x2f\x4b\x2c\x54\xb4\xd2\x71\x7a\x6b\x6d\xdb\xea\xe4" "\x79\x2e\xd8\x37\x5d\xcd\xe5\x8b\xa3\x8a\x43\x11\x5c\x25\x7c\x59\xcb" "\xb1\x75\x2b\x9c\x58\x47\x65\x37\xfe\x01\x8a\x05\x23\x2b\x28\x0e\xdd" "\xc6\x02\xa9\x7c\x47\x78\x87\xbd\x11\x8b\xb7\x1b\x1a\x16\x2d\xdc\x4a" "\xc1\x57\xd2\x16\x88\x73\x4e\xdc\x0b\x0d\x7c\x59\xc6\x76\x30\x1e\xc7" "\x88\x74\x99\xd1\x4a\xfd\xfa\x23\x8c\x93\xc7\x3b\x7c\xe0\x78\xa3\x9d" "\xc2\x25\xca\x39\x88\xec\x26\x40\xb5\xf0\xdc\xf0\x2b\x44\x49\x5d\xd1" "\x5f\x6d\xca\xa0\xe4\x33\x61\x6f\xdf\x89\xe2\x36\x09\x26\x63\x9c\x3a" "\x89\xa0\x03\xa6\xee\x39\xdb\xda\xc7\x7e\x71\xea\x1e\xc4\x87\xf5\x94" "\xef\xdd\x9e\xe1\x53\x5f\x06\xed\x83\xdc\xfe\x63\x32\x64\xc0\xfa\x44" "\x90\x69\xda\x2d\x1e\xdd\x71\x0a\x65\x23\xea\xeb\x53\xcf\x91\x92\x4f" "\x4e\x08\xd7\xe1\xa5\x7b\xf8\x88\x91\x58\x12\xcc\x46\xac\x68\x4e\xf8" "\x99\x39\x91\x91\x9f\x14\x90\xd4\x5e\x6a\xb9\xb3\x96\x98\xc6\xf0\x52" "\xed\x45\xc5\xc0\x1b\x37\xae\xe1\x7c\xab\x43\x75\x26\xac\x7b\xbe\x70" "\x0e\xaf\x14\x83\xd1\xda\xa3\x34\x54\x16\x6f\x40\xa1\xbe\x39\x0c\xe8" "\x86\xbd\x41\xc8\x3f\x7e\xca\x6a\x8d\x03\xc5\x41\xf4\x8f\xd8\x41\x37" "\x8d\xac\x04\x36\xfd\xc9\x8a\x7b\xf0\xb7\x39\x1d\xe5\x6b\x9a\xa8\xf1" "\x5a\x0c\xee\x8c\x1d\x80\x0b\xe4\x73\x9a\xc7\x3d\xd9\x40\xb7\x02\x2a" "\x5e\xa9\xa3\x0b\x0f\x71\x20\x97\x08\xa7\x2a\xb8\x52\x35\xbf\x9c\xc3" "\xca\x6b\xa8\x35\xfa\x4d\x4c\xff\xf1\x89\xe9\xf0\xe1\xc2\xca\x91\x8f" "\x6b\x75\xda\xee\x20\x33\x80\xb2\x9a\xd5\xb8\xe4\x5b\x1e\xd4\x98\x5d" "\xbb\xdc\xbe\x86\x76\x81\x76\xf7\x17\xc6\xf4\x40\x8d\xdc\x83\x19\xc3" "\x64\x58\xf5\x0d\xb2\xe1\xe6\xfd\x0e\xd2\x58\x56\x98\x27\xec\xde\x4a" "\xa5\x48\x96\x6f\x38\xfb\x13\x8e\x8c\x1a\x69\x79\x42\x95\x8d\x8d\xb9" "\x77\x1d\x08\xa1\x95\x67\xc9\xb4\xb2\x46\x6b\x7e\x15\x0c\x01\xd9\x01" "\x64\x3f\xe7\xcf\xe3\x24\x49\x27\xc1\xe5\x2a\x85\x8e\xb0\x6f\x30\x60" "\xab\x5d\x7c\xf8\x19\xec\x75\x00\xab\x5d\x8f\x53\xb8\xbf\x7d\x2e\x12" "\x4f\x33\xee\x92\xc3\xc3\xe3\x19\xbf\xe6\x51\x08\x2f\x64\x3f\x4f\x85" "\x1b\x90\xce\x5c\x0b\xbe\xc0\xcb\x3c\x5a\x15\x35\x96\x01\xaf\xda\x54" "\xe8\xce\xfb\x13\x38\x96\xd3\x39\x7c\x4e\x9b\xa9\x19\x24\xfe\x8a\x45" "\xbc\x66\xb6\x4a\x27\xac\x17\x8e\x39\xc4\xa7\xa5\x45\xcc\x3a\xe0\x45" "\x93\xc9\xec\x75\x9c\xfe\xdd\x5e\xc1\x54\x08\xe8\x99\x23\xcf\xde\xd7" "\xb8\x8b\x70\x90\x05\xa2\x60\x9b\x4a\x5c\x9c\x7f\x34\x9a\x2c\xa8\x21" "\x9f\xb2\x80\x63\x72\xe8\xca\x51\x88\x9d\x04\x8e\xcd\x65\xb0\x87\xae" "\xc8\x20\x10\xa1\x1b\x0b\xc5\xb2\x7a\x11\xd2\xe6\xc2\xda\x4f\x44\x74" "\x92\x10\x33\x73\x12\x20\x50\x2c\xd7\x4a\xc5\xdc\x33\x4f\xa9\x1e\xc0" "\xdb\x98\xca\x8f\xc1\x91\xae\xeb\x20\x75\xc0\x9c\x5e\x89\xf7\x0b\xf5" "\x2b\xa1\x68\x62\x11\xba\x93\xd3\x1c\x94\x20\xc0\xf2\x02\x07\x1f\x71" "\x0b\xca\x90\xf4\x0f\x3c\xe6\x09\x29\x37\xe0\x36\x1d\x9a\xd0\x69\x26" "\xc3\x2c\x06\xa7\xfb\xef\x16\x2d\xa5\xba\xf7\xb3\x3b\x9a\x68\xa4\x16" "\x2d\xc5\xf9\x14\xaf\x11\xc0\x8f\x2a\xe2\x64\x32\x07\x8a\xa5\xd2\x24" "\xfe\x5f\x63\x73\x63\xaa\x5f\xc6\x08\x3a\x88\xc7\x48\xb3\x7a\xa9\xb9" "\x4d\xd2\x9d\x32\xe8\xf5\xdd\xa0\x45\xf4\xba\x60\xb3\x25\x89\x1e\x13" "\x45\xb0\xa3\xcd\x1b\xa6\xf9\xec\x3f\x22\x82\x8b\x91\xd0\x67\xe6\x3e" "\xbf\xf6\x6a\x95\xda\x7c\xa9\xde\x90\xc3\x50\xa9\x24\x74\xa0\x91\x2d" "\xb4\xef\xbc\x7e\xf0\x36\xf9\x05\x9d\x3d\x48\xe0\x3a\x82\xff\x2c\xa9" "\x22\x2d\x70\x1c\x6d\x11\x98\x6b\x5d\xca\x57\xf6\xf3\x4e\xa4\x1c\x86" "\xc1\x8c\x52\x7d\xcd\xaf\xcb\x24\x0b\x29\xa3\x00\x82\xd3\xb5\x61\x7e" "\xec\x49\x5f\xce\xfa\xbe\x56\xf7\x34\x11\x4d\xee\x6d\x7a\x60\xec\xc4" "\x58\x4d\x94\xfc\x0f\xb5\x5d\xf1\xfe\x04\x5c\x75\x9d\x7d\x7a\x33\x58" "\x88\x6c\x54\x64\xb8\x8b\x4c\x67\x71\xb3\x1e\xbb\x6d\x7f\x1b\x18\x84" "\xf2\x5d\x7b\xc1\x76\xd7\x61\x45\xbc\xb0\x8c\xfd\x6a\xdf\x54\xe0\x1b" "\x8a\x65\x13\xba\x46\xfa\xaf\x93\x57\xba\x1d\xb2\xf6\x6a\x77\x84\x28" "\x75\x36\x85\xdc\xfc\xd8\xf7\x6d\x14\xd4\x96\x4a\x1f\x9c\xa6\x13\x2e" "\xe3\x2b\x61\x99\x9b\x39\xf5\x39\x3f\xe8\xd3\xa3\x00\x89\x43\x06\x64" "\x73\x0f\x2c\xf8\x30\xe5\xe0\xf8\xf0\x6f\x4c\x86\x1f\xb1\x74\x56\xc4" "\x4a\xae\x78\x93\xea\x67\xf6\x1c\xae\xfe\x7a\xc1\xee\xe4\x49\x2b\x49" "\xa6\x75\x56\x7a\x39\x57\xeb\xed\xa2\x8c\x53\x4c\x2c\xa0\xa9\x88\x5b" "\x9a\x34\xcf\xac\x04\x41\x4c\x75\xc8\x31\xd3\x05\x06\xfc\xbb\xf9\x56" "\x0e\x58\x3f\x30\xe8\x84\x1f\x3b\x82\xcd\xb0\x3c\x03\xaf\xd9\x09\x7b" "\xa5\x88\xab\x1c\xdc\x46\xfb\xbe\xea\x91\x9d\x51\x0e\x63\x5b\x6f\x74" "\x51\xfe\x17\x7e\x64\x1a\xbc\x88\xb5\x0d\x6d\xa9\x8b\x97\xff\xf7\x46" "\x95\x98\x2e\x1b\x7a\xfc\x65\x50\x2a\xda\xf9\x69\x46\x27\x3c\x36\xdf" "\x49\xa5\xa5\x11\x64\x1f\xb7\xfa\x89\x4b\x79\x29\x1c\x12\xa1\x11\x6c" "\x3c\xac\x14\x9c\x29\x0f\xf3\xec\xf9\xe3\xeb\xa2\xd7\x3c\x75\x73\x25" "\x5a\x2b\x87\x11\x4a\xab\x5e\x77\x15\xfd\x8e\xa1\x31\x03\x34\xc4\x5a" "\x05\x9f\xfa\x8e\x29\x5f\x30\x91\x33\xac\x94\x64\x4e\x36\x6b\x91\xb5" "\x83\xd0\xbb\x3c\x16\x7f\xc0\xfb\x68\x8c\x8e\x63\xb5\xf5\x50\xe4\xe5" "\xbe\xeb\x01\x5d\x17\xe3\x7a\xe4\x2d\x83\x63\x3e\x51\xa9\xeb\xdb\xf6" "\x10\x40\x88\x0e\x79\x01\x67\xc5\xd2\xc4\x5b\x44\x13\x3f\xac\x47\x2f" "\x3a\xa8\xde\xdb\xab\x6e\x20\xb7\x13\x8e\x2d\x48\x36\x11\xbc\xb6\x18" "\x84\xc4\x3b\x03\x42\xf6\xc1\x13\x48\x99\x8d\x0d\x61\xb7\x7b\x04\x17" "\x56\xf8\x9a\x99\x09\xab\x03\x54\xa6\xa5\x09\x70\xec\x8f\x4c\xab\x3d" "\x03\x3a\x49\x73\x0f\x59\x18\xde\xef\xaa\xac\xc5\x57\xf6\x31\x9e\x97" "\x98\x81\x3d\xf8\xe4\xe5\x77\x6a\x10\x98\x9b\xf9\xc8\x32\x02\x63\xf5" "\x46\x24\x86\xe4\xea\xdf\x38\x5b\xd5\xea\x72\xc7\x6a\xc8\xa9\xee\xb8" "\x8d\x65\x17\xd5\xff\x40\x79\x02\x48\x90\x63\xc1\x50\x6d\xc7\xce\xd3" "\x1f\xb1\xc4\x20\xb8\xed\xe1\x04\x3c\x2f\xb6\x27\xf7\x5e\x34\x31\xdf" "\x3b\x73\x38\x74\x10\x35\x5d\x18\x76\xb4\xf8\x0c\xaf\xf7\xca\x0a\x51" "\x86\x43\x91\xe5\x34\xe6\xab\x49\xcb\xf0\x31\xb7\xe8\x13\x7d\x37\xec" "\xe8\xe6\x8b\xa4\x5f\x79\xb9\x18\x60\x99\x75\x18\x57\xc6\xf8\xf4\x64" "\x5b\x54\x31\x25\x4e\x93\x8b\x98\xf9\x14\x2a\x37\xc3\x5f\x74\x50\x31" "\x6b\x9d\x0a\x58\x59\x80\x55\x24\xdf\xd8\xc8\x1b\x26\xda\x89\xe9\x5f" "\x64\x4e\xf4\xc7\x66\xb9\x80\x42\xce\x1d\xed\x0c\x4f\xff\x55\x1f\xdf" "\xa4\x14\xe2\x35\x6e\x65\xd1\xe7\x5e\x8d\x70\x27\x97\x9f\x3d\xe7\xeb" "\xab\x6e\x31\x87\x12\xd5\x76\x04\x42\x4d\xf7\xb4\xcc\x7f\x94\x11\xff" "\xba\x86\x0f\x50\x8f\xc9\x29\x8d\x37\x2f\xa7\xb2\x3b\x93\x8c\x7e\x2d" "\xf0\xe6\x09\xf8\xb4\xcf\xf3\x2b\xf3\x9c\x7a\xa9\x97\xc7\xca\x36\x4b" "\x11\x05\x8c\xf1\x53\x26\x5e\xf9\xbf\x1d\x29\x31\xe5\x23\x15\x29\xa8" "\x16\xfb\xa7\x5d\x48\xa6\xa4\x37\x7a\x96\xbe\xdb\xa8\x83\x57\xca\x39" "\xd0\x8e\xbb\x7d\xe0\xb8\x88\x77\xf3\x54\x9f\xff\x6d\xd8\x5e\xfb\x93" "\xda\x26\x1c\x76\x54\x37\x66\x58\x0c\x4a\x41\x37\x11\x18\x41\x3d\xd9" "\x1f\x83\x82\xc6\xd4\x79\x02\x67\xe7\x91\xbc\xac\x68\xc6\xc4\x42\x08" "\x2b\x0a\x9e\x67\xac\x0b\x39\x0e\xa5\xe5\xb7\x12\xc2\x2b\x2d\xe1\x36" "\x20\x88\xe8\x00\xa5\xe3\x3b\x64\x15\x31\xad\x4f\x1a\x08\x36\xfa\xf2" "\xd6\xa6\x7f\x14\xb3\xe4\x23\xae\xf9\xa4\xfa\xad\x5c\x70\xbe\x9a\x13" "\x32\xe3\xa4\x76\x35\xfd\xcb\xc7\x7b\xbc\x09\xe9\x6a\x55\xdd\x77\x58" "\x7e\x18\xdc\xe6\x32\xbc\x3c\x17\x30\xf9\x0c\x70\xcd\x5b\x8e\x90\xcb" "\x2e\xd0\xee\x35\x33\x53\xe9\x9c\x4b\x1c\x0e\xa8\x64\xcb\x80\x9b\x4d" "\x7e\x1c\x49\x7d\x12\xdf\xe3\x9c\x55\x70\x2f\x5a\x49\xfc\x13\xf1\x48" "\xee\x97\x00\xdb\x19\x5a\x07\xa9\x24\xd3\x01\x95\x81\xc3\x26\x4e\x32" "\x96\x0a\xe5\x47\x84\xa1\x77\xa8\x08\x76\x11\x51\xb9\x6c\x7a\x23\x3a" "\x5f\xea\x17\x43\xfd\x23\x2e\x77\xc3\xa2\xc1\x5c\x35\x0b\x4f\xc9\x94" "\xac\xb1\xe1\x72\x84\x42\x32\xa9\x20\x43\x81\x60\x67\x82\xc9\x28\x4e" "\x2e\x8b\xea\xba\x75\xb7\x65\xaf\xa2\xaa\xf9\x1f\x42\x26\xab\x23\xa2" "\xaa\x7d\xc0\x7a\x21\xa4\xea\xb8\x77\x26\xdd\xed\x15\x51\x61\x33\x75" "\xa8\xf1\x46\xce\x0b\x0d\x01\xbf\x89\xb0\x0b\xb8\x84\x32\x13\x62\x3d" "\x8a\x9b\x39\x64\x10\xe2\x44\xc8\x0f\x88\x4f\x58\x8d\x0a\xb3\xda\x46" "\x84\x22\xd8\x28\x6b\xdd\xe9\xef\xf6\x34\x3d\xf9\xb0\xa2\x0f\x38\x51" "\x62\x43\xe8\x8e\x11\x58\xd1\x91\x04\xd7\x84\x4f\xab\x44\x69\x26\xc6" "\x1b\x97\xf2\xf9\x99\x41\xdd\x04\x96\x17\x95\xa2\x95\x3f\x8e\x1b\xe5" "\xd2\x0f\x01\x54\xfe\x25\xab\x8d\x76\xa2\x92\xb2\x3a\xc2\x88\x94\x99" "\x54\xab\xe6\xed\x06\x99\xbe\x1c\x35\x43\x8a\xdc\x08\x1b\x19\xfd\x2f" "\x45\x60\x1c\x18\x16\xe9\xe3\x34\x75\x64\x2a\xeb\xab\x40\x94\x02\xa0" "\x00\x8c\xe9\x64\xe9\x2c\x5f\x99\x93\x15\x26\x60\x2f\xa8\x5d\x66\xcf" "\x34\x29\x65\x14\x6e\x44\x96\xcb\xb0\xd2\xa8\x1b\x42\x2f\x88\xb8\x51" "\xc1\xa8\xaf\x61\x74\x8e\x72\x5e\x6f\x1d\xc7\x65\xf1\xd5\xf5\x4b\x9d" "\xc5\x21\xa3\xdf\x5b\xae\xd9\x3a\x08\x7c\xc7\x43\xbc\x57\x77\xd2\x7d" "\xba\xb4\x0f\xf7\x1b\xc6\x3e\x55\x52\x4d\x8c\x20\xc1\x83\x00\x16\x30" "\x4e\x2d\xf3\xb0\x90\x71\x4f\x82\xa8\x76\x62\x60\x04\x7b\x65\xfe\x97" "\xb3\x00\x73\x48\x47\xe6\xde\xfd\x4e\xe0\x92\xe4\xcb\xb1\x57\x32\x36" "\x78\x20\x82\x02\xc7\x18\x58\xb7\x38\x0c\x38\xdd\xa7\x9b\x60\xb2\xc2" "\x3f\xd1\x7e\x7d\xfe\xb3\xbf\x3c\x52\x16\x2e\x38\xa8\x6b\x3c\x0b\x16" "\x0c\x7d\xc6\x2c\x01\x8b\x8c\xdc\x90\xd9\xbe\x9a\x6a\x93\x96\xa5\x2d" "\x6d\xe2\x1c\x97\x46\x95\x0f\xcf\x13\x0c\x5d\xe5\x0f\xab\x49\x6c\x80" "\xf7\x07\x7a\x62\x24\xcf\x34\x79\x14\x5c\xa1\xbe\x20\x3a\xff\xe6\x07" "\x7e\xa4\x0f\xe5\x4d\x39\x40\x4a\xdc\xf5\x12\x29\x7c\xbc\x5c\x05\x70" "\x1c\x38\x67\x0d\x9f\x3f\x5c\xbd\xa6\xb7\xe0\x6b\xd2\xbe\x44\x4e\x68" "\x13\x57\x12\xce\x7f\xc3\x45\x27\xe2\xf9\x85\x93\x07\x13\xb9\x80\xaa" "\x3a\x7e\x6e\xc2\xfe\xce\xfc\xa6\x5f\xa3\x46\x61\x0c\x34\x29\x95\xa8" "\x83\x3b\xf0\xfe\x96\x97\x7b\x7a\xa1\xc9\x0f\x18\x36\xd5\x27\x72\x19" "\xb3\x57\xd7\x5f\xb8\x68\xf1\xf3\x3b\x6e\x6c\xbb\x4d\x26\xd4\xfe\xee" "\x4e\x8d\x6f\x2b\x1e\x7e\x77\xdd\xb4\x4d\x94\x1f\xe4\x09\xb1\xdb\x7d" "\x59\x02\x39\xd3\xd8\x67\x1f\xa7\x96\x96\x0c\x92\x72\x8d\x45\xad\x05" "\xd0\xa4\x50\x5a\x13\x29\x6e\xa3\x21\xd3\xe8\xd9\x9e\xdd\xcc\x7d\x29" "\x0f\x31\xc9\x48\x21\xbf\xcc\x99\x7f\xbc\x68\xaa\x4f\x9c\x7c\x40\x18" "\xf1\xbb\xa9\x98\x1c\x49\x7b\x60\xc1\x75\x2f\xc4\x7b\xd5\x97\x9e\xb7" "\xd7\xef\xc9\x8a\x79\xd9\x69\x12\x24\xb2\x2f\x73\x3c\x92\xb3\xa3\xaf" "\xe6\x6e\x49\x42\x20\xbf\x10\xf5\x47\xa2\xdf\xc3\xe5\x59\x4c\xae\x90" "\x59\x3f\x27\xe7\x70\x83\xeb\xf4\x5e\x59\x02\x0d\xc9\xf6\x7d\x50\x1a" "\xe4\xd3\x92\xbe\x42\x3f\xb4\x52\xf5\xbf\x2f\x00\x8f\x8d\x6c\xc4\x8d" "\x24\xe2\xbf\xf1\x89\x01\xbd\x49\xca\x76\x8f\x17\x66\x11\x80\xce\xf2" "\x15\x80\x64\x99\x95\x59\xf1\xc5\x7d\xef\x58\x50\xb3\x18\xf6\xc1\x16" "\x52\x61\x01\x76\x95\xef\x98\xea\xc7\x59\x91\x27\xf0\xf4\x96\x6d\xba" "\x45\xfd\x47\x09\x02\xbc\xbd\xf5\xc9\xf2\x31\xd6\xf5\x4a\xfb\x47\x92" "\x03\x0c\x10\x73\x99\x82\x1d\xa7\xea\xc9\xc9\x0c\x7c\xa4\x26\x23\x2f" "\xe9\x61\x3f\x87\x16\x2b\x3a\x11\xba\x30\xe5\xf5\xea\x46\xd6\x7c\x70" "\x3e\x5f\xe5\x4e\x02\x4b\x1b\x2c\xb5\xc4\x03\x05\x10\xf9\x0d\xc1\x05" "\x87\x0d\xa9\xa4\x6f\xa8\x5a\x80\xf8\xce\x4b\xc3\x65\x44\x26\xca\xf2" "\x67\x3c\x36\xae\x38\x03\x53\xcb\xe7\x2b\x99\xac\x92\xfe\x76\xaa\x96" "\x32\x30\x3e\xe4\x70\x39\x89\x9e\x4c\x7f\x39\xb7\x0e\xc8\x43\xe1\xec" "\x6d\xa6\xfc\x7a\x1b\xc9\xda\x0f\xc9\x07\x74\xb9\x6c\xf7\x4c\xde\xb5" "\xa6\x64\x1a\x19\xb5\xe3\xaf\x6d\x35\xb6\xc0\xcc\x89\x9d\x79\x77\xfa" "\x66\xb1\x2a\xd2\x06\x40\x1d\x26\x69\x9c\x85\xad\x2e\xf1\xa1\xab\xbf" "\x75\x25\xc3\x9b\x8f\xac\xe0\xd1\x79\x48\xb9\x10\x12\x12\x4d\xfd\x3e" "\x02\xa8\xc2\xd0\x5e\xd2\xe3\xef\x70\xc3\x58\x99\xc0\xca\x6a\xc6\x98" "\x01\xc3\xd0\xe1\x9f\xd4\x24\x80\x04\x4d\xf1\x66\x78\xb0\x0f\x6e\x8c" "\xa6\x7c\x9a\xf7\xfd\xc2\xdf\x64\xe5\x2b\x28\x51\x56\x37\x8f\xfe\xcd" "\xa6\xd5\xbc\xb6\xaf\xc4\x91\x9a\x30\xb9\xfb\x6f\x5d\x31\xde\x22\xc2" "\xa1\xdf\x3d\x92\x50\x54\x89\x03\x7d\x5d\xfe\xbf\x95\xd3\x11\x2e\xb3" "\x4f\x55\xcc\x5a\x15\x60\xa1\xcc\xa1\x13\x5e\xb1\xce\xfc\xc5\x5e\x6b" "\x62\x37\x85\x25\xcf\x3b\x40\x3d\xe1\xe9\xb0\xd1\x8b\x21\xb4\x0c\x71" "\x69\x2a\xab\x1b\x7d\x29\x54\xb7\xce\x16\x36\x55\x11\x23\xad\xe4\x1b" "\xb0\x9b\x1c\x8c\x06\xe2\xb7\xed\xea\xfa\x12\x6b\x18\x67\x0c\xdb\x40" "\xc8\xcc\x34\x8c\x9e\xf4\x3b\x62\x93\xb2\x4e\xf5\xfe\xe4\xb3\xe9\xc8" "\xc0\x63\xe3\x95\x52\x7e\x64\x60\xff\x11\xc1\x41\x30\xce\xef\x75\x41" "\x2e\xad\xab\xdf\xad\x80\x52\xc0\x73\x73\xf1\x52\x6b\x65\xa0\xa2\x9a" "\x54\x5f\x99\x38\xe9\x87\x85\x28\x35\x9d\x06\x63\x08\xfa\x67\x78\xfc" "\x33\x1e\x41\xce\x67\x49\x03\x93\x76\xe7\x92\x3e\x25\x8b\xd6\x4c\x50" "\x62\x85\x58\xc1\x68\x13\xd2\x8f\xb3\xae\x49\x8b\x7e\xd2\x42\xfc\xbf" "\xe9\xe4\xc9\xe5\x6f\x77\x86\x7e\xae\x45\xc5\xe2\x1f\x43\xdc\x96\x1f" "\xfe\xce\x42\x41\x8c\xc6\x7d\x33\x8b\xed\x04\x70\x8b\x7c\x74\x02\xe2" "\xe1\x7d\x23\x92\x56\xce\x98\xa0\x56\x9b\xeb\xa9\x3d\x68\x7a\x99\xe8" "\x65\x10\x8e\xbe\xaa\x2d\x35\x1c\xf6\x99\xcf\xd8\x37\xc5\x80\xd1\x1f" "\x8c\xb6\xca\x04\x59\x8f\x87\x77\xf4\x7d\x68\x8b\xc9\x9d\x58\xc6\x92" "\x46\x8c\xd3\x9c\xec\x53\x61\x53\xfa\xfb\xad\x19\xa4\x68\x65\xcf\x71" "\xf3\x04\xa7\xc2\x19\x45\x60\x31\x5a\x0d\xd7\xec\xd6\xb0\xbb\xb6\xe7" "\x6d\x1f\x81\x50\x9c\x5e\x52\xa6\x4f\x62\xb8\xa2\xe6\x0b\x85\x4d\xa2" "\xca\x5b\xef\x29\x0b\xd5\x7a\x08\xcf\xc4\xd7\x4d\xa8\x73\x25\x24\x79" "\x0a\x49\x85\xe3\xe5\x98\x0a\xa7\xe2\x81\x68\xcc\xb1\x16\xae\x15\xde" "\xfd\x86\xc2\xfe\x7e\xcf\xcb\x31\xac\x8f\xfa\xe1\xf8\x0a\xf4\x27\x82" "\x4a\xde\x0a\xcd\x5f\x1c\x8b\xe1\x04\x26\x34\xf1\x2b\x91\x0e\x76\x8c" "\x6c\x68\xbf\x65\x10\x93\x75\x3d\x06\x4a\xef\x62\x91\xcb\x4b\xee\xa4" "\xe5\x6f\x8b\x4f\xfc\xec\x8d\x95\x21\x43\x5f\x0b\xea\x15\xa3\x0b\xe7" "\xa5\x8e\x9e\x3a\x9c\xb2\x0d\x69\xd8\x9d\xb2\x84\xa5\x62\xc1\x85\x84" "\x53\xb6\x50\x3f\xec\x02\xc0\x65\x8d\x2a\x59\xdf\xbd\xae\x11\x26\x6c" "\xf9\x73\x82\x15\x64\xa8\x2f\x94\x46\xf2\x27\xb2\x50\xc6\x40\x56\xb1" "\xe8\xd9\xdd\x0b\x48\x01\x7f\xe9\x2a\xd7\xcc\xba\x17\xef\x96\x8e\xb8" "\xc6\x91\xea\x59\x48\x17\x9a\x22\x3d\xcf\x13\xe6\x0f\xef\x92\x4c\xa0" "\x28\x82\x36\xf8\x5a\x2f\xdb\x63\x0d\x98\x44\x8e\x4d\x5c\x89\x1c\x60" "\xcb\x6d\x87\x43\x4c\x12\x9f\x99\x89\x41\x7a\xa7\x8d\x72\x5f\x28\x24" "\x65\x29\x7c\x43\x60\x44\xec\x22\x1d\x65\xc1\x45\x1a\x68\x39\x47\x6e" "\x45\x17\x84\xac\x0f\x0b\xab\xd9\xe1\x69\x7c\x63\x93\x53\x4a\xb3\xb4" "\xaa\x4d\x84\x66\x7c\xc5\xb0\xa9\xdd\xde\x61\x85\x48\xbb\xc8\x3c\xfc" "\x66\x5c\xf5\x20\xe2\x07\x45\xd8\x39\xae\xe7\x9a\xee\x87\xb1\xb7\x75" "\xce\x94\x4d\x02\x41\xe4\x57\x9f\x7b\xf3\xb0\x1b\x1b\x06\xe2\x08\x2b" "\x3e\x9e\x52\x63\x11\xdd\x81\x99\x2d\x71\xee\x66\x44\x30\x90\x1a\xf7" "\xbe\x8b\x1c\xec\xb7\x0f\xed\x17\x02\xb9\x32\xa5\x5a\x56\x3d\x29\xf3" "\xb5\xc1\x1f\x8d\x7c\x47\xe8\x87\x61\xb4\x2e\x0b\x13\x2c\xe8\xd7\xf5" "\x87\x9d\x5d\x75\x4a\x0f\x57\xa6\xfc\x2e\x1e\x9f\xd4\xb7\x4a\x30\xaa" "\xdb\xe1\xf0\x32\xec\xeb\xa8\x0b\x4d\x8c\x86\x7a\x45\x08\x45\x57\xd7" "\x03\xb8\x16\x4f\x51\xae\x44\xf0\x33\x7d\xa0\x9a\x0e\x6b\x5a\xf1\xd4" "\xec\x4b\x33\xf6\x88\x55\xfb\x9a\xfa\xe7\x94\xc1\x06\xaf\x60\x79\x3f" "\x39\x6d\x02\x12\xa8\x4f\x64\x87\xe3\x91\x50\xc8\xee\x35\x30\x65\xf5" "\x01\xca\x25\x61\x41\xda\x55\xbf\xad\x14\x1b\x63\x48\x94\x47\x54\xb4" "\xb4\xfb\x12\xea\xa6\xa3\xbb\x59\x36\x50\x94\x04\x78\x32\x26\x6e\x8b" "\xd8\x51\xeb\x36\x89\x12\xf5\xbf\xdd\x66\xd8\x9a\xa5\x5c\xb4\xa1\xb5" "\xea\xe2\x5d\x08\x31\x65\xb5\x77\x9e\x92\x68\xa3\x27\x97\x8c\xcb\x9e" "\x3d\xde\xb8\xda\x47\xfb\xb4\xe9\x42\x5b\x03\x64\xc9\xa3\xe2\x09\x5d" "\xe2\xdf\x69\x7b\x00\x4b\x9d\xe8\x6f\x5e\xaf\x80\x12\xfe\x86\xcc\x95" "\x8b\xee\xd3\xe9\x9d\x4a\x93\x0e\x75\x92\x74\x7a\xe0\x7b\x5a\x4d\xa3" "\xc8\x30\xe8\x48\xfd\xee\xfe\xfc\x07\xe0\xc3\x21\x0e\x20\xae\xa5\x22" "\x71\x9f\xcf\xad\x70\xe8\xc9\x58\x4a\xe9\x28\xd5\xd4\x64\xb1\xe1\xb6" "\x55\x11\x31\x6b\x4f\x6f\xb2\xd3\x23\x88\x06\xd4\x6f\xb6\x46\x66\x35" "\xc9\x30\xc9\xee\x51\x54\x94\x90\xfa\x86\xd9\xa8\x16\x5c\xb1\xcb\xbd" "\x8d\x91\x45\x3f\xf7\xb2\xdc\x08\xbc\xab\x43\xfd\x9c\x5a\x79\x48\xae" "\x7a\xa6\x12\x9d\xc2\xe7\xcd\xa1\x16\x42\xb4\x09\xc5\x24\x13\x12\xb6" "\xf3\x8f\x99\x1b\x75\x85\x9f\x6f\x81\x42\xf3\x2c\x07\x76\x2a\xc0\x01" "\x67\x61\x89\x3a\x40\x78\xb8\x8c\x66\x45\xd5\x39\xa7\x76\x3a\xb0\x76" "\x2c\xc6\x02\x24\x56\x07\x5a\x4e\x9d\x87\x9d\x37\x6e\x7c\xd4\x6a\x01" "\xa8\x0e\x33\xfe\xfe\xf3\x5f\xfb\x21\x6f\x99\x9f\xb7\xfe\xe4\x87\x40" "\xb7\x74\x60\x9f\x15\x00\x83\x78\x08\x47\x76\x00\xfd\xeb\xb4\x3b\xd3" "\x33\x08\xe6\x32\x28\xb0\xc4\x46\x85\x1e\xbd\x8a\x82\x7e\x39\xbf\xe9" "\xb6\x6a\xcc\x87\xdf\xfd\x1f\xcc\x66\x35\x20\x20\x69\xb9\x82\xe5\x14" "\xb5\xd7\x00\xf5\xaa\x5b\xe1\xc3\xd8\xd5\xa7\xa4\x8c\x4c\xda\xda\x63" "\x8d\xbd\x42\x77\x14\x45\xda\xeb\x45\xf8\x7a\x10\x4c\x7f\x86\xc9\x19" "\xa8\x2b\x88\x5d\x2b\x18\xf1\x20\x80\xd4\xba\x99\xdf\x0a\xf7\x9e\xae" "\xe8\xb5\x52\x06\xad\xbf\x34\x19\x64\x41\x28\x32\x67\x26\xa4\x5a\xb5" "\x2d\x1d\x79\xb1\x16\xec\x4c\x5c\xab\x94\x9d\xdd\x80\x21\xe8\x18\x5d" "\x7b\x06\xbb\x0f\x4a\xb1\xf4\xfa\x8f\xeb\xc4\x03\x3b\xcc\xab\x66\x49" "\x3c\x0f\x08\x03\x9c\x38\xef\x82\x17\xab\x3e\x4e\x76\xab\xaa\xb4\x0d" "\xa1\xe5\x30\xc0\x33\xa7\xce\xf8\x0e\x9f\xb4\x6f\x3c\x3b\xad\xdc\x59" "\x8b\xfb\x3f\x40\x0e\xb0\x4d\x11\xd1\xa7\x5c\xab\xc7\x50\x40\x00\xca" "\xc6\xe0\xa6\x9c\xd4\xa8\x2b\xfa\xc6\xbf\x6b\xe7\xe1\xc8\x95\xb7\x3d" "\x48\x50\xe8\xea\xef\x6f\x84\xcb\xb9\x4e\x1c\xca\xc0\x44\xd3\xb0\xfb" "\x85\x83\x6d\xff\x52\x75\xa7\x2f\x05\xe8\xb7\x47\x12\x4f\x6d\x06\x57" "\xed\x50\x1a\x80\x8b\x84\x6e\xa5\x03\x66\xc6\x71\xa3\x6f\x15\x34\xd8" "\xef\xfb\x64\x94\x1d\xb5\x9a\x91\xe4\x62\x38\x4b\xed\x49\x1f\xab\xc4" "\x29\x2f\xa3\xe0\x19\xbd\x72\xcb\xf5\xe6\x98\xfc\xc3\xef\x80\x4c\x68" "\x39\x1a\xf2\xaf\x19\x30\xc6\x0d\x01\x97\x9a\x15\x21\x33\xde\xe3\x27" "\xef\x0b\x96\xae\x0a\xc5\xbe\x2a\x58\x20\x29\x5c\x58\x87\x5e\xc4\x81" "\x06\x48\x17\x79\xc7\xa8\x49\x52\x1d\x6b\x67\x06\xe9\x9e\x6b\xbd\x53" "\x2b\x9e\xea\x66\xc4\x04\xb2\x97\x7d\x34\x75\x70\x83\xc2\x67\xff\xcf" "\x13\x9d\x2c\xf1\x98\x15\x62\x5b\xb1\xf0\x0d\xc6\x6f\x46\xde\x7f\xa2" "\xb1\xe1\x07\xbb\x0d\x19\x50\x16\x00\x8d\x9e\xfa\xbf\x5f\x8b\x64\x18" "\xa9\x18\xee\x2a\x6d\xfa\x31\x06\xf9\x15\xb8\x5a\x8f\x29\xa0\x95\x04" "\x93\xcf\x1d\x7d\x95\x11\xb2\xd0\xfe\x72\xf9\xe2\x17\xa6\x93\xf2\xb2" "\xfb\xa0\xe1\x38\xa1\xf6\xc8\xdd\x18\xbd\x44\xd6\xe1\xdb\x0b\x5a\x4d" "\x42\x55\x54\x89\x2a\x37\x86\x21\x76\x83\x88\x13\x01\xd8\x81\xac\x4f" "\x39\x78\xb4\xca\x25\xdb\x7d\x9b\xb0\x0c\x25\xa1\xb1\x11\x92\x84\x09" "\x91\xdc\xe0\xe3\x71\xc8\x17\x9a\x28\x6b\x1a\xd9\x57\x51\x8a\x13\xa7" "\xad\x61\x8b\x29\xaa\x95\x72\x44\x8a\x7e\x31\x65\xc1\xb9\x62\x0a\xc9" "\x3e\xba\xf2\x31\xc3\x3f\x8e\x33\xc9\x17\x79\x7d\x65\x32\x09\x30\xaa" "\x5e\x8f\x6b\xe6\xd6\x10\xe1\xa1\x07\x0e\x23\x3a\xb2\x4e\xd2\x59\xeb" "\x3c\xe1\xbc\x09\x25\xef\xf6\x1a\x41\x30\x96\x0e\x28\x8a\xf2\xa4\xa2" "\x70\x93\x69\x8f\x37\xb7\x67\x34\x8a\xd5\x02\x9b\xbd\x30\x67\xdc\xe1" "\x1b\x4e\x06\xb8\x1d\xa4\x65\x75\x29\x3c\xa7\x6a\x13\xcc\xe8\xfe\xd9" "\x81\x8a\xc1\x1f\xc0\x3e\xa9\x46\x3d\xd1\xa6\x3a\x3a\xf1\x84\x9d\xe6" "\x04\xef\xe5\x70\x85\x81\x8e\x35\x15\xb6\xf4\x5f\x26\xed\x8e\xef\xdf" "\xcd\x32\x6a\x93\x26\xb8\x36\xcc\x14\x33\xd6\x21\x7c\x46\x47\xd4\x29" "\xfd\x93\xa5\xdf\x90\xb4\xbe\xdd\x63\xda\x68\x01\x87\x7d\xa2\x02\x78" "\x5d\x84\x03\x33\x23\xe8\x0b\x7e\x85\x80\xdf\xd1\x03\xba\xb2\xfd\xc1" "\x1c\x85\xf0\x9e\x51\x50\xaa\x92\xdb\xf6\x11\xa7\xca\xcc\xf9\x9a\xa0" "\x71\x30\xba\x46\x79\xc9\x29\x2f\x03\xbc\x17\xfa\x03\xfe\x55\xbd\x71" "\x39\x8f\xb2\x00\x1e\xc7\x14\x06\x43\x5f\x9b\xe6\x8e\x07\x93\x91\xf7" "\x00\x2e\x73\x43\xb6\xea\xde\xb8\x67\x5c\x73\x6e\xde\xc0\x1a\x95\x20" "\x41\x81\x5f\xf8\x8e\xaf\x16\x8e\x46\xd3\x1f\x27\x7b\x3d\x81\x4a\x47" "\x4e\x7c\x5a\x9a\xc9\x5e\x05\xae\x80\x37\x5b\x8b\xf1\xbd\xf8\xa3\x19" "\x79\x8b\xcc\xc4\xd8\x1f\xea\x55\x84\x0a\x17\x43\x44\x46\xd9\xa6\x04" "\x52\x89\x8a\x31\xa5\x42\xf8\xc3\x6a\x9d\xc6\x60\x82\x02\x37\xbc\x48" "\x5a\xc1\xac\x75\x57\x41\xba\xb7\x5e\x15\xe1\x91\x94\xac\xf7\xf1\xf7" "\x17\x17\xc3\x6e\x78\xee\xfe\x79\x84\xf8\xdc\x59\x89\x0e\x4b\xe7\x67" "\x66\x8a\xf3\x0a\x1f\xe4\x15\x08\xe5\x3e\x71\x7f\x59\x0f\x31\x7c\x1b" "\x8e\x1b\x1c\xa5\x82\xf9\x89\x96\x8f\x5c\x7c\x6a\x64\x69\x94\x64\xb7" "\xa3\x76\xbb\xdb\x56\x1d\x7e\x51\x24\x96\x02\x5c\x98\x40\xdf\x3e\x09" "\x0f\x93\x40\x6b\x2b\xc0\xcd\x58\x00\xf3\x17\xfe\x10\x88\xdd\xf5\xde" "\xee\xbc\xbd\xfd\x00\xba\x11\x16\x65\xc1\x9f\xe9\x08\xd0\x95\x1b\xca" "\x21\xa6\xd6\x21\x9e\x8a\xee\xf4\x1c\xf0\x3d\x32\xfd\xa2\xa5\x18\xc1" "\xc5\xcf\x1c\x6d\xd3\xc7\xc0\x2d\x54\x42\xf6\xe1\xba\x68\xf9\xea\x32" "\xb6\xd4\x8c\x6b\x37\x86\x90\x98\x75\xe2\x3c\xba\xab\xe5\x05\x10\xca" "\x8b\x8a\xa5\xb2\x8d\xbc\xc1\xd4\x65\xcf\xc3\xb3\x8f\xa7\xf6\xbe\xff" "\xf1\x32\x34\x6c\x58\x6e\x45\x6e\xe2\x07\xf2\x77\x02\xad\xde\x97\x2b" "\x31\xf4\x51\x5d\x6b\x88\x91\x2d\x34\xda\xc6\xd2\x23\x1c\x1e\xb9\xeb" "\x3d\x17\x59\x72\x58\x0d\x34\xe6\x8a\x8b\x92\xa8\xcd\x46\x11\x82\xcd" "\x51\xff\xad\x43\x47\x60\x32\xec\x2e\x06\xb6\x66\x7d\xbc\xfa\xa3\xcc" "\xdf\xd0\x24\x3b\x3e\xcb\xe4\xa9\xd5\xfd\x21\xcf\xf2\x5f\xe3\x1a\x2d" "\x10\x71\x5b\xd5\xe0\x71\x1b\x12\x08\xe9\x29\x88\x3f\xf5\x38\x21\x9c" "\x8c\x89\x5c\x4d\xed\xa9\x54\xc0\x32\xe7\x03\xa5\x98\x44\x01\x7c\xab" "\xa7\xf4\xbd\xbd\x21\x99\x62\x7b\x3b\xef\x6e\x1b\xde\xe9\x7a\x18\x53" "\x2c\x70\xbd\x23\xb4\xa6\x33\x3c\xe5\x61\xb6\x68\xa7\x45\x25\x9d\x8a" "\xa7\x9a\x90\xfc\x0b\xec\x2b\xa7\xdb\x17\x3b\xa5\xcd\x2c\xa9\x6f\x75" "\xc0\x77\xc8\xcb\x41\x2d\x5c\x8b\x89\x67\xd0\xf9\x19\x5f\x8f\x96\x13" "\x82\x54\x31\xe6\x3a\xa7\x24\x24\xe3\x4d\xc0\x78\x6a\x92\x91\xb4\xdc" "\x08\xca\xed\x14\xf3\x45\xc5\x29\xe6\xa0\x8e\x23\x36\xec\x87\x15\x9d" "\x43\x54\x04\x32\x24\xc7\x27\xe6\x1b\xe2\x32\xd6\xae\xed\xd3\x8d\x10" "\xea\xed\xa0\xa1\x9f\x0d\xa7\x0d\xdf\xbc\xb6\x65\xb7\x3f\x8a\xe5\xa1" "\x7f\x49\x67\x08\x8c\xf6\xbe\x49\x52\x08\xd2\x3b\x10\x13\xab\x29\xe1" "\xe7\xfc\xb0\xba\xed\x38\x40\x48\x28\x95\x05\xb3\x94\x88\x9e\x7c\xe9" "\x7b\xdc\x86\x2c\x54\x7d\x2f\x5c\xfa\x2e\x74\x66\x43\x53\xd6\x65\x33" "\xb4\x67\x46\x5c\x2e\x6f\x08\x38\xe4\xdf\x49\x03\xe2\x5d\xf9\x12\xa1" "\x94\x65\x06\xf1\xa2\xe3\x46\xc1\xf3\xc1\x97\xad\x67\xab\x2f\x3e\x59" "\xb6\xbe\x89\x8c\x97\xb1\x3a\xc2\x6a\xef\x92\x42\x11\x73\xbe\xdc\xa9" "\xdd\x27\x00\xa2\xa8\x00\x99\x96\x4f\x8a\x33\x70\xd7\xbb\x50\xd3\xea" "\xfb\x92\x38\xdc\x85\x49\x35\x46\x7e\x2b\x8a\x1c\x1e\x24\x10\xc5\x54" "\xca\x92\x4a\x42\xc7\x39\xdd\xa6\xc1\x14\x95\x73\x6e\x67\x73\xab\xbe" "\x96\x25\x33\x27\xc1\x7a\x07\xb5\x3f\x1c\x1e\xff\xc3\x68\xf2\x9b\xf5" "\xcb\x61\x51\xef\x12\xed\x7e\xbf\x53\xd3\x09\x32\xbc\xe5\xef\x18\xe8" "\x64\xbf\xf1\x4c\xc3\x1e\x87\xe5\x9a\xd4\x4f\x38\x5f\xa3\x53\x9a\xb5" "\xf7\x98\x5d\x17\x24\xab\x27\x7e\x34\x15\xca\xdc\x07\x86\xae\x37\x37" "\xd5\x92\x61\x7c\x71\x70\xb0\x29\x92\x7a\x05\x46\xc7\xac\xa8\x63\x6c" "\xbb\xc1\xa5\x29\xc9\x27\x24\xc0\x27\xfb\x20\x3b\xe6\x41\x2d\x3f\xb8" "\xd0\xb8\x45\xa0\x94\xb6\x0b\xb8\x95\xbc\xb2\x95\x54\x73\xfc\x87\xe5" "\x5b\x90\x60\xcd\xca\x2b\xdf\xc6\x1a\xe7\x23\x9c\x5c\xb7\xea\xcc\xc8" "\x6b\xd6\xf1\xcc\xab\x2a\x6a\x3d\xeb\xce\xad\xc7\x79\x63\xa4\x0c\x4f" "\xb1\x3b\x09\xda\x6f\x4a\x5e\xe9\xc5\xf3\x18\xa6\x1d\x17\xdf\x42\x9c" "\xb9\x45\xff\xbc\x3f\x6a\x2a\xb4\x1d\xea\xf0\x13\x8e\x6c\x02\xab\xa0" "\x5e\x56\x3a\x6b\xc0\x65\x96\xd6\x69\xea\x80\x96\x9f\x9a\xe0\x9c\x97" "\xc8\xfb\x2c\x6b\x93\x89\x28\x3d\x70\x48\x86\xbe\x73\x05\xc5\x1c\x47" "\x31\x6f\x55\x34\x7c\x6e\xd2\xbc\xb2\x6d\x43\x1e\xae\xee\x14\xc2\x2b" "\xf8\x30\x78\xc2\x68\x17\xf2\x03\x8c\x90\xae\x57\x6e\x1e\xd1\x53\x0d" "\xb5\xfd\x7e\x78\x48\x7e\xa0\x5a\x62\xbc\xb8\x61\x53\x3f\x8c\xae\xea" "\x89\x7a\xce\x08\x24\xe2\x49\xf9\x15\x22\x37\x4b\x10\x35\xc4\xc8\x7c" "\x67\xe7\x73\x5a\xd8\x3b\x75\xbe\xb5\x8b\xf4\xa5\xbf\x46\x41\x3d\x06" "\x92\xb9\x7f\x24\x34\xc6\xc3\x1f\x29\x9b\x51\xfa\xdf\x54\x61\x10\xbc" "\x4f\x5a\x14\x98\x06\x93\xc7\x05\x67\xae\x2d\x1e\x08\x77\x43\xd2\xeb" "\xdd\x08\xce\x47\xde\x28\xd8\x57\x6f\xb8\x18\x8f\xed\x62\x3d\xa4\x6f" "\x59\xe7\x68\x81\x40\x05\xcc\xf1\xec\xd1\x6b\x96\xfc\x5d\x09\xf9\x80" "\xe6\x2d\x43\xce\x08\x64\xb0\x25\x17\x24\x53\xc5\x18\xa8\xa5\xe3\xc1" "\x8c\x80\xb5\x43\x1a\x8a\xa4\x4a\x59\xac\x9c\x00\xa5\x27\xa4\xfe\xbf" "\x0d\x31\xff\xd7\x6d\x3a\x4e\xa0\x29\x73\xe3\x4b\x0a\xcd\x67\xd7\x30" "\x16\xd8\x22\x25\xbd\xa1\x20\x0d\xd6\x98\x80\x29\x91\x0a\xb8\x80\xe1" "\xaa\x61\x52\xde\x79\xf6\xd0\xe1\xf3\xa7\xcf\x91\x92\xd8\xd4\x0b\x38" "\x96\x1d\x9f\x8d\x74\x92\xa0\xa7\xe9\x14\x13\x61\x7e\x9c\x4a\x9b\x89" "\xcf\x08\x44\x55\x00\x98\x3d\xbc\xc5\x0e\xc4\x6f\x39\x50\x8b\xf1\x71" "\xc4\x61\xcb\x50\x62\xf0\xd5\x16\x0f\x88\xd3\x76\xd3\x15\x35\x71\xf1" "\x9b\x00\x68\x5d\xa2\xb1\x1b\xd4\x60\x86\xa2\x50\xeb\xd4\x24\xc3\xf6" "\xf0\xfc\xbf\x72\x3a\xdf\x2c\x07\x06\x92\xfa\x12\x18\x11\xc8\x18\x46" "\x9b\xc4\x3c\x39\xf7\xb7\x24\x5a\x6d\xd4\xff\xe1\x28\x38\x35\x66\x70" "\x7c\x00\x7d\xc2\xe4\x0b\xac\x4d\x79\x06\x5e\xde\xa0\x52\x7f\x1e\xc2" "\x4f\xc7\xff\xfd\x50\xbe\xe3\xe2\x43\x3a\x61\xa6\xc5\x71\x9f\xa3\xd7" "\xf5\x2c\x00\xd5\xad\x9c\x06\x36\x6d\xda\x5a\xeb\xb4\x2d\xab\x6b\x94" "\x65\xe4\xbe\x0d\x64\xfc\x27\x9b\xc0\x61\x53\x0e\x5b\x4f\xb3\x2c\xb7" "\x5c\xd7\xa7\xbc\x54\x4a\x38\x89\xd6\xdc\xe9\x53\xfa\xbb\x4e\x56\xbc" "\x9e\x6d\x12\xde\xa2\x57\x9c\x10\xc9\x6a\xbf\x08\xbd\xb1\x06\xbc\x08" "\x6d\xb4\xfe\xe9\x58\xe5\x66\xac\xd1\x08\xe3\xd3\xd5\x37\x89\x21\x70" "\x2f\xbe\x5a\x92\x52\x72\x80\x15\x4d\xd1\xd6\x4f\x07\xcb\x73\x91\xa0" "\x58\x3b\x98\x49\x20\xdd\xdd\x07\x4e\x04\xd8\x39\xfa\x49\x4f\x59\x14" "\x98\xb5\x1a\xe7\x9b\x2c\x8c\x24\x55\xf0\x2f\xb4\xed\x22\x38\xa1\xd5" "\x64\x76\xe3\xb9\x74\x98\x2f\xfd\x5e\xd4\xe1\xdc\xcd\x54\x8d\x17\x46" "\xb4\x39\x45\x30\x23\xae\x60\xb7\x1f\x69\x1b\x14\x20\x75\x59\x66\x61" "\xbb\x23\x4b\x91\x43\x7b\x97\xf2\x2d\xee\xcb\x6f\x30\x18\x15\xf2\xb1" "\x5c\xc5\xb4\x86\x47\x92\xc5\xaa\x40\x62\x31\x42\xaf\x42\x0e\x90\x83" "\x5b\x87\xd2\x28\x5c\xba\x76\xcb\xa2\xe7\x2f\x92\xda\x13\x3d\x34\xac" "\xd0\xc3\x01\xac\x81\x7d\x75\x98\x60\x32\xf1\x46\x13\x97\x8d\x69\xe3" "\xde\x4f\xbc\x30\x30\x28\x2a\x5a\x3b\x8e\xc8\x8a\xd6\xd0\xca\x42\x86" "\xda\x41\xca\x8c\x8d\xfe\x16\x51\x00\x15\x8e\x6f\x5b\xc3\xf0\x17\xec" "\x55\x95\x87\x63\x92\x66\xfe\x59\x75\xf9\x89\x44\x74\x2e\xfc\xb3\x90" "\x76\xaf\xde\xd3\x30\x9b\x48\x38\xd0\x85\x29\xcf\x75\x42\xc2\x0e\x05" "\xf3\xd2\x95\x5d\x47\x48\xef\xf8\xd0\x17\x19\xf0\xe5\xb4\x3b\x72\x8a" "\x83\x62\x8c\x3c\x79\xf3\x51\x7c\x64\x2a\x7b\x7b\x58\x18\xc5\x9e\xc3" "\x9b\x34\xb9\x65\x97\x86\x03\x6f\x24\x15\xdb\xcf\xb1\xde\x06\xd0\xff" "\x98\x08\x16\xca\x4a\x6a\x02\x6e\x77\x8a\x76\x45\xa9\xee\x34\xf4\xd2" "\xa6\x24\x2c\x85\x1a\x8b\x74\xda\x64\x58\xfd\x58\x1f\x27\x8d\x1d\x61" "\x79\x48\xdb\x32\x0c\xee\xf2\xa4\xcd\xfa\xd3\xf0\x41\x6d\xd7\x7b\xbc" "\x60\x09\xc1\x3d\x66\x11\x98\xd4\x24\x03\xd3\xa1\xea\xfe\x53\x64\x85" "\x80\x02\xda\x6f\xa3\x07\xfa\x6a\x84\x87\x41\x4c\x2b\xf9\x98\x7f\x23" "\x02\xdc\x30\x21\x2a\xc4\xa4\x28\xfd\xe6\x6f\xac\x19\x92\x6a\xf3\x6c" "\xa7\x2c\xa6\xa8\x2e\x16\x24\x57\x82\x15\x6d\x6a\xd8\xcc\xe1\x9c\x04" "\x16\xfc\x2f\xbc\x3d\x70\x1b\xf4\x67\xed\x82\xb8\x61\xe3\x58\x92\x35" "\x45\x0d\x80\xc6\xbb\x46\xed\xaf\xe8\xec\x24\x62\x0b\x74\x63\xdd\xcc" "\xd3\xb4\x65\xcc\xb9\x03\x9f\xfd\x6f\x71\x00\xb9\x25\xd6\x39\x28\xe4" "\x38\xf5\x16\x2a\x12\x2f\x4f\x02\x26\x24\xd8\x84\x60\x57\x82\x62\x51" "\xcc\x81\x9d\x8e\xf5\x8c\x78\x16\x6b\x3d\x12\xcf\xdf\x38\x6b\x35\xaa" "\x47\x9b\x0a\x4b\xa7\x2f\x7d\x71\x70\x05\xec\x9a\x4c\x75\xc0\x85\xf2" "\x10\x9f\x1f\x0f\x63\xa6\x26\x90\x4a\x4f\x36\xdb\x40\xac\xb3\x39\xc2" "\x49\x67\x44\xd0\x76\xdb\x99\x17\xed\x03\xce\x52\x70\x84\x18\x9b\x4c" "\x5f\xa2\x6a\x26\x3f\xf2\x71\xb8\x9d\xcf\x80\x6f\x34\x95\x9c\x13\x34" "\xfc\xc0\xa4\xd6\x2c\x9e\x78\x5e\xbd\x2b\xb6\x2e\xa2\x80\x95\xf0\x49" "\x1c\xde\xae\x03\x61\x04\xdf\x6f\x95\xb3\xaf\xba\xf7\x8d\x39\x6c\xc0" "\xb9\x16\x58\xa4\x9c\xcb\xf7\xaf\x56\xd3\xb7\xdb\x5d\xf5\x6b\xc1\xd4" "\xa1\xc7\xb5\x92\x46\x49\xe4\x6e\x0c\xad\x24\x43\xd0\xa8\x59\xe5\xb6" "\xf8\x01\x17\x27\x41\x7a\x57\x01\x35\xf7\x19\xe1\xa4\x66\x91\xe1\xa0" "\x01\xe0\xe4\x7f\x26\x02\xfe\x9e\x72\x4c\x3f\x83\x45\xcf\xac\x52\x8f" "\x98\x33\x51\xfc\x98\x5d\xcb\x11\x7a\xba\xb6\x43\xce\x4e\xb0\x9b\x10" "\x9c\x45\xf9\x8d\x90\x1e\x4c\xe9\x48\xf4\x05\xc8\x6d\x9b\x28\x88\xb6" "\xe3\xa5\xc5\xa0\x30\xd7\x5a\x0e\x25\x42\x52\x85\x1e\x2f\xbf\xf5\x21" "\x48\x6b\xa6\x93\xba\x84\x73\xcf\x16\x84\x64\xb1\x15\xea\x8b\xbf\x70" "\x77\xfd\x9f\x57\x8d\x43\x72\xff\x44\x34\xb5\x5c\xdf\xe7\x29\xab\xbe" "\x0c\x42\x4d\x3f\x75\x24\x1f\x53\x2a\xa8\x72\xbe\x9f\xa3\x3a\x18\xb7" "\x28\xbd\x33\x6a\x7e\x98\x76\x90\x09\xfd\x6f\xcf\x79\x9b\x32\xf0\xb6" "\x1a\x3b\xfa\x5b\x9e\x2b\x31\xfc\x61\x15\x92\xbc\xb6\x82\x77\x3f\xc7" "\xc1\x5f\xb9\x44\xe5\x04\x4a\xf5\xda\xde\x1b\xba\xa8\x06\x0c\x7b\x2d" "\xb2\x5e\xfc\xe0\x20\xc8\x36\xe6\xe6\x99\x82\x10\xe6\xe4\x73\x6f\x43" "\xd0\x44\xf8\x74\x5c\x56\x6d\xee\xa0\x80\x39\xbc\x21\x74\x16\xf2\x38" "\x91\x0c\xd6\x7e\x1a\x7b\xf5\xc4\x23\xd1\x26\x39\x3e\x59\x1a\x75\xe5" "\xb4\x0b\x92\xbd\xcf\x18\x47\x4f\xc8\x1b\x72\x7b\x77\x92\xaf\xd0\x58" "\x5a\xa5\x36\xd9\xa7\x21\x18\x95\x4c\x12\x7e\x23\xdc\xd9\xbe\x23\x30" "\x21\xfa\x6f\x8e\xb1\xb8\xc0\x00\xf0\x6a\xec\xeb\x87\xc8\x93\x16\xfc" "\x2c\x76\xba\x48\xd7\x24\x5b\x1e\xc5\x00\x6a\xa1\xfd\x8e\xab\xde\x5e" "\x7e\x8a\xd7\x1e\xf7\x6c\x4e\x0c\x7e\x52\x36\x73\xa3\xd7\x0f\xee\x01" "\x21\x35\x1a\x1e\x91\x64\xbf\x37\xe7\x9c\x59\x8a\x49\x6f\x75\x97\x2b" "\xbd\xde\x0f\x49\x27\x71\x23\x86\x07\xbd\xc2\x76\x88\xfb\x5f\xe1\x1f" "\xe6\xed\x94\xa4\x79\x29\x31\x8d\x61\x80\x78\xd0\x58\x42\x91\x34\xed" "\x87\x9b\x55\x22\x6c\xfb\xad\x4a\xcb\x25\xd0\xb9\x72\xdc\x17\xe6\xe9" "\x2e\x28\x37\xb5\x2d\xf7\xdd\x80\x36\x82\x3b\xa7\x04\xad\x23\x00\xd3" "\xfd\x16\x6d\x1c\x57\xa3\xfa\x81\x05\x6c\xdb\x3c\xa3\x2d\x00\xfe\xa9" "\xb9\xb9\x39\x6a\xcc\x9e\xe4\x56\xd3\x9a\x3d\x76\xf5\xab\x98\xa1\x51" "\xf7\x11\x61\xdf\x69\xbe\x89\xaa\x4c\x5d\x40\x6d\x87\x2a\xa3\x9a\x71" "\xb9\x2a\x74\x67\x1e\x33\x98\x16\x1f\x52\xcf\x2d\x58\x81\xef\xbf\x16" "\x72\x4d\xb6\x68\x7a\x48\xf0\xba\x63\x61\x06\x2b\xcc\xc1\x93\x26\x55" "\xdf\xb8\x9d\x21\xce\x51\x57\x35\x71\xd6\x0a\xe9\x83\xa6\x9e\xea\xec" "\xc1\x4e\x22\x80\xc1\x9e\x6a\xb7\xd4\xe0\xb6\xbe\xdb\x1a\xfd\xd5\x10" "\x4a\xcc\x5d\xd3\xa8\x28\x91\x4d\x2b\xe8\x25\xb2\x20\x9d\x7d\x95\x50" "\xce\x9a\x58\x2d\xba\x68\xe6\x62\x80\x85\x5a\x35\x07\x66\x77\x96\x78" "\x01\x0b\xe5\x50\xfc\x87\xdf\x52\xab\xff\x6c\x2b\x5a\x13\xe6\x4f\x7b" "\x2a\x76\x3a\x2d\xf2\xae\x47\xab\x02\xea\x13\x0b\x14\x6a\x8d\xa2\x34" "\x4b\x06\xa3\x26\xcc\xb5\xa8\x90\xe0\x41\x82\x10\x82\x4a\x86\x9c\xd9" "\xa6\x14\xdf\x45\x41\x40\x52\xc7\xec\x98\x9f\x62\x78\x69\xdf\xdf\x08" "\x22\xe4\x8b\x07\xf1\xb9\xad\x76\x5c\x0d\xd3\x08\x68\x8b\x93\x8d\xcc" "\x4a\x52\xac\xcf\xdd\x23\x3e\x7c\x99\x7c\xc1\xe1\x56\xb8\xd6\xa5\x76" "\x08\x7b\x11\x7f\xa9\x32\xc0\x4b\x1c\x5e\x0a\xf2\x8a\xa9\x72\xc3\x30" "\xaa\x58\x24\x92\x5e\xa9\x28\x19\xb1\xc4\x62\xfd\x85\x0e\xd4\x93\xb9" "\x2d\x2d\x89\x4f\xef\x30\x4f\xfa\x40\x5f\x5a\xad\xee\xf3\x4b\xef\x2e" "\x95\x69\x10\xa5\x14\x1e\x1a\x69\x92\x76\x09\xfe\x79\xc9\x77\xe3\x0f" "\x96\xd8\x7d\x9f\x10\x90\xf2\x37\xb9\x59\x6a\x86\x55\x16\xb5\x5a\x3e" "\xaf\xe9\xdd\xbf\x66\xea\x18\x69\x55\x96\x51\xbc\x46\x08\xbb\xee\xc4" "\x81\x10\xb5\xfe\x36\x60\x0e\x0d\xb7\xe8\x16\xd1\xaa\xe2\x60\xe3\xd0" "\xf1\x0b\x43\xfd\x5e\xdc\x59\x13\xbd\xe0\x5c\xe3\x70\x39\x16\xdd\xf6" "\xd9\x81\xb2\x44\x6d\x2b\x39\x77\x32\x9f\x57\x69\x82\x65\x95\xf2\xf1" "\xa6\x3c\x88\xf9\xae\xf3\x24\x08\xd6\x97\x78\x92\xc7\x14\x3d\xf5\xb1" "\xf4\xf6\xcf\x08\x22\x22\xc1\x1d\xac\xc5\x75\x52\xe0\x65\xa6\xa4\x1f" "\x93\x71\xc6\x02\x49\x64\x2a\xbf\x3e\xb1\xbb\x6c\x66\xba\xa1\x66\x4a" "\x56\x64\x9c\xef\x38\x4a\xd9\x84\x69\x9f\x64\xb3\x31\x7d\xba\x15\x4e" "\x91\x66\x14\xcf\xaf\x2d\x2c\xda\x90\x7f\xaf\x9b\x8e\xee\x23\x28\xb7" "\x2c\x7d\x02\x51\x08\x5c\x5b\xab\x04\x07\xec\x31\x87\xf2\x63\xb2\x84" "\x38\x98\x5f\x2b\x21\x14\x96\xe2\x54\xa9\x6a\xc3\x03\x8c\xd2\xf5\x36" "\xdb\xc7\xb3\xf9\x1c\x03\xbc\x0a\xba\x91\xf6\x36\xaf\x69\xb9\xbc\xeb" "\xa1\xce\xde\x2b\x50\x21\x20\xb0\x14\x11\xa6\x81\xe3\x72\xa3\x78\x0d" "\xe3\x5e\xba\xeb\xd0\x68\x00\xa8\x3c\xd1\x93\x48\x34\x89\x48\x6d\x5c" "\x29\x43\xb3\xdc\xcb\xe5\xd8\x8d\x45\xa9\x5d\xf2\x2d\xa2\x00\x2d\x10" "\x07\x74\x59\xb4\x21\x4c\x37\xf6\xe5\xdc\x59\x3e\x83\x6b\x83\xd1\xb1" "\xe1\xaa\x6b\xe2\x2c\x41\x27\xbb\x97\x56\x94\xfb\x75\x00\x41\x25\xbb" "\x62\x66\x66\x89\x99\x73\xd7\x03\xb8\x50\x89\x67\xc8\xbc\x43\x40\x4c" "\x8e\x7a\xb6\x90\x5a\x9e\x4a\xe0\x3d\x61\x7a\xcd\x9d\x9b\xae", 8192); *(uint64_t*)0x20000d40 = 0; *(uint64_t*)0x20000d48 = 0; *(uint64_t*)0x20000d50 = 0; *(uint64_t*)0x20000d58 = 0; *(uint64_t*)0x20000d60 = 0; *(uint64_t*)0x20000d68 = 0; *(uint64_t*)0x20000d70 = 0; *(uint64_t*)0x20000d78 = 0; *(uint64_t*)0x20000d80 = 0; *(uint64_t*)0x20000d88 = 0; *(uint64_t*)0x20000d90 = 0; *(uint64_t*)0x20000d98 = 0; *(uint64_t*)0x20000da0 = 0; *(uint64_t*)0x20000da8 = 0; *(uint64_t*)0x20000db0 = 0; *(uint64_t*)0x20000db8 = 0; syz_fuse_handle_req(r[0], 0x20009800, 0x2000, 0x20000d40); break; case 8: *(uint32_t*)0x200000c0 = 0x2c; *(uint32_t*)0x200000c4 = 6; *(uint64_t*)0x200000c8 = 0; *(uint64_t*)0x200000d0 = 1; *(uint64_t*)0x200000d8 = 0; *(uint32_t*)0x200000e0 = 3; *(uint32_t*)0x200000e4 = 0; memcpy((void*)0x200000e8, "(9\\", 3); *(uint8_t*)0x200000eb = 0; syscall(__NR_write, r[0], 0x200000c0ul, 0x2cul); 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; }