// https://syzkaller.appspot.com/bug?id=9971f63b830c195eb84311ca88343bed1911914a // 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 < 7; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } uint64_t r[1] = {0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x200007c0, "./file0\000", 8); syscall(__NR_mknodat, 0xffffff9c, 0x200007c0ul, 0ul, 0); break; case 1: memcpy((void*)0x20000100, "/dev/fuse\000", 10); res = syscall(__NR_openat, 0xffffffffffffff9cul, 0x20000100ul, 2ul, 0ul); if (res != -1) r[0] = res; break; case 2: 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 3: memcpy((void*)0x20000140, "./file0\000", 8); memcpy((void*)0x20000040, "fuse\000", 5); memcpy((void*)0x20000180, "fd=", 3); sprintf((char*)0x20000183, "%020llu", (long long)r[0]); 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 4: memcpy((void*)0x20000000, "./file0\000", 8); syscall(__NR_chdir, 0x20000000ul); break; case 5: memcpy((void*)0x20000180, "./file0\000", 8); syscall(__NR_newfstatat, 0xffffffffffffff9cul, 0x20000180ul, 0ul, 0ul); break; case 6: memcpy( (void*)0x20001040, "\xbf\xcc\x26\x17\xa9\xb0\x16\x93\xe3\xe5\x20\x8c\xf8\xd9\xc5\xab\xd6" "\x64\xb7\x3f\x16\x9a\x74\x1e\x92\x64\x5f\x2f\x6a\xa4\x45\x14\xea\x05" "\xcb\xf9\x72\x77\x9c\xbc\xe1\x70\x76\x05\x7d\x3c\x66\x60\x50\xd2\xca" "\x8c\x7d\xdd\x3b\x7c\x17\xe9\xff\x97\xc7\xc4\x2d\x98\xa7\x12\x97\x00" "\xff\xad\x24\x91\xc1\x97\xdb\x46\x49\x2a\xf9\x5b\xf9\x2d\x7d\x27\x30" "\x70\xc1\xa6\xb8\x83\xff\x1f\xa4\x0b\xa0\x7a\xf1\xe8\x3b\x86\x7b\xe1" "\x77\xbf\xc9\x26\xc9\xc9\xd5\x0a\x96\xa4\xdb\x89\xd7\x70\x54\x76\x2b" "\x8e\x7f\x26\x59\x54\x69\x99\xa6\x92\x02\x54\xa3\x20\x33\xa4\xbe\x82" "\x59\xa4\x9a\xee\xf3\x88\x73\xa8\x17\x59\xb5\x1e\x75\xc7\x0d\x8d\xeb" "\x74\xff\xfb\x25\xfb\x01\x03\xe2\xb5\xac\xe9\xcd\x51\xd7\x64\x3f\x62" "\xe7\xf4\x60\xb1\x93\x53\x66\x10\x41\xe5\x6c\xa5\x20\x48\x42\x3b\x19" "\xff\x0f\x53\x8a\xce\x5e\x97\x57\xad\x3f\x64\xd2\x86\xc1\x05\x5f\x94" "\x4b\x5b\x08\x29\xaf\x45\x97\x75\x1d\xaf\x7a\x35\xfd\xd7\x37\x01\x80" "\x00\x4b\x46\x96\x35\xe8\xc0\x98\x41\x22\x51\x92\x38\x07\x3f\x32\x72" "\xcc\x6e\xbb\xbe\x43\xe7\x8b\x81\x27\x5f\x92\x3d\x93\x6c\xbf\x5c\x28" "\x11\x1d\xe5\x59\xf3\xde\x07\x38\x2d\xed\xa9\x60\xc8\x5e\x18\xd4\xc6" "\xe9\xd1\x3a\x31\x66\xaa\x52\x51\x9d\x0e\xfc\xcc\x55\x86\x56\x5e\xed" "\xfa\xf7\xb9\xff\x7c\x0a\xf5\x6a\x36\x92\x59\xae\x0c\x5b\x65\xf1\x5a" "\xee\xa2\xe7\x99\x33\x91\x86\x20\x5b\xba\xa9\xcf\x0f\x63\x6d\x90\xdb" "\x0f\x64\x4c\xd4\xc1\x30\x7f\x30\x3c\x4d\x5f\x24\xa5\x46\x53\x50\xd7" "\x43\x4a\xa2\x8e\x1d\x6e\x1a\x5d\xb0\xe8\xc6\x29\x83\x72\xb8\x0f\x97" "\x9f\x16\xd9\x71\x9b\xd6\x69\x61\x8f\x13\x4e\x01\xa4\x9a\x29\xad\x36" "\xc2\x32\xe3\xaa\x42\xbc\x59\x58\x59\xbd\x91\x2f\x59\x57\x48\x75\x82" "\x62\xb3\x69\x69\x75\xab\x88\xa8\x20\x2d\x73\x1d\x7d\x3f\x80\xac\x32" "\x80\xc5\x30\x75\xbf\xa0\x26\x51\xe4\x84\xdc\x04\xb3\x1e\x8e\xdd\xcf" "\x9c\x61\xa7\xd8\x74\x5c\xda\x03\x6d\x8c\x70\xe0\xb4\x5a\x85\x41\xec" "\x63\xea\xe0\x16\x75\xdf\xa8\xc2\xb7\xd6\x2b\x2d\xd0\xdf\x29\x04\x0a" "\xf7\xf8\x7b\x0c\xe3\x71\xad\x0d\xef\x32\x49\x44\x3b\x9c\xb9\xb6\x2a" "\x17\x65\x02\x81\x6a\x74\xcc\x7f\x51\x97\xd6\x86\x7d\xb1\x9e\x62\x11" "\x2c\xe6\xa5\x7e\x51\xb5\x20\x92\x0d\x32\x75\x32\x23\x67\x01\xca\xed" "\x30\x5d\x94\xa1\xbf\xd8\xa4\x74\x3f\x2c\xce\xa5\x54\xdb\x4e\xe4\xdc" "\x59\xaa\x9e\x5c\xad\x39\x7b\xc5\x89\x6e\xf8\x56\x9e\xea\xc2\xc7\x51" "\x31\x90\x15\xf0\x4e\xcb\x9d\xe0\x59\x8c\x4b\x97\x6c\xcb\x08\x6e\x52" "\xc8\xd9\x2a\x64\x3b\x9c\x12\x69\x98\x34\x73\x96\x98\x2a\xc3\xa3\xb0" "\xaf\x57\x6e\x13\x87\x5c\x51\x7b\x13\xdb\x30\xb2\xaf\x10\x53\x61\x8b" "\x47\xec\x22\x54\x0e\xea\xf1\x2d\x55\x9f\xef\x29\xe3\x71\x6c\x6a\xf9" "\x88\x59\xde\x85\x74\x3d\xfa\x12\x37\x75\x93\x9d\x8e\x3a\xb1\xcf\xa9" "\x0b\xbd\xa9\x3e\xd1\xca\x41\x0e\xa6\xa3\xfe\x54\xcd\x9d\x0d\xa0\x49" "\xf2\xa4\xa3\x5a\xb0\xbf\xf8\xc0\xb9\xaa\x8f\x5c\xbb\xd7\x34\x83\xf1" "\x99\x4c\xb3\x01\x31\x3a\xd9\x21\x4f\x32\xc4\x74\x1c\x2a\x64\x12\x6d" "\xc9\x5c\x0b\x79\xa0\xb9\xfc\x20\x7f\x61\xac\x0c\x74\x74\xc5\x46\x61" "\xcf\xbb\x05\xb3\x78\xef\x4d\xc3\x3e\xf4\x08\x52\x58\x74\x23\xac\x0b" "\xb6\x39\xf5\x76\xbb\x51\x68\x7f\x32\x0b\x4c\x56\xbb\x4f\x05\x83\x59" "\x73\x90\x9f\x0e\x0f\x37\x14\xcd\x41\x93\xf0\xcc\x9d\xe0\x36\xa8\xaa" "\xb2\x8b\x0e\x1a\xdb\x1f\x93\x41\x47\x5f\x25\xc1\xfb\x7d\xad\xc4\x5e" "\x12\x30\xc8\x5a\x2b\x3a\x82\x71\x6a\x71\x72\xd8\x19\x18\xc8\xb2\x5d" "\x40\x96\x6d\xd6\x86\x2c\x7e\xc4\xbd\x81\x67\xe8\xa5\x63\x2f\xd9\xb2" "\x3a\xf0\x02\x4b\x9c\x12\x0c\x02\x87\x8e\xcd\x8d\xa1\xfa\xf2\xec\x76" "\x97\xc8\x05\x33\xa0\xc9\x01\x9a\xb8\x90\x8e\xcc\x98\xb7\x12\x9e\xa4" "\x3a\x89\x71\x6b\x86\x8c\x2f\x4a\x70\xd7\x67\xe6\x62\x07\xe5\x81\xe7" "\x98\x3b\xd9\x96\x72\x1a\x9a\xe4\xe7\xd2\x37\x59\xc3\xcc\xf6\xad\x55" "\x6a\x4e\x25\x4f\x41\xb7\x4b\xba\x8b\x6e\x74\xb5\x12\xb4\xac\x9e\xd0" "\xa4\xda\xab\x7b\x94\x70\x09\x50\x99\x8d\xd4\x80\x98\x85\xf3\xb0\x4b" "\xb4\x01\x27\xdf\xd0\x2a\x78\x4d\x6a\x0c\x95\x59\x42\x6f\x84\xa6\xd4" "\xdb\x78\xc5\xff\x15\x59\x8f\x08\x23\x26\x3a\x6b\x6c\x20\x23\x08\x45" "\x22\x19\x7c\xef\x4e\x91\x5e\x7e\x67\xa2\x83\x9c\xb7\x67\xcc\xf3\x2f" "\xdc\xe4\xba\xbb\x62\x66\xe2\x7f\x92\x37\x70\x44\xab\x8a\x4e\x37\xe1" "\x37\x39\x1c\x95\xc7\xc6\xf0\xf2\x5d\x68\xa1\x3e\x14\x8a\x57\xcd\xee" "\xc7\x0f\x91\x4e\x33\x4c\x80\xc2\xd7\x7b\x80\xce\xb9\x6f\xb8\x6f\xf8" "\x04\xfb\x38\xc0\x3b\x83\x55\x92\x0d\xc1\x3f\x23\x4d\x63\x11\xac\x67" "\x4a\xd9\xdc\xf2\x9f\xb7\x23\x46\x60\xd5\x3d\xf5\x5e\x5d\x25\x85\x38" "\xba\xed\x33\x36\xe7\x9b\x1b\x37\xcc\xef\xb3\x5f\x3c\x03\xf8\xde\x28" "\x3d\xe9\x58\x25\xac\xb2\x59\x4e\xa3\xe6\x86\x71\xdf\x9d\xde\x3b\xbc" "\x24\xe7\xfd\xf1\x7e\xe6\x56\x47\x9e\x40\x45\xf7\xa5\x07\xfc\x74\x56" "\xeb\x63\x48\x57\xca\x76\x50\x7f\x4c\x56\xf2\x9f\xf8\x7e\x5d\x91\xf0" "\x59\x5b\x1b\x7f\x9e\xfc\xbe\x53\xb2\x72\xa2\x55\x16\xc0\x9c\x87\x41" "\xc0\x3d\xaf\x18\xc2\x41\xc0\xee\xc0\x36\xb7\x13\xb2\x6e\x6b\x52\x5b" "\x8f\xe6\x14\xae\xbd\x3a\x0e\xe9\xa4\x4e\x35\xc6\xe7\xa3\xca\x9c\xec" "\x9c\x41\xbb\x05\x08\xe0\x08\x75\x1c\xa2\xfc\x26\x49\x71\xaf\x58\xeb" "\xe7\xc7\x6a\xc0\x14\x44\xc0\x11\x78\x2e\xb0\x46\x08\x99\xde\x98\x2d" "\x30\x2c\xf3\xd8\xda\x45\x0b\x3e\x18\x77\x88\xc6\xb2\x58\x42\x77\x16" "\x2f\x13\x46\xd2\x8f\x3e\xba\x42\xef\xd4\x0c\x7c\x24\x11\x45\x52\x67" "\x6d\xd6\xf7\xf1\x31\xf5\x04\x70\xba\x43\x06\x1a\x50\x69\x33\x8c\x08" "\xac\x78\x47\xc3\x39\xc5\x1a\xbe\x8f\x6a\x08\xea\x30\xb9\x2e\xb2\x7e" "\xad\xc0\xd0\x4b\xf9\xc3\xa9\x3b\x99\x0b\xff\x72\x68\x05\x22\xb9\xa0" "\x33\xdd\x1d\x87\xf3\xff\xf7\x72\xbc\x71\xd4\xad\xed\xa9\x6e\x8b\x4c" "\x21\x47\xf9\x5b\x53\x4c\xc4\x98\xbb\x25\x1c\x9e\xc4\x19\x63\xd8\xfd" "\x27\x08\xb0\x72\x2b\xef\xee\x73\xab\xef\x9c\xbf\x15\x75\xf8\x6f\x99" "\x79\xa5\x68\x8b\x30\xf9\x08\x15\x9d\xa9\x6a\xdf\xe4\x6f\x3d\xed\x4b" "\xf4\x39\xb5\x3f\x84\x6e\xb3\xf4\x28\xd5\xe9\xef\xaa\x30\x16\x17\x50" "\x76\x7e\xa5\x90\xb6\xf0\x38\x4c\xfc\xf9\x1b\x50\xb2\x28\x47\xb7\xbc" "\x2b\xdc\xcd\x85\xf0\x10\xd5\xd8\x6b\x7a\x25\x00\x95\xac\x2e\x73\x0d" "\x6e\x3e\x01\x6c\x9a\x29\x29\x65\x52\xef\x0f\x6a\x4d\xa2\x70\xb7\xef" "\x6d\x9b\xe8\x9b\x3d\x8a\xc8\xaf\xe3\x97\x3a\xac\x5d\xaf\xa8\xfd\x3d" "\xb6\x9e\xdc\x73\x95\x96\xac\xa0\x2d\x2e\x41\xa0\x61\xd2\xe3\x1b\xdf" "\x78\x17\x12\xdb\x98\x7c\x2a\x23\x19\x5e\xaf\x97\xdf\x43\x72\x74\x0b" "\x48\xcb\x11\xdb\xab\x12\x9f\xcf\x0b\x0f\x24\xde\x31\x00\x7e\x92\xb9" "\xce\x7a\xcd\xd1\x40\x03\xf3\xcd\xf7\x9c\x72\xdd\x20\xff\xbc\xc1\xe7" "\xd8\x77\x27\x90\x7f\x05\x76\x9c\xf6\xae\xf4\x52\xcf\x51\x90\x13\x5c" "\x32\x25\xc6\xb1\xd0\xce\x1e\x5d\x2e\x14\x10\xdc\xc6\xa8\x7e\x2d\xc7" "\xd7\x3c\xc8\xf3\x71\x34\x2e\x15\x5c\xbc\x13\x44\x94\x81\x82\x12\x08" "\x32\x92\x5b\x84\x2a\x76\x9c\xaf\xd9\x89\x65\x03\x89\xd1\x64\x29\xed" "\xb3\x03\xc6\x8b\x93\xc4\x90\x6f\x22\x09\x5d\xfe\xd5\xfd\x35\xf8\x9f" "\xc4\x18\xfa\x0e\xda\xcc\x2d\x02\xfe\x03\xbd\x8a\x86\x25\x07\x47\xa3" "\xe6\xf9\x67\x3f\x06\xb1\xc8\xc2\x84\x56\x18\x62\xe3\xe0\xa8\xfd\x28" "\xce\x49\xcb\xc3\x00\xc4\x92\x01\x57\x39\x81\x50\x3a\x84\x0d\x09\xb6" "\x07\x99\xc4\x06\x65\xf3\xe5\x96\xa9\x21\x7e\x53\x0b\x9f\x5c\x7e\x9f" "\x58\x46\x13\x99\x75\xa3\x6f\x11\xdb\x64\x58\x4d\x3d\x7e\x04\x53\x1f" "\xc0\xc8\x8d\xa5\x53\x20\x9b\x09\x03\x31\x2b\xcb\x8e\x35\xa0\x62\x35" "\xd5\xc4\xe3\x87\xdc\x82\x82\x6d\xb7\xe0\x0c\x91\x97\xc0\xf8\x00\xc8" "\xb3\x06\x1d\x28\xca\x88\x36\xa4\x1f\x8b\xbf\x31\xf9\xbc\xee\x62\xb9" "\xdb\x37\x6a\xc4\x4e\x3a\xd1\x40\xe3\xb6\xe5\xf1\x57\x1c\xf3\x8b\x36" "\x4c\x08\xba\xd1\x11\x62\x25\x51\x3d\x76\x61\x80\x6d\x17\x15\x2d\x4f" "\xf4\xdd\x64\x71\x1f\x76\xc9\xda\x71\xc1\x39\x5f\x7a\x62\xba\xc1\xc9" "\xc7\xe0\xed\x43\x32\x7b\x2c\xc0\x0e\xa6\x06\xe0\x3a\x96\xbc\x51\x28" "\xa0\xf3\x36\x3e\xdf\x80\x15\x27\xf6\x0c\xad\x3e\x0d\xf2\x9c\x57\x08" "\x0d\xe3\x7b\xe1\x6a\xf9\xfb\xe1\x6e\x9f\x34\x2a\x74\xa8\xc7\x54\xa1" "\x46\xed\xd4\x4b\x58\x37\xf2\xc1\xc0\x1e\xdc\xcc\x70\x60\xc8\x55\x5b" "\xe3\xb7\x74\x81\xcf\x99\xde\xe0\xd8\x56\x96\x65\xaa\x4e\x45\xf9\x31" "\x64\xde\xd6\x8a\x79\xe3\xb7\x5d\xbc\x2d\xb5\x3b\x38\x47\xf5\x52\x41" "\x66\x8f\x35\x00\x4b\x06\x24\x30\xc8\xa7\x0f\xb9\x96\xc0\xfd\x30\xf0" "\x28\xc5\xbb\x88\x35\xd5\x71\x7f\xab\xc5\xc4\xce\x71\x81\x7d\x68\x5d" "\x02\xcc\x32\x80\x2c\x82\x91\xa9\xaf\x0c\xfa\x7b\x7b\x13\x50\xcf\xaa" "\x8e\x46\xba\xbf\x88\x11\x62\x84\x87\xd4\xd3\xf1\xc6\xe2\xe7\x90\x84" "\x19\xc8\xdd\x2b\x4f\xbd\xff\x7f\x79\x40\x1e\x76\xbf\xc8\xeb\xdf\xe7" "\xa4\x89\xb8\x0b\x5c\xc5\x72\x2d\x9e\xcd\xf7\x5c\x07\x15\x66\x88\xb6" "\xb8\xeb\x52\x19\x21\xe5\xd9\xe8\xcd\x67\x42\x7c\x5c\xd6\x8a\x74\x53" "\xc9\xb1\x0f\xd5\x3e\x73\x3b\x66\xed\x11\x29\xf3\x60\x96\x1e\x60\x25" "\x60\x76\x6d\x0c\xc0\x21\xcd\x73\xf4\xae\x2d\x51\xee\x09\xff\xb0\x6a" "\xda\xbc\x8c\x48\x09\x5a\x22\x27\x8a\x1a\xbf\x76\x15\x18\x3f\x2e\x57" "\x60\x73\x80\x1a\x71\x73\x1b\x8d\x93\xf2\xc1\xe5\x58\x51\xa8\x97\xe9" "\xa4\xcb\x17\x50\x9c\x8f\x17\xf4\x6a\x69\x81\xb8\x86\xd8\x03\x78\x02" "\x1a\xac\xb3\x86\xf0\x8f\xd7\x2c\xe2\xed\x31\xee\xf9\xef\x75\x99\x95" "\xa5\x3a\xbb\xcc\xe7\xca\x15\x13\xc0\x7d\xdf\xc3\xa4\xe7\x87\x59\xd5" "\x60\x5a\x53\x6b\x2f\xc3\xeb\xad\x31\x69\x6a\xf2\x98\xd0\x14\xf7\xc9" "\x00\x83\x3b\x04\x9f\x8a\xbf\x7d\x06\x3a\x5b\x7d\x13\x75\x10\xe9\xc3" "\x75\x95\xa5\x91\xbd\x5f\x4a\xb8\xb2\x4a\xb9\x18\xec\x28\x1c\x82\x5a" "\x66\xc4\x75\x95\x11\x9a\xd8\xfb\x50\x0f\xef\xb1\x81\x75\x48\x09\xfb" "\x21\x93\x3b\x54\x8a\x89\x81\x67\xa7\xe5\x04\x99\x3f\x93\x0d\x5e\xaa" "\x76\xbb\x49\xb8\xc3\x45\x9b\xe9\xaa\x8f\x1c\x77\xd8\xbf\x49\x27\x96" "\x35\xe1\x8b\x62\x81\x68\x20\xe2\x60\x21\x3e\x46\x45\x09\x94\xae\xe0" "\xab\x36\x8a\x10\x44\xdd\x16\xad\xb1\xab\xd6\xae\x64\xa1\xda\x6c\xee" "\xaa\x9e\x82\xfb\x3b\x9f\x39\xe4\x88\x2a\xe5\xe1\xd4\xa3\xea\x23\xe9" "\xf7\x39\xc3\xeb\x3a\x97\xc0\x79\xe5\xf2\x65\x49\xb3\x28\x23\xc4\xb4" "\x45\xfb\x80\x70\x3e\xec\xed\x5c\xa8\x95\x10\x63\x27\xb2\xed\x86\x8d" "\xed\x5d\x2a\x44\x28\x15\xeb\xba\xe8\x83\x1a\x88\x29\x1c\x36\x68\xf9" "\xe0\x96\x18\x9f\xa5\x31\xa5\x15\x4a\x81\x54\x7a\xc1\x8f\xbb\x6d\xe5" "\x24\x75\x0b\xfa\x06\x82\x81\x6f\x11\x5e\xf4\xb8\x05\x8e\x92\xd5\x8a" "\x65\x40\xfe\xf0\xfc\x52\x10\x45\x43\xf7\x1a\x81\xe2\xd6\x54\xe7\xb9" "\x0b\x6f\x15\x2c\x8d\x21\x2a\x90\x76\x7b\x3f\xa9\x8b\x85\xd4\xcb\x8c" "\x50\x8c\x1a\x62\x11\x35\xa3\x26\x44\xed\xbb\x93\x93\x8c\x07\x52\xd6" "\x49\x15\xaa\x32\x11\x4c\xc8\xcd\x70\xa3\x92\x63\x8a\xf7\xf0\xf1\x53" "\xbd\x70\x76\x13\x30\xf1\x8a\xbf\x61\x7a\x9e\x5b\x5e\xd9\xfd\x68\xda" "\x92\x59\x85\x35\xb3\xed\x66\x49\x5b\x19\x65\x4a\x95\x39\xea\xca\xd8" "\x95\x00\x74\x14\xab\x20\xef\x2b\xb5\xec\xdf\x36\xfe\x1e\x6a\x98\xd7" "\x8d\x2e\x19\x05\xe6\x78\x81\xd4\x31\x9f\xe1\x5d\xdd\x68\xf4\x4a\x73" "\x9c\x59\x12\x53\x09\x91\x22\xb6\xa3\x5e\x51\x2e\x6e\x0b\xc5\x1c\xe3" "\xb5\x1d\xb5\x35\xd6\x09\xab\x88\x2f\x2f\x14\x33\xb1\x30\xd3\x5b\x99" "\x71\x3c\x47\x31\x08\x35\x1b\xb5\xf7\xd8\xf9\x90\x70\x1b\x5d\xa9\xac" "\xfb\x5a\xbe\x4a\xbf\x0e\x89\x87\x5b\xcd\x82\xe9\x62\x7c\x06\x4e\x13" "\x71\x44\x7b\xf9\xb0\x5c\x62\xad\x24\x94\x75\xf7\x07\xb0\x6b\xf9\xe2" "\x53\x5f\x8b\xc8\x11\x20\x71\xf3\xd0\x4e\x0c\xd0\x41\x15\x6e\x4f\x89" "\xdf\xb9\x7f\xe6\x06\xe8\xad\x02\xeb\xd4\xf5\xa8\x44\x72\x9f\x91\xac" "\x58\x60\xdc\xf8\x0c\x2f\x75\xe1\x06\x2f\xbe\x19\x19\x7b\xfb\x9f\x95" "\xab\x32\xb3\xf3\x9f\x2a\xa3\xfe\x4f\x42\xa8\x84\x5b\x9e\x63\x9c\xf1" "\x13\x2e\x96\xa0\x46\x4d\x97\x3f\xa8\xb5\xa9\x96\x0a\xff\x05\xef\x3c" "\x00\x6c\x1a\xae\x54\xd2\x1b\xfc\x77\xed\x85\xa4\x37\x5e\xa3\x57\xef" "\x66\x61\x0a\x15\x9c\x93\x04\x4f\xa5\x74\x1c\x94\x7e\x36\xaa\x76\xe2" "\xe3\x95\x9c\x58\x00\x62\xdf\x83\xaf\xd6\x13\x34\x00\x99\x94\xc9\x50" "\xa5\xa7\x6d\x46\xb3\x93\xb1\x0b\x31\xe3\x72\x3a\xab\xef\x8d\x55\xf9" "\x9c\x81\xad\xa5\x7e\x16\x13\x87\xfc\xc9\xe3\xa8\x36\x81\x5a\x6f\x37" "\x61\x4d\xab\x20\x40\x41\xf5\x94\x49\x41\x89\xa5\xd2\x72\x0d\x86\x07" "\xd2\xe7\x12\xc5\x9d\xc2\xa9\x0e\xdf\xc0\xe0\xac\x95\x33\x80\x5a\x2e" "\x7e\x8e\x19\x06\x44\xc6\xbb\x2d\xfd\x77\x38\x10\x54\x44\x6c\x28\xe5" "\x22\xf2\xa3\xef\x17\x0d\xce\x5b\x48\x05\x36\xa3\x06\x2c\x64\x16\x6c" "\xf2\x96\x43\x68\xd9\xdb\x85\x61\x46\xa5\xf5\x18\x1e\x44\x07\x68\xd0" "\x7b\x92\x27\xdc\x1a\xee\xa3\xa7\xb6\xb8\x42\x56\xa3\x3d\x3b\x7b\x3e" "\xc0\x69\x0c\x3d\x74\xe7\xce\xd6\x94\xab\xbb\xfa\x7b\xdf\x97\x6a\x8a" "\x29\x19\x9e\x07\x10\xec\xca\x81\xa6\xd5\xf8\xdf\x9f\x7e\x35\x8a\xcb" "\x43\x19\xd9\xc2\xea\x71\x79\x28\x0a\x29\xf3\x72\x5f\x14\xfc\x6c\xdd" "\x81\x98\x8f\x5c\x88\xaf\x8d\xcb\xb0\x3c\xc9\x35\x71\xb9\xc8\xa7\xc4" "\x06\xff\xe8\x7e\x23\x60\xd5\xc0\x5b\xdf\x1e\xa3\x77\xa1\x17\xa5\x95" "\x6d\xa5\x81\x64\x30\xa9\x4d\xdc\x8b\x33\x5a\x6a\xc9\xad\x6a\x9e\x5e" "\x71\xe8\xd0\x1b\x73\x91\x4c\x0a\xde\x38\x49\xa7\xfa\xbe\x34\x9b\x73" "\x34\xf3\xda\xe0\x4f\x1b\xe3\xc1\x5a\x03\xbe\xcc\x3f\x70\xae\xc1\x57" "\x71\xd0\x37\xe4\xc1\xf2\x3d\x3c\x91\x06\xae\xfe\x8a\x38\x0a\xef\x66" "\x2f\x40\xa7\xf2\x93\x39\xa9\xa6\x14\x03\x1c\xba\xf1\x4c\x2c\x8d\x81" "\x84\x2a\x1a\x1c\xc4\xd2\xa4\x80\x8b\x39\x32\xdc\x63\x43\xe8\x21\xb7" "\xf8\x5c\xa7\x73\x3f\x3c\x1d\x08\xe8\xdd\x28\xbb\x3e\xef\xb9\xb6\x0e" "\x1c\xe5\xd8\x75\x1f\xa9\x10\x50\x66\xe8\x42\x11\xa5\x55\xb8\x80\xd4" "\x06\x11\x1e\x58\xdb\xf6\x43\xcd\x79\xb3\x9d\x0e\x31\x35\x45\x6a\xfc" "\xe5\x73\x6b\x75\x08\xbb\x38\x63\xc9\x3b\xef\x68\xb5\x78\x57\x5b\x71" "\x61\x9e\x49\xcb\x3b\x6c\x1d\x12\xb3\x7b\xd5\x26\x0c\xc0\xf3\x70\x52" "\x47\x6c\xf1\x3b\x6c\x88\x1b\x7f\x06\x68\x06\x54\x6c\xb7\x27\xc9\x72" "\xbf\x45\xce\x95\xdf\x0a\x7c\x3a\x9c\x04\x7f\xa5\xda\xf9\x3c\x80\x4a" "\xda\xcc\xa0\x35\x90\x6d\x5b\xdb\xa5\x10\x78\x07\xe4\xa3\x90\xf5\x1c" "\x3a\xe4\x46\xb3\xf0\xfe\xa7\x94\x7c\x1b\x36\xac\x88\xd1\x44\x90\xb9" "\xe4\x78\xf2\xb8\xcd\x2f\x31\x16\xd5\xca\x2e\xa7\x82\x30\x20\xfe\xac" "\x7e\x1b\xa8\x6d\x39\x25\x51\x92\x4f\x2a\xc5\x06\xc3\x29\x8a\x63\xaa" "\x8d\xe7\xca\xd6\x4a\x32\xab\x65\x86\xda\xd8\xde\x53\x2d\x72\x27\x3a" "\x9d\xd8\xf1\x2a\x23\xf7\xa0\x3f\x60\xbe\x9f\xaf\xe0\x6d\x06\x4e\x07" "\xa4\x08\x0f\xe0\x9a\x6b\x89\x47\x3c\x97\xf6\xeb\xfe\xf7\x52\xb8\x43" "\x39\x4a\x3c\x1f\xdf\x19\xde\xe1\x05\xb7\x5a\x0c\x21\x52\x57\x41\x2a" "\x14\x89\x7a\xc0\x90\xe1\x67\x23\xb6\x35\xb0\x14\xc0\xf8\xe0\x40\x22" "\x19\xd8\xe0\x56\x4a\x52\x71\x1e\xa1\x7d\xa6\x79\x61\xe6\x5d\xff\x69" "\xa2\xcd\xf1\x09\x58\x91\xe3\xbc\x40\xf3\x3d\x3b\xad\x27\x02\x5e\xff" "\xea\x19\x99\x1a\x22\xbf\x9f\x7a\x4f\xd4\x22\xd5\x6f\x7e\xe1\x66\xaa" "\x3e\xdb\x07\xb4\xb6\x91\x60\x0b\xd5\xd7\xc2\xf6\x3a\x9d\x8b\x1c\xf9" "\x34\x0a\xac\x29\x8b\x1c\x18\xb3\x45\x33\xd6\x03\xa4\x9b\xd9\xf9\xb4" "\x18\x02\x99\xef\xb3\xa5\x98\x70\xc3\x72\x90\xec\x77\x5e\x5a\x16\xe1" "\x7f\x8e\xa0\x17\x9b\x16\xad\x83\x66\x01\x1b\xec\x97\x71\x3d\xa5\x59" "\x25\x5f\x2e\xe7\xda\x85\x86\x7a\x20\xad\x79\x48\x82\x77\xcb\x6c\x10" "\x0b\xdd\x8c\xfc\x6c\x33\x55\x4a\xd2\xb7\x97\x74\x6d\xf2\xde\x81\x05" "\xa1\xb2\x4e\x86\x63\x88\x2a\xac\xf6\x6d\x35\xb9\xd1\x9b\xce\x28\x0e" "\x99\x48\x9d\x4e\x42\x32\x05\xf1\x10\x84\xb5\x90\x4a\xdd\x03\x4d\x4e" "\x1c\x07\x10\xd4\x00\x3e\xa5\x0a\x7a\x82\x46\xb5\x60\xec\xbc\xce\xb0" "\xea\x2a\xa4\xa2\x66\xec\x2d\x11\xf8\x28\x65\x64\xb6\xdf\x56\x85\x72" "\x67\x7a\xc9\x6b\xbf\xb8\x0f\x00\xe8\x54\x3d\x8b\x59\xa4\x78\xb7\xe8" "\xec\x87\x27\xc8\x52\x39\x84\xa8\x8f\x70\x55\xb8\x7d\x09\x23\x72\xb4" "\xbb\x61\x93\x58\xf8\xd9\x88\x61\xe1\xeb\xd0\x23\x49\xb4\xd3\xc0\x90" "\x3d\xfc\x99\x3a\x59\x08\x1f\xb0\x8f\x50\x3e\xfe\xea\x31\x1d\x41\xc1" "\x5c\xdf\x0a\x82\x0f\x07\x90\x6e\xf4\x4a\xe3\xa4\x6b\xed\xce\xf4\xf2" "\x39\x94\xc0\xad\x1d\x3f\x7a\x90\xc6\x7b\x61\xa4\x59\x9a\x99\xfd\x2b" "\x7d\xe2\x5b\x92\xee\xe9\x6e\xc4\x4e\xbe\xf8\x79\xef\x96\x44\xfe\x5c" "\x36\x52\x12\x94\x06\xb4\xd7\x57\xa3\xfe\xe9\xe4\x1f\x8a\x73\x4e\x19" "\x5e\x29\x53\x00\xd7\xf5\xb6\x3e\xc5\x7c\xf3\x65\xf2\x89\x7c\xb3\xf2" "\xd7\xc3\x5c\x1a\xca\x39\x24\xdf\xb9\xac\x6b\x18\xd1\x0b\xdc\xb2\xae" "\x15\x5e\xc2\xf7\x23\xca\xed\x3b\xf2\x78\x08\xea\xaa\x21\xc0\x96\xa7" "\x7c\x29\xf0\x3f\x78\x41\x5a\x61\x0b\xc6\x27\xea\xbb\xd9\xe4\x19\xee" "\x8d\xbc\x32\x55\xef\x6a\xdd\x96\x63\x1d\x36\xa8\x79\x16\x6a\x64\x07" "\x18\x16\x83\x39\x52\xc2\xd8\xe0\xea\x4d\x04\xff\x6a\x17\x7d\x38\xde" "\xbb\x77\xe2\xb5\xe4\x79\x45\x8a\xae\x0b\x77\x63\xf0\x45\x32\x6f\xbf" "\xaf\x91\xbe\x20\xbd\x9c\x99\xb6\xe3\x3d\xb9\x1e\x48\x2f\xd1\x0e\x52" "\xa2\x98\x91\x9f\x36\xee\x60\x91\x31\x09\x52\xe9\x0a\x74\x4c\xe6\xf1" "\x0e\x3e\x19\x76\xf3\x17\x40\x48\xd2\x19\xd3\x00\x46\x64\xd3\xfa\xbd" "\xe7\x67\xc7\x19\x32\xd0\xb8\xdb\x8e\x53\x13\x0b\xc0\x22\xa6\xfd\xe3" "\x87\xdd\x3c\xfa\xf8\xf8\xb8\xff\x1e\x96\x9f\x45\xa3\xf3\x41\xfe\xdb" "\x2d\xe5\x27\x46\x19\x06\xf3\x8e\x66\x46\x03\x26\xdd\xb5\x2a\xee\xd4" "\x0b\x17\x75\xc6\x65\x78\x4b\x9b\xe3\x1d\xbc\x8c\xb9\xe2\x14\x59\x8d" "\x0c\xe4\x06\x12\xc8\x9e\xfe\x2f\xbc\x2e\xff\x1a\x92\xc7\x76\x9a\x48" "\xae\xa7\x71\xb4\x11\xad\x2d\x39\x3d\x00\xfe\x52\x86\xec\x7b\x7c\xa7" "\xaa\x42\xe5\x93\xf4\x15\x31\x64\x66\xc8\xda\xf3\x50\x0c\x23\x96\xd6" "\xb2\x76\x3d\xac\xee\xed\x0e\x94\x5e\x9a\x13\x15\x56\xad\x12\x91\x68" "\x40\x76\x69\x98\xce\xe5\xc0\x28\xd8\x7d\x95\x02\x1f\xb5\xcd\xe9\x21" "\xc3\x95\xdc\x35\x73\x4e\x44\xff\xfd\xe5\xbf\xdc\x02\xbe\x73\xd4\xcd" "\x94\x26\x2c\xf5\xc8\x80\x56\x55\xf5\xbd\x34\x17\x27\x08\xb7\x81\xff" "\x1e\xc6\x9a\xea\x3b\x6d\xae\x6f\x52\x28\xf3\x5e\x25\xca\x45\x65\x12" "\x63\x41\xf1\x03\x62\x5e\xc2\xc8\x01\x79\x77\x88\x6e\xce\xd2\x2e\xdc" "\xf3\x04\xdc\x91\xd7\x55\x11\x06\xa8\xc1\xbf\xbe\xc0\xfb\x7d\x58\x72" "\xdb\xcd\x44\x87\x0c\x6b\xa8\x31\x2d\x00\x31\x61\x83\x53\x11\x9b\x29" "\x23\x14\x2f\x2a\xfa\xa8\xa8\x8b\x25\xd5\x67\x21\x1c\x4d\x75\xa8\xfa" "\xfb\x8c\x71\x41\x9b\x78\x86\x19\xc7\x4b\x22\xc3\xf5\xea\xc6\x48\x64" "\xd0\xb5\xef\x35\x23\x5e\x5c\x6f\xde\x74\x1b\x12\xad\x1d\xbc\xad\xbd" "\x94\x3c\xe6\x0f\x9b\x56\x91\x4c\x32\xdf\xfd\xeb\x13\x64\xdc\xf2\x40" "\x0d\x8f\xbf\x04\x36\xba\x31\xc8\xa5\x07\x90\x71\x47\x1a\x76\x6c\x51" "\x66\x94\x46\xe7\xfd\x99\xc1\x47\xe3\x8f\xef\x8f\x57\x8f\x61\xb1\xf3" "\x51\xce\x58\x00\x05\x50\xab\x18\x6b\x5b\x42\xbf\xaf\x66\xf7\xfd\x8c" "\xaf\x3a\xb1\xda\xdd\xd7\xb9\x9c\x52\x34\xbd\xcc\x2c\xe4\xcd\xd1\xb3" "\x15\x2c\x07\x03\x27\x50\x92\x68\x2e\xf7\x97\x3e\x93\x38\x09\xa5\x7f" "\x52\xae\x3a\xb8\x56\xc7\x5e\xaf\xbf\x1c\x7c\xf1\x38\x72\xc7\x62\xf0" "\xd5\x9b\xed\x7f\x34\x5c\x33\x63\x89\x70\x34\xd8\x3b\x2c\x11\x73\xac" "\xc3\x4b\x65\xf2\x72\xbc\xe5\x49\xdf\x71\x71\x26\xef\xeb\x65\xd1\x4c" "\x39\x42\xa5\x53\x97\xa6\x85\x80\x7a\x2e\xda\xa1\x74\x83\x8c\x3d\x88" "\xdd\x51\x7c\xe4\x7b\x6b\x49\x6c\xe9\xc2\x0f\x1f\x04\x98\xbe\x11\xa7" "\x1d\x4d\x66\xe7\x57\xff\x3f\xcc\xe0\x8d\xdb\xae\x4c\x7c\x2d\xd3\x47" "\xdc\xb9\x64\xa8\xa5\x43\x13\x22\x48\x97\x64\x39\x79\x9a\xd6\x4b\xed" "\xeb\xfb\xf4\x1a\x78\xff\xa8\x13\xa2\xa3\x0d\x45\xdd\x94\x30\x2a\x8d" "\x73\x41\x16\x1f\x4c\x13\xdc\x76\x5e\xf9\xbb\xe1\x73\x87\xa9\xe6\x06" "\x00\x6a\x6b\xd2\x72\xdc\x7d\xa5\x9e\xb0\x83\x6e\xb4\x45\xae\x5b\xe3" "\xac\xf4\xcd\x17\x19\xed\x40\x9c\xc1\x7f\xc5\xee\xfa\x52\x7e\x53\xe6" "\x58\x4e\xd7\x91\x1e\x09\xbb\x77\x2d\x78\x01\x4d\x58\xae\xe1\x8f\x9f" "\x22\x1e\x6f\xd5\x3b\x10\xa4\x82\x6a\x89\x8c\xd3\x17\x34\xcc\x5b\xaa" "\xec\x0a\xcd\x77\x96\xa4\x95\x4e\x0b\xad\x59\x1d\xec\x94\x8d\x3e\x16" "\x93\xa2\xc9\x17\x20\xe0\xfe\x97\x52\x7c\x23\x91\xd8\x44\x59\x93\x36" "\x2b\x60\xc8\xeb\x21\xe4\xdc\x4b\x4b\x43\x50\x24\x4a\x78\x3f\x1b\x6d" "\x1d\x50\xde\xf6\xe7\x56\xe1\xf1\x77\x36\xb6\xc5\x9f\xe0\xe4\x7c\x74" "\x9d\x03\xd5\x2a\x80\x32\xaf\xb9\x50\x04\xed\xdc\x83\x7d\x12\xa4\x67" "\xc1\xf4\xaf\xcb\xba\x4c\xaf\x35\x55\x02\x07\x47\xd9\x66\x28\x11\xc0" "\x39\x47\xd6\x04\xed\xaa\xbc\xdb\x2e\x8d\xc0\x43\xe1\xea\xed\x24\x0c" "\x6d\x9d\x79\x55\x62\x10\x6d\x68\x21\xb7\xac\x31\xe3\x9a\x74\xf3\x85" "\xf5\x62\x4d\x64\xcd\x17\xdb\x42\x8b\x53\x61\xa8\x42\x73\xa9\x23\x9b" "\xc7\x32\x0f\x59\x66\xd9\x5b\x3b\x2b\xff\x18\x64\x57\x40\x34\xc1\x86" "\x5b\x9a\x6b\x46\x42\x6b\x5e\xcd\xdd\xe7\x08\x20\xa9\x1e\x85\x34\x8d" "\xeb\x36\x09\x18\x99\xc4\x9b\x4a\x44\x30\x28\x97\xd4\x78\x63\x3a\xbd" "\x5b\x11\x70\x14\x93\x32\x9b\x3d\xa1\x1b\x08\xf5\x4a\x82\x8a\x36\x67" "\x4e\x55\x26\xfb\x17\x4a\x4e\xc3\xef\xd2\x1a\xee\x12\x0e\x81\xa9\x4e" "\x8f\x00\xd9\xfd\x66\x85\x2b\xd7\xc5\xa2\x20\xfc\x49\xe5\x20\x23\x2b" "\x18\xa9\x37\x37\x20\x5e\xd4\x9a\x6d\x30\xd2\xf0\xa3\xcd\x24\x01\x7e" "\x08\x48\x79\xac\xec\xb2\xb6\x42\x6c\xc7\x5a\x17\xb2\x28\x7b\x9d\xd9" "\x6d\x24\xee\xfc\xf6\x1e\xcc\x12\xfc\x2f\x6f\x63\x9f\x68\x03\x5d\xc9" "\xf1\x5c\x29\x6d\xf3\xb1\x56\x24\x66\xc1\xb0\xa2\x8b\xde\xbf\x26\x19" "\x07\xdf\x98\xc1\x86\xd6\xe5\x39\x81\xd8\xe7\xaa\x17\x6d\x38\xe4\x81" "\xc4\x49\x1b\x41\x86\xc2\xf1\x5e\x1f\x47\x02\x7a\x8b\xbe\x2e\xec\x82" "\x3f\x7a\x90\x01\x00\x77\x19\xdc\x19\x22\xd3\xbb\x5c\x05\x6e\x2c\x38" "\x11\xcb\xb0\x05\xfb\x84\xe8\x4f\x14\x37\x32\x3f\x95\x90\x24\xa6\x7b" "\xd3\xcc\x4d\x39\x72\xde\x01\xa6\xdb\xe9\x19\x9c\x06\x7f\x88\xf4\x28" "\xe1\x28\xc5\xd6\xd4\x01\xf0\x16\x6e\x9c\xc7\x0d\x6b\x8d\xd8\x9b\x95" "\x57\xac\x7b\xee\xca\xd7\x00\x4b\x26\x90\xd1\x65\x9d\x9a\xe5\x88\x58" "\x2d\xe1\x1a\xe6\x75\x1c\x0d\xd2\x50\x6a\x24\x90\xfd\xfa\x9b\x69\xb0" "\xf8\x34\xa2\xf3\xda\xa8\xe4\xa0\xe3\x02\x42\xcf\xb5\x22\xdf\x4b\x92" "\xbd\x9b\xde\x50\xa1\x6e\xe0\xe8\xba\xce\xee\x4f\xd1\x04\xe6\x32\xdb" "\xab\x62\x77\x6e\x93\x7c\x84\xc8\x5d\xc6\x1e\x08\xda\x0e\x03\x9c\x21" "\x4e\x37\x14\x7b\xa0\x74\xcb\x08\x6b\xf6\xcd\xad\x70\x8a\xfb\x40\x6f" "\x3e\xf4\x1f\x96\x30\xdc\x40\x47\x21\x16\x17\xd8\xf1\x0e\x38\xf6\x74" "\x5b\x86\xee\x17\x5c\x6f\x21\x6b\x88\x1a\x22\x3e\xc3\xa6\xf6\x93\xb6" "\xc7\xad\xc0\xb0\x7b\xbb\x0d\xc6\x64\x7a\x82\x55\xbb\xee\x3f\x95\x7b" "\xd3\xac\xd4\x57\xe6\xf4\xff\xaf\xd3\x47\x50\x4f\xc5\xaa\x4e\x94\x62" "\x2a\xac\x61\x02\x4b\x12\xa9\xfd\x6d\x4d\x33\x92\x96\x21\x3b\xaf\x7b" "\x26\x5a\x98\x26\xee\xdf\xe0\xde\xf3\xad\x86\x18\x0d\x2d\x87\x45\x0d" "\x63\x3d\x12\xe2\x7e\x23\x09\xf2\x20\x72\xb5\x0a\xe7\xbd\xce\x59\x4e" "\x1d\xee\x17\xfb\x49\x4c\xa9\x32\xc8\x53\x53\xa0\x5c\xe6\x6e\x1a\x8d" "\xd1\xb4\xbe\xc4\x6f\x28\xa3\xa1\x86\xbf\x66\x8e\x3a\x0a\x55\xb3\x74" "\x5a\x91\xe2\x16\xdb\xc2\xde\x73\x94\x81\x41\x2e\xcf\x5f\x3d\xa3\x56" "\xe2\x07\xe2\xd0\xf1\xd2\x1f\xd9\xb1\x4e\xa1\x91\x9e\xe5\x71\xe9\x75" "\x02\xe9\xbd\x48\x73\x35\x60\xef\xbc\x3e\x8f\x30\xfe\x9b\x74\xf1\xcc" "\xc1\x65\x9c\xc4\xaa\x86\xd9\xc8\x3b\x57\xf6\xc7\xc4\x17\x6f\x43\x19" "\xa9\x98\xdd\x69\xa4\x03\x17\x23\x5b\x63\xf2\x8a\x17\x03\x13\x40\x99" "\xb4\x06\x9d\xa2\x6d\xac\xe1\xdb\x08\x92\x87\xa5\x63\x74\x79\x49\xde" "\x8d\xac\x04\xf1\x63\xa8\x95\x74\x27\xf1\x2b\x5a\x99\xa6\x94\x14\xd9" "\x34\xda\x3f\x64\xc7\x58\x73\x15\xc0\x85\x51\xd5\x33\x03\x7e\x4c\x8a" "\xa6\xf7\xc4\x8f\x33\x65\x64\x6b\xed\x13\x50\x8a\x8d\x19\xcc\xf1\xab" "\x01\x15\x70\xb0\x83\x96\xaa\x20\xd5\xe6\x24\xd0\xe4\xbc\xc7\x3c\xfc" "\x01\xff\x84\x9a\xfa\x07\xf0\x48\x94\xf3\x6b\x7c\x68\x6e\xe2\x86\xb5" "\xc1\xfe\x46\xce\x33\x1d\x03\x4d\xca\x91\x4e\xb2\x9a\xdf\x9a\xe8\x9b" "\x2e\xdc\x9d\x05\xee\x49\xf7\x92\x06\x6f\x4a\x5f\x86\x32\x1c\x83\x3b" "\x2b\x2f\x4f\x0e\x11\xed\x87\xa8\x5a\x23\xd0\x7f\xfc\x43\xe6\x3b\x4d" "\xff\x74\x12\x7d\xbc\xf9\xee\x34\x11\x87\x7a\x6c\xa8\x3c\x7e\x30\xa1" "\x63\xb7\xee\x3f\x9c\x56\xd3\xba\x0f\xbe\xa4\xe7\x52\x84\x25\x96\x39" "\x36\x4c\xf0\x02\x5d\xdd\x3c\x69\x31\xc2\x6d\xc3\x6d\x4a\xf0\x3e\xa4" "\xce\xfc\xe3\xfb\xf3\xc5\x8d\x7c\xdf\x20\x7b\xda\xa2\x6a\x95\x77\xe5" "\xfa\xeb\x39\xd2\x80\xa6\x75\xf6\x80\xe1\xe4\x0a\x04\xcb\xe9\xad\x63" "\xaa\xc3\x0c\x78\xad\xc4\x23\xe0\x47\xc3\x4c\x1e\xa9\xed\xdc\x46\x17" "\x1b\x99\xaf\x4c\x06\x6b\x11\x82\xb0\x33\xff\x88\xe1\xc3\x7f\x02\x0b" "\x70\xb4\x52\xc3\x33\x3f\x11\x7e\x76\xee\x1a\xe0\xd2\x45\x8e\x5f\xbf" "\xfb\x9b\x7f\x55\x5c\x87\x39\x92\x6f\xc3\x5b\xdb\x53\xcd\x48\x88\xee" "\x81\x18\x7b\x22\x67\x09\x28\x28\x37\x9f\xd1\xe3\x92\xcf\xe2\xcf\xee" "\xf9\x87\xdf\x7e\x5e\x22\xb4\x36\x70\xd4\x46\x2b\x36\xef\x90\x3a\x85" "\x27\x85\xdd\xce\x76\xa1\x9f\x84\x2e\xd8\x82\x45\x1e\x1c\xd0\x43\xdc" "\x71\xcc\x08\xf0\x91\xc7\xb5\x61\xd3\x90\x34\xda\xbb\x5c\x8e\x78\xb6" "\x91\x01\x46\x68\xe5\x4a\xf5\xf5\x5b\x03\x88\xc2\x0d\x21\xcd\xb2\x44" "\x0b\x4f\x47\x26\x1f\x10\x88\xba\x38\xfd\x02\x01\x26\x33\xf3\xcc\xff" "\xf7\x39\xf6\xb4\x88\x94\x42\x43\x96\x9a\xb9\x4c\x53\xa9\x18\x3d\x21" "\x41\xff\x23\xe6\xc4\x0d\x49\xb4\xde\x60\x1c\xdd\x96\x54\x9d\x81\x7c" "\xb3\x0d\xb5\x5b\x8c\xd0\xe8\x69\xdc\x4b\x6e\x1f\x0d\xac\x1d\x4c\x85" "\x19\x16\x2a\xe3\xaf\xe3\xf6\x4a\x97\xb8\x08\x7a\x27\xab\x5c\xd3\xbc" "\xc7\xd7\xee\x03\x6e\xa9\xcf\x74\x39\xad\x7a\xc9\xf8\x90\x82\x91\xc0" "\x31\xa3\x1d\x01\x25\xd3\x47\xd1\xdc\xef\xfb\x71\xdc\xb9\x89\xad\x1c" "\x8c\x4e\x64\x92\x37\x14\x52\x5e\xea\x9d\x76\xc0\x79\x3a\xcf\xf2\x22" "\xda\xf9\x0c\x43\xcd\x47\x9a\xe0\xe2\xed\xd7\x56\x6a\xe9\xa5\x50\xf3" "\xdd\x8f\x8e\x03\x12\xd4\xd0\xb0\x64\xe7\xd8\x90\xe3\xbb\x02\xd7\xd3" "\xf5\x5b\x8b\x3b\x93\xeb\xb8\x37\x2e\xe3\xb4\x27\x9c\xb8\x69\x0d\x32" "\x75\x5b\xe1\xb6\x7a\x5e\xd1\xec\x3f\xa7\xe3\xea\x8c\x2a\xad\x4b\x74" "\xf2\x10\xaa\x3b\xe2\x51\xac\xcb\x3a\x84\x14\xdf\xe0\x3d\x8c\x33\xa8" "\x31\x09\x61\xe6\x61\xfd\x46\x02\xf8\xa8\x22\x60\xd3\xcb\x20\xc2\xa6" "\x85\x06\x40\x2f\xe1\xbd\x22\x4e\x07\x68\xa4\x0d\x0f\x95\x9b\xf2\x3f" "\x0f\x05\x16\x06\xee\x36\x1f\x29\xf9\xda\x50\x13\x69\x04\xe5\x5d\xe5" "\xaa\x70\xbb\x34\x39\x70\x9b\x15\xd4\x05\xef\xad\x03\x3c\xa4\xa3\x4f" "\x95\xa1\x59\xcc\x9a\xac\x64\x27\xff\x5e\xd7\xb6\x4e\x52\x2d\xb3\x37" "\x28\x32\x48\xb8\xda\x30\x89\xb1\x22\xc0\xe6\xd1\x9e\x95\x9b\x6c\xb4" "\x9a\xb7\x5b\x7f\xed\xda\x82\x83\x48\x77\x33\x0a\x4e\xea\x4a\x22\x3a" "\xcf\x10\xa8\x31\x53\xfa\x43\x7c\x7c\xb4\x3c\x44\xa6\x57\xfb\x6a\xe4" "\xaa\x4f\x80\x48\x27\x3f\x28\xcc\xb8\x1f\xe9\xc7\xc9\x6c\xa3\xff\x4d" "\xb9\x20\xd8\x2f\x88\xa0\x3f\xef\x0d\x5b\x20\x9c\xd5\x93\xa7\xc9\x4a" "\x73\x5f\x09\x74\x51\xdb\xfc\xa4\xe2\x10\x34\xb0\xf6\xc5\x2a\xd1\x50" "\xff\x16\x63\x3e\x06\x3b\x0b\x08\x2a\xd2\x2c\x7b\x24\x66\xcc\xa1\x43" "\xb8\x6b\x0c\x6e\x24\x8d\xaf\x73\x1b\xfa\x5e\xbd\x8a\xce\xf4\xd4\x57" "\x79\x6a\x52\x0b\x1d\x77\xf6\xbc\x03\x17\x91\x17\xd1\x5f\xc5\xe1\xba" "\xf6\x99\x3b\x29\x7a\xc6\x7d\x7b\xda\x1c\xed\xfa\x06\x26\xda\xfa\x52" "\xdf\x03\x93\x5b\x6e\xe1\xd9\x8e\x8f\xb9\x86\x1f\x50\x94\x8f\x50\x66" "\xe7\x42\x87\xd7\xd4\x7b\xde\x19\x48\x87\x07\xe1\x5c\x6f\x4a\x75\x1f" "\x2e\xbe\x99\xaf\xf2\x3c\x98\x75\x1b\x50\xf0\x93\x8f\x28\x10\xbd\x5a" "\x49\x37\x2d\x4e\xa6\xbf\x19\xb1\xf9\xdb\xaa\x3f\x0c\xf0\xe4\x64\xbc" "\x07\x5e\xa6\x2c\x09\x80\x9c\xd1\x04\x64\x40\x74\xd5\x88\x1a\x73\x19" "\xf1\x34\x25\x88\xa4\x1d\xf2\x82\x43\xd0\xa2\xb4\x27\x1a\x5a\x1e\x45" "\xff\xdd\x93\x1c\x48\x0e\x0a\x44\x0d\xb0\x39\x9c\x63\xa0\xdb\x03\x51" "\xff\x90\xad\xb7\x83\x76\x9d\x8f\xa5\x16\x29\x78\x16\x9e\x32\x70\x42" "\x4b\x57\xcb\xe1\x2e\x55\xfc\x69\xb0\x70\x81\x3b\x3b\xe0\x4d\xaf\xf3" "\x78\xed\x92\x17\xe3\xe1\x8b\x7b\x75\xd1\x5d\x0b\x08\xc8\x8f\x89\xc4" "\x5a\x03\xd4\xb6\x8f\xa4\x7e\xd6\x44\xab\xdd\x9c\x50\xe3\x48\x03\x55" "\x1b\x5c\xc8\xe5\xc0\xc0\xfb\x09\x51\x00\x5d\xb9\xc9\x0d\xf0\x0e\x81" "\x34\xf6\x60\xfa\xf7\x0e\xb6\x32\xb3\x87\xa5\xe9\x43\xfc\x55\xd0\x0f" "\xec\x88\xe0\x45\x1b\x9e\x57\xa7\x04\x9d\x8b\x1e\xef\x2e\xec\xf6\xfa" "\x2a\xc1\x3b\x2f\xfa\x18\xe9\xd2\x75\x8d\xc5\xae\xa3\x20\xc4\x57\x19" "\xcf\x49\xf7\x26\xc6\xf1\x86\xf6\xb5\xaa\x0f\x10\xd5\xff\x32\x1e\xc8" "\x99\x79\xe4\x75\x49\x46\x37\x43\x77\x35\x09\x7a\xfd\xe0\x23\x93\x62" "\x3a\xb8\xf2\xec\xbe\xac\x0c\xc1\xd5\x4a\x5e\xdb\xd6\xb7\xfa\x86\x09" "\x0b\xe7\xf6\xc7\x93\xa7\x63\x35\x2e\x85\x5d\x23\x08\xea\x09\xc7\x37" "\xb8\x1b\x24\x6d\xf5\x89\xaa\xa6\xdc\xa6\x27\x1f\x31\x1d\x9a\x1f\x46" "\x0d\xb4\x2a\xe0\xb0\x1d\x60\x7d\x0e\x91\x97\xe9\xa5\xde\xe9\x00\xd4" "\x17\x38\x37\x1d\x30\xc6\x7d\xc6\x4d\x64\x93\x48\x39\x2d\x5b\x8a\xff" "\x02\x21\x2b\x9b\x84\xec\x1b\x1a\xd9\xa9\xa3\x78\xac\x68\xb6\xe2\xf1" "\x87\x1e\xba\xa6\x92\xd3\x89\x06\x94\x8a\x74\x0f\x22\x86\x5a\x67\xaa" "\xb2\xe6\x6d\x9f\xe7\x1d\x03\xff\xa6\x54\x13\xd1\xd1\xdd\x39\x1a\x49" "\xa0\xdd\x15\x91\x75\xba\x97\xd9\xce\xa3\x85\x95\x33\x3b\x11\x47\x63" "\xf4\xe3\xb4\xf7\x77\x75\x76\x1d\x6b\xdf\x17\x92\x36\x08\x3e\xc8\xf0" "\x30\x9d\xdf\x11\x5c\xf3\xcb\x4a\xf4\x9b\x22\x97\x88\xd9\xb6\x21\x61" "\x7b\x77\x73\xdd\xaf\x33\x52\x5d\x89\xae\xf1\x8a\x93\x92\x7d\x9e\xf7" "\x4e\x15\x55\x99\x65\x05\x65\x21\x13\xa7\x9c\xd9\xd8\x0f\x06\x1b\x7e" "\x9b\x6a\xb0\x49\x8b\x1a\xb5\xbe\x66\x1d\x56\x0f\x21\x03\x29\x39\xa8" "\xf4\xcb\xed\xda\x37\xfa\xa1\x7d\xbc\xe0\x7b\x60\x10\xeb\x62\x71\x24" "\x03\xa5\x81\x0f\x48\x75\xc2\x5c\xaa\x44\xd6\x4c\x33\x69\xec\x91\xb7" "\xf0\xea\x2b\x0d\xe6\x1d\x69\x97\x8f\xca\x1e\xb6\x55\x40\x0a\x05\xa3" "\x81\x01\xa4\xf9\xde\x25\xbe\x35\x95\xf3\x67\x18\x1a\xa1\x26\x32\x41" "\xfe\x35\x96\xff\x89\xe3\x84\xb0\xcc\xb6\xa0\x79\xfe\x35\xb0\xf6\x8e" "\x27\xe6\x42\xba\x9a\x37\x3d\xb1\x12\x9e\xe1\xfe\xd1\xe8\x66\xc0\xd4" "\x50\xf5\x52\x80\xa5\x38\xa7\xda\x35\x98\xda\xb2\x77\xf8\xc6\x0b\x7c" "\x3c\x9b\x96\x47\xeb\x75\x80\xab\x42\xea\x67\xfd\xc2\xe4\x96\x04\x89" "\xb1\xa1\xcf\xb3\x81\x3d\x12\x95\xf7\x78\xee\x30\x16\x81\x2d\x86\x70" "\x2a\x4f\xb8\x72\x03\x27\x91\xd9\x87\xc0\xc7\x2d\xc2\x06\x02\xc2\xbe" "\x67\x93\x60\x58\x62\x17\x6e\xbe\xf4\x29\xc1\xca\x94\x11\xcf\x2d\x90" "\x71\xff\x28\xc2\xa8\xb0\x12\xda\xbd\x47\xe2\x68\x91\xc6\xb6\xf6\x4c" "\x67\xce\x2d\x85\x28\x86\x6c\xe1\xe8\x26\x0c\x64\xe2\xe0\xa5\x97\x50" "\xb7\x77\xe1\x23\x4d\x30\x6f\x8e\x3d\xd7\x5d\xe5\x03\x80\x24\x94\x81" "\xd8\xda\x91\xcb\x6b\xc2\x10\x6e\xea\xa3\x31\x60\x33\xdc\xe4\xbd\xaa" "\x23\x19\x40\xf4\xf5\x68\xb7\x06\xa2\xaf\x20\xab\x2b\x7d\xcb\x0f\xf9" "\x68\xf0\xd5\x3f\xda\x94\xb4\x6b\x8b\xac\xef\xfd\x94\x06\x4c\x5d\x68" "\x33\xba\xd8\x35\x96\xee\x5f\x06\x59\x00\x14\xe6\x39\xbc\x4a\x31\xad" "\x55\x48\x91\x2f\xaa\x72\x3c\x58\xc5\x7b\xc0\x19\xe1\x16\x7c\x39\x00" "\xbc\x6a\xd4\x1a\x86\xa4\xd3\x62\x55\x59\x4a\x80\xe7\x63\x98\x4d\xf8" "\x32\x85\x2c\x4c\xa9\x99\xf3\x59\xb0\xff\xd4\x68\x13\x78\x19\x26\x3f" "\xd4\x5f\x2a\xba\xef\xa3\xb1\x3a\x91\x35\x31\x44\x39\x89\xda\x53\x7f" "\x80\x5c\xb6\x27\xca\x03\x13\x7e\x91\x2f\x1e\xe3\xbd\x5e\xee\x8e\x9f" "\x24\x9f\xd0\xc5\xcc\x48\x99\x88\x95\x4b\xb1\x9f\xb6\xde\x09\x03\xfa" "\x13\x5c\x47\xab\x59\xa8\x5c\x43\xb3\x92\x98\x35\x3d\xcb\xac\x0d\x37" "\x8d\x8b\xcc\xc7\x03\x9b\x10\x37\xb8\x70\xc0\x9b\x45\xfb\x3e\x20\xf2" "\x84\xe5\x59\xae\xbd\xf5\x60\xa8\xeb\x4f\xb3\xc1\xcd\xb6\x3d\x6a\xb2" "\x7d\x8d\x19\x01\x6b\x4b\x28\xbe\x43\x74\x2a\xd4\xf0\xaf\x80\x5c\x88" "\x1f\xf0\xd4\xc2\x10\x9c\x95\x8e\x68\x42\x8d\xb6\x17\xc9\x4d\x44\x7f" "\x6d\xbb\x76\x87\x77\x60\x02\x41\x6b\x77\xf1\xa7\x85\xe1\x95\xb6\x09" "\x3b\x6f\xb4\x5f\x6f\xf0\x57\x43\xaa\xfb\xeb\x95\x55\x17\x90\xdb\x34" "\x1f\x99\x36\xac\xd3\x0d\xfb\xee\x0f\xe0\x78\x11\xdc\xc9\x5d\xdd\x6c" "\xed\x33\x3a\xc9\xdb\xfc\x2b\x3c\x45\x41\xce\x51\x78\x0c\x7a\x29\x0d" "\x9c\x85\x17\x62\xe3\x88\x79\xf3\x99\xd6\x9e\x0b\x35\x4e\x11\xe3\x97" "\xb2\xbb\x69\xa5\xd7\x47\x4b\x14\x68\xcc\x96\x3e\xb4\x4b\xc6\xc6\xc4" "\x1b\x72\x29\x3a\x37\xdd\xb4\xf4\x65\x7f\x92\xf3\x75\xb2\x51\x73\x84" "\xf3\xd4\x02\xe8\x2d\x24\xf9\x03\x45\x13\x70\xf9\x6c\xb8\xfa\x29\x6e" "\xb4\x96\xbc\xd5\xfe\xc6\xf0\xe5\xa4\x7e\xc6\xe8\x34\x23\xb5\xe8\x3a" "\x9c\xea\xf3\x46\xf1\xe9\xba\x68\xbe\x9c\x35\xc1\x64\xbf\x02\xe8\x6d" "\xc4\xe2\xd5\x66\xb8\x33\x60\xb3\x29\xbc\x7e\xf3\x9d\xec\x75\x08\x8d" "\xdd\x97\x0d\x14\x62\xfa\x22\x5a\x79\x63\x88\x26\x5c\x24\x0d\x66\xa8" "\x6e\xca\x3c\xde\x65\xe5\x9a\xe1\x1f\x1f\x31\x95\xec\x3b\x4d\xbe\xc5" "\x2a\x2c\xbf\x8f\x46\x97\xa8\xd8\xa0\xb2\x5b\x30\xfd\x69\x4d\x84\x55" "\x28\xfd\x38\x5c\xec\xd3\x49\xeb\xa3\xd9\x79\xb3\x86\x91\x7f\x34\xde" "\xc5\x32\x86\xcc\x3b\xff\xcd\xac\x10\x95\xc9\xfe\xe1\x66\x81\xbf\x48" "\xa6\xff\x94\xfe\x48\x3f\x8e\xc5\x47\x6e\x39\xb0\x0e\x19\x41\xee\x19" "\x21\xaa\x2d\xa8\x88\x30\xbb\xec\x55\x79\x29\x7c\x07\x54\x3f\x53\x83" "\xe4\x31\x73\xf4\xf3\xb6\x75\x8d\xb5\xc5\xd6\xc4\x78\xaa\xf6\xe3\x05" "\xf2\x59\x15\x22\xf0\xe8\x60\x0e\x1d\xea\xd9\x1e\x08\xf0\xed\x9d\x76" "\x3d\x0b\x14\x55\x3a\x41\x6e\x7d\x74\xbe\x6a\x1f\xe4\x10\xdf\xdc\x4e" "\x59\xc2\x2a\x53\x49\x09\xa8\x7f\xf1\x4c\x89\x40\x61\xcd\x8c\xbb\xbb" "\x2d\xd2\x79\xcb\xe9\x57\x88\xdf\x72\x31\x8e\x8c\x5c\x65\x87\x91\x4d" "\x18\xa7\x3f\x8e\x95\x1d\x22\x8d\x0a\x91\x70\xd9\x2c\x26\x91\x2f\xc0" "\x5d\x14\x9d\x15\xd5\x12\xad\x29\xa1\xee\xb0\x74\x3e\x7c\xb5\xe5\x93" "\xac\xd8\x43\xb9\xc1\xb1\x02\x9b\x7e\x3b\xd5\x35\x7d\xce\x93\x1d\x6f" "\x11\x97\x45\x2b\xbf\x03\xb4\x48\x16\xc2\x09\x76\x25\x22\x18\xc1\xb1" "\x26\xd1\xf1\xbd\x13\x37\x63\x35\xd3\x92\x89\xc7\xfa\xbc\x4f\xc8\x56" "\x4b\x20\x05\xce\x14\x96\x29\xd3\x6b\xfa\x72\xb0\x15\x48\xf1\x74\x89" "\xc9\x3d\xab\x51\xbf\x64\x7b\x66\x37\x8f\x40\xfa\x54\x9d\x39\x12\x51" "\x9e\xc1\x85\xce\xa8\x9e\x72\x00\xca\xac\xdd\x74\xc6\xe3\xd9\x2b\x8e" "\x86\x21\x76\x39\x5e\xd3\x34\x0a\x77\xbc\xa3\x01\x8b\x6d\x33\x49\xc3" "\xe4\xb7\x37\x4c\x6f\x08\xda\xd3\xc0\x85\x8e\x2b\x35\xf3\x73\xef\xac" "\x0f\x81\x52\x19\xf8\x3c\xf2\x89\xa2\x93\xe4\xdb\xf9\x94\x6e\x41\xbf" "\xcf\x0d\xf0\xb7\x69\x1e\x8b\x66\x3d\x35\x22\x5f\xe4\x69\x7f\xb9\xf3" "\xa2\x88\xe8\x7d\x65\x7e\x9e\x78\xd8\x6b\x2e\x58\x8c\xc3\x67\x75\x15" "\xd6\x40\x4d\x80\xcc\x2b\xe8\xf4\x5e\x0a\x74\x73\x5b\x53\xc4\x3f\x4b" "\x3f\xb1\x06\xd4\x4e\x35\x9e\xfd\x97\x81\x28\xbd\x60\xfb\x04\x39\x8f" "\xc9\x29\xc0\x88\xac\x62\x68\x64\xa8\xd0\x0f\xfb\x79\x8f\xa0\x51\x6c" "\x49\x44\xe4\x84\xcf\x63\x6e\x9b\x9a\x84\xba\x7e\x75\xb2\x3d\xf3\x13" "\x49\xd6\x07\x36\xec\x73\x1d\xe2\x78\xb3\xd1\x47\x26\xfa\xe6\x5a\xbd" "\xda\xf7\xed\xac\x85\x58\xf0\xb7\xe7\x45\x01\x9a\x51\xef\xf8\xcd\x54" "\x4c\xc5\x8c\xab\xaa\x52\xf6\x29\xfa\x68\x35\x8e\x6a\xfa\x25\x00\xef" "\xd6\x20\xd5\x36\xd1\x84\x30\xcf\xee\xcd\xbc\xf8\x7c\x91\x79\x24\xc6" "\x1c\x3c\x05\xa9\x4c\xdb\x7f\x5e\xf7\x21\xe3\xac\x4d\x00\x3c\x38\x66" "\x72\x84\xa6\x6a\xed\xf4\x25\xdf\x25\x3a\x77\xad\xbf\x37\x73\xa0\xcb" "\x84\xff\x74\xaf\x8b\x26\x91\x0f\xec\x3f\xb4\x6b\x51\x5e\xf0\xed\x8e" "\x88\xa8\x7c\xef\x9d\xe6\xf9\x91\x2f\x85\x23\x4b\x6f\x56\xa9\x12\xae" "\xa8\x7e\x99\x57\x6c\xa0\x9d\xc6\x0e\x0e\x44\x54\x56\x62\xb2\x02\x35" "\x43\xb7\x59\xf3\xcb\x54\x6c\xef\xf2\xf0\x18\x3a\x04\xf7\xcd\xca\x2d" "\x92\x19\xf8\x94\x91\xe3\xd1\x11\xf7\xbc\x6a\x00\x24\x16\xef\x4b\xf4" "\xf2\x6f\x34\xf8\x12\x2f\x7c\x80\xde\x59\x2b\x77\xff\x8c\x58\x65\xbe" "\x54\x65\x05\x94\xee\x06\xdc\xf7\x0d\xa0\xf8\x8d\x94\x06\x81\x6d\xc7" "\x7c\xfb\x9d\x5c\x4d\x77\xb1\xa5\x51\xd6\xd5\xac\xa1\x92\x6f\xf9\x2c" "\x45\x3f\xb6\x75\x4e\x82\x26\xe0\x0f\x9f\xb3\x14\xee\xd2\xa5\xc3\x41" "\x54\xaa\x53\x01\x6e\xa9\x82\x76\x8b\x87\x22\x30\xbc\x81\xc6\x92\x2d" "\x54\xb7\x53\x7b\xf4\x56\x93\x02\xf2\x57\x90\x20\xa0\xe8\x24\x39\xa3" "\xc6\x83\x77\xde\xf8\x0e\x98\x51\x85\x73\x01\xbd\xc8\x23\x68\xc3\xb7" "\xab\xd5\xa4\xff\xdc\x39\xdf\x52\x8f\x81\xf9\x83\xa6\x11\x39\xb3\x96" "\x0c\xf8\xae\xdf\xc7\x42\x5e\x5c\xf6\x7f\xfd\x7c\x55\x90\x2e\x8f\xfa" "\xd9\xc9\x66\xa7\x97\xfc\x4f\xbe\xdb\xac\x06\x77\x58\x25\x44\xf5\xf9" "\x17\x75\x1f\x25\xa5\xc2\x2a\xa3\xae\xb9\x57\xe7\xbf\x56\x7c\x9e\x60" "\xce\x38\x47\x8b\x72\x95\x9d\xb7\x32\x04\x01\x66\x92\x23\x4f\xae\x01" "\xc5\xec\xde\x4f\x82\x27\xae\xf4\x4e\x7e\x4d\x79\x97\x90\x5c", 8192); *(uint64_t*)0x20000e40 = 0x20000080; *(uint32_t*)0x20000080 = 0x50; *(uint32_t*)0x20000084 = 0; *(uint64_t*)0x20000088 = 0x545; *(uint32_t*)0x20000090 = 7; *(uint32_t*)0x20000094 = 0x24; *(uint32_t*)0x20000098 = 2; *(uint32_t*)0x2000009c = 0x15; *(uint16_t*)0x200000a0 = 7; *(uint16_t*)0x200000a2 = 0; *(uint32_t*)0x200000a4 = 8; *(uint32_t*)0x200000a8 = 1; *(uint16_t*)0x200000ac = 0; *(uint16_t*)0x200000ae = 0; memset((void*)0x200000b0, 0, 32); *(uint64_t*)0x20000e48 = 0; *(uint64_t*)0x20000e50 = 0; *(uint64_t*)0x20000e58 = 0; *(uint64_t*)0x20000e60 = 0; *(uint64_t*)0x20000e68 = 0; *(uint64_t*)0x20000e70 = 0; *(uint64_t*)0x20000e78 = 0; *(uint64_t*)0x20000e80 = 0; *(uint64_t*)0x20000e88 = 0; *(uint64_t*)0x20000e90 = 0; *(uint64_t*)0x20000e98 = 0x20000700; *(uint32_t*)0x20000700 = 0x90; *(uint32_t*)0x20000704 = 0; *(uint64_t*)0x20000708 = 0x20; *(uint64_t*)0x20000710 = 6; *(uint64_t*)0x20000718 = 1; *(uint64_t*)0x20000720 = 0x8001; *(uint64_t*)0x20000728 = 0x7f; *(uint32_t*)0x20000730 = 9; *(uint32_t*)0x20000734 = 0xfffffffe; *(uint64_t*)0x20000738 = 6; *(uint64_t*)0x20000740 = 0x8001; *(uint64_t*)0x20000748 = 0xb5; *(uint64_t*)0x20000750 = 0; *(uint64_t*)0x20000758 = 5; *(uint64_t*)0x20000760 = 2; *(uint32_t*)0x20000768 = 9; *(uint32_t*)0x2000076c = 1; *(uint32_t*)0x20000770 = 0; *(uint32_t*)0x20000774 = 0x5eb40e3e; *(uint32_t*)0x20000778 = 1; *(uint32_t*)0x2000077c = 0; *(uint32_t*)0x20000780 = 0; *(uint32_t*)0x20000784 = 0xc81f; *(uint32_t*)0x20000788 = 2; *(uint32_t*)0x2000078c = 0; *(uint64_t*)0x20000ea0 = 0; *(uint64_t*)0x20000ea8 = 0; *(uint64_t*)0x20000eb0 = 0; *(uint64_t*)0x20000eb8 = 0; syz_fuse_handle_req(r[0], 0x20001040, 0x2000, 0x20000e40); { int i; for (i = 0; i < 64; i++) { syz_fuse_handle_req(r[0], 0x20001040, 0x2000, 0x20000e40); } } 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; }