// https://syzkaller.appspot.com/bug?id=c5f9752168312917b8e70f9425c9f24374445971 // 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 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; } } #define FUSE_MIN_READ_BUFFER 8192 enum fuse_opcode { FUSE_LOOKUP = 1, FUSE_FORGET = 2, FUSE_GETATTR = 3, FUSE_SETATTR = 4, FUSE_READLINK = 5, FUSE_SYMLINK = 6, FUSE_MKNOD = 8, FUSE_MKDIR = 9, FUSE_UNLINK = 10, FUSE_RMDIR = 11, FUSE_RENAME = 12, FUSE_LINK = 13, FUSE_OPEN = 14, FUSE_READ = 15, FUSE_WRITE = 16, FUSE_STATFS = 17, FUSE_RELEASE = 18, FUSE_FSYNC = 20, FUSE_SETXATTR = 21, FUSE_GETXATTR = 22, FUSE_LISTXATTR = 23, FUSE_REMOVEXATTR = 24, FUSE_FLUSH = 25, FUSE_INIT = 26, FUSE_OPENDIR = 27, FUSE_READDIR = 28, FUSE_RELEASEDIR = 29, FUSE_FSYNCDIR = 30, FUSE_GETLK = 31, FUSE_SETLK = 32, FUSE_SETLKW = 33, FUSE_ACCESS = 34, FUSE_CREATE = 35, FUSE_INTERRUPT = 36, FUSE_BMAP = 37, FUSE_DESTROY = 38, FUSE_IOCTL = 39, FUSE_POLL = 40, FUSE_NOTIFY_REPLY = 41, FUSE_BATCH_FORGET = 42, FUSE_FALLOCATE = 43, FUSE_READDIRPLUS = 44, FUSE_RENAME2 = 45, FUSE_LSEEK = 46, FUSE_COPY_FILE_RANGE = 47, FUSE_SETUPMAPPING = 48, FUSE_REMOVEMAPPING = 49, CUSE_INIT = 4096, CUSE_INIT_BSWAP_RESERVED = 1048576, FUSE_INIT_BSWAP_RESERVED = 436207616, }; struct fuse_in_header { uint32_t len; uint32_t opcode; uint64_t unique; uint64_t nodeid; uint32_t uid; uint32_t gid; uint32_t pid; uint32_t padding; }; struct fuse_out_header { uint32_t len; uint32_t error; uint64_t unique; }; struct syz_fuse_req_out { struct fuse_out_header* init; struct fuse_out_header* lseek; struct fuse_out_header* bmap; struct fuse_out_header* poll; struct fuse_out_header* getxattr; struct fuse_out_header* lk; struct fuse_out_header* statfs; struct fuse_out_header* write; struct fuse_out_header* read; struct fuse_out_header* open; struct fuse_out_header* attr; struct fuse_out_header* entry; struct fuse_out_header* dirent; struct fuse_out_header* direntplus; struct fuse_out_header* create_open; struct fuse_out_header* ioctl; }; static int fuse_send_response(int fd, const struct fuse_in_header* in_hdr, struct fuse_out_header* out_hdr) { if (!out_hdr) { return -1; } out_hdr->unique = in_hdr->unique; if (write(fd, out_hdr, out_hdr->len) == -1) { return -1; } return 0; } static volatile long syz_fuse_handle_req(volatile long a0, volatile long a1, volatile long a2, volatile long a3) { struct syz_fuse_req_out* req_out = (struct syz_fuse_req_out*)a3; struct fuse_out_header* out_hdr = NULL; char* buf = (char*)a1; int buf_len = (int)a2; int fd = (int)a0; if (!req_out) { return -1; } if (buf_len < FUSE_MIN_READ_BUFFER) { return -1; } int ret = read(fd, buf, buf_len); if (ret == -1) { return -1; } if ((size_t)ret < sizeof(struct fuse_in_header)) { return -1; } const struct fuse_in_header* in_hdr = (const struct fuse_in_header*)buf; if (in_hdr->len > (uint32_t)ret) { return -1; } switch (in_hdr->opcode) { case FUSE_GETATTR: case FUSE_SETATTR: out_hdr = req_out->attr; break; case FUSE_LOOKUP: case FUSE_SYMLINK: case FUSE_LINK: case FUSE_MKNOD: case FUSE_MKDIR: out_hdr = req_out->entry; break; case FUSE_OPEN: case FUSE_OPENDIR: out_hdr = req_out->open; break; case FUSE_STATFS: out_hdr = req_out->statfs; break; case FUSE_RMDIR: case FUSE_RENAME: case FUSE_RENAME2: case FUSE_FALLOCATE: case FUSE_SETXATTR: case FUSE_REMOVEXATTR: case FUSE_FSYNCDIR: case FUSE_FSYNC: case FUSE_SETLKW: case FUSE_SETLK: case FUSE_ACCESS: case FUSE_FLUSH: case FUSE_RELEASE: case FUSE_RELEASEDIR: case FUSE_UNLINK: case FUSE_DESTROY: out_hdr = req_out->init; if (!out_hdr) { return -1; } out_hdr->len = sizeof(struct fuse_out_header); break; case FUSE_READ: out_hdr = req_out->read; break; case FUSE_READDIR: out_hdr = req_out->dirent; break; case FUSE_READDIRPLUS: out_hdr = req_out->direntplus; break; case FUSE_INIT: out_hdr = req_out->init; break; case FUSE_LSEEK: out_hdr = req_out->lseek; break; case FUSE_GETLK: out_hdr = req_out->lk; break; case FUSE_BMAP: out_hdr = req_out->bmap; break; case FUSE_POLL: out_hdr = req_out->poll; break; case FUSE_GETXATTR: case FUSE_LISTXATTR: out_hdr = req_out->getxattr; break; case FUSE_WRITE: case FUSE_COPY_FILE_RANGE: out_hdr = req_out->write; break; case FUSE_FORGET: case FUSE_BATCH_FORGET: return 0; case FUSE_CREATE: out_hdr = req_out->create_open; break; case FUSE_IOCTL: out_hdr = req_out->ioctl; break; default: return -1; } return fuse_send_response(fd, in_hdr, out_hdr); } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void loop(void) { int i, call, thread; for (call = 0; call < 9; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } uint64_t r[3] = {0xffffffffffffffff, 0xffffffffffffffff, 0x0}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x200001c0, "fd", 2); *(uint8_t*)0x200001c2 = 0x3d; sprintf((char*)0x200001c3, "0x%016llx", (long long)-1); *(uint8_t*)0x200001d5 = 0x2c; memcpy((void*)0x200001d6, "rootmode", 8); *(uint8_t*)0x200001de = 0x3d; sprintf((char*)0x200001df, "%023llo", (long long)0); *(uint8_t*)0x200001f6 = 0x2c; memcpy((void*)0x200001f7, "user_id", 7); *(uint8_t*)0x200001fe = 0x3d; sprintf((char*)0x200001ff, "%020llu", (long long)0); *(uint8_t*)0x20000213 = 0x2c; memcpy((void*)0x20000214, "group_id", 8); *(uint8_t*)0x2000021c = 0x3d; sprintf((char*)0x2000021d, "%020llu", (long long)0); *(uint8_t*)0x20000231 = 0x2c; *(uint8_t*)0x20000232 = 0; syscall(__NR_mount, 0ul, 0ul, 0ul, 0ul, 0x200001c0ul); break; case 1: res = syscall(__NR_socketpair, 1ul, 5ul, 0, 0x200000c0ul); if (res != -1) r[0] = *(uint32_t*)0x200000c0; break; case 2: *(uint16_t*)0x20000000 = 1; memcpy( (void*)0x20000002, "./" "file0\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000", 108); syscall(__NR_bind, r[0], 0x20000000ul, 0x6eul); break; case 3: memcpy((void*)0x20000100, "/dev/fuse\000", 10); res = syscall(__NR_openat, 0xffffffffffffff9cul, 0x20000100ul, 2ul, 0ul); if (res != -1) r[1] = res; break; case 4: memcpy((void*)0x20000140, "./file0\000", 8); memcpy((void*)0x20000040, "fuse\000", 5); memcpy((void*)0x20000180, "fd=", 3); sprintf((char*)0x20000183, "%020llu", (long long)r[1]); memcpy((void*)0x20000197, "\x2c\x72\x6f\x6f\x74\x6d\x6f\x64\x65\x3d\x30\x30\x30\x30\x30\x30" "\x30\x30\x30\x30\x30\x30\x61\x30\xfc\x2a\xef\xed\x2e\x2a\xff\x1f" "\xaa\x63\x75\x73\x65\x72\x5f\x69\x64", 41); syscall(__NR_mount, 0x20000000ul, 0x20000140ul, 0x20000040ul, 0ul, 0x20000180ul); break; case 5: memcpy((void*)0x20002f40, "./file0\000", 8); syscall(__NR_newfstatat, 0xffffffffffffff9cul, 0x20002f40ul, 0ul, 0x1000ul); break; case 6: memcpy( (void*)0x20000240, "\xeb\xfc\x32\xc3\xc0\xd3\xce\x83\x84\xee\x7c\x9f\xbd\x0d\x23\x41\xf5" "\x10\x66\x1a\x03\xe1\xf8\xea\x25\xb1\xab\xad\x29\x44\x68\xae\x15\xc4" "\x92\xc2\xe1\x26\xd6\x97\x2c\xf5\xe2\x6d\x56\xb5\xf3\x5e\x1b\x45\xf6" "\x18\x5d\xcb\x57\x73\xf9\x3a\x15\x45\x72\xf2\x01\x57\x7e\x8a\xe2\xfe" "\x16\x35\x6d\x53\xc5\xf7\xa9\xf1\x51\x87\x05\x69\x05\x7a\x88\x42\x23" "\xb2\x6c\xdd\x11\xed\x05\x00\x3a\xa0\x6f\x60\xec\xec\x87\xbd\x80\xed" "\x16\x88\x28\xb4\xa9\x12\x95\xa2\x59\xfc\x7b\xbc\x52\xf7\x00\x02\x81" "\xe1\x17\xa8\xc0\x03\x9e\x55\x7f\xb9\x78\x28\x07\x4a\x34\x20\x37\xc0" "\xec\xa5\x84\xfb\xf0\x83\xc6\x80\xa0\x2c\x66\xca\x30\x5e\xd2\x0d\x28" "\xbf\x66\x38\x13\x43\x12\x57\x09\xee\x7a\x16\x20\x5a\x04\xa2\xe5\xab" "\xcc\x68\xa7\x20\xd5\x94\x31\xbd\xf0\xa0\x14\x05\x99\x6c\x6b\xb6\x2b" "\x9e\x79\x65\x09\xbc\x4a\xb6\xce\x21\xc2\x4f\x2f\xb7\x2b\x44\xb2\xf0" "\xe7\x60\x3e\xd4\x3a\x7a\xf2\x6d\xa8\x9c\x2f\xc9\x4f\xae\x98\x21\xe6" "\x32\xfc\x1a\x98\x09\xa9\xd0\x8c\x06\x32\x68\x3f\xe7\x46\xde\xb5\x89" "\xe0\x51\x93\xfc\x76\x7d\xae\x16\xdd\xdd\x90\x29\x0b\x62\x99\x00\x89" "\xca\x39\xfb\xb3\xe8\x62\xe6\xa1\x48\xd3\xfb\xa0\xba\x5f\xac\xf1\x17" "\xbc\xa5\x20\xaf\xf8\xc9\x4b\x7f\xc2\xe3\xe6\xf4\x48\xde\xd3\xa7\xec" "\xae\xe1\x37\x6d\x7c\xfb\x14\x74\x0b\x1c\xba\x15\x5d\xe1\x8a\x21\xfd" "\x76\x1f\x98\x67\x92\x9c\x23\x79\x8d\x5e\x2c\xe7\xc1\x83\x6d\xe8\xff" "\x18\xaa\x9e\xb7\x5e\x30\x82\x09\x1f\x6b\x2a\x57\x26\xa5\x26\x67\x2b" "\xde\xde\x8e\xea\x66\x40\xfe\xd9\x04\x3a\x0c\x3d\x99\x4e\x58\x1e\xa5" "\x33\xd6\xdd\xc9\xe7\x72\x36\x2b\xa6\x4e\x41\x62\x2d\xd8\x01\x09\x56" "\xd6\x1b\xf8\xb4\xdc\x60\x6a\xf4\xe0\xf8\x09\x6b\x8d\x36\xd7\x01\x75" "\x26\x23\x63\xe7\xf8\x7f\x10\x23\xb5\x66\x8f\xbc\x52\x42\x56\xf2\xcf" "\x78\x53\xec\x09\x8f\x1d\xc2\x2a\x49\xfe\xa2\xf3\xf6\x11\xbe\xa8\x8f" "\xd3\x4d\x51\x2b\xf3\x81\x29\x77\x4f\x22\x71\x51\x96\x73\xde\x7d\x75" "\xcd\xe1\x3d\x01\x74\x3a\xa5\x15\x50\xfa\x5b\xde\xeb\xa0\xdf\x45\x2e" "\xb7\x4b\x94\x69\x40\xa1\xbf\xf8\x01\xdc\x2e\xb8\x38\x6a\x37\x9b\x62" "\xf9\x36\x86\x2a\x5e\x8e\x78\xed\x02\x3a\xda\xd4\xf5\x7d\x43\x8c\x35" "\x70\xd3\xac\xea\x2c\xd9\xd3\xe7\x54\x2d\xb0\x52\x82\xcc\x70\xb3\x8a" "\x7a\x80\x96\x24\x5a\xaf\xd4\x7d\x96\x22\xb2\x4e\xcb\x10\xff\xb4\xd0" "\xb6\x78\xb1\x73\x10\xf8\xf8\x9a\x02\x94\x53\x79\x5d\xa8\x90\x1d\x5d" "\xd7\x74\xa6\xd0\x2f\x87\x8e\x66\x71\xed\xc0\x22\x5a\x89\x18\x5e\x23" "\x6d\xd2\x57\x52\x9f\xde\xfb\x15\x6d\xec\xf8\x75\x61\xe7\x46\x92\xc5" "\x37\x8d\xe4\x39\x1d\xb3\x65\x5a\x13\xce\xbc\xc1\xc7\x17\x58\x11\xf9" "\x8c\x2d\x88\xf7\x5d\x4d\x69\x1d\xff\xcd\x95\xf6\x42\x23\xd8\xea\x27" "\xff\xad\x62\x13\xd9\xe3\xdf\xbc\xe6\x27\x7b\x01\x4e\x00\x69\x5c\x00" "\x9e\x1e\xfb\x8e\x74\x94\x9b\x7a\x94\x55\x64\x06\xf5\xf0\xb9\x28\xe0" "\xee\x03\x11\xdb\x22\x33\x16\x5d\x53\xfc\x3e\x00\x84\xeb\x01\x2e\x75" "\x6e\x61\x38\xa9\x5a\xea\x81\x67\xa1\x40\x48\x8d\xd3\x88\xaf\xa9\xb8" "\xc7\x21\x44\x3e\x90\x95\x87\xc8\xa5\xd1\x40\xc6\xa5\x63\xef\xcf\x96" "\x95\xd3\x88\xf1\x9b\x54\x6d\x16\xff\x0d\xa2\x5e\x68\x1f\x9b\x93\x27" "\x87\x62\x84\x97\xfd\xef\xf6\xf8\x0d\x51\xfd\xdc\xc0\x03\x48\x9f\x48" "\xcd\x0c\xca\x4e\xe2\x68\xa8\x09\x2c\x21\x14\xef\xa4\xde\xee\x33\x8b" "\xe6\xc0\xb7\x27\x56\xc5\x59\xa8\x4c\xd4\x47\x02\x93\x5b\xb6\x56\xcf" "\x48\xc8\xdc\x9a\x64\x43\xfa\x2e\xec\xf7\x13\x5c\x1e\xeb\x74\x91\x89" "\x1f\xab\x3e\x86\xc5\x6e\xb5\x6d\xe9\x01\xd8\xde\xed\x44\x76\x09\x70" "\x1a\x6c\x46\xd3\x35\x60\x27\xaf\xc6\x46\x46\x44\x61\xbe\xe7\x64\x58" "\xd8\xca\xe2\x4e\x6d\x5e\x50\xde\x14\x09\x0f\xa6\x55\x56\xa4\xb1\x68" "\xcc\x3d\x5f\x5e\x85\x07\x1e\xe3\x5b\x4b\xa1\x82\x55\xb3\x7b\x43\x09" "\x42\xe5\xa4\xc2\x17\xae\xdd\x70\xbd\xad\xce\x45\x8c\x00\x13\x0c\xf9" "\x5c\x72\xcf\xd0\xcb\x58\xed\x24\x7c\xab\xbf\xac\xb3\xe8\x43\x87\xe3" "\xf1\x4a\x2c\x24\xf7\xbf\xd7\x28\x9a\xb9\xce\x68\xb0\x2f\x37\xd6\xd8" "\xfc\xb3\x93\x07\xab\x2e\xaa\xf9\x5c\x1f\x76\x62\x7d\x15\x89\x20\xba" "\x7c\x11\x7c\x9f\x3a\x4e\x1a\xd7\xe0\xc1\xe4\x3d\x18\x2e\x89\xb8\x8d" "\xa6\xf1\x6a\x58\x15\x84\x42\xa8\x0d\xc8\xa8\x74\x6b\xb1\x16\x9a\x0f" "\xf8\xc5\xfb\x49\x79\x9c\xd3\x20\x16\xfd\xf0\xe6\xfa\x7c\x40\xb9\xb6" "\x08\xcb\xfe\x2e\x40\xdc\xb7\x9a\xee\x01\x17\xf9\x34\x83\x18\x50\x6f" "\x87\xf1\x56\x64\x8f\x07\x5b\x84\x2e\xe5\x53\x72\x03\xe3\x67\x30\x98" "\xc8\xdd\x2f\x80\xb4\x71\x25\xfb\x4c\x82\x14\xe4\x68\xf8\xcb\xf7\xc2" "\xa9\xa9\xeb\x00\x25\xf8\xb8\x50\xba\x0a\x7d\xd7\xd6\xe1\xac\xe1\x4a" "\x50\x72\x3f\x2c\xbc\xd5\x95\x90\xa1\xcb\x75\x88\x29\x00\x29\x75\x05" "\xc3\xc5\xc1\x8f\x80\x20\x4c\xa1\x0d\xc9\x47\x07\x95\x38\xd9\xe0\x49" "\x11\xd9\x64\x47\xb0\x64\x18\x60\x1a\xfd\xe2\xa8\x3e\x98\x45\x11\xc3" "\xe7\x50\xb7\xe4\x89\x47\x33\x45\x5b\x57\x96\x45\x17\x28\x02\x8e\xdd" "\x42\x9f\x25\xb3\x8b\x35\x59\xa1\xaf\xcb\xff\x2c\xfc\xd5\x49\x9f\x9d" "\xb9\x16\x63\x3a\xe4\xc9\xfd\xa8\x81\xbd\x61\x9e\xfc\x05\xb2\x86\x1d" "\xf2\x54\x0d\xd1\x64\x1f\xd2\x4b\xcd\x0c\xc9\x1d\x84\x27\x8f\x14\xb6" "\x6a\x7f\xb0\x9d\x12\xb7\xe2\x31\xb1\xb2\x18\xf1\xd6\x82\x87\x8a\x75" "\xb7\xf8\xc8\x01\xf3\xa4\xa3\x0b\xe0\xa2\xb1\x3b\x99\x0a\xfa\xc2\x3e" "\x6e\xe1\x6c\x90\x6d\xf6\x10\xe1\xef\x39\xd3\xde\xca\x46\xb7\x81\x16" "\xdb\x0f\x0f\x6a\x26\xaa\x7a\x84\xcb\xe5\xb3\xcf\x73\x18\x14\x2a\x73" "\xf2\xd8\x81\xe1\x70\xf5\x9e\x21\x20\x80\x59\xf0\x84\x18\x78\xcf\x2d" "\x4b\xa3\x46\x93\x84\xa4\xe3\xac\x8b\xa7\x29\xf7\xe7\x38\x95\xf3\x72" "\xa2\x9d\x4f\xaa\x61\xcd\x07\xdf\x6f\x30\x14\xc9\xe1\x64\x1c\x10\x8a" "\x83\x4a\x45\xd1\xc0\xfd\xff\xf8\x83\xfb\x2c\xcc\xab\x8a\x3d\x0a\x88" "\x57\x30\x71\x90\xd2\x65\xbf\x5e\xb3\xaa\xda\x13\x6c\xa9\x69\x9e\x7d" "\x9e\xbd\x88\x3f\x3a\x5e\x34\xfd\xaf\x3d\x5e\x9c\x10\x8b\x84\xc0\x73" "\xf4\xb9\xbd\xcf\xe0\x7e\xfd\x0c\xa4\x56\x69\x90\xd4\xa1\x03\x28\xc2" "\xb1\xb9\xe3\x91\x68\xc4\x53\xbd\x3f\x08\x30\x6d\x8e\xff\x4f\x6c\x67" "\x88\x40\xf9\x03\xb9\xd1\x4a\xc6\xa1\x11\xae\x65\x8d\xdf\x05\x9c\xf3" "\x20\x3c\xce\x12\xab\x9f\x92\x78\x8d\x23\x5d\x88\x4b\xa8\x14\xcf\x65" "\x0b\x6e\x83\x4d\x3c\xbd\xa7\xeb\xec\xf7\xc6\xd1\xb9\x69\x4b\x86\xbc" "\x7d\x19\x04\xd3\x18\xab\x63\x33\x09\xb4\x71\x21\xf5\x4e\x09\xdd\x81" "\x15\xba\x5d\xc5\xa6\x21\x5d\x37\x87\x55\x64\x80\xbe\x14\xe1\xe5\x0f" "\x7d\xd5\xdb\x24\x4d\x95\x26\xf9\xbe\x5b\xe5\xba\x7d\x7f\xae\xbd\xd9" "\xed\x4b\x52\x2a\x3d\x3b\x3c\x9c\xe2\x02\x46\xcc\x3a\x3d\x15\x87\x4c" "\x6f\xc9\x34\x8b\x16\xe5\x57\x2e\x6d\x0e\x6d\x96\xc0\xbd\x44\x39\x21" "\x33\xc9\x00\x1c\x9a\x3f\x5e\x4e\x50\x58\x56\x32\xed\x37\xab\x80\x7a" "\x5c\xf5\x9c\xa2\xb2\xfa\x06\x60\xc2\x14\xc8\xe4\x73\xf8\xb4\x34\x2e" "\xc1\xbd\x75\x30\x6c\x46\x0b\x20\x0e\xf8\xe9\xa2\x6f\xd3\xcf\x75\x26" "\x0e\xc5\xf2\x53\x99\x68\x71\x6b\xaa\x9a\x95\x3c\xc5\x70\x85\x86\x83" "\x24\x2b\x51\x88\x8e\xc2\x4c\xb9\xdb\xf4\x63\x90\x1b\x38\xa8\x98\xdf" "\x59\x55\x58\x77\x40\x51\x57\x69\x81\xc7\x8e\xce\x24\x02\xe2\xe9\x4f" "\x7b\x50\x3d\xec\xb5\x34\xf0\x00\xf0\x0b\x86\x01\x59\xb2\xd1\x83\xdc" "\x34\xd7\xb4\x2f\x14\x7d\xa9\xbb\xb5\x0a\xff\xf3\x17\x37\xea\x50\x91" "\x60\x41\x91\xb4\x0e\x37\xa9\x20\xa8\x4e\xf3\xf8\xb6\x00\x1f\x31\x59" "\xc8\xb5\xcd\x70\xdd\x20\x28\xbb\x78\xb6\x99\x62\x4c\x10\x6a\xa3\x50" "\x85\x58\x10\x91\x16\x84\xc4\x3c\x24\xc6\xd8\x0f\xe3\x93\xcd\x93\x36" "\x20\x96\x7a\x1e\xd1\xfa\x53\xa1\xcb\x4f\xc5\x34\x08\x46\x06\xee\x67" "\xc9\x48\x00\xb9\x1c\x3c\x66\x74\x5f\x8a\xe3\x41\xc2\x5e\x39\x95\x71" "\x44\xd6\x76\x8b\xf0\x4d\xc2\x22\xcf\x08\xfb\x83\x73\x94\xe2\xe9\xa2" "\xa2\xea\xf3\xd3\xe7\x9e\xd9\x38\xa1\x95\x88\x64\xbf\x8f\x4a\xe7\xec" "\x6c\x42\x14\x01\x98\xdf\x02\xdc\x55\xfc\x23\x24\x00\x40\x6e\xe2\x4b" "\xd8\x15\xfb\xb1\xcf\xb3\x31\x34\xd0\xd8\xe2\xcc\xe9\xe5\x00\xac\x73" "\x1e\x00\x01\x7d\x45\x64\x36\xa0\x6b\xbd\xd7\x07\x52\x55\x65\x44\xa1" "\x24\xd1\x9f\x64\x6a\x3f\x25\xd5\x66\xc5\x79\x00\x7d\x7f\xe2\x39\x9c" "\xd0\x89\x4a\xbd\x38\x4d\x38\xe4\x84\xbe\xc4\x09\x2e\x9e\xf2\x66\xf6" "\x78\xc3\x4c\x72\x08\xe7\xb3\xd0\xd1\x53\xc3\x91\xdc\xbf\x7e\x3b\x1c" "\x84\x3d\x02\xe3\x1f\x69\x48\x3f\xa1\x16\xbb\x00\x71\xc2\x52\x8d\x4a" "\x1d\x82\x2f\xad\x1c\xc9\xfd\xd2\x65\x0d\x1c\x10\x84\xa3\xf7\xa2\x44" "\xda\x34\xcf\x37\x2b\x40\x49\x54\x45\xf2\x14\x88\x4b\x47\xa8\x7b\x22" "\xf7\x1f\x9f\x44\x5e\xe8\x4a\x16\xca\x11\xec\x70\x96\x74\x88\x5e\x6c" "\xb7\xfd\xb3\x7d\xad\x3c\xbd\x38\x47\xfd\x76\x0d\x57\x06\xce\x3a\x84" "\xce\x82\x64\xb4\xe7\x7f\x14\x99\xde\x27\xee\x9b\xc1\x9c\x76\x5f\xfc" "\xfb\x74\x53\xb9\x26\x01\x68\xe2\xa0\x1b\xbb\x2d\xbd\x49\x40\x0a\xa7" "\x38\x13\x0f\xa1\xcb\xcb\xa2\xf4\x54\x65\x27\xd6\x62\xfe\x2c\x4c\x40" "\x10\xd6\x4f\x04\xae\x4d\xd5\x0d\xcb\xe3\xd7\x60\x8e\xe2\x18\x2f\x26" "\x5f\x4a\xd5\xe0\xcb\xae\x6f\x92\xa1\xed\x1b\x44\xe2\xd8\x93\x1e\x00" "\x97\xcf\x75\x1e\xb6\x09\x00\xf8\x2a\x5e\xda\xa5\x39\xbb\x9e\x33\x88" "\x6d\x36\x4d\x82\x07\x33\x33\xef\x48\xb1\xbe\xf2\x4a\xbe\xc0\x24\xfa" "\x09\x44\xfa\xbf\xd9\x2b\x1f\xb4\x1f\x1a\x7a\xb1\xf4\x9d\xa7\x8f\x81" "\xdc\x60\x6e\x81\x66\xb1\x0c\x5f\x12\x7b\x4c\xc6\x6f\x46\xb3\x6d\x4f" "\x81\x28\xb7\xb7\xcc\xa5\xe3\xf9\xa2\xc9\xf7\xe6\x3c\xf8\x9e\x0e\x01" "\x36\xd6\x11\x9d\xcb\x5f\x19\xa0\x08\x7d\xd3\x3d\xee\xd1\x5c\x21\xee" "\x17\x8b\x9e\xc5\xf8\xe7\x4d\xbc\x38\x56\x4a\xe9\xc2\x2e\x37\x82\xf9" "\x91\x28\xa2\x3d\xa5\x05\x6b\x6d\xa5\x34\x82\x42\x1f\x49\x95\x4a\x3c" "\xad\x4c\x9f\x79\xd1\xc0\x7d\x0f\xc5\xca\x78\x98\xac\x76\x99\x30\x09" "\xe5\x43\xd9\x7a\x39\xc1\x79\x66\x4e\x72\xa9\xcc\xca\xec\xcc\x00\x9e" "\xbd\x0f\x66\x34\x45\x3c\x0a\xe1\x3a\x29\xe6\xc6\x88\xa7\x44\xba\xef" "\xb8\xbf\x83\x54\xc0\x6d\x80\x6d\x4b\xaf\xaa\xcb\xcf\x98\x51\xa6\x73" "\x79\xa4\x2f\x09\xc4\x26\xf4\x7f\x1a\x8b\x6b\x4c\x8e\xfe\xda\xf4\x18" "\xde\xe1\x34\xb7\xef\xbe\xc3\x58\xf5\x74\x97\x80\x9f\x17\xcb\x9c\x2a" "\x61\x38\x92\xc7\xba\x48\xb0\x22\x1e\x35\x87\x28\xe6\xe6\xf2\xa9\x46" "\xaa\x23\x87\xf9\xa6\xa3\xbd\x53\x25\x6f\x80\x51\x65\x78\x53\xb2\xef" "\xfb\xea\x71\x41\x6d\x7b\x3e\x09\x3f\x31\x4c\x41\x6e\x82\xbc\x57\x50" "\xc5\xd4\xab\xad\x0d\xeb\x74\xf5\x4d\x82\x47\x2f\x37\x20\x35\x4c\x15" "\x47\xcc\x67\xc9\xc8\xd4\xae\x93\x48\x02\x04\x1c\x54\xde\x91\x7a\x76" "\x20\xb6\x99\x10\x16\xef\x15\xcb\xef\x5d\x62\x38\x32\xb2\x5b\xb5\x05" "\x2f\x84\x04\x0d\xb4\xef\xca\xe3\x3a\x11\xab\x43\xbe\x51\xf3\x50\xdd" "\xb4\x67\x0a\xe2\x76\xae\x2c\x03\x86\x08\x2a\x47\x5c\xef\xd2\xd9\x67" "\x52\x4d\x2b\x09\x82\xd0\xee\x9f\x11\x9d\x9a\xeb\x0e\x94\xcd\x9c\xed" "\x39\xb6\xfe\x08\x02\x1f\x05\xe8\xec\x87\x6e\x1e\x13\xa9\x94\x52\x83" "\x89\xe5\x31\x23\x38\x96\xca\xab\xad\xb7\x31\x6f\x10\x70\xc2\x0b\x39" "\xf1\x99\x14\xab\xce\xfc\x53\x55\x25\xcd\xae\xc6\x50\x08\xee\xb0\x1f" "\x08\x06\x4e\x08\x4a\x00\x3d\x7b\xa3\x8c\xb6\x31\xe4\x0b\xd7\xf1\xd6" "\xb8\xb6\x91\xe8\x62\xdd\x7e\x05\x11\x43\x52\xef\xa5\x03\x68\x89\xd2" "\xb4\xc3\xf8\x75\xfb\xd8\xae\x40\xc7\xc3\x07\x8d\x44\xae\x9d\x1f\x52" "\x01\x29\xf7\xfe\xc9\xdc\x2f\x5a\xcd\x7e\xd2\x03\x38\x9d\xca\x48\x4a" "\x66\x1e\x71\xd9\xc4\x31\x56\x07\x28\xec\x6f\x0b\xf7\x69\x4b\xa7\x91" "\xc5\xbe\xbc\x65\x21\x95\x3e\x7f\xef\x9c\xce\x7d\x4c\xd9\xcc\x0c\xd9" "\xf1\x63\xcd\x12\x5d\x29\xa9\xfb\x53\x7f\x3b\xf4\x7a\x82\x92\x5e\x23" "\x1b\x68\xc8\xff\x12\x34\xc2\xd7\xf4\x7a\xce\x87\x40\x0e\x6f\x3a\xfb" "\x62\x1d\xd9\x32\xad\x9f\x35\x3d\x75\x60\x32\x2a\x7b\x9e\xb4\x71\x45" "\x24\x90\x48\x3b\xfe\x31\x33\xf8\xa4\x82\x7c\x63\xcf\x02\x27\x7a\x6b" "\x0f\x30\x7d\x2f\x6c\x8e\x95\x04\x9e\xd8\x44\x34\xb0\xf5\x9f\x76\x58" "\x10\xe8\x57\x53\x94\x34\xa0\x76\xc2\x47\x2d\x24\x51\xa1\xe9\x92\xb2" "\x93\x71\x02\x4b\x24\xfc\x81\xe3\x3d\xb9\x2c\x1c\xc8\x6f\x02\x4f\x03" "\x9e\x45\x16\x11\x84\x4f\xe5\x75\x2f\xa0\xf4\xbd\xa0\x3b\x61\x4c\x1f" "\x29\x6c\xdf\xd4\xec\x2f\x7c\x06\xa4\x4c\xc6\x32\xa6\xe7\x82\x60\xd7" "\x98\x0b\x3a\x1c\x28\xa2\x3a\x41\x26\x82\xef\x9d\xdd\xdb\xa6\xb4\xa9" "\x06\x55\xc2\x86\x5e\x95\xea\xff\xaa\xdb\x0f\xb0\xc2\x0c\xae\x14\x96" "\xdc\x23\x24\x36\x1c\xe4\x1f\x9e\x4f\xa6\x8e\x8e\x9c\xf2\xa3\xe1\x5b" "\x93\x31\xd2\xbd\x40\x74\x70\x5b\xb6\x60\xf4\x11\x73\x88\x87\x18\x58" "\x14\x7b\x8f\x46\x71\x73\xa8\xfa\x46\x99\x7e\x71\xc0\x47\x03\xff\x8d" "\x86\x71\xff\xac\x03\xab\xf8\xde\xaf\x6c\xa6\x5e\xc4\xb7\xec\xa0\x68" "\xff\x46\x2c\x08\x14\xcc\x60\x0e\x18\x41\x43\x42\xf6\xf0\x09\xd5\xd0" "\xff\xe6\xe3\xe7\x9e\xc8\x76\x38\xf9\x2d\x73\x54\xd3\x5b\xb6\x49\x4e" "\xe1\xdf\xc1\xbe\x73\xa9\xb4\x61\xef\xc0\x17\xf8\xe8\x79\xa0\x37\xf4" "\x43\x13\x3f\xf8\x68\x34\xc8\x1c\x24\x68\x0a\x78\xd4\x9f\x25\xae\x18" "\xe9\xe2\xe3\x6e\xaa\x7f\x83\x98\x70\xf7\x34\x6b\x5e\xba\x74\x69\xe8" "\xe7\x4d\x39\xbc\x60\xb9\xd0\x03\x86\x5a\x30\x95\xf9\x84\xa0\x4c\x83" "\x43\x85\xdd\xa5\xd5\xdb\x64\xd7\x97\xf7\x93\x42\x6b\x1d\x08\xb2\x5a" "\x87\x42\x04\x4a\x4d\x28\x19\xd5\xc1\xcf\x34\xa3\x3c\x7e\x08\x13\x65" "\xf2\xb4\x11\x05\x6e\xe7\x88\x18\x27\x8a\x56\xfa\xed\x25\x40\x6f\x00" "\x0f\xf3\x50\x19\xe5\x97\x73\x3b\x58\x98\x9c\xa3\xe7\x0d\xf2\x64\xd6" "\x85\xc4\x0e\xc0\x25\x53\xea\x96\x30\xf9\x5b\x57\xef\x2b\x06\xb0\x36" "\x79\xf5\xf5\xd4\x24\xf8\x81\xf8\x93\x78\x77\xfd\xe9\x79\x0b\xb6\x17" "\xb6\xe1\x0c\x10\xbe\x8a\x03\x32\x48\xe3\xf9\x11\x18\x82\x23\xc6\x1a" "\xf2\x5d\xdd\x80\x75\x71\xe4\x81\xcb\x79\x6c\x2d\x02\x0c\x9c\x33\xe6" "\x55\x67\xd0\xb5\x14\x20\x39\xf9\x02\x35\x4a\x9d\x79\xc6\x96\x0b\x49" "\x8e\xc3\xec\xa3\x38\xba\xdd\xdc\xe9\x86\x5d\x7d\x17\x7b\x49\xd4\x02" "\x45\x7d\x4c\x3d\x4b\x66\xbb\x06\x12\x80\xcb\x16\xf6\xba\xe9\x7e\xd0" "\xa9\xae\x26\xab\xab\xa5\x56\xba\xe6\x97\x4d\xc6\x56\xfc\x53\xb5\x13" "\x2a\x11\x39\x8e\x3c\x46\xac\xec\xfe\xb9\x09\x61\x5e\x07\xeb\x7a\xfc" "\x26\x99\x1a\x67\xe5\xd8\x40\xc0\x85\x6f\x10\x9b\x3e\x93\x5c\x8a\xcf" "\xad\x28\x61\xd3\x0b\x79\xfc\xd0\x72\x3c\x04\x0d\x5d\xc2\x88\x87\xc6" "\x11\x90\x48\x8c\x3b\x9b\xad\x4a\x86\x18\xb9\x53\xb1\x62\x4d\x9f\x5e" "\xb7\x05\x5c\xd2\x1f\xa3\x63\xa5\xe5\x07\x31\x8e\xa5\x88\xf7\x3b\x5f" "\xfa\xbd\x7f\x7a\xab\x7f\x52\x94\x74\x76\x41\x79\xc8\xcc\xc7\x44\x11" "\x97\x26\xad\xb5\x88\xea\x4a\x58\x1a\x4f\x04\xc1\x09\x1d\xa2\x6f\xdb" "\x8f\xa4\xf7\xef\xf2\x2a\xcb\x23\x30\xf7\x0f\xf4\xb4\xcf\x65\x45\xf9" "\x0a\x25\x3a\xd0\x07\x52\x78\x3b\x37\x19\x8b\x0e\xea\x61\x2d\x51\xd4" "\x32\xfa\xd8\x33\x8e\x50\x14\x49\x68\x96\xc7\x7a\x9c\x2f\x8f\x1c\x3b" "\x67\x9b\x57\x3b\xb1\xb2\x48\xa4\x6e\xaa\x2f\x18\x3b\x85\x62\xf7\xb3" "\x4a\x6e\x63\x81\xcc\x3b\xa4\x8a\x69\x4d\xd9\x43\xc5\x0e\x46\xb9\x5b" "\x89\x8f\xa9\xf7\x37\x03\xbd\x17\xd4\xa8\xe9\xf4\xa3\xcf\x89\x1d\x69" "\xdf\x79\xc3\x97\x7f\x48\x6a\xa0\xe8\x97\x9b\xf4\x59\x3b\x9f\x7f\xf1" "\xe6\x64\x1c\x9c\xe3\xd9\xf5\x58\xf8\xb5\x62\x27\xa9\x28\x8d\xa7\xbf" "\x45\x1a\x0a\xdc\x0c\x9f\xb7\xca\x42\x6e\xaf\xa6\xdb\xd1\x8b\x9a\x26" "\x86\xd3\x0b\x7f\x28\xba\xb7\x6d\x34\x02\xb8\x97\xe8\xcf\x06\x97\x7e" "\xa8\x1e\x78\xca\xd4\x8c\x36\x04\x77\x71\x0f\x78\x9a\x85\xbf\x64\x9f" "\x9b\x0d\x36\x7a\x14\x4f\xbb\xf3\xc0\x7b\x12\xd5\x0d\x43\xa6\x70\x25" "\x8f\x87\xc9\x42\xba\xaf\xf0\x81\xa6\x3d\x62\x07\x35\x90\x23\x0b\x13" "\x08\x6c\x67\x4b\x92\x36\x9b\x4c\x1e\x86\x3e\x26\xd2\xb8\xc8\xf0\xa4" "\x94\xc2\xd9\xa3\xe2\xb5\xf8\x27\x34\x99\x24\x59\x63\xaa\xaf\x35\xee" "\x90\x1b\xbf\x1d\xad\xbd\x56\xa9\x13\x8f\xb9\xec\xa8\x57\x57\x5e\xcf" "\x94\x5f\xa7\x7e\x4a\x23\xbf\xc5\xa8\xd0\x43\x93\x38\x3a\xad\x0a\x1a" "\xd4\x6e\xfc\xd2\xc8\x9a\x95\xe3\x59\x40\xcc\xe6\x96\x2c\x65\x78\x9f" "\xfc\x4b\xd0\x9a\x02\xc2\xf4\x51\xc8\x71\xaa\x2d\x6d\x50\x40\x95\x8b" "\x22\xef\xb4\x7e\xc6\x07\xad\x35\xc9\xae\x19\x30\x27\x2f\xd5\x7b\xdc" "\x4b\xbd\xaa\xbb\x1a\x69\xde\x8b\x98\x5b\xb2\xaf\xc8\x8a\x1d\x07\xde" "\xaf\x73\x25\xd9\xf0\x93\x5a\xad\x42\xdb\x58\x1f\x6d\x99\xc5\x5e\x41" "\x62\x60\x71\x56\x0f\xf6\x45\x54\x19\xf4\x4e\xb2\xaa\x3b\x47\xb0\x3e" "\x7c\xea\x97\x65\x7f\xdd\xeb\x0d\xda\x1b\x7c\x7c\x19\x06\x05\x0d\x1c" "\x30\x2a\x9c\xd6\x56\x79\xcc\xb9\xd6\xdf\xa1\x96\xfb\x43\xa1\x41\xae" "\x47\xbf\xcc\x0d\xb5\x72\x57\x31\x34\xcb\x0e\x02\x25\xac\xbc\xaa\xcf" "\x38\x85\xfa\x62\x50\x32\x09\x4e\x80\xc0\x46\x11\xbd\x18\xd2\xfc\xaf" "\x06\x56\x14\x49\xfa\xe0\x65\xb2\xad\xaa\xfa\xe2\x7f\xbc\x6a\x51\x1b" "\xcb\xe6\x41\xaf\xd9\x08\x76\x46\x7d\xfa\xf2\x75\x31\x47\xc9\xb1\x47" "\x59\xb4\x58\x66\x05\x9b\x98\xfa\x53\x09\x01\x3b\x4c\x6b\xd3\x2f\xd5" "\x7c\xd4\x83\x5e\x12\xf2\x51\x37\xba\x90\x24\xf4\x06\x8b\x0c\x82\x41" "\x68\x8d\xeb\x31\x5a\xb2\xca\xb3\x6b\x9b\x16\x80\xfe\x39\xa0\xe4\x9a" "\x6b\x42\xaa\x2e\x96\x03\x77\x71\x27\xf5\x70\xa1\x4b\x3d\x96\x7f\x2a" "\xbe\x38\x13\xe2\xd9\xfa\x29\x3b\x6c\x50\x7c\x2c\xe0\x54\xac\xe0\x24" "\x1f\x4f\xe0\x44\x10\x43\x3c\xbc\x1d\x8f\xb5\xbc\xc5\x93\xfe\xf6\x1d" "\x75\x6d\x47\xce\xcd\xca\xc8\xb6\x53\x6b\x1d\xf4\xbf\xcb\x27\xc4\x6e" "\x07\x17\xe0\xda\xb3\x29\x5e\x93\x5a\xfd\xa1\xab\xba\xee\xc5\xee\x0e" "\x31\x27\xae\x5d\xf3\x7c\xa2\x44\x0e\x70\x2d\x2c\x52\x68\x71\xf8\xec" "\x92\x77\xaa\xda\xed\xd7\x71\xe2\x83\xa9\x10\x8a\x1a\x46\x92\x83\x61" "\xf0\xc5\x8e\x06\x0f\xaf\xf6\x27\x93\x3c\x13\x2f\xc6\x87\x6a\x87\xda" "\x58\xd5\xb4\x05\x24\x2f\xbc\x92\xc8\x1d\x98\xfd\x1f\x8a\xec\x99\x78" "\xb1\x04\xd6\xa1\xb6\x9f\x67\xfa\x01\xbd\xe9\x77\xe1\x9e\x6f\x54\x29" "\x18\xa3\x25\xe3\xfa\xeb\x26\x63\x89\x1f\x40\x38\xf8\x22\x34\x6e\xe0" "\x89\xfb\xae\x0c\xfe\x5d\x07\x0e\xda\x3a\x51\xba\x28\x99\xc6\x47\x5d" "\xba\x82\xb0\x84\x1e\x89\xae\x51\x17\x09\x94\x19\xfb\x05\x52\x49\xd9" "\x01\x11\x21\x8d\x68\xbe\x32\x81\xca\x5a\xa1\x7f\xe3\x6b\xe4\x9d\x04" "\x61\xb3\xd9\xfa\xd0\x22\x6b\xeb\xbd\x7a\xf4\xc3\x8f\x14\xc1\x87\x97" "\x90\x24\x80\xac\xad\x6c\x87\xd8\xf7\x12\x0b\x3c\x0f\x85\x02\xe2\x9e" "\x49\x5c\xc3\x50\x6b\xf9\x0a\xad\x01\x4a\x01\x83\xa9\xb7\xa4\xe2\x11" "\x61\x5a\x84\x32\x69\x18\x21\xfb\xf4\x34\x41\x20\xc0\xa3\x2d\x4f\xc3" "\xd9\x18\x77\x15\xdd\x35\x9c\x9f\x67\xcd\xc5\xa4\x4d\xe0\x52\x1b\xa4" "\xda\xcc\x16\x5a\x5d\x87\xb7\x71\x0d\xaa\xca\xed\x89\x1f\x73\xa5\x0f" "\x92\xc7\xdc\x88\xab\xf6\xbc\x96\xcd\x08\x07\xbc\x80\x29\xeb\x97\xb7" "\xa9\xc7\x0b\x08\x9d\xc0\x62\x39\x71\x74\xe8\xcc\x29\x9e\x39\x0c\xfa" "\xae\x86\xc8\x72\x4b\x97\x04\xde\x32\xc4\x3e\x9b\xac\x09\xfa\x10\x49" "\x69\x9d\xfb\x57\xb5\x28\xdf\x1e\x56\x69\xb8\xf0\x7b\x83\x32\x26\xa1" "\x43\x37\x60\x4d\x60\xd6\xdf\x85\x1d\xe5\x24\x77\xac\x92\xb0\xc6\x8a" "\x0c\x0c\xb1\x19\x7c\x0e\xbf\xd5\x94\xc6\x1c\x2a\xda\x42\x10\xc6\x63" "\x20\x5e\xf7\x3e\xd7\x49\x9e\xd1\x9e\xd1\xcf\x7e\xb4\xe2\xba\x9a\xed" "\xbe\x74\x09\x89\x28\x7b\xd9\x20\x15\xe0\x48\x6e\xea\x52\x36\x9d\x9d" "\xd6\x87\x3c\x87\x64\xc0\x20\xaa\x95\xb9\x4a\x42\x60\xbb\xd2\x60\xff" "\x4c\x59\x43\x56\x58\x76\xc1\x58\x2d\x87\x04\x70\xb7\x69\x66\x46\xee" "\x36\x6b\x01\x59\xbb\x17\x33\x28\x03\x8f\x76\xa3\xca\xe6\x28\x0a\x81" "\x77\xf5\xd6\x2d\x56\xa7\x4f\x06\x95\x62\x63\x26\x07\xf6\xc7\xb2\xbc" "\xa7\xbf\xa2\x41\x4a\x5d\x6f\x3c\xf4\xca\xfc\x49\xdc\x5e\x10\x0a\xe8" "\xad\xf9\x54\xd7\x3c\x6a\x53\x6e\x67\xc8\x64\x16\x9c\x95\x26\x8c\x62" "\xb5\x2b\x4f\x32\xa5\x02\x2a\xa3\x2a\x74\x50\x06\x0c\xda\xcb\x84\x76" "\x56\xa5\x80\x82\xf5\x74\x07\xb5\xab\xad\x8e\x64\x58\xcc\xc9\xa1\x3c" "\x12\x09\x38\x04\x7e\x1b\x98\x07\xd4\x64\x87\x32\x7a\xb9\x3d\xce\x70" "\xb1\xd2\x03\x77\x58\x1a\xec\x43\x8d\x1d\x54\x0c\xec\x79\x7f\x7d\x1d" "\x3e\xea\x43\xe6\x01\x00\x53\xca\x72\x30\xbb\x5c\x11\x1a\x50\xc9\xde" "\x13\x32\x54\x4e\xc3\xd3\x1d\x9f\xea\x7d\x2e\x27\xf7\x92\x64\x0c\xd9" "\xcb\xa1\xca\xbb\x4a\x02\x82\x9a\x74\xe2\xd3\x33\xa8\xd3\x41\x0e\xba" "\x06\xae\x51\xbf\x89\xa9\x3b\x11\x3d\x05\xbe\x08\xbd\x51\xec\xea\xb4" "\x3b\x91\x40\x7b\xe8\xe8\xd3\xb8\x18\x30\x54\x31\x6f\x7a\x71\xc0\xa9" "\x9d\xb4\x9c\x9d\xc5\x3b\xab\xa0\xa8\x7f\x68\x22\xc6\xc0\x07\x3b\xc1" "\xcd\x93\x19\x04\xa4\xfc\xbd\x3f\x34\x81\x52\xc3\xf4\x65\x92\x73\x16" "\x9e\xb4\x53\x44\x13\x41\xee\xa3\xf7\x9d\xdb\x2e\x89\x5b\x8e\x49\x41" "\xda\x5c\xcf\x8b\x79\xfb\x4f\x2c\x4b\x38\xfd\x57\x2d\xc6\x95\x35\x09" "\xdf\x7e\x04\xb1\x68\xa8\x62\x78\xa0\x5c\xa9\xc1\xe1\x8a\xa6\x4c\xd1" "\x45\x55\x11\xba\x4a\xdf\x77\x6a\x41\x46\x14\xd6\x4b\xee\x80\x9d\x73" "\xa7\xe0\x7a\x1f\x31\xdd\xe9\x37\xd9\x4b\x66\x68\x78\x50\x6e\x21\x5c" "\x85\x20\x16\x0c\xac\x9a\xc6\xba\xb8\xec\xfb\xe7\x96\x30\x5a\x77\x31" "\xe3\xde\x7e\x77\x94\x01\xb0\x17\x3b\xae\x90\x2d\xae\xb5\x90\x1a\x0d" "\x35\x1c\xb6\x39\x4f\x80\x9e\x42\xbf\x79\x47\x99\x93\xd5\x3d\x70\x37" "\x88\xd3\xcd\xf7\xac\x9a\x3a\xac\xe6\xba\x6d\x17\xe6\x04\xf0\x94\x5b" "\x53\xdb\x8a\xaa\xb3\xc6\xa4\xa0\xaa\xc5\x4c\x5f\x37\xde\x31\xab\x27" "\x66\xcb\xa3\x62\xf8\x8d\xc0\xa7\xbf\x5d\x23\x3d\xb9\xbe\x6f\xed\xb7" "\xcf\x87\x37\x97\xc3\x52\xbe\x03\xc3\x5f\x79\x8a\xdc\x6f\xdf\x49\xab" "\x7a\x69\xe7\xc2\x34\x71\x76\x65\xaf\x76\x12\xb9\xb7\x44\x1a\x5e\x35" "\x4b\x40\x70\x73\x40\x27\x84\x80\xc2\x13\x41\x9d\x9a\x0d\x75\xc9\x75" "\xd2\x7c\xd2\xf2\x06\x7e\x2b\x26\x24\xda\xa5\x09\x65\xfd\x21\x55\x9c" "\x98\xad\x19\x36\xea\xc9\x73\x6a\xd2\xe5\x48\xdd\xcf\x01\x16\xab\xf0" "\x24\x5d\x89\xe8\x0b\x30\x6c\xc8\xe5\x07\x64\x3f\x4e\xe7\x52\xcd\x21" "\x8a\x79\x2e\x6d\x5c\x49\x7a\x04\x0e\x05\xd2\xeb\x15\xa1\xcf\x1e\x5d" "\x84\xb9\x9f\x19\x92\xb0\x16\x4c\xcb\xd6\xf9\x47\x98\x68\xc6\x2e\xb0" "\x91\x65\xff\xa6\x74\x95\x22\xd8\x26\x14\xa6\x13\x23\xa4\x31\xd6\xf6" "\xe9\x68\x38\xa8\xa6\x36\x4e\xa0\xa0\x40\x92\x54\x9e\xe4\x51\xc8\xdd" "\x74\xb9\x49\x1a\x9b\x23\x3d\x90\xa0\xe1\xf7\x7d\x5f\x8c\x07\x88\xce" "\xd9\x33\xe5\x13\xd9\xf8\x28\xb7\x0d\x03\x60\x4c\xd4\x6e\x57\xd1\x65" "\x6a\xa4\x58\xaa\x04\x4c\xca\x7a\xa0\xcf\x83\x2f\x46\x8c\x29\x15\xad" "\xa1\xdc\x41\x35\xc0\x10\xb0\xd7\x41\x0d\x46\xd0\xcd\x11\x53\x23\x39" "\x5d\x7d\x7f\xb4\x1f\x04\xcc\xb0\x7a\x76\x49\xc3\xb5\xdc\x5e\xb3\xa1" "\x9c\x6d\x81\x4f\x0f\x87\xf2\x19\x73\x88\xff\x5f\x4f\xc2\xf6\x73\x6c" "\xd2\x68\x8f\x0c\xfb\x4b\x84\x39\xbc\x01\x2d\xe9\x3c\xaf\x72\x56\xa2" "\xc5\x66\xad\x74\xe0\x88\x7e\x62\xde\x2e\xf4\x2f\xf7\xa1\x87\x00\x5f" "\x36\x9f\x0a\xe2\xa4\xfb\x83\x96\x9a\x13\xdd\x20\xb1\xcc\x61\xc3\x8c" "\x48\xf0\x1c\xbc\x70\x34\xa5\x23\xb8\x89\xe6\x7f\xd5\x06\xc8\xdc\xa0" "\x9e\x1b\x47\x8e\x19\xbd\xfc\x1c\x3e\x14\xf3\x02\xe3\x7d\x52\xd6\x34" "\x9a\x60\x6e\xc6\xee\xca\x39\x2a\x1a\xd2\xf2\x18\x7a\xe0\x28\xce\xb5" "\x0a\x5d\x32\x46\x9e\xb0\x7a\xe9\x7e\x80\xc6\x7c\x88\xca\x3e\x6c\xe4" "\x99\x2f\x59\x47\x99\xfa\xd2\xdd\x0d\xd3\x12\xbb\x14\x2c\x82\xcb\xd2" "\xac\x4e\xa5\x34\x28\xc7\x59\x17\x3d\xb8\x88\xbd\xb2\xd7\xf8\x76\xea" "\x38\xd8\x0c\x2f\x46\x81\x65\xd8\xfb\x2f\x8a\xd3\x2f\xfb\xb3\xdc\x41" "\xd9\xc4\xe5\x94\x53\x99\x7a\x6b\x56\x36\x16\x01\x5c\xde\x90\xb8\xf0" "\x76\x3b\xac\x85\x6f\x83\xb9\x09\x42\xb4\x4f\x31\x91\x2a\x7f\x12\x1c" "\x44\xe2\x0f\x9a\xf1\x18\x22\x15\x68\x21\x6d\xf7\xd6\x27\x07\x49\x47" "\x8a\x8a\x13\x1b\x80\x27\x79\x29\x27\xb0\x2f\xa3\x55\xee\x28\x60\xcf" "\xd3\x24\x37\x37\xa1\x1a\xeb\x63\xe1\xd5\xee\x7b\xa7\x93\x5a\xd5\x48" "\xa2\x4c\x84\xbd\xfd\xa0\xb4\xa0\xce\x04\xa3\x0c\x95\x6c\x79\x2f\xc3" "\xed\x71\xaa\x4e\x85\x43\xe5\x17\x0e\xfa\x71\x64\x72\x0f\x7d\x6a\x02" "\x3c\x00\x13\x93\x2f\x4d\xa0\x65\x66\xcf\xc3\x4f\x82\xd3\x2c\x32\xb4" "\x26\xda\x40\xb4\xa7\xf1\x5a\xba\x74\xcb\xbe\x04\x86\x7d\x70\xc3\xbb" "\x1a\x09\x97\xdb\x1a\x93\x71\x5e\xe1\x27\x76\x9e\x4f\x5c\x3e\x60\xa0" "\xf3\x5d\x1e\x0b\xed\x92\x48\xd9\x8b\x1d\x5e\x9f\x7d\x4d\x65\x15\x0b" "\xa6\x10\xc5\x1e\x3d\x00\x83\xf0\x6e\x34\x30\x28\x64\xba\x51\x9b\x0f" "\xdc\x8e\xdd\xf4\x59\xe0\x4d\x14\xf6\xf3\x49\x3b\x4f\x05\x9c\x30\x73" "\x63\xc5\x56\x7e\x21\x3e\x04\x37\xdb\x2e\x28\xaf\x53\xc1\x46\xb8\xb5" "\x9c\x20\xb8\x78\x1a\x70\xa4\x28\x18\x54\x63\x78\xe1\x0f\x60\xe0\x81" "\x1a\xa5\xa0\xf2\x37\xaa\xc1\xb4\xbf\x4e\xfc\xab\x5d\xa8\x29\x20\x39" "\x8a\x53\xc8\xf4\x99\x26\x84\x90\x0d\x26\x54\x74\x86\x15\x7d\xaa\x4b" "\xa0\x8c\x88\x77\x5c\x68\xca\x52\x71\x09\xe2\xff\xc2\xf7\x2a\x26\x87" "\xb2\x66\xba\x35\xae\x98\x2c\x46\xb9\x9a\xf7\x64\xe1\x3f\x5f\xb0\xef" "\x7e\xd9\x2b\xb4\x5b\x13\x7b\x18\x0d\x79\x78\x0c\x18\x0e\x37\x43\xfc" "\xf2\x11\xb4\xd7\x19\x99\x98\x4a\xf0\xe8\x5e\xbc\x54\xdb\x78\x6e\xaf" "\x40\xca\x04\x91\xc0\x5e\xec\x88\x0e\x26\xd6\x08\x77\x3a\xc4\x23\x34" "\x0f\xb7\xec\x4b\x1e\x09\x72\x2c\xa4\x38\x0f\x1f\x06\x4e\x51\xb2\x2b" "\x13\xed\xd7\x55\xa1\x76\x1e\x6d\x77\xba\xf2\xfc\xad\xff\x52\xe0\x51" "\xb8\xf3\x8b\xbb\x2b\xf1\xb5\x10\x97\xd2\x7f\x5f\xa1\xf3\xfe\xbf\xd3" "\x43\x0c\x23\x0b\x64\x1a\xf2\xc1\x21\xd7\x9b\xe3\x71\xb7\xec\x4a\x5c" "\xec\x77\x96\xdb\x0c\x1b\x7c\x84\x89\xfe\x73\x01\x65\xe4\xfa\xd9\xf5" "\x93\x25\x73\xa3\x4d\x32\x2f\x7b\x92\xf6\x35\x90\x5e\x03\xc4\x33\x3f" "\x0a\x60\x24\x77\x07\x37\x00\xff\xe1\x58\xb7\xd5\x84\x3f\x21\x58\xa0" "\xa7\x08\xe8\x0e\x07\x08\xbe\xd9\x3e\xa3\x0b\xc8\x4d\x6e\x08\xd4\xd1" "\x73\x99\x3c\xf6\x8c\x0e\x73\x88\xa5\x6a\x2b\x98\x13\x42\x7e\x27\xce" "\x4b\x53\xcf\xbb\xc4\x2a\xc2\x3b\x94\xe8\x1d\xb2\xb6\xba\xda\x70\xbf" "\xe9\x05\x3d\x47\x74\x60\xa2\x0c\x5a\x4b\x93\x39\x0e\xb6\x6f\xc4\x43" "\x45\x73\x6a\x95\x4a\x6f\x24\xde\x7e\xf3\xd4\xb5\xac\x11\x9d\x5e\x4e" "\x4e\x0b\x7d\xf8\xee\x36\x55\xde\x1d\xb1\x10\xe2\x9c\xb9\x4c\x8f\xf6" "\x71\xe3\xb1\x27\xe3\xe5\xe7\xab\x13\xc0\x56\xba\xe5\xdc\xf3\xcb\x96" "\x95\x6c\x7c\x0b\x0d\x30\x9a\xf4\x28\x81\xa1\x4e\x32\x90\x87\xfe\xdd" "\x32\xfa\xd3\x46\x45\x0f\x8f\x7e\xb3\x8d\x39\xf3\x4d\x5a\x49\x5f\x15" "\x4c\x32\xcc\x55\x6d\x8b\x00\x49\x53\xac\x81\x56\xaa\x90\x61\x6c\x33" "\x52\x8d\x16\xff\x06\xd1\x1a\x73\x5b\xa0\x1a\xc1\xd0\xd1\x36\x8a\x82" "\x6c\xa4\x57\x6d\x90\x19\x6c\x5c\xa3\xf2\xa8\xc7\x02\xed\x78\xbc\xbd" "\x73\xf7\xac\xf1\x10\x07\x26\x88\x2d\x9a\x07\x5e\xd0\xe2\x62\x3b\xcf" "\x9f\xd1\x8f\xa4\xd5\x7e\x80\xee\x94\x06\x69\x76\x3d\x65\xf7\x8e\x08" "\x43\x34\x8a\xda\x73\x11\x82\xb1\x4f\xbe\x29\xea\xb6\x39\x44\x79\xdb" "\x30\x64\x1a\x99\x43\xc6\x3c\x87\x7c\x51\x1c\x72\xf0\x8e\xd7\xfc\x73" "\x34\x19\x67\xca\x36\x7e\xa6\x0d\x36\x7d\x03\xab\xbb\xab\x8d\x14\xc2" "\x64\xbb\x73\xc8\x14\xeb\xad\xf0\xd6\x0b\x7f\x36\x3f\x24\x07\x9d\x65" "\xce\xcf\x43\x3e\xef\xf5\x52\x27\xf6\xe5\x83\x2c\x8f\x45\x98\xcf\xca" "\x9f\x37\x19\x34\x3b\xbd\x9c\xf1\x11\xf6\x7b\x06\x9c\xd4\x0c\xee\xe5" "\x82\x49\xaa\x45\xc3\x72\x1e\x77\xa0\xc4\xac\x8a\x51\xcc\xca\x15\x79" "\xbf\xf3\x33\x95\x4c\x52\xaf\x37\xed\x7e\x92\x92\xfc\x42\x5a\x3e\xc6" "\xa0\x32\x97\x71\x76\xe0\x91\x44\x53\x3d\xe1\x8f\x45\x39\xa5\xe7\x65" "\xbd\x19\xfd\x89\x31\x62\xa5\x21\x0a\xa5\x2b\xec\xef\xbf\x18\xfe\x5b" "\x46\xfc\x4c\x45\x4f\x28\x0f\x52\x75\xdd\xb4\xc0\xa5\xb3\x14\x7f\x0d" "\xad\x79\x78\x86\xef\x64\xef\xe1\x89\xb2\x5c\x71\xd4\x83\xbb\x16\xc7" "\x46\xce\xa5\x24\x78\x7f\xdd\x32\x82\x93\xe3\x16\xb4\xe2\x86\x0e\xa3" "\x1b\x04\xef\x47\x55\xef\xd5\xc1\x38\x1c\x60\x57\x08\xcd\xf1\x0a\x7c" "\x1b\x60\x80\xbb\x18\xe6\x10\x9e\xc2\xf2\xbe\x3b\x6e\x88\xcf\xad\x59" "\xd8\x11\xfd\x34\xdc\xe4\x9e\x86\x3c\xe5\xb8\x94\x8a\x2b\x3d\x4d\x30" "\x7f\x61\xa1\x02\x94\x65\x0d\x2f\xb1\xa1\x9f\x7b\xa3\xaa\xc5\xff\xa4" "\xcd\xe5\x74\xb1\x6b\xc2\x26\xdd\x7b\x7b\x11\xef\xb6\xfc\xb1\xe2\x61" "\x8d\x27\xda\x89\xa1\xd1\x62\x18\xc4\x22\xc7\x5f\x98\x33\x41\x68\x21" "\xdd\xe0\x40\xfc\xc7\x87\xec\x13\xd4\xd0\xe4\x75\xca\x64\x97\xab\xea" "\x97\xfe\x4b\xd6\x35\x25\x85\xb1\x2a\xbb\x19\xc3\x37\xef\x6a\x10\xd6" "\x01\xa0\x36\xfb\x8c\xf2\x93\x20\x31\x33\x4f\x1c\xad\xa5\xbc\x1a\xf6" "\xee\x40\x23\xe9\xe8\xce\x3b\x6c\xe6\xa8\x98\x7e\xfd\xeb\x09\xc1\xa2" "\x87\x33\x7b\xd9\x00\x78\xeb\xc3\x79\x6c\xa6\x60\xdd\x50\x11\x15\x02" "\xf0\x63\x6e\x2b\x59\x93\x92\x47\xff\x2e\xae\xa0\x78\x4a\x76\xec\x5c" "\xc5\x5f\x25\x57\xd4\xc5\x9c\xb3\xd7\x7a\x6a\x6f\x32\x63\x29\xae\x49" "\xca\x6a\xdb\xcb\x38\x24\xdd\xbb\x64\x12\x3c\x02\x0e\xb1\x31\x0d\x6d" "\x44\x02\x57\x96\x38\x00\x47\x8c\x9b\xd5\x41\x53\xe2\xb8\x35\xe3\xf9" "\xad\x2d\x79\xb9\xe5\xce\x39\xc2\x0e\x75\x5f\x7a\xab\x20\x5f\x92\x1c" "\xd3\xb6\xf9\x17\xc8\xf7\x3d\x08\x51\xbf\x1b\x3e\x8a\x02\xa0\x38\x50" "\x8c\xaa\xde\x33\x49\x51\xd9\x5d\xf9\x0b\x51\xd4\x88\xa0\x55\x24\x1a" "\xe4\xd9\x5b\x50\xe0\x5d\x3b\x48\x17\x9e\x52\xec\xe7\x17\x41\x3c\x53" "\x01\x99\xd5\xfd\xa2\xae\x27\xde\x01\xe8\x2b\x21\xe8\x48\x01\x32\x90" "\xbd\x39\x42\x18\xa3\x13\x8a\x28\xca\xf3\x37\xce\x63\xad\xa9\xa3\xf2" "\x69\xb4\xaf\x07\x24\xa9\x30\x33\xfb\x26\x5d\x97\xfe\x69\xc3\xe5\x3d" "\xa0\x5e\xce\xd5\x02\x30\xfe\x2a\x79\xcc\x5f\xed\xb8\xfe\xef\x71\x1e" "\xfb\x19\xaf\x9a\x94\x5f\x0f\x3c\xea\x6e\x34\xf5\xf3\x9b\x09\x03\x53" "\x9d\x3d\x27\xb3\x4d\xa9\x65\x83\xaf\x08\x30\xc2\x51\xc7\x0d\x87\x51" "\x75\x95\x4d\x59\x66\xec\x7a\xf6\x17\x73\xbd\x5a\xe3\xb9\x5e\xd1\xd5" "\x8d\x35\x23\x52\xe4\x80\xae\x2a\xe7\x80\x09\x0b\x2f\xad\x94\x50\x05" "\xf7\x42\x8a\x65\x11\xdd\xc0\x21\x8c\x97\xfd\x78\x40\xb0\x64\xab\x27" "\x19\x61\x51\x37\x4e\x50\xcb\x39\x88\xe3\x68\x50\xf1\x7c\x0d\x6e\x72" "\xbb\xe9\xe2\x7b\x8f\xe5\xae\x2f\x88\x2f\x28\xb5\xc2\x02\xe4\xc7\x59" "\xc0\xf4\x3a\x45\x15\xca\x92\x43\xce\xf5\x13\x08\xf4\x15\x4f\xa7\x59" "\xd9\x3e\x72\xcd\xf7\xc6\x5d\x7f\xfc\xb3\x5d\xc4\x37\xc5\x1e\xe9\xc3" "\x7f\x79\xd7\x03\xbd\xf4\xe3\x2d\xc7\x69\xbe\x76\x85\x87\x4f\xe6\x88" "\x78\x9b\xfd\x54\x10\xfd\x11\x7e\x11\x0d\x8b\x5f\x81\x01\x18\xdb\x13" "\x7f\xd4\xba\xe4\x03\x3d\xce\x10\xcb\xd3\xb4\x19\x33\xb5\xbc\x66\xb4" "\xd2\xde\xcb\x57\x90\x85\xc5\xdb\xc1\x88\xf6\xcf\x3d\xec\x37\x48\x88" "\x7f\x93\xfa\x7a\x35\x04\x6b\x92\xf5\xbc\xfd\xb3\xe9\xc3\x2d\x65\xbb" "\xd8\x79\x52\x71\xfa\xe3\xe5\x9e\xbb\xca\xd4\xb7\x70\x10\x67\xf7\xc1" "\x22\x3e\xe4\x0b\xba\xbb\xc5\x88\x55\xb6\x19\x8f\x6c\x1a\xa0\xf1\x06" "\x84\x09\x49\x60\x3c\x33\xda\xb3\xe6\xb0\x6e\xd9\xc3\xd9\x10\xbb\x6e" "\x16\xc3\x1a\xa3\x2e\x5e\x98\x1b\x80\x60\xea\x91\x50\x78\xa1\x97\x28" "\x23\xd7\xad\x12\x7c\x2e\x4c\x13\x2a\x58\xdb\xde\x38\xc3\xfa\x5a\x98" "\x5d\x79\x48\xf8\x23\xc9\xf6\x78\x8f\x7f\x2c\xf4\xa3\x2d\xf8\x6a\x86" "\x2a\x7d\xf4\xb5\x20\x2b\xa0\xf7\x10\xf7\xa7\xd4\x7a\xe0\xe7\x5f\x38" "\x19\xad\x82\x82\x6a\x9e\x6d\x79\xde\x45\xfe\x5f\x3e\x32\x9f\xf7\x57" "\x41\xf7\x55\xc8\x24\x28\x64\xac\x1a\x91\xf0\xca\x3c\xf5\x7e\xbe\xc8" "\xd1\xab\xb8\xb3\xb1\xbb\x2b\x6f\x94\xe0\x0b\x16\xf8\x57\x84\x7b\x01" "\xec\x6c\x86\x72\xfb\xa5\x67\xd6\xc9\x72\xa0\xb9\x8a\x97\xeb\x76\xbe" "\x89\x1b\x2d\xae\x7e\x28\x63\x15\x90\xf1\x18\x07\x40\xf0\x62\x1a\x1f" "\xac\x56\x57\x62\x66\x4c\x00\x20\x2f\x43\x1b\xf9\xa4\x84\x59\xaf\x14" "\x13\xc7\x61\x56\xba\x45\x90\xb1\xc8\x01\xb6\xae\xc7\x61\x2e\x76\x4b" "\x83\x0c\xa1\xda\xcc\xef\xff\x71\xfc\x20\x1a\x13\xa3\xf3\xe6\x4f\x11" "\x7f\xbd\x9b\x4c\x3a\x50\x42\xf5\x94\x96\xf4\x4d\x3f\x94\xa2\x60\xae" "\x0c\xb2\xd7\x4b\x7d\x4b\xb7\x6d\x3e\x10\xef\xef\x9c\x4a\x6c\xb8\xd8" "\x1f\x5d\x86\xfc\xaa\x0c\xa7\xac\xa0\x97\xf3\x6d\x91\x06\xef\x9d\x93" "\xb4\xac\xe8\x4b\x48\x67\x55\xc2\xfb\xe8\xe2\xfe\x97\xfc\x1c\x29\x5f" "\x82\xa0\xeb\xe5\x96\x65\x2c\xfc\xc8\x2a\x04\xdd\xfa\x04\x27\xa9\xbb" "\xd2\x53\x0b\xa9\x38\xda\xc6\x4b\x7c\xed\x3e\x19\x7e\x96\x92\xcf\x5c" "\xc9\x5c\xa3\xc1\xc5\x82\xb7\xaf\x77\x7e\xf1\x4a\xf0\xbd\xdd\x93\xff" "\xe5\x3a\xb9\xde\x24\x55\x20\x94\x93\x1a\xfa\xfb\x71\xb8\x07\x9a\xac" "\xe1\x7f\x31\x32\x8a\x9a\x61\xbe\x40\xec\xcc\x4f\xd4\xd3\x7f\xf9\x5d" "\x44\xbc\xed\x6d\x3c\xe1\x83\x47\x66\x79\x63\xc6\x58\x71\x19\xd0\xa3" "\x48\x80\xd6\x9f\x34\xbb\xc7\x5b\x1d\x28\x31\x10\x0d\x3b\xe2\xe9\x8d" "\xde\xad\x8d\x13\x09\xf9\x1e\xa7\x86\x2d\x1d\xc8\xd3\xec\xe8\x22\xc4" "\x0e\x54\x55\xb5\x92\xe7\x78\x55\x91\x9e\x5f\x8a\xc2\x29\xd2\xde\xaa" "\x04\x5b\x85\xdf\x91\x8f\x01\xc2\x22\x14\x0a\x74\xb9\x99\xbe\x9e\xc4" "\xde\xa6\x0a\x2f\x4c\xcd\x4d\x84\xc7\x18\xa8\x0f\x88\x05\xd3\xfc\x6d" "\x12\xe0\x8b\x9d\x8e\x2a\xb4\x36\x36\x1a\x09\xde\x93\x1c\xcb\xea\x0d" "\x06\x62\xeb\x63\xb5\xf8\xc7\xc7\x7d\xe4\x7c\x7c\xc6\xdb\x92\xf6\x71" "\xab\x1d\x31\xe9\x59\x08\xab\x38\x6f\x57\xeb\x03\x6f\x70\x05\x50\xbc" "\x15\xed\x6d\x52\xcf\x5f\x26\xda\x61\x5d\xfd\xa8\x40\x70\xd2\x46\x2e" "\x19\x7a\x87\xa9\xd3\x3f\x37\x92\xaf\x32\x30\x6a\x7d\x2b\xf7\x97\x5e" "\x63\xed\x32\xe1\xa1\x94\x19\x16\xc0\xf6\x8f\xbf\xb6\x74\x56\x99\xa3" "\x9f\xb7\xf2\xc6\x74\x0d\x91\x37\x5c\xe4\xe4\xff\x3b\xbd\x7b\x9e\x8a" "\x17\x8e\xe5\xf9\x78\xde\x12\x24\xc9\x17\x70\xf7\xce\xfa\x07\x3e\xcf" "\x33\xbf\xed\xa0\x8e\x92\x2f\xe3\x6d\xa3\xd6\x68\x11\x34\xd3\xaa\xc8" "\x0a\x7a\x9a\xb1\x93\x75\x2c\xb1\x36\xe2\x83\xf5\x73\xac\x81\x92\x75" "\x8c\x91\xcf\x18\xc5\x17\xc0\xbc\x0a\x60\xd3\xfc\x24\xd2\xba\x11\xf3" "\x6d\x3e\xf9\x65\x1e\x60\xaf\x6b\x89\x15\x93\xb7\x3b\x8a\x2f\x98\x0a" "\xb8\x7e\xa4\x9e\x0a\xb1\xcd\x99\x87\x6d\x8d\x55\xe1\x80\x6f\x6b\x8d" "\x63\x7b\xcd\x33\xfa\x90\x46\xb6\x87\x31\x96\xb7\xcc\xb9\x7f\x9b\x02" "\xd3\x68\x07\xa0\x71\x82\x59\x3e\xb7\xa1\xd3\xd2\x46\x65\x51\x72\x50" "\x7f\x0a\x15\x9f\x10\x57\xe4\x46\xdc\x4b\x94\xa9\xfc\xf4\x8c\x45\xf8" "\x12\x79\xb6\x55\x10\x2f\xe3\x3f\xcd\x22\x91\xc7\x67\xaf\x49\x79\x68" "\x35\x6a\x78\x7b\x54\xce\xff\x07\xb7\xe0\xff\x9b\x29\x1c\x32\xf4\x5d" "\xbd\xab\x3e\x60\x2c\x74\x01\x4f\xbd\xc8\x06\xff\x17\x36\xd1\x5b\x0b" "\x01\xa6\x9f\x36\x53\x85\x0d\xed\x3b\x90\xd3\x48\x2b\x4c\x12\xad\x13" "\x1e\x18\xec\x84\xca\xee\x53\xda\x86\x95\x81\x42\xea\x3a\xc6\x43\xd1" "\xaf\xa6\xe3\xc7\x77\x96\xe2\x59\xab\x62\x57\x3d\xcb\x68\x4b\xa2\x16" "\xef\x56\x25\x30\xd7\x63\xfc\x2d\x81\xc8\x9d\xbd\x1e\x98\x43\x77\x48" "\x97\xbf\x3a\x85\x90\x6b\x4c\xa3\x2a\xb9\xb5\x03\xac\x7b\xe2\x52\x87" "\x37\x88\x82\xe8\x88\x71\x91\xc6\xe0\x8a\xcd\x35\xea\xb2\x20\xb8\x41" "\x2e\x37\x76\x63\xdc\x97\x53\x26\xb5\x5e\x8b\x3f\xc7\xc6\xb7\x2a\xcb" "\x50\x52\xdc\x4c\x05\x03\x31\x3f\x53\x9d\x2f\x30\xc5\x80\x75\x7b\xd7" "\x76\x24\xed\x70\xe4\x0f\xab\x9f\x28\x66\xa9\x92\x9c\x75\x44\x0e\xbd" "\x5f\xd9\x12\x38\xb8\x04\xad\x3f\x51\x8f\x08\x39\x37\x61\xb1\xa1\xf6" "\x28\xc4\x3a\x0e\x20\xc6\xe0\x1b\x8a\x07\x2a\xf3\xfc\x88\xa7\xec\xd7" "\xe4\x56\xaf\x6d\x1a\xd4\x48\xb2\xb0\xd1\x71\x77\x1b\xc7\x3b\xf0\xa7" "\x0b\x47\x66\x33\xc7\x41\x68\xf1\x81\xbf\x35\x21\x88\xa9\x81\x9f\x4f" "\xf1\x30\x21\x3d\x83\x2e\xf7\xb6\x2b\xb6\x45\x55\xd6\xbc\x04\xfe\x0c" "\x4f\xad\xc0\x0a\x1a\xb4\x59\xc2\x31\x8a\xbe\xaa\xa0\x84\xa2\x12\x86" "\xec\xbf\x6d\x60\x75\x36\xe9\xbb\xe8\x7c\x67\xca\xde\xbd\x41\x01\xa7" "\xd8\x4e\x2a\x66\x4f\xfc\x94\x95\xf3\x0f\x8c\x40\x5b\x0b\xd8\xaf\x3b" "\x3d\xd2\x4f\x23\x9f\xd4\xcd\xe6\xf7\x51\x80\x8e\x49\x4d\x25\x29\xf9" "\xc9\x76\x6e\x60\xab\xf3\x13\xa9\x34\x3d\x59\xc8\xe9\xe9\x99\x34\xfc" "\x1f\x9a\x8f\x94\x88\xc3\x66\x6b\x9e\x86\x19\x59\xd2\x0c\x06\x95\x47" "\xa7\xbe\x99\x9c\xe3\x8d\x13\x8c\x14\xfc\x00\xe4\x1c\x26\x02\x8c\x26" "\xc6\x6e\x1b\x31\x1b\xb9\xdc\x0e\xf1\xd8\x21\x2c\x99\xd8\xe4\x01\x5a" "\xd6\x47\x4e\x36\x59\x6c\x56\x0a\x9a\x0c\xf8\x2f\xde\x7f\xb9\x7e\x9f" "\xd8\xe1\x89\x39\x30\xea\x03\x6c\xfc\xce\x3b\xba\x48\x53\x65\x6f\xf3" "\xb6\x88\x48\xb7\x88\x54\x07\x7a\x9a\x2f\xa4\x78\xc5\x5c\x63\xe5\x9d" "\x50\x8e\xbd\x80\xdc\x8e\x6d\xbe\x74\x24\x3a\xd0\x44\xb1\xfb\x63\x34" "\x6c\x54\x75\x71\xf0\xa4\xbb\x53\xc7\x0c\x9a\xa0\x7f\x8d\x57\xc0\xb2" "\xef\xa4\x13\xba\xce\xed\xd0\x6c\x84\x6a\xe3\x65\xe4\x59\xc0\xa0\x0f" "\x08\xbb\xb2\xef\x49\x5b\xf8\xa4\x7c\xb1\x57\x3f\xda\x06\x4e\x20\xaa" "\x01\xbf\xc9\xa9\xab\x10\x84\xd9\x37\x9b\x22\xd2\xb8\x52\x89\x38\xf9" "\x9c\x96\x64\x47\x3b\xb0\x6c\x25\x7b\xb1\x25\xc1\x7d\x08\x8c\x43\x83" "\x08\x46\xfe\x25\x01\x49\x09\x30\x20\x39\xef\xb8\x4a\xe9\xd3\xe0\x11" "\xff\xbd\x94\x07\xb2\xe4\xa6\x90\x8a\x7f\x55\x84\x52\xd4\xc2\x2d\xc0" "\x6a\x21\x12\x1d\x45\x30\x9b\x34\x96\x41\xcb\xe8\xc4\xb3\xc5\xa1\x7e" "\xc8\xc8\x7e\x26\x40\xab\x8f\x3c\xc5\x67\x32\xb6\x86\x94\x28", 8192); *(uint64_t*)0x20003100 = 0x20002240; *(uint32_t*)0x20002240 = 0x50; *(uint32_t*)0x20002244 = 0; *(uint64_t*)0x20002248 = 0x7fff; *(uint32_t*)0x20002250 = 7; *(uint32_t*)0x20002254 = 0x24; *(uint32_t*)0x20002258 = 0x10000000; *(uint32_t*)0x2000225c = 0x380000; *(uint16_t*)0x20002260 = 3; *(uint16_t*)0x20002262 = 0xa71; *(uint32_t*)0x20002264 = 0; *(uint32_t*)0x20002268 = 6; *(uint16_t*)0x2000226c = 0; *(uint16_t*)0x2000226e = 0; memset((void*)0x20002270, 0, 32); *(uint64_t*)0x20003108 = 0; *(uint64_t*)0x20003110 = 0; *(uint64_t*)0x20003118 = 0; *(uint64_t*)0x20003120 = 0; *(uint64_t*)0x20003128 = 0; *(uint64_t*)0x20003130 = 0; *(uint64_t*)0x20003138 = 0; *(uint64_t*)0x20003140 = 0; *(uint64_t*)0x20003148 = 0; *(uint64_t*)0x20003150 = 0; *(uint64_t*)0x20003158 = 0; *(uint64_t*)0x20003160 = 0; *(uint64_t*)0x20003168 = 0; *(uint64_t*)0x20003170 = 0; *(uint64_t*)0x20003178 = 0; syz_fuse_handle_req(r[1], 0x20000240, 0x2000, 0x20003100); break; case 7: res = syscall(__NR_read, r[1], 0x20006b80ul, 0x2020ul); if (res != -1) r[2] = *(uint64_t*)0x20006b88; break; case 8: *(uint32_t*)0x20002a40 = 0x10; *(uint32_t*)0x20002a44 = 0; *(uint64_t*)0x20002a48 = r[2]; syscall(__NR_write, r[1], 0x20002a40ul, 0x10ul); 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; }