// https://syzkaller.appspot.com/bug?id=f549ab5d2059d350b70eec699fa66d2bd82fed7c // 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 #include #include #include #include #include #ifndef __NR_linkat #define __NR_linkat 37 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_mount #define __NR_mount 40 #endif #ifndef __NR_unlinkat #define __NR_unlinkat 35 #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 void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } 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 void netlink_add_neigh(struct nlmsg* nlmsg, int sock, const char* name, const void* addr, int addrsize, const void* mac, int macsize) { struct ndmsg hdr; memset(&hdr, 0, sizeof(hdr)); hdr.ndm_family = addrsize == 4 ? AF_INET : AF_INET6; hdr.ndm_ifindex = if_nametoindex(name); hdr.ndm_state = NUD_PERMANENT; netlink_init(nlmsg, RTM_NEWNEIGH, NLM_F_EXCL | NLM_F_CREATE, &hdr, sizeof(hdr)); netlink_attr(nlmsg, NDA_DST, addr, addrsize); netlink_attr(nlmsg, NDA_LLADDR, mac, macsize); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static struct nlmsg nlmsg; static int tunfd = -1; #define TUN_IFACE "syz_tun" #define LOCAL_MAC 0xaaaaaaaaaaaa #define REMOTE_MAC 0xaaaaaaaaaabb #define LOCAL_IPV4 "172.20.20.170" #define REMOTE_IPV4 "172.20.20.187" #define LOCAL_IPV6 "fe80::aa" #define REMOTE_IPV6 "fe80::bb" #define IFF_NAPI 0x0010 static void initialize_tun(void) { tunfd = open("/dev/net/tun", O_RDWR | O_NONBLOCK); if (tunfd == -1) { printf("tun: can't open /dev/net/tun: please enable CONFIG_TUN=y\n"); printf("otherwise fuzzing or reproducing might not work as intended\n"); return; } const int kTunFd = 200; if (dup2(tunfd, kTunFd) < 0) exit(1); close(tunfd); tunfd = kTunFd; struct ifreq ifr; memset(&ifr, 0, sizeof(ifr)); strncpy(ifr.ifr_name, TUN_IFACE, IFNAMSIZ); ifr.ifr_flags = IFF_TAP | IFF_NO_PI; if (ioctl(tunfd, TUNSETIFF, (void*)&ifr) < 0) { exit(1); } char sysctl[64]; sprintf(sysctl, "/proc/sys/net/ipv6/conf/%s/accept_dad", TUN_IFACE); write_file(sysctl, "0"); sprintf(sysctl, "/proc/sys/net/ipv6/conf/%s/router_solicitations", TUN_IFACE); write_file(sysctl, "0"); int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) exit(1); netlink_add_addr4(&nlmsg, sock, TUN_IFACE, LOCAL_IPV4); netlink_add_addr6(&nlmsg, sock, TUN_IFACE, LOCAL_IPV6); uint64_t macaddr = REMOTE_MAC; struct in_addr in_addr; inet_pton(AF_INET, REMOTE_IPV4, &in_addr); netlink_add_neigh(&nlmsg, sock, TUN_IFACE, &in_addr, sizeof(in_addr), &macaddr, ETH_ALEN); struct in6_addr in6_addr; inet_pton(AF_INET6, REMOTE_IPV6, &in6_addr); netlink_add_neigh(&nlmsg, sock, TUN_IFACE, &in6_addr, sizeof(in6_addr), &macaddr, ETH_ALEN); macaddr = LOCAL_MAC; netlink_device_change(&nlmsg, sock, TUN_IFACE, true, 0, &macaddr, ETH_ALEN, NULL); close(sock); } #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); } static int runcmdline(char* cmdline) { int ret = system(cmdline); if (ret) { } return ret; } #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 #define BTPROTO_HCI 1 #define ACL_LINK 1 #define SCAN_PAGE 2 typedef struct { uint8_t b[6]; } __attribute__((packed)) bdaddr_t; #define HCI_COMMAND_PKT 1 #define HCI_EVENT_PKT 4 #define HCI_VENDOR_PKT 0xff struct hci_command_hdr { uint16_t opcode; uint8_t plen; } __attribute__((packed)); struct hci_event_hdr { uint8_t evt; uint8_t plen; } __attribute__((packed)); #define HCI_EV_CONN_COMPLETE 0x03 struct hci_ev_conn_complete { uint8_t status; uint16_t handle; bdaddr_t bdaddr; uint8_t link_type; uint8_t encr_mode; } __attribute__((packed)); #define HCI_EV_CONN_REQUEST 0x04 struct hci_ev_conn_request { bdaddr_t bdaddr; uint8_t dev_class[3]; uint8_t link_type; } __attribute__((packed)); #define HCI_EV_REMOTE_FEATURES 0x0b struct hci_ev_remote_features { uint8_t status; uint16_t handle; uint8_t features[8]; } __attribute__((packed)); #define HCI_EV_CMD_COMPLETE 0x0e struct hci_ev_cmd_complete { uint8_t ncmd; uint16_t opcode; } __attribute__((packed)); #define HCI_OP_WRITE_SCAN_ENABLE 0x0c1a #define HCI_OP_READ_BUFFER_SIZE 0x1005 struct hci_rp_read_buffer_size { uint8_t status; uint16_t acl_mtu; uint8_t sco_mtu; uint16_t acl_max_pkt; uint16_t sco_max_pkt; } __attribute__((packed)); #define HCI_OP_READ_BD_ADDR 0x1009 struct hci_rp_read_bd_addr { uint8_t status; bdaddr_t bdaddr; } __attribute__((packed)); #define HCI_EV_LE_META 0x3e struct hci_ev_le_meta { uint8_t subevent; } __attribute__((packed)); #define HCI_EV_LE_CONN_COMPLETE 0x01 struct hci_ev_le_conn_complete { uint8_t status; uint16_t handle; uint8_t role; uint8_t bdaddr_type; bdaddr_t bdaddr; uint16_t interval; uint16_t latency; uint16_t supervision_timeout; uint8_t clk_accurancy; } __attribute__((packed)); struct hci_dev_req { uint16_t dev_id; uint32_t dev_opt; }; struct vhci_vendor_pkt_request { uint8_t type; uint8_t opcode; } __attribute__((packed)); struct vhci_pkt { uint8_t type; union { struct { uint8_t opcode; uint16_t id; } __attribute__((packed)) vendor_pkt; struct hci_command_hdr command_hdr; }; } __attribute__((packed)); #define HCIDEVUP _IOW('H', 201, int) #define HCISETSCAN _IOW('H', 221, int) static int vhci_fd = -1; static void rfkill_unblock_all() { int fd = open("/dev/rfkill", O_WRONLY); if (fd < 0) exit(1); struct rfkill_event event = {0}; event.idx = 0; event.type = RFKILL_TYPE_ALL; event.op = RFKILL_OP_CHANGE_ALL; event.soft = 0; event.hard = 0; if (write(fd, &event, sizeof(event)) < 0) exit(1); close(fd); } static void hci_send_event_packet(int fd, uint8_t evt, void* data, size_t data_len) { struct iovec iv[3]; struct hci_event_hdr hdr; hdr.evt = evt; hdr.plen = data_len; uint8_t type = HCI_EVENT_PKT; iv[0].iov_base = &type; iv[0].iov_len = sizeof(type); iv[1].iov_base = &hdr; iv[1].iov_len = sizeof(hdr); iv[2].iov_base = data; iv[2].iov_len = data_len; if (writev(fd, iv, sizeof(iv) / sizeof(struct iovec)) < 0) exit(1); } static void hci_send_event_cmd_complete(int fd, uint16_t opcode, void* data, size_t data_len) { struct iovec iv[4]; struct hci_event_hdr hdr; hdr.evt = HCI_EV_CMD_COMPLETE; hdr.plen = sizeof(struct hci_ev_cmd_complete) + data_len; struct hci_ev_cmd_complete evt_hdr; evt_hdr.ncmd = 1; evt_hdr.opcode = opcode; uint8_t type = HCI_EVENT_PKT; iv[0].iov_base = &type; iv[0].iov_len = sizeof(type); iv[1].iov_base = &hdr; iv[1].iov_len = sizeof(hdr); iv[2].iov_base = &evt_hdr; iv[2].iov_len = sizeof(evt_hdr); iv[3].iov_base = data; iv[3].iov_len = data_len; if (writev(fd, iv, sizeof(iv) / sizeof(struct iovec)) < 0) exit(1); } static bool process_command_pkt(int fd, char* buf, ssize_t buf_size) { struct hci_command_hdr* hdr = (struct hci_command_hdr*)buf; if (buf_size < (ssize_t)sizeof(struct hci_command_hdr) || hdr->plen != buf_size - sizeof(struct hci_command_hdr)) exit(1); switch (hdr->opcode) { case HCI_OP_WRITE_SCAN_ENABLE: { uint8_t status = 0; hci_send_event_cmd_complete(fd, hdr->opcode, &status, sizeof(status)); return true; } case HCI_OP_READ_BD_ADDR: { struct hci_rp_read_bd_addr rp = {0}; rp.status = 0; memset(&rp.bdaddr, 0xaa, 6); hci_send_event_cmd_complete(fd, hdr->opcode, &rp, sizeof(rp)); return false; } case HCI_OP_READ_BUFFER_SIZE: { struct hci_rp_read_buffer_size rp = {0}; rp.status = 0; rp.acl_mtu = 1021; rp.sco_mtu = 96; rp.acl_max_pkt = 4; rp.sco_max_pkt = 6; hci_send_event_cmd_complete(fd, hdr->opcode, &rp, sizeof(rp)); return false; } } char dummy[0xf9] = {0}; hci_send_event_cmd_complete(fd, hdr->opcode, dummy, sizeof(dummy)); return false; } static void* event_thread(void* arg) { while (1) { char buf[1024] = {0}; ssize_t buf_size = read(vhci_fd, buf, sizeof(buf)); if (buf_size < 0) exit(1); if (buf_size > 0 && buf[0] == HCI_COMMAND_PKT) { if (process_command_pkt(vhci_fd, buf + 1, buf_size - 1)) break; } } return NULL; } #define HCI_HANDLE_1 200 #define HCI_HANDLE_2 201 #define HCI_PRIMARY 0 #define HCI_OP_RESET 0x0c03 static void initialize_vhci() { int hci_sock = socket(AF_BLUETOOTH, SOCK_RAW, BTPROTO_HCI); if (hci_sock < 0) exit(1); vhci_fd = open("/dev/vhci", O_RDWR); if (vhci_fd == -1) exit(1); const int kVhciFd = 202; if (dup2(vhci_fd, kVhciFd) < 0) exit(1); close(vhci_fd); vhci_fd = kVhciFd; struct vhci_vendor_pkt_request vendor_pkt_req = {HCI_VENDOR_PKT, HCI_PRIMARY}; if (write(vhci_fd, &vendor_pkt_req, sizeof(vendor_pkt_req)) != sizeof(vendor_pkt_req)) exit(1); struct vhci_pkt vhci_pkt; if (read(vhci_fd, &vhci_pkt, sizeof(vhci_pkt)) != sizeof(vhci_pkt)) exit(1); if (vhci_pkt.type == HCI_COMMAND_PKT && vhci_pkt.command_hdr.opcode == HCI_OP_RESET) { char response[1] = {0}; hci_send_event_cmd_complete(vhci_fd, HCI_OP_RESET, response, sizeof(response)); if (read(vhci_fd, &vhci_pkt, sizeof(vhci_pkt)) != sizeof(vhci_pkt)) exit(1); } if (vhci_pkt.type != HCI_VENDOR_PKT) exit(1); int dev_id = vhci_pkt.vendor_pkt.id; pthread_t th; if (pthread_create(&th, NULL, event_thread, NULL)) exit(1); int ret = ioctl(hci_sock, HCIDEVUP, dev_id); if (ret) { if (errno == ERFKILL) { rfkill_unblock_all(); ret = ioctl(hci_sock, HCIDEVUP, dev_id); } if (ret && errno != EALREADY) exit(1); } struct hci_dev_req dr = {0}; dr.dev_id = dev_id; dr.dev_opt = SCAN_PAGE; if (ioctl(hci_sock, HCISETSCAN, &dr)) exit(1); struct hci_ev_conn_request request; memset(&request, 0, sizeof(request)); memset(&request.bdaddr, 0xaa, 6); *(uint8_t*)&request.bdaddr.b[5] = 0x10; request.link_type = ACL_LINK; hci_send_event_packet(vhci_fd, HCI_EV_CONN_REQUEST, &request, sizeof(request)); struct hci_ev_conn_complete complete; memset(&complete, 0, sizeof(complete)); complete.status = 0; complete.handle = HCI_HANDLE_1; memset(&complete.bdaddr, 0xaa, 6); *(uint8_t*)&complete.bdaddr.b[5] = 0x10; complete.link_type = ACL_LINK; complete.encr_mode = 0; hci_send_event_packet(vhci_fd, HCI_EV_CONN_COMPLETE, &complete, sizeof(complete)); struct hci_ev_remote_features features; memset(&features, 0, sizeof(features)); features.status = 0; features.handle = HCI_HANDLE_1; hci_send_event_packet(vhci_fd, HCI_EV_REMOTE_FEATURES, &features, sizeof(features)); struct { struct hci_ev_le_meta le_meta; struct hci_ev_le_conn_complete le_conn; } le_conn; memset(&le_conn, 0, sizeof(le_conn)); le_conn.le_meta.subevent = HCI_EV_LE_CONN_COMPLETE; memset(&le_conn.le_conn.bdaddr, 0xaa, 6); *(uint8_t*)&le_conn.le_conn.bdaddr.b[5] = 0x11; le_conn.le_conn.role = 1; le_conn.le_conn.handle = HCI_HANDLE_2; hci_send_event_packet(vhci_fd, HCI_EV_LE_META, &le_conn, sizeof(le_conn)); pthread_join(th, NULL); close(hci_sock); } //% 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 void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } 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, 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) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); 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"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } 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) reset_loop_device(loopname); errno = err; return res; } static void setup_gadgetfs(); static void setup_binderfs(); static void setup_fusectl(); static void sandbox_common_mount_tmpfs(void) { write_file("/proc/sys/fs/mount-max", "100000"); if (mkdir("./syz-tmp", 0777)) exit(1); if (mount("", "./syz-tmp", "tmpfs", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot", 0777)) exit(1); if (mkdir("./syz-tmp/newroot/dev", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/dev", "./syz-tmp/newroot/dev", NULL, bind_mount_flags, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/proc", 0700)) exit(1); if (mount("syz-proc", "./syz-tmp/newroot/proc", "proc", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/selinux", 0700)) exit(1); const char* selinux_path = "./syz-tmp/newroot/selinux"; if (mount("/selinux", selinux_path, NULL, bind_mount_flags, NULL)) { if (errno != ENOENT) exit(1); if (mount("/sys/fs/selinux", selinux_path, NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); } if (mkdir("./syz-tmp/newroot/sys", 0700)) exit(1); if (mount("/sys", "./syz-tmp/newroot/sys", 0, bind_mount_flags, NULL)) exit(1); if (mount("/sys/kernel/debug", "./syz-tmp/newroot/sys/kernel/debug", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/sys/fs/smackfs", "./syz-tmp/newroot/sys/fs/smackfs", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/proc/sys/fs/binfmt_misc", "./syz-tmp/newroot/proc/sys/fs/binfmt_misc", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/newroot/syz-inputs", 0700)) exit(1); if (mount("/syz-inputs", "./syz-tmp/newroot/syz-inputs", NULL, bind_mount_flags | MS_RDONLY, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/pivot", 0777)) exit(1); if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) { if (chdir("./syz-tmp")) exit(1); } else { if (chdir("/")) exit(1); if (umount2("./pivot", MNT_DETACH)) exit(1); } if (chroot("./newroot")) exit(1); if (chdir("/")) exit(1); setup_gadgetfs(); setup_binderfs(); setup_fusectl(); } static void setup_gadgetfs() { if (mkdir("/dev/gadgetfs", 0777)) { } if (mount("gadgetfs", "/dev/gadgetfs", "gadgetfs", 0, NULL)) { } } static void setup_fusectl() { 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); if (getppid() == 1) exit(1); 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); initialize_vhci(); sandbox_common(); drop_caps(); initialize_netdevices_init(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); initialize_tun(); initialize_netdevices(); sandbox_common_mount_tmpfs(); loop(); exit(1); } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } static const char* setup_binfmt_misc() { if (mount(0, "/proc/sys/fs/binfmt_misc", "binfmt_misc", 0, 0) && errno != EBUSY) { return NULL; } if (!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")) return "write(/proc/sys/fs/binfmt_misc/register) failed"; return NULL; } static const char* setup_usb() { if (chmod("/dev/raw-gadget", 0666)) return "failed to chmod /dev/raw-gadget"; return NULL; } static void setup_sysctl() { int cad_pid = fork(); if (cad_pid < 0) exit(1); if (cad_pid == 0) { for (;;) sleep(100); } char tmppid[32]; snprintf(tmppid, sizeof(tmppid), "%d", cad_pid); struct { const char* name; const char* data; } files[] = { {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, {"/proc/sys/net/core/bpf_jit_harden", "0"}, {"/proc/sys/kernel/kptr_restrict", "0"}, {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"}, {"/proc/sys/fs/mount-max", "100"}, {"/proc/sys/vm/oom_dump_tasks", "0"}, {"/proc/sys/debug/exception-trace", "0"}, {"/proc/sys/kernel/printk", "7 4 1 3"}, {"/proc/sys/kernel/keys/gc_delay", "1"}, {"/proc/sys/vm/oom_kill_allocating_task", "1"}, {"/proc/sys/kernel/ctrl-alt-del", "0"}, {"/proc/sys/kernel/cad_pid", tmppid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) { } } kill(cad_pid, SIGKILL); while (waitpid(cad_pid, NULL, 0) != cad_pid) ; } #define SWAP_FILE "./swap-file" #define SWAP_FILE_SIZE (128 * 1000 * 1000) static const char* setup_swap() { swapoff(SWAP_FILE); unlink(SWAP_FILE); int fd = open(SWAP_FILE, O_CREAT | O_WRONLY | O_CLOEXEC, 0600); if (fd == -1) return "swap file open failed"; fallocate(fd, FALLOC_FL_ZERO_RANGE, 0, SWAP_FILE_SIZE); close(fd); char cmdline[64]; sprintf(cmdline, "mkswap %s", SWAP_FILE); if (runcmdline(cmdline)) return "mkswap failed"; if (swapon(SWAP_FILE, SWAP_FLAG_PREFER) == 1) return "swapon failed"; return NULL; } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void loop(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 5; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); if (call == 3) break; event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); close_fds(); } void execute_call(int call) { switch (call) { case 0: // syz_mount_image$bcachefs arguments: [ // fs: ptr[in, buffer] { // buffer: {62 63 61 63 68 65 66 73 00} (length 0x9) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 32 00} (length 0x8) // } // flags: mount_flags = 0x8000 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {63 6f 6d 70 72 65 73 73 69 6f 6e 3d 67 7a 69 // 70 2c 72 5d 17 00 00 73 74 72 75 63 74 5f 61 6c 6c 6f 63 2c 00} // (length 0x24) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x6739 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6739) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x20000000, "bcachefs\000", 9)); NONFAILING(memcpy((void*)0x200000c0, "./file2\000", 8)); NONFAILING(memcpy((void*)0x20000180, "\x63\x6f\x6d\x70\x72\x65\x73\x73\x69\x6f\x6e\x3d\x67\x7a" "\x69\x70\x2c\x72\x5d\x17\x00\x00\x73\x74\x72\x75\x63\x74" "\x5f\x61\x6c\x6c\x6f\x63\x2c\x00", 36)); NONFAILING(memcpy( (void*)0x200067c0, "\x78\x9c\xec\xdd\x0b\x94\x1c\x75\x9d\x2f\xf0\xaa\xe9\xce\x64\x1e\x0c" "\x49\x30\x68\x10\xc4\x81\xc8\x63\xd7\x07\x41\x21\x26\xa2\x32\x22\x10" "\x08\x0f\x11\xc1\x85\x0b\x6b\x08\x64\xd0\x48\x08\x90\x87\xb0\x3c\x34" "\x8b\x8b\xa0\xb0\x2b\x08\xac\xe8\xae\xb2\x9c\xbb\xca\x41\xee\x75\xcf" "\x3d\x5e\xee\x82\xde\xeb\x2a\xde\x45\x11\x0e\xde\x23\xba\x0f\x56\x14" "\x5f\xab\x08\x1a\x10\x04\x45\x70\xee\x99\x4c\x57\xe8\xfe\x77\xd7\x54" "\x77\xcf\xbf\x48\xa3\x9f\xcf\x39\xa4\xf9\xf7\xfc\xea\x57\xff\xfe\x76" "\x55\x4d\x55\x4f\xcf\x74\x02\x00\x00\xc0\x1f\x84\x3b\x2e\x59\xff\xc4" "\xe9\xf7\x5c\x79\xd3\xbf\xbf\xfb\x94\x6f\x6c\x7a\xc3\x93\x9b\x93\xe1" "\xca\x96\xfb\x07\x6a\x5f\x1f\xc8\xfe\xe7\xbc\x6d\x36\x45\x4a\x74\xec" "\xa3\xdf\xea\xaf\x1f\x8f\x54\x47\xaa\x49\x8b\xed\xe2\xf4\xfb\x6e\xfd" "\xce\xaf\xc7\x97\x9d\x76\xe3\x37\x2f\xfe\xc8\x39\x17\x0f\x2e\xbe\x79" "\xc9\xcd\xef\xbc\xfe\x92\x37\x7f\xfa\x96\xcf\x9e\xfb\xa7\x3b\x5c\xfc" "\xb9\x1f\x17\xad\x27\xdb\x8c\xe6\x3f\x3b\x4e\xbf\x99\x26\xc9\x4f\x9e" "\xd9\x6b\xee\x3f\xfc\xe5\xf1\x0b\x26\xef\x4b\x93\x24\x99\x9d\x56\x37" "\x25\xf3\xe6\xfd\x79\xdf\x97\xe7\xa5\x41\x8b\xd1\xa7\x92\x24\x59\x55" "\xab\x1b\xa9\xee\xba\xe5\xdf\x07\xbe\x3c\xf5\xc5\x8b\x3e\xff\xfe\x77" "\x4d\xde\x6e\xba\x7c\x76\xc3\x42\x73\x82\x26\xb6\xf7\x3f\x6c\x93\xdb" "\xdf\x70\x92\x24\x57\xd6\xc6\x87\xbd\xf2\xae\xf1\x2f\x2d\x58\xf6\xe8" "\xe5\xdf\x39\xec\x99\xfd\x2f\xd9\xf8\xf3\xa4\x2f\xab\x1c\x4b\x26\xb7" "\xa4\x0b\x6b\xdb\x55\x32\xb6\xfd\x29\xb1\xe7\x91\x79\xe0\x3f\xfa\x92" "\xc9\xad\x70\x49\x6d\x3b\x4c\x67\x30\xaf\x63\x92\x24\x19\xaa\x1b\x2f" "\x29\x98\xc7\xde\x6d\xce\x77\x61\xce\xf8\xc5\xc1\xfd\x23\x05\x7d\xb2" "\xaf\xef\x55\x50\x1f\xee\xfc\x99\x4a\x70\x3b\x50\xb0\xbe\x99\xca\x9b" "\x47\xb7\x75\x45\xb6\x8f\xd4\x27\x4f\xd1\x3c\xb3\xe3\xe5\xdf\xd7\x6e" "\xe7\x77\xd1\x7f\xbb\xda\x7f\x45\xdb\xc2\x4c\x4c\x3e\xff\x83\x49\x92" "\xbc\xa9\x36\xce\xb6\x83\x39\xb5\x0c\x07\xab\xa3\xc1\x12\xdb\x25\x47" "\x26\x47\x25\x47\x27\x07\x27\x87\x24\x87\x26\xcb\x92\xc3\x92\xe5\xc9" "\xe1\xc9\x11\xc9\x31\xc9\x50\x53\xed\x48\x4e\xed\xbc\xf4\x98\x64\xbb" "\xa6\xea\x34\x99\x9b\x56\x6a\x73\xaa\xa4\x49\x5f\x9a\x54\xb7\xc6\x7c" "\x70\x9a\x24\xf5\xdf\x60\x07\xb6\x2e\xd3\x97\xcc\xaa\xbb\x7f\x72\xf7" "\x9e\xdd\xe2\x71\x66\xf7\x67\x0d\x2f\xab\x1d\x07\x86\x6b\xf7\x0d\xa7" "\x3b\x34\x2d\x33\xd1\x42\xf6\xb5\x4b\xef\xbf\xea\x33\xf7\xed\x74\xfe" "\x3e\x73\x5b\x85\x3a\xd9\xf3\xc2\xb4\xd6\x3f\xed\xaa\xff\x57\xce\x7c" "\x68\x64\xf6\x81\x77\x5d\x97\xdb\x7f\x55\xd6\xbf\xaf\xab\xfe\xe7\xec" "\xb2\xf4\xd0\x8d\xab\x16\xad\xca\xed\x7f\x76\xd6\xbf\xd2\x55\xff\x0f" "\x5c\x70\xd5\x99\xb7\x7d\xf5\xde\x6b\x72\xfb\x5f\x96\xf5\xaf\x76\xd5" "\xff\x8a\x63\xcf\x39\xe2\xb2\x6b\x37\x3d\x9c\x77\xdc\x4d\xf7\xce\xfa" "\x0f\x74\x37\xff\x35\x77\xdc\x74\xe1\xf1\xcb\xbf\x9d\x3b\xff\x13\xb2" "\xfe\x83\x5d\xf5\x9f\xb8\xed\xa0\xe1\x39\x4f\xf5\x5f\x92\xdb\xff\xc8" "\xac\xff\x50\x57\xfd\xbf\xf8\xbd\x8b\x6e\xb8\xf3\x87\xd7\x6f\xce\xed" "\xbf\x28\xeb\x3f\xdc\x55\xff\xdb\x8f\xba\xf5\xde\x65\x0b\xf7\x78\x5f" "\x6e\xff\xfd\xb2\xfe\x23\x5d\xf5\xbf\xfb\xc6\x07\x4f\xba\xfb\x8e\xbb" "\x9e\xce\xed\x7f\x72\xd6\x7f\x4e\x57\xfd\x07\x3e\xf3\xdd\xb7\x1c\x74" "\xe7\x21\x1f\xcf\xed\x3f\x96\xf5\x9f\xdb\x55\xff\xdd\x3e\x3a\x74\xea" "\x6f\x6f\x5e\x7b\x5d\xde\xf7\xd5\xf4\xbc\xac\xff\xfc\x2e\xb7\xff\x9d" "\xd7\x8e\xdd\x5e\x79\x34\x77\xfe\x4b\x62\x7d\x27\x05\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xb6\xb9\x8f\x9f\xf7\x78\xfd\x70\xa4\x3a\x52\x9d" "\xbc\xbd\xe3\x92\xf5\x4f\x9c\x7e\xcf\x95\x37\xfd\xfb\xbb\x4f\xf9\xc6" "\xa6\x37\x3c\xb9\xf9\xf4\xfb\x6e\xfd\xce\xaf\xc7\x97\x9d\x76\xe3\x37" "\x2f\xfe\xc8\x39\x17\x0f\x2e\xbe\x79\xc9\xcd\xef\xbc\xfe\x92\x37\x7f" "\xfa\x96\xcf\x9e\xfb\xa7\x3b\x5c\xfc\xb9\x1f\x17\xad\x66\x60\x60\xea" "\x76\x7e\x36\x4e\x92\xf4\x9b\x69\x92\xfc\xe4\x99\xbd\xe6\xfe\xc3\x5f" "\x1e\xbf\x60\xf2\xbe\x34\x49\x92\xd9\x69\x75\x53\x32\x6f\xde\x9f\xf7" "\x7d\x79\x5e\x1a\xb4\x18\x7d\x2a\x49\x92\x55\xb5\xba\x91\xea\xae\x5b" "\xfe\x7d\xe0\xcb\x53\x5f\xbc\xe8\xf3\xef\x7f\xd7\xe4\xed\xa6\xcb\x67" "\x37\x2c\x34\x27\x68\x12\x3e\xae\x64\xb8\x92\xcd\xa7\x61\x9e\xc9\x79" "\xed\x84\xc7\xf3\xcd\xe4\xf6\x37\x9c\x24\xc9\x95\xb5\xf1\x61\xaf\xbc" "\x6b\xfc\x4b\x0b\x96\x3d\x7a\xf9\x77\x0e\x7b\x66\xff\x4b\x36\xfe\x3c" "\xe9\xcb\x2a\xc7\x92\xc9\x2d\xe9\xc2\xda\x76\x95\x8c\x6d\x7f\x4a\xec" "\x79\x64\x1e\xf8\x8f\xbe\x64\x72\x2b\x5c\x52\xdb\x0e\xd3\x19\xcc\xeb" "\x98\x24\x49\x86\xea\xc6\x4b\x0a\xe6\xb1\x77\x9b\xf3\x5d\x98\x33\x7e" "\x71\x70\xff\x48\x41\x9f\xec\xeb\x7b\x15\xd4\x87\x3b\x7f\xa6\x12\xdc" "\x0e\x14\xac\x6f\xa6\xf2\xe6\xd1\x6d\x5d\x91\xed\x23\xf5\xc9\x53\x34" "\xcf\xec\x78\xf9\xf7\xb5\xdb\xf9\x5d\xf4\xdf\xae\xf6\x5f\xd1\xb6\x30" "\x13\x93\xcf\xff\x60\x92\x24\x6f\xaa\x8d\xb3\xed\x60\x4e\x2d\xc3\xc1" "\xea\x68\xb0\xc4\x76\xc9\x91\xc9\x51\xc9\xd1\xc9\xc1\xc9\x21\xc9\xa1" "\xc9\xb2\xe4\xb0\x64\x79\x72\x78\x72\x44\x72\x4c\x32\xd4\x54\x3b\x92" "\x53\x3b\x2f\x3d\x26\xd9\xae\xa9\x3a\x4d\xe6\xa6\x95\xda\x9c\x2a\x69" "\xd2\x97\x26\xd5\xad\x31\x1f\x9c\x26\x49\x7f\x5d\xed\xc0\xd6\x65\xfa" "\x92\x59\x75\xf7\x4f\xee\xde\xb3\x5b\x3c\xce\xec\xfe\xac\xe1\x65\xb5" "\xe3\xc0\x70\xed\xbe\xe1\x74\x87\xa6\x65\x26\x5a\xc8\xbe\x76\xe9\xfd" "\x57\x7d\xe6\xbe\x9d\xce\xdf\x67\x6e\xab\x50\x27\x7b\x5e\x98\xd6\xfa" "\xa7\x5d\xf5\xff\xca\x99\x0f\x8d\xcc\x3e\xf0\xae\xeb\x72\xfb\xaf\xca" "\xfa\xf7\x75\xd5\xff\x9c\x5d\x96\x1e\xba\x71\xd5\xa2\x55\xb9\xfd\xcf" "\xce\xfa\x57\xba\xea\xff\x81\x0b\xae\x3a\xf3\xb6\xaf\xde\x7b\x4d\x6e" "\xff\xcb\xb2\xfe\xd5\xae\xfa\x5f\x71\xec\x39\x47\x5c\x76\xed\xa6\x87" "\xf3\x8e\xbb\xe9\xde\x59\xff\x81\xee\xe6\xbf\xe6\x8e\x9b\x2e\x3c\x7e" "\xf9\xb7\x73\xe7\x7f\x42\xd6\x7f\xb0\xab\xfe\x13\xb7\x1d\x34\x3c\xe7" "\xa9\xfe\x4b\x72\xfb\x1f\x99\xf5\x1f\xea\xaa\xff\x17\xbf\x77\xd1\x0d" "\x77\xfe\xf0\xfa\xcd\xb9\xfd\x17\x65\xfd\x87\xbb\xea\x7f\xfb\x51\xb7" "\xde\xbb\x6c\xe1\x1e\xef\xcb\xed\xbf\x5f\xd6\x7f\xa4\xab\xfe\x77\xdf" "\xf8\xe0\x49\x77\xdf\x71\xd7\xd3\xb9\xfd\x4f\xce\xfa\xcf\xe9\xaa\xff" "\xc0\x67\xbe\xfb\x96\x83\xee\x3c\xe4\xe3\xb9\xfd\xc7\xb2\xfe\x73\xbb" "\xea\xbf\xdb\x47\x87\x4e\xfd\xed\xcd\x6b\xaf\xcb\xfb\xbe\x9a\x9e\x97" "\xf5\x9f\xdf\xe5\xf6\xbf\xf3\xda\xb1\xdb\x2b\x8f\xe6\xce\x7f\x49\xac" "\xef\xa4\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x3c\x1f\xac\x7f\xed\xf6\xff\x5c\x3f\x3e\xee\x43\xf7\xbd" "\x6f\xe9\x31\x3b\x2e\x4b\x6b\xe3\x91\x6a\x92\xec\x96\x24\xc9\x8d\xdb" "\x37\x2e\x57\x4d\x92\x64\x30\x49\x92\x53\x4f\x7b\xd7\xab\x57\xac\x1a" "\x7f\xcf\x8a\x8d\xeb\x57\xbe\x73\x7c\xc5\xea\xb5\xab\x37\x34\xd4\x0d" "\x24\xf3\xa7\x6e\xd3\xdd\x93\x59\x49\x92\xa4\x75\x5f\xab\xb4\x9a\x50" "\x5f\xeb\x79\x36\xac\x6f\xc3\xba\x95\x6b\xd7\xaf\x38\x73\xe5\xba\x33" "\xb6\xac\x7a\xfd\xa9\xcf\xd6\xcd\x4a\xaa\xc9\xd0\xe4\x6d\xda\xde\xe3" "\x1f\xd9\xd2\x39\x49\x46\xd2\x9d\xdb\xaa\xcf\xda\x2e\xac\x8d\xc6\x82" "\xfb\x8b\x56\x5b\x9f\xc7\x0b\x9a\xf2\x68\x5e\x3a\xbb\x67\x6c\x9a\x3e" "\xbb\xb4\x91\xeb\x44\x4d\x78\x7f\xac\x5c\xc3\xbb\x8b\x72\x0d\xeb\x63" "\xe6\xfa\xc6\x48\xb9\x2e\xeb\x81\x5c\xc3\xdd\xa1\x28\xd7\xb0\x3e\x66" "\xae\xab\x23\xe5\xba\xae\x07\x72\x0d\xd7\x59\x94\x6b\x58\x1f\x33\xd7" "\x6b\x22\xe5\xfa\x89\x1e\xc8\xb5\x1a\x8c\x8b\x72\x0d\xeb\x63\xe6\xfa" "\x4f\x91\x72\xfd\x5a\x0f\xe4\x3a\x2b\x18\x17\xe5\x1a\xd6\xc7\xcc\xf5" "\x67\x91\x72\x7d\xac\x07\x72\xed\x0f\xc6\x45\xb9\x86\xf5\x31\x73\xdd" "\x31\x8d\x93\xeb\xae\x4d\x7d\x9a\x95\x9d\xeb\xec\x60\x5c\x94\x6b\x58" "\x1f\x33\xd7\xb1\x48\xb9\x1e\xde\x03\xb9\x0e\x04\xe3\xa2\x5c\xc3\xfa" "\x98\xb9\x9e\x11\x29\xd7\x0d\x3d\x90\xeb\x60\x30\x2e\xca\x35\xac\x8f" "\x99\xeb\x5f\x47\xca\xf5\xfa\x1e\xc8\x75\x28\x18\x17\xe5\x1a\xd6\xc7" "\xcc\xf5\xcb\x91\x72\xfd\x7a\x8c\x5c\x37\xac\x1b\x1f\x5f\xb1\xf1\xec" "\x55\x2b\x37\x8c\xaf\x58\x7b\xd6\xaa\xf1\xf5\x2b\xce\x5d\xb7\x7a\xc3" "\x86\xf1\xb5\x05\x0f\x08\xba\xd0\xee\x76\x57\xb4\x3f\x2f\x0f\xc6\x45" "\xfb\x73\x58\xdf\xb8\x3f\x57\x3a\xde\x9f\x87\x93\xea\x96\x9a\xe1\x74" "\x87\xa6\xaf\x4d\xb4\x90\x7d\xed\x8a\x63\xcf\x39\xe2\xb2\x6b\x37\x3d" "\x1c\x7e\x3f\xdc\x3a\xaf\xbd\xa7\xd6\x3c\x98\x8c\x4c\xdd\xa6\xbb\xe4" "\x54\x36\x3e\xa2\x6a\x3a\xb5\xf7\x8f\xe5\xac\xbf\xbf\x76\xdc\xe8\x4f" "\x77\x4f\xde\xda\xd7\xf8\xf8\xfa\x2a\x69\xd3\xc3\xcd\xf2\xa8\x5f\xee" "\x84\x60\xb9\xfe\xf0\xa2\xa9\x6e\xb9\xfa\xe3\xd4\x8a\xbe\xf0\x38\xd5" "\x7c\xa4\x6a\xe7\x78\xf7\xae\xa6\x3e\xcd\xca\xfe\x3e\x32\x1c\x8c\x8b" "\xb6\xbb\xb0\x3e\xe6\xf7\x91\x0f\x35\xe5\xd1\xdd\xf7\x91\xab\x7b\x20" "\xd7\xed\x82\x71\x51\xae\x61\x7d\xcc\x5c\x6f\x89\x94\xeb\x17\x7b\x20" "\xd7\x91\xa6\xf1\xf4\xb9\x86\xf5\x31\x73\x7d\x20\x52\xae\x0f\xf6\x40" "\xae\xc1\x8f\x21\x0a\x73\x0d\xeb\x63\xe6\x3a\x5c\x89\x93\xeb\xfc\xa6" "\x3e\xcd\xca\xce\x75\x4e\x30\x2e\xca\x35\xac\x8f\x99\xeb\xe2\x48\xb9" "\x1e\xd8\x03\xb9\xce\x0d\xc6\x45\xb9\x86\xf5\x31\x73\x5d\x19\x29\xd7" "\x77\xf7\x40\xae\xf3\x82\x71\x51\xae\x61\x7d\xcc\x5c\xaf\x88\x94\xeb" "\xb5\x3d\x90\x6b\x78\x56\x5d\x94\x6b\x58\x1f\x33\xd7\x7f\x8c\x94\xeb" "\x97\x7a\x20\xd7\x17\x04\xe3\xa2\x5c\xc3\xfa\x98\xb9\xfe\x20\x52\xae" "\x0f\xf5\x40\xae\xf3\x83\x71\x51\xae\x61\x7d\xcc\x5c\x47\xaa\x71\x72" "\x7d\x61\x53\x9f\x66\x65\xe7\xba\x63\x30\x2e\xca\x35\xac\x8f\x99\xeb" "\x92\x48\xb9\xbe\xa9\x07\x72\x7d\x61\x30\x2e\xca\x35\xac\x8f\x99\xeb" "\x69\x91\x72\x5d\xd3\x03\xb9\xbe\x28\x18\x17\xe5\x1a\xd6\xc7\xcc\xf5" "\xaf\x22\xe5\xfa\xd1\x1e\xc8\x75\x41\x30\x2e\xca\x35\xac\x8f\x99\xeb" "\x6d\x91\x72\xbd\xbd\x07\x72\xdd\x29\x18\x17\xe5\x1a\xd6\xc7\xcc\xf5" "\x47\x91\x72\xfd\x79\x0f\xe4\xfa\xe2\x60\x5c\x94\x6b\x58\x1f\x33\xd7" "\x39\xb3\xe2\xe4\xba\xa0\xa9\x4f\xb3\xb2\x73\x0d\xd3\x2b\xca\x35\xbc" "\x37\x66\xae\xaf\x8b\x94\xeb\x9b\x7b\x20\xd7\xf0\xa7\x0c\x45\xb9\x86" "\xf5\x31\x73\x1d\x8f\x94\xeb\xda\x1e\xc8\xf5\x25\xc1\xb8\x28\xd7\xb0" "\x3e\x66\xae\x57\x46\xca\xf5\x63\x3d\x90\xeb\xae\xc1\xb8\x28\xd7\xb0" "\x3e\x66\xae\x5f\x88\x94\xeb\xff\xed\x81\x5c\x5f\x1a\x8c\x8b\x72\x0d" "\xeb\x63\xe6\xfa\x9f\x91\x72\xdd\xdc\x03\xb9\x8e\x06\xe3\xa2\x5c\xc3" "\xfa\x98\xb9\xce\xeb\x8f\x93\xeb\x8b\x9b\xfa\x34\x2b\x3b\xd7\xdd\x82" "\x71\x51\xae\x61\x7d\xcc\x5c\x5f\x1f\x29\xd7\x43\x7a\x20\xd7\xdd\x83" "\x71\x51\xae\x61\x7d\xcc\x5c\xdf\x19\x29\xd7\xb3\x7b\x20\xd7\x85\xc1" "\xb8\x28\xd7\xb0\x3e\x66\xae\x1f\x89\x94\xeb\xdf\xf4\x40\xae\x2f\x0b" "\xc6\x45\xb9\x86\xf5\x31\x73\xfd\x3f\x91\x72\xbd\xa3\x07\x72\xdd\x23" "\x18\x17\xe5\x1a\xd6\xc7\xcc\xf5\xa7\x91\x72\x7d\xb4\x07\x72\xdd\x33" "\x18\x17\xe5\x1a\xd6\xc7\xcc\xf5\x05\xb3\xe3\xe4\xba\x4b\x53\x9f\x66" "\x65\xe7\xba\x57\x30\x2e\xca\x35\xac\x8f\x99\xeb\x1b\x23\xe5\xba\xac" "\x07\x72\xdd\x3b\x18\x17\xe5\x1a\xd6\xc7\xcc\x75\x75\xa4\x5c\xd7\xf5" "\x40\xae\x7f\x14\x8c\x8b\x72\x0d\xeb\x63\xe6\x7a\x4d\xa4\x5c\x3f\xd1" "\x03\xb9\xfe\x71\x30\x2e\xca\x35\xac\x8f\x99\xeb\x3f\x45\xca\xf5\x6b" "\x3d\x90\xeb\xcb\x83\x71\x51\xae\x61\x7d\xcc\x5c\x7f\x16\x29\xd7\xc7" "\x7a\x20\xd7\x57\x04\xe3\xa2\x5c\xc3\xfa\x98\xb9\xee\x38\x10\x27\xd7" "\x5d\x9b\xfa\x34\x2b\x3b\xd7\x57\x06\xe3\xa2\x5c\xc3\xfa\x98\xb9\x8e" "\x45\xca\xf5\xf0\x1e\xc8\xf5\x55\xc1\xb8\x28\xd7\xb0\x3e\x66\xae\x67" "\x44\xca\x75\x43\x0f\xe4\xba\x4f\x30\x2e\xca\x35\xac\x8f\x99\xeb\x5f" "\x47\xca\xf5\xfa\x1e\xc8\x75\x51\x30\x2e\xca\x35\xac\x8f\x99\xeb\x97" "\x23\xe5\xfa\xf5\x1e\xc8\x75\xdf\x60\x5c\x94\x6b\x58\x1f\x33\xd7\x87" "\x23\xe5\xfa\xab\x1e\xc8\xf5\xd5\xc1\xb8\x28\xd7\xb0\x3e\x66\xae\x2f" "\x1a\x8c\x93\xeb\x68\x53\x9f\x66\x65\xe7\xfa\x9a\x60\x5c\x94\x6b\x58" "\x1f\x33\xd7\x83\x22\xe5\x7a\x44\x0f\xe4\xba\x5f\x30\x2e\xca\x35\xac" "\x8f\x99\xeb\x99\x91\x72\x7d\x4f\x0f\xe4\xba\x7f\x30\x2e\xca\x35\xac" "\x8f\x99\xeb\x75\x91\x72\xbd\xa1\x07\x72\x5d\x1c\x8c\x8b\x72\x0d\xeb" "\x63\xe6\xfa\x95\x48\xb9\xde\xdd\x03\xb9\xbe\x36\x18\x17\xe5\x1a\xd6" "\xc7\xcc\xf5\x17\x91\x72\x7d\xb2\x07\x72\x5d\x12\x8c\x8b\x72\x0d\xeb" "\x63\xe6\xba\xd3\x50\x9c\x5c\x77\x6f\xea\xd3\xac\xec\x5c\x97\x06\xe3" "\xa2\x5c\xc3\xfa\x98\xb9\x1e\x1c\x29\xd7\xa3\x7a\x20\xd7\xd7\x05\xe3" "\xa2\x5c\xc3\xfa\x98\xb9\x9e\x15\x29\xd7\xf3\x7a\x20\xd7\x03\x82\x71" "\x51\xae\x61\x7d\xcc\x5c\x3f\x1e\x29\xd7\xff\xda\x03\xb9\xbe\x3e\x18" "\x17\xe5\x1a\xd6\xc7\xcc\xf5\x9f\x23\xe5\x7a\x4f\x0f\xe4\xfa\x86\x60" "\x5c\x94\x6b\x58\x1f\x33\xd7\x47\x22\xe5\xfa\x9b\x1e\xc8\xf5\x8d\xc1" "\xb8\x28\xd7\xb0\x3e\x66\xae\x3b\x0f\xc7\xc9\xf5\x65\x4d\x7d\x9a\x95" "\x9d\xeb\x81\xc1\xb8\x28\xd7\xb0\x3e\x66\xae\x87\x46\xca\xf5\x2d\x3d" "\x90\x6b\x38\xbf\xa2\x5c\xc3\xfa\x30\xd7\x81\xe0\xfe\x4e\x72\x3d\xa7" "\x83\x5c\xb3\xf5\x2c\x69\xd1\xe7\xfc\x1e\xc8\xf5\x81\xe0\xfe\xa2\x5c" "\xc3\xfa\x98\xdb\xeb\xdf\x46\xda\x5e\x3f\xd5\x03\xb9\x7e\xbf\xc3\x5c" "\xc3\xfa\x98\xb9\x7e\x35\x52\xae\xff\xaf\x07\x72\xfd\x41\x87\xb9\x86" "\xf5\x31\x73\xfd\x65\xa4\x5c\x7f\xdb\x03\xb9\xfe\xb0\xc3\x5c\xc3\xfa" "\x98\xb9\xbe\x64\xbb\x38\xb9\xee\xd9\xd4\xa7\x59\xd9\xb9\xfe\xa8\xc3" "\x5c\xc3\xfa\x98\xb9\x1e\x16\x29\xd7\xb7\xf6\x40\xae\x3f\xee\x30\xd7" "\xb0\x3e\x66\xae\xeb\x23\xe5\x7a\x61\x0f\xe4\xfa\x9f\x1d\xe6\x1a\xd6" "\xc7\xcc\xf5\x93\x91\x72\xbd\xb1\x07\x72\xfd\x49\x87\xb9\x86\xf5\x31" "\x73\xbd\x33\x52\xae\xdf\xec\x81\x5c\x7f\xda\x61\xae\x61\x7d\xcc\x5c" "\x1f\x8f\x94\xeb\x33\x3d\x90\xeb\x83\x1d\xe6\x1a\xd6\xc7\xcc\xf5\xa5" "\x23\x71\x72\xdd\xbb\xa9\x4f\xb3\xb2\x73\xfd\x59\x87\xb9\x86\xf5\x31" "\x73\x5d\x1e\x29\xd7\xb7\xf5\x40\xae\x0f\x75\x98\x6b\x58\x1f\x33\xd7" "\x8d\x91\x72\x7d\x6f\x0f\xe4\xfa\x70\x87\xb9\x86\xf5\x31\x73\xfd\xbb" "\x48\xb9\xde\xd4\x03\xb9\xfe\xbc\xc3\x5c\xc3\xfa\x98\xb9\xde\x15\x29" "\xd7\x6f\xf5\x40\xae\xbf\xe8\x30\xd7\xb0\x3e\x66\xae\x4f\x44\xca\x75" "\xa2\x07\x72\xdd\xdc\x61\xae\x61\x7d\xcc\x5c\x77\xdb\x3e\x4e\xae\x7f" "\xdc\xd4\xa7\x59\xd9\xb9\x3e\xd2\x61\xae\x61\x7d\xcc\x5c\x8f\x8c\x94" "\xeb\xf1\x3d\x90\xeb\xa3\x1d\xe6\x1a\xd6\xc7\xcc\xf5\xdc\x48\xb9\x6e" "\x9a\x41\xae\x69\xed\x6f\xde\x5f\xf8\xf9\xf7\xbf\x6b\x6a\xdc\xd7\xf0" "\xd9\x6a\x7d\x2d\x3e\xbb\xaa\xfe\xfe\xa2\xc7\x0b\x00\x00\xcf\xa5\x17" "\xfe\xea\xfa\xb7\xd6\x8f\xb3\xcf\xff\xcf\x3e\x47\x3c\xfb\x9b\xf6\xff" "\x51\x3b\xe9\xcd\xce\x67\x63\x5d\x6f\xfc\xb2\xc3\xeb\x8d\xb0\x3e\x9b" "\x67\x8c\xeb\x8d\x59\xc1\xe7\xa7\x77\x7b\xbd\xb1\x7d\x53\x9f\x66\x65" "\x5f\xc7\x3d\xd6\x61\xae\x61\x7d\xcc\x5c\x17\x45\xca\x75\x69\x0f\xe4" "\xfa\x78\x87\xb9\x86\xf5\x31\x73\x3d\x29\x52\xae\xab\x7a\x20\xd7\x5f" "\x75\x98\x6b\x58\x1f\x33\xd7\x0f\x44\xca\xf5\xc3\x3d\x90\xeb\x13\x1d" "\xe6\x1a\xd6\xc7\xcc\xf5\x7f\x44\xca\xf5\xf3\x3d\x90\xeb\x93\x1d\xe6" "\x1a\xd6\xc7\xcc\xf5\x3b\x91\x72\xfd\x71\x0f\xe4\xfa\xeb\x0e\x73\x0d" "\xeb\x63\xe6\x3a\x3b\x8d\x93\xeb\xdc\xa6\x3e\xcd\xca\xce\xf5\x37\x1d" "\xe6\x1a\xd6\xc7\xcc\xf5\xd5\x91\x72\x3d\xa0\x07\x72\x7d\xaa\xc3\x5c" "\xc3\xfa\x98\xb9\xfe\x69\xa4\x5c\x4f\xef\x81\x5c\x7f\xdb\x61\xae\x61" "\x7d\xcc\x5c\x2f\x8b\x94\xeb\x55\x3d\x90\xeb\xd3\x1d\xe6\x1a\xd6\xc7" "\xcc\xf5\x73\x91\x72\xfd\xdf\x3d\x90\xeb\x33\x1d\xe6\x1a\xd6\xc7\xcc" "\xf5\xbb\x91\x72\xfd\x49\x0f\xe4\xfa\xbb\x0e\x73\x0d\xeb\x63\xe6\x3a" "\xd8\x17\x27\xd7\x1d\x9a\xfa\x34\x2b\x3b\xd7\x89\x0e\x73\x0d\xeb\x63" "\xe6\xba\x5f\xa4\x5c\xdf\xd0\x03\xb9\xbe\x29\x18\x17\xe5\x1a\xd6\x37" "\xe6\xda\x37\xa3\x5c\x57\x34\xe5\xd1\xd7\x54\xdf\x4e\xae\xef\xea\x81" "\x5c\x0f\x0a\xc6\x45\xb9\x86\xf5\x31\x73\xfd\x50\xa4\x5c\xaf\xee\x81" "\x5c\xdf\x1c\x8c\x8b\x72\x0d\xeb\x63\xe6\x7a\x4b\xa4\x5c\xbf\xd8\x03" "\xb9\x1e\x1c\x8c\x8b\x72\x0d\xeb\x63\xe6\xfa\x40\xa4\x5c\x1f\xec\x81" "\x5c\x0f\x09\xc6\x45\xb9\x86\xf5\x31\x73\x1d\xae\xc4\xc9\x75\x7e\x53" "\x9f\x66\x65\xe7\x7a\x68\x30\x2e\xca\x35\xac\x8f\x99\xeb\xe2\x48\xb9" "\x1e\xd8\x03\xb9\x2e\x0b\xc6\x45\xb9\x86\xf5\x31\x73\x5d\x19\x29\xd7" "\x77\xf7\x40\xae\x87\x05\xe3\xa2\x5c\xc3\xfa\x98\xb9\x5e\x11\x29\xd7" "\x6b\x63\xe5\x3a\x19\xe6\xe9\xeb\xc6\xc7\xd7\x9f\xbd\xf2\xb4\xf1\x15" "\xab\xd7\xae\xde\xb0\xb5\x6e\x56\x32\x3c\x6d\xae\xcb\x83\xf1\x64\xfd" "\x96\xdb\x74\xa7\x96\x8f\x27\xac\x8f\x35\x8f\xf0\xef\x25\xe4\xcd\xe3" "\xda\xb4\x75\x7d\xc3\x3c\x4e\xdd\xb0\x6e\x7c\x72\xfd\xeb\xc7\xd7\x6d" "\x68\x7a\x7c\x73\xa6\x9d\x47\x78\x77\x7f\x32\x67\xea\x36\x0d\x3f\x81" "\xaf\x75\x7d\x5a\x7b\xce\xb6\xce\x67\xcb\x54\x36\x9e\xbd\x6a\xe5\x86" "\xf1\x15\x6b\xcf\x5a\x35\xbe\x7e\xc5\xb9\xeb\x56\x6f\xd8\x30\xbe\x36" "\x9b\xcf\xf4\xdb\xfd\x51\xc1\xb8\x68\xbb\x0f\xeb\x1b\xb7\xfb\x4a\xc7" "\xdb\x7d\xd1\xf3\x16\xae\x2f\xef\x79\xeb\x9b\xa6\x7e\xa8\x83\xe7\x39" "\xaf\xff\x47\x72\xea\x87\x93\xe1\x2d\x8f\x71\x38\xdd\xa1\x69\xee\x13" "\x2d\x64\x5f\xbb\xfd\xa8\x5b\xef\x5d\xb6\x70\x8f\xf7\x0d\xb4\x7e\xd8" "\x49\xba\xdf\xd4\x8a\x06\x93\x91\xa9\xdb\x34\xfc\xa4\xd6\xa4\xe5\x23" "\x1e\x4e\xa7\xf6\xf2\xb1\x9c\xf5\xf7\xd7\x8e\x0f\xfd\xe9\xee\x49\x5a" "\x6d\x3c\x3e\xf4\x55\xd2\xa6\x67\x21\x7b\x3e\xeb\x97\x1b\x08\x96\xeb" "\x1f\x6e\x9e\x55\xb6\x5c\xfd\xf1\x68\x4e\x35\x3c\x1e\x35\x1f\x91\xda" "\x39\xae\x2d\x68\xea\xd3\xac\xad\xe3\xda\xb4\xfb\xf1\xe0\xf4\xaf\x77" "\x04\xbd\xb7\xdb\xd2\x35\x49\xb6\x4b\xc3\x4f\xd8\x6f\x5d\x1f\x1e\xd1" "\xd3\x36\xdf\xdb\x1d\x6b\xbf\x3f\x26\x18\x17\xed\xf7\x61\x7d\xd1\x7e" "\xbf\xa9\xe0\x71\x14\xed\xf7\xe1\xfa\x8a\xf6\xfb\x56\xf5\xad\xf6\xfb" "\xbc\xfd\x38\xaf\xff\x87\x73\xf7\xfb\x39\x5d\xed\xf7\x03\x9f\xf9\xee" "\x5b\x0e\xba\xf3\x90\x8f\xe7\xee\xf7\x63\xed\xee\xf7\x8d\x8f\x78\x4e" "\x07\xfb\xfd\xa6\x2e\xf7\xfb\x4b\xc3\xfd\x7e\x4e\xf3\xac\x5a\xed\xf7" "\x7f\x15\x69\xbf\xff\xe8\x73\xb2\xdf\x0f\x74\xf4\xfd\x7b\xa8\xf6\x97" "\xa5\x86\xd2\x1d\xdb\xaa\xcf\xe6\x98\xcc\x6d\xdd\xbf\x69\xbe\x33\xdc" "\xcf\xdf\x16\x8c\x8b\xf6\xf3\xb0\xbe\x68\x3f\x2f\x3a\x68\x15\xed\xe7" "\xe1\xfa\x8a\xf6\xf3\x56\xf5\xad\xf6\xf3\xbc\xfd\x36\xaf\xff\x15\xb9" "\xfb\xf9\x60\x57\xfb\xf9\xc4\x6d\x07\x0d\xcf\x79\xaa\xff\x92\xdc\xfd" "\xfc\xc8\x76\xf7\xf3\xc6\x47\x3c\xd8\xc1\x7e\xfe\x4c\x97\xfb\x79\x75" "\x56\xb0\x9f\x0f\x36\xcf\xaa\xd5\x7e\x3e\x3c\x2b\xce\x7e\x3e\xbf\xa9" "\x4f\xb3\x99\xef\xe7\x69\xee\x76\xd9\x6a\xff\x9c\x57\x9b\xf9\xbc\x34" "\xfc\x64\xf7\xd6\xf5\xd9\xfc\x5f\xb1\xf1\xaa\xe3\x97\x7c\xff\xf1\x25" "\x49\xb2\xe8\x85\xf7\xee\x5a\x6d\xf1\x48\xa6\x6c\x1e\x3f\xfc\xb4\x03" "\x5a\xfc\xdb\xa4\xd6\xb8\xfe\xf9\x3a\x7a\x56\xf3\xf9\x44\x28\x7b\x98" "\x0d\xf9\x9c\xbe\x7e\xcb\x45\xd4\xea\x95\x6b\x56\x9f\x3f\xde\x58\x5f" "\x94\x4f\x1a\x3c\xde\x1d\x6a\x6b\xd8\x21\x27\x9f\xb0\x3e\x9b\xef\x87" "\x37\x5e\xf0\xcb\x5b\x5f\x73\xcb\x53\x49\xb2\x68\xc7\xca\x2e\x33\xce" "\x27\x1d\x9b\x78\xd9\xe8\x3d\xd7\xfc\xfa\x53\x8f\xd7\x36\x9a\x79\xb5" "\xc7\xd1\x2b\xcf\xdb\xb6\xdb\x8e\xfa\x5a\x36\x9e\x95\xf4\x4d\xfb\x3c" "\x6f\x4d\xb3\x36\xaf\x81\xda\x82\x03\xe9\x50\x5b\xf5\xd9\xf3\x5e\x5d" "\x73\xd6\xfa\x0d\x2f\x3f\xfd\xac\x8d\x6b\x57\x6d\x19\xd7\x6f\xbf\xeb" "\x3a\xd8\x7e\x87\x93\x6a\x57\xc7\xe3\x2b\x8e\x3d\xe7\x88\xcb\xae\xdd" "\xf4\x70\xee\xf1\x78\xef\x74\xeb\x7a\x62\xfc\x7e\xe6\xa6\x76\x4e\xe6" "\x7f\x0f\x3d\xf1\x9b\xf4\xc9\xfa\x71\xf6\xfe\xff\xec\x18\x9e\xbd\xff" "\xff\xad\xfd\x53\xe3\xa6\xe3\xd2\x0c\xcf\x77\xde\x1e\x8c\x8b\xce\x77" "\xc2\xfa\x6c\x9e\xb9\xd7\x35\x33\x3c\xdf\x09\xd7\x57\x74\xbe\xd3\xaa" "\xbe\xd5\xf9\x4e\xde\xf9\x4b\x5e\xff\x0f\xe6\x9e\xef\x0c\x74\xb5\x7f" "\x7d\x60\xcd\x1d\x37\x5d\x78\xfc\xf2\x6f\xe7\xee\x5f\x27\xb4\x7b\xbe" "\xd3\xf8\x88\x07\x3a\x38\xdf\xd9\x39\x38\x57\x68\xf7\x7c\x67\xf7\x60" "\xb9\xfe\x16\x0f\xa2\xd5\xf9\xce\x1f\x05\xcb\x75\x7b\xbe\xf3\xea\xa6" "\x3e\xcd\x0a\xcf\x77\x66\xb8\xdf\x9c\x18\x8c\x8b\xf6\x9b\xb0\xbe\xec" "\xfd\x26\x5c\x5f\xd1\x7e\xd3\xaa\xbe\xd5\x7e\x93\xb7\x1f\xe4\xf5\xff" "\x40\xee\x7e\x93\x76\xb5\xdf\x7c\xe5\xcc\x87\x46\x66\x1f\x78\xd7\x75" "\xb9\xfb\xcd\xaa\x76\xf7\x9b\xc6\x47\x9c\x76\xb0\xdf\x5c\xdc\xe5\x7e" "\xf3\xc1\x70\xbf\x69\xf1\xdc\xb5\xda\x6f\xae\x8c\xb4\xdf\x7c\xac\x07" "\xf6\x9b\x93\x83\x71\xd1\x7e\x13\xd6\x97\xbd\xdf\x84\xeb\x2b\xda\x6f" "\x5a\xd5\xb7\xda\x6f\xf2\xf6\x83\xbc\xfe\xef\xcf\xdd\x6f\xfa\xba\xda" "\x6f\xce\xd9\x65\xe9\xa1\x1b\x57\x2d\x5a\x95\xbb\xdf\x9c\xdd\xee\x7e" "\xd3\xf8\x88\xfb\x3a\xd8\x6f\x1e\xec\x72\xbf\x79\x24\xdc\x6f\x5a\x9c" "\xfc\xb6\xda\x6f\x9e\x8c\xb4\xdf\x4c\x16\xcd\x74\xbf\x59\xb1\x62\xcb" "\x15\xe4\x69\xeb\xc6\x57\x6e\x18\x6f\xb1\x7c\xd1\xf5\x63\x5f\x87\xd7" "\x8f\x61\x7d\x36\xe7\xa7\x77\xdf\xeb\x9e\x23\x7f\xf1\xde\x1b\x27\xaf" "\x1f\xa7\xbb\x2e\x7a\xcb\x87\x7e\xf6\xee\x03\x5a\xfc\x1b\x48\xc7\x26" "\xce\x9d\xfb\xa6\x5b\x4e\x79\xf8\x5f\x0f\x9f\xba\x63\xdb\x5d\x3f\xb6" "\xbe\x5e\xeb\xf4\xfa\xb1\xd2\xd5\x7c\xea\x13\xca\xe6\x53\x6d\x39\x9f" "\xa2\xeb\xc7\xad\x69\xd6\xe6\x35\xbb\xb6\xe0\xec\x9c\xeb\xc7\xb0\x3e" "\x7b\xde\xab\xa7\xaf\x5e\x33\xbe\xa8\x71\x3f\x7a\x5d\xda\x7a\xdb\xad" "\x17\x5e\x5f\xcc\x74\xbb\xad\x74\xb8\xdd\x86\xf5\xd9\x7c\xf7\xbf\x7f" "\xd1\xe6\xdf\x7d\xed\xf8\xbb\xa7\xb6\xdb\xbc\xa3\x58\xdb\xdb\xed\xe0" "\xd8\xc4\xe0\x5f\x9c\x79\xe8\x33\x47\x6c\xda\xf7\xd9\x79\x0d\xf5\xe0" "\xfe\xd4\xab\xfb\x79\xd1\x76\x9c\xa5\xdb\xd7\xe6\x76\x1c\xd6\x67\xdb" "\xc1\x40\x8b\xed\xf8\xaa\x6d\xb0\x1d\x57\x83\x9c\xb7\xaf\xad\x61\xfb" "\x9c\xe7\x25\xac\xcf\xe6\xbb\xf4\x3d\xaf\xfa\xc4\x0f\x8e\x3b\x61\x8f" "\x4d\xc9\xa2\xea\x63\x2f\x6d\xce\x22\x93\xf7\xbc\xd4\xe7\xf0\xb3\x0e" "\x72\x98\x55\x3b\x40\x84\xe7\x19\x79\xf3\x6d\x78\xdd\x73\xf2\x0c\x6f" "\x7c\xc5\xea\xb5\xab\xc6\xcf\x5b\xb1\x6a\xfc\xf4\x95\x1b\xd7\x6c\x7d" "\x79\x78\xd6\x96\x9f\xe9\xe4\xe7\x96\xed\xa9\x59\xff\xec\x11\x0f\xa5" "\xf3\x1a\x6a\x07\x72\xea\xf7\xd9\x70\xe6\xd9\xfb\xac\xff\xb3\xf3\x5f" "\xb9\xfa\xcc\x95\xef\x1c\x7f\xe7\xf8\xda\xfd\x16\x2d\x7e\xed\xa2\xc5" "\x8b\x17\xef\xbb\x64\x9f\x2d\x9b\xc6\xd4\xbf\x5b\x9e\x8f\xa1\x6d\xf0" "\x7c\xc4\xda\x0e\xb2\xc7\xbd\x57\x9b\xeb\x8d\x75\x3e\xbe\x22\x18\x17" "\x9d\x8f\x87\xf5\x65\x9f\x8f\x87\xeb\x2b\x3a\x1f\x6f\x55\xdf\xea\x7c" "\x3c\xef\xfc\x3a\xaf\xff\xa6\xdc\xf3\xf1\xa4\xab\xf3\xf1\x4b\xef\xbf" "\xea\x33\xf7\xed\x74\xfe\x3e\xb9\xe7\xe3\x17\xb6\x7b\x3e\x1e\x3c\xe2" "\x0e\xce\xc7\x4f\xea\xeb\xee\x7c\xfc\xd4\x60\xb9\xfe\x16\xb3\x6a\x75" "\x3e\xbe\xba\x2f\xce\xf9\xf8\xba\xa6\x3e\xcd\xda\x3c\x1f\x5f\xb3\x7a" "\xed\x19\x2d\x96\x76\x3e\xd0\xe9\xbc\x62\x1d\x7f\x3b\x3d\x0e\x16\xe5" "\x51\xb4\xde\xc9\x3c\xba\x59\x6f\x60\x70\x6c\x62\xc7\xd7\x9d\xb8\xc7" "\x79\x13\x7d\xef\x98\xba\xa3\xe8\xfc\x28\xab\x6e\xf7\xfc\x28\xac\xdf" "\xfa\xfd\x74\xf2\xdb\xdf\xbe\xf5\xdf\xdf\x5b\xaf\x2f\xef\xfb\xfb\x4c" "\xcf\x8b\x66\x75\x78\x7e\x1f\xd6\x67\xcf\xc7\x0d\x5f\x7f\x7c\xf1\x29" "\xdf\xfd\xe9\x77\x22\x9d\xdf\xa7\x63\x13\xcb\x7f\xf5\xe4\x87\xbf\xba" "\xf8\xfc\xf7\x4e\xdd\xd1\xe9\x75\x69\xd9\xd7\x81\xcf\xb7\xeb\xd2\xad" "\x69\xb6\xb9\xbd\x86\xf5\xb3\xea\xcf\xe7\xf7\x6d\xfc\x7e\x32\x52\xe9" "\xfc\x7c\x7e\xcb\x56\x7b\xde\xca\x0d\x1b\xd6\xad\x58\x3f\xbe\x61\xc5" "\xbb\x56\xae\x5d\xb5\x66\x7c\xdd\xb3\xf5\x45\xc7\xef\x6d\xb5\x1d\x3e" "\x37\xfb\xc7\x37\x3e\x7b\xf9\xba\xce\xe6\x35\x2b\xa9\x4c\xfb\xfc\xef" "\x7f\xc0\xfb\x2f\xb8\xf0\x2f\xb7\x7f\xdf\xac\xad\xcf\xff\xd4\xcc\x66" "\xa7\xcd\x6f\x66\x6d\x55\x9f\xf4\xf7\x27\x5b\x9e\xae\x7d\xa7\xfe\x8d" "\x75\xfe\x7a\x6a\x30\x2e\x3a\x7f\x0d\xeb\x8b\xce\x5f\x07\x0a\x7e\xd0" "\x5e\x74\xfe\x1a\xae\xaf\xe8\xfc\xb5\x55\x7d\xab\xf3\xd7\xbc\xf3\xd1" "\xbc\xfe\x17\xe5\x9e\xbf\x56\xba\xfb\xf9\xe5\x05\x57\x9d\x79\xdb\x57" "\xef\xbd\x26\xf7\xfc\xf5\xb2\x76\xcf\x5f\x1b\x1f\x71\xa5\x83\xf3\xd7" "\xcf\x55\xba\x3b\x7f\xfd\x7c\xb0\x5c\x7f\x8b\x83\x4f\xab\xf3\xd7\x2f" "\x57\xe2\x9c\xbf\x7e\xbd\xa9\x4f\xb3\xa2\xf3\xd7\xde\x38\xfe\x75\x7e" "\x9c\x79\xbe\x1e\xff\xfe\xee\xdd\x4b\x0e\xf8\xfe\xcd\x3b\xbc\xa4\xdd" "\xe3\x5f\x58\xbf\xf5\xf8\xf7\xea\xa9\x7f\x63\x9d\x7f\xf5\x77\x78\xfe" "\x15\xd6\x67\xf9\x4e\x2c\xec\x1b\x3d\xfa\xdf\x6e\xde\xa5\x28\xdf\xa9" "\x64\x9b\xff\x0d\xa4\x63\x13\xff\xf4\xf2\xdf\xbd\xfe\x63\x97\x9f\x51" "\x7b\x7b\xc2\x1f\xe6\xf9\x57\x7d\x42\x33\x3b\xff\xda\x9a\x66\x9b\xe7" "\x5f\x61\x7d\x7f\xfd\xf9\xd7\xab\x1b\x8f\x87\x6f\xa8\x76\xfd\x7a\x6a" "\xee\xf5\xf3\x73\xf3\x7c\xb7\x9f\x6f\xaf\x3d\xdf\x45\xc7\xe7\x6d\xb5" "\x9f\x6e\xbb\xe3\x47\x5f\x30\xaf\xd1\x6b\xd6\xec\x77\xc6\xce\xbb\x9f" "\x34\x75\x47\xd1\xfe\xb1\xb5\xba\xcd\xfd\x23\xac\x6f\xd8\x3f\x5e\x13" "\xef\xfa\x78\x76\x87\xc7\xe7\xb0\x3e\xcb\x77\xc5\x7d\xbf\xfb\xd2\xa7" "\x4f\x7e\xe4\x8e\x78\xcf\xfb\xf5\xdf\x3a\xeb\x9c\x4f\x3d\x3e\x58\xfb" "\x83\x12\xf6\xd7\x99\x1d\x9f\xb7\xa6\xd9\xe6\xfb\x7e\xc3\xfa\xd9\xf5" "\xdb\xdf\xab\x4e\x3b\x6b\xcd\xd4\xdb\x7e\x1b\x8e\xd3\x8f\x76\x71\x9c" "\x6e\xf8\xf9\xcd\x59\xab\x9a\x36\xe1\xa2\xe3\xd0\xb6\x7a\xfd\xac\x57" "\x5f\xd7\x8b\xfd\x73\xb1\x67\xcf\x27\x6b\xb7\x05\x3f\x17\xcb\xea\xd7" "\xff\xd9\xf9\x67\xac\x5c\xb3\x66\x7c\xdd\xfa\x67\xf3\xfa\x7d\x3e\xdf" "\xcf\x66\x16\xee\x4d\xdd\xce\x2b\xd6\xfe\xb1\xad\xe6\x5f\x76\xae\xf5" "\x47\xc6\x19\xe7\x3a\x83\xfd\x23\x3b\x2e\x66\xaf\x4e\xec\x50\xb0\x7f" "\xcc\x6e\xda\x3f\xca\xfb\x9f\xa4\x8d\xed\x63\x5b\x7d\x3f\x8f\x75\x9e" "\x91\xcd\x6c\x55\xa4\x79\x95\xfd\xfb\x28\x65\xff\xfe\x61\xd9\x7f\xbf" "\xa0\xec\xdf\x93\x8e\xf5\xfb\x3a\x45\xaf\x8b\x02\x00\x00\x00\x00\x00" "\x00\xfc\xa1\xb9\x7c\x45\x7a\x65\xfd\x38\xfb\xfb\x7f\xd9\xbb\xd0\xb2" "\xbf\xff\xf7\x86\xda\xcf\x5b\xa7\x7d\x7f\x57\x8b\xf7\x59\x00\x3c\xdf" "\xc5\x7e\x5f\x59\xa5\xe9\x7d\x97\x8d\x7f\xc5\x20\x7c\x5f\x59\x56\xbf" "\xeb\xf6\xc9\xac\x57\x5d\xfa\x95\x7b\xd2\x6b\x6a\xef\xaf\x2a\x78\xff" "\xd7\xb6\xfc\x7b\x46\x49\x07\xf3\xaa\xe6\xcc\x2b\x9b\xd9\x8b\xab\x71" "\xe6\x55\xf4\xfb\x9c\xe1\x1b\x30\x8b\x7e\x9f\x33\xac\xcf\xa6\xb9\xb0" "\x36\xca\xe6\x1f\xeb\xf7\x39\xc3\xf5\x15\xfd\x3e\x67\xab\xfa\x56\xbf" "\xcf\x99\xf7\xfb\x99\x79\xfd\xcf\xcf\xa9\x2f\xfe\x7d\xcb\xd6\x89\xe5" "\x6d\xef\xf5\xef\x3f\xff\xef\xc1\xbb\xe3\xfb\xaa\xcd\xbf\x6f\x99\x2d" "\x5f\xbf\xdc\xff\x0c\x96\x9b\xd5\xe2\x17\x1b\x07\xb6\xde\x3e\xfb\x7b" "\x92\x5f\x08\x96\x1b\x08\x37\xda\xfa\xe7\x35\xb8\x9d\x55\x7b\x47\x6b" "\xab\xbf\x77\x94\x34\xa6\x30\x77\xf2\x91\x37\xfc\x7e\x66\xb0\xde\x4a" "\xf8\x3b\x01\x2d\xd6\xbb\xa4\xc5\xfc\xef\x6d\xea\xd3\xac\xad\xdf\xf3" "\x9c\xc1\xf1\x6e\x41\xed\xff\xfb\x0b\x8e\x77\x0b\x72\xea\xdf\xf1\xaa" "\xa9\xb7\x07\xfe\x79\x9b\xc7\xbb\x6d\xf5\xfb\x41\x9d\xfe\xde\x52\x35" "\x67\x5e\xd9\xe3\xdf\x7b\x61\x9c\x79\x8d\xd4\x8e\x77\xcf\xd5\xf1\x6b" "\xa6\xc7\xcb\xd1\x0e\xd7\x57\x78\xbc\x19\x6d\x5e\xe3\xe8\x34\xdb\x5b" "\xfd\x71\xe3\x88\xb4\xf8\x78\xb3\x75\xf9\xba\xe5\x8e\x4d\x8b\x8f\x37" "\xd9\x72\xf5\xfb\xeb\x89\xc1\x72\x03\xe1\x46\x53\x97\xcb\x82\xe0\xf6" "\xd9\xe3\x4d\xcb\x14\x9a\x8e\x37\x1d\x1c\x9f\xc6\xc2\xe3\xd3\xda\xb4" "\xf8\xf8\x14\x3e\xce\x9f\xd6\x8e\x33\x65\xff\xbd\xaa\xb2\xff\xae\x73" "\xd9\x7f\xff\xb6\xec\xbf\x87\x50\xfe\xfb\xdf\xcb\xfd\x7b\xf4\xde\x5f" "\x9f\xd3\xdf\xfb\xeb\x01\x00\x00\x98\xc6\x75\x8f\xfd\xeb\x15\xf5\xe3" "\xec\xe7\xff\xd9\x35\xe3\x48\x35\x49\x76\x4b\x92\xe4\x82\x60\xb9\xc6" "\xbf\x9f\xb9\xf6\xac\x55\xe3\xb5\x57\x89\xcf\x3d\x6b\x5d\xfd\x5f\xe4" "\x9a\xe9\xeb\x0d\xa3\x39\xf3\x7e\xf6\xf5\x06\xaf\x27\xb5\xec\xff\x9c" "\xbd\x9e\xe4\xf5\x9e\x96\xfd\x9f\xe3\xd7\x7b\x2e\x9a\xe1\xeb\x3d\x97" "\x79\xbd\x07\x00\x00\x7e\xef\x7d\xf2\xfb\x9f\xbf\xb8\x7e\x9c\x5d\xff" "\x67\xef\xce\xca\xae\xff\x9f\x0a\xde\x57\x12\xeb\xf3\x33\x8e\x0c\xc6" "\x45\xef\x1f\x0a\xeb\xb3\x79\xe6\x7d\x7e\x46\xd1\x75\x4d\xd1\xfb\x2d" "\xc3\xf5\xe5\xbd\x1f\x32\x9d\xa6\xbe\xd5\xfb\x2d\xb3\x69\x1d\x95\xdb" "\xbf\xf5\x7c\xc2\xfa\xc9\xee\xdd\x5c\x5f\x7e\xf1\x7b\x17\xdd\x70\xe7" "\x0f\xaf\xdf\x9c\x7b\x7d\xb9\xa8\xdd\xcf\xcf\x68\x7c\xc4\x43\x1d\x7e" "\xfe\x7f\xfd\xbb\x00\x3b\xf9\xfc\xff\xfa\xe5\xfa\x5b\x7c\x6c\x62\xde" "\xe7\xff\xd7\x2f\x37\x93\xcf\xff\x6f\xec\xd3\x2c\xcc\x3b\x13\x6b\xbf" "\xf9\x93\x60\x5c\xb4\xdf\x84\xf5\xf1\xf6\x9b\xf6\x3f\xcf\x3f\x99\x66" "\xbf\x09\xeb\x87\x93\x91\xae\xb6\xeb\xbb\x6f\x7c\xf0\xa4\xbb\xef\xb8" "\xeb\xe9\xdc\xed\xfa\xe4\x76\xb7\xeb\xc6\xc4\x46\x3a\xfc\x7c\xfe\x6e" "\xb6\xeb\x0f\x86\xdb\xf5\x48\xf3\xac\xf2\x3e\x9f\x3f\xc6\x76\xfd\xb1" "\x1e\xd8\xae\xdf\x11\x8c\x8b\xb6\xeb\xb0\xbe\xec\xef\x07\xe1\xfa\x8a" "\xb6\xeb\x56\xf5\xd3\xed\x37\xf9\x9f\x37\xda\x7a\x3e\x61\xfd\x70\x32" "\xb7\xab\xfd\x66\xb7\x8f\x0e\x9d\xfa\xdb\x9b\xd7\xe6\xbf\x5e\x7d\x5e" "\xbb\xfb\x4d\xe3\x23\x9e\xdb\xc1\x7e\x73\x7f\x97\xfb\xcd\x8f\xc2\xfd" "\xa6\xf9\x6d\xb3\x2d\xf7\x9b\x87\x22\xed\x37\x8f\xf7\xc0\x7e\x73\x74" "\x30\x2e\xda\x6f\xc2\xfa\xb2\xbf\x1f\x1c\xd3\xa2\x3e\x99\x66\xbf\x09" "\xeb\x87\x93\xf9\x5d\xfe\x1c\x69\xe7\xb5\x63\xb7\x57\x1e\xcd\xdd\xae" "\x97\xb4\xbb\x5d\x37\x26\x36\xbf\x83\xed\xfa\xe0\xb4\xbb\xed\xfa\x88" "\x60\xb9\xfe\xf9\xcd\xb3\x6a\xb5\x5d\x1f\x9b\xc6\xd9\xae\x4f\x6a\xea" "\xd3\x2c\x6f\xbb\xf6\x73\xb9\x9c\xfe\xcf\x93\xf7\x79\x17\xff\xdc\xd5" "\xcf\xfd\x5a\xf6\xf7\x73\x3f\x00\x00\x00\xa0\xc7\x5c\xba\xf3\x3e\x0d" "\x1f\xa0\x9d\xfd\xfc\x3f\x7b\xed\x20\xfb\xfb\x7f\x3f\xa8\x8d\xb3\xfb" "\xdb\x7f\xff\xff\xcc\x5e\xb7\x6d\xf1\x52\xfe\x16\xd9\xeb\xb6\xed\xcf" "\x63\x66\x3f\x4f\xcc\x9d\xc7\xc9\x9d\xce\x63\x66\xaf\x2b\xe6\xce\xe3" "\xec\x4e\xe7\x31\xb3\xd7\x4f\x73\xe7\xb1\xaa\xd3\x79\xcc\xec\x75\xc4" "\xdc\x79\x9c\xd0\xe9\x3c\x66\xf6\x7a\x63\xee\x3c\x8e\xec\x74\x1e\x33" "\x7b\xdd\x30\x77\x1e\x63\x9d\xce\x63\x66\xaf\x8f\xe6\xce\x63\xbf\x4e" "\xe7\x31\xb3\xd7\xc9\x73\xe7\x71\x59\xa7\xf3\x98\xd9\xcf\x33\x72\xe7" "\x71\x61\xa7\xf3\x98\xd9\xeb\xfa\x7b\xe7\xcd\x63\xef\x4e\xe7\x31\xb3" "\xf7\x1d\xe5\xe6\xb1\x28\x7b\xfd\xbc\xdc\x9f\x63\x7b\xfd\x1c\x00\xf8" "\x43\x75\xfc\x3d\x3f\x6c\x78\xab\x47\x76\xfd\x9f\x9d\x3f\x65\xd7\xff" "\x37\xd6\xc6\xe1\x79\x55\xd9\xe7\xc5\x65\x5f\xa7\x96\x7d\x3d\x5e\xf6" "\xf5\x4b\xd9\xd7\x03\x65\x5f\x9f\x97\x7d\xdd\x5d\xfe\x75\x4a\xb9\xd7" "\xc9\x65\xbf\x6e\x55\xf6\xeb\x0d\x65\x5f\xc7\x95\xfd\xfa\xa2\xeb\x44" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xe7\xa7\x2f\xec\x77" "\xc9\x89\xf5\xe3\xab\xef\xdf\x73\x7c\xd3\xd2\xe3\x1e\xab\xa6\x49\x92" "\xe6\x2c\x33\xd1\x42\xf6\xb5\x4a\xff\xd8\xd8\x68\x17\xf3\xb8\xe2\xd8" "\x73\x8e\xb8\xec\xda\x4d\x0f\x67\xe3\xc9\x75\x8f\x54\xbb\x68\x04\x00" "\x00\x00\x34\xf9\xc7\xfd\xaf\x5a\x59\x3f\xce\xae\xc3\xb3\x4b\xef\x34" "\x19\x48\x46\xaa\x8f\x56\x87\x93\x9d\x5b\x2e\x9f\xbd\x46\xb0\xb0\x36" "\x1a\x0b\xee\xcf\x7b\x0d\x21\x93\xf5\x0d\xeb\x62\xf5\xed\x2b\xa9\x6f" "\xa5\xa4\xbe\xe1\x4b\x1e\xb1\xfa\xce\x2a\xa9\x6f\x7f\x49\x7d\x67\x97" "\xd4\x77\xa0\xa4\xbe\x83\x25\xf5\x1d\x2a\xa9\xef\x70\x49\x7d\xb7\x2b" "\xa9\xef\x48\x49\x7d\xb7\x2f\xa9\xef\x9c\x92\xfa\xce\x2d\xa9\xef\xbc" "\x92\xfa\xee\x50\x52\xdf\x17\x94\xd4\x77\x7e\x49\x7d\x77\x2c\xa9\xef" "\x0b\x4b\xea\xfb\xa2\x92\xfa\x2e\x28\xa9\xef\x4e\x25\xf5\x7d\x71\x49" "\x7d\xc3\xb3\xa9\x58\x7d\x77\x29\xa9\xef\x4b\x4a\xea\xbb\x6b\x49\x7d" "\x5f\x5a\x52\xdf\xf0\x67\x5b\xb1\xfa\xee\x56\x52\xdf\xdd\x4b\xea\xbb" "\xb0\xa4\xbe\x2f\x2b\xa9\xef\x1e\x25\xf5\xdd\xb3\xa4\xbe\x7b\x95\xd4" "\x77\xef\x92\xfa\xfe\x51\x49\x7d\xff\xb8\xa4\xbe\x2f\x2f\xa9\xef\x2b" "\x4a\xea\xfb\xca\x92\xfa\xbe\xaa\xa4\xbe\xfb\x94\xd4\x77\x51\x49\x7d" "\xf7\x2d\xa9\xef\xab\x4b\xea\xfb\x9a\x92\xfa\xee\x57\x52\xdf\xfd\x4b" "\xea\xbb\xb8\xa4\xbe\xaf\x2d\xa9\xef\x92\x92\xfa\x2e\x2d\xa9\xef\xeb" "\x4a\xea\x7b\x40\x49\x7d\x5f\x5f\x52\xdf\x37\x94\xd4\xf7\x8d\x25\xf5" "\x3d\xb0\xa4\xbe\x63\x05\x7d\x07\xba\xec\xfb\xa6\xe0\xfe\xbe\x86\xbe" "\x7d\x5d\xcf\xf7\xa0\x92\xfa\xbe\xb9\xa4\xbe\x07\x97\xd4\xf7\x90\x92" "\xfa\x1e\x5a\x52\xdf\x65\x25\xf5\x3d\xac\xa4\xbe\xcb\x83\xfb\x1b\xf7" "\x8b\x4a\xd7\x7d\x8f\x9a\x76\xbe\xdd\xf7\x3d\xa6\xc3\xbe\x9b\xda\xec" "\xfb\xb6\x0e\xfb\x16\x4d\x38\xeb\xfb\xf6\xe0\xfe\x4a\xd1\x7c\xdb\xec" "\x7b\x62\x49\x7d\x4f\x2e\xa9\xef\x8a\x92\xfa\x9e\xda\x61\xdf\x81\xf0" "\x07\x6b\x39\x7d\xc7\x83\xfb\xab\x0d\x7d\xab\x4d\xdf\x2f\xda\xed\xfb" "\x40\xf0\xb8\x62\x7d\x7f\xfb\x7e\x49\x7d\x7f\x50\x52\xdf\x1f\x96\xd4" "\xf7\x47\x25\xf5\xfd\x71\x49\x7d\xff\xb3\xa4\xbe\x3f\x29\xa9\xef\x4f" "\x4b\xea\xfb\x60\x49\x7d\x7f\x56\x52\xdf\x87\x4a\xea\xfb\x70\x49\x7d" "\x7f\x5e\x52\xdf\x5f\x94\xd4\x77\x73\x49\x7d\x1f\x29\xa9\xef\xa3\x25" "\xf5\xfd\x65\x50\xd8\x17\xa9\xef\x63\x25\xf5\x7d\xbc\xa4\xbe\xbf\x2a" "\xa9\xef\x13\x25\xf5\x7d\xb2\xa4\xbe\xbf\x2e\xa9\xef\x6f\x4a\xea\xfb" "\x54\x49\x7d\x7f\x5b\x52\xdf\xa7\x4b\xea\xfb\x4c\x49\x7d\x7f\x57\x52" "\xdf\x89\xc8\x7d\x01\x00\x66\xea\xa6\x8f\x3f\xd2\xf0\x92\x6d\xf6\xfe" "\xff\xec\x7d\xdd\x69\x32\x9a\x8c\x54\x5f\xbb\xf5\x7c\xe6\xc8\x60\xf9" "\xac\x2e\xef\x75\xc2\xcb\xda\x7c\x3d\xef\xe8\x92\xfa\xfe\x49\x49\x7d" "\xdf\x51\x52\xdf\xa2\xd7\x4b\x47\x83\xbe\x45\xaf\x97\x02\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3c\x5f\x3c\xf0\xef\xd5\x9f\xd7" "\x8f\xaf\xbe\x7f\xcf\xf1\x4d\x4b\x8f\x7b\x6c\x28\x4d\x92\x34\x67\x99" "\x89\x16\xb2\xaf\x55\xfa\xc7\xc6\x46\xbb\x98\xc7\x17\xbf\x77\xd1\x0d" "\x77\xfe\xf0\xfa\xcd\xd9\x78\x72\xdd\x23\xd5\x2e\x1a\x01\x00\x00\x00" "\x4d\xfe\xdb\xc8\x05\x1f\xab\x1f\x67\xd7\xe1\xd9\xa5\x77\x9a\x0c\x24" "\x23\xd5\x4a\x52\x49\x76\xda\x32\x1e\x7f\xb6\x74\x2c\x49\x9e\xbd\xee" "\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xdf\x67\x1f\xbb\xf4\x98" "\x81\xfa\x71\xf6\xf9\xff\xc3\xcf\xf1\xe7\xff\xdf\x7e\xd4\xad\xf7\x2e" "\x5b\xb8\xc7\xfb\xb2\xb1\xcf\xff\x07\x00\x00\x80\x78\x9e\xf8\xc6\xbf" "\x5c\x51\x3f\xce\xae\xc3\xfb\x6b\xe3\xa9\xcf\xff\x7f\x6d\x32\x2b\xdd" "\xa9\x61\xb9\xec\xb5\x81\xe5\x41\xbf\xbc\xba\x23\xdb\xac\x3b\xa6\xa0" "\xae\xaf\x76\xfb\xb6\x36\xeb\xde\xde\xe6\x7a\x4f\x6c\xb3\xdf\xc9\x6d" "\xf6\x7b\x47\x9b\xfd\x4e\x6d\xb3\x6e\xbc\xa0\xee\xfc\xda\x8a\x1f\xc8" "\x7b\xd1\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x19\x79\xf9\xe2" "\x17\xdd\x58\x3f\xce\x3e\xff\xbf\x5a\x79\x6e\x3f\xff\xff\x8a\x63\x77" "\x5e\x3b\x76\x7b\xe5\xd1\x6c\xec\xf3\xff\x01\x00\x00\x20\x9e\xcd\x7f" "\x73\xda\x4b\xeb\xc7\xd9\x75\x78\xe3\xe7\xff\x7f\x32\xe9\x4f\x77\x4f" "\x1e\xad\x26\x49\xa5\xa0\xdf\x40\x76\x9b\xee\x9e\x9c\x94\x26\x49\x7f" "\xdd\xd7\x5a\x2d\xfb\xc1\x9c\x17\x19\x26\xd7\x77\x6a\x5f\xe3\x32\xfd" "\x2d\xea\xc6\xea\xea\x3f\x18\xac\xa3\xbf\x45\xef\xfa\xfa\x47\xc2\xfa" "\xbe\xe9\xeb\x3f\x5f\x09\xea\x5b\x3c\xa0\xfa\xfa\x13\xfa\x1a\x5f\x43" "\xe9\x6f\xf1\x7a\x46\x7d\xfd\xee\xe1\x7c\x06\xa6\xaf\xaf\xce\x4a\x92" "\xfa\x29\xf7\x0f\x16\xf7\xaf\xcf\xb0\x7f\x68\xfa\xfa\x81\x6a\xd0\x7f" "\x78\xfa\xfa\x0f\x86\xfd\x47\xa6\xaf\xbf\x34\xec\x3f\x67\xfa\xfa\x1f" "\x85\xfd\xe7\x4e\x5f\x7f\x44\xb0\xfd\xf5\xcf\xcf\xaf\x9f\xdc\x5e\xf7" "\xeb\x6b\x9c\x4f\xa5\xc5\x2b\x60\x2b\xb3\xfa\x05\x53\xb7\x4b\xea\x96" "\xbf\xa2\x12\x2e\xdf\xbc\x41\x6d\x7d\x4a\x83\x2f\x4d\x2e\x7f\x6c\xd3" "\xfe\xd2\xbc\x81\x65\x91\x8e\x55\x9a\x97\x5f\x9b\x26\x49\xb5\x61\xf9" "\xe6\x0d\x2e\x7b\x44\xa3\xc1\xed\xe4\xf2\x5f\x48\x1a\x97\x1f\xa8\x34" "\x07\x9c\x06\x8f\xa3\x7e\x7f\x3f\x31\x58\xff\x40\x8b\x27\x28\x5b\x7e" "\x41\x70\x3b\xf9\x7c\x1d\x1c\x3c\xfe\xbe\x4a\xda\xf4\x04\x64\x8f\x3b" "\x7b\x7e\xeb\xd7\xd7\x57\x6d\xae\x1f\xad\xeb\x7f\x6c\x50\x3f\xab\xfe" "\x85\xcb\xa0\x1e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xd6\x4e\x1b\xbf\x62\x6e" "\xfd\xf8\xea\xfb\xf7\x1c\xdf\xb4\xf4\xb8\xc7\xe6\xa4\x49\x92\xe6\x2c" "\x33\xd1\x42\xf6\xb5\x4a\xff\xd8\xd8\x68\x17\xf3\x18\xf8\xcc\x77\xdf" "\x72\xd0\x9d\x87\x7c\x3c\x1b\x4f\xae\x7b\xa4\xda\x45\x23\x00\x00\x00" "\xa0\xc9\x6b\xff\x65\xf9\x23\xf5\xe3\xec\x3a\xbc\xaf\x36\x4e\x93\x81" "\x64\xa4\x5a\x4d\xaa\xc9\x4b\x6b\xe3\x46\x69\xed\xf5\x80\xe7\x6a\xbe" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xdb\xca\x0e\x1f\x9c\xb8\xa1\x7e\x7c\xf5\xfd" "\x7b\x8e\x6f\x5a\x7a\xdc\x63\x83\x69\x92\xa4\x39\xcb\x4c\xb4\x90\x7d" "\xad\xd2\x3f\x36\x36\xda\xc5\x3c\x26\x6e\x3b\x68\x78\xce\x53\xfd\x97" "\x64\xe3\xc9\x75\x8f\x54\xbb\x68\x04\x00\x00\x00\x34\x39\xea\xe0\x8b" "\x9e\xa8\x1f\x67\xd7\xe1\x7d\xb5\x71\x9a\x0c\x24\x23\xd5\xa1\x64\x28" "\x79\xe1\xd4\xd7\xeb\xae\xf5\x27\xf5\x05\xfd\xd2\x24\xff\x75\x03\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x80\xe7\xb3\x9d\x5f\xf0\xd0\x99\xf5\xe3\xab\xef\xdf" "\x73\x7c\xd3\xd2\xe3\x1e\x1b\x48\x93\x24\xcd\x59\x66\xa2\x85\xec\x6b" "\x95\xfe\xb1\xb1\xd1\x2e\xe6\xf1\x81\x35\x77\xdc\x74\xe1\xf1\xcb\xbf" "\x9d\x8d\x27\xd7\x3d\x52\xed\xa2\x11\x00\x00\x00\xd0\xe4\x17\xbf\xf9" "\xab\xf3\xea\xc7\xd9\x75\x78\x5f\x6d\x9c\x26\x03\xc9\x48\x75\x20\x19" "\x48\x76\xac\x8d\x9b\x6d\xb9\xfe\x9f\xfb\x5c\xcc\x16\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xb6\x8d\xff\x72\xc9\xdd\x07\xd4\x8f\xb3\xcf" "\xff\x1f\x79\x8e\x3f\xff\xff\xee\x1b\x1f\x3c\xe9\xee\x3b\xee\x7a\x3a" "\x1b\xfb\xfc\x7f\x00\x00\x00\x88\xe7\xca\x59\x87\xfc\xaf\xfa\x71\x76" "\x1d\xde\x5f\x1b\x4f\x7d\xfe\xff\xea\x64\x76\xb2\x4b\xed\x9e\xe5\x0d" "\xcb\x57\xd3\xca\x96\xdb\xb1\x9c\xd7\x05\x9e\x5d\xee\xc8\x86\xe5\x86" "\xda\x5e\xee\xa8\x86\xe5\x86\xdb\x5e\xee\xe8\x86\xe5\xe6\xb7\xbd\xdc" "\x31\x0d\xcb\xcd\x69\x7b\xb9\xb7\x35\x2c\x37\xd8\xf6\x72\x6f\x6f\x58" "\x6e\xa0\xed\xe5\xfe\xa4\x61\xb9\x91\xb6\x97\x3b\xb1\x61\xb9\xb4\xed" "\xe5\x4e\x6e\x58\xae\xaf\xed\xe5\xde\xd1\xb0\xdc\xdc\xb6\x97\x5b\x91" "\x34\x4e\xb4\xdd\xe5\x4e\x6d\x58\xac\xd2\xf6\x72\xe3\x8d\xeb\x4b\xa6" "\x5e\x7c\x1a\xa8\x2d\x37\x90\xf5\x9b\x3b\x75\xbb\x75\xb9\xd1\xe6\xe5" "\x46\x93\x24\x59\x50\x5b\x6e\x41\xed\xde\xfe\xb9\x09\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x3c\xef\x7d\x72\xf3\xdf\x6e\xae\x1f\x5f\x7d\xff\x9e\xe3" "\x9b\x96\x1e\xf7\x58\x9a\x26\x49\x9a\xb3\xcc\x44\x0b\xd9\xd7\x2a\xfd" "\x63\x63\xa3\x5d\xcc\xe3\x2b\x67\x3e\x34\x32\xfb\xc0\xbb\xae\xcb\xc6" "\x93\xeb\x1e\xa9\x76\xd1\x08\x00\x00\x00\x68\xd2\xff\xd4\xca\x3d\xea" "\xc7\xd9\x75\x78\x76\xe9\x9d\x26\x03\xc9\x48\xf5\x7d\xc9\x9c\xe4\x25" "\x5b\xae\xfb\x93\xb9\x8d\xcb\x57\x6a\xb7\xaf\xd8\x78\xd5\xf1\x4b\xbe" "\xff\xf8\x92\x24\x59\xf4\xc2\x7b\x77\xcd\xbf\x70\xdf\x3c\x7e\xf8\x69" "\x07\x24\xdf\xf8\xec\xe5\xeb\xb2\x7f\xa7\xee\x49\x92\x60\x99\xbe\xa9" "\x9b\xb9\xb5\xf5\xa6\x73\x5b\x7e\x39\xf9\xf0\xc6\x0b\x7e\x79\xeb\x6b" "\x6e\x79\x2a\x49\x16\xed\x58\xd9\xa5\x68\xbd\xcd\xff\x06\xd2\xb1\x89" "\x97\x8d\xde\x73\xcd\xaf\x3f\xf5\x78\xa5\x71\xfd\x7d\x39\x8f\xfb\xe9" "\xdd\xf7\xba\xe7\xc8\x5f\xbc\xf7\xc6\xc9\xf5\x4f\xf7\xb8\xdf\xf2\xa1" "\x9f\xbd\xfb\x80\x16\xff\x36\xaf\xff\xdc\xb9\x6f\xba\xe5\x94\x87\xff" "\xf5\xf0\xc6\xf5\x57\x82\xf5\x67\x6b\xda\xff\xfe\x45\x9b\x7f\xf7\xb5" "\xe3\xef\x9e\x5a\xff\x40\x32\x50\xbb\xff\xc5\xd5\xae\xd6\x3f\x38\x36" "\x31\xf8\x17\x67\x1e\xfa\xcc\x11\x9b\xf6\x6d\x5c\x7f\x35\xe7\xf1\x2f" "\x7d\xcf\xab\x3e\xf1\x83\xe3\x4e\xd8\x63\x72\xfd\x8f\xbd\x74\x68\xeb" "\xfa\xf7\xea\xee\xf1\x0f\x8e\x4d\xec\xf8\xba\x13\xf7\x38\x6f\xa2\xef" "\x1d\x8d\xeb\x9f\x95\xb3\xfe\x1b\xbe\xfe\xf8\xe2\x53\xbe\xfb\xd3\xef" "\x84\x8f\x7f\x28\x68\x5c\xbf\xc5\x4d\x9f\xff\xf2\x5f\x3d\xf9\xe1\xaf" "\x2e\x3e\xff\xbd\x8d\xeb\xef\xcf\xc9\x7f\x62\x61\xdf\xe8\xd1\xff\x76" "\xf3\x2e\xd9\xfa\x17\xd4\xee\xdf\x7b\x61\xfe\xfa\xeb\xff\x7d\x76\x4b" "\xce\xd6\x3f\x7a\xcd\x9a\xfd\xce\xd8\x79\xf7\x93\x1a\xd7\x3f\x3b\xe7" "\xf1\xaf\xb8\xef\x77\x5f\xfa\xf4\xc9\x8f\xdc\x11\x3e\xfe\x55\xd3\x3c" "\xfe\xc6\xf5\x87\x8f\xff\xfa\x6f\x9d\x75\xce\xa7\x1e\x1f\x7c\x73\xf8" "\x25\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xff\xb3\x77\x2f\xa1\x71\x55\x71" "\x1c\x80\xcf\xcd\x9d\x99\x4c\xa3\x53\x62\x51\xa8\xef\x28\x9a\x85\xc5" "\x3c\x6a\x8d\x8d\x15\x19\x11\x03\xea\x36\x88\x22\x54\xa3\x9d\x94\x98" "\x49\x62\x33\x09\x36\x53\xd1\xf8\xc0\x22\x2a\x12\x12\x50\x57\xba\x30" "\x1b\x8b\x2b\x71\xe1\xca\x85\x42\x15\xa4\x2e\x14\x84\x42\x16\x2e\x05" "\x77\xa9\x28\x88\x46\xa6\x73\x6f\x72\x35\x89\x85\x51\x23\x85\xef\x5b" "\xdc\x73\xfe\x9c\xdf\x79\x84\xc0\xc0\xb9\x9b\x0b\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0d\xb3\x0f\xff\xf0\x58\xb6\x5e" "\x5c\xe9\xae\xcc\x0f\x0e\xaf\xb6\x45\x21\x44\xdb\xcc\x59\xdb\x42\x3a" "\x16\x17\xca\xe5\xae\x16\xce\x71\xec\x9a\xc1\xa1\xd9\x23\x7d\x47\xd2" "\xba\xb1\x77\x29\xd7\xc2\x42\x00\x00\x00\xc0\x26\xaf\x5e\xba\xfc\x45" "\xb6\x4e\xef\xe1\x71\x52\x47\xa1\x18\x4a\xb9\x5b\x42\x21\x74\x9c\xbf" "\xf7\xdf\xd4\x75\x66\xe9\x97\xe5\x73\x71\xe8\x4c\xc6\x93\x36\x57\x9d" "\xaa\xcd\xec\x1b\x9d\x9a\x9d\x6c\x5e\xe1\xd3\xfc\xbb\xdf\x4e\x1d\x5b" "\x3e\xb7\xeb\xde\x34\xdf\x9e\xb4\xc5\xd1\xb1\x6a\xa5\xe7\xc9\xa9\x6a" "\x72\xe3\xcf\x27\xf9\x67\x3a\xef\xf9\xf8\xf1\x1f\xbf\xbb\x3f\xcd\xb7" "\xa5\xeb\x37\xf2\x7d\x1b\xb9\x4f\xf7\xfd\x7e\xd7\x3b\xaf\x8d\x3f\x94" "\xe6\x0a\xd9\x75\xf7\x6f\xe4\xba\x96\xaa\x07\xc6\xaf\xbe\xf1\xd1\x2d" "\x73\xb7\x6d\xe4\x1e\xf8\xe9\xe7\x37\x4f\x0f\xd4\x9f\x4b\x73\xf9\x6c" "\xae\x7f\x23\xb7\xeb\xe5\x89\xa1\xdf\x1e\x9c\xef\x4f\xcf\x15\x67\x73" "\x99\xf3\x5d\x71\xe7\x23\x37\x1f\x5f\x6b\x3b\xbc\x7e\xfe\xa4\xed\x48" "\xd6\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb8\xd8\x0c\xd5\xee\x7b\x3f\x5b" "\x2f\xae\x74\x57\xe6\x07\x87\x57\x43\x1c\x42\xb4\xcd\x9c\xb5\x2d\xa4" "\x63\x71\xa1\x5c\xee\x6a\xe1\x1c\x37\xbc\xd5\xf1\xc4\xaf\xa7\x26\xdf" "\x4e\xeb\xc6\xde\xa5\x5c\x0b\x0b\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\x40\x0b\x3e\xbc\xfb\xcb\xaf\xb3\xf5\xfa\xf7\xff" "\xa3\x9d\xfd\xfe\xff\xc9\x95\x85\x0f\xce\x5e\x59\xef\x4d\x6b\xdf\xff" "\x07\x00\x00\x80\x7f\xcf\x57\x97\x5f\x75\x7d\xb6\x4e\xef\xe1\xe9\xd5" "\x3b\x0a\xc5\x50\xca\xf5\x87\xf6\xa8\xf0\xa7\x79\xc5\xe4\x3d\x40\x31" "\xa9\xe3\xce\x66\x7b\xdd\xee\x90\xef\x39\xf9\xd9\x99\x68\xa9\xf9\xf6" "\xa0\x23\xba\xec\x6f\xe7\xe5\x92\x79\xbd\x33\x13\x4f\xf7\xd6\xe6\xea" "\xb7\x8e\x4d\x8c\x1c\xad\x1c\xad\x4c\x1e\xe8\x1b\xb8\xa3\x6f\x60\x60" "\xa0\xff\x60\xef\xe8\x58\xb5\xd2\xd7\x7c\x86\xf6\x0b\xac\x97\x4f\xd6" "\xab\xcd\xd5\xc7\x47\xaa\xd5\xca\x74\xad\x59\xff\xf5\xfc\x7b\x93\x79" "\x7b\x93\xba\x90\xcc\x3b\xdc\x13\xf2\x8d\xf6\x85\xe4\xfc\x7b\x2e\xb0" "\x5f\xfb\xa6\xfd\xfe\xbb\xce\xb6\xff\x44\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\x47" "\x0c\x7d\x5e\x3e\x9b\xad\x17\x57\xba\x2b\xf3\x83\xc3\xab\x71\x14\x42" "\xb4\xcd\x9c\xb5\x2d\xa4\x63\x71\xa1\x5c\xee\x6a\xe1\x1c\xaf\x9c\x58" "\x98\xf8\xe4\xf4\x37\x4b\x69\xdd\xd8\xbb\x94\x6b\x61\x21\x00\x00\x00" "\x60\x93\x8f\x16\x5e\x7c\x3d\x5b\xa7\xf7\xf0\x38\xa9\xa3\x50\x0c\xa5" "\x5c\x47\xc8\x87\x4b\xce\xdf\xfb\xdf\x7b\xea\xe0\xa1\xef\x4f\xed\xb9" "\x36\xdf\x99\x04\x0a\x85\x70\x7c\x64\x66\x66\x7a\x7f\xf3\x99\xe6\x6e" "\x3f\xf4\xd2\x89\x67\xdf\xd8\xfd\xfc\xa6\x5c\x7f\xf3\xb9\xb3\x7f\x25" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xc0\x3f\x57\x9b\xab\x8f\x8f\x54\xab\x95\x69\x1d" "\x1d\x1d\x9d\xf5\xce\xff\xfd\xcb\x04\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0" "\x07\x3b\x70\x20\x00\x00\x00\x00\x00\xe4\xff\xda\x08\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\xd8\x81\x03\x01\x00" "\x00\x00\x00\x20\xff\xd7\x46\xa8\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xc2\x5e\xfd\x85\x48\x55\xbe\x71\x00\x7f\xce" "\xcc\xfc\xdc\xd9\x1d\xc7\xdd\x15\x2f\xfc\x55\x84\x21\xa1\x37\x91\x17" "\x15\xdb\x45\xb4\xf9\x6f\xcd\x3f\x25\x81\x10\x54\x20\xb5\x5a\x44\x4a" "\x12\x92\x94\xd2\xb6\xb1\xb5\x60\x81\x46\x91\x74\x23\x41\x24\xba\x50" "\x17\x11\x68\x17\x91\x06\x1b\xb2\x52\xa0\x74\x91\x59\x09\x11\x11\x19" "\xe2\x4d\x85\x25\xc6\xb4\xe7\xc8\x3a\xbb\x87\x89\xb3\x1b\x41\x7c\x3e" "\xb0\xfb\xf2\xbe\xe7\x7d\xbf\xf3\xcc\x99\x67\xce\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xff\xb4\x59\x5d\xcb\xce\x4d\x9c\xd7\x2b\xf5\x4a\x63\x1c" "\x1d\x7a\xea\x97\xcd\x9f\xed\x39\xf8\xe5\xe3\x1b\x3f\x1f\xb8\xe3\xd7" "\xf3\x9b\x4f\x1f\x3e\xf3\xdb\xa6\xbe\x47\x0e\x9c\x1c\x7c\x75\xdb\x60" "\xfb\x6d\x23\x3d\x23\x8f\xee\x1f\x5a\xf6\xce\x07\xef\x3e\xfd\xd0\xdc" "\xc1\xf7\xbf\x6f\xf9\x42\x3b\xc6\x87\x79\xe9\xb4\x1a\x91\x9c\x4c\x22" "\x7e\xb8\xb4\xa8\xeb\xbd\x57\x36\xcc\x6f\xac\x25\x11\xd1\x96\x54\x06" "\xa2\xbb\xfb\xf9\xd2\xd1\xee\xa4\x29\x61\xc1\xc5\x88\xe8\x4f\xf7\xd5" "\x2b\xd7\xff\xf5\xff\xec\xd1\xf1\x8b\xbb\x3e\x7c\xe1\xb1\xc6\x38\xb0" "\xbb\xed\xaa\x43\x9d\x4d\x21\xcd\xef\x2b\x6a\xe5\xac\x9e\xf1\xb1\x7a" "\x75\xbd\xfc\xb7\x34\xfa\xaf\x16\x11\x7b\xd2\xf9\xaa\x9b\xc6\x36\x7d" "\x3c\xbf\xef\xc2\xee\x33\xab\x2e\xdd\x3a\xb4\xfd\xe7\x28\x65\x3b\x7b" "\xa3\xd1\x49\x3b\xd3\xbe\x8a\xde\x39\x1b\x67\xba\x8e\xcc\xd9\xaf\x4a" "\xd1\xe8\xc2\x9e\xb4\x0f\x93\x69\xd4\xb5\x3e\x22\x3a\x26\xcc\x7b\x5a" "\xd4\xb1\xf8\x6f\xd6\xbb\x30\x67\x7e\x4d\xd3\x7a\xbd\x45\x4e\x76\x7d" "\x51\x8b\xfd\xcd\x5f\xfe\x4c\xb9\x69\xac\xb6\x78\xbd\xe9\xca\xab\xa3" "\xe8\xbe\x56\xe6\xcc\x50\x4e\x9e\x56\x75\x66\xcf\xcb\xb7\xd3\x71\x5e" "\x81\xfc\xd9\xe9\x5f\xab\x5e\x98\x8e\xc6\xe7\xdf\x1e\x11\x77\xa5\xf3" "\xac\x0f\x3a\xd3\x7b\xd8\x5e\x59\xd0\x74\x62\x76\xac\x8d\x75\x71\x4f" "\x2c\x8f\x15\xb1\x32\xfa\x62\x55\xac\x8e\xbb\x63\x4d\xac\x8f\x8e\x49" "\x7b\xeb\x39\x7b\xbb\x93\xf5\x31\x7b\xd2\xee\x24\xba\x92\x72\x5a\x53" "\x39\x89\x52\x12\x95\x2b\xb7\x79\x79\x12\x31\x6b\xc2\xde\xea\x95\x33" "\xa5\xf8\xdf\x84\xf5\xc6\xd7\xbb\x6d\x8a\xf7\x99\xad\x67\x81\xc3\xe9" "\x73\xa0\x96\xae\xd5\x92\xb9\x93\xce\x5c\x9e\x42\x76\xed\xa5\xaf\xf7" "\x1e\x3a\xfd\xff\x67\x6e\xee\x9a\xea\xa6\x36\x32\x77\x26\x69\x7e\x52" "\x28\xff\x93\x2d\x3f\xd5\xdb\xee\x1c\xdb\x97\x9b\xdf\x9f\xe5\x97\x0a" "\xe5\x6f\xbb\xee\xf6\x95\xdb\xfb\x97\xf4\xe7\xe6\x3f\x99\xe5\x97\x0b" "\xe5\xbf\xf8\xec\xde\x2d\x47\x3e\x3d\xf5\x5a\x6e\xfe\x70\x96\x5f\x29" "\x94\xff\xf2\x7d\xdb\xd6\x0c\xbf\x3e\x70\x2e\xef\xb9\x9b\x2c\xce\xf2" "\xab\xc5\xea\x7f\x62\xf4\xe0\xce\x0d\xab\xbf\xc8\xad\xff\xfe\x2c\xbf" "\xbd\x50\xfe\xe5\x23\x4b\x6b\x9d\x17\x67\x0d\xe5\xe6\xaf\xcd\xf2\x3b" "\x0a\xe5\x7f\xf4\xed\xae\xb7\x8e\x7f\xb7\xff\x7c\x6e\xfe\x92\x2c\xbf" "\x56\x28\xff\xd8\xba\xc3\xa7\xfa\x16\xde\xf8\x5c\x6e\xfe\x2d\x59\x7e" "\xbd\x50\xfe\x89\x03\x3f\x3e\x70\x62\x74\xec\x8f\xdc\xfc\x07\xb3\xfc" "\xce\x42\xf9\xd5\x43\xdf\xdc\xbb\xf4\xf8\x8a\x37\x73\xf3\x7b\xb3\xfc" "\xae\x42\xf9\x37\xbc\xd1\xf1\xf0\xef\x23\x5b\xf7\xe5\xfd\xae\x26\x3b" "\xb2\xfc\x79\x05\xfb\xff\xda\xad\xbd\xc7\xca\x17\x72\xeb\xef\x99\xa9" "\x5f\x52\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xdf\xf6\x67\x00\x00" "\x00\xff\xff\xe4\xa6\x8e\x54", 26425)); NONFAILING(syz_mount_image( /*fs=*/0x20000000, /*dir=*/0x200000c0, /*flags=MS_SILENT*/ 0x8000, /*opts=*/0x20000180, /*chdir=*/1, /*size=*/0x6739, /*img=*/0x200067c0)); break; case 1: // syz_mount_image$fuse arguments: [ // fs: nil // dir: ptr[in, buffer] { // buffer: {2e 2f 62 75 73 00} (length 0x6) // } // flags: mount_flags = 0x3000009 (8 bytes) // opts: nil // chdir: int8 = 0x1 (1 bytes) // size: const = 0x0 (8 bytes) // img: nil // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000c0, "./bus\000", 6)); NONFAILING(syz_mount_image( /*fs=*/0, /*dir=*/0x200000c0, /*flags=MS_LAZYTIME|MS_STRICTATIME|MS_RDONLY|MS_NOEXEC*/ 0x3000009, /*opts=*/0, /*chdir=*/1, /*size=*/0, /*img=*/0)); break; case 2: // mount$overlay arguments: [ // src: const = 0x0 (8 bytes) // dst: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // type: ptr[in, buffer] { // buffer: {6f 76 65 72 6c 61 79 00} (length 0x8) // } // flags: mount_flags = 0x8 (8 bytes) // opts: ptr[in, fs_options[overlay_options]] { // fs_options[overlay_options] { // elems: array[fs_opt_elem[overlay_options]] { // fs_opt_elem[overlay_options] { // elem: union overlay_options { // upperdir: fs_opt["upperdir", stringnoz[filename]] { // name: buffer: {75 70 70 65 72 64 69 72} (length 0x8) // eq: const = 0x3d (1 bytes) // val: buffer: {2e 2f 66 69 6c 65 30} (length 0x7) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[overlay_options] { // elem: union overlay_options { // lowerdir: fs_opt["lowerdir", stringnoz[filename]] { // name: buffer: {6c 6f 77 65 72 64 69 72} (length 0x8) // eq: const = 0x3d (1 bytes) // val: buffer: {2e} (length 0x1) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[overlay_options] { // elem: union overlay_options { // workdir: fs_opt["workdir", stringnoz[filename]] { // name: buffer: {77 6f 72 6b 64 69 72} (length 0x7) // eq: const = 0x3d (1 bytes) // val: buffer: {2e 2f 62 75 73} (length 0x5) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[overlay_options] { // elem: union overlay_options { // metacopy_on: buffer: {6d 65 74 61 63 6f 70 79 3d 6f 6e} // (length 0xb) // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // ] NONFAILING(memcpy((void*)0x20000100, "./file0\000", 8)); NONFAILING(memcpy((void*)0x20000b80, "overlay\000", 8)); NONFAILING(memcpy((void*)0x20000180, "upperdir", 8)); NONFAILING(*(uint8_t*)0x20000188 = 0x3d); NONFAILING(memcpy((void*)0x20000189, "./file0", 7)); NONFAILING(*(uint8_t*)0x20000190 = 0x2c); NONFAILING(memcpy((void*)0x20000191, "lowerdir", 8)); NONFAILING(*(uint8_t*)0x20000199 = 0x3d); NONFAILING(memset((void*)0x2000019a, 46, 1)); NONFAILING(*(uint8_t*)0x2000019b = 0x2c); NONFAILING(memcpy((void*)0x2000019c, "workdir", 7)); NONFAILING(*(uint8_t*)0x200001a3 = 0x3d); NONFAILING(memcpy((void*)0x200001a4, "./bus", 5)); NONFAILING(*(uint8_t*)0x200001a9 = 0x2c); NONFAILING(memcpy((void*)0x200001aa, "metacopy=on", 11)); NONFAILING(*(uint8_t*)0x200001b5 = 0x2c); NONFAILING(*(uint8_t*)0x200001b6 = 0); syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x20000100ul, /*type=*/0x20000b80ul, /*flags=MS_NOEXEC*/ 8ul, /*opts=*/0x20000180ul); break; case 3: // linkat arguments: [ // oldfd: fd_dir (resource) // old: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 2f 66 69 6c 65 31 00} (length 0xe) // } // newfd: fd_dir (resource) // new: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 2f 66 69 6c 65 32 00} (length 0xe) // } // flags: linkat_flags = 0x1000 (8 bytes) // ] NONFAILING(memcpy((void*)0x200001c0, "./file0/file1\000", 14)); NONFAILING(memcpy((void*)0x200003c0, "./file0/file2\000", 14)); syscall(__NR_linkat, /*oldfd=*/0xffffff9c, /*old=*/0x200001c0ul, /*newfd=*/0xffffff9c, /*new=*/0x200003c0ul, /*flags=AT_EMPTY_PATH*/ 0x1000ul); break; case 4: // unlinkat arguments: [ // fd: fd_dir (resource) // path: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 2f 66 69 6c 65 32 00} (length 0xe) // } // flags: unlinkat_flags = 0x0 (8 bytes) // ] NONFAILING(memcpy((void*)0x20000140, "./file0/file2\000", 14)); syscall(__NR_unlinkat, /*fd=*/0xffffff9c, /*path=*/0x20000140ul, /*flags=*/0ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); setup_sysctl(); const char* reason; (void)reason; if ((reason = setup_binfmt_misc())) printf("the reproducer may not work as expected: binfmt_misc setup failed: " "%s\n", reason); if ((reason = setup_usb())) printf("the reproducer may not work as expected: USB injection setup " "failed: %s\n", reason); if ((reason = setup_swap())) printf("the reproducer may not work as expected: swap setup failed: %s\n", reason); install_segv_handler(); use_temporary_dir(); do_sandbox_none(); return 0; }