// https://syzkaller.appspot.com/bug?id=2308bc7710d37996bbb5207b19bd70770123219e // 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 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_clone #define __NR_clone 220 #endif #ifndef __NR_exit #define __NR_exit 93 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif static unsigned long long procid; 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 use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } 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; } struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[4096]; }; static void netlink_init(struct nlmsg* nlmsg, int typ, int flags, const void* data, int size) { memset(nlmsg, 0, sizeof(*nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; if (size > 0) memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static void netlink_nest(struct nlmsg* nlmsg, int typ) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_type = typ; nlmsg->pos += sizeof(*attr); nlmsg->nested[nlmsg->nesting++] = attr; } static void netlink_done(struct nlmsg* nlmsg) { struct nlattr* attr = nlmsg->nested[--nlmsg->nesting]; attr->nla_len = nlmsg->pos - (char*)attr; } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len, bool dofail) { if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting) exit(1); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_len = nlmsg->pos - nlmsg->buf; struct sockaddr_nl addr; memset(&addr, 0, sizeof(addr)); addr.nl_family = AF_NETLINK; ssize_t n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != (ssize_t)hdr->nlmsg_len) { if (dofail) exit(1); return -1; } n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (reply_len) *reply_len = 0; if (n < 0) { if (dofail) exit(1); return -1; } if (n < (ssize_t)sizeof(struct nlmsghdr)) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type == NLMSG_DONE) return 0; if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < (ssize_t)(sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr))) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type != NLMSG_ERROR) { errno = EINVAL; if (dofail) exit(1); return -1; } errno = -((struct nlmsgerr*)(hdr + 1))->error; return -errno; } static int netlink_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL, true); } static int netlink_query_family_id(struct nlmsg* nlmsg, int sock, const char* family_name, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = CTRL_CMD_GETFAMILY; netlink_init(nlmsg, GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, CTRL_ATTR_FAMILY_NAME, family_name, strnlen(family_name, GENL_NAMSIZ - 1) + 1); int n = 0; int err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n, dofail); if (err < 0) { return -1; } uint16_t id = 0; struct nlattr* attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg->buf + n; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == CTRL_ATTR_FAMILY_ID) { id = *(uint16_t*)(attr + 1); break; } } if (!id) { errno = EINVAL; return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); return id; } static int netlink_next_msg(struct nlmsg* nlmsg, unsigned int offset, unsigned int total_len) { struct nlmsghdr* hdr = (struct nlmsghdr*)(nlmsg->buf + offset); if (offset == total_len || offset + hdr->nlmsg_len > total_len) return -1; return hdr->nlmsg_len; } static void netlink_add_device_impl(struct nlmsg* nlmsg, const char* type, const char* name, bool up) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; netlink_init(nlmsg, RTM_NEWLINK, NLM_F_EXCL | NLM_F_CREATE, &hdr, sizeof(hdr)); if (name) netlink_attr(nlmsg, IFLA_IFNAME, name, strlen(name)); netlink_nest(nlmsg, IFLA_LINKINFO); netlink_attr(nlmsg, IFLA_INFO_KIND, type, strlen(type)); } static void netlink_add_device(struct nlmsg* nlmsg, int sock, const char* type, const char* name) { netlink_add_device_impl(nlmsg, type, name, false); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_veth(struct nlmsg* nlmsg, int sock, const char* name, const char* peer) { netlink_add_device_impl(nlmsg, "veth", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_nest(nlmsg, VETH_INFO_PEER); nlmsg->pos += sizeof(struct ifinfomsg); netlink_attr(nlmsg, IFLA_IFNAME, peer, strlen(peer)); netlink_done(nlmsg); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_xfrm(struct nlmsg* nlmsg, int sock, const char* name) { netlink_add_device_impl(nlmsg, "xfrm", name, true); netlink_nest(nlmsg, IFLA_INFO_DATA); int if_id = 1; netlink_attr(nlmsg, 2, &if_id, sizeof(if_id)); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_hsr(struct nlmsg* nlmsg, int sock, const char* name, const char* slave1, const char* slave2) { netlink_add_device_impl(nlmsg, "hsr", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); int ifindex1 = if_nametoindex(slave1); netlink_attr(nlmsg, IFLA_HSR_SLAVE1, &ifindex1, sizeof(ifindex1)); int ifindex2 = if_nametoindex(slave2); netlink_attr(nlmsg, IFLA_HSR_SLAVE2, &ifindex2, sizeof(ifindex2)); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_linked(struct nlmsg* nlmsg, int sock, const char* type, const char* name, const char* link) { netlink_add_device_impl(nlmsg, type, name, false); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_vlan(struct nlmsg* nlmsg, int sock, const char* name, const char* link, uint16_t id, uint16_t proto) { netlink_add_device_impl(nlmsg, "vlan", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_attr(nlmsg, IFLA_VLAN_ID, &id, sizeof(id)); netlink_attr(nlmsg, IFLA_VLAN_PROTOCOL, &proto, sizeof(proto)); netlink_done(nlmsg); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_macvlan(struct nlmsg* nlmsg, int sock, const char* name, const char* link) { netlink_add_device_impl(nlmsg, "macvlan", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); uint32_t mode = MACVLAN_MODE_BRIDGE; netlink_attr(nlmsg, IFLA_MACVLAN_MODE, &mode, sizeof(mode)); netlink_done(nlmsg); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_geneve(struct nlmsg* nlmsg, int sock, const char* name, uint32_t vni, struct in_addr* addr4, struct in6_addr* addr6) { netlink_add_device_impl(nlmsg, "geneve", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_attr(nlmsg, IFLA_GENEVE_ID, &vni, sizeof(vni)); if (addr4) netlink_attr(nlmsg, IFLA_GENEVE_REMOTE, addr4, sizeof(*addr4)); if (addr6) netlink_attr(nlmsg, IFLA_GENEVE_REMOTE6, addr6, sizeof(*addr6)); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } #define IFLA_IPVLAN_FLAGS 2 #define IPVLAN_MODE_L3S 2 #undef IPVLAN_F_VEPA #define IPVLAN_F_VEPA 2 static void netlink_add_ipvlan(struct nlmsg* nlmsg, int sock, const char* name, const char* link, uint16_t mode, uint16_t flags) { netlink_add_device_impl(nlmsg, "ipvlan", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_attr(nlmsg, IFLA_IPVLAN_MODE, &mode, sizeof(mode)); netlink_attr(nlmsg, IFLA_IPVLAN_FLAGS, &flags, sizeof(flags)); netlink_done(nlmsg); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_device_change(struct nlmsg* nlmsg, int sock, const char* name, bool up, const char* master, const void* mac, int macsize, const char* new_name) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; hdr.ifi_index = if_nametoindex(name); netlink_init(nlmsg, RTM_NEWLINK, 0, &hdr, sizeof(hdr)); if (new_name) netlink_attr(nlmsg, IFLA_IFNAME, new_name, strlen(new_name)); if (master) { int ifindex = if_nametoindex(master); netlink_attr(nlmsg, IFLA_MASTER, &ifindex, sizeof(ifindex)); } if (macsize) netlink_attr(nlmsg, IFLA_ADDRESS, mac, macsize); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static int netlink_add_addr(struct nlmsg* nlmsg, int sock, const char* dev, const void* addr, int addrsize) { struct ifaddrmsg hdr; memset(&hdr, 0, sizeof(hdr)); hdr.ifa_family = addrsize == 4 ? AF_INET : AF_INET6; hdr.ifa_prefixlen = addrsize == 4 ? 24 : 120; hdr.ifa_scope = RT_SCOPE_UNIVERSE; hdr.ifa_index = if_nametoindex(dev); netlink_init(nlmsg, RTM_NEWADDR, NLM_F_CREATE | NLM_F_REPLACE, &hdr, sizeof(hdr)); netlink_attr(nlmsg, IFA_LOCAL, addr, addrsize); netlink_attr(nlmsg, IFA_ADDRESS, addr, addrsize); return netlink_send(nlmsg, sock); } static void netlink_add_addr4(struct nlmsg* nlmsg, int sock, const char* dev, const char* addr) { struct in_addr in_addr; inet_pton(AF_INET, addr, &in_addr); int err = netlink_add_addr(nlmsg, sock, dev, &in_addr, sizeof(in_addr)); if (err < 0) { } } static void netlink_add_addr6(struct nlmsg* nlmsg, int sock, const char* dev, const char* addr) { struct in6_addr in6_addr; inet_pton(AF_INET6, addr, &in6_addr); int err = netlink_add_addr(nlmsg, sock, dev, &in6_addr, sizeof(in6_addr)); if (err < 0) { } } static struct nlmsg nlmsg; #define DEVLINK_FAMILY_NAME "devlink" #define DEVLINK_CMD_PORT_GET 5 #define DEVLINK_ATTR_BUS_NAME 1 #define DEVLINK_ATTR_DEV_NAME 2 #define DEVLINK_ATTR_NETDEV_NAME 7 static struct nlmsg nlmsg2; static void initialize_devlink_ports(const char* bus_name, const char* dev_name, const char* netdev_prefix) { struct genlmsghdr genlhdr; int len, total_len, id, err, offset; uint16_t netdev_index; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock == -1) exit(1); int rtsock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (rtsock == -1) exit(1); id = netlink_query_family_id(&nlmsg, sock, DEVLINK_FAMILY_NAME, true); if (id == -1) goto error; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = DEVLINK_CMD_PORT_GET; netlink_init(&nlmsg, id, NLM_F_DUMP, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, DEVLINK_ATTR_BUS_NAME, bus_name, strlen(bus_name) + 1); netlink_attr(&nlmsg, DEVLINK_ATTR_DEV_NAME, dev_name, strlen(dev_name) + 1); err = netlink_send_ext(&nlmsg, sock, id, &total_len, true); if (err < 0) { goto error; } offset = 0; netdev_index = 0; while ((len = netlink_next_msg(&nlmsg, offset, total_len)) != -1) { struct nlattr* attr = (struct nlattr*)(nlmsg.buf + offset + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg.buf + offset + len; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == DEVLINK_ATTR_NETDEV_NAME) { char* port_name; char netdev_name[IFNAMSIZ]; port_name = (char*)(attr + 1); snprintf(netdev_name, sizeof(netdev_name), "%s%d", netdev_prefix, netdev_index); netlink_device_change(&nlmsg2, rtsock, port_name, true, 0, 0, 0, netdev_name); break; } } offset += len; netdev_index++; } error: close(rtsock); close(sock); } #define DEV_IPV4 "172.20.20.%d" #define DEV_IPV6 "fe80::%02x" #define DEV_MAC 0x00aaaaaaaaaa static void netdevsim_add(unsigned int addr, unsigned int port_count) { write_file("/sys/bus/netdevsim/del_device", "%u", addr); if (write_file("/sys/bus/netdevsim/new_device", "%u %u", addr, port_count)) { char buf[32]; snprintf(buf, sizeof(buf), "netdevsim%d", addr); initialize_devlink_ports("netdevsim", buf, "netdevsim"); } } #define WG_GENL_NAME "wireguard" enum wg_cmd { WG_CMD_GET_DEVICE, WG_CMD_SET_DEVICE, }; enum wgdevice_attribute { WGDEVICE_A_UNSPEC, WGDEVICE_A_IFINDEX, WGDEVICE_A_IFNAME, WGDEVICE_A_PRIVATE_KEY, WGDEVICE_A_PUBLIC_KEY, WGDEVICE_A_FLAGS, WGDEVICE_A_LISTEN_PORT, WGDEVICE_A_FWMARK, WGDEVICE_A_PEERS, }; enum wgpeer_attribute { WGPEER_A_UNSPEC, WGPEER_A_PUBLIC_KEY, WGPEER_A_PRESHARED_KEY, WGPEER_A_FLAGS, WGPEER_A_ENDPOINT, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, WGPEER_A_LAST_HANDSHAKE_TIME, WGPEER_A_RX_BYTES, WGPEER_A_TX_BYTES, WGPEER_A_ALLOWEDIPS, WGPEER_A_PROTOCOL_VERSION, }; enum wgallowedip_attribute { WGALLOWEDIP_A_UNSPEC, WGALLOWEDIP_A_FAMILY, WGALLOWEDIP_A_IPADDR, WGALLOWEDIP_A_CIDR_MASK, }; static void netlink_wireguard_setup(void) { const char ifname_a[] = "wg0"; const char ifname_b[] = "wg1"; const char ifname_c[] = "wg2"; const char private_a[] = "\xa0\x5c\xa8\x4f\x6c\x9c\x8e\x38\x53\xe2\xfd\x7a\x70\xae\x0f\xb2\x0f\xa1" "\x52\x60\x0c\xb0\x08\x45\x17\x4f\x08\x07\x6f\x8d\x78\x43"; const char private_b[] = "\xb0\x80\x73\xe8\xd4\x4e\x91\xe3\xda\x92\x2c\x22\x43\x82\x44\xbb\x88\x5c" "\x69\xe2\x69\xc8\xe9\xd8\x35\xb1\x14\x29\x3a\x4d\xdc\x6e"; const char private_c[] = "\xa0\xcb\x87\x9a\x47\xf5\xbc\x64\x4c\x0e\x69\x3f\xa6\xd0\x31\xc7\x4a\x15" "\x53\xb6\xe9\x01\xb9\xff\x2f\x51\x8c\x78\x04\x2f\xb5\x42"; const char public_a[] = "\x97\x5c\x9d\x81\xc9\x83\xc8\x20\x9e\xe7\x81\x25\x4b\x89\x9f\x8e\xd9\x25" "\xae\x9f\x09\x23\xc2\x3c\x62\xf5\x3c\x57\xcd\xbf\x69\x1c"; const char public_b[] = "\xd1\x73\x28\x99\xf6\x11\xcd\x89\x94\x03\x4d\x7f\x41\x3d\xc9\x57\x63\x0e" "\x54\x93\xc2\x85\xac\xa4\x00\x65\xcb\x63\x11\xbe\x69\x6b"; const char public_c[] = "\xf4\x4d\xa3\x67\xa8\x8e\xe6\x56\x4f\x02\x02\x11\x45\x67\x27\x08\x2f\x5c" "\xeb\xee\x8b\x1b\xf5\xeb\x73\x37\x34\x1b\x45\x9b\x39\x22"; const uint16_t listen_a = 20001; const uint16_t listen_b = 20002; const uint16_t listen_c = 20003; const uint16_t af_inet = AF_INET; const uint16_t af_inet6 = AF_INET6; const struct sockaddr_in endpoint_b_v4 = { .sin_family = AF_INET, .sin_port = htons(listen_b), .sin_addr = {htonl(INADDR_LOOPBACK)}}; const struct sockaddr_in endpoint_c_v4 = { .sin_family = AF_INET, .sin_port = htons(listen_c), .sin_addr = {htonl(INADDR_LOOPBACK)}}; struct sockaddr_in6 endpoint_a_v6 = {.sin6_family = AF_INET6, .sin6_port = htons(listen_a)}; endpoint_a_v6.sin6_addr = in6addr_loopback; struct sockaddr_in6 endpoint_c_v6 = {.sin6_family = AF_INET6, .sin6_port = htons(listen_c)}; endpoint_c_v6.sin6_addr = in6addr_loopback; const struct in_addr first_half_v4 = {0}; const struct in_addr second_half_v4 = {(uint32_t)htonl(128 << 24)}; const struct in6_addr first_half_v6 = {{{0}}}; const struct in6_addr second_half_v6 = {{{0x80}}}; const uint8_t half_cidr = 1; const uint16_t persistent_keepalives[] = {1, 3, 7, 9, 14, 19}; struct genlmsghdr genlhdr = {.cmd = WG_CMD_SET_DEVICE, .version = 1}; int sock; int id, err; sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock == -1) { return; } id = netlink_query_family_id(&nlmsg, sock, WG_GENL_NAME, true); if (id == -1) goto error; netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, WGDEVICE_A_IFNAME, ifname_a, strlen(ifname_a) + 1); netlink_attr(&nlmsg, WGDEVICE_A_PRIVATE_KEY, private_a, 32); netlink_attr(&nlmsg, WGDEVICE_A_LISTEN_PORT, &listen_a, 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGDEVICE_A_PEERS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_b, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_b_v4, sizeof(endpoint_b_v4)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[0], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v4, sizeof(first_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v6, sizeof(first_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_c, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_c_v6, sizeof(endpoint_c_v6)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[1], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v4, sizeof(second_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v6, sizeof(second_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); err = netlink_send(&nlmsg, sock); if (err < 0) { } netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, WGDEVICE_A_IFNAME, ifname_b, strlen(ifname_b) + 1); netlink_attr(&nlmsg, WGDEVICE_A_PRIVATE_KEY, private_b, 32); netlink_attr(&nlmsg, WGDEVICE_A_LISTEN_PORT, &listen_b, 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGDEVICE_A_PEERS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_a, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_a_v6, sizeof(endpoint_a_v6)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[2], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v4, sizeof(first_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v6, sizeof(first_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_c, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_c_v4, sizeof(endpoint_c_v4)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[3], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v4, sizeof(second_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v6, sizeof(second_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); err = netlink_send(&nlmsg, sock); if (err < 0) { } netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, WGDEVICE_A_IFNAME, ifname_c, strlen(ifname_c) + 1); netlink_attr(&nlmsg, WGDEVICE_A_PRIVATE_KEY, private_c, 32); netlink_attr(&nlmsg, WGDEVICE_A_LISTEN_PORT, &listen_c, 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGDEVICE_A_PEERS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_a, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_a_v6, sizeof(endpoint_a_v6)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[4], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v4, sizeof(first_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v6, sizeof(first_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_b, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_b_v4, sizeof(endpoint_b_v4)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[5], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v4, sizeof(second_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v6, sizeof(second_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); err = netlink_send(&nlmsg, sock); if (err < 0) { } error: close(sock); } static void initialize_netdevices(void) { char netdevsim[16]; sprintf(netdevsim, "netdevsim%d", (int)procid); struct { const char* type; const char* dev; } devtypes[] = { {"ip6gretap", "ip6gretap0"}, {"bridge", "bridge0"}, {"vcan", "vcan0"}, {"bond", "bond0"}, {"team", "team0"}, {"dummy", "dummy0"}, {"nlmon", "nlmon0"}, {"caif", "caif0"}, {"batadv", "batadv0"}, {"vxcan", "vxcan1"}, {"veth", 0}, {"wireguard", "wg0"}, {"wireguard", "wg1"}, {"wireguard", "wg2"}, }; const char* devmasters[] = {"bridge", "bond", "team", "batadv"}; struct { const char* name; int macsize; bool noipv6; } devices[] = { {"lo", ETH_ALEN}, {"sit0", 0}, {"bridge0", ETH_ALEN}, {"vcan0", 0, true}, {"tunl0", 0}, {"gre0", 0}, {"gretap0", ETH_ALEN}, {"ip_vti0", 0}, {"ip6_vti0", 0}, {"ip6tnl0", 0}, {"ip6gre0", 0}, {"ip6gretap0", ETH_ALEN}, {"erspan0", ETH_ALEN}, {"bond0", ETH_ALEN}, {"veth0", ETH_ALEN}, {"veth1", ETH_ALEN}, {"team0", ETH_ALEN}, {"veth0_to_bridge", ETH_ALEN}, {"veth1_to_bridge", ETH_ALEN}, {"veth0_to_bond", ETH_ALEN}, {"veth1_to_bond", ETH_ALEN}, {"veth0_to_team", ETH_ALEN}, {"veth1_to_team", ETH_ALEN}, {"veth0_to_hsr", ETH_ALEN}, {"veth1_to_hsr", ETH_ALEN}, {"hsr0", 0}, {"dummy0", ETH_ALEN}, {"nlmon0", 0}, {"vxcan0", 0, true}, {"vxcan1", 0, true}, {"caif0", ETH_ALEN}, {"batadv0", ETH_ALEN}, {netdevsim, ETH_ALEN}, {"xfrm0", ETH_ALEN}, {"veth0_virt_wifi", ETH_ALEN}, {"veth1_virt_wifi", ETH_ALEN}, {"virt_wifi0", ETH_ALEN}, {"veth0_vlan", ETH_ALEN}, {"veth1_vlan", ETH_ALEN}, {"vlan0", ETH_ALEN}, {"vlan1", ETH_ALEN}, {"macvlan0", ETH_ALEN}, {"macvlan1", ETH_ALEN}, {"ipvlan0", ETH_ALEN}, {"ipvlan1", ETH_ALEN}, {"veth0_macvtap", ETH_ALEN}, {"veth1_macvtap", ETH_ALEN}, {"macvtap0", ETH_ALEN}, {"macsec0", ETH_ALEN}, {"veth0_to_batadv", ETH_ALEN}, {"veth1_to_batadv", ETH_ALEN}, {"batadv_slave_0", ETH_ALEN}, {"batadv_slave_1", ETH_ALEN}, {"geneve0", ETH_ALEN}, {"geneve1", ETH_ALEN}, {"wg0", 0}, {"wg1", 0}, {"wg2", 0}, }; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) exit(1); unsigned i; for (i = 0; i < sizeof(devtypes) / sizeof(devtypes[0]); i++) netlink_add_device(&nlmsg, sock, devtypes[i].type, devtypes[i].dev); for (i = 0; i < sizeof(devmasters) / (sizeof(devmasters[0])); i++) { char master[32], slave0[32], veth0[32], slave1[32], veth1[32]; sprintf(slave0, "%s_slave_0", devmasters[i]); sprintf(veth0, "veth0_to_%s", devmasters[i]); netlink_add_veth(&nlmsg, sock, slave0, veth0); sprintf(slave1, "%s_slave_1", devmasters[i]); sprintf(veth1, "veth1_to_%s", devmasters[i]); netlink_add_veth(&nlmsg, sock, slave1, veth1); sprintf(master, "%s0", devmasters[i]); netlink_device_change(&nlmsg, sock, slave0, false, master, 0, 0, NULL); netlink_device_change(&nlmsg, sock, slave1, false, master, 0, 0, NULL); } netlink_add_xfrm(&nlmsg, sock, "xfrm0"); netlink_device_change(&nlmsg, sock, "bridge_slave_0", true, 0, 0, 0, NULL); netlink_device_change(&nlmsg, sock, "bridge_slave_1", true, 0, 0, 0, NULL); netlink_add_veth(&nlmsg, sock, "hsr_slave_0", "veth0_to_hsr"); netlink_add_veth(&nlmsg, sock, "hsr_slave_1", "veth1_to_hsr"); netlink_add_hsr(&nlmsg, sock, "hsr0", "hsr_slave_0", "hsr_slave_1"); netlink_device_change(&nlmsg, sock, "hsr_slave_0", true, 0, 0, 0, NULL); netlink_device_change(&nlmsg, sock, "hsr_slave_1", true, 0, 0, 0, NULL); netlink_add_veth(&nlmsg, sock, "veth0_virt_wifi", "veth1_virt_wifi"); netlink_add_linked(&nlmsg, sock, "virt_wifi", "virt_wifi0", "veth1_virt_wifi"); netlink_add_veth(&nlmsg, sock, "veth0_vlan", "veth1_vlan"); netlink_add_vlan(&nlmsg, sock, "vlan0", "veth0_vlan", 0, htons(ETH_P_8021Q)); netlink_add_vlan(&nlmsg, sock, "vlan1", "veth0_vlan", 1, htons(ETH_P_8021AD)); netlink_add_macvlan(&nlmsg, sock, "macvlan0", "veth1_vlan"); netlink_add_macvlan(&nlmsg, sock, "macvlan1", "veth1_vlan"); netlink_add_ipvlan(&nlmsg, sock, "ipvlan0", "veth0_vlan", IPVLAN_MODE_L2, 0); netlink_add_ipvlan(&nlmsg, sock, "ipvlan1", "veth0_vlan", IPVLAN_MODE_L3S, IPVLAN_F_VEPA); netlink_add_veth(&nlmsg, sock, "veth0_macvtap", "veth1_macvtap"); netlink_add_linked(&nlmsg, sock, "macvtap", "macvtap0", "veth0_macvtap"); netlink_add_linked(&nlmsg, sock, "macsec", "macsec0", "veth1_macvtap"); char addr[32]; sprintf(addr, DEV_IPV4, 14 + 10); struct in_addr geneve_addr4; if (inet_pton(AF_INET, addr, &geneve_addr4) <= 0) exit(1); struct in6_addr geneve_addr6; if (inet_pton(AF_INET6, "fc00::01", &geneve_addr6) <= 0) exit(1); netlink_add_geneve(&nlmsg, sock, "geneve0", 0, &geneve_addr4, 0); netlink_add_geneve(&nlmsg, sock, "geneve1", 1, 0, &geneve_addr6); netdevsim_add((int)procid, 4); netlink_wireguard_setup(); for (i = 0; i < sizeof(devices) / (sizeof(devices[0])); i++) { char addr[32]; sprintf(addr, DEV_IPV4, i + 10); netlink_add_addr4(&nlmsg, sock, devices[i].name, addr); if (!devices[i].noipv6) { sprintf(addr, DEV_IPV6, i + 10); netlink_add_addr6(&nlmsg, sock, devices[i].name, addr); } uint64_t macaddr = DEV_MAC + ((i + 10ull) << 40); netlink_device_change(&nlmsg, sock, devices[i].name, true, 0, &macaddr, devices[i].macsize, NULL); } close(sock); } static void initialize_netdevices_init(void) { int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) exit(1); struct { const char* type; int macsize; bool noipv6; bool noup; } devtypes[] = { {"nr", 7, true}, {"rose", 5, true, true}, }; unsigned i; for (i = 0; i < sizeof(devtypes) / sizeof(devtypes[0]); i++) { char dev[32], addr[32]; sprintf(dev, "%s%d", devtypes[i].type, (int)procid); sprintf(addr, "172.30.%d.%d", i, (int)procid + 1); netlink_add_addr4(&nlmsg, sock, dev, addr); if (!devtypes[i].noipv6) { sprintf(addr, "fe88::%02x:%02x", i, (int)procid + 1); netlink_add_addr6(&nlmsg, sock, dev, addr); } int macsize = devtypes[i].macsize; uint64_t macaddr = 0xbbbbbb + ((unsigned long long)i << (8 * (macsize - 2))) + (procid << (8 * (macsize - 1))); netlink_device_change(&nlmsg, sock, dev, !devtypes[i].noup, 0, &macaddr, macsize, NULL); } close(sock); } #define MAX_FDS 30 //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, loopfd = -1, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } errno = err; return res; } #define XT_TABLE_SIZE 1536 #define XT_MAX_ENTRIES 10 struct xt_counters { uint64_t pcnt, bcnt; }; struct ipt_getinfo { char name[32]; unsigned int valid_hooks; unsigned int hook_entry[5]; unsigned int underflow[5]; unsigned int num_entries; unsigned int size; }; struct ipt_get_entries { char name[32]; unsigned int size; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct ipt_replace { char name[32]; unsigned int valid_hooks; unsigned int num_entries; unsigned int size; unsigned int hook_entry[5]; unsigned int underflow[5]; unsigned int num_counters; struct xt_counters* counters; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct ipt_table_desc { const char* name; struct ipt_getinfo info; struct ipt_replace replace; }; static struct ipt_table_desc ipv4_tables[] = { {.name = "filter"}, {.name = "nat"}, {.name = "mangle"}, {.name = "raw"}, {.name = "security"}, }; static struct ipt_table_desc ipv6_tables[] = { {.name = "filter"}, {.name = "nat"}, {.name = "mangle"}, {.name = "raw"}, {.name = "security"}, }; #define IPT_BASE_CTL 64 #define IPT_SO_SET_REPLACE (IPT_BASE_CTL) #define IPT_SO_GET_INFO (IPT_BASE_CTL) #define IPT_SO_GET_ENTRIES (IPT_BASE_CTL + 1) struct arpt_getinfo { char name[32]; unsigned int valid_hooks; unsigned int hook_entry[3]; unsigned int underflow[3]; unsigned int num_entries; unsigned int size; }; struct arpt_get_entries { char name[32]; unsigned int size; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct arpt_replace { char name[32]; unsigned int valid_hooks; unsigned int num_entries; unsigned int size; unsigned int hook_entry[3]; unsigned int underflow[3]; unsigned int num_counters; struct xt_counters* counters; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct arpt_table_desc { const char* name; struct arpt_getinfo info; struct arpt_replace replace; }; static struct arpt_table_desc arpt_tables[] = { {.name = "filter"}, }; #define ARPT_BASE_CTL 96 #define ARPT_SO_SET_REPLACE (ARPT_BASE_CTL) #define ARPT_SO_GET_INFO (ARPT_BASE_CTL) #define ARPT_SO_GET_ENTRIES (ARPT_BASE_CTL + 1) static void checkpoint_iptables(struct ipt_table_desc* tables, int num_tables, int family, int level) { int fd = socket(family, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: return; } exit(1); } for (int i = 0; i < num_tables; i++) { struct ipt_table_desc* table = &tables[i]; strcpy(table->info.name, table->name); strcpy(table->replace.name, table->name); socklen_t optlen = sizeof(table->info); if (getsockopt(fd, level, IPT_SO_GET_INFO, &table->info, &optlen)) { switch (errno) { case EPERM: case ENOENT: case ENOPROTOOPT: continue; } exit(1); } if (table->info.size > sizeof(table->replace.entrytable)) exit(1); if (table->info.num_entries > XT_MAX_ENTRIES) exit(1); struct ipt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + table->info.size; if (getsockopt(fd, level, IPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); table->replace.valid_hooks = table->info.valid_hooks; table->replace.num_entries = table->info.num_entries; table->replace.size = table->info.size; memcpy(table->replace.hook_entry, table->info.hook_entry, sizeof(table->replace.hook_entry)); memcpy(table->replace.underflow, table->info.underflow, sizeof(table->replace.underflow)); memcpy(table->replace.entrytable, entries.entrytable, table->info.size); } close(fd); } static void reset_iptables(struct ipt_table_desc* tables, int num_tables, int family, int level) { int fd = socket(family, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: return; } exit(1); } for (int i = 0; i < num_tables; i++) { struct ipt_table_desc* table = &tables[i]; if (table->info.valid_hooks == 0) continue; struct ipt_getinfo info; memset(&info, 0, sizeof(info)); strcpy(info.name, table->name); socklen_t optlen = sizeof(info); if (getsockopt(fd, level, IPT_SO_GET_INFO, &info, &optlen)) exit(1); if (memcmp(&table->info, &info, sizeof(table->info)) == 0) { struct ipt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + entries.size; if (getsockopt(fd, level, IPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); if (memcmp(table->replace.entrytable, entries.entrytable, table->info.size) == 0) continue; } struct xt_counters counters[XT_MAX_ENTRIES]; table->replace.num_counters = info.num_entries; table->replace.counters = counters; optlen = sizeof(table->replace) - sizeof(table->replace.entrytable) + table->replace.size; if (setsockopt(fd, level, IPT_SO_SET_REPLACE, &table->replace, optlen)) exit(1); } close(fd); } static void checkpoint_arptables(void) { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: return; } exit(1); } for (unsigned i = 0; i < sizeof(arpt_tables) / sizeof(arpt_tables[0]); i++) { struct arpt_table_desc* table = &arpt_tables[i]; strcpy(table->info.name, table->name); strcpy(table->replace.name, table->name); socklen_t optlen = sizeof(table->info); if (getsockopt(fd, SOL_IP, ARPT_SO_GET_INFO, &table->info, &optlen)) { switch (errno) { case EPERM: case ENOENT: case ENOPROTOOPT: continue; } exit(1); } if (table->info.size > sizeof(table->replace.entrytable)) exit(1); if (table->info.num_entries > XT_MAX_ENTRIES) exit(1); struct arpt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + table->info.size; if (getsockopt(fd, SOL_IP, ARPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); table->replace.valid_hooks = table->info.valid_hooks; table->replace.num_entries = table->info.num_entries; table->replace.size = table->info.size; memcpy(table->replace.hook_entry, table->info.hook_entry, sizeof(table->replace.hook_entry)); memcpy(table->replace.underflow, table->info.underflow, sizeof(table->replace.underflow)); memcpy(table->replace.entrytable, entries.entrytable, table->info.size); } close(fd); } static void reset_arptables() { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: return; } exit(1); } for (unsigned i = 0; i < sizeof(arpt_tables) / sizeof(arpt_tables[0]); i++) { struct arpt_table_desc* table = &arpt_tables[i]; if (table->info.valid_hooks == 0) continue; struct arpt_getinfo info; memset(&info, 0, sizeof(info)); strcpy(info.name, table->name); socklen_t optlen = sizeof(info); if (getsockopt(fd, SOL_IP, ARPT_SO_GET_INFO, &info, &optlen)) exit(1); if (memcmp(&table->info, &info, sizeof(table->info)) == 0) { struct arpt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + entries.size; if (getsockopt(fd, SOL_IP, ARPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); if (memcmp(table->replace.entrytable, entries.entrytable, table->info.size) == 0) continue; } else { } struct xt_counters counters[XT_MAX_ENTRIES]; table->replace.num_counters = info.num_entries; table->replace.counters = counters; optlen = sizeof(table->replace) - sizeof(table->replace.entrytable) + table->replace.size; if (setsockopt(fd, SOL_IP, ARPT_SO_SET_REPLACE, &table->replace, optlen)) exit(1); } close(fd); } #define NF_BR_NUMHOOKS 6 #define EBT_TABLE_MAXNAMELEN 32 #define EBT_CHAIN_MAXNAMELEN 32 #define EBT_BASE_CTL 128 #define EBT_SO_SET_ENTRIES (EBT_BASE_CTL) #define EBT_SO_GET_INFO (EBT_BASE_CTL) #define EBT_SO_GET_ENTRIES (EBT_SO_GET_INFO + 1) #define EBT_SO_GET_INIT_INFO (EBT_SO_GET_ENTRIES + 1) #define EBT_SO_GET_INIT_ENTRIES (EBT_SO_GET_INIT_INFO + 1) struct ebt_replace { char name[EBT_TABLE_MAXNAMELEN]; unsigned int valid_hooks; unsigned int nentries; unsigned int entries_size; struct ebt_entries* hook_entry[NF_BR_NUMHOOKS]; unsigned int num_counters; struct ebt_counter* counters; char* entries; }; struct ebt_entries { unsigned int distinguisher; char name[EBT_CHAIN_MAXNAMELEN]; unsigned int counter_offset; int policy; unsigned int nentries; char data[0] __attribute__((aligned(__alignof__(struct ebt_replace)))); }; struct ebt_table_desc { const char* name; struct ebt_replace replace; char entrytable[XT_TABLE_SIZE]; }; static struct ebt_table_desc ebt_tables[] = { {.name = "filter"}, {.name = "nat"}, {.name = "broute"}, }; static void checkpoint_ebtables(void) { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: return; } exit(1); } for (size_t i = 0; i < sizeof(ebt_tables) / sizeof(ebt_tables[0]); i++) { struct ebt_table_desc* table = &ebt_tables[i]; strcpy(table->replace.name, table->name); socklen_t optlen = sizeof(table->replace); if (getsockopt(fd, SOL_IP, EBT_SO_GET_INIT_INFO, &table->replace, &optlen)) { switch (errno) { case EPERM: case ENOENT: case ENOPROTOOPT: continue; } exit(1); } if (table->replace.entries_size > sizeof(table->entrytable)) exit(1); table->replace.num_counters = 0; table->replace.entries = table->entrytable; optlen = sizeof(table->replace) + table->replace.entries_size; if (getsockopt(fd, SOL_IP, EBT_SO_GET_INIT_ENTRIES, &table->replace, &optlen)) exit(1); } close(fd); } static void reset_ebtables() { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: return; } exit(1); } for (unsigned i = 0; i < sizeof(ebt_tables) / sizeof(ebt_tables[0]); i++) { struct ebt_table_desc* table = &ebt_tables[i]; if (table->replace.valid_hooks == 0) continue; struct ebt_replace replace; memset(&replace, 0, sizeof(replace)); strcpy(replace.name, table->name); socklen_t optlen = sizeof(replace); if (getsockopt(fd, SOL_IP, EBT_SO_GET_INFO, &replace, &optlen)) exit(1); replace.num_counters = 0; table->replace.entries = 0; for (unsigned h = 0; h < NF_BR_NUMHOOKS; h++) table->replace.hook_entry[h] = 0; if (memcmp(&table->replace, &replace, sizeof(table->replace)) == 0) { char entrytable[XT_TABLE_SIZE]; memset(&entrytable, 0, sizeof(entrytable)); replace.entries = entrytable; optlen = sizeof(replace) + replace.entries_size; if (getsockopt(fd, SOL_IP, EBT_SO_GET_ENTRIES, &replace, &optlen)) exit(1); if (memcmp(table->entrytable, entrytable, replace.entries_size) == 0) continue; } for (unsigned j = 0, h = 0; h < NF_BR_NUMHOOKS; h++) { if (table->replace.valid_hooks & (1 << h)) { table->replace.hook_entry[h] = (struct ebt_entries*)table->entrytable + j; j++; } } table->replace.entries = table->entrytable; optlen = sizeof(table->replace) + table->replace.entries_size; if (setsockopt(fd, SOL_IP, EBT_SO_SET_ENTRIES, &table->replace, optlen)) exit(1); } close(fd); } static void checkpoint_net_namespace(void) { checkpoint_ebtables(); checkpoint_arptables(); checkpoint_iptables(ipv4_tables, sizeof(ipv4_tables) / sizeof(ipv4_tables[0]), AF_INET, SOL_IP); checkpoint_iptables(ipv6_tables, sizeof(ipv6_tables) / sizeof(ipv6_tables[0]), AF_INET6, SOL_IPV6); } static void reset_net_namespace(void) { reset_ebtables(); reset_arptables(); reset_iptables(ipv4_tables, sizeof(ipv4_tables) / sizeof(ipv4_tables[0]), AF_INET, SOL_IP); reset_iptables(ipv6_tables, sizeof(ipv6_tables) / sizeof(ipv6_tables[0]), AF_INET6, SOL_IPV6); } static void setup_common() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void setup_binderfs() { if (mkdir("/dev/binderfs", 0777)) { } if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setsid(); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 128 << 20; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); setup_common(); sandbox_common(); drop_caps(); initialize_netdevices_init(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); initialize_netdevices(); setup_binderfs(); loop(); exit(1); } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; retry: while (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, MNT_DETACH | UMOUNT_NOFOLLOW) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, MNT_DETACH | UMOUNT_NOFOLLOW)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } 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_loop() { checkpoint_net_namespace(); } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } reset_net_namespace(); } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } static void setup_binfmt_misc() { if (mount(0, "/proc/sys/fs/binfmt_misc", "binfmt_misc", 0, 0)) { } write_file("/proc/sys/fs/binfmt_misc/register", ":syz0:M:0:\x01::./file0:"); write_file("/proc/sys/fs/binfmt_misc/register", ":syz1:M:1:\x02::./file0:POC"); } static void setup_sysctl() { char mypid[32]; snprintf(mypid, sizeof(mypid), "%d", getpid()); struct { const char* name; const char* data; } files[] = { {"/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", mypid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) printf("write to %s failed: %s\n", files[i].name, strerror(errno)); } } #define USLEEP_FORKED_CHILD (3 * 50 * 1000) static long handle_clone_ret(long ret) { if (ret != 0) { __atomic_store_n(&clone_ongoing, 0, __ATOMIC_RELAXED); return ret; } usleep(USLEEP_FORKED_CHILD); syscall(__NR_exit, 0); while (1) { } } static long syz_clone(volatile long flags, volatile long stack, volatile long stack_len, volatile long ptid, volatile long ctid, volatile long tls) { long sp = (stack + stack_len) & ~15; __atomic_store_n(&clone_ongoing, 1, __ATOMIC_RELAXED); long ret = (long)syscall(__NR_clone, flags & ~CLONE_VM, sp, ptid, ctid, tls); return handle_clone_ret(ret); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { setup_loop(); int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); close_fds(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_one(void) { NONFAILING(memcpy((void*)0x20005d00, "jfs\000", 4)); NONFAILING( memcpy((void*)0x20000100, "\023\023w\305\3745\324\024T\325\324\035)\255\032`)" "Y\201F\346\276\026nA\255\r\275@T\003<\2373\273\332\202$" "\242\363\327r\347cnH\263<\277p\203r\350\361\271\223>" "\305\022wC\276\"\006 \236\360-\371\313\362\366\350\200\3238/\000", 78)); NONFAILING(memcpy( (void*)0x20001100, "\x71\x75\x6f\x74\x61\x2c\x64\x69\x73\x63\x61\x72\x64\x2c\x64\x69\x73\x63" "\x61\x72\x64\x2c\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x6b\x6f\x69\x38" "\x2d\x72\x75\x2c\x64\x69\x73\x63\x61\x72\x64\x2c\x00\xf4\x19\x3e\xb3\xba" "\x2a\x0d\x5f\xf2\xcd\x73\x74\x28\x8f\xf8\x9e\xc5\x13\xa5\x3e\x00\x73\x45" "\xde\xcb\x72\x09\x00\xf8\x31\x2d\xa2\x46\x3e\xb0\xed\xf5\x2f\xad\x1a\x00" "\xeb\xd4\x1c\x14\xb3\xce\x75\xd0\xcf\xfe\xfd\x37\x96\x24\xb1\x6f\xf2\x60" "\xc8\x35\x71\x3b\x26\x33\x52\xe0\x3b\x5c\xb8\xfa\x0c\x04\x2b\xd1\x22\x5e" "\xd4\xde\xd2\xb6\x2e\x12\xfe\xa4\xd7\xe6\x1b\x73\x8e\x40\xf4\x19\xe5\xda" "\xfe\xcd\x28\x3b\x3f\xab\x6b\x14\x2d\xdb\xc8\x93\xb3\x5a\x81\xfe\x92\x65" "\x59\x1e\xf3\x5f\xa2\x92\x8e\x09\x5f\xee\x0c\x10\xb2\x2e\x42\x12\x37\x8d" "\xe5\x9b\xca\x03\x07\xcc\x64\x4b\x96\x20\xab\xae\x54\x3a\xee\x7b\xbb\xd4" "\x22\xd8\x78\x56\xb7\x13\x48\xb8\xf4\x53\x98\xb9\x66\x0b\x6b\x3e\x8e\xe8" "\xa8\xc3\x2f\x32\x34\xcb\x46\xe2\xcd\x82\x7e\xc2\x5c\x1c\xa4\xd0\x46\xbc" "\x00\x4f\x8d\xf7\xb1\xee\x51\x07\x00\xd8\x0c\x7f\xa6\x5f\xa7\x24\xd0\xe1" "\xb4\x36\x9f\x1b\x64\xfe\x24\x9a\x03\x12\xe8\x43\x3e\x0c\x4a\xc9\x83\xde" "\x92\x5f\x52\xd7\x35\xb0\x3f\xea\x94\x1b\x1e\x94\x8a\xd8\xd1\x9c\xfd\xa5" "\xb7\x99\x32\x5f\xd6\x9d\x14\xfc\xf6\xcd\xde\x77\x00\xa6\x31\x50\xeb\x36" "\x99\xe5\x31\x4e\x08\x27\x75\x0e\xf6\xfb\xc9\x09\x0d\xb9\xc1\x3c\x24\x41" "\x50\xec\x19\xf3\xf3\xf1\xd8\xbe\x54\x2c\x24\xc9\xe7\xbc\xbf\xaa\x8a\xd2" "\x06\xd2\xa3\x3b\x0d\xdb\xd7\xf8\xe0\x7d\xc7\xd1\x71\x74\xa4\x54\x9f\xfa" "\xf5\x97\x69\x49\xcb\x69\x65\x8c\x42\xec\x7c\xd9\xfe\x8a\xd8\x28\x52\xce" "\xfb\x04\x64\x6e\xdb\x3a\x41\xeb\x51\x4e\xb6\xa7\x72\xb3\xee\x9f\x21\xe2" "\x58\x22\xb5\x4e\xc3\x3e\x59\x2d\x5c\x04\x09\x46\x72\x11\x01\xd5\x3a\x0b" "\x22\xf9\x03\x51\xc9\x5a\xa0\xf7\x3f\x18\x53\xd6\xaf\xcb\xf9\x44\x8b\x22" "\x0e\x98\x84\x66\x06\x6f\xa5\xc0\x9e\x61\x98\xfc\x45\x20\xd1\x99\xb9\x3b" "\xde\xde\xe8\x7c\x40\x43\x81\x5a\xa0\x56\x68\xa0\x6f\x8d\xa9\x66\x80\xcc" "\xc1\xa1\x39\xad\xe9\x0f\x5c\x79\xaf\x46\x20\x8f\x97\x62\xf5\x4e\x7c\x29" "\x08\x8d\x9d\xe6\x9b\xd2\xd5\x1c\x6b\x9c\x42\x20\x9d\xdc\x38\x80\x05\x13" "\x03\xb8\x55\xb8\x4d\x97\x51\x88\x6f\x64\x8a\xce\x25\x20\x1c\x5e\xa1\xfa" "\x91\x8a\x61\x74\x02\xff\x7b\xf6\xbe\x95\xc6\xb9\x5a\xa7\x16\x85\x08\x80" "\xc1\xe9\x04\x10\xb9\xeb\xec\x53\x43\x5e\xb2\x91\x0c\x59\x39\x4e\xe8\x4b" "\xa3\xba\xf9\xc4\x40\xae\x58\x33\xc2\x3f\x46\xb0\xea\xac\x54\x3c\xe0\xc8" "\x0b\xa0\x60\x32\x13\xe5\x3e\xa5\x97\x55\x07\x0b\x18\xbc\x10\xb9\x22\x4a" "\xa0\x82\xd9\x67\x20\x61\x15\xb4\x92\xd8\x25\x75\x1f\xcc\x00\x00\x00\x00" "\x00\x00\x00\xe6\x3d\x51\xc5\xbf\xfa\x4f\x71\x2c\x2d\x7f\xaf\xb9\xcf\x50" "\x6c\x06\xe1\xdd\xad\x4f\xc1\x90\x38\x40\x77\x86\xfe\xdb\x9a\xfd\xfb\x11" "\xa5\xf1\x82\x67\x6d\xd8\x4c\x91\x9f\x71\xd6\xee\xe2\xf3\xb7\x40\xb6\x8e" "\xe7\xf6\x51\x8e\xb9\xd8\xba\xa2\x6f\x1c\x38\x71\xf8\x63\xb1\x34\xee\x94" "\x2e\xb3\xaf\x92\xd1\x39\xcd\x7b\x46\x37\xf0\x62\x72\x99\xf9\x9b\x18\x73" "\xca\x16\x5e\x41\x0f\x8b\xd4\x21\xe1\xa4\x85\x9f\xd9\xbd\x6b\xb3\x4d\x25" "\xc0\x7e\x1a\xd4\x8c\x6a\xa1\xbb\x53\x33\xea\x28\xee\x14\x83\xf7\x70\x52" "\xb9\x66\x8a\x53\x0b\x10\xb8\x58\x5d\x79\x71\x24\xa6\x97\x5a\x71\xae\xdd" "\x0d\xdb\xe5\x57\xa1\x7b\x06\xbb\xfe\x54\x7a\xa5\x53\xc3\xd0\x8b\x89\x21" "\xa4\xb0\xd9\x38\xc0\x36\x87\xbd\x48\xa9\xa3\x87\xb4\xc0\x66\xc0\x56\xf4" "\x57\xfb\xa5\x73\x87\x75\xb9\x17\xa1\xe8\x2a\x89\xaa\xe1\x49\x4b\x45\xc4" "\xbb\x0f\xc8\xed\x1a\x93\x68\x8b\x97\x71\x7b\xf8\x50\xa4\xf7\xb0\x94\x2e" "\xda\x1f\x16\xec\xf0\x43\xef\xa6\xb8\xc1\xf9\xe0\xfb\xa3\x1f\x4a\x58\xed" "\x00\x31\x18\x0f\xb1\xb8\xa0\x0e\x4a\x86\x82\x6b\x03\x00\x00\x00\x2d\xd1" "\x27\x2a\x3d\x16\x09\xbe\xd5\x45\xb8\x6c\xa7\xa6\xbf\x56\x9e\xd3\x5d\x00" "\x00\xca\x23\xb0\xde\x74\x2f\x60\x08\xfd\xf2\x09\x28\x37\x0d\x88\xf8\xc0" "\x4b\xc3\xb9\x7b\x9a\x9e\x00\x62\xe8\xfc\x5f\xd2\x33\x7d\x85\xa6\x6b\xd2" "\x07\x30\xf3\x15\x3d\xb2\x45\x9f\xb3\x4c\x13\x4c\x06\xc1\x93\x64\xe9\x64" "\x5e\x83\x04\x0d\xd1\x6e\xe0\x8f\x18\xf0\xba\x69\xac\x9c\xa3\xe2\x5e\x15" "\x44\x2b\xd1\x38\x9f\xf6\xd3\x0d\x38\xa6\x46\x13\xb5\x35\xfa\x80\x8a\x9b" "\x3b\xae\x00\xbc\x37\x12\x71\xd4\x5d\xb2\x00\xa5\xcb\xf4\x33\xe2\xf6\xdd" "\x03\xb7\xc7\xfc\xc0\x40\x78\x1e\x51\x51\xc9\xba\xdb\x78\x7e\x7e\x1e\x2f" "\x39\xd6\x09\x98\x91\x9a\xa8\xdb\xd1\x56\xf3\x1a\x5b\x7f\xa5\xf9\xe5\xec" "\x01\xe8\xc7\x99\xed\xc3\x22\x70\x3c\x7f\xc4\xa8\x1a\xb9\xbc\x02\xdd\x96" "\x71\x4e\xe9\xd7\xe7\x5d\x28\xd0\x40\xff\x35\x66\x40\x4f\xd6\xdb\x54\x7a" "\x4b\x55\x31\x97\xc1\xf3\x16\xd2\x0e\xa5\x4f\x94\x59\xcd\x81\x35\x1a\x51" "\x0d\x10\x1e\x90\xea\xbe\x6d\xc6\xc6\xac\x3f\xfa\x18\x9c\x07\x3a\x5f\xb3" "\xfc\x38\x2d\xf6\x20\xbf\x5a\xf9\xe6\x38\x81\x9c\x77\xa0\x51\xe6\x87\x58" "\x66\xa8\x49\xf6\xf5\x78\xc0\x68\xc0\xe4\xc7\xcf\xbc\x15\x03\x39\x97\xef" "\xa8\x53\xc9\x62\x97\xb3\x20\x1d\xd3\x0e\xa4\x0d\xc9\x4d\x01\x0a\x0c\x33" "\xda\x9f\x63\xa1\x0b\x8f\x81\x3d\xc7\x89\xb8\x0b\xe3\xbb\x3f\x00\x09\x00" "\xb3\x0d\x5c\x03\xa6\xdd\xbf\x41\x8a\xc1\xb3\xd4\xa1\x38\x39\xe4\xb2\x73" "\xc4\xf9\x14\xbe\xd1\x3f\x88\x06\x29\x54\x95\xd4\x16\x09\x47\x87\x98\x39" "\x6a\xee\xc0\x6e\x8d\x34\x2e\xfd\x8a\x01\xb4\x22\xf6\xc2\x3a\x01\x1b\x03" "\x00\x00\x00\x00\x00\x00\x00\xbc\x2a\x02\x09\x4e\x19\xa1\xee\x8b\xb3\xc3" "\xc0\xc0\x88\xae\x8e\xfa\xf6\x8c\x85\x00\x1f\xaf\x7c\xf5\x42\x6f\xb7\xc5" "\xc3\x67\xed\x93\xeb\x25\xc4\x8a\x29\x35\x49\xd1\x5b\x91\xb5\x9f\x1b\x57" "\x4b\x3f\x61\x71\xf8\xe5\x6a\x40\x2e\xc5\x6b\xdf\x51\xd9\x03\x12\xb3\xca" "\x53\x98\xf4\x05\x00\x00\x00\x75\x04\xbe\x21\x45\x6e\xc9\x53\xbf\x06\xf1" "\x2f\xff\x20\xc3\x1e\x7c\x8b\x55\xfe\xe5\xc4\x9a\xa9\x39\x83\x0b\x09\x99" "\x5f\xf1\x49\x25\x81\x18\xf9\xaa\xe2\x92\x06\xf9\x73\x12\x88\xb5\x6b\x10" "\xde\x51\x52\x56\x65\xfd\xb4\xe2\x89\xb1\xc1\x77\xdf\x97\xaf\x30\x85\xf8" "\x20\x45\xfb\xd0\x12\xf1\xdd\xfe\xcd\x90\xb7\xb6\x3d\x81\x97\xd9\xc2\x4a" "\x6f\xe5\x91\x5a\xc7\xd7\x24\x08\x47\xf6\xd0\xbf\x90\x99\xee\x11\x7c\x83" "\xe3\x63\xf2\xad\x36\xa4\xa9\xf4\xfa\xa5\x73\x4a\xfe\x97\x70\xc3\x8c\x56" "\x5c\xae\x87\xa4\x08\xd0\xac\xbb\x2d\xb7\xdb\x91\x74\xac\xab\x60\xa3\x44" "\x81\x4e\xe6\x43\xfa\x82\x3a\xbb\xc2\x58\xf0\x7b\x0d\x58\xab\x0b\x65\x20" "\x0b\x18\xb7\xf9\xf8\x71\xbc\xb4\x15\xe4\x24\x0b\x87\x3f\xec\x5a\x45\x37" "\x89\xec\xd0\xc1\x06\x9d\x2d\xa8\x0b\x93\xc8\x6d\xff\x89\x33\xe7\x0c\x21" "\x08\x34\x60\x03\xdd\xf6\xb6\x03\x79\xee\xe6\x3b\x66\xe7\x34\x1c\xdd\x8f" "\x87\xed\x9f\x11\x89\x4c\x9a\xe0\x40\x97\x63\x21\xd8\x74\x05\xb4\x92\xf4" "\x19\xeb\xfa\x77\xeb\xf8\x3b\x56\xf1\x60\xb8\x08\x45\x11\x02\xf5\x48\x93" "\xd7\xd1\x69\x5c\x24\xbc\xc1\x84\xb1\xe7\xd1\x99\x40\xa2\xb6\x93\x1a\xde" "\x86\x38\xdd\x2b\x85\xa8\x6d\xc5\x11\xdb\xb9\x7f\x50\x52\x0f\x91\xfb\xf7" "\x20\x1f\xc9\x62\x1d\xff\xed\x97\x35\xd0\x7c\xa0\x24\x07\x6e\x85\x81\xdb" "\x33\x2b\x1c\x5f\x13\x5f\xe6\xb2\xe9\xd2\xc1\x8c\x91\x5d\x5a\x52\x4d\x3d" "\x5b\x26\x57\xe4\xb2\x8f\x1a\x09\x69\x6b\xd5\xb0\x76\xa1\x47\x1c\x8b\x2b" "\xb2\xca\x3b\xa5\x78\x43\xaf\x1d\x03\x59\x0f\x4e\x89\x85\xe1\xc4\x63\xc7" "\x81\xfb\x03\xad\x7e\xc8\x16\xea\x70\xbb\xe0\x64\x11\xaa\xe0\x01\xe0\xca" "\x72\xee\x7e\x82\x8a\xd1\x4b\xb7\xa0\x92\xd8\x83\xad\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x75\xcc\x0b\xf8\xa2\xe1\x80\x21\x92\xf0\x9e\x77" "\xbc\x48\x8b\x3b\xd3\xf0\x8a\x9c\xe8\x8b\xa2\xe2\xbc\xc2\x3c\xf5\xd7\x63" "\x1f\xb4\x9a\x37\x2b\x33\x9c\xe1\xf5\x00\x3d\xb0\xad\x70\x61\xfa\x6e\x93" "\xaa\x90\x8a\x2c\xed\x81\xf5\x06\x00\x23\xe2\xf9\x4f\xf0\x3c\x1c\x02\xf5" "\xa9\x19\x5f\x47\x35\x56\x3e\xfd\x0a\x1f\xc7\xda\xdc\xcb\x27\x2f\xc3\x6c" "\x3a\x3b\x69\xe1\xfc\xfb\x3d\xae\x04\x3f\xe0\xc1\x72\xec\x3a\x12\x74\x7d" "\x7a\xbf\x43\x82\xbf\x74\x53\xc1\x3d\xf9\x94\x64\x10\x17\xa0\xf4\x61\xad" "\xd9\x56\x0c\x90\x83\x4b\x76\x2a\xf3\x04\x08\xaf\x6a\x61\xf3\x17\xfd\x3c" "\x7b\x08\x16\x23\x6a\x76\x86\x01\xb7\xc6\x60\x6b\xa5\x2f\xf1\x26\xeb\x13" "\xd3\x3c\x91\x5c\x5d\xa9\x9d\x11\x8d\xb4\x88\xda\x3f\x3d\x77\x83\xa6\x08" "\x28\x2a\x93\xfc\xbe\x09\x10\xf0\x38\x9c\x3e\xf9\x1d\xe7\xc8\x4e\x23\xda" "\xa6\x55\x4c\x42\xb2\xb3\xe9\xf7\x0a\x9f\x79\x0f\x29\x01\x1a\x0b\x51\x3b" "\xfe\xba\x6e\x52\x87\x7e\xd8\xa1\x88\x95\x8e\x39\x37\x5d\xd2\x03\xd4\x34" "\xbe\xf4\xdc\x82\xcc\x8a\x21\xfc\x40\xc6\xe6\xe6\xa2\x47\x5f\x70\xbf\x15" "\x03\xbe\xb9\x55\x52\x36\xe6\x3b\xdc\x93\x7f\x8a\x4d\x61\xb2\x1d\x06\xa9" "\xd3\x23\x9d\x1d\xf6\xf2\xe9\xef\x16\xde\xe5\x90\xb1\x5a\xc0\x28\xc6\xd8" "\x73\xbb\x29\x65\x37\x4b\x73\x3d\x8e\x11\x39\x8d\x75\x05\x02\xb7\xf9\xb2" "\x01\x65\xf5\xab\x96\x27\xbe\xc5\xdc\xca\x2c\xbf\x24\x44\xed\x1d\xd6\xa0" "\xcc\x11\x12\xc9\x78\xa1\xc7\xb1\x3a\xab\x6f\xc4\x41\xdc\x37\xde\x47\xd6" "\x05\x05\xab\x96\x27\xc1\x80\x52\xd5\x1f\xdd\xfb\x78\xff\x53\x03\xbc\x32" "\xf9\x6f\x72\x81\x07\x8f\xab\x01\xc4\x55\xc8\xb7\xf2\x51\xac\x77\xee\x24" "\x28\xa1\x8e\x59\x3b\x9d\x9c\x99\xb4\xac\x72\x97\xd0\x77\xdd\x65\x76\xfa" "\xb2\x3f\x0f\xf1\xbb\x40\x81\x6a\xe6\x75\xbc\x44\x92\x16\xd0\x32\x76\x81" "\x36\xcf\xed\x74\xba\x43\x1f\x18\xa0\x78\x9b\xe1\xa4\x8a\x01\xb1\xf2\xae" "\xcf\xcf\x0a\xde\xea\x0a\x7b\xd4\x33\x48\xdd\x4f\xe8\x4b\xd8\xd7\xcb\x58" "\x8e\xfa\x97\x36\xe4\xb9\xdb\x58\x3a\xde\x55\x55\x36\x12\x04\xf0\x9a\x51" "\x4a\x65\xe9\x2d\x4c\xad\xa9\x4f\x9f\x9c\x5a\x5b\x01\xeb\x41\xfc\xb0\x5f" "\xf5\x64\xc8\x28\xac\x2e\x3d\xac\xeb\x17\xe9\xd7\x8c\xcc\xe1\x02\x28\xaa" "\xde\xbb\xbf\xf7\x69\x9e\x68\x21\x21\x3c\x71\x15\xec\xc7\x2c\x2c\xe5\x29" "\x14\x1a\xf0\x70\x61\xfb\xd7\xc8\x0f\x79\x71\xc3\x8d\xb3\x27\xe9\x9b\x67" "\xb4\x68\x16\xa2\xf3\x70\x8a\x9b\x59\x09\x43\x2c\xfa\x58\xc6\x9b\x43\x7b" "\x3c\xa7\x8a\xf3\xd2\xca\x1b\x26\xe5\x92\x5e\x7a\x60\x2b\x5a\x06\x11\xb3" "\x54\x65\xc1\xab\x8c\xef\x5f\x92\xce\x1d\xe2\x32\xfa\x52\x59\xdf\x0f\x0c" "\xb4\x1a\x90\x94\xc9\x2c\x44\x5c\x17\x71\xbe\x24\x34\x1e\x0f\xe8\x87\x27" "\xa4\xd8\x30\x15\x22\x38\xfd\x31\x7e\xc2\x24\x7a\x3b\xa9\x59\xc5\x70\x7c" "\x73\x68\x66\x98\xaf\xb1\x79\xde\x5e\x94\x54\x00\x00\x00\x00\x36\xc3\x1d" "\xd0\x61\x95\x07\x21\x49\xbe\x15\x95\x94\x0e\x77\x07\x3a\xf1\xc5\x09\xf0" "\xd0\x73\x02\x24\x74\x74\x9f\xd3\xaf\xd7\x74\xc3\x88\xca\xbb\xd6\xc5\xcc" "\x71\xf9\x56\x44\x20\xd7", 2382)); NONFAILING(*(uint64_t*)0x20001a4e = -1); NONFAILING(memcpy( (void*)0x2000bac0, "\x78\x9c\xec\xdd\xcb\x8e\x1c\x57\x19\x07\xf0\xaf\x2f\xd3\x73\x09\x71\xac" "\x08\x45\xc6\x62\xe1\x38\x10\x12\x42\x7c\xb7\x21\xdc\xe2\xb0\x60\x01\x0b" "\x90\x90\xd7\xd8\x9a\x4c\x22\x83\x03\xc8\x36\x88\x44\x16\x9e\xc8\x0b\xc4" "\x06\x78\x04\xd8\x64\xc3\x22\xaf\xc0\x03\xe4\x19\x10\x0f\x80\xa5\x19\x56" "\x59\x10\x0a\xd5\xcc\x39\x76\x4d\x4d\x8f\x7b\x8c\x3d\x5d\xdd\x73\x7e\x3f" "\x69\x5c\xf5\xd5\xe9\x9a\x3e\xe5\xff\xd4\x54\xf7\x54\x55\x9f\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe2\x07\xdf\xff\xc9\xd9\x5e" "\x44\x5c\xfd\x4d\x5a\x70\x34\xe2\x73\x31\x88\xe8\x47\x2c\xd7\xf5\x89\xa8" "\x67\x2e\xe7\xc7\x0f\x23\xe2\x58\x6c\x35\xc7\x0b\x11\x31\x58\x8c\xa8\xd7" "\xdf\xfa\xe7\xb9\x88\x0b\x11\xf1\xc9\x91\x88\x8d\xcd\x3b\xab\xf5\xe2\x73" "\xfb\xec\xc7\xc5\x33\xb7\x6f\x7e\xf6\xc3\xef\xfd\xe3\xf7\x7f\xba\x77\xec" "\x67\x6f\xff\xf4\xa3\x76\xfb\x8f\x3f\x7f\xfe\xe3\x3f\xdc\x8d\x38\xfa\xa3" "\x37\x3e\xfe\xec\xee\xd3\xd9\x76\x00\x00\x00\x28\x45\x55\x55\x55\x2f\xbd" "\xcd\x3f\x9e\xde\xdf\xf7\xbb\xee\x14\x00\x30\x15\xf9\xf8\x5f\x25\x79\xb9" "\x5a\xad\x56\xab\x9f\x6a\xfd\xc7\xfe\x6c\xf5\x47\x5d\x68\xdd\x54\x8d\x77" "\xb7\x59\x44\xc4\x7a\x73\x9d\xfa\x35\x83\xd3\xf1\x00\x30\x67\xd6\xe3\xd3" "\xae\xbb\x40\x87\xe4\x5f\xb4\x61\x44\x3c\xd3\x75\x27\x80\x99\xd6\xeb\xba" "\x03\x1c\x88\x8d\xcd\x3b\xab\xbd\x94\x6f\xaf\x79\x3c\x38\xb1\xdd\x9e\xff" "\x4e\xb9\x23\xff\xf5\xde\x83\xfb\x3b\xf6\x9a\x4e\xd2\xbe\xc6\x64\x5a\x3f" "\x5f\xf7\x62\x10\xcf\xef\xd1\x9f\xe5\x29\xf5\x61\x96\xe4\xfc\xfb\xed\xfc" "\xaf\x6e\xb7\x8f\xd2\xe3\x0e\x3a\xff\x69\xd9\x2b\xff\xd1\xf6\xad\x4f\xc5" "\xc9\xf9\x0f\xda\xf9\xb7\xec\xc8\xff\xcf\x11\x31\xb7\xf9\xf7\xc7\xe6\x5f" "\xaa\x9c\xff\xf0\x71\xf2\x5f\x1f\xcc\xf1\xfe\x2f\x7f\x00\x00\x00\x00\x00" "\x0e\xbf\xfc\xf7\xff\xa3\x1d\x9f\xff\x5d\x7c\xf2\x4d\xd9\x97\x47\x9d\xff" "\x3d\x31\xa5\x3e\x00\x00\x00\x00\x00\x00\x00\xc0\xd3\xf6\xa4\xe3\xff\x3d" "\x60\xfc\x3f\x00\x00\x00\x98\x59\xf5\x7b\xf5\xda\x5f\x8e\x3c\x5c\xb6\xd7" "\x67\xb1\xd5\xcb\xaf\xf4\x22\x9e\x6d\x3d\x1e\x28\x4c\xba\x59\x66\xa5\xeb" "\x7e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x49\x86\xdb\xd7\xf0\x5e" "\xe9\x45\x2c\x44\xc4\xb3\x2b\x2b\x55\x55\xd5\x5f\x4d\xed\xfa\x71\x3d\xe9" "\xfa\xf3\xae\xf4\xed\x87\x92\x75\xfd\x4b\x1e\x00\x00\xb6\x7d\x72\xa4\x75" "\x2f\x7f\x2f\x62\x29\x22\xae\xa4\xcf\xfa\x5b\x58\x59\x59\xa9\xaa\xa5\xe5" "\x95\x6a\xa5\x5a\x5e\xcc\xaf\x67\x47\x8b\x4b\xd5\x72\xe3\x7d\x6d\x9e\xd6" "\xcb\x16\x47\xfb\x78\x41\x3c\x1c\x55\xf5\x37\x5b\x6a\xac\xd7\x34\xe9\xfd" "\xf2\xa4\xf6\xf6\xf7\xab\x9f\x6b\x54\x0d\xf6\xd1\xb1\xe9\xe8\x30\x70\x00" "\x88\x88\xed\xa3\xd1\x86\x23\xd2\x21\x53\x55\xcf\x45\xd7\xaf\x72\x98\x0f" "\xf6\xff\xc3\xc7\xfe\xcf\x7e\x74\xfd\x73\x0a\x00\x00\x00\x1c\xbc\xaa\xaa" "\xaa\x5e\xfa\x38\xef\xe3\xe9\x9c\x7f\xbf\xeb\x4e\x01\x00\x53\x91\x8f\xff" "\xed\xf3\x02\x6a\xb5\x5a\xad\x56\xab\x0f\x5f\xdd\x54\x8d\x77\xb7\x59\x44" "\xc4\x7a\x73\x9d\xfa\x35\x83\xe1\xf8\x01\x60\xce\xac\xc7\xa7\x5d\x77\x81" "\x0e\xc9\xbf\x68\xc3\x88\x38\xd6\x75\x27\x80\x99\xd6\xeb\xba\x03\x1c\x88" "\x8d\xcd\x3b\xab\xbd\x94\x6f\xaf\x79\x3c\x48\xe3\xbb\xe7\x6b\x41\x76\xe4" "\xbf\xde\xdb\x5a\x2f\xaf\x3f\x6e\x3a\x49\xfb\x1a\x93\x69\xfd\x7c\xdd\x8b" "\x41\x3c\xbf\x47\x7f\x5e\x98\x52\x1f\x66\x49\xce\xbf\xdf\xce\xff\xea\x76" "\xfb\x28\x3d\xee\xa0\xf3\x9f\x96\xbd\xf2\xaf\xb7\xf3\x68\x07\xfd\xe9\x5a" "\xce\x7f\xd0\xce\xbf\xe5\xf0\xe4\xdf\x1f\x9b\x7f\xa9\x72\xfe\xc3\xc7\xca" "\x7f\x20\x7f\x00\x00\x00\x00\x00\x98\x61\xf9\xef\xff\x47\x9d\xff\xcd\x9b" "\x0c\x00\x00\x00\x00\x00\x00\x00\x73\x67\x63\xf3\xce\x6a\xbe\xef\x35\x9f" "\xff\xff\xe2\x98\xc7\xf5\x9a\x73\xee\xff\x3c\x34\x72\xfe\xbd\x7d\xe7\xef" "\xfe\xdf\xc3\x24\xe7\xdf\x6f\xe7\xdf\xba\x20\x67\xd0\x98\xbf\xff\xd6\xc3" "\xfc\xff\xbd\x79\x67\xf5\xa3\xdb\xff\xfa\x42\x9e\xce\x7c\xfe\x0b\x83\x51" "\xfd\xdc\x0b\xbd\xfe\x60\x98\xae\xf9\xa9\x16\xde\x89\xeb\x71\x23\xd6\xe2" "\xcc\xae\xc7\x0f\x77\xb4\x9f\xdd\xd5\xbe\xb0\xa3\xfd\xdc\x84\xf6\xf3\xbb" "\xda\x47\x75\xfb\x72\x6e\x3f\x15\xab\xf1\xcb\xb8\x11\x6f\x3f\x68\x5f\x9c" "\x70\x61\xd4\xd2\x84\xf6\x6a\x42\x7b\xce\x7f\x60\xff\x2f\x52\xce\x7f\xd8" "\xf8\xaa\xf3\x5f\x49\xed\xbd\xd6\xb4\x76\xff\xc3\xfe\xae\xfd\xbe\x39\x1d" "\xf7\x3c\x97\xff\xf6\x9f\x97\x77\xef\x5d\xd3\x77\x2f\x06\x0f\xb6\xad\xa9" "\xde\xbe\x93\x1d\xf4\x67\xeb\xff\xe4\x99\x51\xfc\xfa\xd6\xda\xcd\x53\xbf" "\xbd\x76\xfb\xf6\xcd\xb3\x91\x26\x3b\x96\x9e\x8b\x34\x79\xca\x72\xfe\x0b" "\xe9\x2b\xe7\xff\xca\x4b\xdb\xed\xf9\xf7\x7e\x73\x7f\xbd\xff\xe1\xe8\xb1" "\xf3\x9f\x15\xf7\x62\xb8\x67\xfe\x2f\x35\xe6\xeb\xed\x7d\x75\xca\x7d\xeb" "\x42\xce\x7f\x94\xbe\x72\xfe\xf9\x08\x34\x7e\xff\x9f\xe7\xfc\xf7\xde\xff" "\x5f\xeb\xa0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x28" "\x55\x55\x6d\xdd\x22\x7a\x39\x22\x2e\xa5\xfb\x7f\xba\xba\x37\x13\x00\x98" "\xae\x7c\xfc\xaf\x92\xbc\x5c\xad\x56\xab\xd5\x6a\xf5\xe1\xab\x9b\xaa\xf1" "\xde\x6c\x16\x11\xf1\xf7\xe6\x3a\xf5\x6b\x86\xdf\x8d\xfb\x66\x00\xc0\x2c" "\xfb\x6f\x44\xfc\xb3\xeb\x4e\xd0\x19\xf9\x17\x2c\x7f\xde\x5f\x3d\xfd\x52" "\xd7\x9d\x01\xa6\xea\xd6\xfb\x1f\xfc\xfc\xda\x8d\x1b\x6b\x37\x6f\x75\xdd" "\x13\x00\x00\x00\x00\x00\x00\x00\xe0\xff\x95\xc7\xff\x3c\xd1\x18\xff\x79" "\xeb\x3a\xa0\xd6\xb8\xd1\x3b\xc6\x7f\x7d\x2b\x4e\xcc\xed\xf8\x9f\xfd\xd1" "\x60\x6b\xac\xf3\xb4\x41\x2f\xc6\xa3\xc7\xff\x3e\x19\x8f\x1e\xff\x7b\x38" "\xe1\xf9\x16\x26\xb4\x8f\x26\xb4\x2f\x4e\x68\x5f\x9a\xd0\x3e\xf6\x46\x8f" "\x86\x9c\xff\x8b\x29\xe3\x9c\xff\xf1\xb4\x61\x25\x8d\xff\xfa\x4a\x07\xfd" "\xe9\x5a\xce\xff\x64\x1a\xeb\x39\xe7\xff\x95\xd6\xe3\x9a\xf9\x57\x7f\x9d" "\xe7\xfc\xfb\x3b\xf2\x3f\x7d\xfb\xbd\x5f\x9d\xbe\xf5\xfe\x07\xaf\x5f\x7f" "\xef\xda\xbb\x6b\xef\xae\xfd\xe2\xec\x99\x4b\x17\xce\x5f\xbc\x70\xfe\xe2" "\xc5\xd3\xef\x5c\xbf\xb1\x76\x66\xfb\xdf\x0e\x7b\x7c\xb0\x72\xfe\x79\xec" "\x6b\xd7\x81\x96\x25\xe7\x9f\x33\x97\x7f\x59\x72\xfe\x5f\x4e\xb5\xfc\xcb" "\x92\xf3\x7f\x39\xd5\xf2\x2f\x4b\xce\x3f\xbf\xde\x93\x7f\x59\x72\xfe\xf9" "\xbd\x8f\xfc\xcb\x92\xf3\x7f\x35\xd5\xf2\x2f\x4b\xce\xff\xab\xa9\x96\x7f" "\x59\x72\xfe\xaf\xa5\x5a\xfe\x65\xc9\xf9\x7f\x2d\xd5\xf2\x2f\x4b\xce\xff" "\xf5\x54\xcb\xbf\x2c\x39\xff\x53\xa9\x96\x7f\x59\x72\xfe\xa7\x53\x2d\xff" "\xb2\xe4\xfc\xf3\x19\x2e\xf9\x97\x25\xe7\x9f\xaf\x6c\x90\x7f\x59\x72\xfe" "\xe7\x52\x2d\xff\xb2\xe4\xfc\xcf\xa7\x5a\xfe\x65\xc9\xf9\x5f\x48\xb5\xfc" "\xcb\x92\xf3\xbf\x98\x6a\xf9\x97\x25\xe7\x7f\x29\xd5\xf2\x2f\x4b\xce\xff" "\xeb\xa9\x96\x7f\x59\x72\xfe\xdf\x48\xb5\xfc\xcb\x92\xf3\x7f\x23\xd5\xf2" "\x2f\x4b\xce\xff\x9b\xa9\x96\x7f\x59\x72\xfe\xdf\x4a\xb5\xfc\xcb\x92\xf3" "\xff\x76\xaa\xe5\x5f\x96\x9c\xff\x77\x52\x2d\xff\xb2\xe4\xfc\xbf\x9b\x6a" "\xf9\x97\x25\xe7\xff\x66\xaa\xe5\x5f\x96\x87\x9f\xff\x6f\xc6\x8c\x19\x33" "\x79\xa6\xeb\xdf\x4c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\xdb\x34" "\x2e\x27\xee\x7a\x1b\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfe\xc7\x0e\x1c\x08\x00\x00\x00" "\x00\x00\xf9\xbf\x36\x42\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x15\x76\xe0" "\x40\x00\x00\x00\x00\x00\xc8\xff\xb5\x11\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xb0\x77\x6f\x31\x72\x96\xf7\x19\xc0\xbf\x3d\xd9\x6b\x43\xc0\x0d" "\x67\xe2\x80\x6d\x4e\x06\x16\x76\xd7\x27\x70\x88\xc1\x24\x21\xa5\xa4\x07" "\x4a\x42\xda\xb4\xa4\xc6\xb1\xd7\xc6\x89\x4f\xf5\xae\x39\x09\x95\x4d\xa1" "\x2d\x51\x90\x8a\xd4\x5e\xd0\x8b\xa6\x49\x94\x46\x91\xda\x0a\x54\x45\x6a" "\x2a\xd1\x08\xa9\x91\xda\xbb\xe6\xaa\x11\x37\x51\x2b\xe5\xc2\x17\x50\x39" "\x28\xa9\x94\x2a\xb0\xd5\x37\xf3\xbe\xaf\x67\x66\x77\xe7\x5b\x63\x06\x66" "\xbe\xf7\xf7\x8b\xe0\x6f\xef\x7c\x33\xf3\xce\x37\xef\xcc\xee\xb3\xd1\x33" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xb4\xda\xf8\xf1\x99\x3f\x1b\x2a\x8a\xa2\xfc\xa7\xf1\xaf\x75\x45\x71" "\x7e\xf9\xe7\x35\xc5\xee\xf2\xaf\xf3\x3b\xde\xef\x15\x02\x00\x00\x00\xe7" "\xea\xad\xc6\xbf\xff\xfe\xc2\xf4\x85\xdd\x2b\xb8\x52\xcb\x31\xff\x76\xd5" "\x7f\x7c\x77\x61\x61\x61\xa1\xf8\xc2\x9b\xa7\xde\xfe\x8b\x85\x85\x74\xc1" "\x86\xa2\x18\x59\x5d\x14\x8d\xcb\xa2\x7f\xff\xc5\xcf\x17\x5a\x8f\x09\x9e" "\x29\xc6\x87\x86\x5b\xfe\x3e\x5c\x71\xf7\x23\x15\x97\x8f\x56\x5c\x3e\x56" "\x71\xf9\xaa\x8a\xcb\x57\x57\x5c\x3e\x5e\x71\xf9\xa2\x13\xb0\xc8\x9a\xe6" "\xef\x63\x1a\x37\x76\x6d\xe3\x8f\xeb\x9a\xa7\xb4\xb8\xb8\x18\x6b\x5c\x76" "\xed\x12\xd7\x7a\x66\x68\xf5\xf0\x70\xfc\x5d\x4e\xc3\x50\xe3\x3a\x0b\x63" "\x07\x8a\x43\xc5\xe1\x62\xa6\x98\x5a\x74\x9d\xa1\xc6\xff\x8a\xe2\x95\x8d" "\xe5\x7d\xdd\x5b\xc4\xfb\x1a\x6e\xb9\xaf\xf5\x45\x51\x9c\xfe\xe9\x53\xfb" "\xe2\x1a\x86\xc2\x39\xbe\xb6\x68\xbb\xb3\x86\xd6\xe7\xee\x8d\xbb\x8b\x0d" "\x6f\xfe\xf4\xa9\x7d\xdf\x9e\x7b\xfd\x8a\xa5\x66\xe5\x69\x58\xb4\xd2\xa2" "\xd8\xbc\xa9\x5c\xe7\xb3\x45\x71\xe6\xd7\x55\xc5\x50\xb1\x3a\x9d\x93\xb8" "\xce\xe1\x96\x75\xae\x5f\x62\x9d\x23\x6d\xeb\x1c\x6a\x5c\xaf\xfc\x73\xe7" "\x3a\x4f\xaf\x70\x9d\xf1\x71\x8f\x87\x75\xfe\xb0\xcb\x3a\xd7\x87\xaf\x3d" "\x7e\x4d\x51\x14\xf3\xc5\xb2\xc7\x74\x7a\xa6\x18\x2e\xd6\x76\xdc\x6b\x3a" "\xdf\xe3\xcd\x1d\x51\xde\x46\xf9\x54\x7e\xb0\x18\x3d\xab\x7d\xb2\x71\x05" "\xfb\xa4\xbc\xce\x4f\xae\x69\xdf\x27\x9d\x7b\x32\x9e\xff\x8d\xe1\x9c\x8c" "\x2e\xb3\x86\xd6\xa7\xe3\x8d\x2f\xaf\x5a\x74\xde\xdf\xe9\x3e\x29\x1f\x75" "\x3f\xec\xd5\xf2\xb6\xef\x2f\xef\x74\x7c\xbc\xf5\x57\xab\x6d\x7b\xb5\x3c" "\xe6\xa9\xeb\x96\xdf\x03\x4b\x3e\x77\x4b\xec\x81\xb4\x97\x5b\xf6\xc0\xa6" "\xaa\x3d\x30\xbc\x6a\xa4\xb1\x07\x86\xcf\xac\x79\x53\xdb\x1e\x98\x5e\x74" "\x9d\xe1\x62\xa8\x71\x5f\xa7\xae\xeb\xbe\x07\x26\xe7\x8e\x1c\x9f\x9c\x7d" "\xe2\xc9\x5b\x0e\x1d\xd9\x7b\x70\xe6\xe0\xcc\xd1\xe9\xa9\x1d\xdb\xb6\x6e" "\xdf\xb6\x75\xfb\xf6\xc9\x03\x87\x0e\xcf\x4c\x35\xff\x7d\x76\xa7\x74\x80" "\xac\x2d\x86\xd3\x1e\xdc\x14\xde\x6b\xe2\x1e\xbc\xa1\xe3\xd8\xd6\x2d\xb9" "\xf0\x8d\x77\xef\x75\x30\xde\x27\xaf\x83\xf2\xb1\x7f\xe6\xfa\x72\x41\xe7" "\x0f\x17\xcb\xec\xf1\xf2\x98\x67\x37\x9f\xfb\xeb\x20\x7d\xdf\x6f\x79\x1d" "\x8c\xb6\xbc\x0e\x96\x7c\x4f\x5d\xe2\x75\x30\xba\x82\xd7\x41\x79\xcc\xe9" "\xcd\x2b\xfb\x9e\x39\xda\xf2\xcf\x52\x6b\xe8\xd5\x7b\xe1\xba\x96\x3d\xf0" "\x7e\x7e\x3f\x2c\xef\xf3\xa1\x1b\x97\x7f\x2f\x5c\x1f\xd6\xf5\xdc\x4d\x67" "\xfb\xfd\x70\x64\xd1\x1e\x88\x0f\x6b\x28\xbc\xf6\xca\xaf\xa4\x9f\xf7\xc6" "\x6f\x0f\xe7\x65\xf1\xbe\xb8\xb2\xbc\xe0\xbc\x55\xc5\xc9\xd9\x99\x13\xb7" "\x3e\xbe\x77\x6e\xee\xc4\x74\x11\xc6\x7b\xe2\xa2\x96\xe7\xaa\x73\xbf\xac" "\x6d\x79\x4c\xc5\xa2\xfd\x32\x7c\xd6\xfb\x65\xf7\xdf\xfd\xf2\xfa\x2b\x97" "\xf8\xfa\xba\x70\xae\xc6\x6f\xee\xfe\x5c\x95\xc7\x6c\x9b\xe8\xfe\x5c\x35" "\xde\xdd\x97\x3e\x9f\x6d\x5f\xdd\x52\x84\xf1\x2e\x7b\xaf\xcf\xe7\x52\xdf" "\xcd\xca\xf3\x99\xb2\x44\x97\xf3\x59\x1e\xf3\xec\x2d\xe7\xfe\xb3\x60\xca" "\x25\x2d\xef\x7f\x63\x55\xef\x7f\x23\x63\xa3\xcd\xf7\xbf\x91\x74\x36\xc6" "\xda\xde\xff\x16\x3f\x35\x23\x8d\x95\x15\xc5\xe9\x5b\x56\xf6\xfe\x37\x16" "\xfe\x79\xaf\xdf\xff\x2e\xee\x93\xf7\xbf\xf2\x5c\x3d\x74\x6b\xf7\x3d\x50" "\x1e\xf3\xdc\xe4\xd9\xee\x81\xd1\xae\xef\x7f\xd7\x84\x39\x14\xd6\x73\x63" "\x48\x0c\xe3\x2d\xb9\xff\xed\xc6\xe5\xf3\xcd\x6d\xda\xf2\x5c\x56\xee\x9b" "\xd1\xd1\xb1\xb0\x6f\x46\xe3\x3d\xb6\xef\x9b\xad\x8b\xae\x53\xde\x5a\x79" "\xdf\x9b\xa7\xde\xd9\xbe\xd9\x7c\x4d\xfb\x73\xd5\xf6\x73\x4b\x0d\xf7\x4d" "\x79\xae\xfe\x72\xaa\xfb\xbe\x29\x8f\x79\x75\xfa\xdc\xdf\x3b\xd6\xc4\x3f" "\xb6\xbc\x77\xac\xaa\xda\x03\x63\x23\xab\xca\xf5\x8e\xa5\x4d\xd0\x7c\xbf" "\x5b\x58\x13\xf7\xc0\xad\xc5\xbe\xe2\x58\x71\xb8\xd8\x9f\xae\x53\x3e\xcb" "\xe5\x7d\x4d\x6c\x59\xd9\x1e\x58\x15\xfe\x79\xaf\xdf\x3b\x2e\xef\x93\x3d" "\x50\x9e\xab\x17\xb7\x74\xdf\x03\xe5\x31\x3f\xd8\xfa\xee\xfe\xec\xb4\x39" "\x7c\x25\x1d\xd3\xf2\xb3\x53\xe7\xef\x17\x96\xcb\xfc\x57\x8e\x9e\xb9\xbd" "\xce\xd3\xf6\x6e\x67\xfe\x72\x9d\x9f\xd8\xd6\xfd\x77\x43\xe5\x31\xaf\x6f" "\x3b\xdb\x9c\xd1\xfd\x3c\xdd\x1c\xbe\x72\xde\x12\xe7\xa9\xf3\xf5\xb3\xdc" "\x9e\xde\x5f\xbc\x37\xe7\xe9\xf2\xb0\xce\xc3\xdb\xbb\xff\x6e\xaa\x3c\xe6" "\xe2\x1d\x2b\xdc\x4f\xbb\x8b\xa2\x78\x6d\xfa\xb5\xc6\xef\xbb\xc2\xef\x77" "\xff\xf1\xe4\x7f\x7e\xb7\xed\xf7\xbe\x4b\xfd\x4e\xf9\xb5\xe9\xd7\xee\x9b" "\x7c\xe0\x47\x67\xb3\x7e\x00\x00\xde\xb9\xb7\x1b\xff\x9e\x5f\xd5\xfc\x59" "\xb3\xe5\xff\xb1\x5e\xc9\xff\xff\x0f\x00\x00\x00\x0c\x84\x98\xfb\x87\xc3" "\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x47\xc2\x4c\xe4\x7f\x00\x00\x00" "\xa8\x8d\x98\xfb\x47\xc3\x4c\x32\xc9\xff\x8f\xdc\xbe\xf3\xa5\xb7\x9e\x2e" "\xd2\xa7\x01\x2e\x04\xf1\xf2\x78\x1a\xee\xbf\xb3\x79\x5c\xec\x78\xcf\x87" "\xbf\x6f\x58\x38\xa3\xfc\xfa\xc7\xbe\x35\xf6\xd2\x57\x9e\x5e\xd9\x7d\x0f" "\x17\x45\xf1\xcb\xfb\x3e\xb4\xe4\xf1\x8f\xdc\x19\xd7\xd5\x74\x3c\xae\xf3" "\x23\xed\x5f\x5f\xe4\xf2\xab\x57\x74\xff\x0f\x3f\x78\xe6\xb8\xd6\xcf\x4f" "\x38\xbd\xb3\x79\xfb\xf1\xf1\xac\x74\x1b\xc4\xae\xf2\x2b\x93\x5b\x1a\xb7" "\xbb\xe1\x89\xe9\xc6\x7c\xf5\xbe\xa2\x31\x1f\x98\x7f\xee\x99\xe6\xed\x37" "\xff\x1e\x8f\x3f\xb5\xb5\x79\xfc\x5f\x87\x0f\x2d\xd9\x7d\x60\xa8\xed\xfa" "\x9b\xc3\x7a\xae\x0d\x73\x43\xf8\x4c\x99\xfb\x77\x9f\x39\x0f\xe5\x8c\xd7" "\x7b\x69\xfd\x55\xff\x7a\xd1\x67\xcf\xdc\x5f\xbc\xde\xd0\xa6\x0b\x1a\x0f" "\xf3\xc5\x3f\x6a\xde\x6e\xfc\x8c\xa8\x17\x2e\x6a\x1e\x1f\x1f\xf7\x72\xeb" "\xff\x97\xaf\x7e\xe7\xa5\xf2\xf8\xc7\xaf\x5b\x7a\xfd\x4f\x0f\x2f\xbd\xfe" "\x53\xe1\x76\x7f\x12\xe6\x2f\x76\x35\x8f\x6f\x3d\xe7\x5f\x69\x59\xff\x9f" "\x84\xf5\xc7\xfb\x8b\xd7\xbb\xf5\x9b\xdf\x5f\x72\xfd\x2f\x5f\xd6\x3c\xfe" "\xe5\xb0\x2f\xbe\x1e\x66\xe7\xfa\xef\xfe\xf3\x0f\xbf\xb5\xd4\xf3\x15\xef" "\x67\xf7\x1d\xcd\xeb\xc5\xfb\x9f\xfa\xdf\x6d\x8d\xeb\xc5\xdb\x8b\xb7\xdf" "\xb9\xfe\xf1\xa7\xa7\xdb\xce\x47\xe7\xed\xbf\xfa\x66\xf3\x76\x76\x3d\xfa" "\xb3\x91\xd6\xe3\xe3\xd7\xe3\xfd\x44\x0f\xdf\xd1\xbe\xbf\x87\xc2\xf3\xdb" "\xd6\x23\x2f\x8a\xe2\x3b\x7f\x5a\xb4\x9d\xe7\xe2\xa3\xcd\xeb\xfd\x73\xc7" "\xfa\xe3\xed\x1d\xbf\x63\xe9\xf5\xdf\xdc\xb1\xce\xe3\x43\x57\x37\xae\x7f" "\xe6\xf1\xac\x6b\x7b\x5c\x5f\xfb\xdb\x2d\x4b\x3e\xde\xb8\x9e\xdd\xff\xb0" "\xae\xed\xf1\xbc\x70\x4f\x38\x7f\x6f\x4e\xfe\xa0\xbc\xdd\x53\x0f\x84\xfd" "\x18\x2e\xff\xbf\x1f\x36\x6f\xaf\xf3\xb3\x4c\x5f\xbe\xa7\xfd\xfd\x26\x1e" "\xff\xf5\x75\xcd\xd7\x6d\xbc\xbd\xc9\x8e\xf5\xbf\xd0\xb1\xfe\xf9\xab\xcb" "\x73\x57\xbd\xfe\x7b\xdf\x6c\xae\xff\xe5\xbb\x56\xb7\xad\x7f\xf7\x27\xc3" "\x7e\xba\xb7\x39\xab\xd6\x7f\xf0\x6f\x2e\x6c\xbb\xfe\x37\xbe\xdd\x7c\x3e" "\x4e\x3c\x36\x71\xf4\xd8\xec\xc9\x43\xfb\x5b\xce\x6a\xeb\xeb\x78\xf5\xf8" "\x9a\xb5\xe7\x9d\xff\x81\x0b\x2e\x0c\xef\xa5\x9d\x7f\xdf\x73\x6c\xee\x91" "\x99\x13\x1b\xa6\x36\x4c\x15\xc5\x86\x01\xfc\xc8\xc0\x5e\xaf\xff\x9b\x61" "\xfe\x4f\x73\xcc\xbf\xfb\xf7\xd0\xf4\xa3\x9f\x35\xf7\xdd\xf3\x9f\x6a\x7e" "\xdf\xba\xe1\xe7\xcd\xbf\xbf\x10\xbe\xfe\x70\x78\x3e\xe3\xf7\xc7\xaf\xfd" "\xd5\x58\xdb\x7e\xed\x7c\xde\xe7\xef\x6a\xce\x73\x5d\xff\x4d\x61\x1d\x2b" "\x75\xd9\x57\xff\xfb\xea\x15\x1d\x78\xea\xf3\xaf\x9c\xfc\xa7\x3f\x7e\xbd" "\xf3\xe7\x82\xf8\x78\x8e\x5f\x32\xde\x78\x7c\x2f\x6e\xbc\xb4\x71\xd9\xd0" "\xab\xcd\xcb\x3b\xdf\xaf\xaa\xfc\xd7\x25\xed\xaf\xeb\x1f\x8f\x4e\x35\xe6" "\xf7\xc2\x79\x5d\x08\x9f\xcc\xbc\xe9\xd2\xe6\xfd\x75\xde\x7e\xfc\x6c\x92" "\xe7\x3f\xdd\x7c\xfd\xc6\x9f\xe4\xe2\xf5\x8b\x8e\xcf\x13\x59\x37\xd2\xfe" "\x38\xce\x75\xfd\x3f\x0e\x3f\xc7\x7c\xff\xf2\xf6\xf7\xbf\xb8\x3f\xbe\xf7" "\x74\xc7\xa7\x39\xaf\x2b\x86\xca\x25\xcc\x87\xf7\x87\x62\xbe\x79\x79\x3c" "\x2a\x9e\xef\xe7\x4f\x5f\xba\xe4\xfd\xc5\xcf\xe1\x29\xe6\xaf\x38\x9b\x65" "\x2e\x6b\xf6\x89\xd9\xc9\xc3\x87\x8e\x9e\x7c\x7c\x72\x6e\x66\x76\x6e\x72" "\xf6\x89\x27\xf7\x1c\x39\x76\xf2\xe8\xdc\x9e\xc6\x67\x97\xee\xf9\x62\xd5" "\xf5\xcf\xbc\xbe\xd7\x36\x5e\xdf\xfb\x67\x76\x6c\x2b\x1a\xaf\xf6\x63\xcd" "\xd1\x63\xef\xf7\xfa\x8f\x3f\xb8\x6f\xff\x6d\x53\xd7\xef\x9f\x39\xb0\xf7" "\xe4\x81\xb9\x07\x8f\xcf\x9c\x38\xb8\x6f\x76\x76\xdf\xcc\xfe\xd9\xeb\xf7" "\x1e\x38\x30\xf3\x58\xd5\xf5\x0f\xed\xdf\x35\xbd\x65\xe7\xd6\xdb\xb6\x4c" "\x1c\x3c\xb4\x7f\xd7\xed\x3b\x77\x6e\xdd\x39\x71\xe8\xe8\xb1\x72\x19\xcd" "\x45\x55\xd8\x31\xf5\xa5\x89\xa3\x27\xf6\x34\xae\x32\xbb\x6b\xdb\xce\xe9" "\xed\xdb\xb7\x4d\x4d\x1c\x39\xb6\x7f\x66\xd7\x6d\x53\x53\x13\x27\xab\xae" "\xdf\xf8\xde\x34\x51\x5e\xfb\xd1\x89\x13\x33\x87\xf7\xce\x1d\x3a\x32\x33" "\x31\x7b\xe8\xc9\x99\x5d\xd3\x3b\x77\xec\xd8\x52\xf9\xe9\x8f\x47\x8e\x1f" "\x98\xdd\x30\x79\xe2\xe4\xd1\xc9\x93\xb3\x33\x27\x26\x9b\x8f\x65\xc3\x5c" "\xe3\xcb\xe5\xf7\xbe\xaa\xeb\x93\x87\xd9\x63\xe1\xfd\xae\xc3\x50\xf8\xe9" "\xfc\x73\x37\xef\x48\x9f\x8f\x5b\xfa\xd6\x97\x97\xbd\xa9\xe6\x21\xed\x3f" "\x9e\x16\x6f\x84\xcf\x82\x8a\xdf\xdf\xaa\xfe\x1e\x73\xff\x58\x98\x49\x26" "\xf9\x1f\x00\x00\x00\x72\x10\x73\x7f\xf8\xe0\xff\x33\x17\xc8\xff\x00\x00" "\x00\x50\x1b\x31\xf7\xaf\x0e\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\x1f" "\x0f\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xf7" "\x92\xfe\xbf\xfe\x7f\x37\xfa\xff\xfa\xff\x83\xbc\x7e\xfd\x7f\xfd\x7f\xaa" "\xf5\x5b\xff\x3f\xe6\xfe\x35\x45\x91\x65\xfe\x07\x00\x00\x80\x1c\xc4\xdc" "\xbf\x36\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\xbc\x30\x13\xf9\x1f" "\x00\x00\x00\x6a\x23\xe6\xfe\xf3\xc3\x4c\x32\xc9\xff\xfa\xff\xfa\xff\xfa" "\xff\xdd\xfa\xff\xf1\x58\xfd\xff\x42\xff\x5f\xff\xff\x1d\xd2\xff\xd7\xff" "\xef\x46\xff\x5f\xff\x7f\x90\xd7\xaf\xff\xaf\xff\x4f\xb5\x7e\xeb\xff\xc7" "\xdc\xff\x81\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\x0b\xc2\x4c" "\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x2f\x0c\x33\x91\xff\x01\x00\x00\xa0" "\x36\x62\xee\x5f\x17\x66\x92\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xf7\xdf\xff" "\xd7\xff\xd7\xff\xef\x25\xfd\x7f\xfd\xff\x6e\xf4\xff\xf5\xff\x07\x79\xfd" "\xfa\xff\xfa\xff\x54\xeb\xb7\xfe\x7f\xcc\xfd\xbf\x12\x66\x92\x49\xfe\x07" "\x00\x00\x80\x1c\xc4\xdc\xff\xc1\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6" "\xfe\x8b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x2f\x0e\x33\xc9\x24" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xf7\x92\xfe\xbf\xfe" "\x7f\x37\xfa\xff\xfa\xff\x83\xbc\x7e\xfd\x7f\xfd\x7f\xaa\xf5\x5b\xff\x3f" "\xe6\xfe\x4b\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\x2f\x0d\x33" "\x91\xff\x01\x00\x00\xa0\x36\x62\xee\xbf\x2c\xcc\x44\xfe\x07\x00\x00\x80" "\xda\x88\xb9\xff\xf2\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\xbf\xfe\x7f\x2f\xe9\xff\xeb\xff\x77\xa3\xff\xaf\xff\x3f\xc8\xeb\xd7" "\xff\xd7\xff\xa7\x5a\xbf\xf5\xff\x63\xee\xbf\x22\xcc\x24\x93\xfc\x0f\x00" "\x00\x00\x39\x88\xb9\xff\xca\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe" "\x0f\x85\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xaf\x0f\x33\xc9\x24\xff" "\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xf7\xd2\x60\xf5\xff\x87" "\x97\xbd\x44\xff\xbf\x49\xff\xbf\x9d\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\xdd" "\xf5\x5b\xff\x3f\xe6\xfe\x0f\x87\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31" "\xf7\x5f\x15\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\x7f\x75\x98\x89\xfc" "\x0f\x00\x00\x00\xb5\x11\x73\xff\x86\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe\xbf" "\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x2f\x0d\x56\xff\x7f\x79\xfa\xff\x4d\xfa" "\xff\xed\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xae\xdf\xfa\xff\x31\xf7\x6f" "\x0c\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\xdf\x14\x66\x22\xff\x03" "\x00\x00\x40\x6d\xc4\xdc\x7f\x4d\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73" "\xff\xb5\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd" "\xff\x5e\xd2\xff\xd7\xff\xef\x46\xff\x5f\xff\x7f\x90\xd7\xaf\xff\xaf\xff" "\x4f\xb5\x7e\xeb\xff\xc7\xdc\x7f\x5d\x98\x49\x26\xf9\x1f\x00\x00\x00\x72" "\x10\x73\xff\xf5\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x37\x84\x99" "\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\x6f\x0e\x33\xc9\x24\xff\xeb\xff\xeb" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xf7\x92\xfe\xbf\xfe\x7f\x37\xfa\xff" "\xfa\xff\x83\xbc\x7e\xfd\x7f\xfd\x7f\xaa\xf5\x5b\xff\x3f\xe6\xfe\x1b\xc3" "\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\x6f\x0a\x33\x91\xff\x01\x00" "\x00\xa0\x36\x62\xee\xbf\x39\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\x7f" "\x22\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf" "\x4b\xfa\xff\xfa\xff\xdd\xe8\xff\xeb\xff\x0f\xf2\xfa\xf5\xff\xf5\xff\xa9" "\xd6\x6f\xfd\xff\x98\xfb\x6f\x09\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62" "\xee\xbf\x35\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\x7f\x32\xcc\x44\xfe" "\x07\x00\x00\x80\xda\x88\xb9\x7f\x2a\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x4b\xfa\xff\xfa\xff\xdd\xe8\xff\xeb\xff" "\x0f\xf2\xfa\xf5\xff\xf5\xff\xa9\xd6\x6f\xfd\xff\x98\xfb\xa7\xc3\x4c\x32" "\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\xb7\x84\x99\xc8\xff\x00\x00\x00\x50" "\x1b\x31\xf7\x6f\x0d\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\xdf\x16\x66" "\x92\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\x25\xfd" "\x7f\xfd\xff\x6e\xf4\xff\xf5\xff\x07\x79\xfd\xfa\xff\xfa\xff\x54\xeb\xb7" "\xfe\x7f\xcc\xfd\xdb\xc3\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\x77" "\x84\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xdf\x16\x66\x22\xff\x03\x00" "\x00\x40\x6d\xc4\xdc\x7f\x7b\x98\x49\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\x5f\xff\xbf\x97\xf4\xff\xf5\xff\xbb\xd1\xff\xd7\xff\x1f\xe4" "\xf5\xeb\xff\xeb\xff\x53\xad\xdf\xfa\xff\x31\xf7\xef\x0c\x33\xc9\x24\xff" "\x03\x00\x00\x40\x0e\x62\xee\xff\x48\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11" "\x73\xff\x1d\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x1f\x0d\x33\xc9" "\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xf7\x92\xfe\xbf" "\xfe\x7f\x37\xfa\xff\xfa\xff\x83\xbc\x7e\xfd\x7f\xfd\x7f\xaa\xf5\x5b\xff" "\x3f\xe6\xfe\x5d\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x77\x86" "\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xdf\x15\x66\x22\xff\x03\x00\x00" "\x40\x6d\xc4\xdc\xbf\x3b\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff" "\xaf\xff\xaf\xff\xdf\x4b\xfa\xff\xfa\xff\xdd\xe8\xff\x0f\x66\xff\x3f\xfc" "\xd8\xa2\xff\xdf\x47\xfd\xff\x72\x0f\xe9\xff\xd3\x8f\xfa\xad\xff\x1f\x73" "\xff\xdd\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x1f\x0b\x33\x91" "\xff\x01\x00\x00\xa0\x36\x62\xee\xff\x78\x98\x89\xfc\x0f\x00\x00\x00\xb5" "\x11\x73\xff\x27\xc2\x4c\x32\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa" "\xff\xfa\xff\xbd\xa4\xff\xaf\xff\xdf\x8d\xfe\xff\x60\xf6\xff\x23\xfd\xff" "\xfe\xe9\xff\xfb\xef\xff\xd3\xaf\xfa\xad\xff\x1f\x73\xff\x3d\x61\x26\x99" "\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x9f\x0c\x33\x91\xff\x01\x00\x00\xa0" "\x36\x62\xee\xff\xd5\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\x7b\xc3" "\x4c\x32\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xbd\xa4" "\xff\xaf\xff\xdf\x8d\xfe\xbf\xfe\xff\x20\xaf\x5f\xff\x5f\xff\x9f\x6a\xfd" "\xd6\xff\x8f\xb9\xff\xd7\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb" "\xef\x0b\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\xff\x54\x98\x89\xfc\x0f" "\x00\x00\x00\xb5\x11\x73\xff\xaf\x87\x99\x64\x92\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\xf5\xff\x7b\x49\xff\x5f\xff\xbf\x1b\xfd\x7f\xfd\xff" "\x41\x5e\xbf\xfe\xbf\xfe\x3f\xd5\xfa\xad\xff\x1f\x73\xff\x6f\x84\x99\x64" "\x92\xff\x01\x00\x00\x20\x07\x31\xf7\xff\x66\x98\x89\xfc\x0f\x00\x00\x00" "\xb5\x11\x73\xff\x6f\x85\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xdf\x1f" "\x66\x92\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\x25" "\xfd\x7f\xfd\xff\x6e\xf4\xff\xf5\xff\x07\x79\xfd\xfa\xff\xfa\xff\x54\xeb" "\xb7\xfe\x7f\xcc\xfd\xbf\x1d\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc" "\xff\x40\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\xa7\xc3\x4c\xe4\x7f" "\x00\x00\x00\xa8\x8d\x98\xfb\x3f\x13\x66\x92\x49\xfe\xd7\xff\xd7\xff\xd7" "\xff\xd7\xff\xd7\xff\xd7\xff\xef\x25\xfd\x7f\xfd\xff\x6e\xf4\xff\xf5\xff" "\x07\x79\xfd\xfa\xff\xfa\xff\x54\xeb\xb7\xfe\x7f\xcc\xfd\x0f\x86\x99\x64" "\x92\xff\x01\x00\x00\x20\x07\x31\xf7\x7f\x36\xcc\x44\xfe\x07\x00\x00\x80" "\xda\x88\xb9\xff\x77\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x7f\x37" "\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x4b" "\xfa\xff\x8b\xfb\xff\xe5\x7b\x98\xfe\x7f\x93\xfe\xbf\xfe\xff\x20\xaf\x5f" "\xff\x5f\xff\x9f\x6a\xfd\xd6\xff\x8f\xb9\xff\x73\x61\x26\x99\xe4\x7f\x00" "\x00\x00\xc8\x41\xcc\xfd\xbf\x17\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc" "\xff\xfb\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x0f\x85\x99\x64\x92" "\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x7b\x49\xff\xdf\x7f" "\xff\xbf\x1b\xfd\x7f\xfd\xff\x41\x5e\xbf\xfe\xbf\xfe\x3f\xd5\xfa\xad\xff" "\x1f\x73\xff\xe7\xc3\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\xff\x20" "\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\x7f\x4f\x98\x89\xfc\x0f\x00\x00" "\x00\xb5\x11\x73\xff\xc3\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\xff\x5e\xd2\xff\xd7\xff\xef\x46\xff\x5f\xff\x7f\x90\xd7" "\xaf\xff\xaf\xff\x4f\xb5\x7e\xeb\xff\xc7\xdc\xbf\x37\xcc\x24\x93\xfc\x0f" "\x00\x00\x00\x39\x88\xb9\xff\x0b\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc" "\xfd\xfb\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\xf7\x87\x99\x64\x92" "\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x7b\x49\xff\x5f\xff" "\xbf\x1b\xfd\x7f\xfd\xff\x41\x5e\xbf\xfe\xbf\xfe\x3f\xd5\xfa\xad\xff\x1f" "\x73\xff\x4c\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\x81\x30\x13" "\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\x83\x61\x26\xf2\x3f\x00\x00\x00\xd4" "\x46\xcc\xfd\x8f\x84\x99\x64\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\x7b\x49\xff\x5f\xff\xbf\x1b\xfd\x7f\xfd\xff\x41\x5e\xbf\xfe" "\xbf\xfe\x3f\xd5\xfa\xad\xff\x1f\x73\xff\xa1\x30\x93\x4c\xf2\x3f\x00\x00" "\x00\xe4\x20\xe6\xfe\x2f\x86\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\x7f" "\x29\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\x70\x98\x49\x26\xf9\x5f" "\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x97\xf4\xff\xf5\xff\xbb" "\xd1\xff\xd7\xff\x1f\xe4\xf5\xeb\xff\xeb\xff\x53\xad\xdf\xfa\xff\x31\xf7" "\x1f\x09\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\x3f\x1a\x66\x22\xff" "\x03\x00\x00\x40\x6d\xc4\xdc\x7f\x2c\xcc\x44\xfe\x07\x00\x00\x80\xda\x88" "\xb9\xff\x78\x98\x49\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f" "\xff\xbf\x97\xf4\xff\xf5\xff\xbb\xd1\xff\xd7\xff\x1f\xe4\xf5\xeb\xff\xeb" "\xff\x53\xad\xdf\xfa\xff\x31\xf7\xff\x61\x98\x49\x26\xf9\x1f\x00\x00\x00" "\x72\x10\x73\xff\x89\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\xd9\x30" "\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\xb9\x30\x93\x4c\xf2\xbf\xfe\xbf" "\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x2f\xe9\xff\xeb\xff\x77\xa3\xff" "\xaf\xff\x3f\xc8\xeb\xd7\xff\xd7\xff\xa7\x5a\xbf\xf5\xff\x63\xee\x3f\x19" "\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xff\x68\x98\x89\xfc\x0f\x00" "\x00\x00\xb5\x11\x73\xff\x63\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd" "\x8f\x87\x99\x64\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff" "\x7b\x49\xff\x5f\xff\xbf\x1b\xfd\x7f\xfd\xff\x41\x5e\xbf\xfe\xbf\xfe\x3f" "\xd5\xfa\xad\xff\x1f\x73\xff\x13\x61\x26\x99\xe4\x7f\x00\x00\x00\xfe\x9f" "\xbd\xbb\xd8\x15\x2d\x2b\xe2\x38\xdc\x09\x03\x48\x08\x0f\xc3\x93\xf0\x3e" "\xb8\x43\xe3\xee\xee\xee\xee\xee\xee\xee\xae\x8d\xeb\x80\x84\x5b\x55\x03" "\xd2\xbd\xf6\x4d\xc8\x86\xb5\xab\xbe\x6f\x52\xb9\xb9\x27\x39\x6b\xfa\xcf" "\xc9\x2f\x9b\x09\x72\xf7\xdf\x33\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd" "\xf7\x8a\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\xbd\xe3\x96\x21\xfb\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x33\xe9\xff\xf5\xff\x2b\xfa" "\x7f\xfd\xff\x95\xdf\xaf\xff\xd7\xff\x73\x6c\xb7\xfe\x3f\x77\xff\x7d\xe2" "\x96\x21\xfb\x1f\x00\x00\x00\x26\xc8\xdd\x7f\xdf\xb8\xc5\xfe\x07\x00\x00" "\x80\x36\x72\xf7\xdf\x2f\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\xf7\x8f" "\x5b\x86\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xcf\xa4\xff" "\xd7\xff\xaf\xe8\xff\xf5\xff\x57\x7e\xbf\xfe\x5f\xff\xcf\xb1\xdd\xfa\xff" "\xdc\xfd\x0f\x88\x5b\x86\xec\x7f\x00\x00\x00\x98\x20\x77\xff\x03\xe3\x16" "\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xa0\xb8\xc5\xfe\x07\x00\x00\x80\x36" "\x72\xf7\x3f\x38\x6e\x19\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf" "\xff\x3f\x93\xfe\x5f\xff\xbf\xa2\xff\xd7\xff\x5f\xf9\xfd\xfa\x7f\xfd\x3f" "\xc7\x76\xeb\xff\x73\xf7\x3f\x24\x6e\x19\xb2\xff\x01\x00\x00\x60\x82\xdc" "\xfd\x0f\x8d\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\xc3\xe2\x16\xfb\x1f" "\x00\x00\x00\xda\xc8\xdd\xff\xf0\xb8\x65\xc8\xfe\xd7\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\xff\x4c\xfa\x7f\xfd\xff\x8a\xfe\x5f\xff\x7f\xe5\xf7" "\xeb\xff\xf5\xff\x1c\x3b\xbd\xff\xbf\xc7\xad\xff\xbe\x37\xdb\xff\xe7\xee" "\xbf\x35\x6e\x19\xb2\xff\x01\x00\x00\x60\x82\xdc\xfd\x8f\x88\x5b\xec\x7f" "\x00\x00\x00\x68\x23\x77\xff\x23\xe3\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd" "\xff\xa8\xb8\x65\xc8\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff" "\x4c\xfa\x7f\xfd\xff\x8a\xfe\x5f\xff\x7f\xe5\xf7\xeb\xff\xf5\xff\x1c\x3b" "\xbd\xff\x3f\xe8\xfd\xff\xf3\xdf\xb9\xfb\x1f\x1d\xb7\x0c\xd9\xff\x00\x00" "\x00\x30\x41\xee\xfe\xc7\xc4\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xb1" "\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\x7f\x5c\xdc\x32\x64\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x7f\x26\xfd\xbf\xfe\x7f\x45\xff\xaf" "\xff\xbf\xf2\xfb\xf5\xff\xfa\x7f\x8e\xed\xd6\xff\xe7\xee\x7f\x7c\xdc\x32" "\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\x9f\x10\xb7\xd8\xff\x00\x00\x00\xd0" "\x46\xee\xfe\x27\xc6\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x49\x71\xcb" "\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x99\xf4\xff\xfa" "\xff\x15\xfd\xbf\xfe\xff\xca\xef\xd7\xff\xeb\xff\x39\xb6\x5b\xff\x9f\xbb" "\xff\xc9\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee\x7f\x4a\xdc\x62\xff" "\x03\x00\x00\x40\x1b\xb9\xfb\x9f\x1a\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee" "\xfe\xa7\xc5\x2d\x43\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xff\x57\xfd\xff" "\x9d\xf4\xff\xfa\xff\x35\xfd\xbf\xfe\x7f\x45\xff\xaf\xff\xbf\xf2\xfb\xf5" "\xff\xfa\x7f\x8e\xed\xd6\xff\xe7\xee\x7f\x7a\xdc\x32\x64\xff\x03\x00\x00" "\xc0\x04\xb9\xfb\x9f\x11\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x67\xc6" "\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x59\x71\xcb\x90\xfd\xaf\xff\xd7" "\xff\xeb\xff\xf5\xff\xbe\xff\xaf\xff\x3f\x93\xfe\x5f\xff\xbf\xa2\xff\xd7" "\xff\x5f\xf9\xfd\xfa\x7f\xfd\x3f\xc7\x76\xeb\xff\x73\xf7\x3f\x3b\x6e\x19" "\xb2\xff\x01\x00\x00\x60\x82\xdc\xfd\xcf\x89\x5b\xec\x7f\x00\x00\x00\x68" "\x23\x77\xff\x73\xe3\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xbc\xb8\x65" "\xc8\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\x4c\xfa\x7f\xfd" "\xff\x8a\xfe\x5f\xff\x7f\xe5\xf7\xeb\xff\xf5\xff\x1c\xdb\xad\xff\xcf\xdd" "\xff\xfc\xb8\x65\xc8\xfe\x07\x00\x00\x80\x09\x72\xf7\xbf\x20\x6e\xb1\xff" "\x01\x00\x00\xa0\x8d\xdc\xfd\x2f\x8c\x5b\xec\x7f\x00\x00\x00\x68\x23\x77" "\xff\x8b\xe2\x96\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff" "\x33\xe9\xff\xf5\xff\x2b\xfa\xff\xdb\xef\xff\xef\x72\x07\xbf\x4f\xff\xbf" "\xd7\xfb\xf5\xff\xfa\x7f\x8e\xed\xd6\xff\xe7\xee\x7f\x71\xdc\x32\x64\xff" "\x03\x00\x00\xc0\x04\xb9\xfb\x5f\x12\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee" "\xfe\x97\xc6\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x65\x71\xcb\x90\xfd" "\x7f\x47\xfd\xff\x6d\x77\xbd\xf1\xff\xfa\xff\x9b\xa3\xff\xbf\xfd\xf7\xeb" "\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xa2\xff\xf7\xfd\xff\x2b\xbf" "\x5f\xff\xaf\xff\xe7\xd8\x6e\xfd\x7f\xee\xfe\x97\xc7\x2d\x43\xf6\x3f\x00" "\x00\x00\x4c\x90\xbb\xff\x15\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\x7f" "\x65\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\x5f\x15\xb7\x0c\xd9\xff\xbe" "\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x33\xe9\xff\xf5\xff\x2b\xfa" "\x7f\xfd\xff\x95\xdf\xaf\xff\xd7\xff\x73\x6c\xb7\xfe\x3f\x77\xff\xab\xe3" "\x96\x21\xfb\x1f\x00\x00\x00\x26\xc8\xdd\xff\x9a\xb8\xc5\xfe\x07\x00\x00" "\x80\x36\x72\xf7\xbf\x36\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\xaf\x8b" "\x5b\x86\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xcf\xa4\xff" "\xd7\xff\xaf\xe8\xff\xf5\xff\x57\x7e\xbf\xfe\x5f\xff\xcf\xb1\xdd\xfa\xff" "\xdc\xfd\xaf\x8f\x5b\x86\xec\x7f\x00\x00\x00\x98\x20\x77\xff\x1b\xe2\x16" "\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xc6\xb8\xc5\xfe\x07\x00\x00\x80\x36" "\x72\xf7\xbf\x29\x6e\x19\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf" "\xff\x3f\x93\xfe\x5f\xff\xbf\xa2\xff\xd7\xff\x5f\xf9\xfd\xfa\x7f\xfd\x3f" "\xc7\x76\xeb\xff\x73\xf7\xbf\x39\x6e\x19\xb2\xff\x01\x00\x00\x60\x82\xdc" "\xfd\x6f\x89\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\x5b\xe3\x16\xfb\x1f" "\x00\x00\x00\xda\xc8\xdd\xff\xb6\xb8\x65\xc8\xfe\xd7\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\xff\x4c\xfa\x7f\xfd\xff\x8a\xfe\x5f\xff\x7f\xe5\xf7" "\xeb\xff\xf5\xff\x1c\xdb\xad\xff\xcf\xdd\xff\xf6\xb8\x65\xc8\xfe\x07\x00" "\x00\x80\x09\x72\xf7\xbf\x23\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\xef" "\x8c\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\xbb\xe2\x96\x21\xfb\x5f\xff" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x33\xe9\xff\xf5\xff\x2b\xfa\x7f" "\xfd\xff\x95\xdf\xaf\xff\xd7\xff\x73\x6c\xb7\xfe\x3f\x77\xff\xbb\xe3\x96" "\x21\xfb\x1f\x00\x00\x00\x26\xc8\xdd\xff\x9e\xb8\xc5\xfe\x07\x00\x00\x80" "\x36\x72\xf7\xbf\x37\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\xef\x8b\x5b" "\x86\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xcf\xa4\xff\xd7" "\xff\xaf\xe8\xff\xf5\xff\x57\x7e\xbf\xfe\x5f\xff\xcf\xb1\xdd\xfa\xff\xdc" "\xfd\xef\x8f\x5b\x86\xec\x7f\x00\x00\x00\x98\x20\x77\xff\x07\xe2\x16\xfb" "\x1f\x00\x00\x00\xda\xc8\xdd\xff\xc1\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72" "\xf7\x7f\x28\x6e\x19\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\x3f\x93\xfe\x5f\xff\xbf\xa2\xff\xd7\xff\x5f\xf9\xfd\xfa\x7f\xfd\x3f\xc7" "\x76\xeb\xff\x73\xf7\x7f\x38\x6e\x19\xb2\xff\x01\x00\x00\x60\x82\xdc\xfd" "\x1f\x89\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\x47\xe3\x16\xfb\x1f\x00" "\x00\x00\xda\xc8\xdd\xff\xb1\xb8\xe1\xee\x77\xfb\xff\x3d\xe9\x7f\x4a\xff" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x33\xe9\xff\xf5\xff\x2b\xfa\x7f" "\xfd\xff\x95\xdf\xaf\xff\xd7\xff\x73\x6c\xb7\xfe\x3f\x77\xff\xc7\xe3\x16" "\x7f\xff\x07\x00\x00\x80\x36\x72\xf7\x7f\x22\x6e\xb1\xff\x01\x00\x00\xa0" "\x8d\xdc\xfd\x9f\x8c\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\xa7\xe2\x96" "\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x33\xe9\xff\xf5" "\xff\x2b\xfa\x7f\xfd\xff\x95\xdf\xaf\xff\xd7\xff\x73\x6c\xb7\xfe\x3f\x77" "\xff\xa7\xe3\x96\x21\xfb\x1f\x00\x00\x00\x26\xc8\xdd\xff\x99\xb8\xc5\xfe" "\x07\x00\x00\x80\x36\x72\xf7\x7f\x36\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc" "\xfd\x9f\x8b\x5b\x86\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\xcf\xa4\xff\xd7\xff\xaf\xe8\xff\xf5\xff\x57\x7e\xbf\xfe\x5f\xff\xcf\xb1" "\xdd\xfa\xff\xdc\xfd\x9f\x8f\x5b\x86\xec\x7f\x00\x00\x00\x98\x20\x77\xff" "\x17\xe2\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xc5\xb8\xc5\xfe\x07\x00" "\x00\x80\x36\x72\xf7\x7f\x29\x6e\x19\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xaf\xff\x3f\x93\xfe\x5f\xff\xbf\xa2\xff\xd7\xff\x5f\xf9\xfd\xfa" "\x7f\xfd\x3f\xc7\x76\xeb\xff\x73\xf7\x7f\x39\x6e\x19\xb2\xff\x01\x00\x00" "\x60\x82\xdc\xfd\x5f\x89\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\x57\xe3" "\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xb5\xb8\x65\xc8\xfe\xef\xdc\xff" "\xaf\x7e\x4c\xff\x7f\x83\xfe\x5f\xff\x7f\x8b\xfe\x5f\xff\x7f\x32\xfd\xbf" "\xfe\x7f\x45\xff\xaf\xff\xbf\xf2\xfb\xf5\xff\xfa\x7f\x8e\xed\xd6\xff\xe7" "\xee\xff\x7a\xdc\x32\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\xbf\x11\xb7\xd8" "\xff\x00\x00\x00\xd0\x46\xee\xfe\x6f\xc6\x2d\xf6\x3f\x00\x00\x00\xb4\x91" "\xbb\xff\x5b\x71\xcb\x90\xfd\xdf\xb9\xff\x5f\xd1\xff\xdf\xa0\xff\xd7\xff" "\xdf\xa2\xff\xd7\xff\x9f\x4c\xff\xaf\xff\x5f\xd1\xff\xeb\xff\xaf\xfc\x7e" "\xfd\xbf\xfe\x9f\x63\xbb\xf5\xff\xb9\xfb\xbf\x1d\xb7\x0c\xd9\xff\x00\x00" "\x00\x30\x41\xee\xfe\xef\xc4\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xbb" "\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\xff\x5e\xdc\x32\x64\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x7f\x26\xfd\xbf\xfe\x7f\x45\xff\xaf" "\xff\xbf\xf2\xfb\xf5\xff\xfa\x7f\x8e\xed\xd6\xff\xe7\xee\xff\x7e\xdc\x32" "\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\x7f\x10\xb7\xd8\xff\x00\x00\x00\xd0" "\x46\xee\xfe\x1f\xc6\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x47\x71\xcb" "\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x99\xf4\xff\xfa" "\xff\x15\xfd\xbf\xfe\xff\xca\xef\xd7\xff\xeb\xff\x39\xb6\x5b\xff\x9f\xbb" "\xff\xc7\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee\xff\x49\xdc\x62\xff" "\x03\x00\x00\x40\x1b\xb9\xfb\x7f\x1a\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee" "\xfe\x9f\xc5\x2d\x43\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff" "\x67\xd2\xff\xeb\xff\x57\xf4\xff\xfa\xff\x2b\xbf\x5f\xff\xaf\xff\xe7\xd8" "\x6e\xfd\x7f\xee\xfe\x9f\xc7\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff" "\x17\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\xff\x65\xdc\x62\xff\x03\x00" "\x00\x40\x1b\xb9\xfb\x7f\x15\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xaf\xff\xd7\xff\x9f\x49\xff\xaf\xff\x5f\xd1\xff\xeb\xff\xaf\xfc\x7e\xfd" "\xbf\xfe\x9f\x63\xbb\xf5\xff\xb9\xfb\x7f\x1d\xb7\x0c\xd9\xff\x00\x00\x00" "\x30\x41\xee\xfe\xdf\xc4\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xb7\x71" "\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\xbf\x2d\x6e\x19\xb2\xff\xf5\xff\xfa" "\xff\x96\xfd\xff\x9d\xf5\xff\xfa\x7f\xfd\xff\x2e\xf4\xff\xfa\xff\x15\xfd" "\xbf\xfe\xff\xca\xef\xd7\xff\xeb\xff\x39\xb6\x5b\xff\x9f\xbb\xff\x77\x71" "\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee\xff\x7d\xdc\x62\xff\x03\x00\x00" "\x40\x1b\xb9\xfb\xff\x10\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x3f\xc6" "\x2d\x43\xf6\xbf\xfe\x5f\xff\xdf\xb2\xff\xf7\xfd\x7f\xfd\xbf\xfe\x7f\x1b" "\xfa\x7f\xfd\xff\x8a\xfe\x5f\xff\x7f\xe5\xf7\xeb\xff\xf5\xff\x1c\xdb\xad" "\xff\xcf\xdd\xff\xa7\xb8\x65\xc8\xfe\x07\x00\x00\x80\x09\x72\xf7\xff\x39" "\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\x7f\x89\x5b\xec\x7f\x00\x00\x00" "\x68\x23\x77\xff\x5f\xe3\x96\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\xfa\xff\x33\xe9\xff\xf5\xff\x2b\xfa\x7f\xfd\xff\x95\xdf\xaf\xff\xd7" "\xff\x73\x6c\xb7\xfe\x3f\x77\xff\xdf\xe2\x96\x21\xfb\x1f\x00\x00\x00\x26" "\xc8\xdd\xff\xf7\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\xff\x23\x6e\xb1" "\xff\x01\x00\x00\xa0\x8d\xdc\xfd\xff\x8c\x5b\x86\xec\x7f\xfd\xbf\xfe\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\xcf\xa4\xff\xd7\xff\xaf\xe8\xff\xf5\xff\x57" "\x7e\xbf\xfe\x5f\xff\xcf\xb1\xdd\xfa\xff\xdc\xfd\xff\x0a\x00\x00\xff\xff" "\xd4\x26\x3b\x96", 23926)); NONFAILING(syz_mount_image( /*fs=*/0x20005d00, /*dir=*/0x20000100, /*flags=*/0x4000, /*opts=*/0x20001100, /*chdir=*/-1, /*size=*/0x5d76, /*img=*/0x2000bac0)); NONFAILING(syz_clone(/*flags=*/0x8000, /*stack=*/0x20000000, /*stack_len=*/0, /*parentid=*/0, /*childtid=*/0, /*tls=*/0)); NONFAILING(syz_clone(/*flags=*/0x8000, /*stack=*/0x20000000, /*stack_len=*/0, /*parentid=*/0, /*childtid=*/0, /*tls=*/0)); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=*/7ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); setup_sysctl(); setup_binfmt_misc(); install_segv_handler(); use_temporary_dir(); do_sandbox_none(); return 0; }