[BUG] WARNING in bio_add_page

From: Jaeyoung Chung

Date: Tue Aug 25 2026 - 11:14:29 EST


Hello,

We found a "WARNING in bio_add_page" on Linux v7.2.
The issue was found by our own race fuzzer. We have not analyzed the root cause,
so we do not have a proposed fix to offer.

To reproduce the race reliably, we applied the delay patch below to the
kernel and ran the C reproducer as root inside an x86_64 QEMU guest. The
crash log we observed, the delay patch and the reproducer are all included
below.

The following kernel config options are required to reproduce the issue:
CONFIG_EXFAT_FS=y
CONFIG_BLK_DEV_LOOP=y
CONFIG_NLS_CODEPAGE_1251=y
CONFIG_KASAN=y

We hope this report is useful. Please let us know if any further
information would help.

Reported-by: Eulgyu Kim <eulgyukim@xxxxxxxxx>
Reported-by: Jaeyoung Chung <jjy600901@xxxxxxxxx>

Kernel delay patch:
==================================================================
diff --git a/fs/exfat/file.c b/fs/exfat/file.c
--- a/fs/exfat/file.c
+++ b/fs/exfat/file.c
@@ -3,6 +3,8 @@
* Copyright (C) 2012-2013 Samsung Electronics Co., Ltd.
*/

+#include <linux/delay.h>
+#include <linux/string.h>
#include <linux/slab.h>
#include <linux/compat.h>
#include <linux/cred.h>
@@ -413,6 +415,11 @@ int exfat_setattr(struct mnt_idmap *idmap, struct dentry *dentry,
*/
inode_dio_wait(inode);
down_write(&EXFAT_I(inode)->truncate_lock);
+ if (!strncmp(current->comm, "syzrepro1", 9) ||
+ !strncmp(current->comm, "syzrepro2", 9) ||
+ !strncmp(current->comm, "syzrepro3", 9)) {
+ mdelay(10);
+ }
truncate_setsize(inode, attr->ia_size);

/*
diff --git a/fs/exfat/iomap.c b/fs/exfat/iomap.c
--- a/fs/exfat/iomap.c
+++ b/fs/exfat/iomap.c
@@ -5,7 +5,9 @@
* Copyright (C) 2026 Namjae Jeon <linkinjeon@xxxxxxxxxx>
*/

+#include <linux/delay.h>
#include <linux/iomap.h>
+#include <linux/string.h>
#include <linux/pagemap.h>

#include "exfat_raw.h"
@@ -59,6 +61,9 @@ static int __exfat_iomap_begin(struct inode *inode, loff_t offset, loff_t length,
return 0;
}

+ if (!offset && !strncmp(current->comm, "syzrepro0", 9)) {
+ mdelay(100);
+ }
/* Clamp length if the requested range goes beyond i_size */
if (offset + length > i_size_read(inode))
length = round_up(i_size_read(inode),
@@ -209,6 +218,9 @@ static ssize_t exfat_writeback_range(struct iomap_writepage_ctx *wpc,
if (error)
return error;
}
+ if (!offset && !strncmp(current->comm, "syzrepro0", 9)) {
+ mdelay(200);
+ }

return iomap_add_to_ioend(wpc, folio, offset, end_pos, len);
}

==================================================================

C reproducer:
==================================================================
#define _GNU_SOURCE

#include <endian.h>
#include <errno.h>
#include <fcntl.h>
#include <pthread.h>
#include <setjmp.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/sysmacros.h>
#include <sys/types.h>
#include <sys/uio.h>
#include <unistd.h>

#include <linux/loop.h>

#ifndef __NR_memfd_create
#define __NR_memfd_create 319
#endif
#ifndef __NR_pwritev2
#define __NR_pwritev2 328
#endif

static unsigned long long procid;

#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;
}

#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;
}
if (mkdir(target, 0777) && errno != EEXIST) {
err = errno;
goto error_clear_loop;
}
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 pthread_barrier_t race_barrier;
static int sync_fd = -1;
static int truncate_fds[3] = {-1, -1, -1};
static unsigned char write_buf[0xfdef];
static const char* comm_marker = "syzrepro";

struct race_arg {
int index;
};

static void* race_thread(void* opaque)
{
const struct race_arg* arg = (const struct race_arg*)opaque;
char name[16];
int barrier_ret;

snprintf(name, sizeof(name), "%.13s%d", comm_marker, arg->index);
if (prctl(PR_SET_NAME, name, 0, 0, 0) == -1) {
return (void*)1;
}

barrier_ret = pthread_barrier_wait(&race_barrier);
if (barrier_ret != 0 && barrier_ret != PTHREAD_BARRIER_SERIAL_THREAD) {
return (void*)1;
}

if (arg->index == 0) {
struct iovec iov = {
.iov_base = write_buf,
.iov_len = sizeof(write_buf),
};
long ret = syscall(__NR_pwritev2, sync_fd, &iov, 1, 0xe7b, 0, 0);

if (ret < 0)
fprintf(stderr, "T0 pwritev2 failed: %s\n", strerror(errno));
else if (ret != (long)sizeof(write_buf))
fprintf(stderr, "T0 pwritev2 short: %ld/%zu\n", ret,
sizeof(write_buf));
} else {

usleep((unsigned int)arg->index * 2000);
if (ftruncate(truncate_fds[arg->index - 1], 0) < 0)
fprintf(stderr, "T%d ftruncate failed: %s\n", arg->index,
strerror(errno));
}
return NULL;
}

static unsigned int parse_count(const char* text, unsigned int fallback)
{
char* end = NULL;
unsigned long value;

if (!text || !*text)
return fallback;
errno = 0;
value = strtoul(text, &end, 10);
if (errno || *end || value == 0 || value > 100000)
return fallback;
return (unsigned int)value;
}

static const unsigned char exfat_image_zlib[] =
"\x78\xda\xec\xdb\x07\x90\x74\x65\x99\xe8\xf1\xb7\xcf\xe9\x26\x87\x01\xc9\x70\xe6"
"\xbc\x07\x86\xf4\x71\x88\x92\x33\x92\x83\x88\x08\x88\x64\x11\x10\x10\x10\x11\x11"
"\x11\xc9\x39\x27\xc9\x39\xf3\x91\x73\xfa\x80\x8f\x9c\x73\x0e\x22\x22\x22\x02\x92"
"\x73\x3a\xf7\xc1\xdd\xbd\x1b\xdc\xaa\xdd\x1b\xea\xd6\xad\xdd\xdf\xef\x5f\x6f\x4d"
"\xbf\xd3\x73\x7a\xba\xcf\x53\x3d\x3d\x3d\x55\xf3\xc6\x4e\x47\x2c\xbf\xee\x0a\xcb"
"\xac\x95\x73\x4e\xff\x47\xfe\xf1\xf0\x3d\x62\x8d\x17\xeb\x80\x58\x6f\x97\x29\x0d"
"\xe2\xe3\x2d\x9b\x8d\x3a\x20\xf5\x52\x1a\xbf\xec\xed\x91\xf8\xff\xc8\xda\xa3\x9d"
"\x03\xf3\xc7\xfc\x31\x7f\xcc\x1f\xf3\xc7\xfc\x31\x7f\xcc\x1f\xf8\xaf\xeb\x9a\x65"
"\x67\x9c\xcc\xfa\xef\xbb\xde\xf0\xf7\x7f\xaf\xff\x98\x3f\xe6\x8f\xf9\x63\xfe\x98"
"\x3f\xe6\x8f\xf9\x63\xfe\xc0\x7f\x49\xfe\x06\xfe\xdf\x7b\x79\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\x00\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\xff\xc2\x27\xdd\x3f\xeb\xc7\xfe\x9f\x2e\x3b\x33"
"\x00\x00\x00\xf0\x5f\x47\xed\x14\x00\x00\x00\xc0\x7f\x03\xbd\x54\xa4\x32\xf5\xd3"
"\x20\x8d\x93\xc6\x4d\xe3\xa5\xf1\xd3\x04\x69\xc2\x34\x51\x9a\x38\x4d\x92\x26\x4d"
"\x43\x69\xb2\x34\x79\xfa\x46\x9a\x22\x4d\x99\xa6\x4a\x53\xa7\x69\xd2\xb4\x69\xba"
"\x34\x7d\x9a\x21\x55\x69\x38\xd5\x29\xa7\x26\xcd\x98\x66\x4a\x23\x69\xe6\x34\x4b"
"\x9a\x35\xcd\x96\x66\x4f\xa3\xd2\x1c\xa9\x4d\x73\xa6\xb9\xd2\xdc\x69\x9e\x34\x6f"
"\x9a\x2f\x7d\x33\xcd\x9f\x16\x48\x0b\xa6\x85\xd2\xc2\x69\x91\xb4\x68\x5a\x2c\x2d"
"\x9e\x96\x48\x4b\xa6\xa5\xd2\xd2\x69\x99\xf4\xad\xb4\x6c\x5a\x2e\x2d\x9f\x56\x48"
"\x2b\xa6\x95\xd2\xca\x69\x95\xb4\x6a\x5a\x2d\x7d\x3b\xad\x9e\xbe\x93\xd6\x48\xdf"
"\x4d\x6b\xa6\xef\xa5\xb5\xd2\xda\x69\x9d\xf4\xfd\xb4\x6e\xfa\x41\x5a\x2f\xad\x9f"
"\x36\x48\x1b\xa6\x8d\xd2\xc6\x69\x93\xff\xad\xe3\x7f\x9d\x76\x4d\xbf\x49\xbb\xa5"
"\xdd\xd3\x1e\x69\xcf\xb4\x57\xda\x3b\xed\x93\xf6\x4d\xfb\xa5\xfd\xd3\x01\xe9\xc0"
"\x74\x50\x3a\x38\x1d\x92\x0e\x4d\x87\xa5\xc3\xd3\x11\xe9\xc8\x74\x54\x3a\x3a\x1d"
"\x93\x7e\x9b\x8e\x4d\xc7\xa5\xe3\xd3\x09\xe9\xc4\x74\x52\x3a\x39\x9d\x92\x4e\x4d"
"\xa7\xa5\xd3\xd3\x19\xe9\xcc\x74\x56\x3a\x3b\x9d\x93\xce\x4d\xe7\xa5\xf3\xd3\x05"
"\x69\x74\xba\x30\x5d\x94\x2e\x4e\x97\xa4\x4b\xd3\x65\xe9\xf2\x74\x45\xba\x32\x5d"
"\x95\xae\x4e\xd7\xa4\x6b\xd3\x75\xe9\xfa\x74\x43\xba\x31\x8d\x49\x37\xa5\x9b\xd3"
"\x2d\x69\x6c\xba\x35\xdd\x96\x6e\x4f\x77\xa4\x3b\xd3\x5d\xe9\xee\x74\x4f\xba\x37"
"\xdd\x97\xee\x4f\x0f\xa4\x07\xd3\x43\xe9\xe1\xf4\x48\x7a\x34\x3d\x96\x1e\x4f\x4f"
"\xa4\x27\xd3\x53\xe9\xe9\xf4\x4c\x7a\x36\x3d\x97\x9e\x4f\x2f\xa4\xdf\xa5\x17\xd3"
"\xef\xff\x17\x8f\xff\xf8\xdf\x1c\xbf\x73\x2f\xc6\xdf\x2b\xa2\x7e\x34\x4e\x34\x5e"
"\x34\x41\x34\x51\x34\x49\x34\x14\x4d\x1e\x4d\x11\x4d\x15\x4d\x13\x4d\x17\xcd\x10"
"\x0d\x47\x39\x9a\x31\x1a\x89\x66\x89\x66\x8b\x46\x45\x6d\x34\x57\x34\x4f\x6f\xde"
"\xde\x7c\xd1\xfc\xd1\x82\xd1\xc2\xbd\x45\xa2\xc5\xa2\x25\xa2\xa5\xa2\x65\xa2\x65"
"\xa3\xe5\xa3\x15\xa3\x95\x7b\xab\x44\xab\x45\xab\x47\x6b\x44\x6b\x46\x6b\x45\xeb"
"\x44\xeb\x46\xeb\x45\x1b\x44\x1b\x45\x9b\x44\x9b\x46\x9b\x45\x5b\x44\x5b\x46\x5b"
"\x47\xdb\x44\xdb\x45\xdb\x47\x3b\x44\x3b\x46\x3b\x45\x3b\xf7\x7e\x15\xfd\x3a\xfa"
"\x4d\xb4\x7b\x6f\xd9\x62\xcf\xde\x5e\xd1\x3e\xd1\x7e\xbd\xfd\xa3\x03\x7b\x07\xf5"
"\x0e\x8e\x0e\xed\x1d\xd6\x3b\xbc\x77\x44\xef\xc8\xe8\xe8\xde\x31\xbd\x8f\x7a\xc7"
"\xf6\x8e\xeb\x1d\x1f\x2d\x51\x9c\xd4\x3b\xb9\x77\x4a\x2f\x17\xa7\xf5\x4e\x8f\xce"
"\x8c\xce\x8e\xce\xed\x9d\x17\x5d\xd0\x1b\xdd\xbb\xb0\x77\x51\x74\x49\xef\xd2\xe8"
"\xf2\xde\x15\xbd\x2b\xa3\xab\xa3\x6b\x7b\xd7\x45\x37\xf4\x6e\xec\x8d\x89\x6e\xee"
"\x7d\xdc\x1b\xdb\xbb\xb5\x77\x5b\xef\xf6\xde\x1d\xbd\x3b\x63\xdd\xdd\xbb\x27\xd6"
"\x7d\xbd\xfb\x63\x3d\x18\x3d\x1c\x3d\x1a\x3d\x1e\x3d\x19\x3d\x1d\x3d\x1b\x3d\x1f"
"\x1d\xd6\x7b\x31\x7a\x29\x7a\x39\x7a\x25\x7a\x35\x7a\x2d\x7a\x3d\x7a\x33\x7a\x2b"
"\x7a\xa7\xf7\x6e\xef\xbd\x58\x1f\x44\x1f\xc5\xf7\xfb\x24\xfa\x2c\xfa\x22\xfa\x2a"
"\x8a\x27\x7f\xf1\xb5\x7e\x34\x4e\x34\x5e\x34\x41\x34\x51\x34\x49\x34\x14\x4d\x1e"
"\x4d\x11\x4d\x15\x4d\x13\x4d\x17\xcd\x10\x0d\x47\xb9\x68\x8a\x19\xa3\x91\x68\x96"
"\x68\xb6\x68\x54\xd4\x46\x73\x45\xf3\x44\xf3\x45\xf3\x17\x0b\x14\x0b\x16\x0b\x15"
"\x0b\x17\x8b\x14\x9b\xb7\x8b\x15\x8b\x15\x4b\x14\x5b\xb4\x4b\x15\x4b\x17\xcb\x44"
"\xcb\x16\xcb\x15\xcb\x17\x2b\x44\x2b\x45\xab\x44\xab\x45\xab\x47\x6b\x14\xdf\x2d"
"\xd6\x8c\x19\xed\xd7\x5b\xbb\xf8\x7a\x32\xeb\x16\x87\xf7\xd6\x2b\x8e\xe8\x6d\x50"
"\x6c\x58\x6c\x54\x6c\x5c\x1c\xdd\xfb\x61\xb1\x69\x71\x4c\x6f\xb3\x62\xf3\x62\x8b"
"\xe2\xc7\xc5\x71\x31\xa5\xad\x8b\x4d\xdb\x6d\x8a\x6d\x8b\xed\x8a\x93\x7b\xdb\x17"
"\x3f\x2b\x4e\xe9\xfd\xbc\xd8\x31\x66\xb5\x53\xf1\xcb\x62\xe7\xe2\x57\xc5\x2e\xc5"
"\xaf\x8b\x5d\x8b\xcd\xda\xdd\x8a\xdd\x8b\x73\x7b\x7b\x16\x7b\x15\x17\xf4\xf6\x29"
"\xf6\x2d\xf6\x2b\xf6\x2f\x2e\xe9\x2d\x57\x7c\x3d\xb1\xe5\x8b\x43\x8b\xc3\x8a\xc3"
"\x8b\x23\x8a\x23\x8b\x6b\x7b\x47\x17\xc7\x14\xbf\x2d\x8e\x2d\x8e\x2b\x8e\x2f\x4e"
"\x28\x4e\x2c\x4e\x2a\x4e\x2e\x4e\x29\x4e\x2d\x4e\x2b\x4e\x2f\xce\x28\xce\x2c\xce"
"\x2a\xce\x2e\xce\x29\xce\x2d\xce\x2b\xce\x2f\x2e\x28\x46\x17\x17\x16\x17\x15\x17"
"\x17\x97\x14\x97\x16\x97\x15\x97\x17\x57\x14\x57\x16\x57\x15\x57\x17\xd7\x14\xd7"
"\x16\xd7\x15\xd7\x17\x37\x14\x37\x16\x63\x8a\x9b\x8a\x9b\x8b\x5b\x8a\xb1\xc5\xad"
"\xc5\x6d\xc5\xed\xc5\x1d\xc5\x9d\xc5\x5d\xc5\xdd\xc5\x3d\xc5\xbd\xc5\x7d\xc5\xfd"
"\xc5\x03\xc5\x83\xc5\x43\xc5\xc3\xc5\x23\xc5\xa3\xc5\x63\xc5\xe3\xc5\x13\xc5\x93"
"\xc5\x53\xc5\xd3\xc5\x33\xc5\xb3\xc5\x73\xc5\xf3\xc5\x0b\xc5\xef\x8a\x17\x8b\xdf"
"\x17\x2f\x15\x7f\x28\x5e\x2e\xfe\x58\xbc\x52\xfc\xa9\x78\xb5\xf8\x73\xf1\x5a\xf1"
"\x97\xe2\xf5\xe2\x8d\xe2\xcd\xe2\xaf\xc5\x5b\xc5\xdb\xc5\x3b\xc5\xbb\xc5\x7b\xc5"
"\xfb\xc5\x07\xc5\x87\xc5\x47\xc5\xc7\xc5\x27\xc5\xa7\xc5\x67\xc5\xe7\xc5\x17\xc5"
"\x97\xc5\x57\x45\x17\x3f\xfa\x7b\x65\x51\x96\x65\xbf\x1c\x94\xe3\x94\xe3\x96\xe3"
"\x95\xe3\x97\x13\x94\x13\x96\x13\x95\x13\x97\x93\x94\x93\x96\x43\xe5\x64\xe5\xe4"
"\xe5\x37\xca\x29\xca\x29\xcb\xa9\xca\xa9\xcb\x69\xca\x69\xcb\xe9\xca\xe9\xcb\x19"
"\xca\xaa\x1c\x2e\xeb\x32\x97\x4d\x39\x63\x39\x53\x39\x52\xce\x5c\xce\x52\xce\x5a"
"\xce\x56\xce\x5e\x8e\x2a\xe7\x28\xdb\x72\xce\x72\xae\x72\xee\x72\x9e\x72\xde\x72"
"\xbe\xf2\x9b\xe5\xfc\xe5\x02\xe5\x82\xe5\x42\xe5\xc2\xe5\x22\xe5\xa2\xe5\x62\xe5"
"\xe2\xe5\x12\xe5\x92\xe5\x52\xe5\xd2\xe5\x32\xe5\xb7\xca\x65\xcb\xe5\xca\xe5\xcb"
"\x15\xca\x15\xcb\x95\xca\x95\xcb\x55\xca\x55\xcb\xd5\xca\x6f\x97\xab\x97\xdf\x29"
"\xd7\x28\xbf\x5b\xae\x59\x7e\xaf\x5c\xab\x5c\xbb\x5c\xa7\xfc\x7e\xb9\x6e\xf9\x83"
"\x72\xbd\x72\xfd\x72\x83\x72\xc3\x72\xa3\x72\xe3\x72\x93\xf2\x87\xe5\xa6\xe5\x8f"
"\xca\xcd\xca\xcd\xcb\x2d\xca\x1f\x97\x5b\x96\x5b\x95\x5b\x97\x3f\x29\xb7\x29\xb7"
"\x2d\xb7\x2b\x7f\x5a\x6e\x5f\xfe\xac\xdc\xa1\xfc\x79\xb9\x63\xf9\x8b\x72\xa7\xf2"
"\x97\xe5\xce\xe5\xaf\xca\x5d\xca\x2f\xcb\xaf\xca\xae\xdc\xad\xdc\xbd\xdc\xa3\xdc"
"\xb3\xdc\xab\xdc\xbb\xdc\xa7\xdc\xb7\xdc\xaf\xdc\xbf\x3c\xa0\x3c\xb0\x3c\xa8\x3c"
"\xb8\x3c\xa4\x3c\xb4\x3c\xac\x3c\xbc\x3c\xa2\x3c\xb2\x3c\xaa\x3c\xba\x3c\xa6\xfc"
"\x6d\x79\x6c\x79\x5c\x79\x7c\x79\x42\x79\x62\x79\x52\x79\x72\x79\x4a\x79\x6a\x79"
"\x5a\x79\x7a\x79\x46\x79\x66\x79\x56\x79\x76\x79\x4e\x79\x6e\x79\x5e\x79\x7e\x79"
"\x41\x39\xba\xbc\x30\x6e\xeb\x1f\x6e\xe9\xb2\xff\xc4\xf1\x67\xfd\x3b\xc7\x1f\xf2"
"\xb7\xef\xfe\x70\xf9\x48\xf9\x68\xf9\x58\xf9\x78\xf9\x44\xf9\x64\xf9\x54\xf9\x74"
"\xf9\x4c\xf4\x5c\xf4\x42\xf4\x62\xf4\x52\xf4\x72\xf4\x4a\xf4\x6a\xf4\x5a\xf4\x7a"
"\xf4\x66\xf4\x56\xf4\x4e\xf9\x6e\xf9\x69\xf9\x7e\xf9\x41\xf9\x61\xf9\x51\xf9\x71"
"\xf4\x69\xf9\x59\xf4\xc5\x3f\x9e\x83\x14\x3f\xf8\x8b\x7e\xd9\xef\xf7\x07\xfd\x71"
"\xfa\xe3\xf6\xc7\xeb\x8f\xdf\x9f\xa0\x3f\x61\x7f\xa2\xfe\xc4\xfd\x49\xfa\x93\xf6"
"\x87\xfa\x93\xf5\x27\xef\x7f\xa3\x3f\x45\x7f\xca\xfe\x54\xfd\xa9\xfb\xd3\xf4\xa7"
"\xed\x4f\xd7\x9f\xbe\x3f\x43\xbf\xea\x0f\xf7\xeb\x7e\xee\x37\xfd\x19\xfb\x33\xf5"
"\x47\xfa\x33\xf7\x67\xe9\xcf\xda\x9f\xad\x3f\x7b\x7f\x54\x7f\x8e\x7e\xdb\x9f\xb3"
"\x3f\x57\x7f\xee\xff\xe3\xe3\xff\xa3\xfb\xb7\x49\xb4\x69\xb4\x59\xb4\x45\xb4\x65"
"\xb4\x75\xb4\x4d\xb4\x5d\xb4\x7d\xb4\x43\xb4\x63\xb4\x53\xb4\x73\xb4\x4b\xb4\x6b"
"\xb4\x5b\xb4\x47\xb4\x57\x7f\xef\xfe\x3e\xfd\x7d\xfb\xfb\xf5\xf7\xef\x1f\xd0\x3f"
"\xb0\x7f\x50\x74\x48\x74\x58\x74\x44\x74\x54\x74\x4c\x74\x6c\x74\x7c\x74\x62\x74"
"\x72\x74\x6a\x74\x7a\x74\x66\x74\x76\x74\x6e\x74\x7e\x34\x3a\xba\x28\xba\x24\xba"
"\x2c\xba\x22\xba\x2a\xba\x26\xba\x2e\xba\x21\x1a\x13\xdd\x1c\x8d\xed\xdf\x1a\xdd"
"\x1e\xdd\x19\xdd\x1d\xdd\x1b\xdd\x1f\x3d\x18\x8d\xed\x3f\x12\x3d\x16\x3d\x11\x3d"
"\x15\x3d\x13\x3d\x17\xbd\x10\xbd\x18\xbd\x14\xbd\x1c\xbd\x12\xbd\x1a\xbd\x16\xbd"
"\x1e\xbd\x19\xbd\x15\xbd\x13\xbd\x17\x7d\x10\x7d\x14\x7d\x12\x7d\x16\x7d\x11\x7d"
"\x15\xc5\xaf\x7d\x83\x22\x8a\xd3\x3b\x18\x27\x1a\x2f\x9a\x20\x9a\x28\x9a\x24\x1a"
"\x8a\x26\x8f\xa6\x18\x4c\x39\x98\x6a\x30\xf5\x60\x9a\xc1\xb4\x83\xe9\x06\xd3\x0f"
"\x66\x18\x54\x83\xe1\x41\x3d\xc8\x83\x66\x30\xe3\x60\xa6\xc1\xc8\x60\xe6\xc1\x2c"
"\x83\x59\x07\xb3\x0d\x66\x1f\x8c\x1a\xcc\x31\x68\x07\x73\x0e\xe6\x1a\xcc\x3d\x98"
"\x67\x30\xef\x60\xbe\xc1\x37\x07\xf3\x0f\x16\x18\x2c\x38\x58\x68\xb0\xf0\x60\x91"
"\xc1\xa2\x83\xc5\x06\x8b\x0f\x96\x18\x2c\x39\x58\x6a\xb0\xf4\x60\x99\xc1\xb7\x06"
"\xcb\x0e\x96\x1b\x2c\x3f\x58\x61\xb0\xe2\x60\xa5\xc1\xca\x83\x55\x06\xab\x0e\x56"
"\x1b\x7c\x7b\xb0\xfa\xe0\x3b\x83\x35\x06\xdf\x1d\xac\x39\xf8\xde\x60\xad\xc1\xda"
"\x83\x75\x06\xdf\x1f\xac\x3b\xf8\xc1\x60\xbd\xc1\xfa\x83\x0d\x06\x1b\x0e\x36\x1a"
"\x6c\x3c\xd8\xe4\xff\xea\xed\x77\xdd\x47\x53\xff\xa8\xdd\xad\xda\xbd\xda\xa3\xda"
"\xb3\xda\xab\xda\xbb\xda\xa7\xda\xb7\xda\xaf\xda\xbf\x3a\xa0\x3a\xb0\x3a\xa8\x3a"
"\xb8\x3a\xa4\x3a\xb4\x3a\xac\x3a\xbc\x3a\xa2\x3a\xb2\x3a\xaa\x3a\xba\x3a\xa6\xfa"
"\x6d\x75\x6c\x75\x5c\x75\x7c\x75\x42\x75\x62\x75\x52\x75\x72\x75\x4a\x75\x6a\x75"
"\x5a\x75\x7a\x75\x46\x75\x66\x75\x56\x75\x76\x75\x4e\x75\x6e\x75\x5e\x75\x7e\x75"
"\x41\x35\xba\xba\xb0\xba\xa8\xba\xb8\xba\xa4\xba\xb4\xba\xac\xba\xbc\xba\xa2\xba"
"\xb2\xba\xaa\xba\xba\xba\xa6\xba\xb6\xba\xae\xba\xbe\xba\xa1\xba\xb1\x1a\x53\xdd"
"\x54\xdd\x5c\xdd\x52\x8d\xad\x6e\xad\x6e\xab\x6e\xaf\xee\xa8\xee\xac\xee\xaa\xee"
"\xae\xee\xa9\xee\xad\xee\xab\xee\xaf\x1e\xa8\x1e\xac\x1e\xaa\x1e\xae\x1e\xa9\x1e"
"\xad\x1e\xab\x1e\xaf\x9e\xa8\x9e\xac\x9e\xaa\x9e\xae\x9e\xa9\x9e\xad\x9e\xab\x9e"
"\xaf\x5e\xa8\x7e\x57\xbd\x58\xfd\xbe\x7a\xa9\xfa\x43\xf5\x72\xf5\xc7\xea\x95\xea"
"\x4f\xd5\xab\xd5\x9f\xab\xd7\xaa\xbf\x54\xaf\x57\x6f\x54\x6f\x56\x7f\xad\xde\xaa"
"\xde\xae\xde\xa9\xde\xad\xde\xab\xde\xaf\x3e\xa8\x3e\xac\x3e\xaa\x3e\xae\x3e\xa9"
"\x3e\xad\x3e\xab\x3e\xaf\xbe\xa8\xbe\xac\xbe\xaa\xba\xaf\x7f\xb9\xff\xfa\xe5\x7d"
"\x38\x9e\xa4\xc3\xe3\x44\xe3\x45\x13\x44\x13\x45\x93\x44\x43\xd1\xe4\xd1\x14\xd1"
"\x54\xd1\x34\xd1\x74\xd1\x0c\xd1\xd7\x72\x34\x63\x34\x12\xcd\x12\xcd\x16\x8d\x8a"
"\xda\x68\xae\x68\x9e\x68\xbe\x68\xfe\x68\xc1\x68\xe1\x68\xd1\x68\xf1\x68\xc9\x68"
"\xe9\xe8\x5b\xd1\x72\xd1\x0a\xd1\x4a\xd1\x2a\xd1\x6a\xd1\xea\xd1\x1a\xd1\x9a\xd1"
"\x5a\xd1\x3a\xd1\xba\xd1\x7a\xd1\x06\xd1\x46\xd1\x26\xd1\xa6\xd1\x66\xd1\x16\xd1"
"\x96\xd1\xd6\xd1\x36\xd1\x76\xd1\xf6\xd1\x0e\xd1\x8e\xd1\x4e\xd1\xce\xd1\x2e\xd1"
"\xae\xd1\x6e\xd1\x1e\xd1\x5e\xd1\x3e\xd1\x7e\xd1\x01\xd1\x41\xd1\x21\xd1\x61\xd1"
"\x11\xd1\x51\xd1\x31\xd1\xb1\xc3\xc7\x0d\x1f\x3f\x7c\xc2\xf0\x89\xc3\x27\x0d\x9f"
"\x3c\x7c\xca\xf0\xa9\xc3\xa7\x0d\x9f\x1e\x9d\x19\x9d\x1d\x9d\x1b\x9d\x1f\x8d\x8e"
"\x2e\x8a\x2e\x89\x2e\x8b\xae\x88\xae\x8a\xae\x89\xae\x8b\x6e\x88\xc6\x44\x37\x47"
"\x63\xa3\xdb\xa2\x3b\xa2\xbb\xa2\x7b\xa2\xfb\xa2\x07\xa2\x87\xa2\x47\xa2\xc7\xa2"
"\x27\xa2\xa7\xa2\x67\xa2\xe7\xa2\x17\xa2\x17\xa3\x97\xa2\x97\xa3\x57\xa2\x57\xa3"
"\xd7\xa2\xd7\xa3\x37\xa3\xb7\xa2\x77\xa2\xf7\xa2\x0f\xa2\x8f\xa2\x4f\xa2\xcf\x86"
"\x3f\x1f\xfe\x62\xf8\xcb\xe1\xaf\x86\xbb\xe1\xf1\xea\xf1\xeb\x09\xea\x09\xeb\x89"
"\xea\x89\xeb\x49\xea\x49\xeb\x7f\xbb\x9f\xa6\x9e\xb6\x9e\xae\x9e\xbe\x9e\xa1\xae"
"\xea\xa9\xea\xa9\xff\xd5\x7e\xb8\xae\xeb\xd9\xea\xd9\xeb\x51\xf5\x1c\x75\x5b\xcf"
"\x59\xcf\x55\xcf\xfd\x77\xfb\x85\xeb\x45\xea\x45\xeb\xc5\xea\xc5\xeb\x25\xea\x25"
"\xeb\xa5\xfe\x6e\xbf\x52\xbd\x72\xbd\x4a\xbd\x6a\xbd\x5a\xfd\xed\x7a\x85\x7a\xc5"
"\x7f\xb5\x5f\xbd\xfe\x4e\xbd\x46\xfd\x83\x7a\xcd\x7a\xfd\x7a\xad\x7a\xc3\x7a\x9d"
"\x7a\xe3\x7a\xdd\xd8\xaf\x17\xfb\x0d\x62\xbf\x51\xec\xb7\xac\xb7\xaa\xb7\xae\x7f"
"\x52\x6f\x53\x6f\x5b\x6f\x57\xff\xf4\xef\xf6\x37\xd4\x37\xd6\xf7\xd4\xf7\xd6\xf7"
"\xd5\xf7\xd7\xcf\xd5\xcf\xd7\x9f\xd4\x9f\xd6\xaf\xd7\x6f\xd4\x9f\xd5\x9f\xd7\xbb"
"\xd5\xbb\xd7\x07\xd4\x07\xd6\x07\xd5\x07\xd7\x87\xd4\x87\xd6\x87\xd5\x87\xff\xdd"
"\xfe\xf8\xfa\x84\xfa\xc4\xfa\xa4\xfa\xe4\xfa\x94\xfa\xd4\xfa\xb4\xbf\xdb\x9f\x5f"
"\x5f\x50\x8f\xae\x2f\xac\x2f\xaa\x2f\xae\x2f\xa9\x2f\xfd\xbb\xfd\x75\xf5\xf5\xf5"
"\x15\xf5\x98\xfa\xaa\xfa\xea\xfa\x9a\xfa\xda\xbf\xed\xbf\xbe\x4f\x63\xea\x9b\xea"
"\x9b\xeb\x5b\xea\xb1\xf5\xad\xf5\x6d\xf5\xed\xf5\x1d\xf5\x9d\xf5\x5d\xf5\xdd\xff"
"\xf3\xbe\xde\x5e\x3f\x58\x3f\x54\x3f\x5c\x3f\x53\x3f\x5b\x3f\x56\x3f\x5e\x3f\x51"
"\x3f\x59\x3f\x55\x3f\xfd\xb7\xfd\xd7\x8f\xe3\x85\xfa\x77\xf5\x8b\xf5\xef\xeb\xd7"
"\xea\xbf\xd4\x2f\xd7\x7f\xac\x5f\xa9\xdf\xac\x5f\xad\xff\xfc\xb7\xfd\xd7\x8f\xef"
"\xcd\xfa\xaf\xf5\x5b\xf5\xdb\xf5\x3b\xf5\xbb\xf5\x7b\xf5\xfb\xf5\x07\xf5\x87\xf5"
"\x47\xf5\xc7\x7f\x7b\xfc\x5f\x3f\xf6\xf7\xeb\x2f\xeb\xaf\xea\x2e\xde\xd8\xc7\xdb"
"\x9b\x5c\xe6\x7e\x1e\xe4\x71\xf2\xb8\x79\xbc\x3c\x7e\x9e\x20\x4f\x98\x27\xca\x13"
"\xe7\x49\xf2\xa4\x79\x28\x4f\x96\x27\xcf\xdf\xc8\x53\xe4\x29\xf3\x54\x79\xea\x3c"
"\x4d\x9e\x36\x4f\x97\xa7\xcf\x33\xe4\x2a\x9e\xfa\x75\xce\xb9\xc9\x33\xe6\x99\xf2"
"\x48\x9e\x39\xcf\x92\x67\xcd\xb3\xe5\xd9\xf3\xa8\x3c\x47\x6e\xf3\x9c\x79\xae\x3c"
"\x77\x9e\x27\xcf\x9b\xe7\xcb\xdf\xcc\xf3\xe7\x05\xf2\x82\x79\xa1\xbc\x70\x5e\x24"
"\x2f\x9a\x17\xcb\x8b\xe7\x25\xf2\x92\x79\xa9\xbc\x74\x5e\x26\x7f\x2b\x2f\x9b\x97"
"\xcb\xcb\xe7\x15\xf2\x8a\x79\xa5\xbc\x72\x5e\x25\xaf\x9a\x57\xcb\xdf\xce\xab\xe7"
"\xef\xe4\x35\xf2\x77\xf3\x9a\xf9\x7b\x79\xad\xbc\x76\x5e\x27\x7f\x3f\xaf\x9b\x7f"
"\x90\xd7\xcb\xeb\xe7\x0d\xf2\x86\x79\xa3\xbc\x71\xde\x24\xff\x30\x6f\x9a\x7f\x94"
"\x37\xcb\x9b\xe7\x2d\xf2\x8f\xf3\x96\x79\xab\xbc\x75\xfe\x49\xde\x26\x6f\x9b\xb7"
"\xcb\x3f\xcd\xdb\xe7\x9f\xe5\x1d\xf2\xcf\xf3\x8e\xf9\x17\x79\xa7\xfc\xcb\xbc\x73"
"\xfe\x55\xde\x25\xff\x3a\xef\x9a\x7f\x93\x77\xcb\xbb\xe7\x3d\xf2\x9e\x79\xaf\xbc"
"\x77\xde\x27\xef\x9b\xf7\xcb\xfb\xe7\x03\xf2\x81\xf9\xa0\x7c\x70\x3e\x24\x1f\x9a"
"\x0f\xcb\x87\xe7\x23\xf2\x91\xf9\xa8\x7c\x74\x3e\x26\xff\x36\x1f\x9b\x8f\xcb\xc7"
"\xe7\x13\xf2\x89\xf9\xa4\x7c\x72\x3e\x25\x9f\x9a\x4f\xcb\xa7\xe7\x33\xf2\x99\xf9"
"\xac\x7c\x76\x3e\x27\x9f\x9b\xcf\xcb\xe7\xe7\x0b\xf2\xe8\x7c\x61\xbe\x28\x5f\x9c"
"\x2f\xc9\x97\xe6\xcb\xf2\xe5\xf9\x8a\x7c\x65\xbe\x2a\x5f\x9d\xaf\xc9\xd7\xe6\xeb"
"\xf2\xf5\xf9\x86\x7c\x63\x1e\x93\x6f\xca\x37\xe7\x5b\xf2\xd8\x7c\x6b\xbe\x2d\xdf"
"\x9e\xef\xc8\x77\xe6\xbb\xf2\xdd\xf9\x9e\x7c\x6f\xbe\x2f\xdf\x9f\x1f\xc8\x0f\xe6"
"\x87\xf2\xc3\xf9\x91\xfc\x68\x7e\x2c\x3f\x9e\x9f\xc8\x4f\xe6\xa7\xf2\xd3\xf9\x99"
"\xfc\x6c\x7e\x2e\x3f\x9f\x5f\xc8\xbf\xcb\x2f\xe6\xdf\xe7\x97\xf2\x1f\xf2\xcb\xf9"
"\x8f\xf9\x95\xfc\xa7\xfc\x6a\xfe\x73\x7e\x2d\xff\x25\xbf\x9e\xdf\xc8\x6f\xe6\xbf"
"\xe6\xb7\xf2\xdb\xf9\x9d\xfc\x6e\x7e\x2f\xbf\x9f\x3f\xc8\x1f\xe6\x8f\xf2\xc7\xf9"
"\x93\xfc\x69\xfe\x2c\x7f\x9e\xbf\xc8\x5f\xe6\xaf\x72\x97\x53\xd3\x6b\x8a\xa6\x6c"
"\xfa\xcd\xa0\x19\xa7\x19\xb7\x19\xaf\x19\xbf\x99\xa0\x99\xb0\x99\xa8\x99\xb8\x99"
"\xa4\x99\xb4\x19\x6a\x26\x6b\x26\x6f\xbe\xd1\x4c\xd1\x4c\xd9\x4c\xd5\x4c\xdd\x4c"
"\xd3\x4c\xdb\x4c\xd7\x4c\xdf\xcc\xd0\x54\xcd\x70\x53\x37\xb9\x69\x9a\x19\x9b\x99"
"\x9a\x91\x66\xe6\x66\x96\x66\xd6\x66\xb6\x66\xf6\x66\x54\x33\x47\xd3\x36\x73\x36"
"\x73\x35\x73\x37\xf3\x34\xf3\x36\xf3\x35\xdf\x6c\xe6\x6f\x16\x68\x16\x6c\x16\x6a"
"\x16\x6e\x16\x69\x16\x6d\x16\x6b\x16\x6f\x96\x68\x96\x6c\x96\x6a\x96\x6e\x96\x69"
"\xbe\xd5\x2c\xdb\x2c\xd7\x2c\xdf\xac\xd0\xac\xd8\xac\xd4\xac\xdc\xac\xd2\xac\xda"
"\xac\xd6\x7c\x3b\x8e\xfb\x4e\xb3\x46\xf3\xdd\x66\xcd\xe6\x7b\xcd\x5a\xcd\xda\xcd"
"\x3a\xcd\xf7\x9b\x75\x9b\x1f\x34\xeb\x35\xeb\x37\x1b\x34\x1b\x36\x1b\x35\x1b\x37"
"\x9b\x34\x3f\x6c\x36\x6d\x7e\xd4\x6c\xd6\x6c\xde\x6c\xd1\xfc\xb8\xd9\xb2\xd9\xaa"
"\xd9\xba\xf9\x49\xb3\x4d\xb3\x6d\xb3\x5d\xf3\xd3\xff\xf0\xfa\x3d\x9a\x3d\x9b\xbd"
"\x9a\xbd\xa3\xae\x5b\xb5\xbc\x66\xe4\xda\x91\xeb\x46\xae\x1f\xb9\x61\xe4\xc6\x91"
"\x31\x23\x37\x8d\xdc\x3c\x72\xcb\xc8\xd8\x91\x5b\x47\x6e\x1b\xb9\x7d\xe4\x8e\x91"
"\x3b\x47\xee\x1a\xb9\x7b\xe4\x9e\x91\x7b\x47\xee\x1b\xb9\x7f\xe4\x81\x91\x07\x47"
"\x1e\x1a\x79\x78\xa4\xeb\x56\x18\x37\xb5\xbd\x78\x23\x5c\xb6\xfd\x76\xd0\x8e\xd3"
"\x8e\xdb\x8e\xd7\x8e\xdf\x4e\xd0\x4e\xd8\x4e\xd4\x4e\xdc\x4e\xd2\x4e\xda\x0e\xb5"
"\x93\xb5\x93\xb7\xdf\x68\xa7\x68\xa7\x6c\xa7\x6a\xa7\x6e\xa7\x69\xa7\x6d\xa7\x6b"
"\xa7\x6f\x67\x68\xab\x78\xa1\xac\xdb\xdc\x36\xed\x8c\xed\x4c\xed\x48\x3b\x73\x3b"
"\x4b\x3b\x6b\x3b\x5b\x3b\x7b\x3b\xaa\x9d\xa3\x6d\xdb\x39\xdb\xb9\xda\x8d\xdb\x4d"
"\xa2\x4d\xdb\x1f\xb5\x9b\xb5\x9b\xb7\x5b\xb4\x3f\x8e\xb6\x8a\x7e\x12\x6d\xdb\x6e"
"\xd7\xfe\xb4\xdd\xbe\xfd\x59\xbb\x43\xfb\xf3\x76\xc7\xf6\x17\xd1\x2f\xdb\x9d\xdb"
"\x5f\xb5\xbb\xb4\xbf\x6e\x77\x6d\x7f\xd3\xee\xd6\xee\xde\xee\x11\xed\x15\xed\x13"
"\xed\x17\x1d\x10\x1d\x14\x1d\x12\x1d\x16\x1d\x11\x1d\x15\x1d\x13\x1d\x1b\x1d\x1f"
"\x9d\x18\x9d\x1c\x9d\x1a\x9d\x1e\x9d\x19\x9d\x1d\x9d\x1b\x9d\x1f\x8d\x8e\x2e\x8a"
"\x2e\x89\x2e\x8b\xae\x88\xae\x8a\xae\x89\xae\x8b\x6e\x88\xc6\x44\x37\x47\x63\xa3"
"\xdb\xa2\x3b\xa2\xbb\xa2\x7b\xa2\xfb\xa2\x07\xa2\x87\xa2\x47\xa2\xc7\xa2\x27\xa2"
"\xa7\xa2\x67\xa2\xe7\xa2\x17\xa2\x17\xa3\x97\xa2\x97\xa3\x57\xda\x3f\xb5\xaf\xb6"
"\x7f\x6e\x5f\x6b\xff\xd2\xbe\xde\xbe\xd1\xbe\xd9\xfe\xb5\x7d\xab\x7d\xbb\x7d\xa7"
"\x7d\xb7\x7d\xaf\x7d\xbf\xfd\xa0\xfd\xb0\xfd\xa8\xfd\xb8\xfd\xa4\xfd\xb4\xfd\xac"
"\xfd\xbc\xfd\xa2\xfd\xb2\xfd\xaa\xed\xda\xd3\x87\xce\x18\x3a\x73\xe8\xac\xa1\xb3"
"\x87\xce\x19\x3a\x77\xe8\xbc\xa1\xf3\x87\x2e\x18\x1a\x3d\x74\xe1\xd0\x45\x43\x17"
"\x0f\x5d\x32\x74\xe9\xd0\x65\x43\x97\x0f\x5d\x31\x74\xe5\xd0\x55\x43\x57\x0f\x5d"
"\x33\x74\xed\xd0\x75\x43\xd7\x0f\xdd\x30\x74\xe3\xd0\x98\xa1\x9b\x86\x6e\x1e\xba"
"\x65\x68\xec\xd0\xad\x43\xb7\x0d\xdd\x3e\x74\xc7\xd0\x9d\x43\x5d\x37\xfd\x63\x4d"
"\x37\x63\x37\x53\x37\xd2\xcd\xdc\xcd\xd2\xcd\xda\xcd\xd6\xcd\xde\x8d\xea\xe6\xe8"
"\xda\x6e\xce\x6e\xae\x6e\xee\x6e\x9e\x6e\xde\x6e\xbe\xee\x9b\xdd\xfc\xdd\x02\xdd"
"\x82\xdd\x42\xdd\xc2\xdd\x22\xdd\xa2\xdd\xfa\xdd\x06\xdd\x86\xdd\x46\xdd\xc6\xdd"
"\x26\xdd\x0f\xbb\x4d\xbb\x1f\x75\x9b\x75\x9b\x77\x5b\x74\x3f\xee\xb6\xec\xb6\xea"
"\xb6\xee\x7e\xd2\x6d\xd3\x6d\xdb\x6d\xd7\xfd\xb4\xdb\xbe\xfb\x59\xb7\x43\xf7\xf3"
"\x6e\xc7\xee\x17\xdd\x4e\xdd\x2f\xbb\x9d\xbb\x5f\x75\xbb\x74\xbf\xee\x76\xed\x7e"
"\xd3\xed\xd6\xed\xde\xed\xd1\xed\xd9\xed\xd5\xed\xdd\xed\xd3\xed\xdb\xed\xd7\xed"
"\xdf\x1d\xd0\x1d\xd8\x1d\xd4\x1d\xdc\x1d\xd2\x1d\xda\x1d\xd6\x1d\xde\x1d\xd1\x1d"
"\xd9\x1d\xd5\x1d\xdd\x1d\xd3\xfd\xb6\x3b\xb6\x3b\xae\x3b\xbe\x3b\xa1\x3b\xb1\x3b"
"\xa9\x3b\xb9\x3b\xa5\x3b\xb5\x3b\xad\x3b\xbd\x3b\xa3\x3b\xb3\x3b\xab\x3b\xbb\x3b"
"\xa7\x3b\xb7\x3b\xaf\x3b\xbf\xbb\xa0\x1b\xdd\x5d\xd8\x5d\xd4\x5d\xdc\x5d\xd2\x5d"
"\xda\x5d\xd6\x5d\xde\x5d\xd1\x5d\xd9\x5d\xd5\x5d\xdd\x5d\xd3\x5d\xdb\x5d\xd7\x5d"
"\xdf\xdd\xd0\xdd\xd8\x8d\xe9\x6e\xea\x6e\xee\x6e\xe9\xc6\x76\xb7\x76\xb7\x75\xb7"
"\x77\x77\x74\x77\x76\x77\x75\x77\x77\xf7\x74\xf7\x76\xf7\x75\xf7\x77\x0f\x74\x0f"
"\x76\x0f\x75\x0f\x77\x8f\x74\x8f\x76\x8f\x75\x8f\x77\x4f\x74\x4f\x76\x4f\x75\x4f"
"\x77\xcf\x74\xcf\x76\xcf\x75\xcf\x77\x2f\x74\xbf\xeb\x5e\xec\x7e\xdf\xbd\xd4\xfd"
"\xa1\x7b\xb9\xfb\x63\xf7\x4a\xf7\xa7\xee\xd5\xee\xcf\xdd\x6b\xdd\x5f\xba\xd7\xbb"
"\x37\xba\x37\xbb\xbf\x76\x6f\x75\x6f\x77\xef\x74\xef\x76\xef\x75\xef\x77\x1f\x74"
"\x1f\x76\x1f\x75\x1f\x77\x9f\x74\x9f\x76\x9f\x75\x9f\x77\x5f\x74\x5f\x76\x5f\xf9"
"\x9f\x35\x00\x80\xff\x94\xf2\x3f\xb8\x7e\xcf\x7f\xe7\x73\x45\xac\xdd\xfe\xf1\xf2"
"\x5e\xb1\x26\x7e\x7c\xda\x57\xff\xed\x6d\x3e\x30\xd5\x3f\x5c\xde\xb7\xb8\xed\xad"
"\x1c\x1f\xef\xfc\xe1\xb4\x1b\xfe\xd3\xfa\x97\x5f\x3b\xb6\x4c\x83\x91\x05\x52\x9a"
"\xe0\x5f\x7c\x6e\x9c\xf4\xcf\xfb\x5b\xd3\x16\x69\xab\xb4\x4d\xda\x3c\xcd\x6b\x58"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\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\x3f\xda\x83\x03\x12\x00\x00\x00\x00"
"\x41\xff\x5f\xf7\x23\x54\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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"
"\x27\x75\x17\x93\x33"
;

int main(void)
{
unsigned int iters = 48;
unsigned int requested_threads = 4;
unsigned int iter;
int err;

if (requested_threads != 4)
fprintf(stderr, "this interleaving uses exactly 4 racing threads (requested %u)\n",
requested_threads);

if ((void*)syscall(__NR_mmap, 0x1ffffffff000ul, 0x1000, 0ul, 0x32ul,
(intptr_t)-1, 0ul) == MAP_FAILED ||
(void*)syscall(__NR_mmap, 0x200000000000ul, 0x1000000, 7ul, 0x32ul,
(intptr_t)-1, 0ul) == MAP_FAILED ||
(void*)syscall(__NR_mmap, 0x200001000000ul, 0x1000, 0ul, 0x32ul,
(intptr_t)-1, 0ul) == MAP_FAILED) {
return 1;
}
if (mknod("/dev/loop0", S_IFBLK | 0600, makedev(7, 0)) < 0 &&
errno != EEXIST) {
return 1;
}
if (prctl(PR_SET_NAME, "syzreproM", 0, 0, 0) == -1) {
return 1;
}
const char* reason;
(void)reason;
if (write(1, "executing program\n", sizeof("executing program\n") - 1)) {
}

memcpy((void*)0x200000000200, "exfat\000", 6);
memcpy((void*)0x200000001540, "./file1\000", 8);
memcpy((void*)0x2000000000c0,
"iocharset=cp1251,utf8,allow_utime=00000000000000000000016,gid=", 62);
sprintf((char*)0x2000000000fe, "0x%016llx", (long long)0);
memcpy((void*)0x200000003fc0, exfat_image_zlib,
sizeof(exfat_image_zlib) - 1);
if (syz_mount_image(0x200000000200, 0x200000001540,
0x1000000,
0x2000000000c0, 5,
sizeof(exfat_image_zlib) - 1,
0x200000003fc0) < 0) {
return 1;
}

sync_fd = openat(AT_FDCWD, "./file1", 0x101042, 0x1d8);
if (sync_fd < 0) {
return 1;
}
for (unsigned int i = 0; i < 3; i++) {
truncate_fds[i] = open("./file1", O_RDWR | O_CLOEXEC);
if (truncate_fds[i] < 0) {
return 1;
}
}
write_buf[0] = 0xff;

err = pthread_barrier_init(&race_barrier, NULL, 4);
if (err) {
return 1;
}

for (iter = 0; iter < iters; iter++) {
pthread_t threads[4];
struct race_arg args[4] = {
{.index = 0}, {.index = 1}, {.index = 2}, {.index = 3}};

for (unsigned int i = 0; i < 4; i++) {
err = pthread_create(&threads[i], NULL, race_thread, &args[i]);
if (err) {
return 1;
}
}
for (unsigned int i = 0; i < 4; i++) {
void* thread_ret;

err = pthread_join(threads[i], &thread_ret);
if (err || thread_ret) {
return 1;
}
}
}

pthread_barrier_destroy(&race_barrier);
for (unsigned int i = 0; i < 3; i++) {
if (close(truncate_fds[i]) < 0)
fprintf(stderr, "close(truncate_fds[%u]) failed: %s\n", i,
strerror(errno));
}
if (close(sync_fd) < 0)
fprintf(stderr, "close(sync_fd) failed: %s\n", strerror(errno));
return 0;
}
==================================================================

Crash log:
==================================================================
WARNING: block/bio.c:1052 at bio_add_page+0x410/0x6d0 block/bio.c:1052, CPU#2: syzrepro0/401
Modules linked in:
CPU: 2 UID: 0 PID: 401 Comm: syzrepro0 Not tainted 7.2.0-dirty #3 PREEMPT
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.13.0-1ubuntu1.1 04/01/2014
RIP: 0010:bio_add_page+0x410/0x6d0 block/bio.c:1052
Code: 74 24 48 0f 85 c3 02 00 00 41 01 1e 89 df 89 f8 48 83 c4 70 5b 41 5c 41 5d 41 5e 41 5f 5d e9 87 9b 91 02 cc 0f 0b 31 ff eb e4 <0f> 0b 31 ff eb de 0f 0b e9 e9 fe ff ff 0f 0b e9 93 fe ff ff 44 89
RSP: 0018:ffff88810ac17620 EFLAGS: 00010246
RAX: 0000000000000000 RBX: ffff888108dc6c00 RCX: 0000000000000000
RDX: 0000000000000000 RSI: ffffea00041880c0 RDI: ffff888108dc6c58
RBP: 1ffff110211b8d8d R08: ffff888108dc6c57 R09: ffff888108dc6c6c
R10: ffff888108dc6c48 R11: ffffed10211b8d8b R12: ffffea00041880c0
R13: ffff888108dc6c58 R14: dffffc0000000000 R15: 0000000000000000
FS: 00007d6401a936c0(0000) GS:ffff888168853000(0000) knlGS:0000000000000000
CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
CR2: 000055773800d000 CR3: 000000010b40a000 CR4: 00000000000006f0
Call Trace:
<TASK>
bio_add_folio+0x33/0x40 block/bio.c:1107
iomap_add_to_ioend+0xc95/0xf10 fs/iomap/ioend.c:257
iomap_writeback_range fs/iomap/buffered-io.c:1892 [inline]
iomap_writeback_folio+0xc44/0x1470 fs/iomap/buffered-io.c:2018
iomap_writepages+0x121/0x220 fs/iomap/buffered-io.c:2081
exfat_writepages+0xdd/0x110 fs/exfat/inode.c:287
do_writepages+0x2ea/0x4c0 mm/page-writeback.c:2571
filemap_writeback mm/filemap.c:387 [inline]
filemap_fdatawrite_range mm/filemap.c:412 [inline]
file_write_and_wait_range+0x1b7/0x230 mm/filemap.c:786
simple_fsync_noflush+0x6c/0x120 fs/libfs.c:1558
exfat_file_fsync+0xe8/0x190 fs/exfat/file.c:653
generic_write_sync include/linux/fs.h:2666 [inline]
exfat_file_write_iter+0x5f6/0x6e0 fs/exfat/file.c:793
do_iter_readv_writev+0x363/0x4f0 fs/read_write.c:-1
vfs_writev+0x25a/0x7d0 fs/read_write.c:1058
do_pwritev fs/read_write.c:1154 [inline]
__do_sys_pwritev2 fs/read_write.c:1212 [inline]
__se_sys_pwritev2+0x9c/0x1b0 fs/read_write.c:1203
do_syscall_x64 arch/x86/entry/syscall_64.c:63 [inline]
do_syscall_64+0xf7/0x370 arch/x86/entry/syscall_64.c:94
entry_SYSCALL_64_after_hwframe+0x76/0x7e
RIP: 0033:0x7d6401b98829
Code: 08 89 e8 5b 5d c3 66 2e 0f 1f 84 00 00 00 00 00 90 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d a7 15 0d 00 f7 d8 64 89 01 48
RSP: 002b:00007d6401a92e78 EFLAGS: 00000216 ORIG_RAX: 0000000000000148
RAX: ffffffffffffffda RBX: 00007ffdbf4043c0 RCX: 00007d6401b98829
RDX: 0000000000000001 RSI: 00007d6401a92e90 RDI: 0000000000000004
RBP: 00007d6401a92ea0 R08: 0000000000000000 R09: 0000000000000000
R10: 0000000000000e7b R11: 0000000000000216 R12: ffffffffffffff80
R13: 0000000000000000 R14: 00007ffdbf4041c0 R15: 00007d6401293000
</TASK>
---[ end trace 0000000000000000 ]---
==================================================================