// https://syzkaller.appspot.com/bug?id=fcf0b68b63113416159649a5145d26759b9865ba
// autogenerated by syzkaller (https://github.com/google/syzkaller)

#define _GNU_SOURCE

#include <dirent.h>
#include <endian.h>
#include <errno.h>
#include <fcntl.h>
#include <setjmp.h>
#include <signal.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/mount.h>
#include <sys/prctl.h>
#include <sys/stat.h>
#include <sys/syscall.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <time.h>
#include <unistd.h>

#include <linux/loop.h>

#ifndef __NR_memfd_create
#define __NR_memfd_create 319
#endif

static unsigned long long procid;

static void sleep_ms(uint64_t ms)
{
  usleep(ms * 1000);
}

static uint64_t current_time_ms(void)
{
  struct timespec ts;
  if (clock_gettime(CLOCK_MONOTONIC, &ts))
    exit(1);
  return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000;
}

static void use_temporary_dir(void)
{
  char tmpdir_template[] = "./syzkaller.XXXXXX";
  char* tmpdir = mkdtemp(tmpdir_template);
  if (!tmpdir)
    exit(1);
  if (chmod(tmpdir, 0777))
    exit(1);
  if (chdir(tmpdir))
    exit(1);
}

static bool write_file(const char* file, const char* what, ...)
{
  char buf[1024];
  va_list args;
  va_start(args, what);
  vsnprintf(buf, sizeof(buf), what, args);
  va_end(args);
  buf[sizeof(buf) - 1] = 0;
  int len = strlen(buf);
  int fd = open(file, O_WRONLY | O_CLOEXEC);
  if (fd == -1)
    return false;
  if (write(fd, buf, len) != len) {
    int err = errno;
    close(fd);
    errno = err;
    return false;
  }
  close(fd);
  return true;
}

//% 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");
  }
  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;
}

#define FS_IOC_SETFLAGS _IOW('f', 2, long)
static void remove_dir(const char* dir)
{
  int iter = 0;
  DIR* dp = 0;
  const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW;

retry:
  while (umount2(dir, umount_flags) == 0) {
  }
  dp = opendir(dir);
  if (dp == NULL) {
    if (errno == EMFILE) {
      exit(1);
    }
    exit(1);
  }
  struct dirent* ep = 0;
  while ((ep = readdir(dp))) {
    if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0)
      continue;
    char filename[FILENAME_MAX];
    snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name);
    while (umount2(filename, umount_flags) == 0) {
    }
    struct stat st;
    if (lstat(filename, &st))
      exit(1);
    if (S_ISDIR(st.st_mode)) {
      remove_dir(filename);
      continue;
    }
    int i;
    for (i = 0;; i++) {
      if (unlink(filename) == 0)
        break;
      if (errno == EPERM) {
        int fd = open(filename, O_RDONLY);
        if (fd != -1) {
          long flags = 0;
          if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) {
          }
          close(fd);
          continue;
        }
      }
      if (errno == EROFS) {
        break;
      }
      if (errno != EBUSY || i > 100)
        exit(1);
      if (umount2(filename, umount_flags))
        exit(1);
    }
  }
  closedir(dp);
  for (int i = 0;; i++) {
    if (rmdir(dir) == 0)
      break;
    if (i < 100) {
      if (errno == EPERM) {
        int fd = open(dir, O_RDONLY);
        if (fd != -1) {
          long flags = 0;
          if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) {
          }
          close(fd);
          continue;
        }
      }
      if (errno == EROFS) {
        break;
      }
      if (errno == EBUSY) {
        if (umount2(dir, umount_flags))
          exit(1);
        continue;
      }
      if (errno == ENOTEMPTY) {
        if (iter < 100) {
          iter++;
          goto retry;
        }
      }
    }
    exit(1);
  }
}

static void kill_and_wait(int pid, int* status)
{
  kill(-pid, SIGKILL);
  kill(pid, SIGKILL);
  for (int i = 0; i < 100; i++) {
    if (waitpid(-1, status, WNOHANG | __WALL) == pid)
      return;
    usleep(1000);
  }
  DIR* dir = opendir("/sys/fs/fuse/connections");
  if (dir) {
    for (;;) {
      struct dirent* ent = readdir(dir);
      if (!ent)
        break;
      if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0)
        continue;
      char abort[300];
      snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort",
               ent->d_name);
      int fd = open(abort, O_WRONLY);
      if (fd == -1) {
        continue;
      }
      if (write(fd, abort, 1) < 0) {
      }
      close(fd);
    }
    closedir(dir);
  } else {
  }
  while (waitpid(-1, status, __WALL) != pid) {
  }
}

static void reset_loop()
{
  char buf[64];
  snprintf(buf, sizeof(buf), "/dev/loop%llu", procid);
  int loopfd = open(buf, O_RDWR);
  if (loopfd != -1) {
    ioctl(loopfd, LOOP_CLR_FD, 0);
    close(loopfd);
  }
}

static void setup_test()
{
  prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0);
  setpgrp();
  write_file("/proc/self/oom_score_adj", "1000");
  if (symlink("/dev/binderfs", "./binderfs")) {
  }
}

static void execute_one(void);

#define WAIT_FLAGS __WALL

static void loop(void)
{
  int iter = 0;
  for (;; iter++) {
    char cwdbuf[32];
    sprintf(cwdbuf, "./%d", iter);
    if (mkdir(cwdbuf, 0777))
      exit(1);
    reset_loop();
    int pid = fork();
    if (pid < 0)
      exit(1);
    if (pid == 0) {
      if (chdir(cwdbuf))
        exit(1);
      setup_test();
      execute_one();
      exit(0);
    }
    int status = 0;
    uint64_t start = current_time_ms();
    for (;;) {
      sleep_ms(10);
      if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid)
        break;
      if (current_time_ms() - start < 5000)
        continue;
      kill_and_wait(pid, &status);
      break;
    }
    remove_dir(cwdbuf);
  }
}

void execute_one(void)
{
  if (write(1, "executing program\n", sizeof("executing program\n") - 1)) {
  }
  memcpy((void*)0x20001500, "exfat\000", 6);
  memcpy((void*)0x20000040, "./file1\000", 8);
  memcpy(
      (void*)0x20002a40,
      "\x78\x9c\xec\xdd\x09\xd8\x8e\xd5\xf6\x30\xf0\xb5\xf6\xde\x37\x2f\x89\x27"
      "\xc9\xbc\xd7\x5e\x37\x4f\x32\x6c\x92\x24\x43\x92\x0c\x49\x92\x24\x49\xa6"
      "\x84\x24\x49\x92\x90\x4c\x99\x92\x90\x84\xcc\x49\xe6\x90\x4c\xf1\x26\xf3"
      "\x3c\x65\x4e\x92\x23\x49\x92\x90\x90\x64\x7f\x97\x3a\x1d\xe7\xfc\x3b\xff"
      "\xab\x73\xbe\x73\xfe\x9f\xef\x7f\xde\xf5\xbb\xae\xfb\x7a\xf6\xba\xf6\x5e"
      "\xfb\xde\xfb\x59\xbc\xcf\x7d\xdf\xd7\x3b\x7c\xd3\x61\x70\x95\x7a\x55\x2b"
      "\xd6\x61\x66\xf8\x97\xe0\xaf\x2f\xdd\x01\x20\x05\x00\xfa\x01\x40\x16\x00"
      "\x88\x00\xa0\x64\xd6\x92\x59\x2f\xf5\x67\xd0\xd8\xfd\x5f\x3b\x89\xf8\xf7"
      "\x7a\x70\xda\x95\x5e\x81\xb8\x92\xa4\xfe\x69\x9b\xd4\x3f\x6d\x93\xfa\xa7"
      "\x6d\x52\xff\xb4\x4d\xea\x9f\xb6\x49\xfd\xd3\x36\xa9\x7f\xda\x26\xf5\x17"
      "\x22\x2d\xdb\x3a\x3d\xd7\x35\x72\xa4\xdd\xe3\x5f\x7f\xfe\x9f\xf2\xeb\x8b"
      "\x3c\xff\xff\x5f\x48\x3e\xff\xd3\x36\xa9\xff\x7f\x9a\xd3\x19\xfe\x99\xd1"
      "\x52\xff\xff\x24\x17\x43\x08\xff\x5c\x86\xd4\x3f\x6d\x93\xfa\xa7\x6d\x52"
      "\xff\xb4\x4d\xea\x9f\xb6\x49\xfd\xd3\x36\xa9\xbf\x10\x69\xd9\x95\x7e\xfe"
      "\x2c\xc7\x95\x3d\xae\xf4\xbf\x3f\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08"
      "\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10"
      "\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21"
      "\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42"
      "\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84"
      "\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08"
      "\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10"
      "\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x69\xc3\xb9\x70\x99\x01\x80\xdf"
      "\xda\x57\x7a\x5d\x42\x08\x21\x84\x10\x42\x08\x21\x84\xf8\xf7\x09\xe9\xaf"
      "\xf4\x0a\x84\x10\x42\x08\x21\x84\x10\x42\x08\xf1\x3f\x0f\x41\x81\x06\x03"
      "\x11\xa4\x83\xf4\x90\x02\x19\x20\x23\x5c\x05\x99\xe0\x6a\xc8\x0c\x59\x20"
      "\x01\xd7\x40\x56\xb8\x16\xb2\xc1\x75\x90\x1d\x72\x40\x4e\xc8\x05\xb9\x21"
      "\x0f\xe4\x05\x0b\x04\x0e\x18\x62\xc8\x07\xf9\x21\x09\xd7\x43\x01\xb8\x01"
      "\x0a\x42\x21\x28\x0c\x45\xc0\x43\x51\x28\x06\x37\x42\x71\xb8\x09\x4a\xc0"
      "\xcd\x50\x12\x6e\x81\x52\x70\x2b\x94\x86\x32\x50\x16\xca\xc1\x6d\x50\x1e"
      "\x6e\x87\x0a\x70\x07\x54\x84\x3b\xa1\x12\x54\x86\x2a\x50\x15\xee\x82\x6a"
      "\x70\x37\x54\x87\x7b\xa0\x06\xdc\x0b\x35\xe1\x3e\xa8\x05\xf7\x43\x6d\x78"
      "\x00\xea\xc0\x83\x50\x17\x1e\x82\x7a\xf0\x30\xd4\x87\x47\xa0\x01\x34\x84"
      "\x46\xd0\x18\x9a\xfc\x5f\xe5\xbf\x00\x5d\xe0\x45\xe8\x0a\xdd\xa0\x3b\xf4"
      "\x80\x9e\xf0\x12\xf4\x82\xde\xd0\x07\xfa\x42\x3f\x78\x19\xfa\xc3\x2b\x30"
      "\x00\x5e\x85\x81\x30\x08\x06\xc3\x6b\x30\x04\x5e\x87\xa1\xf0\x06\x0c\x83"
      "\xe1\x30\x02\xde\x84\x91\x30\x0a\x46\xc3\x18\x18\x0b\xe3\x60\x3c\xbc\x05"
      "\x13\xe0\x6d\x98\x08\xef\xc0\x24\x98\x0c\x53\x60\x2a\x4c\x83\xe9\x30\x03"
      "\xde\x85\x99\x30\x0b\x66\xc3\x7b\x30\x07\xde\x87\xb9\x30\x0f\xe6\xc3\x02"
      "\x58\x08\x1f\xc0\x22\x58\x0c\xa9\xf0\x21\x2c\x81\x8f\x60\x29\x2c\x83\xe5"
      "\xb0\x02\x56\xc2\x2a\x58\x0d\x6b\x60\x2d\xac\x83\xf5\xb0\x01\x36\xc2\x26"
      "\xd8\x0c\x5b\x60\x2b\x7c\x0c\xdb\x60\x3b\xec\x80\x9d\xb0\x0b\x76\xc3\x1e"
      "\xf8\x04\xf6\xc2\xa7\xb0\x0f\x3e\x83\xfd\xf0\xf9\x3f\x99\x7f\xf6\xbf\xe4"
      "\x77\x44\x40\x40\x85\x0a\x0d\x1a\x4c\x87\xe9\x30\x05\x53\x30\x23\x66\xc4"
      "\x4c\x98\x09\x33\x63\x66\x4c\x60\x02\xb3\x62\x56\xcc\x86\xd9\x30\x3b\x66"
      "\xc7\x9c\x98\x13\x73\x63\x6e\xcc\x8b\x79\x91\x90\x90\x91\x31\x1f\xe6\xc3"
      "\x24\x26\xb1\x00\x16\xc0\x82\x58\x10\x0b\x63\x61\xf4\xe8\xb1\x18\x16\xc3"
      "\xe2\x78\x13\x96\xc0\x12\x58\x12\x4b\x62\x29\x2c\x85\xa5\xb1\x0c\x96\xc1"
      "\x72\x58\x0e\xcb\x63\x79\xac\x80\x15\xb0\x22\x56\xc4\x4a\x58\x09\xab\x60"
      "\x15\xbc\x0b\xef\xc2\xbb\xb1\x3a\x56\xc7\x1a\x58\x03\x6b\x62\x4d\xac\x85"
      "\xb5\xb0\x36\xd6\xc6\x3a\x58\x07\xeb\x62\x5d\xac\x87\xf5\xb0\x3e\xd6\xc7"
      "\x06\xd8\x00\x1b\x61\x23\x6c\x82\x4d\xb0\x29\x36\xc5\x66\xd8\x0c\x5b\x60"
      "\x0b\x6c\x89\x2d\xb1\x15\xb6\xc2\xd6\xd8\x1a\xdb\x60\x1b\x6c\x8b\x6d\xb1"
      "\x1d\xb6\xc3\xf6\xd8\x1e\x3b\x60\x07\xec\x88\x9d\xb0\x13\xbe\x80\x2f\xe0"
      "\x8b\xf8\x22\x76\xc3\x4a\xaa\x07\xf6\xc4\x9e\xd8\x0b\x7b\x61\x1f\xec\x8b"
      "\x7d\xf1\x65\xec\x8f\xaf\xe0\x2b\xf8\x2a\x0e\xc4\x41\x38\x18\x5f\xc3\xd7"
      "\xf0\x75\x1c\x8a\x67\x70\x18\x0e\xc7\x11\x38\x02\xcb\xab\x51\x38\x1a\xc7"
      "\x20\xab\x71\x38\x1e\xc7\xe3\x04\x9c\x80\x13\x71\x22\x4e\xc2\xc9\x38\x19"
      "\xa7\xe2\x34\x9c\x8e\x33\x70\x06\xce\xc4\x59\x38\x0b\xdf\xc3\x39\xf8\x3e"
      "\xbe\x8f\xf3\x70\x1e\x2e\xc0\x85\xb8\x10\x17\xe1\x62\x4c\xc5\x54\x5c\x82"
      "\x67\x71\x29\x2e\xc3\xe5\xb8\x02\x57\xe2\x2a\x5c\x89\x6b\x70\x2d\xae\xc1"
      "\xf5\xb8\x01\xd7\xe3\x26\xdc\x84\x5b\x70\x0b\x7e\x8c\x1f\xe3\x76\xdc\x8e"
      "\x3b\x71\x27\xee\xc6\xdd\xf8\x09\x7e\x82\x9f\xe2\xa7\x38\x10\xf7\xe3\x7e"
      "\x3c\x80\x07\xf0\x20\x1e\xc4\x43\x78\x08\x0f\xe3\x61\x3c\x82\x47\xf0\x28"
      "\x1e\xc5\x63\x78\x0c\x8f\xe3\x71\x3c\x81\x27\xf1\x14\x9e\xc4\xd3\x78\x1a"
      "\xcf\xe0\x59\x3c\x87\xe7\xf0\x3c\x9e\xc7\x0b\x78\x01\x2f\xe2\xc5\x4b\xff"
      "\xf9\xd5\x25\x46\x19\x95\x4e\xa5\x53\x29\x2a\x45\x65\x54\x19\x55\x26\x95"
      "\x49\x65\x56\x99\x55\x42\x25\x54\x56\x95\x55\x65\x53\xd9\x54\x76\x95\x5d"
      "\xe5\x54\x39\x55\x6e\x95\x5b\xe5\x55\x79\x15\x29\x52\xac\x62\x95\x4f\xe5"
      "\x53\x49\x95\x54\x05\x54\x01\x55\x50\x15\x54\x85\x55\x61\xe5\x95\x57\xc5"
      "\x54\x31\x55\x5c\x15\x57\x25\x54\x09\x55\x52\xdd\xa2\x4a\xa9\x5b\x55\x69"
      "\x55\x46\x35\xf7\xe5\x54\x39\x55\x5e\xb5\xf0\x15\xd4\x1d\xaa\xa2\xaa\xa8"
      "\x2a\xa9\xca\xaa\x8a\xaa\xaa\xaa\xaa\x6a\xaa\x9a\xaa\xae\xaa\xab\x1a\xaa"
      "\x86\xaa\xa9\x6a\xaa\x5a\xea\x7e\x55\x5b\xf5\xc0\x3e\xf8\xa0\xba\x54\x99"
      "\x7a\x6a\x10\xd6\x57\x83\xb1\x81\x6a\xa8\x1a\xa9\xc6\xea\x75\x7c\x54\x35"
      "\x55\x43\xb1\x99\x6a\xae\x5a\xa8\xc7\xd5\x70\x1c\x86\xad\x54\x53\xdf\x5a"
      "\x3d\xa5\xda\xa8\xd1\xd8\x56\x3d\xa3\xc6\xe0\xb3\xaa\xbd\x1a\x87\x1d\xd4"
      "\xf3\xaa\xa3\xea\xa4\x3a\xab\x17\x54\x17\xd5\xcc\x77\x55\xdd\xd4\x24\xec"
      "\xa1\x7a\xaa\xa9\xd8\x4b\xf5\x56\x7d\x54\x5f\x35\x13\x2b\xab\x4b\x15\xab"
      "\xa2\x5e\x55\x03\xd5\x20\x35\x58\xbd\xa6\x16\xe0\xeb\x6a\xa8\x7a\x43\x0d"
      "\x53\xc3\xd5\x08\xf5\xa6\x1a\xa9\x46\xa9\xd1\x6a\x8c\x1a\xab\xc6\xa9\xf1"
      "\xea\x2d\x35\x41\xbd\xad\x26\xaa\x77\xd4\x24\x35\x59\x4d\x51\x53\xd5\x34"
      "\x35\x5d\xcd\x50\xef\xaa\x99\x6a\x96\x9a\xad\xde\x53\x73\xd4\xfb\x6a\xae"
      "\x9a\xa7\xe6\xab\x05\x6a\xa1\xfa\x40\x2d\x52\x8b\x55\xaa\xfa\x50\x2d\x51"
      "\x1f\xa9\xa5\x6a\x99\x5a\xae\x56\xa8\x95\x6a\x95\x5a\xad\xd6\xa8\xb5\x6a"
      "\x9d\x5a\xaf\x36\xa8\x8d\x6a\x93\xda\xac\xb6\xa8\xad\xea\x63\xb5\x4d\x6d"
      "\x57\x3b\xd4\x4e\xb5\x4b\xed\x56\x7b\xd4\x27\x6a\xaf\xfa\x54\xed\x53\x9f"
      "\xa9\xfd\xea\x73\x75\x40\xfd\x49\x1d\x54\x5f\xa8\x43\xea\x4b\x75\x58\x7d"
      "\xa5\x8e\xa8\xaf\xd5\x51\xf5\x8d\x3a\xa6\xbe\x55\xc7\xd5\x77\xea\x84\x3a"
      "\xa9\x4e\xa9\xef\xd5\x69\xf5\x83\x3a\xa3\xce\xaa\x73\xea\x47\x75\x5e\xfd"
      "\xa4\x2e\xa8\x9f\xd5\x45\x15\x14\xf4\x00\x00\xad\xb5\xd1\x91\x4e\xa7\xd3"
      "\xeb\x14\x9d\x41\x67\xd4\x57\xe9\x4c\xfa\x6a\x9d\x59\x67\xd1\x09\x7d\x8d"
      "\xce\xaa\xaf\xd5\xd9\xf4\x75\x3a\xbb\xce\xa1\x73\xea\x5c\x3a\xb7\xce\xa3"
      "\xf3\x6a\xab\x49\x3b\xcd\x3a\xd6\xf9\x74\x7e\x9d\xd4\xd7\xeb\x02\xfa\x06"
      "\x5d\x50\x17\xd2\x85\x75\x11\xed\x75\x51\x5d\x4c\xdf\xa8\x8b\xeb\x9b\x74"
      "\x09\x7d\xb3\x2e\xa9\x6f\xd1\xa5\xf4\xad\xba\xb4\x2e\xa3\xcb\xea\x72\xfa"
      "\x36\x5d\x5e\xdf\xae\x2b\xe8\x3b\x74\x45\x7d\xa7\xae\xa4\x2b\xeb\x2a\xba"
      "\xaa\xbe\x4b\x57\xd3\x77\xeb\xea\xfa\x1e\x5d\x43\xdf\xab\x6b\xea\xfb\x74"
      "\x2d\x7d\xbf\xae\xad\x1f\xd0\x75\xf4\x83\xba\xae\x7e\x48\xd7\xd3\x0f\xeb"
      "\xfa\xfa\x11\xdd\x40\x37\xd4\x8d\x74\x63\xdd\x44\x3f\xaa\x9b\xea\xc7\x74"
      "\x33\xdd\x5c\xb7\xd0\x8f\xeb\x96\xfa\x09\xdd\x4a\x3f\xa9\x5b\xeb\xa7\x74"
      "\x1b\xfd\xb4\x6e\xab\x9f\xd1\xed\xf4\xb3\xba\xbd\x7e\x4e\x77\xd0\xcf\xeb"
      "\x8e\xba\x93\xee\xac\x7f\xd6\x17\x75\xd0\x5d\x75\x37\xdd\x5d\xf7\xd0\x3d"
      "\xf5\x4b\xba\x97\xee\xad\xfb\xe8\xbe\xba\x9f\x7e\x59\xf7\xd7\xaf\xe8\x01"
      "\xfa\x55\x3d\x50\x0f\xd2\x83\xf5\x6b\x7a\x88\x7e\x5d\x0f\xd5\x6f\xe8\x61"
      "\x7a\xb8\x1e\xa1\xdf\xd4\x23\xf5\x28\x3d\x5a\x8f\xd1\x63\xf5\x38\x3d\x5e"
      "\xbf\xa5\x27\xe8\xb7\xf5\x44\xfd\x8e\x9e\xa4\x27\xeb\x29\x7a\xaa\x9e\xa6"
      "\xa7\xeb\x3e\x7f\x9e\x69\xf6\x3f\x90\xff\xf6\xdf\xc9\x1f\xf0\xcb\xd9\xb7"
      "\xe8\xad\xfa\x63\xbd\x4d\x6f\xd7\x3b\xf4\x4e\xbd\x4b\xef\xd6\x7b\xf4\x1e"
      "\xbd\x57\xef\xd5\xfb\xf4\x3e\xbd\x5f\xef\xd7\x07\xf4\x01\x7d\x50\x1f\xd4"
      "\x87\xf4\x21\x7d\x58\x1f\xd6\x47\xf4\x11\x7d\x54\x1f\xd5\xc7\xf4\x31\x7d"
      "\x5c\x1f\xd7\x27\xf4\x49\xfd\xa3\xfe\x5e\x9f\xd6\x3f\xe8\x33\xfa\xac\x3e"
      "\xab\x7f\xd4\xe7\xf5\x79\x7d\xe1\xcf\xef\x01\x18\x34\xca\x68\x63\x4c\x64"
      "\xd2\x99\xf4\x26\xc5\x64\x30\x19\xcd\x55\x26\x93\xb9\xda\x64\x36\x59\x4c"
      "\xc2\x5c\x63\xb2\x9a\x6b\x4d\x36\x73\x9d\xc9\x6e\x72\x98\x9c\x26\x97\xc9"
      "\x6d\xf2\x98\xbc\xc6\x1a\x32\xce\xb0\x89\x4d\x3e\x93\xdf\x24\xcd\xf5\xa6"
      "\x80\xb9\xc1\x14\x34\x85\x4c\x61\x53\xc4\x78\x53\xd4\x14\x33\x37\xfe\xcb"
      "\xf9\x7f\xb4\xbe\x26\xa6\x89\x69\x6a\x9a\x9a\x66\xa6\x99\x69\x61\x5a\x98"
      "\x96\xa6\xa5\x69\x65\x5a\x99\xd6\xa6\xb5\x69\x63\xda\x98\xb6\xa6\xad\x69"
      "\x67\xda\x99\xf6\xa6\xbd\xe9\x60\x3a\x98\x8e\xa6\xa3\xe9\x6c\x3a\x9b\x2e"
      "\xa6\x8b\x09\x00\xd0\xdd\x74\x37\x3d\xcd\x4b\xa6\x97\xe9\x6d\xfa\x98\xbe"
      "\xa6\x9f\x79\xd9\xf4\x37\xfd\xcd\x00\x33\xc0\x0c\x34\x03\xcd\x60\x33\xd8"
      "\x0c\x31\x43\xcc\x50\x33\xd4\x0c\x33\xc3\xcc\x08\x33\xc2\x8c\x34\x23\xcd"
      "\x68\x33\xda\x8c\x35\x63\xcd\x78\x33\xde\x4c\x30\x13\xcc\x44\x33\xd1\x4c"
      "\x32\x93\xcc\x14\x33\xc5\x4c\x33\xd3\xcc\x0c\x33\xc3\xcc\x34\x33\xcd\x6c"
      "\x33\xdb\xcc\x31\x73\xcc\x5c\x33\xd7\xcc\x37\xf3\xcd\x42\xb3\xd0\x2c\x32"
      "\x8b\x4c\xaa\x49\x35\x4b\xcc\x12\xb3\xd4\x2c\x33\xcb\xcc\x0a\xb3\xc2\xac"
      "\x32\xab\xcc\x1a\xb3\xc6\xac\x33\xeb\xcc\x06\xb3\xc1\x6c\x32\x9b\xcc\x52"
      "\xf3\xdb\x37\x68\xee\x30\x3b\xcc\x2e\xb3\xcb\xec\x31\x7b\xcc\x5e\xb3\xd7"
      "\xec\x33\xfb\xcc\x7e\xb3\xdf\x1c\x30\x07\xcc\x41\x73\xd0\x1c\x32\x87\xcc"
      "\x61\x73\xd8\x1c\x31\x47\xcc\x51\x73\xd4\x1c\x33\xc7\xcc\x71\x73\xdc\x9c"
      "\x30\x27\xcc\x29\x73\xca\x9c\x36\xa7\xcd\x19\x73\xc6\x9c\x33\xe7\xcc\x79"
      "\x73\xde\x5c\x30\x17\xcc\x45\x73\xf1\xd2\x65\x5f\xa4\x22\x15\x99\xc8\x44"
      "\xe9\xa2\x74\x51\x4a\x94\x12\x65\x8c\x32\x46\x99\xa2\x4c\x51\xe6\x28\x73"
      "\x94\x88\x12\x51\xd6\x28\x6b\x94\x2d\xba\x2e\xca\x1e\xe5\x88\x72\x46\xb9"
      "\xa2\xdc\x51\x9e\x28\x6f\x64\x23\x8a\x5c\xc4\x51\x1c\xe5\x8b\xf2\x47\xc9"
      "\xe8\xfa\xa8\x40\x74\x43\x54\x30\x2a\x14\x15\x8e\x8a\x44\x3e\x2a\x1a\x15"
      "\x8b\x6e\x8c\x8a\x47\x37\x45\x25\xa2\x9b\xa3\x92\xd1\x2d\x51\xa9\xe8\xd6"
      "\xa8\x74\x54\x26\x2a\x1b\x95\x8b\x6e\x8b\xca\x47\xb7\x47\x15\xa2\x3b\xa2"
      "\x8a\xd1\x9d\x51\xa5\xa8\x72\x54\x25\xaa\x1a\xdd\x15\x55\x8b\xee\x8e\xaa"
      "\x47\xf7\x44\x35\xa2\x7b\xa3\x9a\xd1\x7d\x51\xad\xe8\xfe\xa8\x76\xf4\x40"
      "\x54\x27\x7a\x30\xaa\x1b\x3d\x14\xd5\x8b\x1e\x8e\xea\x47\x8f\x44\x0d\xa2"
      "\x86\x51\xa3\xa8\x71\xd4\xe4\xdf\x3a\x7f\x08\x67\x72\x3c\xe6\xbb\xda\x6e"
      "\xb6\xbb\xed\x61\x7b\xda\x97\x6c\x2f\xdb\xdb\xf6\xb1\x7d\x6d\x3f\xfb\xb2"
      "\xed\x6f\x5f\xb1\x03\xec\xab\x76\xa0\x1d\x64\x07\xdb\xd7\xec\x10\xfb\xba"
      "\x1d\x6a\xdf\xb0\xc3\xec\x70\x3b\xc2\xbe\x69\x47\xda\x51\x76\xb4\x1d\x63"
      "\xc7\xda\x71\x76\xbc\x7d\xcb\x4e\xb0\x6f\xdb\x89\xf6\x1d\x3b\xc9\x4e\xb6"
      "\x53\xec\x54\x3b\xcd\x4e\xb7\x33\xec\xbb\x76\xa6\x9d\x65\x67\xdb\xf7\xec"
      "\x1c\xfb\xbe\x9d\x6b\xe7\xd9\xf9\x76\x81\x5d\x68\x3f\xb0\x8b\xec\x62\x9b"
      "\x6a\x3f\xb4\x4b\xec\x47\x76\xa9\x5d\x66\x97\xdb\x15\x76\xa5\x5d\x65\x57"
      "\xdb\x35\x76\xad\x5d\x67\xd7\xdb\x0d\x76\xa3\xdd\x64\x37\xdb\x2d\x76\xab"
      "\xfd\xd8\x6e\xb3\xdb\xed\x0e\xbb\xd3\xee\xb2\xbb\xed\x1e\xfb\x89\xdd\x6b"
      "\x3f\xb5\xfb\xec\x67\x76\xbf\xfd\xdc\x1e\xb0\x7f\xb2\x07\xed\x17\xf6\x90"
      "\xfd\xd2\x1e\xb6\x5f\xd9\x23\xf6\x6b\x7b\xd4\x7e\x63\x8f\xd9\x6f\xed\x71"
      "\xfb\x9d\x3d\x61\x4f\xda\x53\xf6\x7b\x7b\xda\xfe\x60\xcf\xd8\xb3\xf6\x9c"
      "\xfd\xd1\x9e\xb7\x3f\xd9\x0b\xf6\x67\x7b\xd1\x86\x4b\x17\xf7\x97\x3e\xde"
      "\xc9\x90\xa1\x74\x94\x8e\x52\x28\x85\x32\x52\x46\xca\x44\x99\x28\x33\x65"
      "\xa6\x04\x25\x28\x2b\x65\xa5\x6c\x94\x8d\xb2\x53\x76\xca\x49\x39\x29\x37"
      "\xe5\xa6\xbc\x94\x97\x2e\x61\x62\xca\x47\xf9\x28\x49\x49\x2a\x40\x05\xa8"
      "\x20\x15\xa4\xc2\x54\x98\x3c\x79\x2a\x46\xc5\xa8\x38\x15\xa7\x12\x54\x82"
      "\x4a\x52\x49\x2a\x45\xa5\xa8\x34\x95\xa6\xb2\x74\xe9\x7e\xe4\x36\xba\x9d"
      "\x6e\xa7\x3b\xe8\x0e\xba\x93\xee\xa4\xca\x54\x99\xaa\x52\x55\xaa\x46\xd5"
      "\xa8\x3a\x55\xa7\x1a\x54\x83\x6a\x52\x4d\xaa\x45\xb5\xa8\x36\xd5\xa6\x3a"
      "\x54\x87\xea\x52\x5d\xaa\x47\xf5\xa8\x3e\xd5\xa7\x06\xd4\x80\x1a\x51\x23"
      "\x6a\x42\x4d\xa8\x29\x35\xa5\x66\xd4\x8c\x5a\x50\x0b\x6a\x49\x2d\xa9\x15"
      "\xb5\xa2\xd6\xd4\x9a\xda\x50\x1b\x6a\x4b\x6d\xa9\x1d\xb5\xa3\xf6\xd4\x9e"
      "\x3a\x50\x07\xea\x48\x1d\xa9\x33\x75\xa6\x2e\xd4\x85\xba\x52\x57\xea\x4e"
      "\xdd\xa9\x27\xf5\xa4\x5e\xd4\x8b\xfa\x50\x1f\xea\x47\xfd\xa8\x3f\xf5\xa7"
      "\x01\x34\x80\x06\xd2\x40\x1a\x4c\x83\x69\x08\x0d\xa1\xa1\x34\x94\x86\xd1"
      "\x70\x1a\x41\x6f\xd2\x48\x1a\x45\xa3\x69\x0c\x8d\xa5\x71\x34\x9e\xc6\xd3"
      "\x04\x9a\x40\x13\x69\x22\x4d\xa2\x49\x34\x85\xa6\xd0\x34\x9a\x46\x33\x68"
      "\x06\xcd\xa4\x99\x34\x9b\x66\xd3\x1c\x9a\x43\x73\x69\x2e\xcd\xa7\xf9\xb4"
      "\x90\x16\xd2\x22\x5a\x44\xa9\x94\x4a\x4b\x68\x09\x2d\xa5\xa5\xb4\x9c\x96"
      "\xd3\x4a\x5a\x49\xab\x69\x35\xad\xa5\xb5\xb4\x9e\xd6\xd3\x46\xda\x48\x9b"
      "\x69\x33\x6d\xa5\xad\xb4\x8d\xb6\xd1\x0e\xda\x41\xbb\x68\x17\xed\xa1\x3d"
      "\xb4\x97\xf6\xd2\x3e\xda\x47\xfb\x69\x3f\x1d\xa0\x03\x74\x90\x0e\xd2\x21"
      "\x3a\x44\x87\xe9\x30\x1d\xa1\x23\x74\x94\x8e\xd2\x31\x3a\x46\xc7\xe9\x38"
      "\x9d\xa0\x13\x78\x8a\x4e\xd1\x69\x3a\x4d\x67\xe8\x0c\x9d\xa3\x73\x74\x9e"
      "\x7e\xa2\x0b\xf4\x33\x5d\xa4\x40\x29\x2e\x83\xcb\xe8\xae\x72\x99\xdc\xd5"
      "\x2e\xb3\xcb\xe2\x52\x5c\x86\x6e\x00\xf0\x97\x38\xa7\xcb\xe5\x72\xbb\x3c"
      "\x2e\xaf\xb3\x2e\xbb\xcb\xf1\x37\x31\x39\xe7\x0a\xba\x42\xae\xb0\x2b\xe2"
      "\xbc\x2b\xea\x8a\xb9\x1b\x7f\x17\x97\x76\x65\x5c\x59\x57\xce\xdd\xe6\xca"
      "\xbb\xdb\x5d\x85\xdf\xc5\xd5\xdc\xdd\xae\xba\xbb\xc7\xd5\x70\xf7\xba\xaa"
      "\xee\xae\xbf\x89\x6b\xba\xfb\x5c\x2d\xf7\xb0\xab\xed\x1e\x71\x75\x5c\x43"
      "\x57\xd7\x35\x76\xf5\xdc\xc3\xae\xbe\x7b\xc4\x35\x70\x0d\x5d\x23\xd7\xd8"
      "\xb5\x74\x4f\xb8\x56\xee\x49\xd7\xda\x3d\xe5\xda\xb8\xa7\x7f\x17\x2f\x72"
      "\x8b\xdd\x5a\xb7\xce\xad\x77\x1b\xdc\x5e\xf7\xa9\x3b\xe7\x7e\x74\x47\xdd"
      "\x37\xee\xbc\xfb\xc9\x75\x75\xdd\x5c\x3f\xf7\xb2\xeb\xef\x5e\x71\x03\xdc"
      "\xab\x6e\xa0\x1b\xf4\xbb\x78\x84\x7b\xd3\x8d\x74\xa3\xdc\x68\x37\xc6\x8d"
      "\x75\xe3\x7e\x17\x4f\x71\x53\xdd\x34\x37\xdd\xcd\x70\xef\xba\x99\x6e\xd6"
      "\xef\xe2\x85\xee\x03\x37\xc7\xa5\xba\xb9\x6e\x9e\x9b\xef\x16\xfc\x12\x5f"
      "\x5a\x53\xaa\xfb\xd0\x2d\x71\x1f\xb9\xa5\x6e\x99\x5b\xee\x56\xb8\x95\x6e"
      "\x95\x5b\xed\xd6\xfc\x65\xad\x2b\xdc\x26\xb7\xd9\x6d\x71\x7b\xdc\x27\x6e"
      "\x9b\xdb\xee\x76\xb8\x9d\x6e\x97\xdb\xfd\x4b\x7c\x69\x1f\xfb\xdc\x67\x6e"
      "\xbf\xfb\xdc\x1d\x71\x5f\xbb\x83\xee\x0b\x77\xc8\x1d\x73\x87\xdd\x57\xbf"
      "\xc4\x97\xf6\x77\xcc\x7d\xeb\x8e\xbb\xef\xdc\x09\x77\xd2\x9d\x72\xdf\xbb"
      "\xd3\xee\x07\x77\xc6\x9d\xfd\x65\xff\x97\xf6\xfe\xbd\xfb\xd9\x5d\x74\xc1"
      "\x01\x23\x2b\xd6\x6c\x38\xe2\x74\x9c\x9e\x53\x38\x03\x67\xe4\xab\x38\x13"
      "\x5f\xcd\x99\x39\x0b\x27\xf8\x1a\xce\xca\xd7\x72\x36\xbe\x8e\xb3\x73\x0e"
      "\xce\xc9\xb9\x38\x37\xe7\xe1\xbc\x6c\x99\xd8\x31\x73\xcc\xf9\x38\x3f\x27"
      "\xf9\x7a\x2e\xc0\x37\x70\x41\x2e\xc4\x85\xb9\x08\x7b\x2e\xca\xc5\xf8\x46"
      "\x2e\xce\x37\x71\x09\xbe\x99\x4b\xf2\x2d\x5c\x8a\x6f\xe5\xd2\x5c\x86\xcb"
      "\x72\x39\xbe\x8d\xcb\xf3\xed\x5c\x81\xef\xe0\x8a\x7c\x27\x57\xe2\xca\x5c"
      "\x85\xab\xf2\x5d\x5c\x8d\xef\xe6\xea\x7c\x0f\xd7\xe0\x7b\xb9\x26\xdf\xc7"
      "\xb5\xf8\x7e\xae\xcd\x0f\x70\x1d\x7e\x90\xeb\xf2\x43\x5c\x8f\x1f\xe6\xfa"
      "\xfc\x08\x37\xe0\x86\xdc\x88\x1b\x73\x13\x7e\x94\x9b\xf2\x63\xdc\x8c\x9b"
      "\x73\x0b\x7e\x9c\x5b\xf2\x13\xdc\x8a\x9f\xe4\xd6\xfc\x14\xb7\xe1\xa7\xb9"
      "\x2d\x3f\xc3\xed\xf8\x59\x6e\xcf\xcf\x71\x07\x7e\x9e\x3b\x72\x27\xee\xcc"
      "\x2f\x70\x17\x7e\x91\xbb\x72\x37\xee\xce\x3d\xb8\x27\xbf\xc4\xbd\xb8\x37"
      "\xf7\xe1\xbe\xdc\x8f\x5f\xe6\xfe\xfc\x0a\x0f\xe0\x57\x79\x20\x0f\xe2\xc1"
      "\xfc\x1a\x0f\xe1\xd7\x79\x28\xbf\xc1\xc3\x78\x38\x8f\xe0\x37\x79\x24\x8f"
      "\xe2\xd1\x3c\x86\xc7\xf2\x38\x1e\xcf\x6f\xf1\x04\x7e\x9b\x27\xf2\x3b\x3c"
      "\x89\x27\xf3\x14\x9e\xca\xd3\x78\x3a\xcf\xe0\x77\x79\x26\xcf\xe2\xd9\xfc"
      "\x1e\xcf\xe1\xf7\x79\x2e\xcf\xe3\xf9\xbc\x80\x17\xf2\x07\xbc\x88\x17\x73"
      "\x2a\x7f\xc8\x4b\xf8\x23\x5e\xca\xcb\x78\x39\xaf\xe0\x95\xbc\x8a\x57\xf3"
      "\x1a\x5e\xcb\xeb\x78\x3d\x6f\xe0\x8d\xbc\x89\x37\xf3\x16\xde\xca\x1f\xf3"
      "\x36\xde\xce\x3b\x78\x27\xef\xe2\xdd\xbc\x87\x3f\xe1\xbd\xfc\x29\xef\xe3"
      "\xcf\x78\x3f\x7f\xce\x07\xf8\x4f\x7c\x90\xbf\xe0\x43\xfc\x25\x1f\xe6\xaf"
      "\xf8\x08\x7f\xcd\x47\xf9\x1b\x3e\xc6\xdf\xf2\x71\xfe\x8e\x4f\xf0\x49\x3e"
      "\xc5\xdf\xf3\x69\xfe\x81\xcf\xf0\x59\x3e\xc7\x3f\xf2\x79\xfe\x89\x2f\xf0"
      "\xcf\x7c\x91\x03\x43\x8c\xb1\x8a\x75\x6c\xe2\x28\x4e\x17\xa7\x8f\x53\xe2"
      "\x0c\x71\xc6\xf8\xaa\x38\x53\x7c\x75\x9c\x39\xce\x12\x27\xe2\x6b\xe2\xac"
      "\xf1\xb5\x71\xb6\xf8\xba\x38\x7b\x9c\x23\xce\x19\xe7\x8a\x73\xc7\x79\xe2"
      "\xbc\xb1\x8d\x29\x76\x31\xc7\x71\x9c\x2f\xce\x1f\x27\xe3\xeb\xe3\x02\xf1"
      "\x0d\x71\xc1\xb8\x50\x5c\x38\x2e\x12\xfb\xb8\x68\x5c\x2c\xbe\x31\x2e\x1e"
      "\xdf\x14\x97\x88\x6f\x8e\x4b\xc6\xb7\xc4\xa5\xe2\x5b\xe3\xd2\x71\x99\xb8"
      "\x6c\x5c\x2e\xbe\x2d\x2e\x1f\xdf\x1e\x57\x88\xef\x88\x2b\xc6\x77\xc6\x95"
      "\xe2\xca\x71\x95\xb8\x6a\x7c\x57\x5c\x2d\xbe\x3b\xae\x1e\xdf\x13\xd7\x88"
      "\xef\x8d\x4b\xc4\xf7\xc5\xb5\xe2\xfb\xe3\xda\xf1\x03\x71\x9d\xf8\xc1\xb8"
      "\x6e\xfc\x50\x5c\x2f\x7e\x38\xae\x1f\x3f\x12\x37\x88\x1b\xc6\x8d\xe2\xc6"
      "\x71\x93\xf8\xd1\xb8\x69\xfc\x58\xdc\x2c\x6e\x1e\xb7\x88\x1f\x8f\x5b\xc6"
      "\x4f\xc4\xad\xe2\x27\xe3\xd6\xf1\x53\x71\x9b\xf8\xe9\x3f\xec\xef\x1e\xf7"
      "\x88\x7b\xc6\x2f\xc5\x2f\xc5\x21\xdc\xa3\xe7\x27\x17\x24\x17\x26\x3f\x48"
      "\x2e\x4a\x2e\x4e\xa6\x26\x3f\x4c\x2e\x49\x7e\x94\x5c\x9a\x5c\x96\x5c\x9e"
      "\x5c\x91\x5c\x99\x5c\x95\x5c\x9d\x5c\x93\x5c\x9b\x5c\x97\x5c\x9f\xdc\x90"
      "\xdc\x98\xdc\x94\xdc\x9c\xdc\x92\x0c\xa1\x6a\x7a\xf0\xe8\x95\xd7\xde\xf8"
      "\xc8\xa7\xf3\xe9\x7d\x8a\xcf\xe0\x33\xfa\xab\x7c\x26\x7f\xb5\xcf\xec\xb3"
      "\xf8\x84\xbf\xc6\x67\xf5\xd7\xfa\x6c\xfe\x3a\x9f\xdd\xe7\xf0\x39\x7d\x2e"
      "\x9f\xdb\xe7\xf1\x79\xbd\xf5\xe4\x9d\x67\x1f\xfb\x7c\x3e\xbf\x4f\xfa\xeb"
      "\x7d\x01\x7f\x83\x2f\xe8\x0b\xf9\xc2\xbe\x88\xf7\xbe\xa8\x2f\xe6\x1b\xfb"
      "\x26\xbe\x89\x6f\xea\x1f\xf3\xcd\x7c\x73\xdf\xc2\x3f\xee\x1f\xf7\x4f\xf8"
      "\x27\xfc\x93\xfe\x49\xff\x94\x6f\xe3\x9f\xf6\x6d\xfd\x33\xbe\x9d\x7f\xd6"
      "\xb7\xf7\xcf\xf9\xe7\xfc\xf3\xbe\xa3\xef\xe4\x3b\xfb\x17\x7c\x17\xff\xa2"
      "\xef\xea\xbb\xf9\xee\xbe\xbb\xef\xe9\x7b\xfa\x5e\xbe\x97\xef\xe3\xfb\xf8"
      "\x7e\xbe\x9f\xef\xef\xfb\xfb\x01\x7e\x80\x1f\xe8\x07\xfa\xc1\x7e\xb0\x1f"
      "\xe2\x87\xf8\xa1\x7e\xa8\x1f\xe6\x87\xf9\x11\x7e\x84\x1f\xe9\x47\xfa\xd1"
      "\x7e\xb4\x1f\xeb\xc7\xfa\xf1\x7e\xbc\x9f\xe0\x27\xf8\x89\x7e\xa2\x9f\xe4"
      "\x27\xf9\x29\x7e\x8a\x9f\xe6\xa7\xf9\x19\x7e\x86\x9f\xe9\x67\xfa\xd9\x7e"
      "\xb6\x9f\xe3\xe7\xf8\xb9\x7e\xae\x9f\xef\xe7\xfb\x85\x7e\xa1\x5f\xe4\x17"
      "\xf9\x54\x9f\xea\x97\xf8\x25\x7e\xa9\x5f\xea\x97\xfb\xe5\x7e\xa5\x5f\xe9"
      "\x57\xfb\xd5\x7e\xad\x5f\xeb\xd7\xfb\xf5\x7e\xa3\xdf\xe8\x37\xfb\xcd\x7e"
      "\xab\xdf\xea\xb7\xf9\x6d\x7e\x87\xdf\xe1\x77\xf9\x5d\x7e\x8f\xdf\xe3\xf7"
      "\xaa\xbd\x7e\x9f\xdf\xe7\xf7\xfb\xfd\xfe\x80\x3f\xe0\x0f\xfa\x83\xfe\x90"
      "\xff\xd2\x1f\xf6\x5f\xf9\x23\xfe\x6b\x7f\xd4\x7f\xe3\x8f\xf9\x6f\xfd\x71"
      "\xff\x9d\x3f\xe1\x4f\xfa\x53\xfe\x7b\x7f\xda\xff\xe0\xcf\xf8\xb3\xfe\x9c"
      "\xff\xd1\x9f\xf7\x3f\xf9\x0b\xfe\x67\x7f\xd1\x07\x3f\x3e\xf1\x56\x62\x42"
      "\xe2\xed\xc4\xc4\xc4\x3b\x89\x49\x89\xc9\x89\x29\x89\xa9\x89\x69\x89\xe9"
      "\x89\x19\x89\x77\x13\x33\x13\xb3\x12\xb3\x13\xef\x25\xe6\x24\xde\x4f\xcc"
      "\x4d\xcc\x4b\xcc\x4f\x2c\x48\x2c\x4c\x7c\x90\x58\x94\x58\x9c\x48\x4d\x7c"
      "\x98\x58\x92\xf8\x28\xb1\x34\xb1\x2c\xb1\x3c\xb1\x22\xb1\x32\xb1\x2a\x11"
      "\x42\x9e\x6d\x71\xc8\x17\xf2\x87\x64\xb8\x3e\x14\x08\x37\x84\x82\xa1\x50"
      "\x28\x1c\x8a\x04\x1f\x8a\x86\x62\xe1\xc6\x50\x3c\xdc\x14\x4a\x84\x9b\x43"
      "\xc9\x70\x4b\x28\x15\x6e\x0d\xa5\x43\x99\x50\x36\x3c\x12\x1a\x84\x86\xa1"
      "\x51\x68\x1c\x9a\x84\x47\x43\xd3\xf0\x58\x68\x16\x9a\x87\x16\xe1\xf1\xd0"
      "\x32\x3c\x11\x5a\x85\x27\x43\xeb\xf0\x54\x68\x13\x9e\x0e\x6d\xc3\x33\xa1"
      "\x5d\x78\x36\xb4\x0f\xcf\x85\x0e\xe1\xf9\xd0\x31\x74\x0a\x9d\xc3\x0b\xa1"
      "\x4b\x78\x31\x74\x0d\xdd\x42\xf7\xd0\x23\xf4\x0c\x2f\x85\x5e\xa1\x77\xe8"
      "\x13\xfa\x86\x7e\xe1\xe5\xd0\x3f\xbc\x12\x06\x84\x57\xc3\xc0\x30\x28\x0c"
      "\x0e\xaf\x85\x21\xe1\xf5\x30\x34\xbc\x11\x86\x85\xe1\x61\x44\x78\x33\x8c"
      "\x0c\xa3\xc2\xe8\x30\x26\x8c\x0d\xe3\xc2\xf8\xf0\x56\x98\x10\xde\x0e\x13"
      "\xc3\x3b\x61\x52\x98\x1c\xa6\x84\xa9\x61\x5a\x98\x1e\x66\x84\x77\xc3\xcc"
      "\x30\x2b\xcc\x0e\xef\x85\x39\xe1\xfd\x30\x37\xcc\x0b\xf3\xc3\x82\xb0\x30"
      "\x7c\x10\x16\x85\xc5\x21\x35\x7c\x18\x96\x84\x8f\xc2\xd2\xb0\x2c\x2c\x0f"
      "\x2b\xc2\xca\xb0\x2a\xac\x0e\x6b\xc2\xda\xb0\x2e\xac\x0f\x1b\xc2\xc6\xb0"
      "\x29\x6c\x0e\x5b\xc2\xd6\xf0\x71\xd8\x16\xb6\x87\x1d\x61\x67\xd8\x15\x76"
      "\x87\x3d\xe1\x93\xb0\x37\x7c\x1a\xf6\x85\xcf\xc2\xfe\xf0\x79\x38\x10\xfe"
      "\x14\x0e\x86\x2f\xc2\xa1\xf0\x65\x38\x1c\xbe\x0a\x47\xc2\xd7\xe1\x68\xf8"
      "\x26\x1c\x0b\xdf\x86\xe3\xe1\xbb\x70\x22\x9c\x0c\xa7\xc2\xf7\xe1\x74\xf8"
      "\x21\x9c\x09\x67\xc3\xb9\xf0\x63\x38\x1f\x7e\x0a\x17\xc2\xcf\xe1\xa2\xfc"
      "\xcc\x9a\x10\x42\x08\x21\xc4\x3f\x44\xff\x41\x7f\x8f\xff\x26\x47\xfd\xb9"
      "\xdd\x13\x00\xae\xde\x9e\xeb\xf0\x7f\xed\xdf\x98\xfd\xd7\x76\xef\xf4\xb9"
      "\x5b\x26\x00\xe0\xa9\x6e\x1d\x1e\xfc\xed\xa8\x54\xa9\x7b\xf7\xee\x7f\x1e"
      "\xbb\x54\x43\x94\x7f\x1e\x00\x24\x2e\xe7\xa7\x83\xcb\xf1\x32\x68\x01\x4f"
      "\x40\x6b\x68\x0e\xc5\xff\xd2\x9f\xf2\x57\xe7\xea\xad\x3a\x9d\xe7\x3f\x98"
      "\x3f\x79\x0b\x40\xc6\xbf\xca\x49\x51\x97\xdb\x97\xe7\xbf\xe9\xef\xee\xbf"
      "\xb7\x1a\x35\xe7\xef\xcf\x8f\xbf\x0d\x89\x92\xf3\x00\x0a\xe6\xbf\x9c\x93"
      "\x01\x2e\xc7\x97\xe7\x2f\xf1\xdf\xcc\x9f\xa3\xe9\x1f\xac\x3f\xc3\x17\xe3"
      "\x01\x9a\xfd\x55\x4e\x26\xb8\x1c\x5f\x9e\xbf\x18\x3c\x06\x4f\x43\xeb\xbf"
      "\x19\x29\x84\x10\x42\x08\x21\x84\x10\x42\xfc\xaa\xb7\x2a\xdb\x0e\xfe\x81"
      "\xfb\xf3\xdc\xe6\x72\x4e\x7a\xb8\x1c\xff\xbd\xfb\x73\x21\x84\x10\x42\x08"
      "\x21\x84\x10\x42\xfc\xff\xe5\xd9\x4e\x9d\x9f\x7c\xb4\x75\xeb\xe6\xed\xa4"
      "\xf1\xcf\x35\x12\xd1\xaf\x6f\xe0\x1f\x0f\x0e\x59\x7e\x1d\x79\xe5\xd7\x2c"
      "\x0d\x69\xfc\xc3\x8d\x2b\xfa\x65\x49\x08\x21\x84\x10\x42\x08\xf1\x3f\xe0"
      "\xf2\x45\xff\xef\xfb\x86\x5c\x89\x05\x09\x21\x84\x10\x42\x08\x21\x84\x10"
      "\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21"
      "\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x69\xd0\xff\x8b\x5f\x27"
      "\xf6\xdb\xb9\xfe\xe8\x6f\x0d\x0a\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08"
      "\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10"
      "\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21"
      "\x84\x10\xff\xa9\xfe\x4f\x00\x00\x00\xff\xff\x1d\xaf\x37\xa8",
      5379);
  syz_mount_image(/*fs=*/0x20001500, /*dir=*/0x20000040, /*flags=*/0,
                  /*opts=*/0x20000100, /*chdir=*/3, /*size=*/0x1503,
                  /*img=*/0x20002a40);
  memcpy((void*)0x20000100, "./bus\000", 6);
  syscall(__NR_open, /*file=*/0x20000100ul,
          /*flags=O_SYNC|O_NOCTTY|O_NOATIME|O_CREAT|FASYNC|0x2*/ 0x143142ul,
          /*mode=*/0ul);
}
int main(void)
{
  syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul,
          /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-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=*/-1,
          /*offset=*/0ul);
  syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul,
          /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1,
          /*offset=*/0ul);
  const char* reason;
  (void)reason;
  use_temporary_dir();
  loop();
  return 0;
}