// https://syzkaller.appspot.com/bug?id=03f4404da0737d2be5145ac3ed936712fcfd504c // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } static void setup_sysctl() { int cad_pid = fork(); if (cad_pid < 0) exit(1); if (cad_pid == 0) { for (;;) sleep(100); } char tmppid[32]; snprintf(tmppid, sizeof(tmppid), "%d", cad_pid); struct { const char* name; const char* data; } files[] = { {"/sys/kernel/debug/x86/nmi_longest_ns", "10000000000"}, {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, {"/proc/sys/net/core/bpf_jit_harden", "0"}, {"/proc/sys/kernel/kptr_restrict", "0"}, {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"}, {"/proc/sys/fs/mount-max", "100"}, {"/proc/sys/vm/oom_dump_tasks", "0"}, {"/proc/sys/debug/exception-trace", "0"}, {"/proc/sys/kernel/printk", "7 4 1 3"}, {"/proc/sys/kernel/keys/gc_delay", "1"}, {"/proc/sys/vm/oom_kill_allocating_task", "1"}, {"/proc/sys/kernel/ctrl-alt-del", "0"}, {"/proc/sys/kernel/cad_pid", tmppid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) { } } kill(cad_pid, SIGKILL); while (waitpid(cad_pid, NULL, 0) != cad_pid) ; } 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) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 5; 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 (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[2] = {0xffffffffffffffff, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: // socketpair$tipc arguments: [ // domain: const = 0x1e (8 bytes) // type: tipc_socket_types = 0x1 (8 bytes) // proto: const = 0x0 (4 bytes) // fds: ptr[out, tipc_pair] { // tipc_pair { // fd0: sock_tipc (resource) // fd1: sock_tipc (resource) // } // } // ] res = syscall(__NR_socketpair, /*domain=*/0x1eul, /*type=*/1ul, /*proto=*/0, /*fds=*/0x200000000000ul); if (res != -1) { NONFAILING(r[0] = *(uint32_t*)0x200000000000); NONFAILING(r[1] = *(uint32_t*)0x200000000004); } break; case 1: // sendmsg$tipc arguments: [ // fd: sock_tipc (resource) // msg: ptr[in, msghdr_tipc] { // msghdr_tipc { // msg_name: ptr[in, sockaddr_tipc] { // union sockaddr_tipc { // nameseq: sockaddr_tipc_t[TIPC_ADDR_NAMESEQ, // tipc_service_range] { // family: const = 0x1e (2 bytes) // addrtype: const = 0x1 (1 bytes) // scope: tipc_scope = 0x0 (1 bytes) // addr: tipc_service_range { // type: tipc_service_type = 0x0 (4 bytes) // lower: int32 = 0x0 (4 bytes) // upper: int32 = 0x0 (4 bytes) // } // } // } // } // msg_namelen: len = 0x10 (4 bytes) // pad = 0x0 (4 bytes) // msg_iov: ptr[in, array[iovec[in, array[int8]]]] { // array[iovec[in, array[int8]]] { // iovec[in, array[int8]] { // addr: ptr[in, buffer] { // buffer: {c3 e9 72 bd 85 a6 d8 41 36 d6 dd 55 04 8d 35 93 // a7 4f 33 8c e6 77 2a b9 a6 f6 40 41 c2 f6 fb be cd c0 8e // bc d3 19 2b 6a 53 66 2d ae 7c 8e 9c 66 5e 80 a5 d0 92 5f // 72 8d ca c3 0c 29 79 39 92 e5 88 95 26 53 d4 14 cb 8c cd // ab c3 87 67 fe e8 19 ec 5a f0 c5 ee 93 68 80 fe 85 49 b4 // ed 34 77 79 ca b4 ff d4 e0 b6 2c 53 a1 c0 1d b2 8f 2b 3f // 91 c3 42 11 c9 35 3b c1 de ce 61 51 19 17 c2 24 5f d6 6c // b8 df fe ac b4 d4 6d 62 7c 97 b4 98 bf 1f f6 b3 13 bf bc // 97 65 45 7c 83 17 71 d5 ee c7 99 7e c2 42 e4 50 5f 01 c1 // bb 3e 06 9b 2e 63 0f 42 a2 be 86 59 8a 61} (length 0xb6) // } // len: len = 0x64 (8 bytes) // } // iovec[in, array[int8]] { // addr: ptr[in, buffer] { // buffer: {56} (length 0x1) // } // len: len = 0xffffff6c (8 bytes) // } // iovec[in, array[int8]] { // addr: ptr[in, buffer] { // buffer: {3e ed 50 d0 12 57 19 a8 10 f8 8e 3f 47 18 6f e4 // da e7 41 82 df d1 09 a2 58 7c 47 97 41 0c 9b 8e 39 bd 3d // 9a a1 44 d5 90 86 47 c3 0c 8d b6 9b 5c 17 08 4c 9b 1b fb // b8 68 07 37 c4 f8 8a bc db c7 d2 94 d7 2a b1 b3 44 27 09 // 15 df 9d df 56 35 64 4c 35 1c 22 b2 9d 94 8a c4 10 6b ce // 71 07 57 0b ee d6 30 77 cf bc 98 ef 71 69 9e ae 65 d3 77 // 24 d9 95 b5 53 e7 a3 ad e6 19 b5 22 31 3a b3 82 ca f8 79 // fe b4 89 42 87 8e 60 5e e3 ee 28 72 79 4e 3a be 22 a3 f0 // 25 06 8b 62 8a 5d 92 46 80 92 a5 cc 64 9b bb d9 78 b5 77 // 2e 53 79 39 43 2a 50 21 22 23 5c ed 31 2d af d1 08 c9 ff // eb 0b 38 cc 16 da 94 18 ca 01 d4 85 a6 af b5 82 7d a4 df // 6e 11 21 ec 30 7d e1 4b b3 2b 6a 97 76 08 e4 57 6a 99 81 // 82 dd 93 d5 92 ff 43 e5 5b fd bb ce 23 ec d5 01 e4 3b 3e // 93 ef 8d 9d 01 71 1d ff 54 c3 01 e2 99 d3 80 1a 3c ff e6 // c9 88 3f bd 0e 47 12 4d c0 25 69 f6 2d 48 b8 78 fc b5 8c // e9 9f cf fc d2 a5 16 6e ff 3a d9 3c f1 d1 37 27 49 93 d8 // 6a 3b 37 30 d6 3d ed 75 9f 6c a8 8f a4 49 e5 57 5b 15 32 // 1e 5a 58 a1 f8 88 ee d7 46 6d b4 97 6c e3 5f 6d 2e fb 5a // d0 5d 99 a6 64 82 dc 60 7c b5 ac b2 4d 32 68 03 bd 33 75 // 19 cc 98 10 3f 59 c6 3b 59 62 cd 72 e4 49 7d 1b 00 81 7d // 6e 09 de 70 27 0a 09 b4 93 c2 22 66 17 b1 c9 ef 9d 50 6b // e0 0d 6e 07 f1 46 33 a9 66 f0 4e cc a9 0f b8 d2 b9 63 ad // 6f 38 17 93 5b d6 53 4f a3 da 1c 5d c4 68 78 9c bf 11 92 // f3 c0 bf f3 77 7f 1e dd 2a da 5d 35 f8 8f 12 f2 9e 95 2c // 44 44 5c e6 23 50 9d 66 81 1c 80 a9 e0 f1 3a d8 5a ba 37 // d8 6f f0 da 4d da 60 1d 9e 8a cb 26 42 33 bc 93 9f b0 56 // 31 66 12 cf f6 87 d5 c4 41 57 be 05 bc c8 8b 33 3f f2 a4 // 00 41 d9 8f 1a cf e6 e2 23 1a 84 e0 9b d7 a5 4a 04 42 cf // 87 ce 3e e8 fd 8d a3 9d a1 86 28 62 ae 40 fc 3c b3 05 5c // 8b 70 e6 2f 24 38 50 70 73 41 f5 14 26 bb 3e 71 c7 a4 ff // fe fa b0 60 db 78 60 00 61 8b 05 eb 08 7a 42 4a 2f 30 f6 // a2 32 ff 44 b6 05 f7 0c ee c0 a8 f7 0e 37 90 7f 6e 0b bb // a2 1e 9d 5b 7e cb 6d 28 77 42 b7 5c 10 1b a7 95 25 91 8c // 34 73 ea e3 8f 3c 17 72 49 df a8 81 66 61 c9 92 1f 0b 0c // 85 8d 53 ab 87 c8 40 7b 97 95 0c 84 21 11 00 2e dd 1d 1e // 80 b8 01 b4 95 da 28 bc d5 40 9b c9 71 e5 5d ab 18 57 e1 // 88 ac 97 28 ef c8 f9 a4 54 39 45 f8 6a de 13 b4 45 ea ce // cb bf 84 8a 96 41 0a c3 7c 57 e3 e9 e8 bc 8b 8f ad d5 59 // d2 25 c7 46 86 39 da 2b 5d 12 08 55 8b 51 e9 4c 14 fa a7 // 94 7a 7c 60 e8 1a 96 bb 5d 19 4c c7 28 9a db c0 2e bb 4b // 49 be 1f 1e fc 42 9d b2 f9 b7 9b 5a 22 91 9d ba 0c 35 34 // 10 42 c5 77 69 42 c5 23 65 36 7c 4b fc 95 b4 2b e3 83 cc // a7 10 71 61 de d7 e8 51 d0 12 6d a3 3d 58 1f 1e 2b 08 d0 // c0 61 e8 6d 31 e7 a8 3f 9b 51 c7 9b 40 34 c7 de da 76 97 // 03 4e 14 04 c6 e8 e4 59 f7 6c 2e fe 64 35 01 46 c7 43 7e // f8 08 e0 4c a1 4d f5 f6 f5 00 26 4f d9 77 27 2b bf 8f c0 // 96 77 4e 8e b6 1d 09 63 43 07 51 ac 14 25 a0 73 f8 43 46 // b0 eb a3 68 cb a7 fa 34 ad c4 20 80 0d 4f 99 92 72 80 eb // a1 99 f9 69 5c f8 81 24 fa fc 3a 2b 12 26 d2 f2 ab 3e a2 // 7c 69 a1 27 65 0c f5 c7 25 b5 4c 02 bd 87 29 03 3c f6 99 // ce 7f 03 0f 9a 34 42 05 62 44 da 3c fb 61 a8 12 6d ba 11 // 37 76 24 f3 9e b0 09 24 21 52 fd 7b 8b 88 de 7d d8 60 57 // f2 9b fc b7 b7 df 0e 65 e7 e9 ac 9e ea a4 1a fa 62 74 36 // 98 bf f0 3d 5b 2d 51 fb 6b ca 2d 92 29 4e 8e 17 7c fa 36 // 61 b2 6f 1c 04 0e 9b ed 98 3b 7b c0 aa 15 4e b9 c9 2e 4e // e2 50 91 31 8c 53 11 3a 1c 23 ac 62 d2 d7 15 04 cb a9 90 // 41 f2 9a 4f 33 21 33 29 2c f2 0a be c9 22 2a 2a cc a5 7c // ac 48 fa 6c 06 68 ee 5e ec b4 94 74 1a 64 d3 3b 01 1d cc // a7 46 96 d4 61 4c 5b 45 a5 d2 09 83 b1 70 8d 36 5e d3 ff // a6 0f 91 61 97 2a 61 1c 22 64 2c 3c 25 9b 41 f9 43 f6 d7 // a8 b6 0f 28 4d 32 5e 38 fe 76 f0 64 5e 06 9f f7 0c ae 38 // 85 0c cf 97 31 93 b6 23 2c 98 7d f2 62 39 a5 74 69 1f 7f // 07 ff fa 6d ea e1 eb 03 24 fe 54 65 73 c3 6f 2a 2c 31 cd // 44 25 17 a9 b0 36 ae 6a 2a 49 1e 73 43 86 46 93 c1 07 a5 // dc 25 85 82 08 63 c1 46 c1 ba 6c aa 4f ea 9b 87 d5 67 71 // 6f 4c 8c a1 a9 d2 84 80 55 cd 75 05 12 d3 b7 41 5d 09 00 // 19 dc 8a 04 a1 a1 d2 89 31 09 3c d8 f0 0e 94 c4 07 ca 1f // a2 a5 ce 90 3d 9d f2 6e 00 8c 07 cd 13 af a7 83 22 0e 1b // d5 e6 b6 06 45 f3 db b6 ec b4 15 6f ed af a2 dd 25 49 8c // 6a 99 d9 4f 0b 38 12 5e a7 74 1b 75 10 9d ca c9 f8 06 35 // f7 9f 5c 8a 04 83 bb 9f 05 a3 a5 bf 72 1c 75 41 ed b2 52 // 44 9f 8b 13 e6 3c 37 0a 61 46 33 2f 03 ca 1f 1b 6f e0 be // d9 84 f1 37 44 bb 7f a0 fe 32 2e 83 dd f9 ff b2 08 3e 94 // f3 36 04 a0 a1 99 22 0c 45 0d ad 94 bf 15 48 05 e7 f9 e4 // 35 0c a2 d8 1a df 29 78 c8 7d cc 8a 8a 7d 56 29 7e c1 24 // bf ef 0d 28 f3 57 77 20 5e 97 32 72 c8 7e 01 07 0f 14 f5 // b1 4d aa 3b 51 04 d9 ff 6b 29 6c 4f 16 ed 49 eb 42 d3 5e // 7b a3 bc cb 7a 26 c3 3a 26 3d f8 8a ad d5 96 e9 d9 de 0a // bb d4 d4 49 df 11 08 1f 2c d6 2e 1d 89 62 b9 b9 fe b2 5a // 3b 8e 03 53 7d 61 a6 1c 11 ac 22 b7 21 1d 12 c8 4e 60 a6 // ab cc 21 9e 55 8b 25 13 d8 c5 30 b3 c7 a5 7c dc 47 de 54 // 5a af bb 2a 13 c0 e6 c7 5b 1b 92 fa 24 1c 71 3c 83 a0 9c // 92 b2 b6 1d 56 51 20 37 2a 91 43 41 55 83 c9 59 6f 27 a6 // 63 d4 96 7c d6 53 b0 8c eb d6 cb 96 c1 f0 dc 80 d5 72 67 // ac 9a 82 81 d7 14 9b de 88 08 28 ee 27 d6 9a 68 18 db 58 // 32 0d b2 9d 1b 04 4e af 6a b8 a5 10 8b c5 22 de 40 69 90 // b5 39 3b 1f 7e 7b ab 71 bf 6c f8 ee d1 cd 59 c7 60 7d 66 // 2e 8b 31 3f 5c 4f ce 0f 59 b1 02 73 71 38 10 11 b6 3d d5 // b2 b0 97 39 08 2c 0d 62 ff ad 96 e3 01 53 a3 95 23 49 37 // d3 77 c3 2f e7 af 82 ac a3 a1 9d 0e bc 4a 5c 5f b5 ff 19 // 0f 14 d5 69 5c 70 3b 57 1f b4 bf 03 75 66 35 ca fc 6c f6 // 26 7e ab 83 6c 34 7a 9d 07 e8 08 9f c1 05 34 69 34 cf 33 // 64 e5 be 37 0b 3c 42 b9 4b c5 ae 3d 17 a8 17 39 85 66 a2 // 95 32 51 eb 91 69 7d 67 27 81 45 df 9a 4b 91 7b cc a1 bf // 21 17 80 b2 2f 4c aa cf cb 76 04 c8 4f 94 3d 05 f6 fd f8 // ed bd 25 8d 7d 8d bf 84 f9 d9 9e 57 47 2c 5b 1c 23 37 d7 // 49 a1 f3 45 e6 62 e2 53 6d 23 c7 a6 3b bb bf 00 f8 b5 b0 // a2 10 6a 03 42 ab 27 b9 a1 0b 82 e8 26 68 cd 49 e0 cb b0 // 9d 7b e0 21 76 45 f1 dd a3 be 59 c8 23 2f a2 90 d3 47 91 // cd a5 2a a5 b5 ce c6 33 9a b9 6a 2e b3 f5 32 8c c7 c0 e6 // 71 7c 28 24 34 45 47 a2 ed 51 8f 6b 2b 4e 4f e5 b6 84 59 // 6a a6 a9 d3 98 8f c5 d5 ff 4c b4 6c ec 99 d9 51 b8 38 6b // 10 94 9a 16 3a f9 74 b7 54 3d f9 7b 48 82 a4 ed 60 e9 27 // a1 de b6 7c 5f 81 42 35 be f6 5f ea 79 a2 c7 12 81 5b e7 // 40 3c 93 a3 70 7f b9 0d 46 04 ec 3a 6a 3b 09 28 f2 53 f6 // ab 6b d5 6c 95 8e 02 6c 8c 58 17 2c 4a c2 a3 ef e2 ec d5 // ce a7 0c 83 13 f9 ac 2d 63 8b c2 96 ba 99 e2 ca 86 d2 fd // 06 b5 40 2c dc dd c3 f3 c9 84 5d 5a e7 7f 6f 36 96 3b 91 // e8 f6 cd cc d1 7a be 8d 40 ed 02 46 3a f4 bb 0e 49 63 44 // f3 50 09 7f 1c c1 33 13 fa 1e 17 2b 63 55 6e d2 b8 a8 12 // 1c 01 a5 fb 34 3f f7 76 78 21 62 6f c4 9b 0d 6b d5 22 e1 // c9 bf 13 7d 5a 5b cc b4 bc 8d bb 64 c8 3a 82 ef 6c 28 94 // f3 89 6c 9f 6b f0 c3 76 40 11 d5 3e eb 6d b9 ea 9d ae 22 // d3 eb cc a4 94 2d 58 28 c0 bc a0 d9 ea 37 70 1d 5a 06 c0 // 66 ac 4f e3 18 e1 1e 9c 0d 6c 65 8a c8 10 fb 5d 78 36 cf // ff e4 cc bb 09 34 e5 56 7d 74 69 59 80 a1 56 d4 bf 1c 18 // 86 1c 5a 29 cc d3 49 99 9d c2 05 62 d0 0e 1f 6c 18 51 ae // 56 35 41 08 64 38 d6 0b 97 5c 8c eb 46 64 14 ff 60 ef a0 // b2 de e7 90 fd 06 59 ff a9 8b 92 41 4c 13 d5 a6 82 53 68 // f5 6c 49 84 41 22 05 04 1c d8 e0 06 c7 12 7d 43 95 ec df // fb 5a dd f8 0e f9 38 ce 54 a3 67 15 4c 4f c2 86 d5 f9 69 // 32 5c 12 b1 36 55 a9 a9 56 dd 3b 98 28 1f 53 7e 83 76 69 // fc 55 d8 93 06 76 e8 07 aa 8c d0 46 e0 f4 58 3d 59 f8 6c // b9 9f 3f 7a 7d dd e1 fb 39 11 1f de c7 67 7d 2f ee 4b 8f // 48 14 a5 de f5 eb cc 67 c6 53 38 4c e8 0e af fd 88 04 05 // f7 ed f8 fd 3e a0 49 f0 40 59 5d f4 a7 5e 2f 89 2e 7a 85 // e0 ba 35 1f b8 d2 63 bf ff 71 68 bb 85 01 7b 36 0f cd 2b // a8 93 46 68 2a 6e a7 cc c4 6a fb db 5a b4 44 e3 f4 77 23 // 8b 2a b5 03 bd e9 14 d3 cf 17 89 53 9c de 9c 06 21 15 2c // d9 7b ff 9f 23 5d 88 a1 ef 4e a4 30 9d b3 a0 5d 40 1a f7 // fb 82 78 4b 05 0e f5 29 da b4 f1 f0 03 eb 29 71 0a 96 2f // 75 38 c5 21 e6 17 e2 f0 ef ac 36 18 2d 09 98 5e 1d 72 5c // c3 8c 38 33 a5 37 42 a0 2f 76 fb 28 54 a9 e4 5f 0f eb ac // f3 bd a8 3f 11 18 3e f5 b9 fe f0 2e bc df 56 d4 10 4b 17 // 5b ad 93 7d 8f 61 96 4f 97 d6 73 57 7c dc bb b4 8d 8e b6 // 2b 06 3e e6 56 3b 9f f0 53 71 9b af f8 71 bc d8 38 22 d8 // 65 b2 f7 ef 02 30 76 42 5a c5 cd 71 b1 f2 30 9d e0 c6 f1 // 4c c9 c4 d3 e8 fa d9 45 f7 56 a7 c8 a0 84 ea 1b fd f5 ac // 6e 74 00 43 e7 f7 bd ac a0 67 74 b0 84 ae 31 4c 26 36 52 // 9d 4f dc d9 65 c7 f8 c0 71 56 57 26 20 b8 27 d6 94 ef dc // 9d 2b fc 5a a9 39 12 20 a8 37 65 f2 c7 1f cd 48 d4 ac ae // d6 0a fb 53 d1 01 3f a3 b1 5e 94 8e c4 15 9f 7d 13 0e f8 // 5b 59 40 18 34 6e 99 03 4c 18 73 82 85 22 3e a5 3a 6b 1d // 5c f1 1a 60 7d e2 e1 96 08 ba 03 ec 97 0a 91 5b 77 38 24 // 26 1f 3f c9 31 dd 6d 3b 93 4d 89 f0 7b af 14 77 63 14 c3 // ee b8 cd 05 37 ef 57 36 f5 65 fb d1 4e 52 0d 4a b2 f7 7e // d9 59 7b 76 ff 91 f8 d1 f9 9e bd 6e 47 3e fd a7 ac cb 27 // 39 75 a0 69 44 d1 03 70 32 12 99 92 b9 94 ca 79 1a 09 b4 // d8 39 80 a1 e4 94 b0 f9 70 98 df 5f 6f b6 bb b0 27 22 ad // b1 1d c3 19 c5 65 c2 c3 63 cb d1 9d 9f b3 ef b4 61 3b 62 // d6 58 4c d5 3f 7b d8 0e 3e 89 30 4f 44 4c e9 dd 18 35 66 // 1e 3b b4 de 02 cc f5 68 a2 a5 da af 0d 56 89 8d 42 86 c3 // fb 62 e2 2a f6 2d 7a c3 18 68 58 34 46 7f 33 75 61 dd e2 // e0 c1 e2 82 7c df fc f4 2c 17 72 8e e6 4b 3f f4 cc c0 22 // 75 90 ba dd 0b d7 e4 48 b8 cc a0 89 2d 6a 5e 01 30 d2 ac // 66 5f 47 c6 b2 8d aa 10 1c 1b 31 98 69 bd d3 9f a9 24 d6 // d9 ba 7d 72 fe da 5f 21 ac 78 64 1c 7d 48 01 d4 1c 78 79 // 72 1b 3b e4 da b4 0d 9c 4a 78 55 24 40 10 1f 37 34 89 cc // 52 40 b0 14 4a 9c e3 26 91 a7 84 b6 df e9 71 a2 1b b5 98 // 0f f6 7d a2 d1 bb 90 b2 23 c9 e1 92 a3 9c 1a ea dd 1f 5c // 79 08 11 07 9c 0b 51 a9 71 05 c9 9b 6f 95 d7 1b b3 ea 47 // c3 3d 9d cb 0a 53 c9 29 c4 44 99 e1 84 a3 cd 72 2c 90 8d // 3b 0d 15 7e 28 ff de b2 ed 71 92 e7 80 d9 6a 7a 2f 0f d5 // a8 7b dc 97 3e 04 9d a0 ca f9 31 f2 6f 5a 21 81 3e 2e 60 // 2c eb 22 59 99 7e 02 05 ce 48 fd 94 24 bd 6d 4d 75 dd 43 // 01 f4 29 ee 30 74 5c d8 39 a4 0d be ab 4c 3d b2 f0 f1 0b // ba ea 07 1c a4 1d 13 92 38 56 81 73 0a 36 78 a5 f6 0f 60 // 4d be 19 cb 9d 7d d2 34 33 7e 32 74 51 b8 cc 65 39 4a f3 // 99 43 2e f7 fc 37 65 d0 55 87 4e bd ca 14 e5 99 92 92 d6 // f7 2f 31 e9 2b ac f2 5d b5 ef 8f 52 12 95 2c 19 10 de 06 // dd be 16 87 a0 e1 83 79 22 f2 22 82 89 91 6e d3 ae b7 b9 // cc 24 da 3a e4 71 39 e3 71 93 0a fa 6d 35 73 df 67 32 c2 // 6c 0c 7a e0 6d 9c ed fa 77 16 07 11 bc b0 6e 65 53 33 8d // ea e4 c5 73 1c f5 3c c1 54 11 30 96 d0 2f 30 36 d7 d9 ed // fc dc 33 1e 4b b8 60 c5 20 84 89 21 2e 90 4e ab 70 e7 f8 // 60 b0 37 98 95 cb de cb f7 a0 b7 a2 5e 5b 85 3c 7d be 08 // a4 e2 96 a3 0a fe c8 cf 5a 9f 6e a4 ae f3 2a 50 86 55 d5 // 39 a7 70 b2 1e 66 0c 9e e1 d7 68 8c 56 ab eb 7c f1 af cc // c8 d5 97 80 cf 26 31 25 89 e0 c8 e1 bc 00 ad 7b 13 25 cd // 9a 5d d6 92 46 e0 b3 34 07 c3 81 ea 09 26 51 54 ae c2 97 // e4 cc df 97 85 a1 04 2a 83 e7 7c 13 d4 ce 43 60 78 2f 24 // 28 f9 91 6b 5c d1 23 b0 89 eb 68 3d 30 c1 e8 95 b9 94 4a // a9 05 a1 a5 b5 23 01 d8 cc 5e 47 41 83 4e ad 6e bd b5 dc // 05 c9 c4 9c 5e 88 3e 99 d4 0b 98 38 03 7b ea f8 76 53 4d // 74 78 56 10 3e 59 ca f6 26 6f bb e7 60 b6 ef 83 d0 04 63 // 4b 74 f1 4f 8e b4 ae f9 3c 4c c9 cb bd 78 d8 3d 53 2c 70 // fe ef 51 ea 3f 17 0b 25 d8 1a 6a 9b 07 4b fc a7 e9 b3 77 // 1b f8 35 17 e0 dd 9d 06 00 f7 0b 86 b2 0f 61 fe 36 07 6f // 8b ad a3 34 b2 39 0f a9 54 97 3b c9 01 61 9a 3c fd 03 93 // 49 cb 32 86 25 f4 95 ab 28 8d bd d6 db fd 02 2c 2a 83 f5 // 9e 0b 99 86 19 a1 2e 35 89 1b 5a e9 e8 3a 71 76 55 07 b4 // a5 71 cd 22 41 e5 88 5c 70 52 44 c1 02 26 88 be f7 c5 06 // 5f bc f2 19 fc 01 75 3a db 61 1b 3f bc 09 40 3d cb 10 a4 // f9 9d 78 86 67 ef f7 5f a2 70 74 ca 84 81 a6 33 53 0e 26 // 16 3c cf 7d ad a0 49 d2 3e 71 7e 06 7b 6f a5 b2 f6 52 bc // 50 ab da 9e 7c cd c5 f2 f3 c3 5e cc 2c 44 31 c8 19 c9 69 // 1b e4 42 2e 37 97 50 77 4e 9f 39 da e0 6f 26 42 3c 8a 42 // 78 78 9c 9f 31 11 b4 3f 6d d2 5b 0a d4 7c 4c c5 fd a3 f3 // ed 82 07 9c 93 66 e0 ad ce d8 83 48 8f 42 9c 1d 7e 1b 35 // 1f d0 bb 20 4d d7 97 7e f2 24 c4 df 6d 7a 5f 76 97 bc 65 // 00 a7 d0 3a 8a 91 41 54 77 9f a7 09 2b f1 be 6b ad 40 92 // 36 7c e5 d2 95 a5 d5 d0 e7 c4 69 f3 72 ca 20 11 d6 12 63 // 70 25 e8 9f 17 8a e9 ad a0 c5 b7 3b cb 7d 7c 03 4f f5 95 // 26 3c d4 21 6e 3c 76 ba 5f 3d 81 93 2a 08 8a 90 bf 80 43 // e8 77 e2 99 c6 70 ef 16 22 a0 98 d5 51 9d 9a dc 4e e7 d4 // cd 00 e5 93 4a 43 75 fa 83 fd b8 12 14 b8 92 48 2b 31 bd // de 59 a7 0a af 25 cb 7f 41 7c 3a 2a 91 c4 e5 4b 48 14 9f // 6c 41 d9 d3 96 ee 6f f1 3e 30 28 c6 4a 7c 9b 1f 2e 7c 6e // 67 18 4a 3d 52 d6 f5 70 db 3d 22 5c 94 74 23 c4 c6 53 3f // 22 df 57 d1 5c 5e 5a 31 83 42 2b d3 78 b0 6f e4 73 2a 94 // 01 dc b1 98 40 fb 8f a5 c5 0a 0f f4 97 fe f3 62 c5 07 75 // 3e 46 b8 88 1d 3e 76 7f 3b 1d 89 3a 38 05 94 1c 94 f2 ef // a0 5c e3 4b 9e a8 1d 71 69 84 af 68 34 23 0d 47 07 a8 70 // 89 d4 07 79 50 3e e6 a9 bb 24 5d 7d 99 7f 14 ac b8 0e 89 // 73 1c 04 2b bb be 3d cd 05 17 7b 0e e0 ee c2 34 55 83 0e // f5 b6 5a ca 35 7f 2b 0b 88 7e 0b 98 21 c0} (length 0x1000) // } // len: len = 0x1000 (8 bytes) // } // iovec[in, array[int8]] { // addr: ptr[in, buffer] { // buffer: {b7 68 eb 20 30 4f 2f dc 5a 96 94 a4 86 78 40 d9 // 31 70 ca 1a 86 40 6f} (length 0x17) // } // len: len = 0xfffffec0 (8 bytes) // } // } // } // msg_iovlen: len = 0x4 (8 bytes) // msg_control: nil // msg_controllen: bytesize = 0x0 (8 bytes) // msg_flags: send_flags = 0x8000 (4 bytes) // pad = 0x0 (4 bytes) // } // } // f: send_flags = 0x0 (8 bytes) // ] NONFAILING(*(uint64_t*)0x2000000003c0 = 0x200000000180); NONFAILING(*(uint16_t*)0x200000000180 = 0x1e); NONFAILING(*(uint8_t*)0x200000000182 = 1); NONFAILING(*(uint8_t*)0x200000000183 = 0); NONFAILING(*(uint32_t*)0x200000000184 = 0); NONFAILING(*(uint32_t*)0x200000000188 = 0); NONFAILING(*(uint32_t*)0x20000000018c = 0); NONFAILING(*(uint32_t*)0x2000000003c8 = 0x10); NONFAILING(*(uint64_t*)0x2000000003d0 = 0x200000000380); NONFAILING(*(uint64_t*)0x200000000380 = 0x200000000480); NONFAILING(memcpy( (void*)0x200000000480, "\xc3\xe9\x72\xbd\x85\xa6\xd8\x41\x36\xd6\xdd\x55\x04\x8d\x35\x93\xa7" "\x4f\x33\x8c\xe6\x77\x2a\xb9\xa6\xf6\x40\x41\xc2\xf6\xfb\xbe\xcd\xc0" "\x8e\xbc\xd3\x19\x2b\x6a\x53\x66\x2d\xae\x7c\x8e\x9c\x66\x5e\x80\xa5" "\xd0\x92\x5f\x72\x8d\xca\xc3\x0c\x29\x79\x39\x92\xe5\x88\x95\x26\x53" "\xd4\x14\xcb\x8c\xcd\xab\xc3\x87\x67\xfe\xe8\x19\xec\x5a\xf0\xc5\xee" "\x93\x68\x80\xfe\x85\x49\xb4\xed\x34\x77\x79\xca\xb4\xff\xd4\xe0\xb6" "\x2c\x53\xa1\xc0\x1d\xb2\x8f\x2b\x3f\x91\xc3\x42\x11\xc9\x35\x3b\xc1" "\xde\xce\x61\x51\x19\x17\xc2\x24\x5f\xd6\x6c\xb8\xdf\xfe\xac\xb4\xd4" "\x6d\x62\x7c\x97\xb4\x98\xbf\x1f\xf6\xb3\x13\xbf\xbc\x97\x65\x45\x7c" "\x83\x17\x71\xd5\xee\xc7\x99\x7e\xc2\x42\xe4\x50\x5f\x01\xc1\xbb\x3e" "\x06\x9b\x2e\x63\x0f\x42\xa2\xbe\x86\x59\x8a\x61", 182)); NONFAILING(*(uint64_t*)0x200000000388 = 0x64); NONFAILING(*(uint64_t*)0x200000000390 = 0x200000000300); NONFAILING(memset((void*)0x200000000300, 86, 1)); NONFAILING(*(uint64_t*)0x200000000398 = 0xffffff6c); NONFAILING(*(uint64_t*)0x2000000003a0 = 0x200000001600); NONFAILING(memcpy( (void*)0x200000001600, "\x3e\xed\x50\xd0\x12\x57\x19\xa8\x10\xf8\x8e\x3f\x47\x18\x6f\xe4\xda" "\xe7\x41\x82\xdf\xd1\x09\xa2\x58\x7c\x47\x97\x41\x0c\x9b\x8e\x39\xbd" "\x3d\x9a\xa1\x44\xd5\x90\x86\x47\xc3\x0c\x8d\xb6\x9b\x5c\x17\x08\x4c" "\x9b\x1b\xfb\xb8\x68\x07\x37\xc4\xf8\x8a\xbc\xdb\xc7\xd2\x94\xd7\x2a" "\xb1\xb3\x44\x27\x09\x15\xdf\x9d\xdf\x56\x35\x64\x4c\x35\x1c\x22\xb2" "\x9d\x94\x8a\xc4\x10\x6b\xce\x71\x07\x57\x0b\xee\xd6\x30\x77\xcf\xbc" "\x98\xef\x71\x69\x9e\xae\x65\xd3\x77\x24\xd9\x95\xb5\x53\xe7\xa3\xad" "\xe6\x19\xb5\x22\x31\x3a\xb3\x82\xca\xf8\x79\xfe\xb4\x89\x42\x87\x8e" "\x60\x5e\xe3\xee\x28\x72\x79\x4e\x3a\xbe\x22\xa3\xf0\x25\x06\x8b\x62" "\x8a\x5d\x92\x46\x80\x92\xa5\xcc\x64\x9b\xbb\xd9\x78\xb5\x77\x2e\x53" "\x79\x39\x43\x2a\x50\x21\x22\x23\x5c\xed\x31\x2d\xaf\xd1\x08\xc9\xff" "\xeb\x0b\x38\xcc\x16\xda\x94\x18\xca\x01\xd4\x85\xa6\xaf\xb5\x82\x7d" "\xa4\xdf\x6e\x11\x21\xec\x30\x7d\xe1\x4b\xb3\x2b\x6a\x97\x76\x08\xe4" "\x57\x6a\x99\x81\x82\xdd\x93\xd5\x92\xff\x43\xe5\x5b\xfd\xbb\xce\x23" "\xec\xd5\x01\xe4\x3b\x3e\x93\xef\x8d\x9d\x01\x71\x1d\xff\x54\xc3\x01" "\xe2\x99\xd3\x80\x1a\x3c\xff\xe6\xc9\x88\x3f\xbd\x0e\x47\x12\x4d\xc0" "\x25\x69\xf6\x2d\x48\xb8\x78\xfc\xb5\x8c\xe9\x9f\xcf\xfc\xd2\xa5\x16" "\x6e\xff\x3a\xd9\x3c\xf1\xd1\x37\x27\x49\x93\xd8\x6a\x3b\x37\x30\xd6" "\x3d\xed\x75\x9f\x6c\xa8\x8f\xa4\x49\xe5\x57\x5b\x15\x32\x1e\x5a\x58" "\xa1\xf8\x88\xee\xd7\x46\x6d\xb4\x97\x6c\xe3\x5f\x6d\x2e\xfb\x5a\xd0" "\x5d\x99\xa6\x64\x82\xdc\x60\x7c\xb5\xac\xb2\x4d\x32\x68\x03\xbd\x33" "\x75\x19\xcc\x98\x10\x3f\x59\xc6\x3b\x59\x62\xcd\x72\xe4\x49\x7d\x1b" "\x00\x81\x7d\x6e\x09\xde\x70\x27\x0a\x09\xb4\x93\xc2\x22\x66\x17\xb1" "\xc9\xef\x9d\x50\x6b\xe0\x0d\x6e\x07\xf1\x46\x33\xa9\x66\xf0\x4e\xcc" "\xa9\x0f\xb8\xd2\xb9\x63\xad\x6f\x38\x17\x93\x5b\xd6\x53\x4f\xa3\xda" "\x1c\x5d\xc4\x68\x78\x9c\xbf\x11\x92\xf3\xc0\xbf\xf3\x77\x7f\x1e\xdd" "\x2a\xda\x5d\x35\xf8\x8f\x12\xf2\x9e\x95\x2c\x44\x44\x5c\xe6\x23\x50" "\x9d\x66\x81\x1c\x80\xa9\xe0\xf1\x3a\xd8\x5a\xba\x37\xd8\x6f\xf0\xda" "\x4d\xda\x60\x1d\x9e\x8a\xcb\x26\x42\x33\xbc\x93\x9f\xb0\x56\x31\x66" "\x12\xcf\xf6\x87\xd5\xc4\x41\x57\xbe\x05\xbc\xc8\x8b\x33\x3f\xf2\xa4" "\x00\x41\xd9\x8f\x1a\xcf\xe6\xe2\x23\x1a\x84\xe0\x9b\xd7\xa5\x4a\x04" "\x42\xcf\x87\xce\x3e\xe8\xfd\x8d\xa3\x9d\xa1\x86\x28\x62\xae\x40\xfc" "\x3c\xb3\x05\x5c\x8b\x70\xe6\x2f\x24\x38\x50\x70\x73\x41\xf5\x14\x26" "\xbb\x3e\x71\xc7\xa4\xff\xfe\xfa\xb0\x60\xdb\x78\x60\x00\x61\x8b\x05" "\xeb\x08\x7a\x42\x4a\x2f\x30\xf6\xa2\x32\xff\x44\xb6\x05\xf7\x0c\xee" "\xc0\xa8\xf7\x0e\x37\x90\x7f\x6e\x0b\xbb\xa2\x1e\x9d\x5b\x7e\xcb\x6d" "\x28\x77\x42\xb7\x5c\x10\x1b\xa7\x95\x25\x91\x8c\x34\x73\xea\xe3\x8f" "\x3c\x17\x72\x49\xdf\xa8\x81\x66\x61\xc9\x92\x1f\x0b\x0c\x85\x8d\x53" "\xab\x87\xc8\x40\x7b\x97\x95\x0c\x84\x21\x11\x00\x2e\xdd\x1d\x1e\x80" "\xb8\x01\xb4\x95\xda\x28\xbc\xd5\x40\x9b\xc9\x71\xe5\x5d\xab\x18\x57" "\xe1\x88\xac\x97\x28\xef\xc8\xf9\xa4\x54\x39\x45\xf8\x6a\xde\x13\xb4" "\x45\xea\xce\xcb\xbf\x84\x8a\x96\x41\x0a\xc3\x7c\x57\xe3\xe9\xe8\xbc" "\x8b\x8f\xad\xd5\x59\xd2\x25\xc7\x46\x86\x39\xda\x2b\x5d\x12\x08\x55" "\x8b\x51\xe9\x4c\x14\xfa\xa7\x94\x7a\x7c\x60\xe8\x1a\x96\xbb\x5d\x19" "\x4c\xc7\x28\x9a\xdb\xc0\x2e\xbb\x4b\x49\xbe\x1f\x1e\xfc\x42\x9d\xb2" "\xf9\xb7\x9b\x5a\x22\x91\x9d\xba\x0c\x35\x34\x10\x42\xc5\x77\x69\x42" "\xc5\x23\x65\x36\x7c\x4b\xfc\x95\xb4\x2b\xe3\x83\xcc\xa7\x10\x71\x61" "\xde\xd7\xe8\x51\xd0\x12\x6d\xa3\x3d\x58\x1f\x1e\x2b\x08\xd0\xc0\x61" "\xe8\x6d\x31\xe7\xa8\x3f\x9b\x51\xc7\x9b\x40\x34\xc7\xde\xda\x76\x97" "\x03\x4e\x14\x04\xc6\xe8\xe4\x59\xf7\x6c\x2e\xfe\x64\x35\x01\x46\xc7" "\x43\x7e\xf8\x08\xe0\x4c\xa1\x4d\xf5\xf6\xf5\x00\x26\x4f\xd9\x77\x27" "\x2b\xbf\x8f\xc0\x96\x77\x4e\x8e\xb6\x1d\x09\x63\x43\x07\x51\xac\x14" "\x25\xa0\x73\xf8\x43\x46\xb0\xeb\xa3\x68\xcb\xa7\xfa\x34\xad\xc4\x20" "\x80\x0d\x4f\x99\x92\x72\x80\xeb\xa1\x99\xf9\x69\x5c\xf8\x81\x24\xfa" "\xfc\x3a\x2b\x12\x26\xd2\xf2\xab\x3e\xa2\x7c\x69\xa1\x27\x65\x0c\xf5" "\xc7\x25\xb5\x4c\x02\xbd\x87\x29\x03\x3c\xf6\x99\xce\x7f\x03\x0f\x9a" "\x34\x42\x05\x62\x44\xda\x3c\xfb\x61\xa8\x12\x6d\xba\x11\x37\x76\x24" "\xf3\x9e\xb0\x09\x24\x21\x52\xfd\x7b\x8b\x88\xde\x7d\xd8\x60\x57\xf2" "\x9b\xfc\xb7\xb7\xdf\x0e\x65\xe7\xe9\xac\x9e\xea\xa4\x1a\xfa\x62\x74" "\x36\x98\xbf\xf0\x3d\x5b\x2d\x51\xfb\x6b\xca\x2d\x92\x29\x4e\x8e\x17" "\x7c\xfa\x36\x61\xb2\x6f\x1c\x04\x0e\x9b\xed\x98\x3b\x7b\xc0\xaa\x15" "\x4e\xb9\xc9\x2e\x4e\xe2\x50\x91\x31\x8c\x53\x11\x3a\x1c\x23\xac\x62" "\xd2\xd7\x15\x04\xcb\xa9\x90\x41\xf2\x9a\x4f\x33\x21\x33\x29\x2c\xf2" "\x0a\xbe\xc9\x22\x2a\x2a\xcc\xa5\x7c\xac\x48\xfa\x6c\x06\x68\xee\x5e" "\xec\xb4\x94\x74\x1a\x64\xd3\x3b\x01\x1d\xcc\xa7\x46\x96\xd4\x61\x4c" "\x5b\x45\xa5\xd2\x09\x83\xb1\x70\x8d\x36\x5e\xd3\xff\xa6\x0f\x91\x61" "\x97\x2a\x61\x1c\x22\x64\x2c\x3c\x25\x9b\x41\xf9\x43\xf6\xd7\xa8\xb6" "\x0f\x28\x4d\x32\x5e\x38\xfe\x76\xf0\x64\x5e\x06\x9f\xf7\x0c\xae\x38" "\x85\x0c\xcf\x97\x31\x93\xb6\x23\x2c\x98\x7d\xf2\x62\x39\xa5\x74\x69" "\x1f\x7f\x07\xff\xfa\x6d\xea\xe1\xeb\x03\x24\xfe\x54\x65\x73\xc3\x6f" "\x2a\x2c\x31\xcd\x44\x25\x17\xa9\xb0\x36\xae\x6a\x2a\x49\x1e\x73\x43" "\x86\x46\x93\xc1\x07\xa5\xdc\x25\x85\x82\x08\x63\xc1\x46\xc1\xba\x6c" "\xaa\x4f\xea\x9b\x87\xd5\x67\x71\x6f\x4c\x8c\xa1\xa9\xd2\x84\x80\x55" "\xcd\x75\x05\x12\xd3\xb7\x41\x5d\x09\x00\x19\xdc\x8a\x04\xa1\xa1\xd2" "\x89\x31\x09\x3c\xd8\xf0\x0e\x94\xc4\x07\xca\x1f\xa2\xa5\xce\x90\x3d" "\x9d\xf2\x6e\x00\x8c\x07\xcd\x13\xaf\xa7\x83\x22\x0e\x1b\xd5\xe6\xb6" "\x06\x45\xf3\xdb\xb6\xec\xb4\x15\x6f\xed\xaf\xa2\xdd\x25\x49\x8c\x6a" "\x99\xd9\x4f\x0b\x38\x12\x5e\xa7\x74\x1b\x75\x10\x9d\xca\xc9\xf8\x06" "\x35\xf7\x9f\x5c\x8a\x04\x83\xbb\x9f\x05\xa3\xa5\xbf\x72\x1c\x75\x41" "\xed\xb2\x52\x44\x9f\x8b\x13\xe6\x3c\x37\x0a\x61\x46\x33\x2f\x03\xca" "\x1f\x1b\x6f\xe0\xbe\xd9\x84\xf1\x37\x44\xbb\x7f\xa0\xfe\x32\x2e\x83" "\xdd\xf9\xff\xb2\x08\x3e\x94\xf3\x36\x04\xa0\xa1\x99\x22\x0c\x45\x0d" "\xad\x94\xbf\x15\x48\x05\xe7\xf9\xe4\x35\x0c\xa2\xd8\x1a\xdf\x29\x78" "\xc8\x7d\xcc\x8a\x8a\x7d\x56\x29\x7e\xc1\x24\xbf\xef\x0d\x28\xf3\x57" "\x77\x20\x5e\x97\x32\x72\xc8\x7e\x01\x07\x0f\x14\xf5\xb1\x4d\xaa\x3b" "\x51\x04\xd9\xff\x6b\x29\x6c\x4f\x16\xed\x49\xeb\x42\xd3\x5e\x7b\xa3" "\xbc\xcb\x7a\x26\xc3\x3a\x26\x3d\xf8\x8a\xad\xd5\x96\xe9\xd9\xde\x0a" "\xbb\xd4\xd4\x49\xdf\x11\x08\x1f\x2c\xd6\x2e\x1d\x89\x62\xb9\xb9\xfe" "\xb2\x5a\x3b\x8e\x03\x53\x7d\x61\xa6\x1c\x11\xac\x22\xb7\x21\x1d\x12" "\xc8\x4e\x60\xa6\xab\xcc\x21\x9e\x55\x8b\x25\x13\xd8\xc5\x30\xb3\xc7" "\xa5\x7c\xdc\x47\xde\x54\x5a\xaf\xbb\x2a\x13\xc0\xe6\xc7\x5b\x1b\x92" "\xfa\x24\x1c\x71\x3c\x83\xa0\x9c\x92\xb2\xb6\x1d\x56\x51\x20\x37\x2a" "\x91\x43\x41\x55\x83\xc9\x59\x6f\x27\xa6\x63\xd4\x96\x7c\xd6\x53\xb0" "\x8c\xeb\xd6\xcb\x96\xc1\xf0\xdc\x80\xd5\x72\x67\xac\x9a\x82\x81\xd7" "\x14\x9b\xde\x88\x08\x28\xee\x27\xd6\x9a\x68\x18\xdb\x58\x32\x0d\xb2" "\x9d\x1b\x04\x4e\xaf\x6a\xb8\xa5\x10\x8b\xc5\x22\xde\x40\x69\x90\xb5" "\x39\x3b\x1f\x7e\x7b\xab\x71\xbf\x6c\xf8\xee\xd1\xcd\x59\xc7\x60\x7d" "\x66\x2e\x8b\x31\x3f\x5c\x4f\xce\x0f\x59\xb1\x02\x73\x71\x38\x10\x11" "\xb6\x3d\xd5\xb2\xb0\x97\x39\x08\x2c\x0d\x62\xff\xad\x96\xe3\x01\x53" "\xa3\x95\x23\x49\x37\xd3\x77\xc3\x2f\xe7\xaf\x82\xac\xa3\xa1\x9d\x0e" "\xbc\x4a\x5c\x5f\xb5\xff\x19\x0f\x14\xd5\x69\x5c\x70\x3b\x57\x1f\xb4" "\xbf\x03\x75\x66\x35\xca\xfc\x6c\xf6\x26\x7e\xab\x83\x6c\x34\x7a\x9d" "\x07\xe8\x08\x9f\xc1\x05\x34\x69\x34\xcf\x33\x64\xe5\xbe\x37\x0b\x3c" "\x42\xb9\x4b\xc5\xae\x3d\x17\xa8\x17\x39\x85\x66\xa2\x95\x32\x51\xeb" "\x91\x69\x7d\x67\x27\x81\x45\xdf\x9a\x4b\x91\x7b\xcc\xa1\xbf\x21\x17" "\x80\xb2\x2f\x4c\xaa\xcf\xcb\x76\x04\xc8\x4f\x94\x3d\x05\xf6\xfd\xf8" "\xed\xbd\x25\x8d\x7d\x8d\xbf\x84\xf9\xd9\x9e\x57\x47\x2c\x5b\x1c\x23" "\x37\xd7\x49\xa1\xf3\x45\xe6\x62\xe2\x53\x6d\x23\xc7\xa6\x3b\xbb\xbf" "\x00\xf8\xb5\xb0\xa2\x10\x6a\x03\x42\xab\x27\xb9\xa1\x0b\x82\xe8\x26" "\x68\xcd\x49\xe0\xcb\xb0\x9d\x7b\xe0\x21\x76\x45\xf1\xdd\xa3\xbe\x59" "\xc8\x23\x2f\xa2\x90\xd3\x47\x91\xcd\xa5\x2a\xa5\xb5\xce\xc6\x33\x9a" "\xb9\x6a\x2e\xb3\xf5\x32\x8c\xc7\xc0\xe6\x71\x7c\x28\x24\x34\x45\x47" "\xa2\xed\x51\x8f\x6b\x2b\x4e\x4f\xe5\xb6\x84\x59\x6a\xa6\xa9\xd3\x98" "\x8f\xc5\xd5\xff\x4c\xb4\x6c\xec\x99\xd9\x51\xb8\x38\x6b\x10\x94\x9a" "\x16\x3a\xf9\x74\xb7\x54\x3d\xf9\x7b\x48\x82\xa4\xed\x60\xe9\x27\xa1" "\xde\xb6\x7c\x5f\x81\x42\x35\xbe\xf6\x5f\xea\x79\xa2\xc7\x12\x81\x5b" "\xe7\x40\x3c\x93\xa3\x70\x7f\xb9\x0d\x46\x04\xec\x3a\x6a\x3b\x09\x28" "\xf2\x53\xf6\xab\x6b\xd5\x6c\x95\x8e\x02\x6c\x8c\x58\x17\x2c\x4a\xc2" "\xa3\xef\xe2\xec\xd5\xce\xa7\x0c\x83\x13\xf9\xac\x2d\x63\x8b\xc2\x96" "\xba\x99\xe2\xca\x86\xd2\xfd\x06\xb5\x40\x2c\xdc\xdd\xc3\xf3\xc9\x84" "\x5d\x5a\xe7\x7f\x6f\x36\x96\x3b\x91\xe8\xf6\xcd\xcc\xd1\x7a\xbe\x8d" "\x40\xed\x02\x46\x3a\xf4\xbb\x0e\x49\x63\x44\xf3\x50\x09\x7f\x1c\xc1" "\x33\x13\xfa\x1e\x17\x2b\x63\x55\x6e\xd2\xb8\xa8\x12\x1c\x01\xa5\xfb" "\x34\x3f\xf7\x76\x78\x21\x62\x6f\xc4\x9b\x0d\x6b\xd5\x22\xe1\xc9\xbf" "\x13\x7d\x5a\x5b\xcc\xb4\xbc\x8d\xbb\x64\xc8\x3a\x82\xef\x6c\x28\x94" "\xf3\x89\x6c\x9f\x6b\xf0\xc3\x76\x40\x11\xd5\x3e\xeb\x6d\xb9\xea\x9d" "\xae\x22\xd3\xeb\xcc\xa4\x94\x2d\x58\x28\xc0\xbc\xa0\xd9\xea\x37\x70" "\x1d\x5a\x06\xc0\x66\xac\x4f\xe3\x18\xe1\x1e\x9c\x0d\x6c\x65\x8a\xc8" "\x10\xfb\x5d\x78\x36\xcf\xff\xe4\xcc\xbb\x09\x34\xe5\x56\x7d\x74\x69" "\x59\x80\xa1\x56\xd4\xbf\x1c\x18\x86\x1c\x5a\x29\xcc\xd3\x49\x99\x9d" "\xc2\x05\x62\xd0\x0e\x1f\x6c\x18\x51\xae\x56\x35\x41\x08\x64\x38\xd6" "\x0b\x97\x5c\x8c\xeb\x46\x64\x14\xff\x60\xef\xa0\xb2\xde\xe7\x90\xfd" "\x06\x59\xff\xa9\x8b\x92\x41\x4c\x13\xd5\xa6\x82\x53\x68\xf5\x6c\x49" "\x84\x41\x22\x05\x04\x1c\xd8\xe0\x06\xc7\x12\x7d\x43\x95\xec\xdf\xfb" "\x5a\xdd\xf8\x0e\xf9\x38\xce\x54\xa3\x67\x15\x4c\x4f\xc2\x86\xd5\xf9" "\x69\x32\x5c\x12\xb1\x36\x55\xa9\xa9\x56\xdd\x3b\x98\x28\x1f\x53\x7e" "\x83\x76\x69\xfc\x55\xd8\x93\x06\x76\xe8\x07\xaa\x8c\xd0\x46\xe0\xf4" "\x58\x3d\x59\xf8\x6c\xb9\x9f\x3f\x7a\x7d\xdd\xe1\xfb\x39\x11\x1f\xde" "\xc7\x67\x7d\x2f\xee\x4b\x8f\x48\x14\xa5\xde\xf5\xeb\xcc\x67\xc6\x53" "\x38\x4c\xe8\x0e\xaf\xfd\x88\x04\x05\xf7\xed\xf8\xfd\x3e\xa0\x49\xf0" "\x40\x59\x5d\xf4\xa7\x5e\x2f\x89\x2e\x7a\x85\xe0\xba\x35\x1f\xb8\xd2" "\x63\xbf\xff\x71\x68\xbb\x85\x01\x7b\x36\x0f\xcd\x2b\xa8\x93\x46\x68" "\x2a\x6e\xa7\xcc\xc4\x6a\xfb\xdb\x5a\xb4\x44\xe3\xf4\x77\x23\x8b\x2a" "\xb5\x03\xbd\xe9\x14\xd3\xcf\x17\x89\x53\x9c\xde\x9c\x06\x21\x15\x2c" "\xd9\x7b\xff\x9f\x23\x5d\x88\xa1\xef\x4e\xa4\x30\x9d\xb3\xa0\x5d\x40" "\x1a\xf7\xfb\x82\x78\x4b\x05\x0e\xf5\x29\xda\xb4\xf1\xf0\x03\xeb\x29" "\x71\x0a\x96\x2f\x75\x38\xc5\x21\xe6\x17\xe2\xf0\xef\xac\x36\x18\x2d" "\x09\x98\x5e\x1d\x72\x5c\xc3\x8c\x38\x33\xa5\x37\x42\xa0\x2f\x76\xfb" "\x28\x54\xa9\xe4\x5f\x0f\xeb\xac\xf3\xbd\xa8\x3f\x11\x18\x3e\xf5\xb9" "\xfe\xf0\x2e\xbc\xdf\x56\xd4\x10\x4b\x17\x5b\xad\x93\x7d\x8f\x61\x96" "\x4f\x97\xd6\x73\x57\x7c\xdc\xbb\xb4\x8d\x8e\xb6\x2b\x06\x3e\xe6\x56" "\x3b\x9f\xf0\x53\x71\x9b\xaf\xf8\x71\xbc\xd8\x38\x22\xd8\x65\xb2\xf7" "\xef\x02\x30\x76\x42\x5a\xc5\xcd\x71\xb1\xf2\x30\x9d\xe0\xc6\xf1\x4c" "\xc9\xc4\xd3\xe8\xfa\xd9\x45\xf7\x56\xa7\xc8\xa0\x84\xea\x1b\xfd\xf5" "\xac\x6e\x74\x00\x43\xe7\xf7\xbd\xac\xa0\x67\x74\xb0\x84\xae\x31\x4c" "\x26\x36\x52\x9d\x4f\xdc\xd9\x65\xc7\xf8\xc0\x71\x56\x57\x26\x20\xb8" "\x27\xd6\x94\xef\xdc\x9d\x2b\xfc\x5a\xa9\x39\x12\x20\xa8\x37\x65\xf2" "\xc7\x1f\xcd\x48\xd4\xac\xae\xd6\x0a\xfb\x53\xd1\x01\x3f\xa3\xb1\x5e" "\x94\x8e\xc4\x15\x9f\x7d\x13\x0e\xf8\x5b\x59\x40\x18\x34\x6e\x99\x03" "\x4c\x18\x73\x82\x85\x22\x3e\xa5\x3a\x6b\x1d\x5c\xf1\x1a\x60\x7d\xe2" "\xe1\x96\x08\xba\x03\xec\x97\x0a\x91\x5b\x77\x38\x24\x26\x1f\x3f\xc9" "\x31\xdd\x6d\x3b\x93\x4d\x89\xf0\x7b\xaf\x14\x77\x63\x14\xc3\xee\xb8" "\xcd\x05\x37\xef\x57\x36\xf5\x65\xfb\xd1\x4e\x52\x0d\x4a\xb2\xf7\x7e" "\xd9\x59\x7b\x76\xff\x91\xf8\xd1\xf9\x9e\xbd\x6e\x47\x3e\xfd\xa7\xac" "\xcb\x27\x39\x75\xa0\x69\x44\xd1\x03\x70\x32\x12\x99\x92\xb9\x94\xca" "\x79\x1a\x09\xb4\xd8\x39\x80\xa1\xe4\x94\xb0\xf9\x70\x98\xdf\x5f\x6f" "\xb6\xbb\xb0\x27\x22\xad\xb1\x1d\xc3\x19\xc5\x65\xc2\xc3\x63\xcb\xd1" "\x9d\x9f\xb3\xef\xb4\x61\x3b\x62\xd6\x58\x4c\xd5\x3f\x7b\xd8\x0e\x3e" "\x89\x30\x4f\x44\x4c\xe9\xdd\x18\x35\x66\x1e\x3b\xb4\xde\x02\xcc\xf5" "\x68\xa2\xa5\xda\xaf\x0d\x56\x89\x8d\x42\x86\xc3\xfb\x62\xe2\x2a\xf6" "\x2d\x7a\xc3\x18\x68\x58\x34\x46\x7f\x33\x75\x61\xdd\xe2\xe0\xc1\xe2" "\x82\x7c\xdf\xfc\xf4\x2c\x17\x72\x8e\xe6\x4b\x3f\xf4\xcc\xc0\x22\x75" "\x90\xba\xdd\x0b\xd7\xe4\x48\xb8\xcc\xa0\x89\x2d\x6a\x5e\x01\x30\xd2" "\xac\x66\x5f\x47\xc6\xb2\x8d\xaa\x10\x1c\x1b\x31\x98\x69\xbd\xd3\x9f" "\xa9\x24\xd6\xd9\xba\x7d\x72\xfe\xda\x5f\x21\xac\x78\x64\x1c\x7d\x48" "\x01\xd4\x1c\x78\x79\x72\x1b\x3b\xe4\xda\xb4\x0d\x9c\x4a\x78\x55\x24" "\x40\x10\x1f\x37\x34\x89\xcc\x52\x40\xb0\x14\x4a\x9c\xe3\x26\x91\xa7" "\x84\xb6\xdf\xe9\x71\xa2\x1b\xb5\x98\x0f\xf6\x7d\xa2\xd1\xbb\x90\xb2" "\x23\xc9\xe1\x92\xa3\x9c\x1a\xea\xdd\x1f\x5c\x79\x08\x11\x07\x9c\x0b" "\x51\xa9\x71\x05\xc9\x9b\x6f\x95\xd7\x1b\xb3\xea\x47\xc3\x3d\x9d\xcb" "\x0a\x53\xc9\x29\xc4\x44\x99\xe1\x84\xa3\xcd\x72\x2c\x90\x8d\x3b\x0d" "\x15\x7e\x28\xff\xde\xb2\xed\x71\x92\xe7\x80\xd9\x6a\x7a\x2f\x0f\xd5" "\xa8\x7b\xdc\x97\x3e\x04\x9d\xa0\xca\xf9\x31\xf2\x6f\x5a\x21\x81\x3e" "\x2e\x60\x2c\xeb\x22\x59\x99\x7e\x02\x05\xce\x48\xfd\x94\x24\xbd\x6d" "\x4d\x75\xdd\x43\x01\xf4\x29\xee\x30\x74\x5c\xd8\x39\xa4\x0d\xbe\xab" "\x4c\x3d\xb2\xf0\xf1\x0b\xba\xea\x07\x1c\xa4\x1d\x13\x92\x38\x56\x81" "\x73\x0a\x36\x78\xa5\xf6\x0f\x60\x4d\xbe\x19\xcb\x9d\x7d\xd2\x34\x33" "\x7e\x32\x74\x51\xb8\xcc\x65\x39\x4a\xf3\x99\x43\x2e\xf7\xfc\x37\x65" "\xd0\x55\x87\x4e\xbd\xca\x14\xe5\x99\x92\x92\xd6\xf7\x2f\x31\xe9\x2b" "\xac\xf2\x5d\xb5\xef\x8f\x52\x12\x95\x2c\x19\x10\xde\x06\xdd\xbe\x16" "\x87\xa0\xe1\x83\x79\x22\xf2\x22\x82\x89\x91\x6e\xd3\xae\xb7\xb9\xcc" "\x24\xda\x3a\xe4\x71\x39\xe3\x71\x93\x0a\xfa\x6d\x35\x73\xdf\x67\x32" "\xc2\x6c\x0c\x7a\xe0\x6d\x9c\xed\xfa\x77\x16\x07\x11\xbc\xb0\x6e\x65" "\x53\x33\x8d\xea\xe4\xc5\x73\x1c\xf5\x3c\xc1\x54\x11\x30\x96\xd0\x2f" "\x30\x36\xd7\xd9\xed\xfc\xdc\x33\x1e\x4b\xb8\x60\xc5\x20\x84\x89\x21" "\x2e\x90\x4e\xab\x70\xe7\xf8\x60\xb0\x37\x98\x95\xcb\xde\xcb\xf7\xa0" "\xb7\xa2\x5e\x5b\x85\x3c\x7d\xbe\x08\xa4\xe2\x96\xa3\x0a\xfe\xc8\xcf" "\x5a\x9f\x6e\xa4\xae\xf3\x2a\x50\x86\x55\xd5\x39\xa7\x70\xb2\x1e\x66" "\x0c\x9e\xe1\xd7\x68\x8c\x56\xab\xeb\x7c\xf1\xaf\xcc\xc8\xd5\x97\x80" "\xcf\x26\x31\x25\x89\xe0\xc8\xe1\xbc\x00\xad\x7b\x13\x25\xcd\x9a\x5d" "\xd6\x92\x46\xe0\xb3\x34\x07\xc3\x81\xea\x09\x26\x51\x54\xae\xc2\x97" "\xe4\xcc\xdf\x97\x85\xa1\x04\x2a\x83\xe7\x7c\x13\xd4\xce\x43\x60\x78" "\x2f\x24\x28\xf9\x91\x6b\x5c\xd1\x23\xb0\x89\xeb\x68\x3d\x30\xc1\xe8" "\x95\xb9\x94\x4a\xa9\x05\xa1\xa5\xb5\x23\x01\xd8\xcc\x5e\x47\x41\x83" "\x4e\xad\x6e\xbd\xb5\xdc\x05\xc9\xc4\x9c\x5e\x88\x3e\x99\xd4\x0b\x98" "\x38\x03\x7b\xea\xf8\x76\x53\x4d\x74\x78\x56\x10\x3e\x59\xca\xf6\x26" "\x6f\xbb\xe7\x60\xb6\xef\x83\xd0\x04\x63\x4b\x74\xf1\x4f\x8e\xb4\xae" "\xf9\x3c\x4c\xc9\xcb\xbd\x78\xd8\x3d\x53\x2c\x70\xfe\xef\x51\xea\x3f" "\x17\x0b\x25\xd8\x1a\x6a\x9b\x07\x4b\xfc\xa7\xe9\xb3\x77\x1b\xf8\x35" "\x17\xe0\xdd\x9d\x06\x00\xf7\x0b\x86\xb2\x0f\x61\xfe\x36\x07\x6f\x8b" "\xad\xa3\x34\xb2\x39\x0f\xa9\x54\x97\x3b\xc9\x01\x61\x9a\x3c\xfd\x03" "\x93\x49\xcb\x32\x86\x25\xf4\x95\xab\x28\x8d\xbd\xd6\xdb\xfd\x02\x2c" "\x2a\x83\xf5\x9e\x0b\x99\x86\x19\xa1\x2e\x35\x89\x1b\x5a\xe9\xe8\x3a" "\x71\x76\x55\x07\xb4\xa5\x71\xcd\x22\x41\xe5\x88\x5c\x70\x52\x44\xc1" "\x02\x26\x88\xbe\xf7\xc5\x06\x5f\xbc\xf2\x19\xfc\x01\x75\x3a\xdb\x61" "\x1b\x3f\xbc\x09\x40\x3d\xcb\x10\xa4\xf9\x9d\x78\x86\x67\xef\xf7\x5f" "\xa2\x70\x74\xca\x84\x81\xa6\x33\x53\x0e\x26\x16\x3c\xcf\x7d\xad\xa0" "\x49\xd2\x3e\x71\x7e\x06\x7b\x6f\xa5\xb2\xf6\x52\xbc\x50\xab\xda\x9e" "\x7c\xcd\xc5\xf2\xf3\xc3\x5e\xcc\x2c\x44\x31\xc8\x19\xc9\x69\x1b\xe4" "\x42\x2e\x37\x97\x50\x77\x4e\x9f\x39\xda\xe0\x6f\x26\x42\x3c\x8a\x42" "\x78\x78\x9c\x9f\x31\x11\xb4\x3f\x6d\xd2\x5b\x0a\xd4\x7c\x4c\xc5\xfd" "\xa3\xf3\xed\x82\x07\x9c\x93\x66\xe0\xad\xce\xd8\x83\x48\x8f\x42\x9c" "\x1d\x7e\x1b\x35\x1f\xd0\xbb\x20\x4d\xd7\x97\x7e\xf2\x24\xc4\xdf\x6d" "\x7a\x5f\x76\x97\xbc\x65\x00\xa7\xd0\x3a\x8a\x91\x41\x54\x77\x9f\xa7" "\x09\x2b\xf1\xbe\x6b\xad\x40\x92\x36\x7c\xe5\xd2\x95\xa5\xd5\xd0\xe7" "\xc4\x69\xf3\x72\xca\x20\x11\xd6\x12\x63\x70\x25\xe8\x9f\x17\x8a\xe9" "\xad\xa0\xc5\xb7\x3b\xcb\x7d\x7c\x03\x4f\xf5\x95\x26\x3c\xd4\x21\x6e" "\x3c\x76\xba\x5f\x3d\x81\x93\x2a\x08\x8a\x90\xbf\x80\x43\xe8\x77\xe2" "\x99\xc6\x70\xef\x16\x22\xa0\x98\xd5\x51\x9d\x9a\xdc\x4e\xe7\xd4\xcd" "\x00\xe5\x93\x4a\x43\x75\xfa\x83\xfd\xb8\x12\x14\xb8\x92\x48\x2b\x31" "\xbd\xde\x59\xa7\x0a\xaf\x25\xcb\x7f\x41\x7c\x3a\x2a\x91\xc4\xe5\x4b" "\x48\x14\x9f\x6c\x41\xd9\xd3\x96\xee\x6f\xf1\x3e\x30\x28\xc6\x4a\x7c" "\x9b\x1f\x2e\x7c\x6e\x67\x18\x4a\x3d\x52\xd6\xf5\x70\xdb\x3d\x22\x5c" "\x94\x74\x23\xc4\xc6\x53\x3f\x22\xdf\x57\xd1\x5c\x5e\x5a\x31\x83\x42" "\x2b\xd3\x78\xb0\x6f\xe4\x73\x2a\x94\x01\xdc\xb1\x98\x40\xfb\x8f\xa5" "\xc5\x0a\x0f\xf4\x97\xfe\xf3\x62\xc5\x07\x75\x3e\x46\xb8\x88\x1d\x3e" "\x76\x7f\x3b\x1d\x89\x3a\x38\x05\x94\x1c\x94\xf2\xef\xa0\x5c\xe3\x4b" "\x9e\xa8\x1d\x71\x69\x84\xaf\x68\x34\x23\x0d\x47\x07\xa8\x70\x89\xd4" "\x07\x79\x50\x3e\xe6\xa9\xbb\x24\x5d\x7d\x99\x7f\x14\xac\xb8\x0e\x89" "\x73\x1c\x04\x2b\xbb\xbe\x3d\xcd\x05\x17\x7b\x0e\xe0\xee\xc2\x34\x55" "\x83\x0e\xf5\xb6\x5a\xca\x35\x7f\x2b\x0b\x88\x7e\x0b\x98\x21\xc0", 4096)); NONFAILING(*(uint64_t*)0x2000000003a8 = 0x1000); NONFAILING(*(uint64_t*)0x2000000003b0 = 0x200000000340); NONFAILING(memcpy((void*)0x200000000340, "\xb7\x68\xeb\x20\x30\x4f\x2f\xdc\x5a\x96\x94\xa4\x86\x78" "\x40\xd9\x31\x70\xca\x1a\x86\x40\x6f", 23)); NONFAILING(*(uint64_t*)0x2000000003b8 = 0xfffffec0); NONFAILING(*(uint64_t*)0x2000000003d8 = 4); NONFAILING(*(uint64_t*)0x2000000003e0 = 0); NONFAILING(*(uint64_t*)0x2000000003e8 = 0); NONFAILING(*(uint32_t*)0x2000000003f0 = 0x8000); syscall(__NR_sendmsg, /*fd=*/r[0], /*msg=*/0x2000000003c0ul, /*f=*/0ul); break; case 2: // dup2 arguments: [ // oldfd: fd (resource) // newfd: fd (resource) // ] // returns fd syscall(__NR_dup2, /*oldfd=*/r[1], /*newfd=*/r[0]); break; case 3: // setsockopt$sock_attach_bpf arguments: [ // fd: sock (resource) // level: const = 0x1 (4 bytes) // optname: const = 0x21 (4 bytes) // optval: ptr[in, fd_bpf_prog] { // fd_bpf_prog (resource) // } // optlen: len = 0x4 (8 bytes) // ] NONFAILING(*(uint32_t*)0x200000000040 = -1); syscall(__NR_setsockopt, /*fd=*/r[0], /*level=*/1, /*optname=*/0x21, /*optval=*/0x200000000040ul, /*optlen=*/4ul); break; case 4: // sendmmsg arguments: [ // fd: sock (resource) // mmsg: ptr[in, array[send_mmsghdr]] { // array[send_mmsghdr] { // send_mmsghdr { // msg_hdr: send_msghdr { // msg_name: nil // msg_namelen: len = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // msg_iov: nil // msg_iovlen: len = 0x0 (8 bytes) // msg_control: nil // msg_controllen: bytesize = 0x0 (8 bytes) // msg_flags: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // msg_len: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // send_mmsghdr { // msg_hdr: send_msghdr { // msg_name: nil // msg_namelen: len = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // msg_iov: nil // msg_iovlen: len = 0x0 (8 bytes) // msg_control: nil // msg_controllen: bytesize = 0x0 (8 bytes) // msg_flags: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // msg_len: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // send_mmsghdr { // msg_hdr: send_msghdr { // msg_name: nil // msg_namelen: len = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // msg_iov: nil // msg_iovlen: len = 0x0 (8 bytes) // msg_control: nil // msg_controllen: bytesize = 0x0 (8 bytes) // msg_flags: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // msg_len: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // send_mmsghdr { // msg_hdr: send_msghdr { // msg_name: nil // msg_namelen: len = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // msg_iov: nil // msg_iovlen: len = 0x0 (8 bytes) // msg_control: nil // msg_controllen: bytesize = 0x0 (8 bytes) // msg_flags: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // msg_len: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // send_mmsghdr { // msg_hdr: send_msghdr { // msg_name: nil // msg_namelen: len = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // msg_iov: nil // msg_iovlen: len = 0x0 (8 bytes) // msg_control: nil // msg_controllen: bytesize = 0x0 (8 bytes) // msg_flags: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // msg_len: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // send_mmsghdr { // msg_hdr: send_msghdr { // msg_name: nil // msg_namelen: len = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // msg_iov: nil // msg_iovlen: len = 0x0 (8 bytes) // msg_control: nil // msg_controllen: bytesize = 0x0 (8 bytes) // msg_flags: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // msg_len: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // send_mmsghdr { // msg_hdr: send_msghdr { // msg_name: nil // msg_namelen: len = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // msg_iov: ptr[in, array[iovec[in, array[int8]]]] { // array[iovec[in, array[int8]]] { // iovec[in, array[int8]] { // addr: nil // len: len = 0x0 (8 bytes) // } // iovec[in, array[int8]] { // addr: nil // len: len = 0x0 (8 bytes) // } // iovec[in, array[int8]] { // addr: nil // len: len = 0x0 (8 bytes) // } // iovec[in, array[int8]] { // addr: ptr[in, buffer] { // buffer: {57 ca 06 af 6b 8a 1d 6e 68 86 98 4e 8b a6 3e // 3f e1 5c 9a 6b 28 15 29 ea 27 b5 66 11 36 8e 73 d7 9e // d1 d5 da 95 e2 5e ab eb 58 69 5f 62 2d e7 53 39 e0 75 // f8 d3 a0 71 1a 99 52 ca 5e 6f be ef 3d 23 af 39 79 6c // 3c 1b a1 00 e6 87 60 e0 0d df 51 57 3d f6 ee d3 25 36 // 06 91 c0 c1 5c 03 cf e5 b2 6a a4 af 57 87 22 1f 1e 3b // 3d a2 f4 a0 81 28 84 50 a8 d3 1c f4 3b ed 86 f1 00 8f // 0a 51 2a d4 8d 5d 62 19 d3 c5 75 51 1a b6 c9 a0 75 bb // 19 3b 44 9f 93 fa c2 1c 1c e4 e1 fe ec 46 96 3a 6b c5 // bf ad 5b 34 8e 92 b5 09 a3 0f ea 5a 34 22 54 d5 a8 34 // 29 4b 52 a4 f5 4f aa d1 e2 23 f1 6b e6 a5 f9 a5 21 e3 // 31 86 30 b3 f2 03 96 3e 90 5b 6d 11 35 1c d6 0a f6 dd // d4 e0 0e 6f cf c2 2c d3 f4 03 ce f9 fd 85 15 d7 d7 c8 // 53 0f 85 2a b4 a8 dd 77 cb 5b 8e c5 a9 b7 fe 83 89 8c // 42 89 3e a2 c6 78 b0 e2 88 94 75 2c 45 4e e3 e4 83 a0 // a3 55 eb 4d 28 d1 bb ad a0 45 7a 25 5c 04 bd 73 60 5d // 87 63 f9 02 be 07 b8 01 b8 18 97 2e 26 ab c7 cc 51 44 // 59 20 41 ad 9c 97 78 58 06 59 96 4f 9f f7 06 e8 14 bb // 4c c3 d5 c5 b6 b1 2b 74 5c 1f 18 96 f8 e0 94 8a 6a 26 // 53 95 ad 3e e5 c4 82 0a f4 fb e7 10 c0 96 e1 56 50 11 // 24 23 58 f7 f0 bb 8b 81 1c 82 06 82 3c 1c dd 1a fd 3a // ac 09 6b 64 b3 90 d2 12 4a e8 39 4e b6 0c 42 15 b8 b1 // b1 c4 ad 91 3d 24 f2 03 f0 ce 4d ad 32 a6 18 a5 17 2a // 9b 16 df b1 66 93 74 ae 8d e3 06 59 ec ee ef 5c 20 f0 // ef 35 76 9e 08 f3 8d a9 f5 79 1c 0a c3 31 3a ce 20 48 // 28 07 cb 85 f6 f6 5c b3 44 e4 e0 b5 6e 03 d6 ce 4e 4f // df 6d 42 89 9e 18 a9 e0 b4 de b6 8f a1 eb 8d a8 1f 0e // 1c 8c 0a 5d d2 34 a1 88 95 67 84 7d 5e 80 61 77 9c 33 // f0 4b c3 41 97 b8 4b 0b cd f4 1b a6 b3 dd 35 fa fa d0 // 90 af f4 eb 4f 70 8b bf b9 96 57 90 23 f0 c0 47 50 60 // 89 a7 ba fc 0a e9 1c 30 f4 60 2b eb c2 81 ab 94 16 94 // 13 48 be 03 ec 5e 5e c6 76 ca cd 8f 69 dc ac cb 5d c1 // 68 01 e3 04 d3 d4 45 73 c4 a6 8e ef 42 88 a3 db 27 89 // 61 aa ee 36 48 c4 46 af 69 46 e1 23 53 c4 50 b4 38 5e // 91 19 91 dd b2 1c a6 6b 5c d0 95 9b 39 26 f2 1d 30 4c // 7e 65 3b 0f 4a 0e 5e 02 f1 1a f5 f4 20 d8 58 17 b2 c0 // 79 a9 25 05 72 ca c6 e1 77 26 4c 2a 5e 32 22 57 7d 5d // af 0a 7c 0f 34 6c 80 7a 47 a1 3d 69 3b 89 c8 d4 a6 fe // 2d 78 0a a8 f6 30 08 a4 8a 63 81 b2 19 0c ea ac af 4c // 5f f0 d5 a2 a0 1a 4e 60 7a af c8 14 b5 5a ac b8 d2 bb // f6 a4 99 d0 da e8 79 32 e4 e3 a4 44 73 eb 07 99 d7 63 // 2b b0 69 b3 32 b7 da b9 ce 73 80 29 9a cf ca e5 8b 21 // a2 e1 2b 38 71 eb 5c be 7b 38 c2 00 2c 43 2b ba b4 f0 // 0a 51 3d 93 5b ae 9b cb da a0 e1 76 29 45 f1 06 81 2a // 49 a4 a2 72 d2 e5 57 35 15 84 65 db 79 88 17 54 a3 b2 // 4a e7 9e 19 02 27 0d 40 05 f2 3b eb 3e 00 cb d1 f0 7a // 56 43 68 08 4b 8d fd ea e3 73 9d 4e 92 20 9e ee 06 60 // 74 3b 39 33 5d 71 c9 7c 8b 43 f6 4e 32 d1 79 81 2b 69 // 54 d7 6c e9 3f 64 62 8e 12 29 94 ec e7 84 79 3e 11 79 // 86 f3 0c 32 5f 0c 03 0e 21 63 df bc 2e 1c fe 33 28 b0 // 24 e9 4e 37 7e d2 3d 71 b9 25 cf 43 5e 4e 15 62 85 f4 // ae 2a 19 7f 02 bc 55 12 c1 cd c9 8c e2 99 ed 33 f7 d8 // 09 a8 d2 0c 2a 94 a5 2c 4c 14 05 b2 c7 90 ff e9 c8 ae // 98 28 08 21 73 f2 b9 b6 c7 ea fa da 74 a6 d6 72 04 db // 67 3b cd 7c 72 dc 24 dd 37 2b 7a 78 ea 75 1e 20 be 60 // 49 a5 ce 40 8d d3 1f 91 f4 bc 47 9c 94 55 08 21 7c 44 // bd ca 67 1c 7e b6 60 65 5d f3 5e e6 9d 1c 40 79 81 31 // 78 00 cf 2f c4 31 91 5d da 4c 1a 9b 28 b2 36 a2 e1 34 // ad 42 99 00 ca 5a 9d 1e df d6 99 fa e8 09 7d f5 ca e8 // fc dd de 8e 88 83 28 41 e8 2d 04 63 d4 44 48 bb 11 b5 // 6d 4d 92 fe c5 54 a8 a3 13 9b e8 25 01 57 78 48 5e 9e // 05 92 03 ec aa ec 86 aa 0e 5f 61 7f a7 8d 9a 56 62 36 // a6 52 6c 42 30 54 da 10 4e fe 77 85 14 86 fd 26 bc c8 // f1 b6 29 0d 6e c3 79 63 54 23 d5 63 89 1d 94 a1 80 83 // 27 2e a9 7b 54 37 1d 22 8d af a3 37 f7 f3 05 ed 20 eb // 91 87 76 9b b3 1b c7 e7 ae e9 3d 16 e7 37 45 41 52 e8 // 36 cb 67 73 d0 a7 6e 44 44 f8 ee e8 57 2b 36 d0 d0 36 // f7 3e 88 72 ef b3 2f 7d 59 f6 e1 84 73 96 cb 59 6e b2 // 05 6e 19 f5 f9 9e bd ad 18 ab d3 f7 37 79 40 af b5 21 // 80 62 de 59 55 c2 71 93 b4 7c f4 e9 eb f3 21 0f 7b 91 // eb 85 41 c0 cb 1b 6a eb 05 41 e8 72 1a f7 a7 11 65 3d // 8d fd bf 05 6b a4 85 b9 40 28 3a 03 f1 8c 5f a8 c4 36 // a9 89 d6 03 63 51 e2 de 3e 7c 0a 89 98 7a 8c fd 55 d6 // bd 2f 94 27 f2 62 14 80 b4 4a d7 b1 92 90 9e 81 da 58 // de 44 1a e0 c0 82 d2 fc 6f 30 da c0 91 2f 13 3d f8 7b // 73 ec 6e 3b c0 13 28 5f 24 73 89 9e bc 8b 07 2d 90 e9 // 34 ba 5d 81 ca c6 ec d6 2f b1 64 c3 4f 6c d0 e5 20 f5 // 04 fd 01 80 f2 4e b8 59 9a cb 16 d0 29 c0 2a b7 f9 d0 // 0c 13 fd 06 3a 8e e9 e8 4c 90 b7 f7 d6 1f 4a 28 37 96 // c9 8d c4 2d 20 e5 66 92 37 e9 f3 7e 29 fa 7b 5f fb 50 // 7a 1d d5 74 fa 14 e9 46 3c 65 d5 b5 4a b2 51 20 6b a2 // b3 1b 65 c1 0e 5e c1 03 79 e7 c5 6f 62 42 c0 c3 14 76 // 34 32 c4 0a 67 1c 5e d6 37 a9 bc 6b 6f 67 78 7f c8 2b // 65 72 c1 27 d1 f9 b2 27 ba bc e0 41 5c f8 e0 85 b0 be // 82 f2 92 39 88 ad 9c b4 10 86 f5 3a 70 a3 14 04 73 23 // cc d1 a3 ac 53 0b 4c ad b5 58 1f fd 19 f1 1b ec 03 d1 // a6 0b 69 d9 12 c5 b7 33 35 85 a2 09 d6 d3 2c fa ad d2 // 9a 7e ed 70 74 d1 dd d7 f7 b8 50 43 58 71 c5 65 f6 fe // da 7a b3 f4 5b 0f a0 dc d7 32 a0 73 aa 20 56 60 d0 2b // 54 f9 e9 d2 00 62 7d 55 d8 db 1d ec 75 98 8b f8 4b 92 // f4 58 e1 d0 df cd 22 5e 2f 68 d9 a5 a5 02 9e 8c ba cb // 5f 21 47 0e 06 78 1c f2 79 23 79 10 e6 12 05 e8 6c 9b // 3f be 14 e4 d4 9b 7b db 57 36 4f 64 b4 13 ae 07 4e b2 // 3a 21 12 f5 41 01 6a 0f d3 31 a3 5e 45 24 45 68 1e 0f // 7c e0 3a dc 28 ad 52 22 3c de db 95 88 f9 10 2c e6 25 // 4c 81 fb 88 7c 37 f4 a1 a1 83 9d 9e 9c 7c 07 b7 f4 81 // 75 45 b3 02 1a dc 47 23 e5 bf 2a 35 af b6 25 8c 50 2e // 87 8d d9 88 56 99 6d f1 39 f3 78 b8 2d e3 99 19 e3 cd // b6 e6 4d f3 21 64 5f c9 ec b7 14 db a7 72 c9 d3 93 94 // a1 77 a6 30 dc d0 50 6f e4 e2 f6 63 6f 2c 05 d8 16 e5 // ac e1 67 10 ca 91 95 aa 36 83 7e 85 8e 17 3b a1 63 0a // a0 32 4e 00 02 4a 5e 85 5c 82 8d a4 37 a8 77 f0 c8 25 // 98 6a 80 b3 29 c0 68 ab 4a 1e 87 ad d9 d1 a5 36 cb 1b // 28 67 92 8e f6 a8 de 47 02 c1 eb 53 c3 8b f8 ec e1 22 // 7b 3b 17 5a 3a d1 45 1b 59 24 67 3d 18 aa e9 35 9d f7 // 9c d1 4c 35 81 1b d4 d1 59 82 07 f4 9e 82 2f 7b 05 01 // dd 9c aa 9d 9e 51 98 9e f2 a9 f0 ce f9 36 40 7a 3a f7 // 4a 81 1b f4 08 eb 96 66 2c 19 5c 31 8e 2d a8 cf f4 6f // 8a 21 ae aa 51 ec b6 d2 31 7e 4d cb ad 16 4b b4 60 06 // 7c 46 6f a1 53 c3 7a e5 38 59 4f cc c8 0f 4f e5 7a da // f3 d3 fb 7b 33 60 4c cb a3 c4 86 c2 79 a2 9c 9d fd f9 // 05 ac db 0f 10 ca d2 44 9d 71 da de 90 37 49 ad bd 60 // 1a 39 16 d4 1e 90 80 2c b9 b8 1a 70 89 41 45 f1 10 ba // fe 4a 60 ee d0 40 71 4b 5f da 29 e8 08 8f f8 7d e7 c3 // e7 7c db de dd 7c e5 26 82 a1 90 4f 84 a9 7f d4 ee 14 // 36 d8 e9 25 c9 2d 80 2d d4 55 6d 4b fa b2 b8 52 22 a2 // bd c2 e1 d8 db 0a 6b 72 b2 d7 04 25 ae f3 16 f8 d0 49 // e9 7a 4d 53 26 61 f5 85 b9 49 31 fb dc 09 9f 6c 0a 2d // e3 67 cf 39 ed 87 c8 67 4b f3 4c 76 e5 b8 25 67 38 4b // f7 2e d0 30 93 36 57 53 c2 60 07 5c f5 0e 49 82 84 fb // fa 55 2a d2 57 ee 3e 58 ee 00 cb 07 54 a1 72 8c f3 a3 // 4c e3 d9 d5 55 fb e0 f6 c2 5d 04 e9 a7 ca 48 ad 2b 9b // 89 da d3 22 b4 bc 67 b3 0b ed c6 fc 45 b1 2a 78 00 a9 // 31 71 c4 63 fd cb 96 c7 85 41 ca 7d 10 41 24 8e e7 2b // 81 83 64 ab af 48 47 f8 c5 18 71 f2 25 ae ee 0f 1d 56 // 5d 97 cd 6c f6 74 8c 19 72 51 b4 10 60 c6 81 8d 86 70 // 39 78 d4 5c e3 2a 74 c5 dd 81 4c ec 24 15 00 a2 2d 8a // af 27 70 ee 6b ba 32 64 b5 c6 95 d7 c7 96 50 c4 1d 6e // 9e 63 dd 3b 28 3b 83 58 3a 82 78 46 ff 75 69 04 18 75 // b4 db 65 89 00 78 7c 79 f8 ed dd 77 23 06 94 38 ab 99 // b1 35 37 1c 98 13 5b 79 e4 a6 b9 24 84 f5 d9 d3 3b 0e // ec 8f 94 f7 b5 59 90 09 ee 05 8b 95 a4 bb 0b fb e6 37 // 5d 2f 12 d6 32 62 2e ce d3 be 59 4c de d3 72 83 39 7c // 3d 5a 9d c8 4a c5 9c 5c b4 ce 40 62 d9 f8 57 4d c9 ef // f9 cd f6 2e b2 4e b5 21 4d 92 f5 25 6b a7 8f 44 0e 4b // cc e2 81 56 d8 b8 76 8e 97 b6 48 b6 26 64 71 d4 55 9c // 4c 5c 4f 97 01 60 82 2e cc 86 2d 8d 79 2d 50 39 58 3f // 56 0a e2 8c 9c bf 75 77 48 60 a0 ed 10 42 38 5c 0b 65 // 4a 45 c4 8b 96 2c a1 16 76 7f fc 23 38 67 4f 5c 77 a5 // a9 bb fc da 05 6b a0 4e cb 76 74 cb 1a 4f 8f d0 4c 8d // 60 b5 f5 50 40 bd 3b f0 ab cc 94 ad 48 fe 91 7c ba 8a // 78 1d d6 65 92 31 8e 72 58 1c 94 d2 f0 d7 0e d2 bf 52 // 8f e3 5c e0 a5 bd b9 18 d1 7e 18 15 cc 11 1d 37 38 a4 // 87 98 53 d7 bd 2d 08 f1 4a d3 3e b4 5d 6b 1a fb f1 9d // 65 64 41 58 a0 ec 4c 79 1a 18 17 f6 e7 e3 24 fe 15 a5 // 02 7e de 4f a7 12 fa 28 4a a5 26 a1 07 d4 5d 9b c9 f7 // 64 bc 3b a5 48 ae 68 3f 9b d6 fa ff c0 8a df 05 a9 dc // 3b 58 83 bd 0a 3c be 3a f1 27 4b bb 82 40 c9 b9 b1 50 // ff 1f a3 c0 fc 2d 18 cf 6f 1b 31 a2 e2 76 3b c2 1e 20 // 7a 49 1c cd 23 64 79 ac 01 6e 74 6f 35 b2 e8 4c 80 6b // 4f 7a bd 7e ba 86 7c 86 ab 8c 87 68 ff 32 31 74 b7 98 // 35 4b 22 06 a6 81 92 de 69 22 9b d6 b3 11 f5 48 66 3e // c1 21 a7 a1 fd 2e 02 81 77 9a df 81 ac 97 1b e0 73 cb // 93 63 b9 0c a5 cc e8 8b 3a ea 98 fa 7b f6 78 63 39 a6 // 4b b6 fd 98 bc c8 e1 59 0d 12 da bf 1a c1 ae f3 24 e4 // cb 2d 83 23 13 f9 39 e8 87 83 9e d6 68 1e 87 1c 20 45 // 38 21 3d 84 0a 9c 62 d7 e3 b9 ea 58 c6 c6 44 b4 3a 0c // 9e 56 19 14 25 27 5e b6 ff dd a6 b8 a9 9a 98 31 bd cc // 80 7f 9d 4d b1 c5 c9 e3 db f6 00 68 2a 9c 4b 2a d7 10 // 70 7d b7 d8 b5 f5 68 00 b2 cd 07 a1 88 51 6e bc 3f 07 // 29 8a 6b e0 ff 2a 3c cb 28 fb cb 77 2f d6 c9 77 c2 c8 // 56 fc 5c 19 83 d0 7c 0f 45 b9 03 b8 44 99 62 9e c5 08 // 40 2d 35 75 db fb 03 09 b2 28 3f 0a 9d 00 96 e8 ca ca // 32 2e c9 f8 0d 81 37 1f 33 ad 07 1b b5 e3 d8 1a 93 d3 // d5 7a 9a 5f f0 d5 f1 a8 59 52 80 3d 7c 61 ff ca a9 9d // a6 10 74 3d 80 49 14 5f 41 87 81 92 c4 e5 97 11 08 64 // d6 e6 66 09 0a 7b 52 84 54 04 61 a3 9f d8 31 50 d9 3f // 0e 02 9a 75 ef e7 04 d7 27 5a cf 41 8a d8 4e a2 c6 cd // 2f 29 ed e0 f6 ae 32 10 74 77 d0 48 36 65 dd fc 4d 50 // 1c af 35 e3 6c 46 4f e3 2c 53 2e 63 ae 27 1c 6a 58 b0 // 54 a7 13 97 b3 b0 b1 8c 27 8a 21 df c3 f4 e1 4a aa 24 // dc 96 bd 81 82 de 71 1b df 9a 34 ef 1e 34 9d 8a 51 da // e0 db 23 14 d6 15 38 5e 8e ad 12 76 83 50 74 a5 75 9d // 9d 5d 1a 4b f6 12 18 cb 14 59 b3 28 83 61 1e 1f ed 8b // e7 12 01 1b 49 4c 85 fe f4 f9 7c 6d 57 7f bf 5e b6 00 // ed ce 79 81 a7 ff b3 ef 02 4a 9e e8 4d 5a 5b 8c b6 6f // 34 7c e1 27 7a 75 2e 4f e2 9a 47 7e 5d 8a 50 98 70 20 // cb cd f9 8b 01 74 2a 38 66 1d 05 a3 c5 a4 6e de 58 36 // d4 16 44 4d 46 e1 ee f4 64 5b 1e 49 53 0a 9a 93 32 7f // 2c 8d fc 20 1f c1 00 f7 a9 4f 43 23 4a e4 fa b7 07 47 // 79 11 dc 41 e6 6f 3d 41 d3 f3 64 eb 64 bd ea 47 a3 a2 // 4e c6 9e c8 0e b2 c4 8c bb 1c 3e 06 54 61 c3 42 99 2d // 7e f2 0e 7e 1e cc 18 d1 5e 3f 99 46 7b 49 8a a6 a6 72 // 06 3f 79 31 97 62 50 2b 60 1a 5d f4 e3 1f c2 f3 e4 97 // 83 c9 d7 c7 3c bd 4b 6b 79 81 57 e4 ec 64 ae d0 2d c2 // eb ea 8e bd ca ae 6e 67 c1 a7 d5 8d c8 e3 00 6a 96 df // 79 ad a5 54 31 9c 02 2e 75 8c fb 52 66 c8 52 d7 41 43 // 56 39 65 1a c6 bb 0f 51 0c b0 c2 c7 53 5e 2d 80 e9 31 // 6e 57 f7 aa 6f f4 0b 10 d3 c7 bf 39 3d 7f 56 07 84 32 // 19 26 73 6f 96 9f f2 b1 6a 0c 1b 14 3e b5 8f 95 04 c9 // fb 19 d8 d1 87 64 d9 6d c5 f7 a4 3c 57 3d 3e 66 6f 81 // b4 14 25 33 59 87 e0 23 0f c7 81 9f 67 c7 fd fb d8 01 // 5d 3a 03 a6 c4 fa f3 2b 10 75 63 3d 2e 75 20 7d 7c 24 // d4 c1 37 87 e3 4b ef cf 32 5d b0 a4 63 48 d3 be eb 99 // be 6f 4b 55 88 c7 98 4f 97 ca 6e 6c 18 99 1f a6 fd 7d // 88 83 57 be ca df fa 2b 09 a0 df 99 fc a5 18 9a 33 c5 // 42 a7 ab 00 ee dd d2 ab b2 5b 74 85 e6 70 34 1e 5a d0 // c3 d1 4d b2 9f 16 99 d4 af f0 eb f1 13 6f c0 15 a8 7a // 7c 98 1a 60 91 f9 6f 13 c3 4f f6 0a b8 04 04 58 5d 43 // 3d f8 f7 c4 51 58 59 00 a3 e3 7d 81 e5 2d cb 53 6e b8 // 4b 80 46 3f ef f0 61 69 87 9f b8 9b e7 e4 90 63 59 f0 // 51 9a b6 a1 07 74 95 bb 75 51 d0 3b 5a 2b 7b 53 a8 48 // 86 73 54 ca b1 36 63 fc 21 ec 4e 59 01 de 76 89 42 99 // c7 38 14 9a ab 26 0e 1e 1b 27 7a 2b 77 13 e1 51 16 0a // b8 36 be 40 b0 95 4e 5a 94 d3 fc 14 30 f7 aa fb 36 11 // 73 75 e4 db b4 0d c0 a6 98 77 f7 17 d1 85 17 7a 51 14 // 7b a7 e0 42 c2 38 aa dd d8 55 c9 85 65 1e fd 82 13 f3 // 0d f1 cd 72 94 b7 cf 48 5c 11 4a fd 01 4a 50 30 90 6a // c9 01 23 c8 ba b3 f5 3a cb ae 2e e9 5d 9e 72 dc c9 7b // be 9e 89 c0 ba e9 3d d6 22 f4 dc 4d 39 a3 e8 f9 c1 9a // 1b 2c cd 6a 1e 9f 3c 28 6a 4a c3 7a c0 aa 66 f6 30 1a // 0e 5d fe a9 c4 b0 a3 b4 81 40 8a 0b 92 49 9b 2a bd 7a // 00 49 c5 27 2c 6c fb f2 20 34 67 e2 70 18 7e 0f 90 e0 // d6 a9 71 26 e8 5e 84 db de 69 cb ca 97 6f 1c 95 45 eb // c7 9a 84 10 ec 5c b0 b6 16 44 48 46 85 cb 48 83 f5 d9 // 05 33 45 07 9c 84 45 44 51 24 ab 21 cd 36 8d f5 63 af // 2f 71 c1 b0 da 4f e7 82 be 20 62 1b c3 d7 7b d4 5d 12 // b6 f9 74 e6 8e b1 be 95 55 25 f0 05 84 d1 23 d9 a6 b2 // 46 8d 04 40 b9 6b 7f 97 8b bc ee 49 e9 66 16 05 d1 ab // 00 85 71 7a dd 94 cd 79 79 4f c4 2a b2 76 c1 d6 4c db // 98 39 3f e9 02 e0 2d 1a d5 13 7e d9 ba 4e 51 37 a0 dd // 36 60 66 87 58 a3 0a 15 96 d7 5e c1 86 37 dc 5c c9 6d // 77 1e 04 e0 b8 8c ac d2 36 25 4f e1 43 63 24 75 b9 e7 // d0 83 1b 33 0e 3e dd f9 69 84 d0 cf 78 2a 03 36 70 fa // 40 a3 e8 83 96 2e fd 11 26 7c 3c 92 76 90 62 5e d6 42 // 81 a2 be 2a f4 4e 0a 85 66 3a 23 43 4c 21 b5 c4 51 2b // f0 23 45 1e d3 61 e7 f3 26 c4 32 fe 65 5e cc c9 d0 7f // 75 ac 4a 32 a6 75 cc 8f b4 cf b1 0c ce} (length // 0x1000) // } // len: len = 0x1000 (8 bytes) // } // iovec[in, array[int8]] { // addr: nil // len: len = 0x0 (8 bytes) // } // iovec[in, array[int8]] { // addr: nil // len: len = 0x0 (8 bytes) // } // iovec[in, array[int8]] { // addr: nil // len: len = 0x0 (8 bytes) // } // } // } // msg_iovlen: len = 0x7 (8 bytes) // msg_control: nil // msg_controllen: bytesize = 0x0 (8 bytes) // msg_flags: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // msg_len: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // send_mmsghdr { // msg_hdr: send_msghdr { // msg_name: nil // msg_namelen: len = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // msg_iov: nil // msg_iovlen: len = 0x0 (8 bytes) // msg_control: nil // msg_controllen: bytesize = 0x0 (8 bytes) // msg_flags: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // msg_len: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // } // } // vlen: len = 0x8 (8 bytes) // f: send_flags = 0x200000d1 (8 bytes) // ] NONFAILING(*(uint64_t*)0x200000005c40 = 0); NONFAILING(*(uint32_t*)0x200000005c48 = 0); NONFAILING(*(uint64_t*)0x200000005c50 = 0); NONFAILING(*(uint64_t*)0x200000005c58 = 0); NONFAILING(*(uint64_t*)0x200000005c60 = 0); NONFAILING(*(uint64_t*)0x200000005c68 = 0); NONFAILING(*(uint32_t*)0x200000005c70 = 0); NONFAILING(*(uint32_t*)0x200000005c78 = 0); NONFAILING(*(uint64_t*)0x200000005c80 = 0); NONFAILING(*(uint32_t*)0x200000005c88 = 0); NONFAILING(*(uint64_t*)0x200000005c90 = 0); NONFAILING(*(uint64_t*)0x200000005c98 = 0); NONFAILING(*(uint64_t*)0x200000005ca0 = 0); NONFAILING(*(uint64_t*)0x200000005ca8 = 0); NONFAILING(*(uint32_t*)0x200000005cb0 = 0); NONFAILING(*(uint32_t*)0x200000005cb8 = 0); NONFAILING(*(uint64_t*)0x200000005cc0 = 0); NONFAILING(*(uint32_t*)0x200000005cc8 = 0); NONFAILING(*(uint64_t*)0x200000005cd0 = 0); NONFAILING(*(uint64_t*)0x200000005cd8 = 0); NONFAILING(*(uint64_t*)0x200000005ce0 = 0); NONFAILING(*(uint64_t*)0x200000005ce8 = 0); NONFAILING(*(uint32_t*)0x200000005cf0 = 0); NONFAILING(*(uint32_t*)0x200000005cf8 = 0); NONFAILING(*(uint64_t*)0x200000005d00 = 0); NONFAILING(*(uint32_t*)0x200000005d08 = 0); NONFAILING(*(uint64_t*)0x200000005d10 = 0); NONFAILING(*(uint64_t*)0x200000005d18 = 0); NONFAILING(*(uint64_t*)0x200000005d20 = 0); NONFAILING(*(uint64_t*)0x200000005d28 = 0); NONFAILING(*(uint32_t*)0x200000005d30 = 0); NONFAILING(*(uint32_t*)0x200000005d38 = 0); NONFAILING(*(uint64_t*)0x200000005d40 = 0); NONFAILING(*(uint32_t*)0x200000005d48 = 0); NONFAILING(*(uint64_t*)0x200000005d50 = 0); NONFAILING(*(uint64_t*)0x200000005d58 = 0); NONFAILING(*(uint64_t*)0x200000005d60 = 0); NONFAILING(*(uint64_t*)0x200000005d68 = 0); NONFAILING(*(uint32_t*)0x200000005d70 = 0); NONFAILING(*(uint32_t*)0x200000005d78 = 0); NONFAILING(*(uint64_t*)0x200000005d80 = 0); NONFAILING(*(uint32_t*)0x200000005d88 = 0); NONFAILING(*(uint64_t*)0x200000005d90 = 0); NONFAILING(*(uint64_t*)0x200000005d98 = 0); NONFAILING(*(uint64_t*)0x200000005da0 = 0); NONFAILING(*(uint64_t*)0x200000005da8 = 0); NONFAILING(*(uint32_t*)0x200000005db0 = 0); NONFAILING(*(uint32_t*)0x200000005db8 = 0); NONFAILING(*(uint64_t*)0x200000005dc0 = 0); NONFAILING(*(uint32_t*)0x200000005dc8 = 0); NONFAILING(*(uint64_t*)0x200000005dd0 = 0x200000001480); NONFAILING(*(uint64_t*)0x200000001480 = 0); NONFAILING(*(uint64_t*)0x200000001488 = 0); NONFAILING(*(uint64_t*)0x200000001490 = 0); NONFAILING(*(uint64_t*)0x200000001498 = 0); NONFAILING(*(uint64_t*)0x2000000014a0 = 0); NONFAILING(*(uint64_t*)0x2000000014a8 = 0); NONFAILING(*(uint64_t*)0x2000000014b0 = 0x200000002600); NONFAILING(memcpy( (void*)0x200000002600, "\x57\xca\x06\xaf\x6b\x8a\x1d\x6e\x68\x86\x98\x4e\x8b\xa6\x3e\x3f\xe1" "\x5c\x9a\x6b\x28\x15\x29\xea\x27\xb5\x66\x11\x36\x8e\x73\xd7\x9e\xd1" "\xd5\xda\x95\xe2\x5e\xab\xeb\x58\x69\x5f\x62\x2d\xe7\x53\x39\xe0\x75" "\xf8\xd3\xa0\x71\x1a\x99\x52\xca\x5e\x6f\xbe\xef\x3d\x23\xaf\x39\x79" "\x6c\x3c\x1b\xa1\x00\xe6\x87\x60\xe0\x0d\xdf\x51\x57\x3d\xf6\xee\xd3" "\x25\x36\x06\x91\xc0\xc1\x5c\x03\xcf\xe5\xb2\x6a\xa4\xaf\x57\x87\x22" "\x1f\x1e\x3b\x3d\xa2\xf4\xa0\x81\x28\x84\x50\xa8\xd3\x1c\xf4\x3b\xed" "\x86\xf1\x00\x8f\x0a\x51\x2a\xd4\x8d\x5d\x62\x19\xd3\xc5\x75\x51\x1a" "\xb6\xc9\xa0\x75\xbb\x19\x3b\x44\x9f\x93\xfa\xc2\x1c\x1c\xe4\xe1\xfe" "\xec\x46\x96\x3a\x6b\xc5\xbf\xad\x5b\x34\x8e\x92\xb5\x09\xa3\x0f\xea" "\x5a\x34\x22\x54\xd5\xa8\x34\x29\x4b\x52\xa4\xf5\x4f\xaa\xd1\xe2\x23" "\xf1\x6b\xe6\xa5\xf9\xa5\x21\xe3\x31\x86\x30\xb3\xf2\x03\x96\x3e\x90" "\x5b\x6d\x11\x35\x1c\xd6\x0a\xf6\xdd\xd4\xe0\x0e\x6f\xcf\xc2\x2c\xd3" "\xf4\x03\xce\xf9\xfd\x85\x15\xd7\xd7\xc8\x53\x0f\x85\x2a\xb4\xa8\xdd" "\x77\xcb\x5b\x8e\xc5\xa9\xb7\xfe\x83\x89\x8c\x42\x89\x3e\xa2\xc6\x78" "\xb0\xe2\x88\x94\x75\x2c\x45\x4e\xe3\xe4\x83\xa0\xa3\x55\xeb\x4d\x28" "\xd1\xbb\xad\xa0\x45\x7a\x25\x5c\x04\xbd\x73\x60\x5d\x87\x63\xf9\x02" "\xbe\x07\xb8\x01\xb8\x18\x97\x2e\x26\xab\xc7\xcc\x51\x44\x59\x20\x41" "\xad\x9c\x97\x78\x58\x06\x59\x96\x4f\x9f\xf7\x06\xe8\x14\xbb\x4c\xc3" "\xd5\xc5\xb6\xb1\x2b\x74\x5c\x1f\x18\x96\xf8\xe0\x94\x8a\x6a\x26\x53" "\x95\xad\x3e\xe5\xc4\x82\x0a\xf4\xfb\xe7\x10\xc0\x96\xe1\x56\x50\x11" "\x24\x23\x58\xf7\xf0\xbb\x8b\x81\x1c\x82\x06\x82\x3c\x1c\xdd\x1a\xfd" "\x3a\xac\x09\x6b\x64\xb3\x90\xd2\x12\x4a\xe8\x39\x4e\xb6\x0c\x42\x15" "\xb8\xb1\xb1\xc4\xad\x91\x3d\x24\xf2\x03\xf0\xce\x4d\xad\x32\xa6\x18" "\xa5\x17\x2a\x9b\x16\xdf\xb1\x66\x93\x74\xae\x8d\xe3\x06\x59\xec\xee" "\xef\x5c\x20\xf0\xef\x35\x76\x9e\x08\xf3\x8d\xa9\xf5\x79\x1c\x0a\xc3" "\x31\x3a\xce\x20\x48\x28\x07\xcb\x85\xf6\xf6\x5c\xb3\x44\xe4\xe0\xb5" "\x6e\x03\xd6\xce\x4e\x4f\xdf\x6d\x42\x89\x9e\x18\xa9\xe0\xb4\xde\xb6" "\x8f\xa1\xeb\x8d\xa8\x1f\x0e\x1c\x8c\x0a\x5d\xd2\x34\xa1\x88\x95\x67" "\x84\x7d\x5e\x80\x61\x77\x9c\x33\xf0\x4b\xc3\x41\x97\xb8\x4b\x0b\xcd" "\xf4\x1b\xa6\xb3\xdd\x35\xfa\xfa\xd0\x90\xaf\xf4\xeb\x4f\x70\x8b\xbf" "\xb9\x96\x57\x90\x23\xf0\xc0\x47\x50\x60\x89\xa7\xba\xfc\x0a\xe9\x1c" "\x30\xf4\x60\x2b\xeb\xc2\x81\xab\x94\x16\x94\x13\x48\xbe\x03\xec\x5e" "\x5e\xc6\x76\xca\xcd\x8f\x69\xdc\xac\xcb\x5d\xc1\x68\x01\xe3\x04\xd3" "\xd4\x45\x73\xc4\xa6\x8e\xef\x42\x88\xa3\xdb\x27\x89\x61\xaa\xee\x36" "\x48\xc4\x46\xaf\x69\x46\xe1\x23\x53\xc4\x50\xb4\x38\x5e\x91\x19\x91" "\xdd\xb2\x1c\xa6\x6b\x5c\xd0\x95\x9b\x39\x26\xf2\x1d\x30\x4c\x7e\x65" "\x3b\x0f\x4a\x0e\x5e\x02\xf1\x1a\xf5\xf4\x20\xd8\x58\x17\xb2\xc0\x79" "\xa9\x25\x05\x72\xca\xc6\xe1\x77\x26\x4c\x2a\x5e\x32\x22\x57\x7d\x5d" "\xaf\x0a\x7c\x0f\x34\x6c\x80\x7a\x47\xa1\x3d\x69\x3b\x89\xc8\xd4\xa6" "\xfe\x2d\x78\x0a\xa8\xf6\x30\x08\xa4\x8a\x63\x81\xb2\x19\x0c\xea\xac" "\xaf\x4c\x5f\xf0\xd5\xa2\xa0\x1a\x4e\x60\x7a\xaf\xc8\x14\xb5\x5a\xac" "\xb8\xd2\xbb\xf6\xa4\x99\xd0\xda\xe8\x79\x32\xe4\xe3\xa4\x44\x73\xeb" "\x07\x99\xd7\x63\x2b\xb0\x69\xb3\x32\xb7\xda\xb9\xce\x73\x80\x29\x9a" "\xcf\xca\xe5\x8b\x21\xa2\xe1\x2b\x38\x71\xeb\x5c\xbe\x7b\x38\xc2\x00" "\x2c\x43\x2b\xba\xb4\xf0\x0a\x51\x3d\x93\x5b\xae\x9b\xcb\xda\xa0\xe1" "\x76\x29\x45\xf1\x06\x81\x2a\x49\xa4\xa2\x72\xd2\xe5\x57\x35\x15\x84" "\x65\xdb\x79\x88\x17\x54\xa3\xb2\x4a\xe7\x9e\x19\x02\x27\x0d\x40\x05" "\xf2\x3b\xeb\x3e\x00\xcb\xd1\xf0\x7a\x56\x43\x68\x08\x4b\x8d\xfd\xea" "\xe3\x73\x9d\x4e\x92\x20\x9e\xee\x06\x60\x74\x3b\x39\x33\x5d\x71\xc9" "\x7c\x8b\x43\xf6\x4e\x32\xd1\x79\x81\x2b\x69\x54\xd7\x6c\xe9\x3f\x64" "\x62\x8e\x12\x29\x94\xec\xe7\x84\x79\x3e\x11\x79\x86\xf3\x0c\x32\x5f" "\x0c\x03\x0e\x21\x63\xdf\xbc\x2e\x1c\xfe\x33\x28\xb0\x24\xe9\x4e\x37" "\x7e\xd2\x3d\x71\xb9\x25\xcf\x43\x5e\x4e\x15\x62\x85\xf4\xae\x2a\x19" "\x7f\x02\xbc\x55\x12\xc1\xcd\xc9\x8c\xe2\x99\xed\x33\xf7\xd8\x09\xa8" "\xd2\x0c\x2a\x94\xa5\x2c\x4c\x14\x05\xb2\xc7\x90\xff\xe9\xc8\xae\x98" "\x28\x08\x21\x73\xf2\xb9\xb6\xc7\xea\xfa\xda\x74\xa6\xd6\x72\x04\xdb" "\x67\x3b\xcd\x7c\x72\xdc\x24\xdd\x37\x2b\x7a\x78\xea\x75\x1e\x20\xbe" "\x60\x49\xa5\xce\x40\x8d\xd3\x1f\x91\xf4\xbc\x47\x9c\x94\x55\x08\x21" "\x7c\x44\xbd\xca\x67\x1c\x7e\xb6\x60\x65\x5d\xf3\x5e\xe6\x9d\x1c\x40" "\x79\x81\x31\x78\x00\xcf\x2f\xc4\x31\x91\x5d\xda\x4c\x1a\x9b\x28\xb2" "\x36\xa2\xe1\x34\xad\x42\x99\x00\xca\x5a\x9d\x1e\xdf\xd6\x99\xfa\xe8" "\x09\x7d\xf5\xca\xe8\xfc\xdd\xde\x8e\x88\x83\x28\x41\xe8\x2d\x04\x63" "\xd4\x44\x48\xbb\x11\xb5\x6d\x4d\x92\xfe\xc5\x54\xa8\xa3\x13\x9b\xe8" "\x25\x01\x57\x78\x48\x5e\x9e\x05\x92\x03\xec\xaa\xec\x86\xaa\x0e\x5f" "\x61\x7f\xa7\x8d\x9a\x56\x62\x36\xa6\x52\x6c\x42\x30\x54\xda\x10\x4e" "\xfe\x77\x85\x14\x86\xfd\x26\xbc\xc8\xf1\xb6\x29\x0d\x6e\xc3\x79\x63" "\x54\x23\xd5\x63\x89\x1d\x94\xa1\x80\x83\x27\x2e\xa9\x7b\x54\x37\x1d" "\x22\x8d\xaf\xa3\x37\xf7\xf3\x05\xed\x20\xeb\x91\x87\x76\x9b\xb3\x1b" "\xc7\xe7\xae\xe9\x3d\x16\xe7\x37\x45\x41\x52\xe8\x36\xcb\x67\x73\xd0" "\xa7\x6e\x44\x44\xf8\xee\xe8\x57\x2b\x36\xd0\xd0\x36\xf7\x3e\x88\x72" "\xef\xb3\x2f\x7d\x59\xf6\xe1\x84\x73\x96\xcb\x59\x6e\xb2\x05\x6e\x19" "\xf5\xf9\x9e\xbd\xad\x18\xab\xd3\xf7\x37\x79\x40\xaf\xb5\x21\x80\x62" "\xde\x59\x55\xc2\x71\x93\xb4\x7c\xf4\xe9\xeb\xf3\x21\x0f\x7b\x91\xeb" "\x85\x41\xc0\xcb\x1b\x6a\xeb\x05\x41\xe8\x72\x1a\xf7\xa7\x11\x65\x3d" "\x8d\xfd\xbf\x05\x6b\xa4\x85\xb9\x40\x28\x3a\x03\xf1\x8c\x5f\xa8\xc4" "\x36\xa9\x89\xd6\x03\x63\x51\xe2\xde\x3e\x7c\x0a\x89\x98\x7a\x8c\xfd" "\x55\xd6\xbd\x2f\x94\x27\xf2\x62\x14\x80\xb4\x4a\xd7\xb1\x92\x90\x9e" "\x81\xda\x58\xde\x44\x1a\xe0\xc0\x82\xd2\xfc\x6f\x30\xda\xc0\x91\x2f" "\x13\x3d\xf8\x7b\x73\xec\x6e\x3b\xc0\x13\x28\x5f\x24\x73\x89\x9e\xbc" "\x8b\x07\x2d\x90\xe9\x34\xba\x5d\x81\xca\xc6\xec\xd6\x2f\xb1\x64\xc3" "\x4f\x6c\xd0\xe5\x20\xf5\x04\xfd\x01\x80\xf2\x4e\xb8\x59\x9a\xcb\x16" "\xd0\x29\xc0\x2a\xb7\xf9\xd0\x0c\x13\xfd\x06\x3a\x8e\xe9\xe8\x4c\x90" "\xb7\xf7\xd6\x1f\x4a\x28\x37\x96\xc9\x8d\xc4\x2d\x20\xe5\x66\x92\x37" "\xe9\xf3\x7e\x29\xfa\x7b\x5f\xfb\x50\x7a\x1d\xd5\x74\xfa\x14\xe9\x46" "\x3c\x65\xd5\xb5\x4a\xb2\x51\x20\x6b\xa2\xb3\x1b\x65\xc1\x0e\x5e\xc1" "\x03\x79\xe7\xc5\x6f\x62\x42\xc0\xc3\x14\x76\x34\x32\xc4\x0a\x67\x1c" "\x5e\xd6\x37\xa9\xbc\x6b\x6f\x67\x78\x7f\xc8\x2b\x65\x72\xc1\x27\xd1" "\xf9\xb2\x27\xba\xbc\xe0\x41\x5c\xf8\xe0\x85\xb0\xbe\x82\xf2\x92\x39" "\x88\xad\x9c\xb4\x10\x86\xf5\x3a\x70\xa3\x14\x04\x73\x23\xcc\xd1\xa3" "\xac\x53\x0b\x4c\xad\xb5\x58\x1f\xfd\x19\xf1\x1b\xec\x03\xd1\xa6\x0b" "\x69\xd9\x12\xc5\xb7\x33\x35\x85\xa2\x09\xd6\xd3\x2c\xfa\xad\xd2\x9a" "\x7e\xed\x70\x74\xd1\xdd\xd7\xf7\xb8\x50\x43\x58\x71\xc5\x65\xf6\xfe" "\xda\x7a\xb3\xf4\x5b\x0f\xa0\xdc\xd7\x32\xa0\x73\xaa\x20\x56\x60\xd0" "\x2b\x54\xf9\xe9\xd2\x00\x62\x7d\x55\xd8\xdb\x1d\xec\x75\x98\x8b\xf8" "\x4b\x92\xf4\x58\xe1\xd0\xdf\xcd\x22\x5e\x2f\x68\xd9\xa5\xa5\x02\x9e" "\x8c\xba\xcb\x5f\x21\x47\x0e\x06\x78\x1c\xf2\x79\x23\x79\x10\xe6\x12" "\x05\xe8\x6c\x9b\x3f\xbe\x14\xe4\xd4\x9b\x7b\xdb\x57\x36\x4f\x64\xb4" "\x13\xae\x07\x4e\xb2\x3a\x21\x12\xf5\x41\x01\x6a\x0f\xd3\x31\xa3\x5e" "\x45\x24\x45\x68\x1e\x0f\x7c\xe0\x3a\xdc\x28\xad\x52\x22\x3c\xde\xdb" "\x95\x88\xf9\x10\x2c\xe6\x25\x4c\x81\xfb\x88\x7c\x37\xf4\xa1\xa1\x83" "\x9d\x9e\x9c\x7c\x07\xb7\xf4\x81\x75\x45\xb3\x02\x1a\xdc\x47\x23\xe5" "\xbf\x2a\x35\xaf\xb6\x25\x8c\x50\x2e\x87\x8d\xd9\x88\x56\x99\x6d\xf1" "\x39\xf3\x78\xb8\x2d\xe3\x99\x19\xe3\xcd\xb6\xe6\x4d\xf3\x21\x64\x5f" "\xc9\xec\xb7\x14\xdb\xa7\x72\xc9\xd3\x93\x94\xa1\x77\xa6\x30\xdc\xd0" "\x50\x6f\xe4\xe2\xf6\x63\x6f\x2c\x05\xd8\x16\xe5\xac\xe1\x67\x10\xca" "\x91\x95\xaa\x36\x83\x7e\x85\x8e\x17\x3b\xa1\x63\x0a\xa0\x32\x4e\x00" "\x02\x4a\x5e\x85\x5c\x82\x8d\xa4\x37\xa8\x77\xf0\xc8\x25\x98\x6a\x80" "\xb3\x29\xc0\x68\xab\x4a\x1e\x87\xad\xd9\xd1\xa5\x36\xcb\x1b\x28\x67" "\x92\x8e\xf6\xa8\xde\x47\x02\xc1\xeb\x53\xc3\x8b\xf8\xec\xe1\x22\x7b" "\x3b\x17\x5a\x3a\xd1\x45\x1b\x59\x24\x67\x3d\x18\xaa\xe9\x35\x9d\xf7" "\x9c\xd1\x4c\x35\x81\x1b\xd4\xd1\x59\x82\x07\xf4\x9e\x82\x2f\x7b\x05" "\x01\xdd\x9c\xaa\x9d\x9e\x51\x98\x9e\xf2\xa9\xf0\xce\xf9\x36\x40\x7a" "\x3a\xf7\x4a\x81\x1b\xf4\x08\xeb\x96\x66\x2c\x19\x5c\x31\x8e\x2d\xa8" "\xcf\xf4\x6f\x8a\x21\xae\xaa\x51\xec\xb6\xd2\x31\x7e\x4d\xcb\xad\x16" "\x4b\xb4\x60\x06\x7c\x46\x6f\xa1\x53\xc3\x7a\xe5\x38\x59\x4f\xcc\xc8" "\x0f\x4f\xe5\x7a\xda\xf3\xd3\xfb\x7b\x33\x60\x4c\xcb\xa3\xc4\x86\xc2" "\x79\xa2\x9c\x9d\xfd\xf9\x05\xac\xdb\x0f\x10\xca\xd2\x44\x9d\x71\xda" "\xde\x90\x37\x49\xad\xbd\x60\x1a\x39\x16\xd4\x1e\x90\x80\x2c\xb9\xb8" "\x1a\x70\x89\x41\x45\xf1\x10\xba\xfe\x4a\x60\xee\xd0\x40\x71\x4b\x5f" "\xda\x29\xe8\x08\x8f\xf8\x7d\xe7\xc3\xe7\x7c\xdb\xde\xdd\x7c\xe5\x26" "\x82\xa1\x90\x4f\x84\xa9\x7f\xd4\xee\x14\x36\xd8\xe9\x25\xc9\x2d\x80" "\x2d\xd4\x55\x6d\x4b\xfa\xb2\xb8\x52\x22\xa2\xbd\xc2\xe1\xd8\xdb\x0a" "\x6b\x72\xb2\xd7\x04\x25\xae\xf3\x16\xf8\xd0\x49\xe9\x7a\x4d\x53\x26" "\x61\xf5\x85\xb9\x49\x31\xfb\xdc\x09\x9f\x6c\x0a\x2d\xe3\x67\xcf\x39" "\xed\x87\xc8\x67\x4b\xf3\x4c\x76\xe5\xb8\x25\x67\x38\x4b\xf7\x2e\xd0" "\x30\x93\x36\x57\x53\xc2\x60\x07\x5c\xf5\x0e\x49\x82\x84\xfb\xfa\x55" "\x2a\xd2\x57\xee\x3e\x58\xee\x00\xcb\x07\x54\xa1\x72\x8c\xf3\xa3\x4c" "\xe3\xd9\xd5\x55\xfb\xe0\xf6\xc2\x5d\x04\xe9\xa7\xca\x48\xad\x2b\x9b" "\x89\xda\xd3\x22\xb4\xbc\x67\xb3\x0b\xed\xc6\xfc\x45\xb1\x2a\x78\x00" "\xa9\x31\x71\xc4\x63\xfd\xcb\x96\xc7\x85\x41\xca\x7d\x10\x41\x24\x8e" "\xe7\x2b\x81\x83\x64\xab\xaf\x48\x47\xf8\xc5\x18\x71\xf2\x25\xae\xee" "\x0f\x1d\x56\x5d\x97\xcd\x6c\xf6\x74\x8c\x19\x72\x51\xb4\x10\x60\xc6" "\x81\x8d\x86\x70\x39\x78\xd4\x5c\xe3\x2a\x74\xc5\xdd\x81\x4c\xec\x24" "\x15\x00\xa2\x2d\x8a\xaf\x27\x70\xee\x6b\xba\x32\x64\xb5\xc6\x95\xd7" "\xc7\x96\x50\xc4\x1d\x6e\x9e\x63\xdd\x3b\x28\x3b\x83\x58\x3a\x82\x78" "\x46\xff\x75\x69\x04\x18\x75\xb4\xdb\x65\x89\x00\x78\x7c\x79\xf8\xed" "\xdd\x77\x23\x06\x94\x38\xab\x99\xb1\x35\x37\x1c\x98\x13\x5b\x79\xe4" "\xa6\xb9\x24\x84\xf5\xd9\xd3\x3b\x0e\xec\x8f\x94\xf7\xb5\x59\x90\x09" "\xee\x05\x8b\x95\xa4\xbb\x0b\xfb\xe6\x37\x5d\x2f\x12\xd6\x32\x62\x2e" "\xce\xd3\xbe\x59\x4c\xde\xd3\x72\x83\x39\x7c\x3d\x5a\x9d\xc8\x4a\xc5" "\x9c\x5c\xb4\xce\x40\x62\xd9\xf8\x57\x4d\xc9\xef\xf9\xcd\xf6\x2e\xb2" "\x4e\xb5\x21\x4d\x92\xf5\x25\x6b\xa7\x8f\x44\x0e\x4b\xcc\xe2\x81\x56" "\xd8\xb8\x76\x8e\x97\xb6\x48\xb6\x26\x64\x71\xd4\x55\x9c\x4c\x5c\x4f" "\x97\x01\x60\x82\x2e\xcc\x86\x2d\x8d\x79\x2d\x50\x39\x58\x3f\x56\x0a" "\xe2\x8c\x9c\xbf\x75\x77\x48\x60\xa0\xed\x10\x42\x38\x5c\x0b\x65\x4a" "\x45\xc4\x8b\x96\x2c\xa1\x16\x76\x7f\xfc\x23\x38\x67\x4f\x5c\x77\xa5" "\xa9\xbb\xfc\xda\x05\x6b\xa0\x4e\xcb\x76\x74\xcb\x1a\x4f\x8f\xd0\x4c" "\x8d\x60\xb5\xf5\x50\x40\xbd\x3b\xf0\xab\xcc\x94\xad\x48\xfe\x91\x7c" "\xba\x8a\x78\x1d\xd6\x65\x92\x31\x8e\x72\x58\x1c\x94\xd2\xf0\xd7\x0e" "\xd2\xbf\x52\x8f\xe3\x5c\xe0\xa5\xbd\xb9\x18\xd1\x7e\x18\x15\xcc\x11" "\x1d\x37\x38\xa4\x87\x98\x53\xd7\xbd\x2d\x08\xf1\x4a\xd3\x3e\xb4\x5d" "\x6b\x1a\xfb\xf1\x9d\x65\x64\x41\x58\xa0\xec\x4c\x79\x1a\x18\x17\xf6" "\xe7\xe3\x24\xfe\x15\xa5\x02\x7e\xde\x4f\xa7\x12\xfa\x28\x4a\xa5\x26" "\xa1\x07\xd4\x5d\x9b\xc9\xf7\x64\xbc\x3b\xa5\x48\xae\x68\x3f\x9b\xd6" "\xfa\xff\xc0\x8a\xdf\x05\xa9\xdc\x3b\x58\x83\xbd\x0a\x3c\xbe\x3a\xf1" "\x27\x4b\xbb\x82\x40\xc9\xb9\xb1\x50\xff\x1f\xa3\xc0\xfc\x2d\x18\xcf" "\x6f\x1b\x31\xa2\xe2\x76\x3b\xc2\x1e\x20\x7a\x49\x1c\xcd\x23\x64\x79" "\xac\x01\x6e\x74\x6f\x35\xb2\xe8\x4c\x80\x6b\x4f\x7a\xbd\x7e\xba\x86" "\x7c\x86\xab\x8c\x87\x68\xff\x32\x31\x74\xb7\x98\x35\x4b\x22\x06\xa6" "\x81\x92\xde\x69\x22\x9b\xd6\xb3\x11\xf5\x48\x66\x3e\xc1\x21\xa7\xa1" "\xfd\x2e\x02\x81\x77\x9a\xdf\x81\xac\x97\x1b\xe0\x73\xcb\x93\x63\xb9" "\x0c\xa5\xcc\xe8\x8b\x3a\xea\x98\xfa\x7b\xf6\x78\x63\x39\xa6\x4b\xb6" "\xfd\x98\xbc\xc8\xe1\x59\x0d\x12\xda\xbf\x1a\xc1\xae\xf3\x24\xe4\xcb" "\x2d\x83\x23\x13\xf9\x39\xe8\x87\x83\x9e\xd6\x68\x1e\x87\x1c\x20\x45" "\x38\x21\x3d\x84\x0a\x9c\x62\xd7\xe3\xb9\xea\x58\xc6\xc6\x44\xb4\x3a" "\x0c\x9e\x56\x19\x14\x25\x27\x5e\xb6\xff\xdd\xa6\xb8\xa9\x9a\x98\x31" "\xbd\xcc\x80\x7f\x9d\x4d\xb1\xc5\xc9\xe3\xdb\xf6\x00\x68\x2a\x9c\x4b" "\x2a\xd7\x10\x70\x7d\xb7\xd8\xb5\xf5\x68\x00\xb2\xcd\x07\xa1\x88\x51" "\x6e\xbc\x3f\x07\x29\x8a\x6b\xe0\xff\x2a\x3c\xcb\x28\xfb\xcb\x77\x2f" "\xd6\xc9\x77\xc2\xc8\x56\xfc\x5c\x19\x83\xd0\x7c\x0f\x45\xb9\x03\xb8" "\x44\x99\x62\x9e\xc5\x08\x40\x2d\x35\x75\xdb\xfb\x03\x09\xb2\x28\x3f" "\x0a\x9d\x00\x96\xe8\xca\xca\x32\x2e\xc9\xf8\x0d\x81\x37\x1f\x33\xad" "\x07\x1b\xb5\xe3\xd8\x1a\x93\xd3\xd5\x7a\x9a\x5f\xf0\xd5\xf1\xa8\x59" "\x52\x80\x3d\x7c\x61\xff\xca\xa9\x9d\xa6\x10\x74\x3d\x80\x49\x14\x5f" "\x41\x87\x81\x92\xc4\xe5\x97\x11\x08\x64\xd6\xe6\x66\x09\x0a\x7b\x52" "\x84\x54\x04\x61\xa3\x9f\xd8\x31\x50\xd9\x3f\x0e\x02\x9a\x75\xef\xe7" "\x04\xd7\x27\x5a\xcf\x41\x8a\xd8\x4e\xa2\xc6\xcd\x2f\x29\xed\xe0\xf6" "\xae\x32\x10\x74\x77\xd0\x48\x36\x65\xdd\xfc\x4d\x50\x1c\xaf\x35\xe3" "\x6c\x46\x4f\xe3\x2c\x53\x2e\x63\xae\x27\x1c\x6a\x58\xb0\x54\xa7\x13" "\x97\xb3\xb0\xb1\x8c\x27\x8a\x21\xdf\xc3\xf4\xe1\x4a\xaa\x24\xdc\x96" "\xbd\x81\x82\xde\x71\x1b\xdf\x9a\x34\xef\x1e\x34\x9d\x8a\x51\xda\xe0" "\xdb\x23\x14\xd6\x15\x38\x5e\x8e\xad\x12\x76\x83\x50\x74\xa5\x75\x9d" "\x9d\x5d\x1a\x4b\xf6\x12\x18\xcb\x14\x59\xb3\x28\x83\x61\x1e\x1f\xed" "\x8b\xe7\x12\x01\x1b\x49\x4c\x85\xfe\xf4\xf9\x7c\x6d\x57\x7f\xbf\x5e" "\xb6\x00\xed\xce\x79\x81\xa7\xff\xb3\xef\x02\x4a\x9e\xe8\x4d\x5a\x5b" "\x8c\xb6\x6f\x34\x7c\xe1\x27\x7a\x75\x2e\x4f\xe2\x9a\x47\x7e\x5d\x8a" "\x50\x98\x70\x20\xcb\xcd\xf9\x8b\x01\x74\x2a\x38\x66\x1d\x05\xa3\xc5" "\xa4\x6e\xde\x58\x36\xd4\x16\x44\x4d\x46\xe1\xee\xf4\x64\x5b\x1e\x49" "\x53\x0a\x9a\x93\x32\x7f\x2c\x8d\xfc\x20\x1f\xc1\x00\xf7\xa9\x4f\x43" "\x23\x4a\xe4\xfa\xb7\x07\x47\x79\x11\xdc\x41\xe6\x6f\x3d\x41\xd3\xf3" "\x64\xeb\x64\xbd\xea\x47\xa3\xa2\x4e\xc6\x9e\xc8\x0e\xb2\xc4\x8c\xbb" "\x1c\x3e\x06\x54\x61\xc3\x42\x99\x2d\x7e\xf2\x0e\x7e\x1e\xcc\x18\xd1" "\x5e\x3f\x99\x46\x7b\x49\x8a\xa6\xa6\x72\x06\x3f\x79\x31\x97\x62\x50" "\x2b\x60\x1a\x5d\xf4\xe3\x1f\xc2\xf3\xe4\x97\x83\xc9\xd7\xc7\x3c\xbd" "\x4b\x6b\x79\x81\x57\xe4\xec\x64\xae\xd0\x2d\xc2\xeb\xea\x8e\xbd\xca" "\xae\x6e\x67\xc1\xa7\xd5\x8d\xc8\xe3\x00\x6a\x96\xdf\x79\xad\xa5\x54" "\x31\x9c\x02\x2e\x75\x8c\xfb\x52\x66\xc8\x52\xd7\x41\x43\x56\x39\x65" "\x1a\xc6\xbb\x0f\x51\x0c\xb0\xc2\xc7\x53\x5e\x2d\x80\xe9\x31\x6e\x57" "\xf7\xaa\x6f\xf4\x0b\x10\xd3\xc7\xbf\x39\x3d\x7f\x56\x07\x84\x32\x19" "\x26\x73\x6f\x96\x9f\xf2\xb1\x6a\x0c\x1b\x14\x3e\xb5\x8f\x95\x04\xc9" "\xfb\x19\xd8\xd1\x87\x64\xd9\x6d\xc5\xf7\xa4\x3c\x57\x3d\x3e\x66\x6f" "\x81\xb4\x14\x25\x33\x59\x87\xe0\x23\x0f\xc7\x81\x9f\x67\xc7\xfd\xfb" "\xd8\x01\x5d\x3a\x03\xa6\xc4\xfa\xf3\x2b\x10\x75\x63\x3d\x2e\x75\x20" "\x7d\x7c\x24\xd4\xc1\x37\x87\xe3\x4b\xef\xcf\x32\x5d\xb0\xa4\x63\x48" "\xd3\xbe\xeb\x99\xbe\x6f\x4b\x55\x88\xc7\x98\x4f\x97\xca\x6e\x6c\x18" "\x99\x1f\xa6\xfd\x7d\x88\x83\x57\xbe\xca\xdf\xfa\x2b\x09\xa0\xdf\x99" "\xfc\xa5\x18\x9a\x33\xc5\x42\xa7\xab\x00\xee\xdd\xd2\xab\xb2\x5b\x74" "\x85\xe6\x70\x34\x1e\x5a\xd0\xc3\xd1\x4d\xb2\x9f\x16\x99\xd4\xaf\xf0" "\xeb\xf1\x13\x6f\xc0\x15\xa8\x7a\x7c\x98\x1a\x60\x91\xf9\x6f\x13\xc3" "\x4f\xf6\x0a\xb8\x04\x04\x58\x5d\x43\x3d\xf8\xf7\xc4\x51\x58\x59\x00" "\xa3\xe3\x7d\x81\xe5\x2d\xcb\x53\x6e\xb8\x4b\x80\x46\x3f\xef\xf0\x61" "\x69\x87\x9f\xb8\x9b\xe7\xe4\x90\x63\x59\xf0\x51\x9a\xb6\xa1\x07\x74" "\x95\xbb\x75\x51\xd0\x3b\x5a\x2b\x7b\x53\xa8\x48\x86\x73\x54\xca\xb1" "\x36\x63\xfc\x21\xec\x4e\x59\x01\xde\x76\x89\x42\x99\xc7\x38\x14\x9a" "\xab\x26\x0e\x1e\x1b\x27\x7a\x2b\x77\x13\xe1\x51\x16\x0a\xb8\x36\xbe" "\x40\xb0\x95\x4e\x5a\x94\xd3\xfc\x14\x30\xf7\xaa\xfb\x36\x11\x73\x75" "\xe4\xdb\xb4\x0d\xc0\xa6\x98\x77\xf7\x17\xd1\x85\x17\x7a\x51\x14\x7b" "\xa7\xe0\x42\xc2\x38\xaa\xdd\xd8\x55\xc9\x85\x65\x1e\xfd\x82\x13\xf3" "\x0d\xf1\xcd\x72\x94\xb7\xcf\x48\x5c\x11\x4a\xfd\x01\x4a\x50\x30\x90" "\x6a\xc9\x01\x23\xc8\xba\xb3\xf5\x3a\xcb\xae\x2e\xe9\x5d\x9e\x72\xdc" "\xc9\x7b\xbe\x9e\x89\xc0\xba\xe9\x3d\xd6\x22\xf4\xdc\x4d\x39\xa3\xe8" "\xf9\xc1\x9a\x1b\x2c\xcd\x6a\x1e\x9f\x3c\x28\x6a\x4a\xc3\x7a\xc0\xaa" "\x66\xf6\x30\x1a\x0e\x5d\xfe\xa9\xc4\xb0\xa3\xb4\x81\x40\x8a\x0b\x92" "\x49\x9b\x2a\xbd\x7a\x00\x49\xc5\x27\x2c\x6c\xfb\xf2\x20\x34\x67\xe2" "\x70\x18\x7e\x0f\x90\xe0\xd6\xa9\x71\x26\xe8\x5e\x84\xdb\xde\x69\xcb" "\xca\x97\x6f\x1c\x95\x45\xeb\xc7\x9a\x84\x10\xec\x5c\xb0\xb6\x16\x44" "\x48\x46\x85\xcb\x48\x83\xf5\xd9\x05\x33\x45\x07\x9c\x84\x45\x44\x51" "\x24\xab\x21\xcd\x36\x8d\xf5\x63\xaf\x2f\x71\xc1\xb0\xda\x4f\xe7\x82" "\xbe\x20\x62\x1b\xc3\xd7\x7b\xd4\x5d\x12\xb6\xf9\x74\xe6\x8e\xb1\xbe" "\x95\x55\x25\xf0\x05\x84\xd1\x23\xd9\xa6\xb2\x46\x8d\x04\x40\xb9\x6b" "\x7f\x97\x8b\xbc\xee\x49\xe9\x66\x16\x05\xd1\xab\x00\x85\x71\x7a\xdd" "\x94\xcd\x79\x79\x4f\xc4\x2a\xb2\x76\xc1\xd6\x4c\xdb\x98\x39\x3f\xe9" "\x02\xe0\x2d\x1a\xd5\x13\x7e\xd9\xba\x4e\x51\x37\xa0\xdd\x36\x60\x66" "\x87\x58\xa3\x0a\x15\x96\xd7\x5e\xc1\x86\x37\xdc\x5c\xc9\x6d\x77\x1e" "\x04\xe0\xb8\x8c\xac\xd2\x36\x25\x4f\xe1\x43\x63\x24\x75\xb9\xe7\xd0" "\x83\x1b\x33\x0e\x3e\xdd\xf9\x69\x84\xd0\xcf\x78\x2a\x03\x36\x70\xfa" "\x40\xa3\xe8\x83\x96\x2e\xfd\x11\x26\x7c\x3c\x92\x76\x90\x62\x5e\xd6" "\x42\x81\xa2\xbe\x2a\xf4\x4e\x0a\x85\x66\x3a\x23\x43\x4c\x21\xb5\xc4" "\x51\x2b\xf0\x23\x45\x1e\xd3\x61\xe7\xf3\x26\xc4\x32\xfe\x65\x5e\xcc" "\xc9\xd0\x7f\x75\xac\x4a\x32\xa6\x75\xcc\x8f\xb4\xcf\xb1\x0c\xce", 4096)); NONFAILING(*(uint64_t*)0x2000000014b8 = 0x1000); NONFAILING(*(uint64_t*)0x2000000014c0 = 0); NONFAILING(*(uint64_t*)0x2000000014c8 = 0); NONFAILING(*(uint64_t*)0x2000000014d0 = 0); NONFAILING(*(uint64_t*)0x2000000014d8 = 0); NONFAILING(*(uint64_t*)0x2000000014e0 = 0); NONFAILING(*(uint64_t*)0x2000000014e8 = 0); NONFAILING(*(uint64_t*)0x200000005dd8 = 7); NONFAILING(*(uint64_t*)0x200000005de0 = 0); NONFAILING(*(uint64_t*)0x200000005de8 = 0); NONFAILING(*(uint32_t*)0x200000005df0 = 0); NONFAILING(*(uint32_t*)0x200000005df8 = 0); NONFAILING(*(uint64_t*)0x200000005e00 = 0); NONFAILING(*(uint32_t*)0x200000005e08 = 0); NONFAILING(*(uint64_t*)0x200000005e10 = 0); NONFAILING(*(uint64_t*)0x200000005e18 = 0); NONFAILING(*(uint64_t*)0x200000005e20 = 0); NONFAILING(*(uint64_t*)0x200000005e28 = 0); NONFAILING(*(uint32_t*)0x200000005e30 = 0); NONFAILING(*(uint32_t*)0x200000005e38 = 0); syscall( __NR_sendmmsg, /*fd=*/r[0], /*mmsg=*/0x200000005c40ul, /*vlen=*/8ul, /*f=MSG_FASTOPEN|MSG_PROBE|MSG_OOB|MSG_EOR|MSG_DONTWAIT*/ 0x200000d1ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); setup_sysctl(); const char* reason; (void)reason; install_segv_handler(); loop(); return 0; }