mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-29 05:40:25 -04:00
- added the firmware loader for digigram VX cards.
This commit is contained in:
parent
0a7d39663c
commit
47ce0c1fe1
21 changed files with 3534 additions and 1 deletions
2
Makefile
2
Makefile
|
|
@ -1,6 +1,6 @@
|
|||
VERSION = 0.9.0rc7
|
||||
TOP = .
|
||||
SUBDIRS = ac3dec as10k1 envy24control sb16_csp seq sscape_ctl
|
||||
SUBDIRS = ac3dec as10k1 envy24control sb16_csp seq sscape_ctl vxloader
|
||||
|
||||
all:
|
||||
@for i in $(SUBDIRS); do cd $(TOP)/$$i; ./cvscompile; cd ..; make -C $$i; done
|
||||
|
|
|
|||
18
vxloader/Makefile.am
Normal file
18
vxloader/Makefile.am
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# # Process this file with automake to produce Makefile.in.
|
||||
AUTOMAKE_OPTIONS = 1.3 foreign
|
||||
|
||||
CFLAGS = @CFLAGS@ -DDATAPATH=\"$(datadir)/vxloader\"
|
||||
|
||||
SUBDIRS = firmware
|
||||
|
||||
bin_PROGRAMS = vxloader
|
||||
|
||||
vxloader_SOURCES = vxloader.c
|
||||
|
||||
EXTRA_DIST = depcomp
|
||||
|
||||
alsa-dist: distdir
|
||||
@rm -rf ../distdir/vxloader
|
||||
@mkdir -p ../distdir/vxloader
|
||||
@cp -RLpv $(distdir)/* ../distdir/vxloader
|
||||
@rm -rf $(distdir)
|
||||
56
vxloader/README
Normal file
56
vxloader/README
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
VXLOADER - Firmware loader for Digigram VX soundcards
|
||||
Takashi Iwai <tiwai@suse.de>
|
||||
|
||||
|
||||
GENERAL
|
||||
=======
|
||||
|
||||
Vxloader is a helper program to load the firmware binaries
|
||||
onto the Digigram's VX-board sound drivers.
|
||||
The following modules require this program:
|
||||
snd-vx222, snd-vxpocket, snd-vxp440
|
||||
These drivers don't work properly at all until the certain firmwares
|
||||
are loaded, i.e. no PCM nor mixer devices will appear.
|
||||
|
||||
|
||||
USAGE
|
||||
=====
|
||||
|
||||
When vxloader is invoked without options, it will probe all existing
|
||||
soundcards until a valid VX-driver is found. If a valid VX-driver is
|
||||
found, vxloader reads the board type from the driver. The corresponding
|
||||
firmware binaries are then read and transferred to the driver.
|
||||
Finally, vxloader initializes the PCM and the mixer devices on the
|
||||
driver for making the soundcard full functional.
|
||||
|
||||
Instead of auto-probing, you can specify the card number or the hwdep
|
||||
device name via -c and -D options, respectively.
|
||||
|
||||
% vxloader -c 1
|
||||
% vxloader -D hw:0
|
||||
|
||||
For loading the firmware automatically after the module is loaded, use
|
||||
the post-install command. For example, add the following entry to
|
||||
/etc/modules.conf for VX222 driver:
|
||||
|
||||
post-install snd-vx222 /usr/bin/vxloader
|
||||
|
||||
FILES
|
||||
=====
|
||||
|
||||
The firmware binaries are installed on /usr/share/vxloader
|
||||
(or /usr/local/share/vxloader, depending to the prefix option of
|
||||
configure). The file "index" specifies which files are used for each
|
||||
type of the soundcard. There are "board", "vx222", "vxpocket" and
|
||||
"vxp440" types for the old VX222, VX222 v2/Mic, VXpocket v2, VXpocket
|
||||
440, respectively.
|
||||
|
||||
|
||||
COPYRIGHT
|
||||
=========
|
||||
|
||||
Copyright (c) 2003 Takashi Iwai <tiwai@suse.de>
|
||||
Distributalbe under GPL.
|
||||
|
||||
The firmware files included in firmware sub-directory are copyright
|
||||
by Digigram S.A.
|
||||
50
vxloader/configure.in
Normal file
50
vxloader/configure.in
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
AC_INIT(vxloader.c)
|
||||
AM_INIT_AUTOMAKE(vxloader, 1.0)
|
||||
AC_PROG_CC
|
||||
AC_PROG_INSTALL
|
||||
AC_HEADER_STDC
|
||||
AM_PATH_ALSA(0.9.0)
|
||||
|
||||
dnl kernel header files
|
||||
AC_MSG_CHECKING(for kernel header files)
|
||||
AC_ARG_WITH(kernel,
|
||||
[ --with-kernel=ver specify kernel version (for example 2.5.5-pre1)],
|
||||
[kerneldir="$withval"], [kerneldir=""])
|
||||
if test "$kerneldir" != "" -a -r "/lib/modules/$kerneldir/build/include/sound"; then
|
||||
kerneldir="/lib/modules/$kerneldir/build/include"
|
||||
AC_MSG_RESULT($kerneldir)
|
||||
else
|
||||
if test -z "$kerneldir"; then
|
||||
AC_MSG_RESULT("not specified")
|
||||
else
|
||||
AC_MSG_RESULT("directory /lib/modules/$kerneldir/build/include/sound not found")
|
||||
fi
|
||||
kerneldir=""
|
||||
fi
|
||||
|
||||
dnl path for sound/asound.h
|
||||
AC_MSG_CHECKING(for directory with ALSA kernel headers)
|
||||
AC_ARG_WITH(soundbase,
|
||||
[ --with-soundbase=dir specify base directory with kernel sound headers (optional)],
|
||||
[soundbasedir="$withval"], [soundbasedir="$kerneldir"])
|
||||
if test "$soundbasedir" != "" -a -r "$soundbasedir/sound" ; then
|
||||
ALSA_CFLAGS="$ALSA_CFLAGS -I$soundbasedir"
|
||||
AC_MSG_RESULT($ALSA_CFLAGS)
|
||||
else
|
||||
if test "x$prefix" != xNONE; then
|
||||
aprefix=$prefix
|
||||
else
|
||||
aprefix=$ac_default_prefix
|
||||
fi
|
||||
if test -z "$soundbasedir" -a -r "$aprefix/include/sound"; then
|
||||
ALSA_CFLAGS="$ALSA_CFLAGS -I$aprefix/include"
|
||||
AC_MSG_RESULT($ALSA_CFLAGS)
|
||||
else
|
||||
AC_MSG_RESULT("not specified - using C compilator defaults")
|
||||
fi
|
||||
fi
|
||||
|
||||
CFLAGS="$CFLAGS $ALSA_CFLAGS"
|
||||
LDFLAGS="$LDFLAGS $ALSA_LIBS"
|
||||
|
||||
AC_OUTPUT(Makefile firmware/Makefile)
|
||||
11
vxloader/cvscompile
Normal file
11
vxloader/cvscompile
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#!/bin/bash
|
||||
|
||||
aclocal $ACLOCAL_FLAGS
|
||||
automake --foreign --add-missing
|
||||
autoconf
|
||||
export CFLAGS='-O2 -Wall -pipe -g'
|
||||
echo "CFLAGS=$CFLAGS"
|
||||
echo "./configure $@"
|
||||
./configure $@
|
||||
unset CFLAGS
|
||||
make
|
||||
20
vxloader/firmware/Makefile.am
Normal file
20
vxloader/firmware/Makefile.am
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
cfg_files = index \
|
||||
bd56002.boot \
|
||||
bd563s3.boot \
|
||||
bd563v2.boot \
|
||||
bx_1_vxp.b56 \
|
||||
bx_1_vp4.b56 \
|
||||
l_1_v22.d56 \
|
||||
l_1_vx2.d56 \
|
||||
l_1_vxp.d56 \
|
||||
l_1_vp4.d56 \
|
||||
x1_2_v22.rbt \
|
||||
x1_1_vx2.rbt \
|
||||
x1_1_vxp.rbt \
|
||||
x1_1_vp4.rbt
|
||||
|
||||
EXTRA_DIST = $(cfg_files)
|
||||
|
||||
firmwaredir = $(datadir)/vxloader
|
||||
firmware_DATA = $(cfg_files)
|
||||
|
||||
BIN
vxloader/firmware/bd56002.boot
Normal file
BIN
vxloader/firmware/bd56002.boot
Normal file
Binary file not shown.
BIN
vxloader/firmware/bd563s3.boot
Normal file
BIN
vxloader/firmware/bd563s3.boot
Normal file
Binary file not shown.
BIN
vxloader/firmware/bd563v2.boot
Normal file
BIN
vxloader/firmware/bd563v2.boot
Normal file
Binary file not shown.
BIN
vxloader/firmware/bx_1_vp4.b56
Normal file
BIN
vxloader/firmware/bx_1_vp4.b56
Normal file
Binary file not shown.
BIN
vxloader/firmware/bx_1_vxp.b56
Normal file
BIN
vxloader/firmware/bx_1_vxp.b56
Normal file
Binary file not shown.
24
vxloader/firmware/index
Normal file
24
vxloader/firmware/index
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
# boot firmwares for digigram VX cards
|
||||
|
||||
# VX222 v2 / Mic
|
||||
vx222.xilinx x1_2_v22.rbt
|
||||
vx222.dspboot bd563v2.boot
|
||||
vx222.dspimage l_1_v22.d56
|
||||
|
||||
# old VX222
|
||||
board.xilinx x1_1_vx2.rbt
|
||||
board.dspboot bd56002.boot
|
||||
board.dspimage l_1_vx2.d56
|
||||
|
||||
# VXpocket
|
||||
vxpocket.boot bx_1_vxp.b56
|
||||
vxpocket.xilinx x1_1_vxp.rbt
|
||||
vxpocket.dspboot bd563s3.boot
|
||||
vxpocket.dspimage l_1_vxp.d56
|
||||
|
||||
# VXpocket 440
|
||||
vxp440.boot bx_1_vp4.b56
|
||||
vxp440.xilinx x1_1_vp4.rbt
|
||||
vxp440.dspboot bd563s3.boot
|
||||
vxp440.dspimage l_1_vp4.d56
|
||||
|
||||
BIN
vxloader/firmware/l_1_v22.d56
Normal file
BIN
vxloader/firmware/l_1_v22.d56
Normal file
Binary file not shown.
BIN
vxloader/firmware/l_1_vp4.d56
Normal file
BIN
vxloader/firmware/l_1_vp4.d56
Normal file
Binary file not shown.
BIN
vxloader/firmware/l_1_vx2.d56
Normal file
BIN
vxloader/firmware/l_1_vx2.d56
Normal file
Binary file not shown.
BIN
vxloader/firmware/l_1_vxp.d56
Normal file
BIN
vxloader/firmware/l_1_vxp.d56
Normal file
Binary file not shown.
798
vxloader/firmware/x1_1_vp4.rbt
Normal file
798
vxloader/firmware/x1_1_vp4.rbt
Normal file
|
|
@ -0,0 +1,798 @@
|
|||
Xilinx ASCII Bitstream
|
||||
Created by Bitstream D.26
|
||||
Design name: lr_deca2.ncd
|
||||
Architecture: spartanxl
|
||||
Part: s20xlvq100
|
||||
Date: Mon Jan 14 13:28:20 2002
|
||||
Bits: 179160
|
||||
1111111100100000001010111011110100011111
|
||||
01011011111111010111111101011110111111101110101111111001011111101011111110111110111001011111101111111110101110111011101110111011011010110101101110110111111001011111101011101011101111111011011110110101111110111110111011111110000
|
||||
01111111111111110111110111110111110111011111011111111111110111110111111111011101111111110111110111111101011101111111011111111111011111111111011111011101111111110111110111111111011111111101110111111111111111011111111111111111100
|
||||
01111111101111111111111011111011101111111111111111111111111111111111111111111111111111111111111111011111111111111111111101111111111111101111111111111111111111111111111111111110111111111111111011111111011111101101101111111110001
|
||||
01111111111111110111111011011111111101111111110111111111011111111101111111110111111111011111111101111010110111111111110111111111011111111101111111110111111111011111111101111111110111111111011111111101111111110111111111111111000
|
||||
01111101101011111111100010111110011111111011111111101110111110111111111011111111101110111110111111111001111111101111111111101111111110011011111011101111101110111110111111111001111111101110111110011011111011111111101111111110001
|
||||
01111111111111100111100111011110111101111111100111101110111111111001111111100111101111011110111011111101100111111111100111111110011110111001111111100111101110111111111001111011110111111110011110111011111011101111101111111111101
|
||||
01011111111111111111111011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011
|
||||
01111111101110111111011111111101111111110111111111011111111101111111110111111111011111111101111111110101111111011101111111011111111111111111110111111111011111111101111111110111111111011111111101111111110111111111011111111111001
|
||||
01111111111111101110111111111011101111111101101111011111111101011011110111101110110111111101111111111101101111011101101111010110111111011111110111101111010111111101111011101101111111010010111111111111110101111110110111101111100
|
||||
01111111111111111111111111111111111111111111111111101111111111011111111111111111110111111110111111111111111111111111111111111111111111011101111111111111100111111111111111111111111111111111111110111111111011111111111111111111001
|
||||
01011111111111111111111011111111111111111101101111111110111111111111111111111111111111111111111111111110111111111111111111111111111111101001111111111111111111111111111111111111111111110110111111111111111101111111111111111110100
|
||||
01111111111111111111101011111110111111111111111111111111101111111111111111111111101111111111111110111101111111111101111111110111111111111111111111111111111111101111111111111000111111111111111111111110111111111011100111111111001
|
||||
01111111111111111111111011111111010011111111111111111011111111111111111111111110111011111111111111111111111111111101111111111111111110110011111111111111111111111111111111111111111111110111111111111111111110111111111110011110000
|
||||
01111111111111110011111011101111111110111110110011011111101111111100111111110011111111101101111110111111110011111011110011111111001111111110011110110011001111101111111100111111111011110111001001111110110111111011111111111111100
|
||||
01111101111111111001111111001111011000111111111011111111101111111110111111111011111111001111111110111111111011111011111010111111101111110110111110111111111111101111111110111111110011111011111111111110011111111011111111011111101
|
||||
01111001110111001011011100111111110111111110001001111000111111100011011110001111111000100111110011101111001101111101001111011100110110110111111111001101111000110011110011111011001101101100111101100010011100001111111111111110101
|
||||
01111111111111111001101111101111111110110110111011111111100101101110110111111011110011101111101110110111111011011101111011011011101111111110110111111111111111101100111110111110111011011111111011111110101111111011111001111111110
|
||||
01111100111111001100011100111111110011111111001110111100110111110011011111001101111100111111110011111111001110111111001110111100111111110011011111001111111100111111110011111011001111111100111111110011111111001101111101001110111
|
||||
01111110111111110111111111011111111101111111110111111111011111111101111111110111111111011111111101011111110111111111110111111111011111111101111111111111111111011111111101111111110111111111110111111101111111110111111111111110110
|
||||
01101111111111011110111101111111110111101111011111111101111111110111111111011111110101111011110101111110011111111101011111111101111011100111111110011111011101111111100111111111011111101101011111100111110111011101111111111110101
|
||||
01011111111111011010111101101111111110001011011011101101100110110110011111011011101001100110110100011010011001111101011000101101101011110110111011111001101101100110000110101111011011101101110110110110001011011011111101011110011
|
||||
01010011111111111011111011101111110010111011111001101111100110111110011010111011111111111111111110011011111111101111111011101011101111111110111010011001111111100110001111111111111011001111110111111110111111111111111111101111010
|
||||
01111111111111111111111111111111101111111111111111011111101111111101101111111111111111111011111110101111111111001111111011111011101111111110111110011111111111011111101111101111111011111111111111111101111111111111011111111010001
|
||||
01111011111111111110111011111111111011001111111111111111111001111111110111111111111111111110101111011111111111101111111111111111111011111111111111111111111111111111011111111111111111111111111110111111111011111111111111111110110
|
||||
01111111111101110111110110011111001101111100110111110011111111011111111111110111110111111111011111111101111111000111111111111011111111111111111101110111110110111111111111111111001111110011111111101111111110111111111111110111000
|
||||
01111111111111111010111111101111111110101110111011111011101011111110011110111011111111101111111110111110111011111111111011111011101111111110111111111011111111101111101110111111101011111011101111111110111110111011111111111010011
|
||||
01111111101010111111011011101111111111110110111111111111110101101111011111111111010111111111111111110110111111111110111101011001000111111111110111111111111111111100100010111111111111011001101111111111101110111111011111111110000
|
||||
01111111100000111100111011111011101111101111111111111011111011111111111011111110101111111111011111101111111111110111111110110101111010111111101111111111111011111011111111111101111010111101111111101111111111111110110111111110101
|
||||
01111111111111111111111001111111011111111101111111011111111111101111110110111111111011111101111111111111111111001111111111101111111111111111111110111111011111111111101011110111111111111001111111011111111100111111101010111010001
|
||||
01111111110111111010011111111111111111110110111011111111101101101110111111111111011011111011111111110110111111111011111111011111111111101111100111111010110111101101101111101101111100011011111111111110111110111111010111101110100
|
||||
01111011101111111110101111111011111111111111111110111111111111111111101101111110110111111111111111101011111111111111111111111111111001111111011011111110110111111010011111111011111111001111101111011110011101111110101110111110011
|
||||
01111111111010010101110111011110111111111101111111111100011111111111111011111111110100011010011110111101111011011111111011011101011110110000111111111111100101111111011111111101111111110111001110110101111011111111111111111110111
|
||||
01111111100101010111011101111101011111101101111111010110110111111111111101111111110110111111111111111111111111111111111111111101011101111011111001111111101111101110111111110011111111111110111111011001111111111111110111111110101
|
||||
01111111111111100111110110011111111101111101110111100111101111011111100111111111011110011101111100111101110110000111110111010111011111011001111111111110011111011101111001111011110010100110011101111100111101100001111111111111111
|
||||
01111111111011010111111101011111110010111111001011111111111111110101111111111111011111111111110011111111001111111110001011111100101111110101101111010111111111101110110101101111111111111111101111111111111110010111111110101111011
|
||||
01111111111110111110011011111011010111011110011101111111111111101111001111111110011111111111110111011110011111011111011111111011010001111111111111111110111111100011101111101011111011111011111111111110011110111110111111111111100
|
||||
01111111111011001011001000111101110010110110101000111100111101101111111101001111100100110010110101110010010111111110010101010110101111100010110110001011111100111110100011110111001101000001111100110011111010101111101111101010001
|
||||
01111111101111001111111100111110110110011111101101111101101011111111100101001111111101101011001111111111111111011111111111111110110101110011111111110110111101101011110011111111011010111101111011110101100111101111000111111111110
|
||||
01101111111111110111111111010111101101111111110111001011011110111101111111110011111011001101011101101111111110011011110111111111111100001101111011100011111011111101111101110110111111011101010111101111111111110111111111100011001
|
||||
01011111110111110111011111011011111111110111111010010111011111111000111111111111111111101101111111111101010111101111110110111011011111111101111111110011011111111111111101111111111111111111011111111110110111110011111011111111010
|
||||
01111111111111001101111100111111110111111011011111011101011101111101110111011101111101110111110111011110111111111011010111111111011111110011101111010111101111110101110011111111111111111110110111111111110111001111011011111111101
|
||||
00011111111001111111100111111010010111111001011111100101111110011111111001111110100111111110101111111001111111100111111110101011111111111111111010111001100111100110011111111111111100100101111010011111111111111101111111111110000
|
||||
01101011111111111111001110111100110011110011011111001101111100111111110011111111001111111010100011110011001111001110001111100111111110011111111001111010001111110110101111101111111110001101111100111111111111111110111111011111101
|
||||
01111011111111111111101001111010010101110011010111101001011110010111111010011111100111111110010101111010011011001111010111100101111110010100111010111111101001111010011111111001111101111111111110010101111001111101101011011111110
|
||||
01101111111111111111101111111110110111111111010111101101011110011101111011110111001110111100111111111001100101111111111111100101111111110100111011111111101101111100111111110011111111100111111110110101110011111111100111111111001
|
||||
01111110111111111110110111011101001101111010110111010001011101100111101100011010111111111011101110100110111110101010111010011011101011111111111100111111110111111111111111101111111110111101111111011111101111111110111111111101100
|
||||
01101111111111111101111111100110100111111110011111101001111110101101101101111111101011100110001111101010111010111011111110111111110111111111010100111101111111110111111111011111111101111101110111111111011111111101111111110111011
|
||||
00111111111111111101111101101010110101111001010111101101011110111111111011111111101111111100111111111011111110100111111111101001111010110101101010111111101101111110111111110011111101111111111010110101010011111111101111110110000
|
||||
01101111111111111111101011111111010101111101010111110101111111011111111101110001100011100110111110111101111011110110111011101101100110010101111011111111110101111111011111001011111110111111111111010101101011111100110111110111011
|
||||
01101111111111111011011011111101101111111111111111011111111111111111110111111111111111111111011111110110111111011011111111000111111100011111100100111111011111111101101110110100111011011011111101101110110100111011011010111001010
|
||||
01001111111111111001101111110110111111011001111101101011110110011111111010111101101111111110111111011011111101101111111101100111110110011111111011111111111011111110111110011011111001101111110110011110011011111001101111111111000
|
||||
00011101111010110001100011010111001101111110110111011011011111111101111100110111110011011001111101010010110101011011110101111011011011111101111101110110111011011111011100101100110001110111011111111100011101110010100010111001010
|
||||
01101111111011111111101011111110001111110011111111110111111110111111111000111111011011111110101111111110111111011110111111110111111110101111111110111111100011111111101111111000111111101111111110101111111110111111111010111110010
|
||||
01111101101110111111011011111101101111111110111111111011111111101111111100111111110011111110111111110110111111111010111111111111110110101111111011111111110011111110101111011010111111111011110110101111111010111101110011111110011
|
||||
01111111110111111001111111111111110101110111010111111101011101111111111111011101011111010111110111010111110101011111011101011111010111110101110111111111111101111111110100000111110000111101011101111110000111111010011111111111110
|
||||
01111101111111111000101111100111110101000111010100011101010000111111001111010100011111100010110101001111111100111111010101101111110111110101001111111100111111010110110100001111011000101101000011111110011111111000111110111110000
|
||||
01111101110111111100001011111111111101110111010111001111011101110111111011110101111111110111111100110111111011111111110011111111110110110101110111011111101101111111110101110111110101111101111111111110111111111111011111111101000
|
||||
00111111101111111110110011111111000101111100010111110001011111001101111100111111110011111111001111111100111111110011111111110011111011000101111100110111110011011111000100111100011111110011011000011111111100111111110010111110101
|
||||
01111111110111111111111111011111110101111111110111111101011111111111111111010111111111101111110101111111111111111110010111111111100111110100101111111111111111111111111110111111110011111111101100011110111111111011111111111111011
|
||||
01111111111111111110111101111011110101101111011110111101011011111111111111010111111111111111110101111111111111111111010111111111111111110101111111111111111111111111111111111111011111111111111111101111111111111011111110111011100
|
||||
00111111111111111111111111011111111111111111110111111111111111110111111111111111111111101111111111111111111111111110111111111111111111111110111111011110111111111011111110011111110001111111101011011110011111111101111110111110001
|
||||
01111111111111111111111101111111111101111111010111111111011111111101101111111110111111101011111111101111111110111110111110111111111011111110111111110111111111111111111111111111011111111111111101111111111111111111111111101110110
|
||||
00101111111110001011111101111111110110111111011011111100101111010110111111011011111100101011111100111111011111111111011111111111101111100110110111011011111101111111011111011111010011111111101011110010111111011011111111111100001
|
||||
01101110101101011101001111110101111111010111111101010110100101111111010111101101011101110101111111010111111101010111011100010111110001011111010101011101001101110101111111010111101101010111110101011011010001011101011010110110011
|
||||
01111100111010110111111110000101110010011110000101111111011111110000111110010111111011000111101101111110100001111111111101111101001110110000111111011111111111001111111101111001110011111101001111111100110101010001101111111110010
|
||||
00111111111101111111111101100111101010111011111111111111011111110110111111110011101111111110111101111111011011111111111111011110011111111101100111111111111111111110111111010110100111011110011111101001011111011111111111101100001
|
||||
01111101111111101110110110111100111111111011101010111011100010111010110010111111101000101111011111111110101101111100111111111011111110110111111011111010111100101111101011101011111111111111101011111111101111101110111111011110111
|
||||
01111111111110000011111100010111110101011111111011101101111111111101111111111100111111110001110101101011010111111111010011101111011111011101101110001110111101011110110001011111011001111111011111111101111010001011111111111101111
|
||||
01111111110110101101011110111111100101111111111111011111101111111111111111111111111111111101110110111111110111101101110110110110110111111011111100111111111011011111111111101110111010111001111110111011101110111111111111111110111
|
||||
01011111111101110111110111011111011001111111100111111111111111010111011111110111111011011110111101111111010111011110000110111111011111111001111111100111110101111111110101111101110110111111011101001100101101100011101111111101000
|
||||
01111111111111001011111111111111110100110111010110111111111011110111111111011111111100111011100110111111011011110111011111111111101111110100111111011011011101111010100111111111011111111001101111110011011111011111111111111110110
|
||||
01101111100111011101111111101101011111110111111111111111110101111101111111011011111111011111110110111111011011011101110101111111101111111111111111110111111111011111110110111111011011001101101101110111111111110111011111101110001
|
||||
01111111111110101101100100111111110101111111001111111010101110000011111111101111110110110111010010101000001011111101001111011100111101010011110111000111111010111111111011111001011111111101001110010100001011111111101111111110101
|
||||
01111111110011101101010101011101011111101111011011111111101101110011111100101111110110111111011110111111001111111111010111111101101111010011101101110111011111101111011110101111011101111111111101111111111101111111110111111111100
|
||||
01111111111111010110111111111111110101000011111111011111010011111111101111110111111101011111111001110101111110111111110111101001011111111101101100110111101111011101111101111111111010111111101111110100111111110111111111101011010
|
||||
00111111111111111111111111111011111111111111111101111111111110111101111111100011011111011001111110111111111111110011100110110101011001111101010111100100011111011011111101101101110011110111111111111111101111010110011111111110100
|
||||
01111111110111111101111111111101111111111111111111111101110111111101111111101111111110111101110111111111111111111111110111011111111111110011101111110101111000111111110101111110101111111111111111111111011111011111111111111110001
|
||||
01011111110011011110100111111010010111101001011110100111111110011110011010111100101011110110011111111010111111101010111111001111100110011111111010011000111111110100110111011010111111101011111110011111111010011100111111111010110
|
||||
00101011111111011111001111111100110111110011111111100100111100111111011001111010100111110000111111101001100111100111111110111111110000111111111010011011101011011100110001011010111111101011111010101111101001000100111111010100001
|
||||
01111011111010010111100111101110011111111001011111101001001110011111101010111111100111111110011111111010110111101011111111111111111110100101111010011111101001100110010101111010111111101011111110011111111001010111001111011111001
|
||||
01101111111011111111001110111110111111110011111111100100110100111111111011111111001111111100111111111011110111101111111111111111111111110101111001011111101110110100110101111001111111100111111100111111110011010111100111110111011
|
||||
00111111111000111111011011100111011101111111110110111101001010101111111101111111111111111011111111111100110111110011111110011011111111111111111110011111110111001011100101101110111110111011111111111111101111010110111110111101000
|
||||
01101111110110111111101011111111111101011111010101011001011011100110010110111001111111110111111111110100110101010010111101111011110111111111011000011101111101011101000101011000111101100011110111111111011111010101111111110111001
|
||||
00111111111111111111101111111111110101101011110101101001011110011110101011111010101111111100111111101011110110101111111101000111111010100101111011011111001101011010110101111010111111001111111110111111110011010111111111111100011
|
||||
01101111111111111111110111111100110101111101010111101101111111010111111001111111110111110000111111110001110111100110111110101111111110110101111001011111111101100011010101001011111100101111111111011111001011010100001111110110100
|
||||
00011111111111111111111111111111111111111111111111010011111101101111110100111111011011101101101110110011111011110111111011000111111101001111110101111111011011111111111110110001111011010111111101111110110100111011011011111001101
|
||||
01111111111111111101101111111110111111111011111111101111111110111111111011111001100111100110111111111001111101111110111001100111110110111111011010111111101111110110011110011111111001101011111111101110011011111001101111111010100
|
||||
00101101111110110111001011011101111101111101110111100011011111011101110010110000111111001111011101111110110111111011110001101011011011011101110111110111110011001111111100111111110011011111011011111100111101110011110010111001111
|
||||
01101101111000111111101011111110101111111110111111111011111111111111111010111111101011111111111111110110111111100011111111111111111110101111111010111111110011111111111111111010111111101011111111101111111110111111001011110111101
|
||||
01111111101100111111101011111111001111110110111111110111111111101111110111111111101011110111101111111011111101110110111111111111110110101111010111111111110011111111101111011011111101101111111110101111011010111101110010111111100
|
||||
01111111111111011111111111010101111101110111110111011111010101110101010111111110111111000010111100010110110000011111010000101111011111111111111111110111111101000011111110001111110010111101111111111110001111110000011111111111101
|
||||
01111101111111111100011101100110110110101111011000111011000011110101011110110000111111000111111110011110111100101110010000111111001011111110001111011000111101010000111110001111011000111101110110111110011111110000111110111110110
|
||||
00111111111111111111011111101111100111111111111111111111011111110101011111011111001111011100111111010111111011011011010011111111011110111111111011110111101111101111111111111110110111111111011111111111111010110111111010111101101
|
||||
01111101110111011111110011111111001101111100111111110011001111000101111100110111110011001111001111111100111111110011010111110011011111001111111100011111110011111111001110111100011111110011011111001110111100110011110011111110011
|
||||
01111111101111011111111011111011110101111111110010111111111111100101111111111111111111000111111110111111111011111111111011111111000111111110011111111001111111011111111110011111110011111111101111111110111111110001111111111111000
|
||||
01111111110111111111111111111111110101111111111011111101011111110101111111110111111111011111111110111111111111111111111111111111011111111111111111111111111101111011111111111111011011111111000111111111111111110111111110111111110
|
||||
01111111111111111101111111111111111111111111110111111111110111111101101111111101111111011111111111101111111011111110111011111111011111111111101111111111111101111111110111111111110111111111111111111110111111110111111111111111111
|
||||
01111011111111011111101111111111111111111111111111111101011110110101111111111111111111011011111110111111111101111111111110111111011111111111111111111001111111011111111111011111011110111111001111111111101111110110111111110111011
|
||||
01101111111110111011111111111011110010111111111011111111111111110110011111011111111000101111110010011111011001111111011011110101111111110010111111011111111101111111110010011111011101101000101111110110010111111111111110111100000
|
||||
01000011101101111101011111110101110111010001111101000111110101111011010111011101000110110101011011010111011101001110011101011011110101011011010111111101001101110101101011010111011101011101110101111111010111111101011111111111010
|
||||
01111100111011010011111111011111101110111111011111111011001111110100110011110001111111011110111100110111010111111111010011101110011110101100111111100011111111001011111111111110110001111111011101110010110111110011101010011111101
|
||||
00110111101110011111111011011111110111110111111101111110001111111111010110100010111111111011101010100111110011101111110111110111110111011011001110011111111001011011111111111111011111111111111111101010010100101011101111110101100
|
||||
01110111110011101111101011101010011111101111111010111011111111110101111111111001111111001011111011101010111001111101011011111110101111111010111111101011111111111010111111110011101011101010111110111111101111101011001101111011111
|
||||
01101111101100110110111111000111110001111011011011101101111110110101111110110111111111011111010111111111010111011110000111111101011111101101111101111011101101011111011111101111010010111101111101101101011010010111111010111100110
|
||||
01101111111111111111110111111101101011111110110111111111101111111101111111011111011010111111111101111101011011110111111111111111101111111011111010111111111011011111101111111011110111110111101101111111110111010111111011111111101
|
||||
01101111111111000111111101011111111001111101111101110110011111010001111001111111101111011110111001111111110111111101000011110101011111011101111011110111111101101011111101111111000110111111101101110101111101110111110111111100011
|
||||
01001111111111011111110100111111111110011111011111111111111111110111111111010110111111111010110111111011001110101101011111111111111011111110111111001110111111111111110011111111011100111101111111111010111111011111011111111011110
|
||||
01010111101111011111110111011111111111101111110111111111111111110111101111111111011111100101110111111111110111111001110111010111101001111110111111011111101111111011110111100010011110101111011101111111000111011010111111111011000
|
||||
01000111111111001111110110110111010111110111111110011101111100110010111111001011011101011100110101100111000111111111111011110100111111100100011100001111111000111111110001111111000101111110111111010011110111001111100111110110110
|
||||
01011111111101001111110110111010010111101101111111101101110011110011011010011011111111110011001111001101111011011110111111101101011111111111110011001100111101011110111110011111111011110110111010000011011111011011110111111110000
|
||||
01110111110111110111111111111101110101111011110110010101011011111101111111110111101101001111111101111111010110111111111010111011101111110101111110110111101111110111110101111111110100101111111111111101101111111011011111101101001
|
||||
00011111110101101101011101001101011111111111110011111001011011011010110111110111011111111111111101111111110011111111111101011111011111111111100111100111111111111111101111111101101101111011001111011101111111110111111111111111010
|
||||
01110111101111111101111111111111111111011111001111111111111111111111111111010111111111111011110101111111110111111110111111111011011111111111110111110111111111111111111111111111111111111111011111110011101111101111111111101111010
|
||||
00011111111010111110101011111011110110011001111101001101100110010111111111011100101011111110100111111010111110100110111111101001110110101110111001111101001101110110101111001111111111101011111110101111111111111101111111111000100
|
||||
01101011111010111111101011111111110111010011111101101011111100110011111111001101100111111110100111111010111111001111111111101000010110011111111001111111111100010110011111011010111111101000111110011101111111111111111111010110001
|
||||
01111011111111111011111111111110101111110011111110111101010110010101111010010111101011001111111111111111111111111110010011101001101110101111111111111101001111101010101111111111111111100111111111111110110011111101001111010010100
|
||||
01101111111011101101101111111110111111110011111111101101111100110111111001010111101110101100111111111001111111111111000111100100111110111111111011110111111110111110111111111111111111001111111110111011010011111111001111110111000
|
||||
01111111111101111111100011011110000110111111011110010001011110100100101111010111110011011011110101111110111111111111111000111011100011000101111100111111111011100111001111100110111110111101011010001111111110111110111111111101111
|
||||
01101111111111111001011001110110100111011111111101101001011111100101011110010101010011001011101111110100111101111111111101010011111001000101010100111011010011110101001111011110011101011011111011101110010100111101111111110010001
|
||||
00111111111111111111101101111110111111111011111101101101011110010101110001010110101011111110011111111010011110101111010111001101111110110101101111111110111111111110111111011001111111111101011010001111111111111101111111110111011
|
||||
01101111111111011011000111011111011110111101111110100101011111010100011011010111101111011100011111111010011111110110010001111101101011010101111111111111101011101110001111101000011100001111111110111111111010111110101011110010101
|
||||
01101111111111111111111111111101101111111111111111110111101111111111100101111011010111111101101111110110111111011011111111011011111111111111110111111011011011111111111110110110111011011011111101001110111111111011011011111100000
|
||||
01111111111111111101111111111110111111011111111111101111110110111111111110111101101011100110011111011011111111101111111111100111110111111111011110111101101111110110011110011001111001111111111110111110011111111001101111111111001
|
||||
00111101111010110101111011011111001101001110110111011011011001101101101010110101011111010110101101111100110111110110110011101011000111101101101111110001110011000111101100001010110011111111011101101101011110110000110010111000010
|
||||
01101101111011111111001011111111011111110110111111011011111111001111111111111111111011111110101111111001111111101011111111111011111110001111111110111111110011111110001111111111111111101011111110001111110110111111110011111111011
|
||||
01111111111110111111101111111111101111111100111111110111111111001111111111111111101011111111011111111111111111101011111111011111111111011111011101111111110111111111011111111111111101101111111111011111111101111111011011111110001
|
||||
01011111111111110101111111011111110111011111111111111011100111111101111011110000111101010111110111111111110111111110110011011101000101111111110110111000111101000001110100001111110000101101111101111111011111010000011010111111101
|
||||
01111101111111111000111011100110110101001111110001111011100001111111111111111100101101000011111111010110110011111111110100111101010011111110001011111000111101010110110100001010110000111111110110101110011010010000111111111110101
|
||||
00111111111011111101011111011100111101110111111111001111101101111111111111111101101011110100111111110111110111111110110111011111111111101111111111111101111111001111111110111111111011111101011111111111010111010011111111111100000
|
||||
01111101110111111111110011111111001110111100111111110011011111001111111100111111110011111111001101111100110111010011110111110011101111001111111100011111110001011111001111111100111111110011011111001111111100010111110011111110001
|
||||
01111111101111111111111111101111110101111111111001111111111111111111111111111111111111111111111111111111111011111111110111111111011111111110111111111111111111111111110100011111110111111111011111110101111111111001111111111110011
|
||||
01011111111111111111111111101111110101111111111111111111111111111111111111111111111111111111111101111111111011010110110111111101011111111111111111111111111111111111110101111111110111111111011011110101101111111101111110111011110
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011101111101110111111110101111111101111101110111111111111111111110111111111111110101111111111111111110111111100
|
||||
01101111111111111110111111100111111111101111111110111111111011111111111111111110111111111011111101101111111011011111011111111111111111111111111111111111111111111111111111011111111111111111111111110101111111111111111111100110011
|
||||
01101111110110011010111101111111000111110101011111111101101111100111101011111011011100101111110110011111111011111111111000111101100111110010111101011001111111111111110010111111001011111101110111110100111111011011011011110100101
|
||||
01101111101110111101011101110101010111010101101101011101110101110111010000111101010110110101111111000110111101011111111101000110110100111011010100111001001111110101111011010111101101011101110101110111010110111101010111111110111
|
||||
01110100111011001111111011001100111110101111110011011001001111111100111111010111111011001110110000011111010111011110010011111101001111111100111011000011111111000100111111111111111111111111110101111100010111000011111111111110110
|
||||
00111111110101111100110110011111111011111111101111011110010001101001111111111110011110110111011011100111111010011011101011111101011011100100011011101111010101111111101111101011111111110111111011100111111111011111011011111100101
|
||||
01111011111011111011111011111111111111101011110101111111111110101111101111101110111011011100111011111001110110111100110011101111101111101111110110110111111111001110111110111011111110101011111110111011110111101110111111011110000
|
||||
01101111110111000001111100111111110100111111011011110101011011110111111111110111111101111111100101111111110111110111011011111101111111111101111111001110100111011011101101111111001011111111011111110101101010000111111111110101000
|
||||
01111111111111101111011011111111100101111101110101111101011111101110111111011111111111011111110101111101011111111110111011110111011101011011111111111111111011111111101011111110111111110111111111111001111110111111110111110111000
|
||||
01111111110101100111010111011000111000111111100111101110011111011101111101110111111111111111111001101111111110111101110111001111111111111111111111110111011101011101111101111111111111111100011111111101110111000101001111111101000
|
||||
01111111111011111111111000111011110101111110011011101111101111110011011011011111111101101111110110111111011111111100011111111111111010111110111111011011110101101111110111111111011110111101101111110110110111010011111111111110111
|
||||
01111111111101111111001101110111111111101111110100111111111111111101111111011011111111011111111101111111011111101101011010110111111011101111111111110011111001101111100110111011110111001101111111111100101010111100111111111011110
|
||||
01111110101111000110110100111111111011111001111101111100111110110001111110001011111100100111110010111101000011111011001111011000111110110101010010101110111110111111010011111111011110111000101101110011101111001111111111111010000
|
||||
01111111111101110110111101101111111110111101111111111101101111111011110101001111010101011111010101110010110110011110010111111100111101111111001111111010011111011011110101011101011111011101011011110101111111010111010111110111101
|
||||
01111111111111010111111011011111111111111111111110101101011011110101111111110011001111111111111111111111111011111111111111001011111011011100111110010111111111111101111110111011111111111111011100110101100011110111101111111111010
|
||||
00111111111101110011111110001111000100110111010011110101001110111101110110111111111111010111111101100111010111111110110110111111001101111110111111010011111011011111101111100111110101110110111111100101111111110110111111110101100
|
||||
01111111101110101111011111011111111111101111111111111111111111111101111111011111111111010111111011011111111111101111110101111110111111110111111111111111111110111111111111111111110111111111111101101111111111001111111111111110000
|
||||
01011111110011111111100111111010101110011111111001100111111110010111101010011110100111101010010111110011011100100110111111101001111111111111010011011101001111110010101111111010111100100101111100111111011001111111111111111001110
|
||||
00101011111111110111100100111100111110100011111111001110011100110111111010111111001111111100111111110011011101001111110111100111011110010101110011011110111110001110100011111111111111001110111111111001110011111110111111010110010
|
||||
01111011111111111111100111111110101111101010010101100111011010100101111111011111111111111110010111111010011111111111111111100111011110011111011010011101111111011110011111111111111101100111111110101101011001111111111111011111110
|
||||
01101111111111110111101111111110011111111111010111001111011110110101111111111111001111111110111111111001011111001111111111101101111100110101111011011111111111011110111111111001111111101111111110111101110011111111111111110111101
|
||||
00111111111110111111010001001001101111111111111111111111111111010101111110011111111111111111010111111111011110111111111010100001111110100101100100011110011011011111001111111010111110110101111101001101101111111110111111111111111
|
||||
01101111111100111101111011111010101111111111111101111111110111110101011000111111011011110110101111110110011101111110111111111001111111100101101010011101111011010110000101111111111101111101111110101101111111111101111111110110101
|
||||
00111111111101111110100011111110101111111011010111101111111010111101101010111111101111111110101111101010011111101111111111100101111010010101111010011101000111011010101111101010011111101011111010101101011011111101001111111101011
|
||||
01101111111111111111101011101110101111111101010111110111111111011101111010110111110101111110111101111010011100110110111001000101111111010101101011011110001111011110101111111010011100101111111110111101111101111110101111110111101
|
||||
00011111111111111111001111101100111110111111111111001111111101101111111111111111011011111101001111111111111011011011111111111111111111111111110100111011001111111101111111110110111011010011111111011111111111111011010011110110010
|
||||
01111111111111111111100111100110011111111011111111100111111110111111111011111101111111111110111111011001111001101111111111101111110110011111111011111001100111110111101111011011111001101111110110111111011011111001101111111111111
|
||||
00111101111010110111101011000111101101111101110111111011011111011101100111110111111011011101101101111110110010011010110011110011011111111101110110110001111011011011111101111100110011110111011101101101110111110001110110111001110
|
||||
01101101111011111111101011111100101111111010111111001011111111101111111010111111001011111100111111111001111111001011111111110111111110101111111100111111110011111110101111111001111111101011111110001111111110111111101011110111010
|
||||
01111111101110111111011111111111011111111100111111011011111110101111111011111111101011111111101111111111111101110011111111111111111110101111111101111111110111110111011111111111111101110011111111011111111010111111110010111111111
|
||||
01111111110111110111111101100111111100010111010111111111111110110101111011111111011111011111110111111111010000111110111001001111011111111101100010010000111101011011111111111111110000111111111100110101101111111000011111111010101
|
||||
01111101111111110001111101010111101110011111010001111111101110110100111111111100011111100010111111000111010001111111111101111111110001111101001111010000111101000111111101000110110000111111010101110100010111111000111110111111101
|
||||
00111111101111111111111111011101111111110111010111111111111101110111111011111111111111111111111111111111111111101111111011111101011111111111110111010101101111011111111111110011110011111101111101111111110110111011111110111110011
|
||||
01111101111111111111110011101111001110111100010111110011111111000111111100010111110011111111001101111100111011110011111111110011011111001111111100010111110001111110011101111100110111110011111111001111110001111111110011111110011
|
||||
01111111100111111111111101011111111111101111010110111111011111111101111111111111111111011111110111111111010011111110111001111111011111110101111111111011111101101110110111111111111001111111111111111110110101111011111111111110100
|
||||
01111111111111111111111101011111111111111111010111111111111111111101111111111111111111111111111101111111010011111110111111111111111111110101111111111111111111011011101111111111111110111111011111111111111110111101111110111110111
|
||||
01111111111111111111111111110111111111111111110111111111011111111111111111110101111111111111111111011111111110111111111111111101011111110111111111111011111111101111111111111111111111111101111111111110111001111011111111111110101
|
||||
01111111111111111101111111111111111111111111010111111111111111111111111111011111111111110111111111111111111111111110110010111111011011110111101111111101111111111110111101011111111111111111110111111111010111111111111110110110011
|
||||
01111111111110111101111111111111101111111111111011111101101111110110111111011011111011101111110110111101011111111011011011111100101111110110111111110011111100101111110110101111011011111001101011110100111111111110111111111101010
|
||||
01011110101111111101011111110001011111010010111101001110110100111111010111111101011111110101111111010110101101001111011101001110110100010111010101111101011001110001001011010101011101001001100101111111000111111101011101111111100
|
||||
01111100111011111111111111000111111101111111011011111101101101110011111111000001111001111111110000011111110111010111010011011111000011110100111011110111111111011100110100111111010011111101011111111000111110110101101110111111010
|
||||
00111111111110111010101110011001101101110101011101011001101101001110111101100111111111111111011011111101111101110111111011010111111111111111111111110011011111011011111110101110100111111111011011111001101011111110101101111100100
|
||||
01111011111011111010111011111111111111110111111110111011111101111111111011111011101111111111111010111111110101111100010111011101011111110101111111111111011111110110110100111111111111111111110110101111101111110011101111111010101
|
||||
01101101111111010101011111110011010001111101011001111111110110110111111111110110110100101011100001111111010111111111110111111111101111110010111111110111101001111011111111111101001100111101011111110101111111010110111111111100110
|
||||
01101111111101010111111111111111101011111110110111110111111111001101111100011111111111111111111011101111110111110101111111110111111111111111101111111111111111101111101111110110111111111001011101011010111110010101111011111111100
|
||||
01111111110111100111111010011111111111111011111111111111111111111111110111110011110110001110101100111101000110111100010111111111011111011001111001010111111111111111111111101111111010110111011111111111111101110111010111111001100
|
||||
01111111111111011011110101111011111111111111111111111111111110111111111011010111011101111111001111111111111111101111001110101101001111110100111011010011101111111111110111111111111111111101111111111111011010011011011111111110000
|
||||
01111111111111011111111111011110011111111111111111101111111101111111111111111011111111011011111110101011111111111101110110111111101011111111111110111010111011111110111101111111111111111101100111101111101111011011011111110110110
|
||||
01111110111101001111101100111101100011111001101111101001100111011111011111001111101111111111111011110111000111111110000111111111111110110001111111101111111110111111101011111111001111011100001101010001111111010011100111111110001
|
||||
01011110101101110101111101011001110011110111101111011101111111001111111111101111110111110111011110111111111011111111111011110111111101101011101111110111111111011001111101100110011011111111101111111110111101111101110111111111111
|
||||
01111111111111100110110011111101111101111111110001111111011110111101110111100100111111011101111101111010111111001111110011101111011111111110111111110111111111011111101111111011010110001111011011111100011111111111111110111100010
|
||||
00111111110111100011011111111111111101101101110111110011011111011100100101100101111110001001111011101111110010111011110110011101011001111110100110010110111011111111111100100111111111111000001111111110010111110111011101111110101
|
||||
01111111101111110101101111111111110011111111001101111100110111110011011111101111011111011111111111111111110111111111010101111101111110111111111110011111111101111110111101011111111111111111111111110111111111101111111110111111110
|
||||
01011111110011111001101011111010011110001111111001111111111000111111101001011110100111111110011111001111111100100111111101100111111110101111011001011101101011110110101111101010111111100111110110011111111001011101111111111000100
|
||||
00101011111111011011100111111100111110111111111111101011111111111111110011010111111100111110101001011111111101100110111111001111111110011111011111011011001111101110100111111001111111001100111110101111110011011010111111010110010
|
||||
01111011111111111111111111111100111010100011101101100110101110011010111001011011100111011010011101101001101011111111101001100101011010011111111010011110101001011110010101110011101011101011010111110100111001011111111111011110000
|
||||
01101111111011111111101111111111111110111111111111001111101100111110110011000111001101111110011101110011111011100111111111100101011100111111111001011111111101011110010101111001111101100100111110010100110011011111111111110110110
|
||||
00111111111000111111100011111111101111110110111111111111111101101111111111011000111011011011101101101110111110101011111100011011111011101100100110011110111011111111101111110110111111111011001011111111101111011110111111111110010
|
||||
01101111111111111101011001110111011111011010111101011011110110101111010110011111010001110110001101011000111101011010111101111011110101001110111010011101110111110110001111111111111101010001101101101111011111011101111111110110010
|
||||
00111111111111111111101011111110101011111011101111101010111111111011101011011101111111010110111101111011101111101111101111000101010110101111111010011110101001011110101111111010101111101011000110110101011011011111111111111100011
|
||||
01101111111111111111101111111110101111111101111111101011111111111111111101011011001101111110001101000001111100000110111100101001011110111110001010011100001101011110101111111010111111101001111011010101111101011100101111110011011
|
||||
00101111111111111111010111111101111101111111110111011111011101111101110111111011011011111111111110110111110011011111110011011111111111011110101111111011011111111100111111110011110111111111101101111111100110111011010011111110110
|
||||
01011111111111111111111011111110101111111011111111111011111111101111111110111101101111111110111110011010111011111011111011111011111110111111111001111001101011110111111111011111111111101111100110101111111011111001101111111111001
|
||||
00111101111110110111111011011101101101111100110111111011011111101101101110110111011111011111011100110110110011101010110010111111011111001100111110110010110111011111111101111110110111001011001101101101111101110011110111111001010
|
||||
01101101110010111111001011111100101111110110111111001011111101101111110010111111111011111111111111111000111111101011111111111011111100111111111001111111111111111110111111110010111111101011111111001111111010111111101111110110000
|
||||
01111111101010111111101111111111011101111100110111110111011111011101110110111111101011111111111111011101110111101111110111101011111111111111111111111101111111110111111111111101110111101111111111011111111010111101111011111111000
|
||||
01111111110111011111011101111110111111110111111111111111111111111111111111010101101001011110110110001011111001111110111011111001011100110100111111010010111101011011111111111111111111111111101001111111111111111010011111111011101
|
||||
01111101111111110010101111001010111111011111111100111111110111111111001111010100011101000111100110011111111101111111111101111101001111110101001111010001101101000110110111010011111100111101100101111110001111111001111110111110110
|
||||
00111111111111011111111101111111111111111111111111111111111111111111111111010011111111111111110110111111111011111110111111111111111101110101111011010111111111111101110111111111111111101111111101111111111111111111011111111111001
|
||||
01111101111111110111110011011111001111111100111111110011111111001111111100010111110011111110000111111100111111110011111111110011111111000101111100010111110011111111001111111100111111110011111111001111111100111111110011111111100
|
||||
01111111101111011111111101101111111110101111111010111111101011111110101111110011111101011111110110011111111001111111111011111101001111110100111111111111111101001111110111111111111111111111100111111110101111111001111110111110111
|
||||
01011111111111110111111111001111111111111111111111111111111111111111111111110111111101011111100111111111111111111110111011111101001111110101101111111111111101011111110111111111111111111111111111111110111111111101111110111111100
|
||||
01111111111111011111111101111111111110111111111011111111101111111110111111110011111111111110100111011111111101111111111101111111111111111100111111111111111111101111111111111111111110111111110111111111111111111111111110111111011
|
||||
01101111110111110111111111001111111111111111111111111111111111111111111111111110111111110111110111111111111111111110111011111111111111110100111111111101111111110111111111011111111111111111111111111111111111111111111111101110111
|
||||
01101111111110010011111101111111111110111111001011011111101110110010110111011001111101101111110010011110111011011111001010111001101101110100111110010011111111111111110110111111011011111111111111110111011111001001111111110110001
|
||||
01001111101111101101011110110101111111000101011101010111110101100111010101110101011101110001111111000001111101011111011101001111110100010111010011101001001111110000111011000001101101010111110001111111010111111101011111111011111
|
||||
01111100111010111111111011011111110100111111110011101101001111111100111001110001111101111011011010111111010111011111110001111000001101111101111110110011011111001111110110111111010011111111001111111000111011101111111111111110010
|
||||
00110111100011111101110111111011111101111110110111011011001111101101111110011111111111111110110111111111110111110111101011101101111101111111111011100111011010010111100111110110010110011010011101111010110101111101011011110101001
|
||||
01110111111010111011101111011110100111111111011110101101111111110111111010101110111111110101101111111110111110110101101101111110111011111011111111111101111111111011111111011111111111101111110001111101110011111111001111011110011
|
||||
01001111111111001011111101011011110101001001010011011001011110100101111111000011110100111111110100111111110011111111110111101111001111111101111111110110101001010111011110111111110110111101011110110101111110110011011011110010010
|
||||
01111111111101111111111101101111010110111110011001111001101111110110111111101111111011111111111101111110101111110110101110111111111111111011111101011111111101011101111111111110101111100110101111101110111111101111110011111110100
|
||||
01001111101111100111111110011101111001111111111111010111011111111111111111111111011110001011010100111101100111101101111111110101111111111111110111110111111110011111111101111111110111011111011111110101111101110010111111110110100
|
||||
01011111110111011011111101101111010100111111011011111101101111010111101111011111101001110111111111111111010011111111010110111101001110110111111111011110111101111111110010101111011011111101100111110010111111001111111111111111001
|
||||
01111111111111110111111101111110111111101111011110111101101110111101110111011111111111010011001110011111111111111001111110111111111101111101111111011011101101111111110111111011110011001101101111110111101101011111111111111111000
|
||||
01101111111011111011111110101111101111111110001111011000111111110011111110101111011100111100110011110111001011111111001111111110111110110011111111011111111110101100110000110110010011111110100111010001111111101111001111111111110
|
||||
01011111111101111111110111010111111111111111001111111100111111100011101111110111101101011111110110111111001111111101011011110111101111110110111011011101011110111111011110111111111111111110111111001110011100110110110111111111101
|
||||
01110111111111110111011111011110101101110011110111101111011100110101111101111111111111011101111111011011110111001110110110100111011011111101111110110011101011001001111101100010111111111011111011111101111011010111111111101110100
|
||||
00100011110111100010011110111111111010101111110110111111011011101111111101111110111110001111111111101100111011010111110111011110101111111001101011000110111110111111110101111111111101110111011111010100100111111001111111111100011
|
||||
01111111111111110111111011111110111111101111001111111100111111111111111111111111111111010111111111111111011111111111010111111111111111111101111111111111111111111111100111111111111111111110111111110111111111111111111111101010000
|
||||
00011111110011111000100111111010011111111001111111100111111111110111101001110111100111111110010111111010111111100111011110101011110010011111101010011101111111110110011111011010111000001111100010011110111010111101111111111001010
|
||||
01101011111111111100001111111111111111111111111111001111111100110011110011111110111111111100111101111010001111101010000111100101101000111111111001011011111101101110011110111001111011101011111010010011110011111011111111010111011
|
||||
01111011111111111111100111111111111101111111010110111111111010010101101001111111100111111110010111111111010111101011010111001111111110101101101010011111111111111100111110110011101011111111110111111101111010010111111111011111001
|
||||
01101111111111111111001111111110010111110011010111111111111100110111110011111111001111111100111101111001111111101111010111111111111111111111111011011111111101111111111111011001111111111111111110010111111111010111111111110110100
|
||||
01111111111111111111111101111101100101111111110111101001011111100100111010111110111111111011110111100110110110010011111010111111111001100100101100011110111011111001101111101010111101111011111111101101111010111110111111111110100
|
||||
01101111111111111101111111010110100101010110011101111101110101000110011111111101111111110111111101101010011110101010111101111111110111100101111101011010110111110111111111011111111101010011110101000111011111111101111111110111100
|
||||
00111111111111111111101101111010101101101011010111101101011000110101101011111101101111110110110111111010010111101010111101101011111111010101011111011011111111110110111111101111101111101111111110101101111111010101101111111100001
|
||||
01101111111111111111110111011110100111111101010111110101011111110100111101111111110111111111011101111010111111101111111011101011110010100110111010011110101011111010000111000011111111000111111110110001111010010110110111111111101
|
||||
01011111111111111111011011111111111111110110111111011011111101111111110110111111001111101101101111111111111111110111111111111111101101101111110011111011001111101100111110100110110111111111111101011111110111111111011011111110001
|
||||
01011111111111111111101111111110111111111011111111101111111111101110011011111111111111100110111111111011111111101111111001111111100111111111111111111001111111100111111110011011111111101111110111101111111110111101101111111111000
|
||||
00111101111010110110110111011000101101111000110111110111011110101101011000110110111111000011011101110110110111001011110001111011001111111100111111110011111111000110101100111100110111100011011111101100101111110111110110111001011
|
||||
01101101111111111111101011111110101111111110111111101011111111111111111011111111101011111110101111111000111111111010111111011111111110101111111111111111111111111110101111100010111111111111111111001111101011111111101111110110111
|
||||
01111111101110111111101011111101111111111100111111101011111111111111111110111111101011111110101111111101111111011111111111111011110110101111111111111101111111111101101111011101110111111111110111011111111111111101111010111110100
|
||||
01011111110011111111011101111111111101110110011111001111111111111101111111011111011101000101111111111111111111011110110101111111100011110100110011111010111011100011110100001111111111111111111001100111010011110110001111111011011
|
||||
01111101111111111100111101101011101110101111110001101111101111110100011111011100111101001110111111001111010101101011111001101111000111110101011110110001111111100011110100001111111100111111100011110111001111011000111110110110011
|
||||
01111111101111111111111111111111111101111111011111011001011101111101111111011110111101001111110101110011110111011111111110111111111111110101111111111111101101111110101111111111111111111111111111110111111111110111111110111101110
|
||||
01111101111111111110110011111111001111111100110111110001011111000101110100111111110001011111000101111100011111110010111011110011101111000101111100111111110001101110011110111100111111110011111101010110110001011111000111111111001
|
||||
01111111111111010111111101111111111101111111011111111111111111111101111111111011111111111111110101111111110111111111111001111111100111110100011111111001111111100111011100011111111111111111101111010110111101110111110111111110000
|
||||
01111101110111010111111101111111111111111111110111111111111111110101010101111101111111111111110101101101011110111110111110111111111111110101111111111111111111111111101111111111111111111111101101100111111010011111111010011110000
|
||||
01111101101111010110111111111111111101111111011110111101011111111101111111111011111111111111111111111111110111111111111111111111110111111101111111111101111111110110011101111111111110111111110111010110100101110101000111111111001
|
||||
01110111111111010111111111111111111110111111110011111101011111110101110111011111111111111111111111110111011111111111111111111111111111111100011111111111111111111100111111011111111111111111111100110111110011011111011111101110101
|
||||
01111111111110001011111111001011110010111111011111111111001111110100111110111111111100101111110010111111001010111110001010111101101111110111111111111111111100101101100110101111011011111111001011110100101111011111111010111111001
|
||||
01011110101111101101011111110101011011010101111101011111110101111011010110111101010110110101010111010011011101010111101101001001110100010111010011111100001111110101110111010101011101010111110101110111010010011101011001111010000
|
||||
01111111110011110011111111011011111100111111100000101011111110111100011011110001111111000101111101111111110111111111110011111101111111111110110111110011111010001111110100101111011111101111011111111101011111110011111110100110001
|
||||
00111111111011111111011011101011101010110111101111001111101011110110111111011011111010101111101110110110110011111111101111111111110011100111110111011111111101111111101001111110111111010111101111101111111101100110111111111100000
|
||||
01111011111101010110101111011110111011111110110110111011111111111011101010101111101110111101111011111110111011111010101011011111110111111111010111110101111110111110101111101110111110111011011011101100101110111011110101111110100
|
||||
01011111111111001101110101010111011101111111010111111100111101100101111111110100111100110111110011101111000001101111111111101100111011110011111010010110111000001111110100111111010001111101011111111100111110010111111111111110011
|
||||
01111111111101111111111101101111101011111101111011010111111101111101111101111111110011111111111111110101101101100101111111011011111101111111110111011011111111111111110101011101011011110101101111011011111111110110111011110111001
|
||||
01111111110111110111111111011111111100001111010111111110011111010100101111010010111111011111011101111111110111111100100111111111011111111101111111111111110101011011111111111111111111111111111111111101110111010111101111110010011
|
||||
01111111111111111110111111101111110111111011011110111101011011111111111111011111111100111111110011101111011111111111011110111101110011110111111111011110101100111111111110111110111011111101001001110010111011111011111111111111101
|
||||
01111110101111111001011111101110110110111111011010111111111011111110111001111111111111011011111101101111011011111101011101101101101110110110111111011110111011011101111111101111111111011111110111110111111111111001111111111110000
|
||||
01111110111001010011001010101101100001110110000111111100111111110011011111101011100100110101100101101110101111110000111111111100111111100001111111111111111110111010111011111110000011111000110011100011101111000100011111100111010
|
||||
01011110111111111111111111010011111011111111101111110101010111110110111101111011011100111111111111111111111011111110111111011000111111111110111111111111111111101111111011111111110111111101101111110110011111110110110101111110101
|
||||
01000101111111111101111111111111111101111111111011101111011101110101111011111111111111111111111101111110111111011011110111101101011111111111111010110011111111011011111101111011010111101011011110101101111110111111101111101111010
|
||||
00111110110111111011111111111111111000111111110110110111000101111101101111110111011111111111111100011111110010111111101110011011011011110100101111100111011111011111001111111111110111110111101111111100110111111111111111111101001
|
||||
01111101111111111111111111111111111101111111110110111100111111111011111111101111111111111111110011010111101110111110111111101111011111101111111111101111111100111110110111111111110111111101111111111110111111111111111001101111100
|
||||
00011111111001011001100111111010011111111010011101101011111110010111101001111110001111100110011110011010111101100111111001001111111111111111011111111111111111110100111111011111011110101001111110101111111010111111111111111001010
|
||||
01101011111010111101001111111100111011111010001011100111111100110111110011111111100111101100110010110011111101111110011111001111111110011111011111110111101011111110101110101001011111101000011000111011101010111111111111010110000
|
||||
01111011111111111111111101111110101101111111010111001111011110010111111001111111001111111110011101111010010111101011111100100111101111111110111111111111100111100010101110111001011111100101011110101111111010111111101011010011000
|
||||
01101111111111111111100111111110110111111011010111111111111100110111110011111111100111111100110111111001010111101111001111001111010111111111111111110111001111111110011110110011001111100101011111111111111001111111001111110110000
|
||||
01111111111111111011111111111101000100111000010110111111111110100111111111010111111011001111111101111111111111110111111011111101011011100101001111111110111011110010101110111111011010011001011011101101100110111110111111111101101
|
||||
01101111111111111011101011110111100101011111010110111111110111110111011111010101100011100101100111011111111101111110011101011001010110000100101111111001100011110111101111111111011010111001010101001111011010111101111111110011101
|
||||
00111111111111111111101011111010010101101010010110101011111010110111111011010110101001001110111101111010010111111111010111111101110110110100100011111000111111010110011111111111011011100101011111111111101111111101101111110110010
|
||||
01101111111111111011101011111111010100111010010110101111111111010111111101010111101001101111010111111011010111111110010011111101011011010101101111111111111101111011011110111010011110110111010010101111000011111111110111111110101
|
||||
01101111111111111011011111111100111111110110111111010011111111111111110110111111011111101111111111111101111111001110111111011011111011111110100011111010011111101011111110110110111011001111101001101110101111111111011011111101000
|
||||
01011111111001111111101011111110011111011011111111100111111111111111011011111111101011110110111111111111111101101111111101100111111110111110011111111011101011100110111110011011111001101111100111111110011011111111101111111110111
|
||||
00111101111010110111011011011111101101001000110111111011011111111101101101110110011011011101111101111110110111110011110001111111011101111100111110110011011111000101101100111100110011011011001110101100110110110111110110111100101
|
||||
01101111111011111111110011111110001111111010111111001111111110111111111010111111100011111110111111111100111111011011111111111011111111111111101100111111111011111010001111101000111111110011111011101111101001111111111111111111000
|
||||
01111101111110111111110011111111001111111101111111111111111111101111011010111111110111110111101111111101111101101111111111101111111111111111011101111111101111111111011111010110111101110111110111011111011111111111111011111111011
|
||||
01111111110111111001111111111111110101011011010110011111111111111101111111111111101111101111111111110011010110111010110011111111111110111110001111111001101111000011110100000111110010111111101010100100101111111111111110111110010
|
||||
01111101111111111110111111100111110111001111010101111011100010111101001111111110111011110111111110001111010001111111011101111111100011101110011111111100111101100111100100011011111000111111101111110100011111111000111111111111101
|
||||
00111101111111111101111111111110111100111111110111011111111110111101111011111111101111011100101111110111111111111111110111111011011101110110111111111101111011101110110101011111111111101111111111110101111110111111111111111100101
|
||||
01111111111111111111110001111111000111111100110111110011111111001101111100111111110011111011001111111100111111110010110111110011011111001111111100011111110011111100000101111100111111110011111100000101110000111111010011111111011
|
||||
01111111111111111111111111111111111101111111010111111111101111111100111111010111111111111111111110111111010111111111110111111111101111111111111111111011111111001111111100111111111111111111111111111101111111111011111111111111010
|
||||
01011111111111111111111111111111110111111111010111111111101111111111111111010111111111111111111111111111010110111111011110111111101111111111111111111111111101111101100111111111111111111111111101101101110110111001111011111111100
|
||||
01111111111110111111111111111111111101111111110111111111111111111100111111010111111111111011111100111111111111111110110111111111110111111111011111111010111111101110011100111111111101111101111110010101111001111111010111111100000
|
||||
01101111111111011011111111110111110111101111010110111101100111111111101111010111111111111111111110011111111111111111110111111111011111111111111111111111111111110101000111011111111111111111111101000101010100111111000011111111001
|
||||
01101111111110011010111101101111110111010111011111111001101101110100111111011011111101000111110110110111110011111110111011111101111111110111111110001011011111111111110111111110111111011101101011111100011111011011011111111111000
|
||||
01101111100101011101011001110100111111010001101101011110110101011011010110111101011101110100111111010110111101000111111101011101110101110110010111111001011111110101110111000111111101010111110101111111010111111101011001111110000
|
||||
01111100111010010001111101101111111000111111110011011001001111111100111111000011111111001101110000101111110110111111010000111111111110111100010110101010110111001101111100111110110011100100011111111110110011000011101100110111100
|
||||
00111111111111101011111101101011100110110111100011101101111101111011111101011111111110111111110101111101110001011011010111111111111101011011111011011101110110111100111011111111100101111111011111110111111111011110011111111100111
|
||||
01111011111010101011001111111111101011101110111110101110111011111100111111101011111110111111101111101111111011111101111110111111111011101101111010111111101110111010101011111110111111011111100111111111011111101111111111011110011
|
||||
00111111111111001111111100111111110101111111111111111111101111110100111111011110111000111011000000111010010101010111111001100101000111110100111111000111111111100111110101110111000111111001101111010101111111110111111111001110001
|
||||
01111111101111111110011111111111011110111110111111101011111111111110111011110110111011111111111111111111011001111011111111111111011111111010111101011111011111111110010110111111111111011111010101100110111101111111111011111001001
|
||||
00101111111111100111110110011111110111111111110111111111011011010101111001111111111111011101110101111110110101111111111110011100001010111101111111111111110111111001111101111111000111101111111111111101110011010110001111111101001
|
||||
01011111111111011111111111111010111111111111111111111100111111110010111111111011101100111111110000111111000111011011111111111101111111111111111101010110101111111010110111110011010111101111111111110011101111111101111011110000001
|
||||
01111111101111011110111111111100111111011111111010011101111010110111111111111111111111011011011111011111111111011001111110101101110010111110110011111111111011111011100110111111111100111111111000100111100110111010101111111110111
|
||||
01101110110001000110101101110111110010111011001111111101011101100101111110001111111101011101110011010111000111111100111101011000011001110111011111001111101111111101110011111111000111111011111111110101101011000101111111111100100
|
||||
01011111111101101111010101111111010011110111011011011111111111111111100111001111110011111111000011101111101110101101111110111110110111110111110111001111111111111111110011111111110111101111110111111111111111110111110011110111010
|
||||
00010111111111110111111101011111111101101110110111101101011101111101111111010111011111110111111101101011110111110111110011101001011100101111110110110001011101011101111111101101110111111111101111111101111111111111011111100011110
|
||||
01111111101111110111110111011011111111111001010110111011110011111011110111111101011111011011111101011110000111111111100111111111011111111111001111110111111011011011111101110111110010011111111110101001111111111110111111111100011
|
||||
01111111111110001111111110110111110111111111011101111111110111111111011111111111111111011111110011111111111111111111110111111110110111111111111111010111011110111011111011111111001111111111111111111101111111111111111111111110100
|
||||
00011111111111111111100101111010011111110011111111111111111010101111101001111110101011111110101110011010111001100111111001001111110110011111001010011111001111110110011110001001011001100111100111110110011111011001111111111011110
|
||||
01101011111111111111100100111010101111111111011111001101111110101111110011111111001110111010101111011001101011001110111101111100110100111001111010011111101000111110101110110011000101001111110111110000111111010011111111010101110
|
||||
01111011111111111111100101011110101111111111111111101011111110011111111010111111100111101110011111111001111111111111111111100111101100111100010011111111101011010110101111111001111110100111111110101111111001110111111111011111011
|
||||
01101111111111111111001101111110111111111111011111101100111110011011111011111111100110110110011111111001111111101110111111001100111100111101111111111111100101111110011111111011111111100111111110011111110011111111111111110111000
|
||||
01111111111111111110111101011111011100101111111111010011111011111100100100111111101001001110101111110110111111010011011011111111000001101101011110010111101011011011111110111100010011101011111110100101111111011011111011111101100
|
||||
01101101111111111101111101110111100111011010011111101001111011100111101010011101011001100111101111011110111101111011010001111101110111101101011000111111111001111011111111111100010011011011110111110101010110111111110111110110000
|
||||
00111111111111111111101101011010011111111111111111101011011110000101101011111111101001011110001111111000111111100110111011101011010111011101110011111110100011011110101111110001111011111111101100110101111011010110101110111101111
|
||||
01101111111111111101100101111111011110011011011110111101011010111111111101111111101001011110101101111011111111110111111111101001001000111101111111111111101001111010111110111011111011001111011110100101111001110011000111111110100
|
||||
01101111111111111011010011111101101111110100111111111111111111011111110110111111001111101100111111110101111111001111111111011011101111111111110111111111111111101011011111110101111111011111111101101111110100111111011111111100010
|
||||
01111111111011111001101111110110011111111111111101101111110111111111011011111111100111110110111111111110111111100110111001111111111110011111011010111101100111110110111111111000111001101011101110011110111011111111101011111111010
|
||||
00111101111000110011110011011011111101101010110111001011001111101100011100110111111111011111001101111111110111101011110101111111011111111101110110110111111011011111001100111010110011011111001111101100110111110010110010110100010
|
||||
01101101111011111111100011111110101111111111111111111111111100101111111100111111101111111110001111111111111111111011111111111011111111111111101001111111001111111011011111111110111111111011111111011111111110111111001111110111101
|
||||
01111111101110111101110011110101101111111111111111111111111110111111111100111111111111110111011111111111111111110011111111101111111111111111011111111111111111110111111111111010111111110111111111111111111011111111111111111110110
|
||||
01011111110111110001111111111111111101011111111110111111111010111101111011111111111101000111111101110111111111111110110101111101010111110111101111111111111111001011111110011010111101111111110111111101011111011001101110111110010
|
||||
01111101111111110011111111100011111101001111111101001011000000101110001111110101101101010111110111011111111001111111011101101101010110111100011111111101011111100110111111001111111011011101111111110101111111010101111111111110011
|
||||
00111111110111110111001001111101110101111011010111001111111111111101110011110111011011111111111101111111111111011111110101111111011111110111110111111111101111111101111111011111111011111011110110110101111011111111111111111101111
|
||||
01111101111111110011110011011111001100111100010111100011011111001111111100111111110011101111000111111100111111110011110111110001101111001101111100111111110011111110011111111100111111110001111110010100111001111011100111111111110
|
||||
01111111111111110001111111111111111101111111010111111011111111111101111111110111111101001111111111111111111011111110110111111101101111110110111111011111111111100111011111111111111111111011111111010100111101110001110111111111001
|
||||
01111111111111110111111111111111111101111111010111101011011111111111111111111111111111001111111111111111111111111110011111111111001111111100101111011111111111111011101111111111111111111111111111100101111110110111111010111110011
|
||||
01111111111111110111111101111111111101011111110111111111110111111101011111110101111111011011111111101111111010111111110111111111111111110111111111110111111111111110011111111111011111111111111110010100111001111111100111111111000
|
||||
01111111111111110111111111010111111101111111110110101111111111111111111111111111111111111111111111111111110011111110110101111111110111111101111111110110111111111110111111011111110111101111101100110100111011110001111111111111110
|
||||
00101111111110011010111101110111110110011111010001110000101111110010111101011011111101100111100110111111001011111111011011111101101111000110111011111001011111001111110110110111011011111100101111110111111100111101001110101100101
|
||||
01111111101111101101011111110101110111010110011101011101110101010111010110101100011111110100111111010111011101011011101101000110110101101011000111111101011111110001010111010111111101010111110100110110010101111101001111111111110
|
||||
01111100111011011001111110011111100111111111110001111111000011111100001111010011101000001101110000011111110001111111011010111101001111110100111011010011011011001111100100111111000011011110000101101110110011110011011110111110011
|
||||
00111111110010101111111011101011111111111111100111110101111111100110101111101111101111111101011001101110100001011111101101111101011111011011111101011111101110010111010111110111100011111011111101111011011111011111011011110101010
|
||||
01010111110010111011111111001110111111111011111110101010111010101011111110110111011001011101101111101110111111101110111110111111101111111101101011101111011011111011101011101110111110111000111011101111101110101111111101111110011
|
||||
00111111111111111111111101011111110100111111010111111101001111110011111011010111111111010011110101111011000100111000111100111011111110110100111110010111111101001110110010111111000111101111011111111100111111010011111111110001111
|
||||
01111111111101111111111001101100101101101111100111111111101101111111111101110111111111111111111101111111101111101111111111111011111001111110011111100111111111101101111111111101111111010110111111011111111111010111110111111110111
|
||||
00001111101111100111110111111111110101111101111111011100011111111101010111000111111101011111100101111111110011111101110110001110011111110001101101110110111100011111111001110011010101111111011011110101110111111111001111111100111
|
||||
01111111110111111110111101011011110011111111111011111101111011110011111111011011111100111111110110111111111101111111001111111111111110111111111010011111101101011111110100111111010110101100011011110101111111111011011111111111011
|
||||
01111111101111111110111111111111111101111010111110111101111111110111111011011111001111011110110110101111111010000101110111111111110011111111101111011011111111110111111111011011111010001111111111111110111101111110101011111111111
|
||||
01111111110001001101011110101101110001111111001111111100111111110010111110001011111100011111111011111100010111111111101110010100110110100011010111001111111010101100110011011110001111111010101101111011111111001111111111100010001
|
||||
01111111111101011011110111011010111101101111011011000101010110000101010111010110111110111011111110111111111111111101101111111101101111110101101111001110111111011111010101111111001111111111011110101011111111111011111111011110101
|
||||
00101111110111010111101111011111110101100011110111111111011011110101111011110111001001011111101110111110111111101111111011111011110111110101010110111011010011111011111101100011110111111011111101101101101010100011111111101100110
|
||||
01111111101111110111111110011101101100110101110110011110111101111111111101101111111111011111111110100111111110111010010011111111001101011101111111110110111111011110111101111111010111110101011011110101101111111110110011111011000
|
||||
01111111111111101111111111011111111101111111001111111011111111111111111111111101111111011111111111011111111111101111111111111110111111111101111111101101111111011111110011011111011111111111111111110111111111011111101111101111010
|
||||
01011111110011011111100111111110011111111001111111100111100110101111100011111110101011111010101111111111111101100110111011111111110110011111111111111111101001111110101111111010111111100110100110101110011010111001111111111111011
|
||||
01101011111111011111001101111111110011110011101111001111101010011111110011111111101000111110100111111010111011101011111111111110110100111111111001111111101001111100111111101010011111100111111110100101011001111011111111011110101
|
||||
01111011111001011111101001111100111101111010111111101011111111111111101010111111111101111110100101111010111111100111010011100111011110101101111111110111111111111111110101111001011111100111110110101111111001111110001111011110000
|
||||
00101111111011011111101101011111110011111011111111111101111111111111111011111111100101111110111101111011111111100110000011101111011110111101111111110111001111111110010101111111011111100101111110111111110011111111001111110111101
|
||||
00011111111100011111100001111010101101100100111011101011111111111110111101111111111101101111011111111100110010101011111011010011011111001101111110110111111101011111111111101110011011101011111110000100111111111011111011111101000
|
||||
00101111111101110111011001011011110110011110111011011011110111111111011111111101111101111101100111111100011101111011111001111111011101001111111000111111011011111111111111011000010111101011110111111101111111111111110111110010100
|
||||
01101111111111010111101111111010100101111001111111101011111110101111101111111111101001111010100101111000110101100011110111111111011110111111111111111111101011111011110101011011010111001111101000110111101010111111101000110110010
|
||||
01101111111111010111110101111110111111011101111011111111111110110110111111011111101001101110101101111011011010101010011011001111011011011101110011110111101011111110110101101101010011101111111110101110111011111011111101110010000
|
||||
00101111110110111111001111111101001111110011111011111111111101001111110111111111111111111111111111110101111111111111111011111111111101101111110111111111011011111111011110110111111111000111111100111111110100111111011111111101011
|
||||
01111111111011111101100111111111111110111001111101101111111110111111011110111111111111111111111111011000111001101111111101111111110110011111011010111101100111110110011110011010111111101111101111111111111011111111101011111110110
|
||||
01111100110111110111111011011111101100101111110001110111011110001101011010110111101011001111101101111111110001110110110101111011011110101101110010110111101011011110101100010110110011011111001011101100111101110011110110111100110
|
||||
01101110111110111111100011111101111111111011111111101011111110111111111110111111101011111110001111111110111111101111111111110111111111101111111110111111101011111111111111111000111111111011111110001111111010111111111111111111010
|
||||
01111111101100111111110011111111111111111110111111011011111111111111110111111111011111111111011111111011111111111111111111111111111101101111111011111111110111111111111111110111111111011111111111011111111011111111111111111110111
|
||||
01111101110111011111111101111101101101011111110010001101111100111111111111010111111101000111111111110111110111101110010000101111111011111111111111111111111101111111111110001011011011111111110111111100110111011011111110111110110
|
||||
01111101111111011101011111110011101110011011011100111111100111111101011111010000111101011111110101000111111100101111010101111111110001111111010111111101011111110000111110001111110101111011111111110101011111110111111111111110011
|
||||
01111111111111011111001101111111111111111111110111111111111101111111111110010111111111001110111101111111111111111110010011111111111110111111110111111111111111111111111110111111111111111111110111110101111111011111111111111110100
|
||||
01111101111111010111110011111111001110111100011111010011111111001111111100010111010001011110011101111100111111100011010111110011111111001111111100111111110011011101011111111100010111110011111100011101110001111111100111111101100
|
||||
01111111111111111111111101111111111111111111110111111111101011111111111111110010011101111110111101111111111111111011110111111111011111111111111111011111111101111111011111111111111001111111001111011110111101111001110111111111001
|
||||
01011101111111111110111111111011111111101111111111010111111111111111101111010111110111111111101101011111111101111110111110111101011111110101111111010111111111011111101111011111111111111101111101100110111010111111111010111110100
|
||||
01111101111111111111111101011111111111111111110111110111101111111111111111010011111111111111111101111111111111101111110111111111011111111101111111110111111111111101011111111111110111111111101110010101100101111111100110111111001
|
||||
01101111111111110111111111011111111111111111011110011111101111111111111111010011111111111111111101111111111111111110011111111101111011111101101111111110111111111000111111111111011001111111101100111100110011111011001111101111000
|
||||
01101111111110001011111101001111110110111111001011011101111111110010111111011111111100101111110111111111111111111111011111111100101011110111111111110011111111101101110110111111111111111101111111100100111111111111111011101101111
|
||||
01101111101111011101001110110100110111000011101101011110110101111011010001111101011001110001100111010111111001010111111100010110110100100111010111111101001111110100111110010010111101010111110101111111010101111101010111111110000
|
||||
01111111110010110101111011101111110110111111110011111111001111111100111011101111111111001111111101011110111111111111100011111111010111111101111110111001011101001111000000111111110011111110001101101000110111110001111111110110001
|
||||
00111101100011111011011110111100101010111101011111111111111001011000110110111111010110111011011110110011111111011011101111111111011011111111111011011111110101111100110111111101111011111101111111111111010111111111111011111100111
|
||||
01011111111110110111111111111011111111111110101110101101011111001111110111111110101110111110101101111011111111101010110111110111100111111100101010111110111110111111101010101110010011011011011100110101110110010111111110011011011
|
||||
00011111111110010110111101001101110011011111110111111101110011111101111111000111111001011011110101111111110110111111111111111111011010110100111111010011110101011111111100111111010111101101011111010101111111010111111111011110001
|
||||
01011111100111010111111011011111101111110111101101111111011111011011110111101111110101011011111101111110111110110111111111110110111111101101110101011011111111101011011111111101010111111111111111111010011101010111110111011100111
|
||||
00101111101011100101110100011111011001111110111101110110001111111001110101100101011110001111110101101111011111111101110110101111101111110001111111100010111100011111110101111111110101101111000111011101110011110111001111011100011
|
||||
01111011111111011011111101111111111111111011010011111101011111110101111111010011111101011001010011011111111111111101001111111111111110110100111111010111111101011011100011111111011110111111111101111110111111111011111111101100010
|
||||
01010111111111011111111111011011111111111111111110111111111011111111001110111111101111111011110111111110111101110001011111110111111111111111110011111111101111111010110111110111011001101111101011111110111111111010101111111110111
|
||||
01111111100101000110111010111111110001111110001111100011110110101011111110010111111000011111111011110011001111111011001011010111111001110010111111111011111100111101110001111010001011111100111111000010111111001111111001111000111
|
||||
01110111111111101110111110111111111011100111001111111111111101111101100111111110011111101000111011101111011011101101011011110111111011110011111101111111110000111111001110111111111001111101101111110011110111011011111111111010101
|
||||
01110011110111110010101111011101110101111111111011111111111111111111111011111111111111111111100101111111010110111111010111111111001101111110101101110111111111011111110101011110101011001011011111101111101110111111111011011111001
|
||||
00000111111111101111011100000011101101101111111111111111111001111111110111111111111111110101111111101111110011110110111110111111111111111111110111110111110111010111111111101111110111111111011011111111011111110110111111111101010
|
||||
01111111111111111111111111111111111011110110111111111111111111111111111111111101111111111111111111111011110101111111111111111101111111111111111111001111111100110111111111111111101111111100111111111111111111110111101111111010010
|
||||
00011111110011111111100111111010101111111001111110001111100110011110011010111000101011101111111110001001111101100111111100111101110110100111001001111101101001111110010110011010111001001101111110100111111010111111111111111010011
|
||||
01101011111111111110001111111110011111110011111111111111111100111111001111111100100111111110101011110011001011001110111011111101110110010111111001111101001101111110011111101001111111001101111110010111111001111111111111011111101
|
||||
01111011111111111111111101011110011111111010110111001110110100111011110011101011100110101110011111000011111111111111111111100101111100110111011111111111111101111111110101011111111101111101111010100111111010010110111111011011111
|
||||
01101111111111111111101101011100111111111011011111101111111110111111111011111011111111101110011111111111111111001110110111001101111100110111111011111111111101111110010111110011111111111101111110110111110011010111111111110110011
|
||||
01011111111111111110110111011110101111111101111111100011111110001111111000111111101011111110101111111010010110011011111011011001101010100111111101111110111100111011101111110110111011101000111011000011101110101110111011111101101
|
||||
01101111111111111101111101110111101111010110011111011011110111101111011110111101011011110110101111011111011110111011111011111001101111110111011111111101011001110110001111011010111111101001110101000111010100111101100011110010011
|
||||
01101111111111111101101101111110001101101011110111101110111010011011111001101111101110111111111111101011011111100111111111100101100110110111101011111110101001110110101111111111111111101001111111110111111011010111001111110110001
|
||||
01001111111111111111100111011110110111111101111111110111111111011111111000111111000111111100111111111101011110110111111011110101101011010111101101011100101001111110111111111011111011001101110110100111011001010101101111110111000
|
||||
01111111110111111111010011111101011111110110111111111111011111111101111111110111111111011100111111110111111111011011111011111111111001101111110011111010011010101101011111111101111111001110101101111010110101101011010111110100101
|
||||
01111111111010111111101111111111101111111111111101101111111110011111111001111111101111111110111111111010111111101111111001101111100110111111011001111001111111100110101111111011111111101111100111101110011110111001101011110110110
|
||||
00111101110010110111110111011111101101111010110111110011011110101101111010110111110011011101111101110111110111110011110001110111001100101101111111110010111111000100101101110010110011001011001111101100111110110011011010111101100
|
||||
01101111111111111111101011111110001111111010111111100011111110101111111010111111001111111111111111111110111111001011111111101011111011111111111010111110111111111110101111111110111111111111111111001111111100111111001111111110100
|
||||
01111101101110111111101011111111011111111100111111011011011111001101110110110111111011011111111111111010111111101010111111101011111111111111011010111101111111111111011111111101111111111111110111011111011101111101111110111110110
|
||||
01111111110111111111011101111101111101111111111111011111111111111111111111111111101111111111101111110011011111111111111010011111110011111111101111110000111001000111111101111010111001111111000101110100010111110001111111111110011
|
||||
01111101111111111010111101110011111100001111010101011111110011111111001011111100111111110011110110111111011001111110111101101111100101111111011011110001111101000011111110101111010110111111000111100100011111110001111110111111000
|
||||
01111101111111111111111101111111111111111011111111111111111111111111111011111111111111111111111111111110011111111111111111111101010111111111111111111101111101010011111101111111111011111011010011100100101111110100111110111110011
|
||||
00111111111111111111110001111111001111111100111111110011111111001111111100111111110011111101001111111100011111110011111111011001011101100111110110111111100001011000011101110010111111110011011000010101100001110110000111111101001
|
||||
01111111101111111001111101101111111101111111110111111111101111111110011111111001111111101111111110111111011011111111111111111111111111111110110111111111111011101111011100111111010001111111011111011110001101110011110111111110111
|
||||
01111101111111111111111101111111111101111111110111111111111111111111111111111111111111101111011110111110011111111111111111111011111111100111101111111111111111111101101110111010110111111111011101101111110110110111011010111111110
|
||||
01111101111111111111111101101111111111111111111101111111100111111111011111111101111111110101111111111110011001111110111101010001011101001110111101111111101111101010011111110100011111111111011110011111111001110011100110111111100
|
||||
01110111111110111111111101100111111111011111111111111111111111111111111111111011111111111111111110111011011011111111011111001101011000111111111111111110101111111101111110111011010011111111010101111111110111110101011111101110000
|
||||
01110111111100011111111101110111110111111110001011101101101111110110111111011011111101101011010110111111010001111111011011111111111101110010111111111111111101001101110010111111011111111101101111011110111111111111111111111101001
|
||||
01111110101111111101011110110101110111010111011100010111110101101111010111111101011111110101110111010101011101011111011100000111110101111011000101111100011110110101011011010111011101010110110100111111000011111101011111111110110
|
||||
01111111111110100011101111000111111100111110111001111100011111000000111111000011111100111111110111010111110011011110010011110111001110111100001011110111110111011011111101111011110111111101111011110111101110110011111111111110100
|
||||
00111111111111101011111111011111001000101111101111111111011101110111110110011111010111111111101111110111101111001110010111111110111111010101111111111111110111101111111111110110111011011111111111011111111111011101111011101101101
|
||||
01111011110110110111101101101110111111111010111111101111111110111101110011110111111011111101101111010111101110111101111110011111011011111111111111110111111111011111101101101110110111111011111011101111110110110110101111011110111
|
||||
00101111111111010110111101110111110101111111000110111101111111110111111111011011111101011111110011111011111011111101001101111111011111110110111111010010111100111111110101110111010111101111110110110101111011111111111110111100011
|
||||
01111111111011111011111011011111101101110101101111111011011111101110111111110101010101101110011111111101111111001011111110111111111111011110111111010111111011111001011110111101110111011111111111111001111101111111100111111110100
|
||||
00101111110111010111110111001111010101111111110111110111011111011101111111100111111111011101111101110111110111010101100111111101001111111001111010111111101111010111110101110111010111111011011011111001110111111111011111110100011
|
||||
01111111111111000110111100011111110111111111000111111100001111110000111111011110101100011101110000111011000101111111010011101110111111000110111111111110111001111011110001111111000110111100111111110100111111011001111111111011110
|
||||
01111111111111111111111111111111110110111111111111111111111110011111111111011111111111110110111111110111111110101101111101111111111011100111111011111111111101101111111111101001111110101111011111111111101110011110001111111111100
|
||||
01101110111001001111001110111101110010010111010111011111111011111011101101000111111110111111111111111110001111111011101111111110110101100011101110101111011010111111101011110111101111111010111011101111110111010111111001111111000
|
||||
01011110110101010110110110111111110110111101111111110111111111011011100101110110110111101111111111101111010111111101110111111011101101111110110111110101101111101110111101011111110111111111011010111111111111111111111111111010000
|
||||
01111111101111010110011101011101111101100011010111111101011100110101011111110111111101011010100101111111010111000110110110111111011111111001111011111110111011111001101101111010110011100001011111111111110111111111101011110111101
|
||||
00101111111111010111111101011111111101111111010101111101001101110101111111100111111101001101110100111111010110111111101011010010011111011101110111111111111111011111110000101111000111111111111111111111101110110111110111010100101
|
||||
01111111111111111101111111111111110101111111111101111111110011111111111111110111111111111111101111001111111111011111111111111110111110111110111011111110111110111110111111111111111111111111111110111111101111101111111111111110100
|
||||
01101111111111111101111111111111111111111111110111111111111111111111111111111111111111111111111111111111111011111111110111111111111111111111001111111111111111110111111111101111111011111111111111111011111111101011111111111111101
|
||||
01111000001111111001111110100111111110011111111001111111110111111110111111111111111111111111111110111111111101111111011001111110100111111111111111111101111111100111111110011111111101111111100111111110011111011011011111111110011
|
||||
00011111111001111110100111111010011111101111111110101011111100111110001001011001101011101110101110001010111101001111111011101011100110101111101111111101111111110110011110110011111001101011110100110111011001111101111111111110000
|
||||
01101011111111111111001111111100111011111010111111100111111110011111001111111111111111111010011111111001111010001110111111101011101110101111111001100011111111110000111111111010111111100111101100110111111001111111111101010111010
|
||||
01111011110011101011001110101100111111111001101011100110101000111010110011111100001110101100111010010011101011001111111011101011111010101110101111110010100111101100111111110011111101001111101100110110011001010000101001011111010
|
||||
01101111111011111011100111110110011111111111111011111111111110011110111001111111100111101110011111011001111101111111100011111111011110111010110011110111101111111110011111111001111111100111110111110111010011010101100111110011010
|
||||
01101111111101111111111011111111101100110110111111111011110110101111111010010111011011111110101111111010111110101011111011101011111111010110111111110100110111110011101110111010111011101011111011100111101110011110111111110101001
|
||||
01111111111111111101110011110111001110111110111101110111110110101111011010011101111111110110101111011010111101101010111101111111110110100101011010110101111111110111011111111010111111101001110111000111010100011101111110111111110
|
||||
01111100111111101110100010111010001101101001101110101010111011111011111010111110101110111111111011111010101101001110111111101111111111110111110011110111001101110110111111101010111111111111011110010101111111010111101111111110110
|
||||
01101110111111111111101111111110111100111101111111101111111100111111111011111111110111111111111111111011111110001111111011100111111110100100111011110100111111011011011110111010111011001101010010010101001111010100110111110110001
|
||||
01101111111111110111010111011100011110111111110111000111011101111101110101111111001111011101111101110101110011011111111111110111111101101111111101111010111111101001111111110011111111001111101001011110100111111010011110111001110
|
||||
01111111111111111111101011111110111111111011111111101111111110101111111000111111111111111110101111111010111001101011111111111111111110111111011011111001111111100110101111111011111111101111100110101110011010111001111011111111100
|
||||
00011101111110110110100011011101101100111100110111011011011111001101111110110111111011011111001101111100110001110010110111101011011101111101110010110011111111000111001100110110110011001011001111001100101101110011111110110101100
|
||||
01101111111000111111101011111100101111110010111111001011111110001111110010111111100011111111001111111100111111011111111111101011111111101111111110111110111011111000101111110110111111111011111001111111101110111110111111111111010
|
||||
01111101100110110111101011011101101111110110110111011011011101101101110110111111011011011101111101110110110111111111111111011111111110111111011101111101110111111101111111110111111111101111110111101111010111111101111110111111101
|
||||
01011111110111111111111111111111111100110111111111101111111111111111111111110111011111111111111111111111111000111110011001111101011101111110101111111010111111100011111110011111011011111011000011111100000111110000111111111110111
|
||||
01111101111111111100111111110011110101011111111100111111110111111111001111111001111111110111111111011111111101111011111110111001000111111111011110111001111111100111111111001111110100111111100111110110011111110001111110111111000
|
||||
01111101111111111111011111111101111111111111111111011111111111111111111111110111111111111111111111111011111100111111111011111101011101110101111111111111111111101111111111011111010111111111111111111110111111110101111110011101001
|
||||
00111111111111111111110011111111001101111100111111110011111111001111111100011111110011111111001111111100111110110010111111110001011111001101111100111111100001111100101111111100111111110011101100101111110010110111001011111111101
|
||||
01111111101111111001111111100111111111111111111001111111111111111110011111110011111111101111111110011111111111111111111011111101000111111110111111010111111011111111111111101111011000111111100111111100011111110011111111011111111
|
||||
01011111111111111101111111110111111111111111111101111111110111111111011111111011111111100111111111011111111101111110111011111101011111111110111110010111111111111101101111111111011111111111111101100111110110110011011010111111110
|
||||
01111111111111111111111111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111101011011110101011110010101101111111110001111111111111111111111111110001111111000110111100011111110011
|
||||
01101111111111111111111111111111111111111111111111111111111111111111111111111001111111111111111111111111111111111111111011111111001111110101111011010111111101110101111110111111110011111111110101111111010111011101011111101111110
|
||||
01101111111110010011111101001111110010001111010011111101001111110100010111011111111101001101110100111110010011111110011011111011001111110110011111001011110111001111110100111111010001111101111111111100111101101011111110111100011
|
||||
01101111101101111101011011110101111011010110111101011111110001101111010111101101011111110101011111010111111101010111011101010111110101011101010111011100000111110101011110010010111101000110110100111111010010111101000111111110100
|
||||
01111100110010101110111110101111111111111111100011111110111111111001111111110011011110001111111001110111100111011111010011111111001101111100110011110110111111001101111001111111100011111111101101111101110111111011011110111110101
|
||||
00111111111111111011111110111101101110111101101011001111101111111110110101011111101101101111101100110101110111011010100111011010111101111111110110110110111101110101101101110111010101011001111100111111010101011001111011111101110
|
||||
01111011101010111111101111111110101110110001101111101111111111111011111011101111101010101101101111110111111110111011111101001111011011110011101111111101110111011010111111111111111111111011111111101011101111111111111101111111010
|
||||
00111111111101010111111101011111111101011111010111111101011111110101111101001011111101011111110101111010010011101111000111111101011110110100111111010111100101011111010101101001010110111101101110110101111011000111111110001110110
|
||||
01111111111111100101110110011111011011110111100111011010011111101001111110111111110110011111111001111111100111101101101110101101101111110101110101110111111101101111101010111110101011110111011111110101111110101111110111110100000
|
||||
00111111111111110010111111011101111101111101110111110111011100011101101111110111111111011110111100101101110111111101110111011110011111011111111011011011111111111011111111110111110111111111011101111001111101110011111111110101000
|
||||
01111111111111000111111000011111000011101111000111111000001101110001111010111011111100001110110001111111000011101110010111111001101110011111111111111111111101111111111110111111000011111000001111110110111111000111011111111100001
|
||||
01111111101111111111111111111111110111101111111111111111111010111111011111111010111111111111111111111101111111111011111010011111011011101111111011111111111101110010111111111011111111101011111010111101110111111111011101101110100
|
||||
01111110111001001011111100111110111111011111010111011100011111110011101111001101011100011011110011111111001111101101001111111100111111110011001110111011110110111101100011000110000111111110111111101011111000001011111111111100010
|
||||
01111110111101111010100111101111011111111001111111110111101111010011111111001111110010111101110110101111010111111101011011111101011111110101110111111111101111011111110101111111111010010111101101111110111111101111101111111110011
|
||||
01110111111111100111011110011111110101110111110111111111011100111101111111111111001111011010001101110111110100111111110111111111011111111111111110110110011011111101111101110010110111101111011111011101111111100111111111101010111
|
||||
00111111111101100011111110011101111110100101100100111110001001011001111111010111111110011101111001111110100111011111111010110010010111101110010111110111111101010111111111011111000011111100001111111011101111000111110011010111010
|
||||
01110111111111101101111110111111111111010111101111111110111111111011111111111101101110111111111011111111101111111111011111101111010111111111111110111000111111111111110111011111111111111111111011111111111111111111111101111110101
|
||||
01011111111001111110100111111010010110011111111110100111111100111110111001111111101011101110101110111001111101100110111111001111111111110111111010111110100111101110011111110011111000101011100100111111100011111001111111111110100
|
||||
00101011111001111111001111111010010111111001111111001111111110011111110011101111111111111110011111101010111010101011001111111111111111110111111111111111001111111100111111111111111101001111111011111111101001111111111111010111111
|
||||
01111011110011101010001110101100111101011001101011100110101100111010111010110111001110101000111010110011101011001111110111001111111111110111111111111111101001011010011111110011111111101011110100110111110011111101001111010110110
|
||||
00101111111011111011100111111110010111111111111011111111111110011110110011110111100111101110011110111001111111111111011111001111111111110111111111111111100101011100111111111001111111100111111111111111111001111111111111111110111
|
||||
00111111111000111111111011110111101110111110111111111011110110101111111010010111011011111110101111111010111100101010100110111110111001100011101111111111011011111111111011100110111011101011101110101111111010111011101011111101011
|
||||
00101101110110111101110011110111001110110100111101110111110110101111011010011101011011110110101111011010111101101011010101101011110111110111011111111011101011110111111111011110111111101011111110101111011010111111101011110111000
|
||||
00111100111111101111100110111010001111111011101110101010111011111011111011010110101010111110111011111011101101111111010101111101110110110111111010111010101101011110101111011001111111001111111110110101111011111110101111110110001
|
||||
01101110111111111111110111111100111110111101111111101111111110101111111000010111101111111111011111110001111110101011010111101111011110000111011010111111000101011110111111111001111011111111101100010111111101111011110111110010011
|
||||
00011111110110110111011111011100111110110011110111000111011101111101110111111111000111011101111101110111110011011111101011010110101100111010111111111111011011111101001010110001111111001111111100111111110011111111001111111100101
|
||||
01111111111001111111101011111110111111111001111111101111111110101111111000111111100111111110101111111010111001101011111001111011100111111110011011111111100111111110111110011001111111101111111110111111111011111111101111111010001
|
||||
01111110111110110111100011011101101100111110110111011011011011001101101010110110111011011111001101111100110001110011110001111011000111111100110010110111101011011111011100011110110011011011001101101101110110110011011010111100111
|
||||
01101110111000111111101011111100101111110010111111001011111111001111111010111111100011111110001111111100111111011111111111011011111111111111111110111111111011111110101111110110111111110111111101111111110110111111110011111111101
|
||||
01111111100110110111101011011101101111110110110111011011011101101101111100111111011111011101111101110111110111111011111111110111111111111111011011111111101111111110101111110111111111111011111111101111110110111111110011111111001
|
||||
01111111110111111111011111111100111100111111111111111111111111111111110111110111011111111111111111111111111010111111111011111011000111110100011011111101111001011111110100111111011001111111100111111101110011011011111110111111011
|
||||
01111101111111111101111111110011111101011111111100111111110011111111001111011001111111110111111111011011111101111111111000111111000111110100011111111011101101000111110100001111110100101111110110111110011111110101111111111111110
|
||||
01111111111111111111111111111101111111111111111111101111111111111111111110110111111111111111111111111111111110111111111110111111110011111111001111011111011101011111110101101110011011111111110101111101110111011111111111111100100
|
||||
01111101111111111111110011111111001101111100111111110011111111001111111100011111110011111110001111111000111110010011111110001011011000101111100110111011110001011111000101100010011111110011111111000111111100110111110011111111101
|
||||
01111111100111111011111111101111111100101111111001111111101111111110011111010110111111101111101110111111111111111111111111111111001111110100111111111001111111011111111110011111011000111111101011111101111111011010111111111111100
|
||||
01111111111111111011111111101111111111111111111111111111101111111111111111010111111111101111111111111110111111110111110111011011011101100100110111111111111101111111111111110110111111111111111111111111111111111011111110111110101
|
||||
01111111111111111101111111110111111110111111111101111111110111111111011111110111111111110110111110011010111101011110111111100011101110001111111101111111111111011111111111111000011111111111101111111111101111011111111110111111010
|
||||
01110111111111111111111111111111111110111111111111111111101111111111111111110111111111111111111111111111111111111111111101011111010101111111010111111011111101100111111111010111011011111111101111111110111111010011111111101110111
|
||||
00111111111110010011111101001101110010111111010011111101001111110100111111110011111101000111100100110111010011110111111011111111001111010111101111001011111101101101110111011111010011111001001111110111111111010011111111111101000
|
||||
01101111101101111101011111110101110111010101111101011111110101011111010111111101010111110001111111010101111000010110111101000111110001011111010111101100001011110101011011010111111101010111110100010111010111111000011111111110011
|
||||
01111100110011101111111110001011111100111111101111111110101111111001101011110011111110001111111010111011100011111111011111111111111110111011111110110011111100001011111110111101100011101110001111111110110111100010111111110111000
|
||||
00111111111110111111111001101011011001110110111010111010101111101101101011101010011010001111101011111111101111111011111101011011111011101111011111101010111101111111110111011101011111011101011101101011110111101111111011111101000
|
||||
01111011101010111110101110111110111111101011111011101111101111111111111010101111111111111111111110101111110111011001111111111111101111101110101110101101111110111010111111001111101110111011111011101111101111110111101111011111111
|
||||
00111101111101010101111101010111110011111111010111111001011111100101111111010111110101011111110101011101010111101111110110110101011111111111110111010111111111011111110101111001010111111101011110111101111011010111111111111101011
|
||||
01111111111111100110111010011111101111111101100111111110011101101001111111011011111010011111011001111110100111110101011111111101101111011111111111111001110101111101011010111110101011011110101111100111110100101010100111111011001
|
||||
00011111111111100111110110011111011101110111100111110111111111011100101111100111101111101110111111110011100010111101111111011111110100111111110111011101011110011111111100111111110111101111011101111001111111111111011111111101000
|
||||
01111111111111011111111101001111110010111111011110011101111111110111111111111110111111111111110110111111011111111100011011111101111111110110111111011011111101011111110011111111001110111111111111100111111011010111111111010111100
|
||||
01101111101111110111111111111101110111111111011111111111011010110110111111111110011111111011110111111101110111111111011100101111011110110111111111011110110111110111110111110111011101101111101111111101101111111110111111110111010
|
||||
01101111101001111011101100111110110101111111111011111101011111111011111001010111101100111101110101110010101111101001000111111000011101101011111010010111011000111101100011111101001110111100101110110001011010101111011101101110011
|
||||
01011111111101111110110100111011111111111001111110100111111111011110111101111111111101101111111111101111110111011101110111111110111111111110111111111101111100111011110101101011011010110101101111111011100111111001100111101110101
|
||||
00111111110101110111011111011111110100111111110111011101011111111111101111110111111011011100111111101110010111111110110111111011001101101111111010111111011011011000010101111110010111001111111111111111111111111011011111101110010
|
||||
01111111110111000011011111011111111111111111110011010101011111110100110111100110110110101011110101111111111100011111110100111110010111110101100111010100111111011111111111111101111111111111111111010101110011110111111111111101001
|
||||
01111111111111111101111100111111111111111111001111111111111111111111001111110111111111111111111111111111111111111011010111111110111101111111111111111111111100111010111111111111111101111111111111111111111111101111111111101110001
|
||||
01011111110011111110100111111010100111111001111111100101111100111110000011111111111111111010010110011001111111100111111001001111100110011110001001111011101011100100111111100011111001100101101110011110011001111011111111111010100
|
||||
00101011111111111110001100111110010111110011011111001111111000111111101010111111111111111100110111010011111111100111111011001111111110011111011111111111100100110110101111111010111111100101111111111111110011111111111101010100110
|
||||
01111011111111111111100111011110010111110011111111111101011110011111011111011111111101111000110101110011110111111111010111101011110111111111111001110111111101011100111111111001111101111101011100110101011010010111101001011111101
|
||||
01101111111111111111001101111100110111111111111111101101111100111111111111111111111111111111110101110011111111101111010111100110111111111011111111111111100101011110011111111011111111101101011100110101111111010111101111110110100
|
||||
00111111111110111111111111011001100111101111011011010001111101101111111111111111011011111110101101111010111111010011111111111011011101101111111010111111101011011111111110111000111111100001111111110101111111010111110111111100100
|
||||
01101111111101111101111101110101100111011111010011111111010111111111011111011101111111010101100111010110110101111111111101100011010111111111011111111101111101110111111111111010011101111101110111110101011111010101111110110111111
|
||||
00111111111111111111001111011111110111011011111110101101011010111111101011011110001101111100111101111111110111111111010111101011011111111111111011111110001101011110101111111010110111111101011110100101101010010111101111111100110
|
||||
01101111111111111111001101110110100111111101111011110101011111011111111101011111101111011111110111111011110111101111010111101011001111111100110001111011001101011110111110111011010111101001011100110101111011010111000111111111100
|
||||
00101111111111111111011011101101101111110110111011001111111100111111110110111111000111111111111111110101111111000111111111011111101111111110111111111011111111111101001111110001111111001111111101101111110100111111111111111101010
|
||||
01111111111111111111101111100110111111111011111111111111111111111111111011111111111111111110111111111110111111111111111111101011100111111110011111111001111111111110011111111011111111111111111110111111111011111111101111111110001
|
||||
00011101111010110110110111001110001101101100110010111111011110101101110110110110111011011110001101111111110111101011110111011011010111101101001110110101111011011111101100110110110110111111011111011101111101110111110110110100011
|
||||
01101101111011111111101011111110101111110011111111111011111110111111110010111111110011111111111111111110111111111111111111100011111101111111111100111111100011111100101111110111111111101011111111101111111110111111111111110111111
|
||||
01111111101110111111101011110111001111111110111111110011111111101111110110111111110111111111101111110111111111111110111111011111111111111111110111111111110111111101111111111111111111011011111110101111111010111111111010111110101
|
||||
01111111111111110111001111101110110111110111110011011011011111110111110111110111101111011111110101111111111111111111011111111111111110111111011110111111011101011101111110110111110111111101011101110101111111010111111111111111011
|
||||
01111101111011110000111111100111111101001111011100111101100111110110011111011001111111000111110100101011111000111011011000111001100111111110011111111000111101001110111111001111110000101101000011110100111111010000111110111110010
|
||||
00111111111111110111011111111110110111111111110111011101011101111111111110110111111111111101110111111111111111101110011111111111111111111111111011111111111101011111111111110110111111111101011101110101111111010111111110111111000
|
||||
01111101111111110111110011111111001101111100111111110001011111001111111100111111110011111111000111110100111111110011011111110011111111001110111100011111110001011100011111111100111111110001011100010101110001010111000111111101110
|
||||
01111111101111111000111111100111111101111111111111111111011111111111101111111110111111000011111100111111110111111111011111111111111111111111111111111111111101011100011111111111110001111111011100011100010001010111000111111111110
|
||||
01011111110111111111111111111111110111111111111111111101111111110111111111111111111101111111110100111101110111111111011111111111111011111111101111111110111101011111101111111111111111110101111111101101111110010111111010111110101
|
||||
01111111111111111111111111111111111101111111110111111111011111111111111111110111111111111111111111110111110110111110011111111111111111111101111111111111111111111111011111111111110111111111011111011101111101111111110111111111010
|
||||
01101111111110111011111111111011110111101111111101111111010111110111111111111011111111101111110110111111011011111111011001111111111111111111111111111111111111111110111110011111111001011101100101111100110111111101011111101111111
|
||||
01101111111110111111111100101111110100110111010011111111101111111111111111111011111111001111111100011111001010111010011011111101100111111110110110001011111101101111110010110110111111111111100111110010111111011001011110111110111
|
||||
01000111101111111101001110110100111011010011101101001111110100111111010011111101001111110100101111010101011101010111101101001001110001111111010111011101000101110000011111010011111101011111110100101011000111111101001001111011010
|
||||
01111100110010110111111011000101111100111111110011111101111111111101111111010111011111011111111100111011110011111111011010111101111111110111111111111011111101001111111000111111110011111101001111111100011111000011111110111111000
|
||||
00110111111011110111111101110010110111110110101010110111101111101100110101110111011111010001110101010111100111110110101110111111101111101110111110011101011001011011101111110011101111101110111111111011111110011111011111111100101
|
||||
01110111101110111111111110111101111011101110101011111111100111111111111111111111011011111111101111001111111010101111111111111111111111111110110011111111111111111111100101111110101010101110111011101011111110101110110100111111110
|
||||
01001111111110000111111111001111110111011111001101111000011111110101011111011111101101011110110100111011000011111000111111110100011110011101111111000111110101111011110001101011010011110101000110110101101111011111101111111110101
|
||||
01111111100111101111111010111111011101111101111111111110111111100110111111110111010101101111011101111111101111101011111111111010111111110111111010101111111111011111111111111101010101111101011111111101111101111011110111110011000
|
||||
01111111101111110011110111011111111001111111110111110111011101011101110101110111111111001111110101111111110111011100100111011111111011111001111111111111111111001011110101110111110110110111011111110111101011110111011111111110000
|
||||
01101111111110000111111100011001110111111111000111111100001111110001111111111111111100001111110000111111000111101101010011111111111011110101111111010111111111110111110000111111000111111100011011110101111111000111011011111110110
|
||||
01001110111111111111111111111111110111111111111110111111111110111111110111111010001111111011011111101011111110111101111111110111110110101111001111111111111111101111111111100111111111101111111111111111111111111110111111101110010
|
||||
01111111111101001101100100110001110011110001001111101100111101110011110001101110111000111110111011111111001101101001001111010110110111110011110100001110111101001110110010111110001111011100111111110101110111001111011111111110110
|
||||
01101111111101010111010101011111010011101101010111110101011111010101011111111011111101011111101011111110011011011101101111101111101011111011011111011011111111111111110011100011001111110100111001111111111001001111110101111111010
|
||||
01110111111111110111111111011101110101100111110111111111011111111101111101110110101011011111111101110011110111111011100110111111111101111011111110111110001001001101101101111110110110011111011110110101101111110111010111101011101
|
||||
00000111110111100111011110011011111101111111100110111110001111111001100111010111110110011111011000101111100111011111110111111011101111111101101111110111111111000111010001111011000111111100011010101101011111000011111111111101000
|
||||
01111111101111101111111110111111111011111111101111111110111111111011111111011101111110111111101011111111101111111111001111111011111111111011111111101101111110111111111111111111111101111111111111111011111111111101111111111111111
|
||||
01011111111001111110100111111110011111101111111111100111111000111111101010011111111111100100111110011111111001101010011001001111110110011111010011111110100111110010101110010011111110100111100110100111101111111001111111111011010
|
||||
00101011111001111110001111111100111111111001111111001111111110011111110011111111101011110011111110111010111111101011011011001111110110101111011111111111001111111110101111011111111110001110110110011111111001011111111101010110111
|
||||
01111011110011101011001110101000111101111001101011100110101100111010111010010111001110101100111010110011101000101011011110101011101011111100110011111010101011110100111111110011111111001111111100111111110011111101111101011110101
|
||||
01101111111011111011100111111110011111111111111011111111111110011110111001011111100111111110011111011001111111100110011111100110111100111001111011111111100111111110011111111001111111101101111111111111111001111111001111110110011
|
||||
01111111111100111111111011110111101100111110111111111011110110101111111010011111101011110110101111111010111101101011011111111011100011111110000100111101101001011001101110111010111011100011101101100101111010010011101011111101010
|
||||
01101111111000111101110011110111001100110100111101110111110110101111011010110101111011110110101111011010111101101011011101100011111111111111101110110101111101010111101111111010111111101011111111110111011010011111101010110111101
|
||||
00111100111111101110100110111110001101111011101110101110111011111011101010010111110110111110101011111010101110111111011110101011110010101101111001111110101111111110001111111111111111101101011110101111101011110111101111111100100
|
||||
01101110111111111111110111111100111110111101111111110111111110101111111011010111101011111110111111111010111111101010011111101111101010101101111000111111100111110010111110111011111011110101001110111111111101011011110111110010100
|
||||
00011111111111110111011111011100111110111111110111001111011101111101110101111111111111011101011101110110110111011111111111010111101111111111110011111111010011101100011111110001111111001111111100011111110011111111001111111101010
|
||||
00111111111111111111101011111110111111111011111111101111111110101111111000111111100111111110101111111011111111101011111101101011111110011111011111111111101111100111111111111011111111101111111111111111111011111111101111111110001
|
||||
00111101111110110111100011011101101100110110110111011011011111001101111111110110111011011111001101110110110111110011110110011011001111111101101110110111011011001111101100110110110011001011001111101101110110110011011010110101010
|
||||
01101101111100111111101011111101101111110010111111001011111110001111111110111111110011111111001111111100111111100110111111100111111111101111111100111110110011111101101111110110111111101011111101111111110010111111011111110110100
|
||||
01111111100110110111101011011101101111110110110111011011011101101101111011111111011111011101111101110111110111111110111101111111111101101111011101111111110111110101111111110111111111101011111111111111110110111111111011111110111
|
||||
01111111100111111111111111111101111100111011111111001111111110111111110111110111111111111111111111111111111111111111111111111111100110100101001111110111111111000011111110011111111011111101001101110111110111010011011110111111100
|
||||
01111101111111111100111111110110110101001111111100111111110010111111001011110011111111110011111111001111111101111110111001111011100111110100001111011101111111000011111111001111111100111111110011101100001111111100111111111111110
|
||||
00111111101111111111111111111111111111111111111111011111111111111111111111010111011111111101111111111111111111111111111111111101011111111100110011110111001111001111111111110111111111111111111111111111111111011111111111111111111
|
||||
01111101111111111111110011111111001101111100111111110011111111001111111100010111110011111111001111111100111111110011111110110001001111000101111100010111110011011111001110111100111111110011111111001101111100111111110011111110100
|
||||
01111111101111111011111111101111111111111111111011111111101111111110111111110111111111101111111110011111111011111111010001111111101111110101111111111111111111000111111111111111111111111111111011111111111111111111111111111111110
|
||||
01111101111111111011111111101111111111111111111011111111101111111110111111110111111111101111111111111111111111111110010111111111101111110101101111111110111111010111111111111111111111111111011111111111111111111111111110111110011
|
||||
00111111111111111111111111111111111111101111111111111111111111111111111111110111111111111111111111111111111011111111010111111101011111111101111111110111111111011111111111111111111110111111111111111111101111110111111110111111111
|
||||
01110111111111111110111111111011111111111111111110111111111011111111101111011011111111111011111111101111111110111111010110111101011011110101111111010111111111111111111111011111111111111101111111111101111111111101111111101110111
|
||||
01111101111110010011111101000111110010101111010001111101001111110100111111011110111101001111110100001111010011111111101011110100100111110110111111111111111101100101100100111111010011111001000111111110111110010011111111111111111
|
||||
01111110101001111101010111110101101011010101111101011111110101111111010101101101011011110101101111010111111101011010111101001101110100011101010111111101011111110100111111010111111101011011110101011111010101111101001101111110000
|
||||
01111101111111100011101110011111111100111011101111111110011111111001111011110111111110111110111000111110100011111111111000111111100111111100111100110111001100001111111001111111100011101110001111110100111011100011111111111111110
|
||||
00111111111110101010111011011111011011101111111010110111101110111101111111111101111111101101010110111111101111101110101111111010111111110100111011111011111001101101101100111011111111110111111111101000101110111111111111111101101
|
||||
01111110111111110011101111111111101100110011111010101111000111111111011110101011111111111111111100111011110111111111111110111111101111101110011011110111111110111111111110111111010011101101001011111110011011010011111011011110011
|
||||
01111111111010000111111000011110111101111111000111111100011111110001101111010110100100011011110001101101000100110101110111111000001111111100111111010111110111011010010100001110010110111101011111111111111111010111101111111100010
|
||||
01111111111111011111110101111111111011111110011111111101111111110111011111010111111001111111110111111011011111111100111111111110111111010111111110110111111101111111111010111110101011111010101111011111110111101011011111110110000
|
||||
01111111111111110111111111001111111001110101110111010111011111111101110011100111111111011011111100111111110111000101011110111110011101111111001111000111101110011111011111111101110111110111011111111101111101111111111111111101101
|
||||
01111111111111000111111100011111010101111111000011111100011111100000111111010111111100011101010001111111000011101110111111111101101111111111111011011110101101001111100111111111000011101100011111110001100111011111111111111010100
|
||||
01111111101111111111100111111111111111110111111110111111111111111111001111111110111011110110111111111011111100111111111101101111011111111111111111110110111111111011110111111011111111110111111011111111111111011111111101110111010
|
||||
01101110111001001011111100011110010010111011111111101110101101111011111101101111101101111111100111110110000111001011101100011000011010100011111111001011111100111111101111011101001011111100111110010010110111111101011111100111100
|
||||
01011110111101010110110110111101010101101101111111110111011011011110101111101111111101111111110111101111110111111101110111111111101011110011110111011010111100110111111111111111111010110111101111110110111001111111110101111111010
|
||||
01111111111111010111011101011111011101111111010111011101011111110101111110110011111101011001100101100010010111011011110111001101011101111100110110111011111011011111101101110110100111111110011101111101111111010111000111101111011
|
||||
00111111110011010011111101011101111001111111010001011101011111110100111101100100110001010111110101111111010111111111101111111111011111111111111111111011010111010110011100110101000111111100001101010001111111110011101111101110010
|
||||
01111111111111111101111111110111111101111111111101111111111111111111011111110111111111110111111111011111111111111111111111111110111110110111101111111111111100111111110101111111111101111111111111111111111111101111111111111010111
|
||||
00011111111001111110100111111010011111101111111011100111111011111110011001111001100111100100111110011001111111100110011101100101100110011100111001011111101011111111111110011010111110100111111110010111110011111110111111111011110
|
||||
01101011111111111111001111111100111111111010111111001111111110101111111111011111001111111111111111011010111111001111011111101011110100111111111111011111101011111010011111111010111111001101011100111111111111111111111101100101011
|
||||
01111011110011101011001110111100111101111001101011100110101100111010010011111101001110100100111010110011101011101010011101001111111000111111111111111011101011111110010111010011111111001111111100111111111001111111111101011111100
|
||||
01101111111011111011100111111110011111111111111011111111111110011111011001111111100111111110011111011001111101101111011111111111111100111111111011111111100111111110011111111001111111101111111110110111110011110111111111110100110
|
||||
01111111111101111111111011111111101100111110111111111011110110101111111010011111011011110110101111111010111110100011110110111111101111101111110100011001111011111101101111111110111011100001101101001110110110110111111011111101011
|
||||
01101111111111111101110011110111001100110100111101110111110110101111011010010101111111110110101111011010111101101011110110101011101111011111011111011011100011110111100111010100111111101011111111110111111111111101010010110101010
|
||||
00111100111111101110100110111010011101110011101111101110111011111011111011111111101010111110101011111011101101101111110111101111111111111111111010011110101111111010010111111010111110101111011110111101101111110110101111111101100
|
||||
01101110111111111111100111111100011110111010111111100011111100111111111000111111101111111110111111111000111110100110110110100011101110110111111011001011000111111110010111111010111011110111101111010100111011110111110111110001010
|
||||
01011111111111110111010111011100111110111111110111001111011101111101110111111111000111011101011101111111110011010111111110011011101101001111110001111110011111111100011111110111111111001111111100111111110001111111011111111111000
|
||||
01111111111111111111101011111110111111111111111111101111111110101111111000111111111111111110101111111011111001101011111111101111101110111111111111111101101011111111111111111110111111101111111111111111111111111111111011110110111
|
||||
00111101111110110110100011011001101100111110110111011011011111001101111110110111111011011111001101100110110001110011110111011111001111001101111111110001011011011110101101111110110011001011001010101100111111110110111110111101011
|
||||
01101111111100111111101011111101101111110010111111001011111110001111110010111111110011111111001111111000111111110010111110111011111100101111111010111110100111111111101111110010111111101011111110101111111111111111111111110111000
|
||||
01111111100110110111101011011101101111110110110111011011011101101101110111111111011111011101111101110111110111110110111111101111111111001111110111111111111111111101111111110111111111101011111110101111111111111111111010111111110
|
||||
01011101111111111111101111111111101100111111111111011111111101111111110111110111001111111110111111111111111000011111111110111011000111111111111111110001111111111111111101111111111001011111100101110100111111111111111111111110011
|
||||
01111111111111111100111111110011110101011111111100111111110010111111001110011001111111110011111111011011111100101111111101111101100111111110001011011101111111100011110110001111111100111111110011111111001111111010111110111111101
|
||||
01111111101111111111011111111100111111111111111111111111111111111111111111110111111111111111111111111111111010111111111111111111001110111101111111110111111001011110101101110111111011011111101101111111111110111111011110111101101
|
||||
01111111111111111111110011111111001101111100111111110011111111001111111100111111110011111111001111111100111110110010111111110001111111001111111000011011110001011111001101111100111111110011111111001111111100111111110011111111111
|
||||
01111111101111111001111111100111111110011111111001111111101111111110011111111111111111101111111110011111111111111111010111111111000111110110101011110011111111100111111110111111111110111111111111111111111111110111111111111110000
|
||||
01111101111111111110111111111011111111111111111110111111111011011111101111111111111111111011111111101111111110111110010110111101011111111110111110010011111111111111111111111111111111111101111111111101111111110111111111111111001
|
||||
01111101111111111111111111111111111111101111111111111111101111111111111111110111111111101111111111111111111111111111010111111111011011111101111110110101111101011111111110101111111111111111011111111111111111110111111111111111111
|
||||
01111111111111111111111111101111111110111111111111111111111101111110111111111101111111111111111111111111111111111111010111111101001111110110111011010111111101000111111110111111110111111111010111111111011111011111111111100110011
|
||||
01101111111110010011111101001111110010111111010011111101001011110100011111010011111101001111100100111111010010111110011011111010101111110110011111011001111001100101110100111110010011111101001111110100011111010011111011110111100
|
||||
01001110101101111101010111110101011011010101111101011111110101111111010110101101011111110101011111010101111101001111111101011111110101111111010011111101011011110101110111010101111101011011110101111111010110011101011111111011111
|
||||
01111111111111100011101110001111111100111011101111111110101111111000111111111111111110101111111001110111100111111111000001011111001100110010101111000001011100001111011100111011100111111110101111101000111111110011111100111111000
|
||||
00111111101101101010111110111111101011101110111111011010111011101011111111111011111110101101111110110111111110110110100111001111101101101010111110100111110101111001111111111110110010111101111111011010101111100011111011111100111
|
||||
01111001111111110011101010101111101100111010111111011111101110111010111111111011101011111110101011111011101111111111111111011101010101101111111111111110101110111111100010111010111011101111101011111100101111111001111110111110001
|
||||
01111111111101000111111100011011111101111111000111111000011011010001001111011110111100011011110001001101000110101101110111101001111011111101101111110111111111011110110101011111010111111101011111110101111011010111111111111111100
|
||||
01111111111011011101110101111111011011110101011111111101111110100111111111110111100101111101010111111111011110011101111111111111101111011111111110111111011011111111011001111111101011111010100111101010111011100111101111111011110
|
||||
01111111111111110011111111011111111101111111110111110111011101111100101001110111111111011111111101111111110111110101000111010111111100110101111111011111110101011111111101101101110111010111011111011101110101110111100111111110000
|
||||
01111111111111000111111000001111110111111111000111111100001111110001111111101110111100011011110001101111000110111110010011111111101111110111101111111111111100011011110011111111000111111100011101110001111110000110110111111111111
|
||||
01111111101001111111111111111011110110101111111110111111111111111111111111111100011111110100111111001011111110011111111111101111111011011111111110111101111111111101110111101011111111111111111111111111111111111111111111111111011
|
||||
01111110111111000011111100011101010011111011111111101101101100110011111011001111101100011111111011111110101111100111101011111000111111110000111111001111001000111111010011111110101011100101111111111110101111001011010111111110001
|
||||
01111110111101101111010110111011010101101101111111110101111011011110111111011011111111101011011011111111101111011100110111011101011100111011110111011011111111101111110110111111111000110101111011011111111111011010110111111110101
|
||||
01101111111101010110101101011101111101111111010111011101011101110001101111110011111101011010110101100110010011111011110110101011011111111101101011110111111010011011100101111000110111011111011011111101110010110111011111111111101
|
||||
00011111110111010011011101011111111011110111010001010101011110110101111111100010111101011011010100110111010111111111110111011111011001111101110111111110111100011101111111111111000011011100011111110000110101000111111111111100101
|
||||
01111111111111111101011111111011101111111011111101111111110111111111111111101111111111111111111111111111111111111111001111111111100111111110111111011111111111110111111111111111111101111111110111111111001011111101111111111010110
|
||||
00011111110011111001100111100110010111011111111111100111111011111110011001111101100111100110011110111010111001100110111100111111100110010110011001111111101011111000111111101010011110100111111100111110011010111110111111111001011
|
||||
01101011111010111110111111111000111101011001111111001111111111111110110011110110001111101010011111111010111101001111001111111111111100111111010011111111101011111111110111111010101111001111111110011111111010000111111111010110111
|
||||
01111011110011101001001110100111110101111001101011100110101000111010111001111001001110101100111011110011101110101011110101111111110100111111111001111011111111111111110111110011111111001111111000111111010011110111111111011110110
|
||||
01101111111011111101100111111110010101111111111011111111111110011110111111111101100111110110011111111001111111100111011111111111111100111111110011111111001111111110010101111001011111101111111110111111111001111111111111110110011
|
||||
01111111111101111111111011110111100101101111111111111011110110101111111010111010111011111110101111111010111111101010110110011011111111111111111010011101101011101111101111111110010011100011101101000110110110111011101011111111101
|
||||
01101111111111111101110011110111000101100110111101110111110110101111011010111101110011110110101111011010111101101011011110111111110111111111011010110111111011111101001111010100011111101011111111111111111111011111101011110111010
|
||||
00111100111111101110100110111110000101101011101110101110111111111011111010111111100010111110111011111111101111101111010111111111111110111111111011011111100111111010101111101010011110101111111110111111111010110110101111111100001
|
||||
01101110111111111111110111111100110101101101111111100011111110101111111011111000001111111110011111111010111111100111111110111111111111011111111101110111100111101110101111111010011011000111101111011100111010011011110111110110100
|
||||
01011111111111110111011111011100111111110011110111001111011101111101110101111110011111011101011101110110110111010111111110111111111101101111110011111110110111111101111111110111111111001111111100111111110011111111001110111010011
|
||||
01111111111111111111101011111110111111111011111111101111111110101111111000111011100011111110101111111011111111101011111111111111111110111111111011111101111111111111101111111110111111101111111111111111111111111111101111111111111
|
||||
00111101111110110111100011011100101101110110110111011011011111001101111110110011111011011111001101110110110111110011110111111011011111001101100010110111101011001011111101111110110011001011001110101100101110110011011110111101101
|
||||
01101111111000111111101011111110101111110010111111001011111111001111111100111111110011111110001111111000111111110111111110110111111111011111111011111110101011111111101111110010111111101011111111101111110110111111101111110111111
|
||||
01111101100110110111101011011101101111110110110111011011011101101101110111111111011011011101101101110111110111111111111111111111111111101111111110111111110111111101111111110111111111101011111110101111110111111111111011111111011
|
||||
01011111111111111111011111111111110101110111111111011111111101111111110111110101001111111111111111111011111111011111011110101111111101111111111011011111111111100111110111111111010001011111101101110100010111110001011110111011101
|
||||
01111101111111111100111111110011110100001011111100101111110111111111001111111000101111110010111111011111111101111111010101111001100111111110011111110101011111111011100110001111111100111111110111111101001111010100111111111110001
|
||||
01111101101111111111111111111101110101111111111111111111111111111111111111111010111111111111111111111111111111111111011111111111111101110111111011111111001111110111111111111111011101111111111101111101011111111111011111111110111
|
||||
01111111111111111111110011111111000101111100111111110011111111001111111100111111110011111101001111111100111111110011010111110001111111001111111100110111110011111111000111111100111111110011111111000111111100111011110011111111101
|
||||
01111111101111111011111111101111110101111111111001111111101111111110111111111001111111100111111111111111111001111111110111111111101111111111111111111111111111101111111111111111111111111111111111110111101111110111111111111110011
|
||||
01011111111111111011111111101111110101111111111111111111111111111111111111111111111111111111011111111111111111111110111111111111111111111111111111110111111111101111111111111111111111111111111111111101111111010111111110111110101
|
||||
01111111111111111101111111110111111101011111111101111111100111111110011111111101111111110101111111011111111101111111110101111111101111111111101111111111111111111111111111101111110111111111111111111111111111110110111110111110010
|
||||
01101111111111111111111111111111110101111111111111111111101111111111111111111011111111111101111111111111111111111110111111111111100111111111111111110110111111101111110111111111010101111111110111111101111111110111111111110110001
|
||||
01101111111110010011111101001111111111111111010001111101001011110100110111011011111101001111110100111111010011111011011011111101100101100010111111011011011101000111101111111101010001111001001111110100111111010011111011111101111
|
||||
01001111101111111101011011110101111111010101111001001011110100111111010001101001000111110100101111010101111001011111011100010111110101010111010111111001011111110101111111010110111101011111110100101111010111111101010111111011101
|
||||
01111100110010100011111110101111111100111110101011111110001111101000101111010011111110011111111011110111101011111111010011011100101101111100111011000011011110001111011100111011100011111110001111111010111111100011101111111110101
|
||||
00110111100111010111111110111100111111110111011010011101011110110110111110011011011111001101011110110111101111011111101111111101111001100110011111011111011110011011011011111101100011111010111111011011111101100010111011111100100
|
||||
01100111111010111111101111111010110101101110111110111011111011111101111111101111111111111111101111111011111100101101101111111111111111111101011111101101101111101111111100011011111010111111001011111110111111111011111111011110101
|
||||
01101111111111000110011100001111110111111110000111111100001111100001101010111110101100011011110000111111000011111101001110111111011011110001101111011111111001010011101100111111010111111001000110110101110011010111111111111111111
|
||||
01101111100101011111111001110111111101111111011111111101111111110111111101111111111001111111110111101001011111111101111111110101111111011011111101110111111110100111110111111101101011111010101011101010111010101011110111110110110
|
||||
01111111101111100111110110011111111101110011100111111111111101011111111111111111011111111101111001110111110010111101110111001111101011111101101111111111010110010011011000101111100101110111011111011111101101100010101111111110100
|
||||
01011111111111011110111101011011110111111111111010111111111111111110111101111111111111111100110111111110001111111100001111111001111111110011111111111111111101111111110111111111011110111100001111110101111111111111111111110110101
|
||||
01010111101011110111111111111111010110111111111111111111111111111111011111111111011111111110110111101111110111111111110111111111011111111101101111111100111111011110111101111011110110111111111111111111111111111111111110111111001
|
||||
01000111111111111111111110111111011011001001011111101110101100110010111111001100111101101111111111111111001111100011101111111100111100110001111011101111101100101111100001110111001111101100111110110011111011001011001110111111100
|
||||
01011111101101111111110110111111011110101101011111010111011011010011111101001101110101111111011111111111011011011101101111101100111011011101111101101111111101101011111110101111011000110101011111010110111111011010110110111111010
|
||||
01111111111001110110011101011111111101110111010111111111011111110101100111110011111111011010111101110110111110111111110110111111111001111101100111110111111011011111111101110010110111111111011001111101111110010111010111101011100
|
||||
00011111110111100011111111010111111010110111110111111111111111111100110101111101111111111111011100000101010111011111111011011111010011111010110101110111111110011101111001111111100101011100001101111101111111110011101111111101010
|
||||
01111111101111110111111110111111111111111111101101111101111111111011111111011101011101110111110011111111111101111111011111111111011111111111111111001111011111011101111101111111110111111111111111110011111111101111111111111111000
|
||||
00011111110011111110100111101110011111110011111111100111111010011111011001111011100111100010011111000011111110100111011110100111111110011011101001011111101011111010011111101010111011100111111010011111101010011110111111111001111
|
||||
01101011111111111110001111111100111111100011111110001111111100111111010011111111001110110100111111010011111111001110111110001111111100111111110011000110100111111100111111111010111111001110111100111011111010010111111101010111011
|
||||
01111011111111111011111101111110011111111001111111111111111110011110111010110111100111111110011111111010110111100111011111101011111100111111101001010111111111111100111111110011111111001101111100111111110011011111111101011110100
|
||||
01101111111111111101111111111100111111110011111111100111111110010111111001111111100111111110011111111011111111001111111111111111111100111111110011010111001111111110011111111001111111101111011111111111111001110111111111110110000
|
||||
01111111111111111111111111101111111111111111111110111111111111110101001110111011111011111111111111111100111111111011011111011011111101101110111010111110111011101111101110111010010011100001101110100101110110011011101011111110000
|
||||
01101111111111111101111111001110101111011111111101111111110110100101101000111101110111110110101111011000110101100010111101111011110111101100111010111101010011111101001111111010111111101001111111110111011010111111101010110110000
|
||||
00111111111111111110101101111010111111110011111101111111111110110101111111111111101011111110111111111011110111101111011110100101111110011111101011111101101111111110111111101010110111101011111110111111101111011110101011111100110
|
||||
01101111111111111111110111001110001111110011111110001111011111011101101011111011101111111110001101110001110111110110111111110111111111011110111101111110110111101100011110111010111011101111101111011111111011110011001111111111100
|
||||
01101111111111111111011011101101101111110111111111011011111101101111100101111111000111101111111111110011111111011110111111011011111101101110111111111111111111111101111111110011111111000111111111111111110100111111001111111110101
|
||||
01111111111111111111101111111110111111111010111111101111111110111111111010111001111111110111111111011111111111101011111111101111111110111111111011111111101111111111101111111011111111101111111111111111111111111111101111111111101
|
||||
00111101111010110110110011001100101101100110110111100011011001111101110110110000111111011011111101111111110111011011110111011111011111011101110111110111001011001111101100110110110011001011001111101101101110110011011110111101100
|
||||
01101101111011111110100011111110101111110111111111101011111110111111101101111110111111111111101111111110111111011011111111101011111110101111111010111111101011111100101111110010111111101011111101111111110110111111111111110111001
|
||||
01111111101110111111110011111101101111111110111111011011111111101111111110111111111011110111001111011101111111110010111111101011111110101111111010111111110111111101101111110111111111101011111111101111110111111111111010111110000
|
||||
01011111101111111111111111001111111101110111010111011111111101111111101111110110101111100110100111101111110111011111110111111101111101111110010111010111011111100111111110011011110001101111000100111101111111010001011111111011011
|
||||
01111101111111111101111111010010111110001111010000111101101110110101011111111100111111110011111110011110110000101110111101111101100111111111011011010001111111010011111101001011111100111111110011111110001110010100111110111110111
|
||||
01111111101111111111111111111111101111111111010111111111111111111101100011111111101111110111110111111111110111111111111111111101111111111110111110111111011101010111110110110111111101101111001101101101111011011111111110111111011
|
||||
01111101101111111111110011111111001111111100010111001011111110000111101100111110110011111111001111111100011111110011111110110001111111001111111100111111010011111111000101111100011111110011011111001111111100111011110011111110000
|
||||
01111111111111010111111111011111101110001111110111011111111110101111111111111111111111000111111110011111111111111111110111111101111111111101111111111011111101111111110101111111111011111101101111111101111111110000111111111110100
|
||||
01111111111111010101111101111111111111111111011111111011111111110101111111111111111111111111111111111111111111111110111111111101111011111101111111111011110111011111111101111111110111111111001111110111111111010111111110111110111
|
||||
01111111111111010111111111111011111111111111110111100011111111111101111111111111111111111111111111111111111111111111111111111101111111111111101111111101011111111111110101111111111011111111111111111111111111111111111110111111000
|
||||
01111111111111010111111111111110111110111111011110011111111110110111101111111110111111111011111111101111111101111111111110111101111111111111111111111111011111110111110101011111111001111111100111111111011111111011111111101111001
|
||||
01111111111110001011111111001111111111111111010010111101111111111100111111011011111101111111110111111111001011011011011011111101111101110110111111010011111100101101100010111111001011110011000111111111111111011111111011111111101
|
||||
01011110111101011101010111110101111111010010101101000111110100111111000101101101011011110100011111010110101101010110111101011011110101011101010101101100011111110101111111010111111101011111110101111111010101111101011111111011100
|
||||
01111100111010111001111111101111101101111111110011111110011101111100101011011111111110001111111011110111110011101111000001101110001111111100110111110011111010001111101010111111100011111111101111111111111111100011101111111110010
|
||||
00101101111101011110111010111101111101110101010101111011110011100100111111111011011001101111111110111111011011111010101111110101110111100111110110010011110101111101110110101111111111110110111111011110101110100011111011101101001
|
||||
01111001111010111011101111111111011111001111111011111011011101111111110110111111100110101111101111111110101111111101110111011010111010011101111011111111001110111100111110101011010011111111101111101110101111111010111111001111100
|
||||
01111111111111110111111101001111110100111111010111111101011111101101101111111110110101010011111111111111110101110101010111111111001111110100011110110111111100011111100001011111000110111100011110110101111011010111111111110110101
|
||||
01111111111101111111011001101111111110011101010111110111101101111011111101111111111111101111111111111101101111111000111011111011111110011111110111011111010111111111101111111110111110111011111110110101111110111011110111110110111
|
||||
01111111111111010011110111011111110111111111110011111101011101011101111011110010111101001111011101101111110110111111000111011100011111111001111101111111111100011111010101110111010011100101111111011001111101010000111111111111101
|
||||
01111111111111000111011100001111101111111111000111111100010111110000111111010111111100011111110001111111000111111110111111011101001111110101101111011111111101011111110000111111000111111101011111110110111111111111111111111110101
|
||||
01101111111011111111011111111110111111110111111110011111111111111111111111111011011111111111111111111011111100111110111111101111111111111111111111011111111111111111111111100110111111011111111111111101111101111010111111101111010
|
||||
01111110111111101011001100111101111011110101000111011110101111110010111101001111111110111111011010111111101111100111001111111100011111111011101110111111101100101110110111111011001111111100111001111111111111001111110111111110000
|
||||
01111110111101101111110101101011011110111111101101110110111101010011111101011011100111100110011011111111101111111101011011010111011111111011100111111111111100111011110111100111011011010100111011011111111111011010000111111011111
|
||||
01110111111011110111111111011011111101101111110011101111011110111101101111110110110111011111111101110111110111011111110011111111011100111101111011111011111111011101111100111111110111101111011110010101100111110101111111111111001
|
||||
00110111111111100111011110010111111111110111100111111110011111111001111111010011111110011111011001111111100110111011111110011110000011100001111111111111011111001101110001111111000111111111011111111100110111110111111111111100010
|
||||
01111111111111101111111110111011110111111111101111111110111111111011111111011111111110111111111011111111101100111111011111111110110111111111111111111111111100110111111111011011111111111101011111111011111011010111111111111110001
|
||||
01010111110011111110100111111010011111101010111001100111111011111110011001111110100111111010011111101010111001101010011101100111111110100111111111011111111111111110011110011001111110100101111110011111101010111111111111011011101
|
||||
01101111111111111111001111111100111111110011111111001111111111111110110011001111001111111100111111111111111101101011001011001100111110010101111111011111111111111011110011110011111111001101111100111111101001111110111101110111110
|
||||
01111011110011101011001110101111111111111001101000100110111000111010100011111111001110111100111011100011101111111110010010100111011110011111111010111111100111111100111101010011011111101011111110011111111010111111111101111111010
|
||||
00101111111011111101100111111110110111111111111101111111111110011110111001111111100111111110011111111001111111111111011011001101111100111111111011111111001111111110011101111001111111100111111100111111111011111111111110110100000
|
||||
00111111111101111111111011110111001111111111111111111011111110101111111010011111101011111110101111111010111111101011010010011011001110100110100100011110111111111111111100111010010011101001011111101111111100111010111111111100100
|
||||
00101111111111111101110011110111001111011010111101110111110110101111011010011101111111110110101111011010111101101011010000111101110111100111011110011110111111110111110111111010110111101011111101001110010100111101111110110101011
|
||||
00111100111111101110100110111010001111111011101111101110111110111011111011111110101110111010111011101010101111111111010111001111011111011111111001111111101111111110110111111011110111101111111010111110111010111111101111111101111
|
||||
00101110111111111111100111111100111111111101111111110111111110001111111101111111110111111110001111111111111111101110000011101101101111111110011101111111110111111111010110111101111011110111111111011111111011111001110111110100010
|
||||
01011111111111110111010111011100111111110110110111001111011101111101110111111111011011011101111101110110110111010111111011010011111111111111110110111110011011111101101111110011111111001111111101111111110101111111111111110111010
|
||||
01111111111001111111101011111110111111111011111111101111111110101111111000111111111111111110101111111011111111101011111111101111111110111111111011111101101111110110111111111011111111101111110111101111011110111111101111111011111
|
||||
00111101111110110110100011011101101101110110110111011011011111001101111110110111111011011111001101110110110111110011110111110011011001101101111100110111110111011111001100110110110010011111011111111101011111110111011110111001011
|
||||
01101101111000111111111011111100101111110010111111001011111110001111110010111111100011111110001111111000111111110010111110011111111111001111110011111110101011111100101111110010111111111011111111101111111110111111101111110110010
|
||||
01111111100110110111101011011110101111110110110111011011011101101101110110111111011011011101101101110110110111110111111111111011111101111111111110111101101011110101101111110110111111101011111110101111111011111111111010111111111
|
||||
01111111111111111111011111111111111111110011111111011111111101111111111111110111111111111101111111111111111111101110010110101011010101101111111111010111011111111101111110110111111011011111111111101101110111011111111111111111110
|
||||
01111101111111111100111111110011111110001111111101111111110111111111011011011000111111110010111111011111111100111111010111111111010011110110011111110000111111100011111111001111010110111111110001111100001111010100111110111110001
|
||||
01111111101111111111111111111101111101111111111111111111111111111111110111110111011111111101111111111111111111101111010110111111010111111111110011010111111111111111111111111111011111111111111100111101111111110111011110111111100
|
||||
01111101111111111111110011111101001111111100111111110011111111001111111100111111000011111111001111111100111111110011010111110011011111000111111100110111110011111111001101111100111111110011111111001101111100111111110011111110101
|
||||
01111111101111111001111111101111111111101111111011111111100111111110111111111111001011100111111110011111111111111110011001111111001111111110111111111111111111111111111101111111110111111101111111111111111111010111111111111111111
|
||||
01111111110111111111111111111111011111111111111011111111111111111111111111011111110111111111111111111111111111111110110111111111101111110111111111111111111111111111111111111111111111111101111111111111111111010111111110111110101
|
||||
01111111111111111111111111101101111111111111111111111111111111111110111111111111111111111111111111111111111111111111011111111111011111111110011111111101111111110111111111111111111111111111010111111111011111111101111110111111001
|
||||
01110111111111111110111111111001111111111111111010111111111011111111101111111101011111111011111110101111111110111111110111111111000111110110111111111111111111111111111101011111110111111111011111111111111111111111111111101111001
|
||||
01111111111110010011111101001111111110111111010011111101001101110100111101010011011101001111110100111111010011011111010001111001101101110110111111011111111100101111110100111111010011111101101111111111011111011110111011110100001
|
||||
01111110101110111101011111110101101111010110111101010111110101111111010110101101011111110101011111010111111101011110011101011111100100100111010110011101010110110101111111010110111101011101100101111111010011011101011111110111100
|
||||
01111100111011100011111010001010110101111111100111111110001111111010111111110011111010011111111000111111100011111111110011011100001111110100111011110100111111000111111000111111100011111101101111111100011110110011111111111111100
|
||||
00110111111101010010111101001111111101111101111011111001111101101011111111011011011111001111101010111110111110011010011101111101111101011111111101110111111010110011011111111111111111111010101111010111110101101111111011111100000
|
||||
01110101101010111011111111111010111110111010110101101110111010111111101010101111001011101110111011111010010111100001110110111110111101100011101010111111111110101111010100011111010011111111111110101011111111110011101110011111011
|
||||
00101111111111000111101100011111111101001111000110111100001111110001011111011111111100010111010001011111000110111101011101111101011011110100111111010111111111001111100101101111010100111111011110110110111011010111111111111110001
|
||||
01101111111101011111111001111111010111110111011111111001111101110111110111110111010101111111110111111111011101110101110111101110101111011110110101110101110110111101011010111110101011111001111111011101111110010111110111111111101
|
||||
00111111111111110111110111011111111001111111110111110111011111011101111111110111111111001111111101110101110111011101110111010110010111110101111111000111111111011011111101101101100111110110010111111101111101110111011111111110011
|
||||
01111111111110000111111100011101110111101111000011111100011111110001111111101111111100011111010001111111000011111110111111111101001111111111111011010011111100101111110011111111011111111101011011111111101111111111111111111111111
|
||||
01111111101111111111111111111111110111111111111111111111111111111111101001111110001111111111111111111011111111011111111011111111111111011110101111111110111101110101110111011111110100111111110111111110110111111011001111110110001
|
||||
01101110111111000011110100111101011011001101101111111100101110110111111111001011111110111100010101110111001111111111001111110100111111010011010110101101100100100110110011110011001011101100111111110011111101001111111101110110000
|
||||
01011110111101111010110111011111011110011001110110110100111011010111111111001110110111101011011111101101001111101101011010110110111110110101011111111011110101010111010101111101010110110101011111110101011010010111110111111111100
|
||||
00111111111111010111011100011111111101110111010111101101011101110101111001110011111101011101110101110011010110111010111111110110011111101101011111111011011101011111110101111111110111111111011001111101111110010111111111101010011
|
||||
01111111110111010011101101011111111100101101010111111101000101010101110110100011110101011111110101111111010111110111111111011110011001111100111111010111011111111001111111111111100011011110001111111101101001111111111111111101101
|
||||
01111111111110111101111111111111110011111111111111111111111111101111011111101101111111110111101111111111111101111111111111111111011111110101111111111111111111111111111111111111110101111110111111110011111111111111111111111111011
|
||||
00011111110011111110100111100010011111110011111000100111111011111111101111111111101011111010011111101001111111100111111101111101100000111111111111011111101011111110010111011010111101111111110110010111101010111110111111111000100
|
||||
01101011111111111111001111101100111011111001111111001111111111111111111001111111100111111110011111110011111110001110111111100101111111111111111001011111001111111010010111111010111100100111110000110111111001111110111111010110011
|
||||
01111011110011101111001110101000111111111001101101100110101100111010111001010011001110101100111010110011101011101011111001100101100110010100110011011011100111111110010111011001111111100111111110101111111111111011111111011110110
|
||||
01101111111011111111100111111110011111111111111111111111111110011110110011010011100111101110011111111001111111100111111111001100110100110101111111011111001111111100110111110011111111001111111110011111111111101011111111110110110
|
||||
01111101111101111111111011110111101100111110111111111011110110101111111010111110111011111110101111011010111101101010111101111101111101101101001010111001011011111011110111101111111110111111111011110100101110111111111111111110000
|
||||
01101111111111111101110011110111001110110100111101110111110110101111011010011110110011110110101111011010111101101011111101111101110111100111101110011011101011110111110111011111111101111111110111111111110100111001111111110110111
|
||||
00111111111111101110100110111110001101101011101111101110111111111011101011010110100110111010111011101111101111111111111111101001111111010101100001011110101111110110110111011011111101101111110110111111101111111110101111111100011
|
||||
01101111111111111111110111111100111100111101111111110111111100111111111001110110100111111110011111110011111111001111111110101001101110110101111111001011100011111010010111101101111110110111111011011110011011111011110111110111011
|
||||
01011111111111110111011111011100111110111111110111001111011101111101110101111110010111011101011101111111110111011111111110011011111101011111100011111110001111101101001110110110111011011011101101101111111101111111001111110111111
|
||||
01111111111111111111101011111110111111111011111111101111111110101111111000111111101011111110101111111011111111101011111111101111111110101111111011111101100111100110111110011011111001101111100110111111011111111101100111111110000
|
||||
00111101111110110110100011011101101100111100110111011011011111001101111110110111011011011111001101110110110111110111110111110011011001101101110110110001111111000011011100011100110001110111000111001101111110110101111110111101110
|
||||
01101101111000111111111011111101101111110010111111001011111110001111111001111110110011111110001111111000111111101011111111011111111111001111101000111110101011111110101111110110111111101011111101101111110110111111101111110111110
|
||||
01111111100110110111101011011101101111110110110111011011011101101101111111111111011011011101101101110110110111011110111111111011111111011111111100111111101011111110101111111010111111101011111110101111111101111111111010111110010
|
||||
01011111100111111111001111111101111100111111111111011111111101111111111111011110111111111101111111111111111111101111011111101011110111111111111111110001011111100001111110000111110000011111000000110111011111110101111111111010010
|
||||
01111101111111111100111111110111110101001111111100111111110011111111001111011100111111110011111111001011111100101111110111111111110011111111001011010101111111100011111110001111011000111111000011110101000110111001111110111111110
|
||||
01111111101111111111011111111111111111111111111111111111111111111111110011010110011111111101111111111111111111111111011111111111101110111101111111110111011111101111111110111110110011111111001111110100111011111011111110111110100
|
||||
01111101111111111111110011111111001101111100111111110011111111001111111100010110110011111111001111111100111111110010110111110011111111000101111100110011110011111111001111111100011111110011011111000101111100111111110011111110111
|
||||
01111111101111111011111111101111111111101111111011111111101111111110011111110111111111100111111111111111111011111111011111111111111111111101111111110011111111111111111110111111110111111111011111111101111111111111111111111110111
|
||||
01111111111111111110111111111011111111111111111110111111111011111111101111110110111111111011111111101111111110111110110111111111011111110111111111110111111111111111111111111111011111111111011111111111111111111111111110111111001
|
||||
01111111111111111011111111101111111111111111111011111111101111111111111111111111111111111111111111111111111011111111011111111111111111111101111111110011111111110111111110011111110101111111010111111111111111111111111110111111111
|
||||
01110111111111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111110110111111111110111110101101111110110111111111111111111111111011111111111011111111111101111111110111111001110000
|
||||
01111111111110001011111100101111010110101001001011111100100111110010111111010011111000101110110010111111001001111111011111111011001101110111111110111011111100101111110010111111011011111101101011110110111111011111111011010110000
|
||||
01011110101111111101011111110101010111010101111101010111110101111111010101111101011111110101011111010101111101011111011100011111110101100111010111111100011110110101011111010111011101011110110101111111010111011101011111100010100
|
||||
01101000111011100010110110001111110110111111100011110110001111111011111110100011101110001110101010111111100011111111110011111011001111111100111110010111111011000111111000101110010001111101000111110000011111110011101111111111000
|
||||
00111111111010010110110101111101100111111110011111111001011111101110101111100111111010101011110110111110011111111111100111101111101111111001110101111111100110110011001000111101011011100101001111011010111110100011111011101101101
|
||||
01111011111101111111111011011110111110111011110010101011101010111110111101111011011111001110111110111010110111011101111111111101011111101111111111101111101110100111101111111000110111111111111111111010011100111111101110011111101
|
||||
01111111111111111111111111101101110011111110111011111111111111011111011110000111101011110111011111111111111110111111010011110101011010111101100110110111111111001111110001101111001110111111111011110101111011110111111111110010000
|
||||
01111111111111111111110111111111111111110101111111110111111101111111011101011111110111111111111111110111111111111000110111111001101111011111111110011111111110111111011011111101111111011011111111010110101101101111111111110110110
|
||||
01011111111000110011101111011111001001111111110111011111011111111101110111111111111111011111011101111111110111001001000111101110011111110101111111110101011111011101111101101111100111110111011110111101110111110111110111111110100
|
||||
01111111110111010111111101011110110111111111010111111101011111110100011111111111111101011111110101111111010111111101010101111001011111110010111111011111111100111111110010111111011110111100111011110001111111010111111111110110010
|
||||
01111111101111111011111111101111111101101111111011111111101011111110100111111101111111101111111110111111111010110111111111111111111011111101011111011000111101111101111101011111110101011111010001111111111111111011110111110010111
|
||||
01101110111001111011111100011100110011111111111111101110111110110001111111001111001110101101111011110101101111111111000111110100111111110011111111001111000100100100100011110011111111101100110110110010111111001011111111110010100
|
||||
01011110111101111110110111101111011101111001111110110110111111011110101011011011110111101011011011101101111011111101111011101101101111110101110101010111111100111111110101001101111111110101011111110110111011011010010111111010000
|
||||
01110111111111110111011111011111011001011111110111011111011111111101011111111111111111011101111101110111110110001110110110111111001101111101100111111101111101001111110101101111110111111101010111111110111111110111110111101111100
|
||||
00110111110111100011010110011111111001101111100001011110011011111000111101111011111110011111111001011111100111111111110111011111000101011001011111110111111111111001111101111111100111011111011111111101111111010111011111101001010
|
||||
01111111111111101101111110111101111101011111101110111110110111111011011111111111111010111111111011011111101101111111001101111100111111111011010111101101111111111111111101011111110111111111011111101011111111011111111111111110001
|
||||
01011111111001111110100111111010010111110011111110100111101111111110011111011111100111111010011111101010111101100111011011101011111110011111011001111101100111111110011111011010111111100111110110011111111010111110111111111010000
|
||||
01101010111001111111001111111100110111110011111111001111111111111110111010011111001111111100111111111010111111001110011110101011111111111111111111111111001111111111111111101001111110111111111000111111111010111111111111010111101
|
||||
01111010110011101010001110101100111101111001101011100110111100111010111001011011001110111100111011110011101001100111011111101001011110011111011001111101001101011110011111011001111111100111110110011111110011111111111111011111011
|
||||
01101111111011111011100111111110010111111111111011111111111110011110110011011011100111111110011111111001111111101111011111001101011100111111110011111111100101011100111111110011111111001111111100111111111001111111101111110111111
|
||||
00111111110100111111111011110111101110111110111111111011111110101111111010110110111111111110101111111010111100100010111111111011111011110101101111111110111111111011111111101111111110111111111011110101101111111011100001111111011
|
||||
01101101110110111101110011110111001110110100111101110111110110101111011010110110111111110110101111011010111101101011111101100011110111110101011111111101111111110111111111011111111101111111110111110101011111111111101011110111111
|
||||
00111100111111101110100110111010001111101011101110101010111110101011101011110111101110111010111011101011101101111111010110101001010110110101011010111101101101011110111111011111111111101111110111110101011111111111101111111101100
|
||||
01101110111111111111000111111100111110111101111111101111111110111111111101110110000111111111011111111000111110101011010111001101011000010101101011111110110101010000011111101011111100000111111010110101110011111011110111110110110
|
||||
00011111111111110111011111011100111110110011110111000111011101011101110111111110011011011101111101111111110011011111111111001111101100111110110100111011011111101101101110110001111011011011101101001110110110111111001111110101001
|
||||
01001111111111111111101011111110111111111001111111101111111110101111111000111111101111111110101111111011111001101011111111111111100110111110011011111001100011100110111110011011111001101111100110111110011011111111101111111101011
|
||||
00101101111110110111100011011001101100101110110111011011011011001101111111110111110011011111001101111100110000110111110111111011000111011100011101110001111111001111011100011101110010110111000011011100011100110011011010111100001
|
||||
01101101111100111111101011111100101111110010111111001011111110001111111010111110110011111110001111111100111111111011111111100111111111101111111010111111101011111110101111111010111111101011111110101111110110111111001111110111011
|
||||
01111111100110110111101011011110101111110110110111011011011101101101111010111111011011011101101101110110110111101010111111111111111110101111111010111111101011110110101111111010111101101011111110101111110110111111111010111110101
|
||||
01111111110111111111011111111111111100111111111111111111111110111111110111111110011111111101111111110111111000111111010111111101000001101100001111010000011111101001110100001111111000011111100001111110010111011001011111111111100
|
||||
01111101111111111101111111110010111101011111111100111111110011111111001011111100111111110011111111001011111100111111010000111001000011111100001111010000111111100011110100011111111000111111100111111110001111110100111110110110001
|
||||
01111111111111111111011111111101111111110111111111001111111110111111111111111110111111111101111111111111111010101011110111111111101111111100111011111011111111111111111110111010111111111111101111111110111110111111011110111111001
|
||||
01111101100111111111110011111111001111111100111111110011111111001111111100111110110011111111001111111100111110100010110111110011111111001101111100111111110011111111001111111100111011110011111111001111111100111011110011011110100
|
||||
01111111111111111001111111101111111100111111111001111111100111111110111111010111111111101111111110011111111011111011010011111101001111111100011111010011111111101111110100011111111011111111100111111110011111011111111111111110011
|
||||
01111111111111111110111111101011111110111111111110111111111011111111101111010110111111111011111111101111111110111111010011111101011111111101111111010111111111101111110101111111111111111111111111111111111111111111111110011110000
|
||||
01111111111111111111111111111111111101111111111111111111111111111110111111010111111111101111111111111111111011101110110111111111100111111101011111111001111111110111111111011111111001111111110111111111111111110110111111111111110
|
||||
01111111101111111111111111111111111110011111111111111111101111111110111111010111111111101111111111111111111111111111110001111111111111111101111111111111111111111111111111111111111111111111111111111111101111010111111111100110110
|
||||
01101111111100010010111101001001110010101111010010011101000111010100111111101011111101001111010100111101010011111110010011101101111111100010111111111111111100101111110110001111111111111111001111010110100111010011111110110111111
|
||||
01101111101011111101011111110101110111010111111101011111110101011111010011111101010111110101011111010110111001010111111101000101110100011011010101111101010110110101010111010111111101011111110101111111010111111101011111110110101
|
||||
01111100111111101011111010001111101110111111100011111010101101111011110111110011010110101101111011110011100001001111100011011111111101111100110111111011011111000101110111111110110011011011010111100000111100100011001110101110000
|
||||
00110111100011101111110101111100111011111110011111000110111111111111111110011111111010111111101111111111011111111111011110111011101011101010111110011111111001110011101111111111011100010111111111010111100101101110111010111100110
|
||||
01110111111110111110101110111011111111101011101110101011101111111110111111101001101111101011101111111111101011111101101001111111100011111010110111111110101110101111111111100011101111000111011010111011111111110011111101111111011
|
||||
01101111111100000011101100001110110100111011000011101100001110110000111011000011111000001110110000111101000100111111110110101001011101011101101110010111111111001110110011111011010011100101011110111101111111010111111111111100110
|
||||
01101111100011011111111001111111101110111110011111111001111101000111111101011101101101111111010111110110011111110110111111111111011111111011111110010111111010111111101111111110010111111001101111101111111110101011111111111110111
|
||||
01001111101111111110110111111111100101111101110010110111111111101111100111111011111111111101101111111111100111101101010011111101111101101111110001111111110111111101001110111101111011011111111101110111111101111101100111111100010
|
||||
01101111111111011111111111111111110100111111001111111111111111111111111111011011111111101111111111111111011011011100111111111111101111111111111111111011011101001111111111111011010111111101001111111111111111111110110111111111110
|
||||
01101111101011110110101111111011111110111111011110111111111011111111111011110110101111111010111111101011110111110111111010111011111110011111101111111110101111111110111111110111111110001111111100111111101011111110111111111111001
|
||||
01110111111000111111101111111110111111110111111011111111111101111111110011111111001111101100111111111011111111111101111111010111111100011111111111111101100111100000111110110111111111000111100001111111110011111011101111111110100
|
||||
01001111101110111110110111111011011111111101111111110111111111011111111101111111110111111001011111101101111111111101111111111111111111011111111101111111010111111111011111011101111111110111111111011111111101111110110111111110011
|
||||
01000111110111010111111011111101100101111010111111001011111010100101100100010110011011011111100101111110110111011011111101110111111101101111111110110111111011111111101111101110111100111111111111101111111110110111011011101101011
|
||||
00001111110101010111110111101101011101111101111011010101011111011101011111110111111111101111111100110101111111111111110110111011111011111110101111100111011111111011111111110111111111111111111011111101111111000011100111111111110
|
||||
01101111101111111111111111111111111011111111111111011111111011111011111111101111111101111111111101111111011111111111101111111111110111111111111111110111111111111111111111011111111111111111111111111011011011111101111111101110011
|
||||
01110101111111110011011111001111101100111111110011111111001001111100111111110011011111001101111100100111110010111111111011111111001111111100111111110011111111001101111100110111110011110011001111111100100111110011111011110000000
|
||||
01111101111111110011011111001111011100111101110011011110101101001110111111111011011010101101111100110110111011110110111111110111001111101100111100110011111011101101111100110111111011111111001111111100110111111011110111111110100
|
||||
01111111111111110111111111011111111100101110110111111111011111111101111110110011111111011111101100110111110011111111110110111011011011111101111111110110111111011111111101111111110111111111011111111101110110110111111111111111111
|
||||
01110111111111111011101111101111111110110111111011111111111110111111111111111111101111111010111101011011111111111111111111111011101111111110101110111111111111111110111110111011111111011011011101111111111011111111111111100110110
|
||||
01111111111111110111101111011110111101111011110111111111011100111101010111110101111111011100111101110011110110001110111111111011011110111101011010110001101111010011111101110111110111001111011100111100111011110101111111111111110
|
||||
01111111101111001111101100111011110011011011001110111100111010110011001011001111101100111010110011111011001101111111001111101100111111110011101011001111101100111111110011111111001111111100111010100011111011001111111111111110111
|
||||
01111111111111011111111101111101100110110111011111111001111110110111101011011011011101111110110110111011011011101011011101111101111111110111111111011111011101111111110111111011011111101101111000110111110111011111110111111111100
|
||||
01111111111111100101111110010111111001111111100101111110010111111001011111101111111110010111111001111111101111111111101111111110010111111001011111101101111110010111111001011111100101111110010111111001011111100101111111111111010
|
||||
01111111111111101111111110111001111011011111101111111110111110111011101111101011101110111111111011101111101010111111101011111110111111111011111111101111101110111101111011111111101111111110111000111011111111101110111111111111001
|
||||
01111111111111111111111111111111111111111111111101011111111111111111110111110111011011111111111111111011110111011111111111011111110101101111111011111011111011111101111111010110111110011111111011101111111110111111010111111111001
|
||||
01111111111111101111111010101011101010111110101111111110110110101111010011101101111110111110111011011011101101101101101101101110111111111010111111101001111110111111111011111010101111001110111010111011011110101111111111111111101
|
||||
01111111111111110111111111011011111101111111110111111011011111110001111111110111111111011111101101111101110111111001110101111011111111111101011101110000111111011111111101011111110111111111011111111101001111110110111111011110110
|
||||
01111111111111111011111111000111111100111111110011011011101111111100110111111011011111100111111100111101110011011111111011111111101111111110101111110000111111001101101110111111111011111011100111101100001111111011111111011110110
|
||||
01111011111111111111101011111110111111111011111111101111111110111111111011111111101011111110111111111001111111101110111111101111111111111111111001111111101011111110101111111111111111111111111110111111111011111111111111011110011
|
||||
01111111011111111111110110101111011110111101111011110111111111011110111101111111110111111111111110111111101011110100111111101111101111001110111101111011110111101111011111111101111011110111101111011110111101111011110011111111101
|
||||
01111111111011111111111100111111011111111111111111111111111111111011111111111111111111111111111011111111001111111101111111111111111111011101111100101111111111111111111111111101110111111111011111101011111111111111111011101110011
|
||||
01111111011101111111111111111111111111111111111111101111111111111111111011111111101111111111111111111101111111101111111111111111111111011101111111111111111111111110111111111111110111111111011111111111111111111111111111111110111
|
||||
01111111011111111111111110111101111011111111101111110111111101111011110101111111110111111101111011111111101111110111111110111111111111111111110110101111111110111111011111111111111111110111111111111011110111101111110111111110000
|
||||
01111111111111111111110111111111111111111101111111111111111111011111111111111111111111111111111111111110111111111111111111111111111101111111111111111111110111111111111111110111111111011111111111011111111101110111011101111111011
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111110011
|
||||
01111011111111110111101111111110111111111011111111111111011110111111111111110111111111011110111111111011111111111111110111111110111111111111111011111111101111111111111101111111111111111111111110111111111011111111111101111110010
|
||||
01111111111111111111101111111110111111111011111111101111111110111111111011111111101111111110111111111000111111101111111111101111111110001111111011111111101111111110111111111011111111101111111110111111111011001111101111111111001
|
||||
01111111111111110111111111011111111001111111110111111110011111111001111111100111111110011111111001111110100111111101100111111111011111101101111111100111111111011111111101111111110111111111011111111001111111101111111101111111100
|
||||
01111111111111111111111011111111111111111111111111111011111111111111111111111111111111111111111111111111111110111101111111111111111011101111111111111111111111111111101111111110111110111011111111101111111111111110111111111111110
|
||||
01111101111111110111110101111111111111111101011111110111110111111111011111011101110111110111111111011101011101110111011101110101110111010111111111011101110101111111010111111101011111110101111111011111011111111111111111111101100
|
||||
01111111111101110111101110111111100101101010101110101101011011100101111110110110101001011111100101101110110111101011110110101010111111111011111110110111101110111010111011101011101111101111110110110101111110110111111010010111111
|
||||
01111111111111111
|
||||
581
vxloader/firmware/x1_1_vx2.rbt
Normal file
581
vxloader/firmware/x1_1_vx2.rbt
Normal file
|
|
@ -0,0 +1,581 @@
|
|||
Xilinx ASCII Bitstream
|
||||
Created by Bitstream C.16
|
||||
Design name: vx2lr_i1.ncd
|
||||
Architecture: spartan
|
||||
Part: s10vq100
|
||||
Date: Tue Jan 18 14:07:14 2000
|
||||
Bits: 95008
|
||||
1111111100100000000101110011000110011111
|
||||
0101011111111111011111100111011111101011101110111111101101111011111111101111011110101111101111111110111101101111011101111011011011110111010111110101111101111111111001
|
||||
0111111111111111011111111111101101011011111101111111111111111101111111110111011111111011111110101111111111111111111011111011111111111110110111111011111111111111111001
|
||||
0111111110011011111111111111111110111111111111111111111111111110111111111111111111111111111111110111111111111111111111111111111111111111111111111111111111111111111010
|
||||
0111111111101110011111110001001110110111111111011111110011111011000111101110011111111110101111011010111110011111111110111111111011111111101111111110111111111111110011
|
||||
0111111111101110111010111111101011111110101111111010110111101001111110100110111010110111110101111111010110111101011111110101111111010111111101011111110101111111111011
|
||||
0111111111111110101011110000101001100010101111001011111000101011001010111110001011111100010110110001011111000101011101010111110001011111000101011110010101111111110000
|
||||
0011111111111111110011110111001111111100111111110011111111001111011100111111110011111111100110111110011111111001111111100111111110011111111001111111100111111111110011
|
||||
0111011111111011110101111111010101111001011111110101111101010111111101011111110101111111101011111110101111101010111111101011111110101111111010111111101111111101110101
|
||||
0111111111111011110111011011011011110100110111110101011011011101111101111110110111111101101111110110101111011011101111101011110110111011011000101111101111111110111111
|
||||
0111011111011011110111011011011111111101111111110111111111011011101101111111110111111111101111111110111111111011011111101111111110111011111011111111101111111111111110
|
||||
0011111111111111101111101110111111111011110111101111111110111111111011111011101111110111011111100101111111110111111111011111111101111111110111101111011111111111111100
|
||||
0111111111111111101011101111100111111110101111111011011111101101111010111011111011111111110111101111011111111101101111010111011111011111111101011111110111111101111011
|
||||
0111111111111111101101111110110111111011011111101101111110110111111011010011101101111111011011111101101111110110111111011011111101101111110110110111011000111101111101
|
||||
0111111111111111101111111100011111111011111111101111111110110111111011111011001111111110011111111001111111110100111111011111011001011111100111110111000111111111111101
|
||||
0111111111111011101111111110111110111011111011001111111110111111111011111011101111111111011111111101111101110111111111011111111101011111110111111110010111111111111100
|
||||
0111101111111100111111110011111111001000111000111101110011111111001001011100111111110001101111000111111110011111011001111111100111111110011000110001101111111111111001
|
||||
0111011111111111101101111110111111111001101011101101111110011111111011011111100100111111011011111100101111110111110111011011111101101111110101010111011111101111111001
|
||||
0111111011111100111111110011111111001101011100111111110011011111001111111100110111011001111111100110111110011101101001110111100111111110011111111001110111111000111100
|
||||
0111111111111111011111111101111111110111111111011111111101111111110111111111010111111110111111111011111111101111111110111111111011111111101111111110111111111111110100
|
||||
0111111111111101111011110111111111011111111001111111110111111111011111111101111111111011111111101111111110111110111011111111001111111110111111110011111111111111111101
|
||||
0101111111111001100110110110111011111010110001101110110110101010011001111101100110111011001101001100110110110011011011001111001100010111110011110011001110111101011010
|
||||
0111011111111111101110111110111111011011101011110110111110011011111001111111000110101111001101111110010111110011111111011101111111110110110111110111101110111111111001
|
||||
0111111111111111011111111111111111011011111011111111111101101111110111011011111101110111111111111111111111110111111111111111111111011111110111110111111110111100011111
|
||||
0101111111111011111100111111111111111111111111111011111111111111111110111111101000111111111101111111011101111111111111111111111111111110011101111111111111111110110011
|
||||
0111111111111011111111011101111111111111111111111111011111111101111111111111011111110110111111111111011011111111110110111111111111111010011111111111111111111101110011
|
||||
0111111111111111101011111110111111111010111111101011111110111111111010111011101111101111010110011101011111110111110111011111111101111111010111110111010111011110110110
|
||||
0011111111011011111101111111011111011000111011111101110010111111011111011111101111110111111011111111111100100110111111111101000101101111111111110111011011111111111001
|
||||
0011111110111011111011111111101101101111111111111010111011111011111110111011111111010111110110111111101011111101101111111111111111011111111111110111110111011111110001
|
||||
0001111111111111111110111111111111011111100011111111011111110111101111111101111101110111111111111111101111011111111111111011110111111111111110010011111111111111110110
|
||||
0011111111111111111000111110111110111011111111111100111110111111111011011111101111101111011011011101111101110110110111110101111110001101110011111111011011111111111101
|
||||
0111111110011111111110101111110111111011111011111011111111101111111110101111111010111111110101111111010111111101001111111101111111111111111111011111111101011111110000
|
||||
0111111111100111011111111111101011111111111111111100110101111011111111110101110111111111111111111111111110101111111111111111101111110111111011101111111111111111111101
|
||||
0111111111101010111101111111111101111111110111111101011001111101111111110111011111111111111110111111111011001110111111111110111011111011111110101111111010111111111000
|
||||
0111111111111111011111111101110111111111111010011111011111111111100111010110001010010100111000111011110011001111001110011100110011111111101111101100011101111111100000
|
||||
0111111101111111111001111111111111010001110101011011110110111111010011111101111111111010111111111111011110101101111111111111001011111111111101111010111111111111111101
|
||||
0011111111111011101001111110101111111111111011111011110111111111111111101111011010011111111111111101101101111110111111010111111111011111110111110111110010111111110001
|
||||
0011111110000100111110110011110101001011000100111100110010001011001111111100111111111001111110110111110000011111111101111001100111111110101110000001111011111111111010
|
||||
0111111111111100111011111011111101011010111101101111110110111111011011111101101011111011011011111011011110011111011101111010100111011001111101111001110100111111110011
|
||||
0111111111011111101101101000111111110111011111001111101110110110010010110011000100101110010111011111111111101101110111111111101010101111111111101110111111111111110100
|
||||
0111111110111111111111111011111111110011111111011111110100100101010111011110001101011110111011111111111111100111111111110111111001101111111111111110111011011111110110
|
||||
0111111111111111111111111111111111001101111100111111111111111111111111111111011110111001111111111110111110011111111111111111111010101111111111111001111111111111111001
|
||||
0101001111001111111110011111111010010111100111110110011101011001110111100101111110101111111111111010000111111101001011101100111100111111111111001111111111111111010000
|
||||
0110111111111111111110101111111001011111111111111000110111010011011110001101111110101111111100101111000111111100011110011001111110011111111110011111111111111110110111
|
||||
0111111111100111011100110110111010111011101011110110011101111001110111100101111110101111111101011010110011111111001011111100111111110010101111001111111001111111111011
|
||||
0010101111001111111100111010111011101101100111111100110111110011011111001101111110011111111101101111100111111110011110111001111111111110101110011111111111111010110001
|
||||
0111011111111111001011100111101100010110011011111011111101100110110110111001111011100111110110011011011101111101111011110011011111111101111101111111110111111101110010
|
||||
0110011111111111011001001100100100010010111011110111110111010110011101110101110110001111101010001110111011111011111110110101011110101001111011111111101111111100110000
|
||||
0011011111111111111010110111111010111111100011110110111101011010110101101001110110101111101111111011110111111111111011110101111111110100101101011111111101111101100101
|
||||
0011011110111111001111011100111011111011101011111011010111101011011110101101111010111111110001101110011011111000011110110110111111110110101011101111101000111100111001
|
||||
0111101111011011111101111111110100111111011011101100111110110100111011010011101101011111011011111101101101110110110111111111111111101011110110110111011011011010100101
|
||||
0111101111100111110111101111011011111101101111100110111110011011111001101111100110100111001111011100110111110011011111111101111111110101110011011111001101111011110100
|
||||
0011011111111111010111101101011000110101110011000011001100001101110001110111000101101110001111011001111011100111000110111001011011011001100111101110010110110101101001
|
||||
0110011111101111111100111111111011111111100111111100101111111010111111101011111110011111111100011111110101111111010111111101011111110001111111010111111101101100110000
|
||||
0111011111111111111111101111111111111111111111111101101111111010111111101011111111111111111110111110110101111010110111111011011111111011111011010111101111011101111111
|
||||
0111011111011111111111111101011111110101111101000001111100001111110000111101000011111111000011111101001110100100111110111011111011101111110011111111011011111101110011
|
||||
0111100111101101010010111110011111111101111101000011110110001111110000111101000010111111000111111100011110100001111011000111111100011111110001111111000111110011111101
|
||||
0111110111111111011111111111011111111111011111101111111100111010110011111001001111111111011111111111111110101111111111111011111011101111110111111111111011101111110100
|
||||
0111111111111101111111001111111100111011110011111111000111111100110111110001011111001111111110011111111000101110100111111010011011101001111111100111111110011111110100
|
||||
0111111111111111011111111111111111111111111101001111111100011111110011111111101111111111011111111101111111111110111110110011111011001111111111111111001111111111111111
|
||||
0111111111111101111111111111111111111111111101011111110111111111110111111111111111110111111111111101111111111111101011111111111111111111111111111111101111110111111111
|
||||
0111111111111011011011111111101111111110111111101111111101111111110011111111101111111111011111111111111111111111111111111110111011111011111101111111111111110111111100
|
||||
0111111111111101111111111111111111111111111111111011110111101111110110111111111011110111110111111111011111111100111111111010111011101011111111111111111111111101110100
|
||||
0111111111011011111111110110101111111011011111111111110110111111011011111110101111110011111111000101111110110111111011011111100101111111100111111011001111111111111011
|
||||
0110111011110111110100011111000001111101011111110101011101010111110101011111110101010011101011001110101011101010011110101001101110101111111010101110101011101111110110
|
||||
0111110111101011011111110010011111011011011011001011111110011111110011111111011111110110011111111000111111100011110111011111011001111111101111101110001111111111111101
|
||||
0011111110010111011111100110111110011110001110011111110111111011100111111111111111111011111111101111111100111111011101011101110111011011111011110011110111011111100010
|
||||
0111101111111011111111111111111111111110101011111110111110111010111011101110101110111110110111010111101101010101111111011110111000111111101101111101011101111011010010
|
||||
0011111101111101001111111110101111010111011101001011110101111111010010111101011011011010011111100011111110000101111010111111000011111110101111111010110111111111110110
|
||||
0111111111111111010111101111111011011011111001011111111111111110111111111001011111111110111111010111101111111111101111111110110111101110110111110111111110111111110000
|
||||
0111111111111100011111111101110101110111011111011101111101111111111111011111111111110010111111111111010110001111111100010111111011110011101111011110010111111111111101
|
||||
0111111001111111111011111111111011111111111101111111111111101111111101111111111111111111110101111101111111111111111111111111100111111111011111110010111111111111110101
|
||||
0110111011111111110100111110101010111011100001101001111110111111111111111111111010110111010111111110101111111111111111110111111011101111111110011111001111101111110000
|
||||
0110111111010100011111100011010111001110011110110100011011011111001011111100111111111101111011000011111110011111111111111111101101100101010011111001111101111111111011
|
||||
0101111011110111011111111011111111001110111111101111011011110011101101011101101101111101111101111100111011101111111111111011101111111111101111101101111010101101111011
|
||||
0111011111011101011110110000110101111011101111101111111111111111101011111111001110101111111011011011110110001111011110001101101001111001111110111100111011111111111110
|
||||
0111111110111111011111111101101111111011111111011101111111101111110100111111111011111111110111111111011111101101100100011111111001111111111101111110101111111111100101
|
||||
0100011111111110111111111101111111111101111110110101111111111111110111111101110111111111111111101111111111011111111110111111111011111111111011111001111011111111111001
|
||||
0001111111001111101010011111111001111111100111110110011111111001110101100111111110101111100001111111110100110011010111111111101111100111100110011111110111111111010000
|
||||
0110111111111111111100111111110011111111100111111100111011111001001111101011111010011111111111111111100110110111001101111100101111100111111111111101111111111110101110
|
||||
0111111111100101011110100111111111110111001101010110100101111001110101100111111110101111101111111111110101110111010111111100101111110101111111111111111101011111110011
|
||||
0110101111111101011110111101111111111111101101011111110101110011011111001111111110011111111111111111110111111011011111111001101111100110111111111111111001111010110000
|
||||
0111011111111111111111010111101110110010010011111011111111101111110110011011111011100111110011001111101000111111100111110111101111011101111111111010111111111101111010
|
||||
0110011111111111110111111101100100110110111111110111111111011111011101011011110110001111101111001110111100111010100111101111101110101001101111111010101111111100110010
|
||||
0011011111111101011100111111111011111111101101011111110101111011110111101011110110101111111110101111011011111111111111101001101111110100111111011010111111111101100100
|
||||
0110011110111101011100111111111101110011110101010010110101001001011100101111111010111111100101101111110111011110011111111111101110110111110111001010111111111101111100
|
||||
0101101111111111111101101111110111111111001111101101001110110100111011010011101101011111011010111111100011111110111111011111111101101011111110001111111111111011100001
|
||||
0101101111111111111110111111111110111101111111100110111110011011111001101111100110100111001101011110110011111111110111001111111100111101111011111111101101111011111101
|
||||
0011010111101011011011001101111010110101111111001001111100101101110011110111000101101110010001011011011111101111111110001111111001111101101101010110111110110101000100
|
||||
0110011111111111111110001111111111111111101011111110101111111010111111101011111110011111111111111111111101111101010111111101011111111001111111111111111101111100111100
|
||||
0111010110111011111111001111111110111111101011110110101111011010111101110011111111111111101111111110110111111111011111111101011110101111111011111111101111011101110000
|
||||
0101011111011111111111111111111111011111111101001001111110101111110010111111000011111010010111101111111100100010111111001011111100101111111011011011111111110101111111
|
||||
0111100111111111101010111111111111010111111101000111111110001111110000111101100011111010000111101110010110101101111010000111111100011111111001111011100101110011001101
|
||||
0111111111111111111110110111111111010111111111111111111111110111110111101011001111111111111111101111110110101010111010101111111101111111101110111110111111111111111000
|
||||
0111110111111111111111001101111100010111110011111111001111111100110111110001111111001111111110001111101000101111000010111110011111110001110111100110111010011111110010
|
||||
0111111111111111101111111111111111110111111101000111111110111111110001111111011111111010011111111101111111101111011010011111111111110101110101111011001111110111110010
|
||||
0111110111111111101111111111111111111111111101011111111110111111110111111101111111110010011111111101101110111111110010011111111111111111111111111011101110110111110111
|
||||
0111110111111111111111110111111111111111111111111111111111111111110111111111011111111111111111111111111011101111111111110111111111011111100111111110111011110111110000
|
||||
0111111111111111101111111101111111111111111111111011111111101111110110111101111011110111110111111110101010111111110010111111111111111110111111111110111011111101111100
|
||||
0111111111011011001111010110111101111111111101101011110110110111011011111101101111110011011111101110011110010011110011011111100101111110110111111011101111011111110011
|
||||
0101111111111111110101111101010111111100011111010101011111010010110101011001110101101110101001001110100110111010001110101000111110101110111010110011101011011110011010
|
||||
0110111110101011010111101101111111110101101011111111110011111111111111110101111111110110001111111101111111111111111111001111110011110110100111011110011101111111111111
|
||||
0010010110111111111111111101111110110111111111110111101111001111111111111111111111111011111111110111111011111101111011011111011110010111011111101100111111111111100101
|
||||
0110101111011011001011101111110111111111101111111011101110111111111010011011111011111101110111011101111111111111111111011011010101101111010101111111011001110011110100
|
||||
0110111101110001010111110101011011110011111001011011111100111111010111111100101111111010011101101111111111111111111110111110100011111110100111101010110111011110011101
|
||||
0110111111011101100110111111111101111111111011111111011111111110111111111111111111101111111111111011110111111110101111111101110111111011101111101110111111111111111000
|
||||
0101111110111011111111111110101111010010110111011110110110101101111111011010011100011111101110111011111011101111101010010111111001110110111111101010111111111110110010
|
||||
0100111101111111111010111111101011111111101111111110111111111111111011111101100111111010111111110101110110101111011101111111100111111111111011111111011011011110111100
|
||||
0111111111111111111001111111000111111011111111101011111111111101111100111111011111110111111101111111111101110111111111110111111011011111111110011111010111101101111111
|
||||
0110010101111010110111110011111011000111001100111110110010010111001101011100101111111001111111100011101110011100010001101101101111101110010111101001111110111111110100
|
||||
0101111111111111011001010101111111111011110110111111010011111101101110110101011100011101101111111101111111101111111010111010101110111011011111111011011110101111110000
|
||||
0111111111100111111111110101110111111011111110011111111101011011000101101111011111111100001001001001101011011111111010111111101011111111001101110111111111111100110001
|
||||
0011111111011101011111011101101111111111111111001011111110111111110011111110011101111110110111111111011111101011111111110111111001011111110111101111011111111101100010
|
||||
0110111111111111111111111101111111111111111100111111110111111110110111111111011111101010111111111110111111101111111111111111011011111110111111111111111111111110110011
|
||||
0101111111101011011100111111111001111110101011111110011110011001011111100101100000111011111111111110011111111101001011111001101001100110111111010111111111111111000010
|
||||
0110111111100101111110101011110011111111101000111111111111110011001111001101101111111100111100111101100111111110011111111111101111111110111111010111110111111110110101
|
||||
0111111111101011011110101100110011110111101011101110101111010011010111100101111100111111111111111101100111111111010111111111101011111110111111010111111111111111111101
|
||||
0110101111101101111110011000110011111111100100111111111111111111010111001101111111111111111100111111100111111111111111111111101111110111101111001111111111111010111011
|
||||
0111011111110101111111110100101111110010111111110011101110111110110110111101111101101011110111111100011110101101111111011011001011111010111101010111110111111101111011
|
||||
0110011111111101110110100101011111110110111101101110001100110100110110111101110111101110111011011101111110101011111111011011001110111110111101110111101111111100111001
|
||||
0011011111111101111110101101111011111111101011111111111111101011110111101101111111011111101101111111110100101001011111111111101011110100101111000111111001111101101011
|
||||
0100011111111101111110101101011101110011101001100110101110111101110111110101111110111111111100011000010100101111101111011111101111110110101111010111101001111100110100
|
||||
0011101111011111111101111111110110111111001111111111111110110111111111011011111100010111111011011101000111111111111111011011011111101001111110011111011011011010110101
|
||||
0110101111101011110110101110111011111101100111110111111111011110111111101111111110010111101101111110111111111111011111101101111110111111111111011111001101111011111100
|
||||
0011010111110011011100101100111100110101101011011111111100011010110111011111011010101110111001011000111101101110111110111011011011011101101110110110011110110101000001
|
||||
0110011111100011111111101111110110111111101011111111111111111010111111101011111111111111111111111111011001111111110111110110011111101101111111001111111111111100110000
|
||||
0111011111110111110110101111111100111111110111111111101111110110111111011011111111111111111111111111101111111110110111101110111110110111111111111111101111011101110001
|
||||
0111010111011101011111110110010111011101101111011111111100111111111111111101111111111111111101101001011111101111010111011111111111111110111111111111011111110101010100
|
||||
0111100111111001001011111100001111010101111111100100110111001111111110111111010011101111001011101010111110111001111111100111011100011111101001111111000111110011001001
|
||||
0111001111111101011101100110111111110011111011111101111101111011111111111101111111110010111111101011110111101110111111111101101111101111111110111111111101111111110011
|
||||
0111011111111101011011001101111100111111110011111111000111111100111111110011011111001010111110001011111001111111100111111110011011111001111111000111111110011111111001
|
||||
0111110111011101000111110111111111010111111111111111111101111111111111111101111011111111001111101011111111100111111011001111111101111110111111110111001111110111111100
|
||||
0001111111011101011111111101111111010111111111111111110111111111011111111111011111111111111111101010111110110011111111111111111101111110101011011111101111110111110101
|
||||
0111111111111011111111110111011111111110111111111011111111101111110111111101111111111010111111111011111111101111111111110111101111011111111111111111111111110111111110
|
||||
0111011111011111111111111101111111111111111111111111110111111111111111111111011111111010101111101011111111111111111111111111111011111110111111011111111111111101001010
|
||||
0111111111011010101111111100011111010011111111101111110110111111111011111101001111010011101111010101111110110110111011001111100101111110110011111011111111011110111100
|
||||
0111111111111111110101111111010111101100001111110100011110010111111101011001110101110011101011111110001011111010101101101011111110101111011010111011101001101111111010
|
||||
0110010111001111011111101100111111111001111101000101110001101111010111111111100010110110011011111111111110000111111010111111110001111110100111011110001111111111111011
|
||||
0011011101001011111110111001111110011011101101111101101111111110111111010101111111011100011011111101111110111111111111111111001111010011011111110011001111011111101110
|
||||
0011111111001010101011101111101010111111111011011011111101111011101110111111111111101111111001111111111101010101111101010101111001111111101011011101011011110011110000
|
||||
0011111111110101101101110100111011010010111101011011101101101111110011111111011111111010111111001001111111101111011111011111101101110111101111111010101001111110110110
|
||||
0011111111111111101101011101111101110111111001101101101111111100011111111101111111011110111111111011001011111111110111111111111011101010111010110110111010111111110111
|
||||
0011111111111111011110110100111111010111010111011111110101111111110111010110011101111010011110101011111110111110111110111111111011111111101111111010111111111111010000
|
||||
0111111011111101111011110111111011011111111101101111110110111111111011111101111111111101011001010111011010111011111010111111100111111111111111111111111111111111010010
|
||||
0111111011011111111101111111111111110011111011001010111100110111111011100111010111110111111011111110101110111011011111001111111011011111110100111111010101111111111000
|
||||
0111111011100001111110110011110011001111001100011111100001101101001111111100111001011001111111110111111100011111111001110011100111111001011111101001101011111111111101
|
||||
0111111111111101111101011011101111101111111111011101111110101011101111110110111011111011011111111101100110101110100101111101110111110111011111011011011110111111111011
|
||||
0111011111110111011011111001101111000010011111101110111111110111101011111100011101101111111111011011111100101110101000110011000001111101111111110110111011111100110101
|
||||
0111011110011111011111111101111111010011111011111101111111111111111110011111111111111111010111110011011011101011111110111111111011011111110111101101110111111101100101
|
||||
0111111110111111100111111110011111111111111111111111111111111111111101111111111111111111111111110111110111011111111110111111111011111111111111111111111111111111110001
|
||||
0001111111101000010010011001111001010110101011111110100101111001111110101011111110101111111101011111010101111111111111101101001011110010111101010110111111111111000100
|
||||
0110111111101001001100110111110011111111100101111110011111110011111111100111111010011110111100111111110101111111001111111101011111111110111111001110111111111110111000
|
||||
0111111111100111001110010111111001010111100101011110010100110011011111100111111110101111010001111111010010110111001111101100101011111110110111010110111111111111110010
|
||||
0110101111101101110110110111110011111111001111011100111010111111111111001111111110011101011001111111100111011011001111111001111111110110011011011110111111111010110110
|
||||
0111011111110101011101001101100110111110011011101010101111101010011010111011001010101111111111101111011111101101110111010111111111010000111111000110011111111101111100
|
||||
0110010111111101011111110111101010111110111111111001101110101110110110010001110111101111001011011110111100111101100110011101011111011100110011111110101111111100110111
|
||||
0011010111111111011110110111111011111111101011111110111111101001111111101011010010011111110111111110111010101111101111111101001011010010101111010110111111111101100111
|
||||
0110011111111101111011010111111101111111101111101111011110111101110011101101101110001111111101011111111110111100011111000101001011100011111111011110011101011100110001
|
||||
0101100011111111111001101111110011111111010111111111111111111111111111110111111101100111011011011101101101111110110111011011011111101111111111101111111011011011011011
|
||||
0101100111111111110110111111111001111111111011110110111111011111111101111111110111110111001111111100110011111011011111001101111111110101110011111111101111111011110001
|
||||
0011010111111111011111011101111111110111111111010111001101011110110101101011010111111110101111011000111111100110111110001011011011100101100011110110101111110101100100
|
||||
0110011111101011111010101111111110111111101011111100101111110011111111101011111111111111111011011111110101111111111111111001011111111111111110010111111111111100110101
|
||||
0111010111110011111111001111111010111111110111111110101111111110111111110011111111111111111110111111101111111111111111111110111111111111111110111111111111011101110001
|
||||
0101011111001101111001110101111111111111011101110111111101010011011101111111010111111111101011111100111110111001111111010111111111111111101010111111101111110101010100
|
||||
0111100111101111011000110101011111111100111101010111111111111111010110111111111111111111001101111101111111100000011111100111111110111101110001111111100111110011111101
|
||||
0111111111111101111111111101110111111111111101001100111110111111110101101111111010111010101011001110111111110111111111111001111111111111110111111110101111111111111100
|
||||
0111110111011111011111000111111100111111110001011111001111111100111111110011101111001010111010011111111001101111100111111110011011111001111111100111111110011111111011
|
||||
0111111111111101111111110111111111011111111111011111111111111111010111111111111111111111111011111101111111111111111011111111101111111111111111111111111111110111110000
|
||||
0111111111011011011111111101111111011111111111111111111111111111010111111111111111110111101110011101111111111011111111101111101110111111111011111111111111110111001010
|
||||
0111111111111101111111111111011111011110111111111011111111111111111111111111111111111010111111011111111111111111111111111111101111111111111111111111111111111111111010
|
||||
0111111111111111011111111111111111011111111111111111111111111111111111111111111111111010111001111111111111111111111111111111101011111111111111111111110111101100110100
|
||||
0111111111011000100111110111111111011011111101001111100111111111011101011100101111111101001111101000111001110011101011111110101100111100010110111011110110111101111110
|
||||
0101111011111111110100111010000111011101001110110001110110010111011101011111110001100111101001110110101111111010110011101011111110001110111010101101101011111110110011
|
||||
0111110101001110001111111100011111010101111011001111111100010110110011111010000011110110000111111001111110100101011111101101100000111111111101011110001111110111110000
|
||||
0011111101010101111111111100111110110011011110011111011101111011011111111111011111011110111110010011111101001011111111111111010011011101111001110101110101011101101000
|
||||
0111011111011011011011110111111010111111010111111010110111111011101110101001111110011011101101111101011101111101111111110111011111111101111111110101011001101111110010
|
||||
0110110111111100001111100001111111001111110111011011110110111111010110111101011011111010111111101111111110100111110010111111111011111110001111111010111011111011010101
|
||||
0110111111111111111111111011101001111111111001111111001101111100110111111011011111111101001111111101111011101110110110110110111111110011011110101110111111011011100011
|
||||
0110111111101101110011111111111111100110111111000111111101111111000111010100001111110111111011110010011110001111111010111001101011101111001111011011011100111011011001
|
||||
0111111001111101101111110100111111111111111111111111110001111111010111111111111111111111111111101011111110101111111101111111111101111111111101111111111011111111101001
|
||||
0101111111111111011101111111100011111111111111101111111111101111111111111111111111110111111011111110110111111101011111111111111101010111111101110111101101111110111010
|
||||
0111011011100100111110100101111111101111000100101111110011111110001111111000101111111001111111101111101111011011110000011111100011111110010111001001111011111111010111
|
||||
0101111111111110111111111111111100111011111101101111110011111111001111011110111011011101101111101111111011011100111111010001111101101110011100111101111010111111111110
|
||||
0111011111011100011011111101111111010100111111111101110101111011110111101100011100011100111001011011100011100011010110111111111111111110100111111100110101111111101000
|
||||
0011011110111011011111010001101101110011111111101111001101100111110010011111011110111000110111100011111111110111111100111111111010001111100111110100111111111111110001
|
||||
0111111110111110111111111111111111101111111011110111111011110111001111111110111111111111111111111111111110111011111101101101011011111111011111111110111111111110110010
|
||||
0001111111100111110111111110010011111101101011101010100101011111111101100111011010011011110101011011010010101011010010110111111011110011111111010111111111111111001101
|
||||
0110111111101011110110011111110011111101100111111110010101101010111111001101111100111110111100101111100110110111010011111001111011110101111111001111111111111110111010
|
||||
0111111111100111111110101111001001011111100101011010101110011001110100100101011110011011111111111011011110101111111010110001111011111111111111111110111111111111110011
|
||||
0110101111001101111111111111110011111111001101011100111111010011111111101111111100111110111100101111111110101111001011111001111011110111111111111110111111111010111001
|
||||
0111011111111111111111111110110110111111111011111111100101101110111110100011111001101011010011001001011100101101111110110111111011011010111101110110010111111101111101
|
||||
0110011111111111111111101111010110111111100011110110000101010100111101111111111011111110101101001010101000101100110011101111111010111110111010100110110111111100110101
|
||||
0011011111111111111110011111111111111110101001011111111111001010110101101001011110111011110001101011110110101111010010101001111011010111111111010111111101111101101011
|
||||
0110011111111111111111010011111111111110101101011110101111101011111110001111111111011110001101001100111010101101010011111111111010111011111011011111011110111100110100
|
||||
0101101111111111111101111111110011111111010111111101111110100100111111111111111100110111111001111111111111111110110111111011111101111111110110101111111011011010111101
|
||||
0101101111111111110110101111011111111101101011111110101111111001111101111111111110010111101111111110110011111111001111111101011100110011110011110111101100111011111000
|
||||
0011010111111011011101101101011111110111011011011101101101111111110111111111011111101110101101011010111101101111010110111001011001111101100101111110101101010101100110
|
||||
0110011111110111111111001111101110111111110011111100101111111010111111101011111101101111111101011111100101111111010111111111011111101101111111110111111111001100111100
|
||||
0111010110111111111111001111111011111111110111111110111111111011111101110011111110101111111110111111101101111110111111111110111110110101111011011111111101011101111110
|
||||
0111011111111111011011110111001111111110011101011111111100010011111110011101111101111010101011101010110110101101111011111111111101111101100010111111111111111101111111
|
||||
0001100111111111110001111100011111111100011101000111101111011111111001111111110111111010101101101010110110101011010111001111111000010111110011011010101111110011111010
|
||||
0111111111101111111110110110110111111111111001011111111110101111111110111101011111111111101011101001111111101110111111111111111011111111101111111110111011101111011101
|
||||
0111110111011111111111001101111100111111110001011111001111111100111110010001111111001111111110001011111001101111100111111110011111111001110111100110111110011111011001
|
||||
0111111111111111111111110110111111111111111111101111111111111111011001011111011111111010111111111111111110101111111111010111101101011111100101111110111111111111111000
|
||||
0001110111111111111111111101111111111111111111111111111111111111110111110101110111110010101111101110111110101011111111011111111101111111101111111110111111110111111100
|
||||
0110111111111111110111110110011111111101111111101011111111101111111110111111111111111111111111111111111111101111111111111111111111111111100111111110111111111111111110
|
||||
0001011011111111111111111101111111011111111111101111111111111111111111011111111111111011111111111111111110101111111111111111101111111111101111111110110111111010110000
|
||||
0111111111111111001011111100011111001011111001111011011111011111011011011001111111111011001011101101111100111111111011101011101111111110010111111001011111110011111000
|
||||
0110111111111011110101111111010011111101001111110101011111010111011101010101110001111111101011111110101011111000110111101011110110101111111000101011101011101101110111
|
||||
0111110111011111101111111110110110101001111110001110111100110111010011011111001101110000011011000000011111010111111100011011111000011101001101111110111011110111110101
|
||||
0011111101010110101111101011011111101110011010111111100111101101100110111110111011101011111111110011111101010111101011111111001111111011111101110111111111011111100101
|
||||
0111111011011011101101101111101110111111111110101011101011111111111111101011011110111101110101011110111111111111111101101111010111101101011111110101111010010110111111
|
||||
0101111111111101011110111101111011000110101101111111110011111110001100111100111111101010111011111011111110111111101010111111111011011110000111011010111111111111101101
|
||||
0111111110110111101101011111111101111111111111101111111111111011111111111111110111111101001100111111101011110101001111011011111111100111111111111011011110101111011101
|
||||
0111111111101100011111110101101111000110111110011011111111111111111111011110011111010111110111101011011111001110111000111101101011111110001110111100110011111111011011
|
||||
0101111101111101111110110011111011011111101101101111100100010111010011111101011110110011111111101111111111110111111010111111111110111111110111111010111111111111110011
|
||||
0111111000110111011011111101101111011110111101111100111111111110111101111111111001111110111011111001111111111111111111101101011101111111111010111111111110111111111110
|
||||
0111011111111000111101110001111011010111001100111111101011111101001111111110111110111001110111100111111111011100100010111111100100110010111111010001011011011100111101
|
||||
0111111111011110111111111011110111111111111101011011111110110111011011101110111111011001111101101101001111011101111111111111110111111110111111111101111011101111010001
|
||||
0110111110111010000111111100001110110111111011001111111111111111110111101111011111111111111111001011110011111111111010111101110001101111101000110100111111111101111101
|
||||
0011111111011111011011101011010111000010111110111111111101101111101110111010001011011110111011101011101101100111111110011010110011111101111101111100011111111101011001
|
||||
0111111111101101011111111111011111111101111111110111111011111111111111011011011111111110101111111110111111101111111110111111111011111110111111111110111111111111110011
|
||||
0001111111100111111111111111011010111100111101111010011111100011111001101011110111111111101111101010111111101011111010100111111111100111101111010111110111111111011011
|
||||
0110111111101001111110011100110011111011111101111100111111111111111101001111101110011111110101001011110101111001111011011111111111000110111111001111111111111110110010
|
||||
0111111111111111101100111110111111111111111101011110011111111001101011101011111110011111101100111010110011111111001010011100111101111110101110011111111101011111111111
|
||||
0110101111001111111100111011111001111111111101111110011101110011111111100111111110111111111111101011110011011110011001111101110110111111111111111111111100111010101011
|
||||
0111011111111111100011101111001010111110111011111101100111101111111101111011111010001110110101001011001101110111010010000010011101001101110101010111110101010101111001
|
||||
0110011111111111111110001111011110110101100011111111111101101010111101010001110111111011101011001010111111111010110011001111111010110101111101110111110011010100100111
|
||||
0011011111111111111110101111111101111111101111111110110111111010101111111111110010101111101101011110010101111111010010111111111111111111111101000111111101111101101001
|
||||
0111011111111110110100111110011010111100100011111111011111111011111111101101111010101111110101111111010101110110011011000111111100111111110111011011111100111101100111
|
||||
0111101111111111101000111111110011111011111111111100111111110100110111000111111100110111011110111111111111111111111111011001111111101111111110101111011000111011101011
|
||||
0111101111111111100110111111011011111001101111110111111111111011111111111111111110010111001101111110110011111011011111101100111110111101111011010111101111111011111000
|
||||
0011010111111011011101101101110010110011100011011111101101110010110111111011011111111110001110111011110101101111000110101111011000110101101010110110101111110101111001
|
||||
0110011011011011111101101111111110111111111111111100101111111110111111100111111110101111111111111111110111111111110111111011011111111111111110110111111111111100110100
|
||||
0111011111101111111111011111010111111101111111111111001111111101110111111111111111011111111111111110111111111011100111111110111111111111111111011111111111001101110011
|
||||
0111011111111111100101101111001110111000111101111111111111110111111111101111011111111110000111101111011111110001111010000111011000111110111010011110001011111101110111
|
||||
0001100111111011100101111110011011111011111101110100111111011111111101111011000111101111001111101100111101111001111010101111011010111110101011111111101111111011111111
|
||||
0111111011101111110111111111111111111110111111111111111101111111111111111111111110111110100111101011010111111111011010111111111011111110100111111111101111111101111010
|
||||
0111111111011111111101001110110000111010100011111111000111111100111111110011111110001110110110001011011000110111100011011100011001111000101111100111111110011101110011
|
||||
0111111111011111101111110110111010111001101001111011111111101111111111111111011010101110011111101101111111110011111010111111001011111111101111111111111111111111111111
|
||||
0001110111011111111101011111111101111111111111111111111111111111111111111111011111110111111111101111111111111111111010101101101011111111111111111111111111110111111111
|
||||
0111111111111101100111110110010111011111111111111111110111111111111110111111111111111110010111101001011111111101111111111111111111111111111111111111111111110111111110
|
||||
0001011011111111111101111111110111111111111101111111111101111111111011111111111111111110111111101011111111111111111111111101111111011111111101111111110111111111000010
|
||||
0111011111010011001111110110011111011011011001101111110100101111111111011111000111111011011111101101101110010101110011111111101111101111110111110011111111111111110110
|
||||
0111111011101011110100101011000011101101011101110100011111010111111101011111110101111011100001001100101011011010110011101011101110100101111000011111100010111111110010
|
||||
0110110111011111010101110100111110010011001101001101111000011111110011111111111011110010111111101101111111110101111111101111111011011110100001111100010101111001111011
|
||||
0011111111111111101111110111111011100111011001101111101011101101111110011111111111011111111111110110111100111101101111111111011111011111001101011101011111011101100101
|
||||
0101111011010110110101111011111110111110111110111101101011111111010111101011111111101101111111011111111011111111111111110111111010111101111101101101111011111000010100
|
||||
0111110111101000111101111111101111010011111100111111111101101011000110111100101111111001110101111010111110011001010110011110101111010111101011110010110111011111110111
|
||||
0111111111110111111111011111111111100111111111111111010111110101101111100111111101011111101110111111101011111110111111111111111101111111111111111110111011111111110001
|
||||
0111111111111111111011111111110111100111000110011101111101011111111111111111111110111100111111100001110111001111101010111001111111101110001111111011011110111111010001
|
||||
0101101110111101111101010111111111111011111101100111010111101101010110101101111110111011110111111111110110101111111010011111111110111110100110011011111111111111111000
|
||||
0110111111110111011111110111111011111111111111011110111100101111111111011111011111111110110111111111101011111111011111011101111111011111111010111110111111111110111111
|
||||
0111111111011100001110000011111111001111101100111111100011111111111010111010101111111001111011110111111110111101111001111111100111110110010111111001111111111100110011
|
||||
0111011011111110111101111011110111011011110110111111110101111100111111111110111111111011011111110111110100111111111101111110100111111110101111101101111110111111111111
|
||||
0111111110101111011111101010101010110111110110011010111101111111110111111111101001101110011111001001111010101111011100011101011011101101101111111101010001111101011010
|
||||
0011111111111011011001110101110111000111011110001100110101101011100011111111001110111100100111111001011111101111111010111011111001011111101111100110111011111111101011
|
||||
0111111111111100110111111111010111111111111111011111110111011111101111111111011111101110111011110111111111101111111011111111000111111110011111111101111111111111110011
|
||||
0001111111100101011110101111010011111101100111011011111111011010111001101011110111111111101001111110110101111011111110101111101110000111101111111110111111111011010111
|
||||
0110111111101011011111111111011111111101001111111111111111011111111100001111101100111111111001111101111111110111001010101001111110110101111111111111111111111100110000
|
||||
0111111111100101011100111111110011111110101011111100111111111010101011100111011000111010001001101111110101111111001110111111101111110101101110011111111111111111111100
|
||||
0110101111100110011110011111111111111111101111011100111111111111111011100111111111111000101001111111111111111110011010111111111111110111011111001110111111111010100110
|
||||
0111011011111111001011101111111110111110110111011001100111101010111111101011111011111111010011011111011111111101110110110101001011110000101101010110111111111101111101
|
||||
0110011111111111001101000111110100111101111011111011110111010110111101101011110101101111011111011110101101111011100011101111001101111110110011110111111111011100111111
|
||||
0011011111111111010010111111111010111100100111011011111111011010101111101111111100111010101100011111110101111111001110111000101011100110101111000111111100111101100010
|
||||
0111011111111111001100011111101010011110110111111111110111100011111111110111110010101010110101011110010110111001101011100101001111110110110010011110111110111101100100
|
||||
0111101111111111101111111111110111111111001111111101101110110111110011001111101101100111011011111101101001110110011111011011111101100011111111111111111011011011110001
|
||||
0111101111111111110110111111011110111111111111111110111110011010111001111111100111111111101101011100111111110011001111001101011110110111111011001111101100111011111100
|
||||
0010010011111111011111001101111110110111111111011111001100001000110001111111001111101110111110111001111111100111110110010100011001111011101111111110111111010101101011
|
||||
0110011111111011111101101111110010111111111111111111001111111110111111111111111101101111111111111111111101111110110111111111111111111101111111110111111110111100111111
|
||||
0111011111110111111101111111110111111111111011111111011111111101110111111111110110111111111111111110111011111011100111101111111110110111111011011111111111011101111101
|
||||
0111011111111101000111111111101011011110111111111110110100000111111001101111100011111010000111111101001110100101111111000111101000001111101101011011111111110101110111
|
||||
0001100011111101000101111111010111111101101111110111110100011111111100111101101111110010110011111100011110100011011111011111101001111111111011111111100011110011110011
|
||||
0101111111111011110110111111111111111111111111111111110111001111111101101111110011111111010101111111111111101110111111100111111010111111111110111111111111111111110111
|
||||
0101111111111101111111001111111100111111110011111111000101100000111111100011111011001111110110001111111000101111100111110110001111011001111111100011111110011111111110
|
||||
0111111111011101001111111101111111111111111101011111111100111110111011111011111111111110001111111111111110101111111010111111101011111111111111111111111111010111110101
|
||||
0001110111111101011011111111111111111111111111111111011110111101111011111111111111010011111111111111111110101111111010111111101011111111111111111011111111110111111100
|
||||
0111111111111111101111111111011111111101111111011111111111100011111110101111111111111110111111111111011110101101111110111111111011111111111111111111111111111111111100
|
||||
0111011111111111111111111111111111111111111101110101111111111011111111111111111101111011111111111111111110101111111010111111101111111111111101111011110101111110110110
|
||||
0111111011011001111111110010111010011011100110101111110100101100011111110101101110111111111111101111110110010111111011011111101111101110111111111001010111101111110111
|
||||
0111111111110111110101011011010111101001011111110101110111010111101101011011110101111111101011110100100011011000111011000001110110100011111000011011101010101111110100
|
||||
0111110111011110111110111100110110010011111011001111111100111110111011101100001111001110111111111001110111110111111011001111011001101111010101111110001111110110110101
|
||||
0011111101010111111111100101110111011111011111111110110111011111011111110111110101111111111011110011101110111111110011001101111010111100111111101111011111010111101001
|
||||
0111101111011111101111101111111011110111111100101100111100001110111110111100111011111101111011111111111111111011111111111111101111111011111111011001011011111111111010
|
||||
0111111011101101001101111101101101010111100100011111111100111111110111111001010111111001111111101111011110111101011110111100111010110101101111110110101001001111000001
|
||||
0110111111111011100111011011111001110111111101111110011011110101111111111111011111110111111111111011101101110011110111111111011111111111111101111111111111111111111110
|
||||
0110111101110101001111111101101111011111010110011101111001111011010011101101110101100100111101110011111111001111111011111011101011101110111110101011110010111111010010
|
||||
0111111111111111110110110011111011111011101101101111111111101011011111111111111111101111110111101011111110101101111111011111100111101111111111111111100111011010011000
|
||||
0111011011100111100111111101011111111111111101111111101111111111011011111111111011101111111110111111011111111110011111110101101111111111111111111111101101111111111100
|
||||
0110111111011010101110110000110111001111101111111110110010111011001111011111111111111101111111011110110111111101110111111011001011101101111110010001111011111110111001
|
||||
0111111111111110111101111110111101010111011111111101110110110111011011101111111110111111011001111111111111111001111111111111111111111111111111111011011110111110111110
|
||||
0101011111111011111011101111101111110111111111111111110101111110111010111011011011011110111110011110111101100111111110111011011111110111111110110110111001111011111010
|
||||
0011111110111111101111111111111111100101111001010001111101111011110011111111011111001111011111111011111111100111111111101111111011011011110001111111110111111111111011
|
||||
0111111111101111111111111111111111110100111111111111111011111110101111111101011101111011111111110111111110011101111011111011110110111111111111110011111111111111111000
|
||||
0001011111001111100110011111110001111011111111110010111110111001111110101111111110111111100010111101111011111010111111101000111101101111110010101111110100111101110001
|
||||
0000111111001101010010101111111111011101001111110100111110111111011111100111010110101011110001111111100111111111010011101101011111010011100001010111111111111111000010
|
||||
0110111111001101001110011111111001110111111111110111111111111111110111101011011110011011111111111111111111111110011110101101011111110010111111001111111111111110111111
|
||||
0110111111111111111100111100101001011001100111111110011111111111011111001111010110011010111001111111110011111111001011011001101101110101101011111011111111111111110001
|
||||
0110101111100111111100111111010011110101101111111110111111111111110111111111011110011011111001111111110110111110011100111111100101110110111111111011111111111010110000
|
||||
0111011111011001011111101110100110011010100011111011011111111111011110011011011111101111111011011111111001111100110011001101011111001001111111010110110111111101111111
|
||||
0110011111111001011101001111011111110101111011110110101111011111110101111011010101001111111101011110111001111011111110101011001101111101111010110011101011011100110000
|
||||
0011011111110111111010101111111111011110100111010010110101100011011111000111011110101110111001111011011011111011111011111101111101010010101111010010101101111101101011
|
||||
0110011111111111111010111011000011110000000101111011010101111111110101101111011110111011111101011111110111111110011110011100001110111010101111010011111110111100110110
|
||||
0001101111111111111101011111100110111110111111101101101111111111111011110111111101010111111111111111101011110110011111111011111101101101111110111111011001111011011000
|
||||
0111101110111111110111101111111011111111101111100110111111111111111001100111110111100111101100111111110101110011111111101101011100110111111111010111001100111010110111
|
||||
0011010111101011011111101101111000110111110111000101101101101111110011111111011011101110111111011011001111100011111110011001011011111001101110111110001111110101101010
|
||||
0111011011111011111111011111101110111111111011111111001111111111111111111011111100101111111011011111111101111111110111111111011111111001111111010111111111101100110100
|
||||
0111011111011111111111111111110110111111011111111111011111111111111101110111110111011111111101111111111011111111010111101101111111111001111111011111111111011101111110
|
||||
0111011111111001011001110111101111111111111111000011110101111111111011101101011001111011110111111111111111110011111010000101111010111110111111011010001111111101111111
|
||||
0111100111111101000001111101011111111101111011001011110111011110111001111111001010111110100011101110011111110001111010110111101110100111101011111011001111110011110011
|
||||
0111111011111101011111110111111111111111111111110011110101111111111111111101011111110011111111111011110101111011111011011111111001100110111111111110111111101101010100
|
||||
0111111111111101011111001101111100110111110011111010000111101100111111010011011001001011111110001111111001111111100011110110001111110001101101100111011110011101010010
|
||||
0111111111111101111111110110111111111111111111011111101101111111010011011111001101111110111111111011111111110111111110111111111011011100111111111010010111111111111101
|
||||
0001110111111111011111111100111111111111111111011110110111111111010011110111111111011011101111111110111110110111111110111111111011110111101111111011011111110111110100
|
||||
0111111111111101110111110111011111111101111111111111111101111111010101111111001111011111111111111111111111111101111111111111111011111110111101111110111111110111110100
|
||||
0110101111111111011111111101111111111111111111111110110111011111010111111111111101111111111111111111111111111111111111111111111011110111101111111111111111111101001100
|
||||
0111100111011111111111110100011110011111111111111011110010111111011111011001001111111001011111101101111100110011111111111111101101111010110110111111011111011111111011
|
||||
0111011011100111110101011111010111011001010111110101111011010111011001010110100101011111101000101110101110111010111111101011110110000101111010101111101010101111110010
|
||||
0110110111111111010110111000011110110011011111001111111100110111110111010111001011110100010111101000111110100111111110111111101111111110000111111010011111111101110000
|
||||
0011111111111011011111101011110111101011011101111101011011111101111110010110111011101101111011110011110110111111110110100011111111011110111100111100011011011101101111
|
||||
0111110110110111111111111011001011101111100111010110111011111111101100101110111110111110110111111100111001011111111111111101111111111101011111110111111101110011111100
|
||||
0110110110111011001101100100111111010111111001011011110010111111001111111100111011111010011100100101110110011111011110101111111010110111101110111010111110110111110000
|
||||
0111110011110111111101111101111010101011101101011110111111111110111111101111111101101011011111111111011011111111101111111111101111111011111111111110111111110111110000
|
||||
0111111111011100011111010100111111110111111111011101111101111111110111011111111101111111011111111111101101101101111000111111110011101110001111011010111111011111110111
|
||||
0111100101111101111011111111111111010111111100101111110111101111111111011101011111110011111111101111111110010111111111111111101111111110100011110111011011110111110010
|
||||
0111111011101111011011111110110011111011110101111100110110011111111001011111110111111110111111101111111011101111111111110101111011001111111111111111001101111110110001
|
||||
0111011100111010101110011011111111001111011100011111100011111101101111110100101111111101011110100111111111011110100001111111001011111100011111111001111011111111011000
|
||||
0110111011111111101111111101111101101110101111101111111011111110110111110110111111001110111101101101011011011111011101111011111111011100011111110110101110111111010010
|
||||
0110011111111011100101101111111111100111011111011011101001111111111111111110111110111111010111011111100011101011111000111111011011110111101110111101100111111101011000
|
||||
0001011111110101011111111110111111110101111011011111011100101111111011111111010111111110111101101001111111101111111110011011111001111111101001111111011111111111100000
|
||||
0111111111111111111111111111001111111011011111101111101110111111111111101111011111111110111111111111111111110111111101110111111101111110011111111111101101111111110011
|
||||
0001111111100111111111110111001001111111111101100011111101110011111101100111111100111011001001111010010011111110011011101001111111110011111110011111111111111111011001
|
||||
0110111111001111111111111101011001111111101001101111110111111010011011001111111100111111111100111110100111111111010111111111111111111111111111010111111111111111100110
|
||||
0111111111111111111010100101111001111111111101011110011111111001111111111111111110011010101100101011110101111111001111101100111111110100101111001010010001111111010100
|
||||
0110101111100111111110110101111111111111101101011110111111110011111111111111111110111011111001101111110011011111001111111001111011110010101110011000101111111011101011
|
||||
0111011111111111111001000111100110111011110001011110000101101010111110111011101010001111011011011111010101100101010111110011011111010101111101110111010111111101111101
|
||||
0110011111111111110111101101011111111001010001010111100101101110011101110011110111111111111111011110111100111101110111101011011110101101111010100111101111111101100001
|
||||
0011011111111111011100010101111011010010101001011100010101101000111101110111111110101010111100001010111010101101001111111101011111000110101001010010111101111101111110
|
||||
0111011110111101010110110101001000010011101101011110110101111011111110101001100110101010011101101011011111111111101111100101011110110110101111011010001110111100000011
|
||||
0111101111111111111101001110110011111011010111111111011111110001111011011111111100110111111000111101101111111110110111011001111101111011111111101111111111111011101100
|
||||
0111101111111111101111111110011111111101111011110110011111111001111001100011111110010111101100111100111101111011001111001101111100110111111111001111111101111011110000
|
||||
0010010111111111001111101100111010110101111011011111111101111111110001101011011111101110011111011000111101100011111110011110111001111011101111111110011011110101110001
|
||||
0110010111101011111111001111111010111111110111111111101111111110111111111111111110001111111011011111111001111111111111111111111111111101111111110111111111101101111011
|
||||
0111011111011111111111011111010110111111111111110111011111111011111111111011111111011111101110111111101101111111110111101111111110101111111110111111111111011101111110
|
||||
0101011111111101011111100100001011110001011101111011110101110010111000111111111111111010001111101000011101101111110111010111101100100110101110111010001111111101110001
|
||||
0001101111111101000111110100101111011001111111001111110101011111111011111111010110101010101101101000011110110001111011000101111000011110100001011010101111110011110000
|
||||
0101111111011101011110110111001110110111111001111111110111101111011100101111111111111110101111101010111111111111111111111011111001011110101111111111111011111111111011
|
||||
0101111111111101011111001101101100011011110011011011001101101100110110110011111111001010110100101111111001111111100111111110001111111000101111100111011110011111110010
|
||||
0111111111111111111111110100111111111111111101111111110101111111111111111111101111111111011101111111111111101111111111000111101100111110101111111110011111110111110001
|
||||
0001111111111111111111010100111111111110111111011111110101111111111111111111110111110111011111011011111110111011111111111111111011111110101111111011010111110111111000
|
||||
0111111111111111010111110111111111111111111101111111111111111111111111111111101111111111110111111111111111111111111111111111111011011111101101111011111111111111110001
|
||||
0001111111011111101101111101111111111111111111011111111111011111111111111111101111111011111101111111011111111111111111111111101111111110111111111110011111110101110110
|
||||
0111111111010011001111110111111111001011111101111101110010111111011111101101001111110011011101101001111100110011111011111111101101111110110011111011001111111111111000
|
||||
0101111111111011110001111111010111101001011011110101111010010110101101001101110101101111001010111110101110111010010101101011010110101110111010101011101011101111111111
|
||||
0111110111101111011010111001101011110001011110001111101100101111110011011111001111111001110111110011111110111011111110010101101111110110111111111010111011110111110010
|
||||
0011011111110111100110011110110111101111110101101111111011111111101111011001011001111111110111111011101101111111101010111111111111101011111011110111110011011111100001
|
||||
0111110111011111010111111011110110101110101110101110101011111011101111111111111111111111111110111111111111110101110111101111111111111101110111111101111101110101111111
|
||||
0111111111111011111101110101101111010011111011001011110010111111011001111101011111111010111111100111111111111111111000110111100111101111100111001010110111111111100011
|
||||
0110111111110111111101111110111111111011111111111101011111101011110111111110101010100010111111111111111101111010111101111111111111111011111110111111011111111111010110
|
||||
0111111111111110011111010101111111010111110100001110111101110101110111111111001011111110100100111010110111111111111100111011110011111110001111111011111010101110110000
|
||||
0110111011111101011011111110111111101110001101011111010110111111011001111101111111110011011111100011111110111110111011001101101101111111111101111111111110111111111101
|
||||
0111011111111111111011111110111111111101111011111111111100111111110011111111001011110110001111111110110110111111011110110110011011111111111001111111100111111111011100
|
||||
0111111001110100111111110011111011001111111100111111000101111110000111010001011111001010111111110111101111111010110001111111111110101101111111110111111010111111110110
|
||||
0111111111101101101011110101110111010110111100111101111111100111101111111111111111111111111111011100111111111111111001111010111111101111111111011111111110011111110001
|
||||
0101011110111111101110101110111111010111101111011111101111111011111111111111111111111110111011111011010111101110111110111111101011110101111110111110111010111111100111
|
||||
0011111111011111001111011111111110110111011011001101111100111111110111101111000101111110101111100010111101100111111100111111111110011011100100101010110111111111100011
|
||||
0111111011111111011111111111111111110111111100111111111011111111101111111111011111111010111111111111111110101110111110101111111111111111101110111011111111111110110010
|
||||
0101111111101011111110101111111001111111111111001110011111111111111001100111100010101111001101011110111111111100011111101001101110100111111111001110111111111111011100
|
||||
0110111111101001111110101111111001111110111101111110101111110011111011001111111100111111011101011101111110111111010111111001101111110101101110011110111111111110101111
|
||||
0111101111111111111111111111111010111111111111011110101010101111101011101010100111111101011100111111010011111111111111101100101010110011111110011110111100111111111100
|
||||
0010101111101110111110011111111011101111111101111111111110111011111011111111111110111111101100111111110010111110011111111111111111100111111111001011111001111010100100
|
||||
0111010111110101011010101110100100011110111111011111101111111101111111101011110110000111111101011111010101111111010111110111001111010101110100110011110011001101111010
|
||||
0110011111111101000101101111011111011001111101110101001111010110111101111111110111111111101111111110111110111110110111101100001110101101111111110011110111011100101011
|
||||
0011011111111101011010101111111011011111111111011100111011111010101110101110111110111101111111111110100111101111011011110101101011011111111111001110111100011101100001
|
||||
0010011111111101000110110110011001011001111101111111111111111011111111100011111110011111111111111011010111111111101011100110111110011111110011101011111101111100000000
|
||||
0110101111111111101100011111110001111011001111111100111101110100110111111111011111011110111111111101111011111111111111011011111101111111111110110111111010111011101101
|
||||
0111101111111111101110011111111111111011111111111110011111111111111111111111111111110111111111111100111111111011011111001101011100110011111011011111111111011011101000
|
||||
0011010111101011001110101101101010110011111111011011111101111110110111111111011111101110111111111000110101101111100110011011111001111101100010110110111111110101110011
|
||||
0110011111101111111110101111111010111111111111111111101111110111111111111011111101111111111111111111111101111110111111111101111111110001111111100111111101111100110110
|
||||
0111010111111011111101111111110111111111111111111111011101111110110111110111011111101110111111111111111011111111110111101111111110111011111111100111111111101101110001
|
||||
0111011110011111000111111111010111110001111101111111111111111111111111011111111101111111111111111100010111111111111110000111111101011111110011011110111011111101110110
|
||||
0111100111111111100111110101011111111101101111011011111111011111111101111111110011111111101111111100111110101000011111001101111100011111111011011111101111110011111111
|
||||
0111111111011111110100111101010111111111111101111111111111111011111111111111111111111111111101111111111111111111111110101111011111111111111110111110111111111111110011
|
||||
0111110111011111111111001101111100111011110011011001001111111100111111110011111111001111111010011001111001111111100111111110011111111001110111100111111110011111111110
|
||||
0111111111111111111111111100011111111011111101111111111110011111111001111111101111111111111111111100111111101111111110010111111100011110111111111010111111101111110101
|
||||
0111111111011111111011111101101111111110111111011111011111011111111101111111110111110111101110111111111111101011101111111111111111111111111101111011110111110111001110
|
||||
0111111111111111111111111101111111111011111101111101111111111111111111111111101111111111111011111111111111111111111110011111101111111111111111111010111111111111111000
|
||||
0000111111111111111111111100111111111011111111011111111111111111111011111111111111111111111011111111011111111110111111111111111111111111111111111011111111111110111111
|
||||
0111111111011001111111110010111111010011111101101101110111111111011111111101111111111011111110101111101110110011111001011111101101111111111111001111001011110110111101
|
||||
0111111111111101110100011011000101011100001011100101111110010011111001000111110100110111100011101110101110111010101101101011101100100101111010101111101011011110110001
|
||||
0111110111001111101101111101111111111001111100001111111000111111100111111110101111111101011111111001100110100111111110011001101001111111101010111010011101110111110000
|
||||
0011011110010101111011101111111111101111111101111111011011110111110011011110111100011011111101101111101111010111111100111001110111101111111111111011111011110111100110
|
||||
0111011111111011111111111011101011111110111110111001111011111111111001011111111111101111111111110111011111011110111111110111110111011111101110101101101011110101110000
|
||||
0110111111110001011001111100111101110111101011011010111100111011110111101111011010111110011111101011111101101111011010111111000000111111101111001110111011111110010101
|
||||
0110111111111111101111101011111111101111111111111111111111111110111111111111111111010111101111111011101110111111011111011111110111111010111111111011110011101111111001
|
||||
0111111110111101011111011001111111110111011101011111110101101110010111010101111011110011111110101011111111111111101011111001111111111111101111111100111110111111110000
|
||||
0111111011111100101101110101101011011100111100111011111110111011011110111101011111011011011111101011111111111111010010111111101111111110011111111010110111111111111011
|
||||
0111111111111101111100101111011110011011100011011011101110101111011010011011111101110110111011111100110101111110111111111111101111110111101001111111111111111111110110
|
||||
0111111101011110110111111010110011000011111100111110111111111111111111110101011111111101111110101110111110011111111001111101100111001100010110100001111011011100111111
|
||||
0111111011111110111111111011111111111011111100111111111111111110111111101111111111001101111101101111111111101111110001101110000111111110011100011001111111101110111010
|
||||
0111010110001111011110110101110111111011001111001101111111110111010011111101011101111010111011011010101111010101111110101101111011001111101111111110111010011101110101
|
||||
0011011011111111101011001101101111110111111111011011110101101111110111110011010111111110111111111010111111100111111110111011111110111111011111111110110111111111101000
|
||||
0110110111111101110111111011011111101111111100111111111111111111110110111110111111101110111111000111111111011111111001101111101110111111111111111001101011111100110011
|
||||
0001111111100101011110011101101001011111101011110110100101011010010101111111111110101111111100111110110011111010011110100111111010100110111011001110110111111111001101
|
||||
0110111111001101111110100111111001111111100111111000110110111010011011100111111110101111110101011110100110100111111111011111111001110101100110011110111111111110110111
|
||||
0111111111111101011110100101111001011110001101110100110101111010010111100110111110011101011001101111110011111110011111111111111101100111110111001110111111111111110111
|
||||
0110101111001101111110110101110011111111001101111110110101111111110111001111111100111111011101101111100110101110011111111001110101110011011110011110111111111010110111
|
||||
0111011111111101001010000101100110011110111011011011010101100110010110111011111001100111110010001111011110101100110111111111011001011110110000110110010111011101110001
|
||||
0110011111111101111011101111101111111101100011010111110101011110011101100010110111111101101111101110111110101101010111011100011010111111101101010110001100011100110010
|
||||
0011010111111101111010010101111011011111001101011110100101100001010111101010111000111101110111111110110110101111111111111101111111110110101111111110011111111101101010
|
||||
0100011111111101001110000101111101111100101001010010100101001010110100001111110011111111100001111111011010101101011111111100111100011010100101011110001111111100110011
|
||||
0111101111001111111100111111110110111011011111101100111110110110111011001111001111111110011011011101101111111110101111011000111111111111111110101111011011111011011011
|
||||
0111101111101111110110011111111011111001101011100110011110011011111001100111101110111111011101111100110101111111010111101100111110110111111011010111101111011011111101
|
||||
0011010111011011010110101101111101110011011111001111101100100110110011111111001101101110011001011000101111101110111110001111111000101111100010111110111111110101100011
|
||||
0110011111100011111111111111111010111111111011111101101111110110111111111111111111001111111111011111111101111111111111111111011111110101111111110111111101110100111011
|
||||
0111010111110011111111111111111010111101101011110111001111011101111101111111011101111110111101111111110101111111111111111011111111111001111111010111101111111101111010
|
||||
0101011111101111110111110101111111111000111101000011111100001111110000111111101101111111001101011000011111101101110111000011101001011110100011111111001111111101010011
|
||||
0111100111111101010111111101001011111001101101001111110100111111011010111111111011110111110111101101111111101001011111001111101010011110101011111111000111111011110111
|
||||
0111101111101111001111110101111111111011111111110010111111101011110110111111111011111111010111111111011111111110111111101111111111100111101110011010101111111111111101
|
||||
0111110111011101111111001101111100111111110011111011001110101100011010110011111111001111111110011101011001111111100111111110011111111000100111100010110110011111110111
|
||||
0111111111111111011111111101111111010111111111101111111110011111110001111111111111111111011111111101111111101111111111111111111011111111111111111111011111111111111100
|
||||
0111111111111101111011110101101111010111111111111111110111111111110111111111111111110111111111111101111111101101111111110111101011011111111101111111111111110111110100
|
||||
0111111111111111011111111101111111111111111111101111111111111111110111111111111111111111011111111111111110101111111110111111101111111110111111111111011111111111110001
|
||||
0001111111111101111111110101111111111110111111111111111111111111110111111111111111110111111111111111111110101111111111111111111111111111111111111111110111111111111011
|
||||
0111111111011011111111111110111111011011101101001011111111111111011011111101101011110011001111100101111110110111101010011111111000101100110011111011011011110111111111
|
||||
0111111111111111110101011111010101111101011010110101111111010101011101011011110101111111101011110100100111110010010101100001111110100111101010101101101011111111010001
|
||||
0110110111101111001111110100011011000011011111101001001100110111010011111100101011111000111111011111101100000011111110111111111011111111100010111010111100010111110000
|
||||
0011011111110111111101101011101110111101010110111111111111110111111111111110111111111111111111111111110111111110111110111101111111111111111111110111111101111101100001
|
||||
0111111100101000111111101101101111001110111111111111100011101110001110111011111111101101011101111111011110011101110111111111111011011110011101110110011101110110111101
|
||||
0001111101111111001010111101111101110011101001111101111100111011011011111111101111111111011111111001110101101111111010011101001101111111100011111111011111111111011100
|
||||
0111111111111111111111010111111110111111111111101110110111011111111011110111111111110111111101110111111111111111101110111111111011110011111101001111111011101111110111
|
||||
0111111110111101011011111111111010011111011111111110111111111111111111011111110100111110111111110011111010101111111010101010111011111110101111111100111110111111111010
|
||||
0111111011111110111111110100110111011111111111111111111110111011111110110101001111110111101111101101111110111111111011011111101111111010011101111010110011111111110010
|
||||
0111111111111111111111101111111111110111111111111111111111111111111111010111111011110111010111101111110110110110011011011111101101111111101111111111111101101110110001
|
||||
0111111110011100011111011011110010111111011001011111011111110110001111111100111111011000111110100101111100101111111101100010100011111110001110111001111011111111111110
|
||||
0101111111111111011110111011111111111111111111110011101111001111001100111001101110111110111100100111111111111111100111011111110111101011101111111011001111101111110100
|
||||
0011011111111111001111111101110111110111001111011101111100110110010111111111001101101111111011111011111111111111011010111011011110110011101000011111011011011101011111
|
||||
0111111111111111111001101001101110100110111010011111111001111111111101110111011010101111111110111010111111101111111010110111111101011110101111111111101111111111000100
|
||||
0101011011101101111011111101011111110111111111011111111101111111111111011101011111111111111111101011111111011111111111111111111111111110111111111111111111111111111110
|
||||
0101111111001111100110101110000011111001100111100110011110011111011110101011010110011111111100111111000110111001010111101001101111010010111111001111111111111111010110
|
||||
0110111111100111111110011111010011111110100111111111111111001111110111100111010010101111111100111111110101101101010111101001111011100110111110011111111111111110110001
|
||||
0111111111111111110110011011111001101001100110110110011010111111011111001111111110011111111101011101111110111011010111111111101111110100101111111010111100111111110011
|
||||
0010101111111111111100111111110011111101001111111100111110111111110111001111111110111111111111111101111111001111001111111001100111110010111111011010111001111010100100
|
||||
0111011111111101011111101111111111111111111111111110101111110110011110011011111011011111110111111111011110110101110111111111011001001100100101100111111011011101110000
|
||||
0010011111111101010101001111010110111101011011110111101111011010110110111111110111111111101111111100111111101101100111001010001111011110100010100111101111011100101101
|
||||
0011011111111101011110101011111011101111101110111010011011111011011111101011110110100011101111111000110110111111001111010101001111100110101111011010111110111101101000
|
||||
0110011110111101011110111111111000111111100011111110001111111000110111101111111011111011110101101111111011101111101111111101101101011110100011101010111101111100001111
|
||||
0101101111011111111101011101110111110111011111011100111101110110111011010111101111111111011010011111001101111111111111111110111111100111111110110111111010000011101000
|
||||
0001101111100011111111101111111110111111111011111111111111111111111111101011100111111111001101111110110111111011011111001111111110111111110111011111101100110011110011
|
||||
0011010111101011011011101101101010110111111011011011101101111010110111011011000111111110000110111011101101101110010110001111011000111111101111100110111111010101010100
|
||||
0110011111101111111111001111111110111111110011111111001111111110111111011011111111101111111111011111001101111111011111111110111111111101111111101111111011111100111011
|
||||
0111010111111011111110111101110111110111011111011101111101111101111111110111111110111111111011011110110111111011111111111111111111110101111111110111101111101101111101
|
||||
0111011110011101011101111111111111111111111111111101111111111111110001011011000011111110000111101010111101101101111111110001101000001110101011111111111111111101110001
|
||||
0111100110111101000011111111001111111101101111110110111111111111111010111111100111110011001111101010111110110011111111000111101010011110100011111110100111111011111011
|
||||
0111101111111101011111111111111111111111011111111111111111111111111010111111001111101110011111101010110111111111110111111111111011111110100111011111111111111111110110
|
||||
0111110111111101011111001111111100111111110011111111001111110000111111110011111111001011111110001011101001111111000111111110001101101000101111100110110110011111110111
|
||||
0111111111011111101111111110011110111001111111100111111110011111111111111111100111111111111111101001111111110011111010111111111111111111101111111011011111111011111011
|
||||
0001111111111011100111111111111111111111111111111111111111111110111111111111111111100111111111101011101111111111110110111111111111011111101111111111011111110111110010
|
||||
0111111111111111111111111111101111111110111111111011111111110001111111111111111111011111111111111001011011111111011110101110101111101011101011111111101111111111111100
|
||||
0001011111111111101111111111111011111111111111101111111110110000111111111111111000000111110111101011101011111101010111111010111011101011101111111110111111111101111011
|
||||
0111111111011001111111110111111111011101101101111111110111111111111111111100101111110011011111100101111110111111110001011111100101111110010011111011011011110111110101
|
||||
0111111111111001100101100111010011011100000101110101010111010110111101010101110100111111101010110110001110111010111101101001110110100101010010111111101010011110110110
|
||||
0110110111101111001111111101111111110010111111011101111100110111110011111111001001111000011111111101111111101110110111001111111001111101110110111000011101110111110101
|
||||
0011011101010111110111111101111110011110111011011101101101110101111101111101111111101111011111101111111111101110011101110111111111011100111111111011011111101111111010
|
||||
0011111111101100101110111111101110101111111111111111100111111110001011111111011111111001011001111111011101111100111111001111100101111101111110110101011111010111111100
|
||||
0011111111111000011111011110111111111101101111001110111100111011110111010100001111011110101111101101111110101011111011111111100111111110011111111010111111111111100011
|
||||
0010111111111001111111101111111111111111011011111111111111111101111111101010111111100111111101011011111011110111101110111111111111111111111111101011011110111111101000
|
||||
0001111111110111010101111001111111100111111101011111110001110111010111011111011011110000111011111011100110101111111110111010111111111101101101110100101001111110110000
|
||||
0111111011111111101111110100111111011110011100101111110100111111011011111101010111110011001111111101111011111111110001011111101101111111110111111111011111111111100100
|
||||
0111111111011111101011111111011011110111101101111111111111111111110001111011101111011011110111111101011111110100111110111111111011111111110110111111111101111110111010
|
||||
0111111111111000111101110011111110101111111100101111001110111011111110111100111111101111110110100111111110011111111101111111100111010110111011111001111111111111100100
|
||||
0101111010111101101111110011101111111011011011011111111111110111111111111101101011111111111101000110111110011111011101111110011011111110111111101001110011101111111110
|
||||
0010011111101111111101111101111111110100101110111001101111111110111111011011011110101111110111111101110101111111101110011111110001111110100111011010111111111101110000
|
||||
0111011111110111110011111101110111100111111001011111111111111111111101111111001111111010011110101011010110101111101010110110111001111111101101101110111111011111110100
|
||||
0111111111111111110111110011111011110111111111111111111111111011111111111100111101111111111111111111111111111111111011111011100111110111101011111101111111111101111110
|
||||
0001111111101011011100110111101001111110111111100110101111001111111001111111111100111010101111111110110010101111111110111101011010110101101111001110111111111111000100
|
||||
0110111111001101111100111111100011111111111111101010011111111111111101111101111010101011111001111101011110111111111011111100101101110010111110011011111111111110111100
|
||||
0111111111100111011110101101111111111011111111111111111111001010111111111101111111111010101111111111110100101111001011111111111111110010101111010011111111111111111010
|
||||
0110101111001101111111111111111001101111111111111100111111111011111111111101111111111010111111111111111110101110011011111001111111110110111111111011111111111010110111
|
||||
0111011111111111011011100111100110111100011011001111111101101000110111111101111001101010111011001011011100100101110010110101001111011010101100110010110101011101111111
|
||||
0110011111111101110111001110011010111001111011010111111111011110111101111101110110101010101111101011101000111011000010110111011010111110101101010010110111011100111011
|
||||
0011011111111111010000011100111111111110000111011011111111011101111110101001111011110010111111101010110110101110011010110100001010100110101111011010110100111101100000
|
||||
0100011110111101111110111111011010011001101111001111111111101111111111101101110000111010111111101011010000100011011010111101101011010110111111101010111110111100111001
|
||||
0111101111111111101101011111110110111111000111111111111110111111111111110111101101111111011001111101111111111100101111011010011101101001111110110111111011011010111001
|
||||
0101101111111111100110101111111011111101100111110110111110011111111101111111100110101111101100111110110111111111010111111100111100110111111111001111111100111011111010
|
||||
0011010111111111000101101101111000110101111011010111011100011110110111111111001100101110101101011011111011101110111110111101011000010001101111110110111111110101001101
|
||||
0110011111101011111100111111111010111111110111111111111111111100111111111111111110101111111111111111111101111111110111111101011111110101111111000111111101110100111001
|
||||
0111010111101011111111111111110110111111111111111111111111111101111101111111110110111111111111111111110111111110111111111110111111101111111111100111111111011101110101
|
||||
0101011111011101000111111111011111110111111101111111111110001111111110111111101011111110010111111000000111101011111111001011111001001111101111111010111111111101010001
|
||||
0111100111111101000011101110001111111001111101010110101110011110111001111111100111110111101111111100001111111011110111000111101101011110101011111010100111111011110010
|
||||
0111111111111101010010111111010011111111011101011111111111011011111111111011111110111111111111011110111111111110111111011111101011011110101111011110111111111111111110
|
||||
0111110111111101011010001111111100111111110001011111001111111100111111110011111111001111111110011111110001110111100011111110001011011000101111100010111110011111110010
|
||||
0111111111111111111111101101111111111111111111011111110100111111110001111101001111111111111111111111111101111111111111011111101100111111101111111110111111111111111111
|
||||
0111111111111111111111110111111111111111111111111111110101111111111111111101001111110111111111111111110111111111111111111111111011111110101111111110111111110111111111
|
||||
0111111111111111110110111101011111111101111111110111110100111111111101111101011111111111101111111111111111111111111111001111111111111111101011111110101111110110111001
|
||||
0111111111111111111110110110111111111111111111111111110101101111111111111101011011111111111111111111010111110011111111011111111111111111101111111010111111111100110100
|
||||
0110111111011000101111110111111011010001110101100011110100110111011011111000101110111110011111111111111110111111111010001111101101111110010111111011011101111111110000
|
||||
0101111011111101110101111111010111011101010001100001110111010011011100011111110100111111101001111110100110111010111011101011111110100111011010011111101011111101011111
|
||||
0111110111101011001111111000111110110011001101000111101100101111010111111110000001100110011011111001111111100110110110101111100001111111100110110000001111111111111101
|
||||
0011011101101111110111101111011011101111111110001111111001101011110011101101101111111011111010011111011011111110111111101111010110111101111111111111111111111101101011
|
||||
0111011101101000101111100010111110101111111111111101111111111111111111101010111101101101110111100111111110011100011101011011111001011110011101111001010101111010011110
|
||||
0101111111110001111011110000110111010111111100111110010101111011001111111111011111111010011100111011111111111111110110111110100101111100011011101000011011011111110111
|
||||
0101111111011111011111011011011111100111110111111011111001111111111111100101111111011011011111111111101101111110011011111111111111111001111111101101101100111111111101
|
||||
0100111110111111011001111101110101111110101011011101111000101101100101011111011111111110111111101111111011101011111110111010111001111111101111101110111011111111111111
|
||||
0110111011111111111111110001011111111111011100101111110101111111011011101111111011110111011111101111011111110111110111111111100011111111110110111111101111111110011101
|
||||
0110011111111111101111011111011111111101111101111110111111111111110110111111101101100111010111111011001111110101111111000111111111111111110111111111010101111111111011
|
||||
0111111100100100111101110011111010010101110000011101110011110111001111101100111111011001111110110111111110011111111001111011100011101100011110111001111111111110010100
|
||||
0111011111110110111111011011110111111101111110111111110011111111011011111110110110111101111100111101111011011111111101111110111011011111011101111101111110101110110000
|
||||
0111011111111110111000110001101111110110111001010101111100100111010111111110100011111101011111111101110111000111111101011100111011000101001111011100011001111111111000
|
||||
0011011110010111111111111111111111000111011111000111111101111111110110110111011110011110111100111111111111111111101110110111111011111111100101111110111111111111101001
|
||||
0111111111111111110111111111111111111101111110111101110011111111110111101010111111111110111011111111111110111111011101110111101010111110011111111010111111111111011110
|
||||
0101111111001111111110011101111001111111101011111110010111011111010101101011111010011111110100111110110011111111111111111101011011110010101111001111110111111111010011
|
||||
0110111111111111111100110111110011111111100111111110100111010011010101100101111100111111111101011101000111111111111111111100101111111110111110011011111111111110111111
|
||||
0111111111111111111100111111111111110111111111111100110101101010111110100111101100111110111100111111100111101111010011111111111111110101100111111010111001111111110010
|
||||
0110101111111111111111111111110011111111111111111111110111111111111111001110110111111111111101111111100111111111001111111001111111111110010111011010111100111010100101
|
||||
0111011011111011111111110101100110110010101011111001100111101110111110111001011010101110110100011111011111101101110011110111101111011110100111000011110111111101110111
|
||||
0110011111100011110111111111101010110110011001110111100111010100111101100011001011101110110011011110110101101101000110110111111010111110111110110010110111011100100110
|
||||
0011011111111111111110111111101011111111101011111110000101111011111100001111111110010111111111111111100111111110011111111101001010110100101111011010111100111101101111
|
||||
0111011110111111111111011111111101110011101111110010110111001000111110101111111111011110111111101110000111101111011110111101101011110110101111101010111110111100101101
|
||||
0011101111111111111101101111111111111011000111101101001110111111111011110111111101101111111011011101101101111110100111111010011111101001111110011111111011011011000011
|
||||
0111101111111111111110111111111011111001101111100110111110011011111001111111100110111111111101111100110011111111011111111101111111110111111011111111111100111011110001
|
||||
0011010111101011011111001101111000110001100011001111001100110111110001101011010111001110111110111001111101101111101110111110011011010001101111110110111111110101111110
|
||||
0110011111111111111110001111111010111111111111111101101111111110111111101011111101111111111111011111100111111111111111111001011111110101111110110111111111111100110011
|
||||
0111010111111011111111001111110110111111111111110110101111010111111111101111111111101111111110111110111101111111111111111110111111101111111111010111111111001101110001
|
||||
0111011111011111111110110111110111011001011101101011100110001111111000111111010110111111111111111000000111111111111111111011111011101110101110111110111111111101111010
|
||||
0111100111111111101010111111001011010101111011000110111100011010111001111011100110110111101101101100011111111011011111100111101100011100100010111010100111110011110101
|
||||
0111111111111111111100111111110111110011111101111111100111111111110101111111011101111011111111111111111110111111111111111111111111101110111111111010111111111111111101
|
||||
0111110111111111111111000111110100111111100011011111001100111100111111110011101111001010111110011101111000101111100010111110011111111001101111100010111110111111110000
|
||||
0111111111111111111111110111111111010111111001101111110110011111111111111111011111111111111111111100111111111111111111111111111001111111111111111110111111110111111111
|
||||
0111110111111111111111111111111101010111101111001111111101111111111111111111111111110111111111111111111111111111111111111111111101111111111111111010111111010111110111
|
||||
0110110111111111111111111111010111111101111101111111110111111111110111111111010111111110101111111111111111101011111110101111111011011111101011111110101111110111111010
|
||||
0110111111011111111111110111111111111111101111011011111101101111111110111111111111110111111111111111011111111111111011111111111111111110111111111010111101111111000101
|
||||
0111111110011000101111110110111111001011111101001111011010100011011011110101101111010011111111101101111110111111011011011111101101111110110111110011011111111111111101
|
||||
0111111011110101110101110111010111101100001011110100011111010110111101001011110001011011100001111110101010111010101011101010001110100111111010111111101011111110110110
|
||||
0110111111111011011101110101010110110011111110000011111101111111000111011100000111110110001111000001101111100011111010101011101111101110001010111000001011011111110010
|
||||
0011111110010111100111011101110110111111110101101111101101110111110111111101111111111111111101111110001111110111111110111111111110111011111101110111111101111111101100
|
||||
0111101111001110110100001111111101001111111110111111011111011001111111110110111111101001100111100111110100010110110111010111111111011001101111111001011011110010111001
|
||||
0111111111111000011110110100111011110111111001011111101101101111110001101111110010111110111111111011100111101101111011111100101001110101101111011110111101111110110101
|
||||
0111111111101110111111110101111101111101111101011101111111111110111111111111111111111111111111101111111111111111111111011111101101011111111111101111111110111111110001
|
||||
0111111110111011001011111101111111011111110111111111100000101111010111011110011111110011110111011011101110111110010111111011111111111110111001111011111011111111110101
|
||||
0101111111111100010111111111111111111011111111111111111111111110010011111101101111100111101110110101111110110110111111011110111111011110101111101011011111011111111100
|
||||
0111111011101111111111011110111011111110101111111111111111101111111010111111010111111111111111011111110110111110000111110101011111010111111011011110111011101111011000
|
||||
0111111110110011100011111111110000111111101111111110101111111110111111111111111101100111110110011111110101110111110111111100111111110111110111011111111111111111111011
|
||||
0111011011111011110111111111111111111111111111111111111111111111111111110111111110111111111111111111111111111111111111111011111111111101111110101111111010111111111110
|
||||
0111011111111111111111101111101100111011111111011111101101111010110011101111111100101110111011111111101101111101111111110111111111101111111101110111110011011000010101
|
||||
0011111111110111100011011110111111010111111010011101111001111111100111011101011011111111111111111110111111111111111111111111111101001011111111101010111111111111100110
|
||||
0111011111111111110101111111111111111101111111011111111101111111110111111111111111111011111111111111101111111111111111101111111111111111111111111111111111111111110011
|
||||
0110111111111111001111111100111111110011111111001111101100111110110011111111001111111110011111011001011111100111111110010111111001111011100111110110011111111111100110
|
||||
0111111111111111001111011100110111111011111111001111111100110101110010110011001111111110011111111101111111101111101111011111111001111111110111111110011110111110110000
|
||||
0111111111111111011111111101001111111101111111011111111111111111110101111111111111000110111111111011111111101111111110111111111011111001101111111110011111111111111111
|
||||
0111111110111111011001111101111111111111111011111111111110100111110111111111011111111111010111111110111111111111110111111111111111101111111101110111111111011110111000
|
||||
0111111111111111011110101101110111110101101111001110111101011111110110111111010110011110101111111011111111100011111110111101111001111011101111111110001101111111111111
|
||||
0111111111110100111011110011111111000111111100111111100001111010000111101100011110011001110111100110111100011011110001110101000110011010011111110001110111111111110111
|
||||
0111111111111101111111110111011011010111111001111111110101111111010111111101011111010011101110101111111110110111111011111111101111101110111101111010111111111111111010
|
||||
0111111111111110010111111001011111101111111110010111111011111111100111111110111111111101101111110010111111001111111100101111110010111111001011111111111111111111111101
|
||||
0111111111011110111111111011111111101111111110111011011011111111101110101110111111111101111011110111011111011111111101111011110111111111011111111111011111111111111010
|
||||
0111111011111111111111111111010111111101001111111100111111010110111110011011111011101111011011011111101111111110011111111111111111101101111110111110111101111111110111
|
||||
0111111111111110111111101011111011101111111110111101111011111110111111111110111111111101111111010111111111010101111101011011110111111111010110101111111111111111110001
|
||||
0111111011111111011111111101111111110011111111011111011100111111101101111111000111111110010111111011011111101111111110111111111011111111101111111110110111111111111011
|
||||
0111111110111011101111111100101110111000111011101111001110101111111001101111101111111110011111111101011111110110111111010111111001101111110101111111011111011111110010
|
||||
0111011111111011101100101110110011111011001111101100011110110010001011001111101100111111011000111101100111110110011111011001111101100111110110011011011001011111111111
|
||||
0111111111110111101011011110101111111010110111101011011110101001111010110111101011111111010111111101011101110101101101110110111101011001111101100111010110111111110010
|
||||
0111111111111111101111011110110111111011011111101101011110111111111011011111101111110111011011111101101111110111111001011110111101111111110110111111011111111101110000
|
||||
0111111111110111110111111111011111111101111111110111111111011101111101111111110111111111101111111110111111111011011111101111111110110011011011111111101111111111111010
|
||||
0111111111111111110111111011011111111101110111110111111111001111111101110111110111111101101111111110111111111011101111101011110110111111111011101111101110111111110011
|
||||
0111111111111110010111111111011011100101101110010110011001011111111101101110010111111111101101110010110111001011111111101111111110111001111011011100101111111111111011
|
||||
0111111111111111110011111111001111111100111111110011101111001111111100111111110011111111100111111110011111111001111111100111111110011110111001111111100111111111111011
|
||||
0111111111111111101010111110101111111010111111101011111110101111101010111111101010111111010111111101011110110101111110010101111101011110100101111111010101111111111011
|
||||
0111111111111111111010011111101011111110101111111010011111101011111110101111111010110111110101111111010111011101011111110101111111010001011101011111110101111111110000
|
||||
0111011111111111011110111101111111110110111111011011101101111111110111111111011111111110111111111011111110101101111110111111111011110110101011111110101111111111111000
|
||||
0111111111111111111111111111111110111111111111111111101111111111111111111111111111111111111111111111111101111111111111111111111111111111111011110111101111011111110110
|
||||
0111111111111101101111010111110111011010011111101011110110110111111011011101101101111011011011101101101111111101111011111111111111111111111110111111111011111111111100
|
||||
0111111111111110101110111011110011110011001001001111111100110010010011001011001100101110011011011101100111111111011101111111011011111110111110011010111001111101001001
|
||||
0111111111111111
|
||||
798
vxloader/firmware/x1_1_vxp.rbt
Normal file
798
vxloader/firmware/x1_1_vxp.rbt
Normal file
|
|
@ -0,0 +1,798 @@
|
|||
Xilinx ASCII Bitstream
|
||||
Created by Bitstream D.26
|
||||
Design name: vxplrie2.ncd
|
||||
Architecture: spartanxl
|
||||
Part: s20xlvq100
|
||||
Date: Tue Oct 30 16:57:09 2001
|
||||
Bits: 179160
|
||||
1111111100100000001010111011110100011111
|
||||
01011011111111011111101101011010111111101110101110101110111111101011101011111110111001011111101111111010101111111011101110111010111010110101111110110111111001011110111011101011101111111011011110110101111110110111111011111110000
|
||||
01111111110111110111111111110111110111011111011111111101111111110111111111011101111111110111110111011111011111111111011101111101111111111111011111011101111111110111110111111111011111111101110111111111011111111111111111111111000
|
||||
01111111111111111111111011111111101111111111111111111011111111111111111110111111111111111111111111111111111100111111111111111111111111101111111111111111111111111011101111111110111111111111111011111111111111111110111111111110011
|
||||
01111101111111000111111111011111111101111111110111111111011111111101111111110111111111011111111101111011110111111111110111111111011111111101111111110111111111011111111101111111110111111111011111111101111111110111111111111111011
|
||||
01111111101011101111100110111110011111111011111111100111111110111111111001111111101110111110111111111011111111101111111111101111111110011011111011101111101110111110011111111001111111101110111110011011111011101111101111111111001
|
||||
01111111111110000111101110111110111101111111100111101110111110111101111011110111111110011111111001111111100111101111101111111110011110111101111111100111111110011110111101111011100111101110111110111011111011100111101111111111010
|
||||
01011111111111011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110100
|
||||
01111011101111111111011111111101111111110111111111011111111101111111110111111111011111111101111111110111111111011111111111011111111101111111110111111111011111111101111111111111111111011111111101111111111111111111011111111110001
|
||||
01111011111111101111110111111011011111111101101111110111111001011111101101111111110110111101011011111101101111010101111111010110111011111111110111101111010010111011011111111111111111010111111111111111110101111111010111101111100
|
||||
01111111111111101111101111111111111111111111111111100111111111111111111101111111111111111111011111111111111111100111111111110111111111111111111111111111111111111111111111111111110111101111111110111111111111110111100111111110001
|
||||
01011111111111111111110011111111110011111101111111111111111111001111111111111111110111111111111011111111111111111111111111111011111111111111111111111111111111111111111111111111110111111111111111111111111101110111111111111111001
|
||||
01111111111111111111111011101110010111111111111111111111101110101111111011111111111111111111101111111101111111111101111011111111111110101111111111111111110111111110011111111111111111110011101111111110111111111111111111111111001
|
||||
01111011111111111111111000111111111111111111111111111111111011101111111111111111111111111111111111111111111111111101111111111111111111111111111111111111110111111011111111111011111111111111111111101111111011111111111111111110101
|
||||
01111111110111110000011011101111111110111110110011011111101111101110011111111011111111001111111100111111110011011110111011111111001111111110011111110011111111001111111110101111111011011111101101111110101110111010011111111110100
|
||||
01111111111111111000111001101111111100111111111011111111101111101100111111110011111111100111111110101111111011111111111011111111101111111100111110111011110011101111111100101110111011111111101011101110011111111011111111011111000
|
||||
01111111111111001000011101111111110011111011001111101100110001110010111111001111111100100111110011110101001101011101001111111100110111110011111111001111111100111101110011111111001110101100111111110010111110001111111110011111100
|
||||
01111111111111111010111111101111111110110111111001111111101011111110011111111001011111101101111110110110111011111100111001011111101110111110010111110111011111101110111110111111111010111011011111111110011111111011111101111110010
|
||||
01111001111111001110111100110111110011111111001111111100111011110011111111001110111100111111110011011101001111111110001111101100111111110011001111001100101100110111110011110111001111111100111111110011110111001111111101101110110
|
||||
01111111111110110111111111011111111101111111110111111111011111111101111111110111111111011111111101011111110111111111110111111111011111111101111111111111111111011111111101111111110111111111110111111101111111110111111111111110001
|
||||
01101111111110011111111101111111110111111111011111111101111111110111111111011111111101111111110110111111011111111101011111111101111111110111111111011111110001111111110111111111011110101101011111110111101110011111111011111111100
|
||||
01011111111110011011110101101011110110111011111011111101100111110110011111011011101111100111110110111011011001111100011011101101101111110110011010011001101101101011110110011111011011111001110110111110101110011001101101111111011
|
||||
01010111111111111111110011101111111110111010111011111111101111101110111111111001101100110110111110011011111101111110111001101011100111111111111011111101101111101111111110111111111111001111100111110110011011111001111111001011000
|
||||
01111111111111111110110011011011111110111110110110111111111011101101101111111011111111111001111110101111111110111111111111011111111111111111111110111111111111101111111111111110111111111111111111110110101111111111111111101010110
|
||||
01111111111111111111111111111111111111111111101111111111111111111111011111111111111111111111111110111111111111011011111111111111111111111111111111111111011111111111111111111110111111111111111101101111111111111111111111101111110
|
||||
01111111110111111111111010111111111111111110111111111111011111101111111111111111110100111111111111111111111111110111110111111111011111111011011101111111111110111111011101111111001111110111011111111111111101110111111011101010000
|
||||
01111111110101111011111011101111111110111110111011111111101111101110111111111010111010101111101110111110111001111110111010111111101011111110101110111011111111100111111110111111101001111111101111111110111110111011111111111111100
|
||||
01111101101110011111011000100111111111010110111011111111111101100010111111111111011011111111110111110111111110111011111111010110101111101111110111111111111000100101110110111110111111010101101011111111110010111111111110111111011
|
||||
01111111111111111110111001111111111111101111111111110111111011101011111111111110111111111110110111101101111111110111111110111111110111011111111111111111100101110011011011111101111110110111111110101111101001111111111011101111111
|
||||
01111111110011101111111111111101101111111111011111011011111110001111110110111111111111111101101111101111111111111110111111111111111101111111110001111111011111111111110111110111111111101100111111111111111111111111011111111111010
|
||||
01111111101010111010010111101111111111110111111100111111111001101110111101111111011011101011111110111111111011111111111111000111111011101110110011111011111111111001111111001111111011111011101111011110110111111011111111111111000
|
||||
01111111111111111110101111111110111111101001111111011011111010101111111010111111101011111010111111111111111010101010111111101011111110111111110111111110111011111010101111111111111111111111101111111111101111111111111110111111100
|
||||
01111111111010111111110111011011111111011110111111101111111111111111100111111111111101011111111111111111111111111111111111111111111111100101111101001111101101111111111110111011111111110100011110010001111001000111111111111111001
|
||||
01101111110101111111010101111111011111111111111111110111111111011111111101111111111101011111111111111110111111011110111111110111111111110101111110111111010111101111011111110101111111010110111011111111110111101111100011111110101
|
||||
01111111111110100111110110011100111101110011111111011111011111111001111011110111101110001111011001111011111111101111100111011111111100011001110111110111111111111100111101101110110111110010001011110100110101111011111111110110010
|
||||
01111111111110010111111101001111111110111111011011111111101111110100111111011011110101111111110100110111011100111111011001101101111110110100110011111111111101011111111111111111111111111101111111101111111111011111111110111010101
|
||||
01111111111110111110011011111111111110101110011111101111101101101111110111011011111011011011111111101110011101110011110111110101111010101111111111111000111011111111111110101010111011111111011110111110101110011111011111101110101
|
||||
01111111111111000011000000111101010001110000101001011100111110000011111101001011011000010111010011110011001110111011001011011100111111100010111111101111111000111100110011111111001001111111111111110011111110011111101111111011010
|
||||
01111111101111111010111100111011111011011111110111111101101001110011110011011011101111101000110011111111011010111111001111111111101111110011100111111010111100111011111101011111001101111111111111111011111111011111110100111111101
|
||||
01001111101011110111111111011011101111110111010111011011111111111101101110110111111111010111001101110111111111001111010110111010011001111101111110111111111111011101101011110011110011101011101010101001110011111111111110111111101
|
||||
01111111111101110111011111011111111110111111110110111111111111111101111111100111111110001100111101111111010111111111110111111101011101111100110111111111111111011111111111111111110110011111101101011101101111110111110011111110000
|
||||
01111111111111001111111100111111111111111111101111111111111111110011111111101101111011011111110011111111111111111111101111111101111011110011011111111111101111101111111111101111010111111111111101110101111111110111011111111111011
|
||||
00011111110011111101101011111110101111011001111100100111110011111111001001111111100111111110011111111010111011101011111111001101100110011111101111011101100111111110010111111001111111100111111010101110001001111110111111111110111
|
||||
01101011111111111101100111111010011111000011111100111111110010101111100011111111001111111100111111100011111110100110111110111111111100111111111010110010001111111100110111100011111111001100111110011111110011111111111111011110100
|
||||
01111011111111111111100111111110011111111010111111100111111110011111011111110111100111101110011111111111111111111111010111111111110010011111111111011111101011011110010111111111011111100111011010011110011001111111101011011110001
|
||||
01101111111111111111001111111100111111111011111111001111111100111111111011111111001111110100111111111001111111111111011111111111111100111111111001110111101111011100110111111011111111001101111100111011011001111111100111111110111
|
||||
01111111111111111110111111111011111111101100111110111111111011111111111101110010111111111111111111101111111111111110111011101011101110101111110110011111010011011011110111101101011110111111001011101111111111111011111111111100101
|
||||
01101111111111111101111111110111111111010100111101111111110111111111011111110111101011110111111111011111111101111111110111011011101111111111011010110101101011011011110111011111110110011001110110001110011111111101111111110111100
|
||||
00111111111111111101111111111110111111111010111101111111110111111111101011111111101111111110111111001011110111101110010110101111111110111111111111011111101111111110110111011011111111101111011110111111111011010110101111110111101
|
||||
01101111111111111110101011110000011111001011111110111111111011111111111101110001110111111111011111111101111111000111010011110111101111011111111010110111110111111111010111111101110111110101100111011110111101010011110111111110010
|
||||
01101101111111111011011011101101101110110101111011011011101101101111110110111111111111111011111111110110111111011011111111111111101111111111110111111111111111111101101111110110111111011011111101101111110110111111011011111100100
|
||||
01101111111111111001101111100110111110011110111001101111100110111111111011111101101111111110111111111111111111101111111111101111111111111111111010111101101111111110111111111011111111111111111110111111011011111101111111111110110
|
||||
00111101111010110001110111001011011100111110110000110111000111011101111100110111011011011001111101101010110111110111110011100011011111111101110010110111011111011111011101111101110111101011011101111101010111110100111010111101101
|
||||
01101111111011111111101011111110101111111000111111101011111110101111110010111111001011111111101111111110111111101110111111101011111110101111111110111111101011111110101111111010111111101011111111101111111011111111011011111111110
|
||||
01111101101110111111101011110110101111011101111111101011111110101111111010111111101011111101101111110110111111111111111111110011111110101111110111111101101011111110101111111100111111011011111111001111111110111111110010111110101
|
||||
01111111111111010000111111100011110100000111110000001111100001111111101111011111111101011101110111111111111111001110110011101111100100111111111111111110111111111111111111110011111111001111111111111101011111111111011111111111101
|
||||
01111101111111010000111111100011110100001011110000111111100011111111001111010100011101010011111101011111111001111111011101111111110111111111011111111100111111110011111110101111111100111101010110111110001011010100111110111111010
|
||||
00111101111011010101001111111110100101111110110101111111110111111111111011110111011111011101111101110010111111111110110111111111101111110101111011010111001111111110111111111111111111011111011111111110111111110111111010111100011
|
||||
01111111100111010111110011101111000100111100110111110011111111001111111100111111110001111111000111111100111111110011011111110011111110000101111100010111110011111111001111110100010111110011011111001111111100011111110011111110111
|
||||
01111111111111111011111111101111111110111111110111111111111111110101111111010111111101001111110110111111111111111111110111111111111111101111111111111011111101111111111110111101111111111111001111111111111111110111111111111111010
|
||||
01011111111111111011111111111111111110111111110111111111111111110101111111010101111101001111111101101111111111111110011111111111111111111111111111111111111101111111111110111111111111111111011111111111111111011111111110111110100
|
||||
01111111111111111111111111101111111111111111110111111111111111110101101111111111111111011111111100111111110110111111110110111111111110110101101111010011111101110111111111110101110101111111000111111111011111110101111110111110110
|
||||
01101011111111111110111111111011111111101111110110111111111011110101111111111111111101100111110111111111111011111110110111111101110111110101111111010110111101111111111110111111011111111111001111111111111111011111111111101110011
|
||||
00101011111110011011111100100111111111111111011101101000101111110111111111001001111100101111110111111111011011111111011110111101101101110110011111011110111101110111110100011011011011111101101111010111111111111111111111111100010
|
||||
01100111101110101101010110110101111111010110011101011110110101011011010011111101011101110101011111010001111101010111101101011110110100111111010111111101011101100101111011010111111001010101110101001111010111111101011011111111110
|
||||
01111100110011010111111111001111111101111111111011111111011111111100111111100001111111010110111010110111000011101111110011011101001111100000111111101011101111101111111101111110001011111101001111111000011011110011111111110110101
|
||||
00111111111111111111111101110011101110111101011111111011110111010110111010011011111011011111110110111110101111011111011111101101101100110110101110101111111010111111101101001111101011011111101101110111111011111010111111111101110
|
||||
01111111101010101011101111001101111100111011111011101110101101111101111110110111111111101111111111110111110111101100101101111110111101111010111111111010011111101110111111011011111111111000111111111010111010001011111111011111000
|
||||
01101111111101010111111111001111110001101111010111111111001111111101111111110110011000011010100101111010110011111110011011111111111111111101111011010110111011011011010100111111110011111111011111111101111111000111111111110100111
|
||||
01101111101111100111111010111111101011111110110111111010111111100111111101111111111110111101111110111111111111111111110111111011111111011111111101111011111101111111110101011110011111111001111111110111111110101111110111110111111
|
||||
01101111111111100111111111001101001101111111010011010111011011111101110111010111001111111101010111110101011111110101111111011111011011110111111111010110100111111111111101111101110010111111011111111111011111110111101111111101001
|
||||
01001111111111011011111100111111110110111111111111111100111111110011111111001011111001011111110110111111010001111101011011111100101111110100111111001101111101001111110110111111001111111111101111111111101110111111111111111111001
|
||||
01011111111011011111111101111101110110111110111011011101111101110111110111011100111111111111111101111111111111111101110111110101110011111111111111110111111111110010110110110111011111011111100111111111110011111011111111110110000
|
||||
01011111111110101101111101100011110001001001001110101101010000110101111111000111011100111100110001110010000111111111101111111001011101100011100111011111111000111111110111111001101110101100111011110010111111101011100000101110010
|
||||
01101111101111101111100101111111111110100111011011110111111111011111101101110111111111011111111101101110101110110010111011011111111111110011101111011111111100111111010111101101101110110101101101010101011111111010111111111110001
|
||||
01110111100001110111111101011111111100111111111111111101010111111101111111110111101110001101111100110111110111011111110111001101011100111100110110010001001111111101111101111111010111111111011110111101011111111111011111100010111
|
||||
00011111110101101111111111111101111111111111111111111111111011111011111111110100111010011011111001111111100111111111100110111111111011111101011111110101111111011011111101111111111111110111111111011111111111111111111111111010000
|
||||
01010111111111111111111111111111110111111111111111111111111111111111011111001111111111011111111101011111110110011110110111111111111111110101101111110111111010110011110101111111111111111101111111110111111111111111111111111010000
|
||||
00011111111010111101100111110110011111010011111101100111111110011111101001111110001111101110011110001010111110101011111110100111111110011111111010111001100101111110011111111010111111101001111110101111101001011110111111111011000
|
||||
01101011111001111010100111101010011111110011111110001101111100111111100011111111111111111000111110111001111111100110111111001111111100111111111001001100001111111110011001111010111111101001111110011111100011101111111111010100010
|
||||
01111011111111111111100111111110011111011001111101100111111110011111111010011111100110111100111010100011101111101011101111100111111000111111111010110111111101011110011101111010111111101001111110011111110011111111111111011111111
|
||||
01101111111111111111001111111100111111110011111111001101111100111111111011011111001111111111111111111111111111111110111111001111111111110111111011011111001101111100111101111011111111100101111100111111111001011111100111110110100
|
||||
01111111111111111110111111111011111111101111111110111111111111111111111101111010011011111101101111011111111111111111111111111101011111111111110100010111111111111010101101101100111110111001111011111111111111010011101011111100110
|
||||
01101111111111111101111111110111111111011111111101111101110110101111011111111101111011110111111111011111111101111111111101111001010111111111011111010101011011011011111101010100111101100001110111111111011111011111101011110110010
|
||||
00111111111111111101111111111110111111111011111111101111111110111111101011011111110110111010111011111011101110101010101110100101011110111111110011010111101111011110111101011010111110101001111110111111101011011110101111111100000
|
||||
01111111111111111110101011110011011111001101111100000101111111011111111101011001101111111100011111111001111111101111111111110101011111011111110011010111110101011111011101111011111101101001110110001111111101011011110111111111000
|
||||
01111111111111111011011011101101101110110110111011011011111101101111110110111111110111011100111101110100110111010011110111011011111101101111111111111111011011111101101110110100111011011111101101101111110111111111001111111100110
|
||||
01111111111111111001101111100110111110011011111001101111111110111111111011111101101111111111111111111011111111101111111111100111110110111111111001111101101111111110111110011011111001101011100110111111011010111111101111111110100
|
||||
00111101111010110001110111001111011100101101110011110111011001111101101000110111110011011111101101111100110110110111110111111011011111001101111110110111100011011101111100011100110011011011001001111101111100110010011110111100000
|
||||
01101101111011111111101011111110101111111010111111101011111110101111111010111111110111111111011111111101111111101010111111100011111100101111111100111111111011111110101111111100111111100011111110101111110010111111101111110110110
|
||||
01111111101110111111101011110110101111011010111101101011111110101111110110111101111111011111101101111111110111110110110111110011110111001111111101111101011011111111001111111101111101110111110110101111010110111111111010111110110
|
||||
01011111111111111000011111101001111100100111111010011111111101111111111111110101111111111101111111110111111111011111111111101111011100111111110111111111111111111111111110010110010001111101100111110101111011010011011111111110000
|
||||
01111101111011111000111111100011111100001111111000111111111011111111101111111100111111110011111111011111111100101111111101111101010111110111001111111001111111110010111110001111010000111001000010110100101111111100111110111111110
|
||||
01111111111111111101011111111111111101111111111111111111111111111111111011111011111111111111111111111111111111111111111111101111011111111101110111111111111111111111100100111111010111101101010111111111111111011111111110111101011
|
||||
01111101111111111111110011111111001101111100111111110011111111001111111100111110110011111111001111111100111111110011111111110001011111001111111100111111110011011111001101110110010011110011011111001111111100111111110011111111110
|
||||
01111111101111111111111111111111111100111111111001111101011111110111111111111011111111101111111110111111111011111110111011111111101111111100011111011010111101111111111111111111010011111101001111110101111111111111111111111111110
|
||||
01111111111111111111111111111111111100111111111111111101011111110111111111111010111111111111111111111111111111111110111111111111101111111111111111011011111101111111111111111111010011111101111111110101111111111111111110111110001
|
||||
01111111111111111111111111111111111101111111111111111111111111110111111111111111111111100111111110011111111001111111111001111111110111111101011111011111111101110111111111100101010110111111001011111111111111110111111110111111100
|
||||
01111111111111111110111111111011111101101111111110111111111111110111111111111111111111111111111111111111111111111110111111111111111111111110111111011111111101011111111111110111010111111101011111111111111111010101111111001111010
|
||||
01111111111110111101111100101111110110111111001011111111101111110110011111001011111101001111110100011111010011011111010011111100101111110110101111011101111001101011110111111111011101111101001111110110111111111111111111011110000
|
||||
01011110101100111101010101110101111011010111101101011111110101100111010111011101010111110100011111010001111101011111111101011110110101011111010011011101011111110101110111010111101101001101110101010111010101111101011111101011001
|
||||
01111100111011110111111111000111110100011111110001111001001111110111111110111011111110001111111000111111100011111011100010011111001101110001111110110001011100000110111110111111110000111111001111110111111111110011111111110111100
|
||||
00110111111111110100111101111110010111011110011100111101111111111110101101101011111110011111101001111111100111011110100011111010111101111111111110111011111010111111101010110101011111111001111111101110011111010011111011101100110
|
||||
01110101101010111111001110111110111011101111101011001011001110111110111111111011111011101111111111111110111110101001111111001010111111111011001111001111011111011011101111111111110110111010101011111110001011111011101111011011110
|
||||
01101111111110010011111100011011111111101111110011111111011111110001111111000110111100011111010000111111000011111101000111110101010111100110111011110111101011010011111101111101011011011111001111110011111110010111110111111110101
|
||||
01101111111111010111111010110101101111111110101111111101111111101011111110011111110111111111101111111101111111111110111111011101101111111101110101111110111011111101110111111010110111111111111111111111111101010111110111111110001
|
||||
01111111110111110111110111111011011100111001100111010111011111111000110001111111101101101111110101111111000111111100000111111111011100011001111111011111111100011111111111111011110110111101011110111001111111110011110111111011000
|
||||
01111111111111011011111101101111110011111111011111011110111111110111111111010110111001111111110010111011011011111101011111111100001111110100111111010011111001011111110100011111011110110101101111110110111111001111111111111110001
|
||||
01111111111111011011011101111101111101111111110111111111111111111101110101111101101111011111110111111111011100111101110111101111111111111111111110111101011111111011111111111111011011111001101010111101010111011111011111111110000
|
||||
01111110111111101001000110111110111011110011010001101101011110110001111111001011111110111011101110111010001011111010111111011101011000110101110111001001110100111110111010110011101110011100011101101011101001000111101111111111101
|
||||
01110110111101111001111110110011011011111101111111010111111111011011111111011011011111101011111111111111001110111111111111110011111011111111111111011011100101011111111101101101111011101111101011111110101101110110110111111111111
|
||||
01111111111111110110111111101111111101111111110111110111011111111101111011010011111111011110111101110111110111111110110110001111011101111100110111111110111111011111111101110111010110011111101111111111111111010111011111110111100
|
||||
00111111111101110111011011111111111101111111111111110110011011111001100111111111011110011111111110111101101111011111110001111100011111111101111111110111111111011000001101111111010111111111011111011111110111110111111111111101110
|
||||
01111111111111010111111111111111110101111111011111111111010111111101011111111111111111011111110111111110111111111111010111111011111101110011111111110111111100111111110011111111111111111110111111111111111111110111111110111111111
|
||||
00011111110011111110101011111010101110011001111110100111111011111111011001111111101011110010011111111001111001101010111101111111111111111111111010111111101001111111111111101001111110100111100110101111111010111111111111111000100
|
||||
01101011111111101111100111111110011111111001101111001111111110011111100011110110100111101100111111110011101101101011111101111111111110101111111001111111100101111111111111110011111111001111110110101111101001111111111111010111010
|
||||
01111011111001111111100111011110011110011010110111101011001110011111010011111011101001101110101111111111111011100111011011001111111111111111111010111011101001101100110111111111010111100101011110011111111010111111111111010011001
|
||||
01101111111011110111001111011100111010111001111111101110010100111111111111101101100111101110111111110011101111100111000111001111111100111111111011001101100100111100110101111001010111111111011100111111111011111111100111110110010
|
||||
01111101111101110111011011001010101111111111110010010011011011111111101111111111011011101110001110100110111001101011111001111011101111101011101000110010101001110010100101101010111111111101001110101110101100111111111111111100010
|
||||
01101111111111111111111111111011111110011111111110111111001111111111011111111001111111101111111100111111111101111110111001100011110110001111010110011110111101100101100101101110111101111101111110101111010100111101111111110010111
|
||||
00111111111111111111101011111110111111111011111111101111111110111111111011111111101111111010111111111010111111101110011111111111111011111111111011110111101001011111110111111001010111101111111110111111111011111110101111110110001
|
||||
01101111111111110111101111001111011110111101110011110111100110011111001101111111110111101111011110001011111011110111010011101101101110100111011101111111101111110110100101111101010111110101101111011110001101111111110111110010000
|
||||
01101111111111111111010011111100111111110011111111001111111111011110110110111011011011101101111110110001111111111110111011110111111101111010110011111111010111111111111111111111111111011011111100111111110110111111011011111100111
|
||||
01111111111111111101111111110110011111011111111101111111110110011110011011111001101111110110101110011111111111111111111101100111110110101110011111111101111011101110111111111011111101101111111110111110111001111101101111110110001
|
||||
00111101111010110111101011010111101101001110110101101011011111111100111101110101110011000101101100011010110110111011110101111011010101111100111110110001111011001111001101111101110111110011001001111100111110110111110010111100011
|
||||
01101101111011111111101011111101101111111100111111111011111110101111111110111111011011111011001111111010111111110011111111011011111111111111110110111111110111111101101111111110111111100011111111101111111000111111001011111110110
|
||||
01111111101110111111110111111111001111111100111111110011111110101111011010111111101011111111001111111100111111110111111111101111111111111111010110111111111111111111011111111010111101011011111111001111111101111101110010111110111
|
||||
01011111100011111111011101111111101101111111111101111111010101111110001111111101111101001011111110101111111011111110010000111111111111110100011111110101011111011111110111110110110111111111100111111101010111011111011111111111100
|
||||
01101101111111111100011101010111111110001111010100111111110000111110001111111000101101010010111111001111111110101111010101111101110111100100111011111001101011100110111101001111110011101111110010111111001111011010111110111111111
|
||||
00111111110111011111111111011110111111110011110111101111110111111110111111111011111101011100111111110111111111011111010111111111111100110100101011110111111011111101111111111111110111111111101111111111110111011111111110111100101
|
||||
01111101111111011111110011111111001111111100011011110011111111001111111100111111110001011111001111111100111111110011011011100011111111000101101100111011110011111111001111111100110111100011011111001110111100011111000111111111111
|
||||
01111111101111111111111001011111111111111111110111111111111111111110111111010111111101011111110111111111111111111110110111111011111111110100111111110111111111111111110111111111110011101011011111111110111111111011010111111111011
|
||||
01111011111111111111111101011111111111111111011111111111111111111111011111010111111101011111111111111111111111111111011111101011111111110101111111111111111111111111110101111111110111111111111111111110111111111011101010111111000
|
||||
00111111111111011101111111110111111111011111110101111111110111111110111111010111111111011111111111111111110111111110110111111111111111110100111111110111111111111111111111111111110011111111111011111111011111111111110110111111001
|
||||
01111111111111011111101111111111111111111111011111111111111111111111111111010110111101011011111111101111111111111111011110101111111011111101111111111110111111111011110111101111110111111111011111111110111111111111001111101110110
|
||||
00111111111110011111111101000111100110111111010011111101111111110010111111011011111111001111110110011111011111111110011101111101001111110110111111001011111111000111100010010111011111111101101111111111011111011111111011111100100
|
||||
01101110100111101101010110110001011011010110101101011110110101111011010110011101011011110100110111010110111101000111011100001110110100111111010001101101010111110101110111010111011100011110110101111111010111011101011101111110011
|
||||
01110100110011111011111011000111110100111010110011111111011111111100101110010001111111001111100110101111100011111011110100111011100111100000110111111111011111001101111100111111110000111001001111111101111011110011111011110110110
|
||||
00111111111011101111111101011101110111011111101111111111111011111000011110011011111110101010110111101111101101011110110011111110111110111100110110111101011001111111110110111101011110101101101101101101111110100110101111111100110
|
||||
01111101111011111111101011111110101100111111110011101111000100111111111010101011011010101011101111111111110111101001111111101111101111100111110011111101000010111110011011010011110111101110111111111110111010111011101111011111101
|
||||
01111111111110111110111100111111111100111111001011111100011111111101111111001111111101011110110011111111110110111101110011111101101110110011111110111011111101011011110001111111010110110111101111010101011111001100011111111101110
|
||||
01111111111110111111111111111111111111111110111111101110111111101011110111111110101111101101101111111011111101011011111110110111101111011111110111111111101101101110011011111001110111110111111111101101111111111101110111111010000
|
||||
01001111110111110111110111011111010101101101100110110011011111111101111101110011111101011111111101110111010111101101011011111111111101111111011111110011011111101111111001110111010011111110011101110101110111110011111111110000100
|
||||
01111111111111001011111100101111110111011011010111111101111011110101111111111111011100111111110011111111001111111010010111111111101110111111111111001111111101011111110101111111111111111111111111110111111111111111111111111111001
|
||||
01111111111111011111111111011111110110111111111110111101101111111110111101111011111101111101110111111111011111011101111110111111111101111111111011110101111011111010011111111111111011101111111111110110111111111011111111110110100
|
||||
01111111100011001111101100111111110000111111001111111110101100010100010011001101111101011110110101111011011111111111000111100011111110101111111111111110011100111111100010110011001111011100001111011011110101001111001111111110110
|
||||
01111111111101101111111101101011111110111101001111110111011111111111111100011010100111111111011111101111011111100111110111011111111111111111101111111111111101101111110011111101010111110111011101111110101011011010110111111111101
|
||||
01111111111111000110011111111111111110100111110111101101011111111101101111110111011101011001110101110111111011001110111111011011011001101100110011110111101101011100101101110101111111111101011011111101110110111111111111100111111
|
||||
00111111111101110011111111111101111110111111110111011111011111010101110111111101111111111011111111101111111110111110010110111111111111111111111110111111110111101011011101111111111110101111000101101101111111110011111111111101101
|
||||
01111111101111110111111111111111111111111111001101111111010111110111111111011111111111110111111111110111111101111111111101111101111011110111111111011111111111111111110011010111111111111110111111110011111111101111111111101110011
|
||||
00011111110011111110100101111110101111111001011111101001111010100111111010011001100111100111111111111001111110101011111101100101110110100111101010111111100111111111110110010011011110100111100110100111111001011101111111111000001
|
||||
01101011111111111110001101011110010011110011011111100101111110011111111001011101101011111100111111100011111110100110111111100101111110010111101010111111001111111100110111010011011111001110101110010111110011000111111111010110001
|
||||
01111011110011011111100101111010011100111010111011100101111110010111111010011111111101010010011111111001111111111111011001101001010110010101111111111111001111111100110111101111011111100111011110100110111010010101111111011110010
|
||||
01101111111011101111101101111100110111011011111101001101111100111111111011011111101101011100111111110011111111111111001111101101111110110101110011111111001101111100110111110011011111001111111110010011011001010111111111110111111
|
||||
01111111111101111011100011101010101110100100011110111101111011100111100100011111110111111111111111101111010111111110110100100011111111010110100110110010111011111001100111110110011111111111011110100110111110010010111111111111111
|
||||
01101111111111111101011011110111110110111010011110111101111001000111101111011101111111110111111111011111010101111111111110111111111111110111011111011101100011111010100111011111011101111101110111110111011000010101111111110111110
|
||||
00111111111111111110101111111110101101101111111111101101111110111101101010011111101101011110111111111011010111111110010111001111011011110101101111111111101101011100110111111111011110111111011010100111101011010111111111111101110
|
||||
01111111111111111011110111100110100010011011111111110101111000011101111011011111110101011111011111011101010111111111011110111101111110110110010011111001110111011111110111111111011111101001111110100111111101010000101011110110000
|
||||
01111111111111111011011011111101111111100101111110111111101111111111110001111111011011111101101110110110111111111111111111111111111100011111110011111111111111111111111111110110111111011011111111111110110110111111011111111011100
|
||||
01011111111111111111101111111110101111111010111101101111110110011111111001111111111111111110111110011011111101101110111111111111110110011111111111111111101111111110011111111011111101101111110111111110011111111011101011111111000
|
||||
00111101111111110111011011011101111100110111110111001011011111111101111010110111111111011111011100111100110111011011110010111011011110101101111111110111011011011111101101111100110110110111011111111100011010110011011110110100111
|
||||
01101101111010111111001011111110101111101110111110101011111110101111111010111111111011111111101111110111111111110111111111100111111111101111111110111111011011111101101111111100111110111011111110101111111010111111111111110110001
|
||||
01111111101100111111110011111101111111111011111101110011110111011111111101111111101011111110101111011110111101111010111111111111111101111111111011111111110011111111011111111101111101101011110101111111111101111111111010111111101
|
||||
01011111110111010111011111111111110100011110010111111111000000111111110111011111011111111100111110011111111111111111011101111101111010110101011111110111011111111110111111111011110111111111011111111101001111110101011111111011111
|
||||
01111101111111010100111111100110110101001111010000111111110011111101011011111100111111110111111110011011110101101111011001111001100001110101011111110101101101110111101110111111011001111111000011111111001111111000111110111110001
|
||||
01111111101111110111111011111101111100110011011111011111101111111101110111010111111111111101101111111111011111111111111011001101111111111111111111110111111111011111111111111111110111111011111110111111111110111101011110111110100
|
||||
01111101111111010111110011111111001111111000110111110011111111001111111100110111100011111011001110111100111110110011111111110001111111001100111100110111110001111111001111111100011111110011111000011110111100111111110011111110101
|
||||
01111111101111010111111111001111110101111110111111111111111111111111111111110111111001011111111110111111111001111110111111111101111111110100011111110111111111011111110101111111110001111111001100011111111111111111111111111110010
|
||||
01111111111111010111111101111111110101111111111111111111110111110101111111110111111101011111111111111111110111111111011111111101111111110101111111110111111111111111110101111111011111111111011111101111101111111110111110111110100
|
||||
01111111110111111111111111000111111111011011111101111111111111111101111111111111101101011111111110111111111111111110111111111101111111111111111111110111111111111111111111111111110111111111101011011111111111111111111111111111100
|
||||
01111111111111111101111101101111111111111011111111111111111111110111101111111110111101010111111111101111110101111111111110111101111011111110101111010010111111111011111111111111011101111111111101111111111111111111111111101110001
|
||||
01111111111100110011111101101111111110110111001001111001111111110010111110001011011111001111111100011101010011111110110011111101001101110010111111001011111100101101011010111110011111111101101111110100011111011111111010111111011
|
||||
01011111101111111101001111110101011111010101011101011111110101111011000110011101011011110000011111010011011101011111111100011101110101010111010011101101000110110101111111010111111101011111110101111111010110011101010101111011001
|
||||
01101100111010110010111000000101110110111111111011111010011111111100111111110011111111011011111100110111110011111011110011101111001111111101110110110001011111001111111100111011100111011100010111111001111111110011101110111111110
|
||||
00101111100011111001111111101111111010110110101011111111011111101001101101111111111111111111110101110111100111110111101110111101111101111101101111010011110101111111010101111001111010111011111111101110101101100111111011111100100
|
||||
01101011111110001111111000111110111111111110111011011111110100111111111011010111111111011111101111001111111011111110110111111010111110011111001111111111011110101111111110101111110110101010101010111010101111111011011101111011100
|
||||
01101111111101010111111100001111110101111111000101111000010111100101001111111011011100111010110100111011011100111111010110111111000111110101111011110111110111111010110001111110010111111111011111010101111101011111111111111110100
|
||||
01101111111111011011010110111111010101111101101111101110111110000110111111111111110111111111110110111111111011111111010111110111111111011101111110011111101111111101011111111111011011111110110111101101110110111011111011111110101
|
||||
01011111110011100111111010011111111100111011110011010111011101111001111101100111101111011101111100101101100111010101111010101101111111110001110101110111110111111111110001110011110111111111011111110111111111100111001111111110011
|
||||
01111111101111011110111101011111111111111111001101111101111111110101111111010011101111101111111011111111011011111100111111111111101110110101111011111011101111111011110100111100111111011111111111110101101111011111110111111110001
|
||||
01101111111111110111111111111010111110101110011101101101101101111111111111111111111111101001111111111001011111111101111111111111111011111111111110111010111111111100111111101111111010101111101111101111101011011101111111101111111
|
||||
01011111111001011110101101110101110001111111001111011110101111011010110111001011101100111111111010011111001111111100001001111000111111110011110011000111011100111111110011110111101011011101001110100101110111001101000111111110001
|
||||
01110111111101011111110101111110011011111011011011110111101101111011110111011011010101101111011101110101011011011110010111111100111111100011111111111011110111011011110101111011110100111111111101101111111111011010110101111111011
|
||||
01111111101111010111011111011111111110010111110101011111111111101101101010110011111111011111111101111011111111100111110111101111011111011101011111110111101110011111111111111110110011101111101011110101111110110111011111101010011
|
||||
00111111110111110011111111011011111101111111111110111111001111111101111111110101011110101011111100101111111111011011111110011111001011011101111110110111111111101111011111111111100111011111011111011111101101111011111111111100101
|
||||
01101111111111110111111100111111111011011111011111111110111111110011110111001101111011111111110101111011111111111111011111111100111111110101111111001111111101111101111111111111110111111110111111111111110111011101111111110111111
|
||||
00011111111010111111001111100110010111111001111111100111111010011111011010111111100101100111111111111001011000101011111000111101100110101110001010011100111111111110010111110011111111100111110110101111011001111100111111111001110
|
||||
01101011111010111111001111111000110111110011101111001111111010011111111001111111001101110110101111110011001111100110111101100101111110101111011001001011111111111100110111111111111111001111111110011111010011111111111111010111110
|
||||
01111011111111111111100111110110010111111111111011100111111110101111011111010111100101111010101111110011010101001110011111001101010111110101110011010111101011111110100111111010010111111101010110011111111010111101111111011111001
|
||||
01101111111111101111101111011110010111111111111101001111111111111111111111010111001101111110111111111111011111101111110111101101011110010101110011010111101111111110010111111011010111111101011100110111111111011111111111110111111
|
||||
01111111111111111111110111101111100111101111111111011011111101101111101010111110111101111101000111101110010011110111111111100001011111101111111110010111110110111011110011100100111111101001001011100101100110010111011011111110010
|
||||
01101111111111111101111111101110000111101111111101111011110111101111010110111101111101110110101111011101011001111111111101101001010110001111010100010111111111110111110111011110011111111101011001000101101110010111111111110110000
|
||||
00111111111111111110111111111010110101111011111111100111111011011101011010010100001101111010111111011011010111101011011111101111011110100101111111010111001101111010111101111101010111101111111110100101111000010111101111111100011
|
||||
01101111111111111011101111101111010101111101111111110111111110110111101011010111111101111110001111101001010011101110110111110111011110100101110011010110101101110111011101011011110110110111101010111101101010110110110111111111000
|
||||
01101111111111111111000111101111111111101111111110011011111100011110110101111011011011111101101111110101111111010111111111001111111101101111110111111111010010101101101010110001111111111111111100011111110011111111011011111110010
|
||||
01101111111111111111111111111111111111111011111111111111111110011110011110111001101111111110111111011010111001111010111111101111111110011111111000111101111111100110111110011001111101101111100111111111111001111101101111111110110
|
||||
00111101111010110110111111011111111101111100110111111111011011111100011110110001110111011111001101111000110101101011110111001011011111101101111010110111111011001011011100101010110111001011000111111101111111110111110110111101100
|
||||
01101101111110111111101011111111101111100110111111111011111111101111111000111111101011111101101111111110111111101011111111111011111100111111111111111111110011111111101111111111111111111011111110101111111010111111101111110110100
|
||||
01111111101010111111110011111101101111111100111111011011111101111111111101111111011011111110111111011101111111101111111111101011111111111111111111111111110111110110101111011111111111011111111110111111110111111111111011111110011
|
||||
01011111111111011101011111100111111111110011110111111101111111111100000111111001101101011111111111101111010111011110011111001101011110111101110111010110111111001110111110111111011110111111011000110111101111111110011110111011101
|
||||
01111101111111111101111101111111111111011011110101111111001011101110011111111000111101000111101110011011010000111111110000111101000011101110011111010101011111101011111110101111011101001111110011111101011011010100011111111111011
|
||||
01111111111111111101111111101110111101111111111111111101111100111100110111111010111101011110111101111111010111111111111111111101111101111101111111010111011111011011101111100011110111011111111111110101111011111111111111111110001
|
||||
01111101111111111111110011111111000101111100111111110011011111001111111100111110110001011111001111111100010111110010111111010011011111001101111100010111110011111011001111101000110111110011111111000101111100010111110011111111001
|
||||
01111111101111111111111111111111111101111111110111111101111111111100111111111001111101000111111110111111110111111111011110011111011011111100011111010111111111001111110100111110010111111111111111111101111111110111111111111110001
|
||||
01111101111111111111111101111111111101101111010110111111011111111111111111111111111101011111111111111111011111111110110111110101111111111111111111010101111111101111110100111111010111111111111111110111111111110111111110111111111
|
||||
01111111111111111111111111111111111101111111110111111101111111111100111111111101111111011111111110011111110101111111111111111111111111111111101111111111111111011111110101111011111111111111111111111111111111110111111111111110000
|
||||
01111101111111111001111111111111110101111111010111111111011111111111011111111111111101000111111111111111011111111111111111111111111111111110111111110111111111111111110101111011111110111111111011111111101111110110111110111111101
|
||||
01111111111110001001111101001111011110011111011101111111101111111111111011011011011101101111110010110111110011111111011011111111101011110111111111011111111010101101110110111111111011111111111111110100111111011111011111110100100
|
||||
01001110101000101101011101110101111111000111111101011011110101011111010111111001011011010100110111010111111101000111011101000111110101111111010011101100001111110101011011010110111101010111110101111011000111011101001111111111000
|
||||
01111101111111110011111111111101110101111011101011011101101111111100110111000011111111001111111100110111111010111110010011111101011111111000110110110011111111011111110110101001010100001111111110101100111101110011111110111111011
|
||||
00110100111111101110111011101101101100110011011111011101101001101011101011011101011111111111110101110110101110111011100110011111010000110111111111100111111111010101100111101101110111111111111101111001111011011111011000111101001
|
||||
01100101111111101011101011111110111111111010111110111011111111111101101011101110101101011111111111101011111111111001111111110011111110111011101111111100011111111111111111111111111111111111111111111111111111101111111111111110010
|
||||
01101111101101110110111100111111010101111101000011101111010110110101111101110001110101110110110110111111011110011111001111101100010111110010011011111111001111000111110001101111110110110100001111010111101111010110111111111101110
|
||||
01101111111111011110110111111111111101111111011101010101111011100101111010111111010111011111011101111111111011010111111111110110111010111111111101111111111011111111110111111101011111111010111111111110011111110111011111111110110
|
||||
01101111110111100110111111011100110111110111110111111110001111111101111111010111111111011111111001101101100111111111100110111111011011111100101111100111111100011010011001101111110111011111011101111101110110010101111111111101001
|
||||
01001111111110011101111100111111110110111111111111111111111111110111111111000111111100111111110111111011010111111100011111111111111111110111111011011111110101111110110101111111011011111100001111010110111111111111111111111111001
|
||||
01010111101011011111111101111111111101110111111010001111111111110110101111111110110101111011111101111111111111111101110110111111101011110110101110110111111111011101111111111111011001101111111011111100010110111011111111101111000
|
||||
01111111111111000110111111111011101011111001011111111100001101010011111000001101111101010111100100110010001111101000111111101010111100110011111011001011111000111010110011110111000111111100011110010011111111001110100100111110110
|
||||
01110111101101110101111111111011111011101101011111110111010011110101110111001111101011111110111111111111001101111110111101011111101111110101110111001111111111011111010011101101101111110111011101100101101110001111110111101110000
|
||||
01110111111111010101101101001001111101101101110111111101011101111111111110110111011101001111111101110110110111111111110111111111110101111111111101110111011010011011111101101111010010101111111111111101111111111011011111111100010
|
||||
00011111110101111001011111101111111111111111110111110111011110101101111111110111111111011011011001111111110100011111100011011111011011101101101111100011011110011111111101011010110111111111001011101011111101111111111111111110100
|
||||
01110111111111111111111111111101110111111111010111111110110101111011111111001101111111011111111101111111001111111111110110111110111111111011111111110111111111010111110011111111101111111110111111111111111111111111111111110111011
|
||||
00011111111010011101100111101111110111111001011111001101100100111111001010111111101011100110010111111010111111001110111111100111111111111111111001111111101011111110010111001010011101111111110110011111011001011100111111101010010
|
||||
01101011111010001011001111111100110111111111011111001101110111111111110011111111100110110100110011111010111111001111011110001111111111111111110011111111100110111100111101011001011101001111111011111111010011011111111111110100000
|
||||
01111011111111010011101011111100110111111111111111111101111110101111011001111111111101111111110111110011110111111110011111001111111111111111111010011111111111111111110110111111011010101011110110101111101010011101111111011111110
|
||||
01101111111111011111111111011100110111111011011111001101111110111111111001111111001111111100110111111011111111100111010111101111111110111111111011111111101111111111111100110011011111100111111110111111111001011111111111110100100
|
||||
01111111111111010000111111111111101111101101011011111001111111001110100110111111011011011111100001100100101110101011111111100001011111011001101000101110100010111011100111111111011100111001011011000101101110110111111111111100100
|
||||
01101111111111010000111011110110001111101111011011100001110101001110111010111101101011100101000111011110111101011011011101101001110110101111011111111101011011110111011101011111011110100001010101000101011000110111111111110100100
|
||||
00111111111111010111110111111110111111101011111111111101111110101110011010111111101001101110110101111000110101001111011110101101011110101111011011111101001111111011110111110011011111101101010000110101011010110111101111111100010
|
||||
01101111111111000011101011111100011111111101001011101001111110111110101011110111101111111111010111011010111111111110010111110101011110111111111101111111111111110110111101111011011110110101011010110101101010110110110111111100011
|
||||
01101111110111111011011011111101111111100110111110001111111101011111111101111111110111111101101010110011101011111110111111001111111101011010111111101011111110101111011111110001111010111111101101011110110111111111011011111110101
|
||||
01111111111110111111101111111111101111111011111101111111111111101110111011111111101111110110111110011001111001101111111111101111111111101110011111111001101111100110111111011111111101101111100111101110011010111101101111111011100
|
||||
00011111111110110111110111011011111101110111110001111111011111101100110010110111011011010110001100101010110001100011110111011111011111101100011110110001110011001110001101111010110111110011000111101100010110110111110111111101010
|
||||
01101111111101111110101011111111101111101010111110111011111101111111111110111111001111111111101111111010111111101011111111111011111101101111111100111111011011111111111111101111111110100111111110001111111001111111111011110110111
|
||||
01111111101110111111011011111110111111110110111111101111111111111111110111111111111111111111001111011011111111101011111111101011111110111111111100111111101111110111111111011111111101111111111111011111111111111111110011111111111
|
||||
01011111111111110100011111111111111111110111110001111101011101110111011111111111011111111111100110111111110011111110110111001111111101111110111110111001011111101111101111101111110000111111100001111100001011011110011011111111101
|
||||
01111101111011011110111111100111111111001011011101111101001111101100011111111000111101100011111110011111011001111111011010111111100111101110011111111010111001101011111110011111111101111111100010111100011111011100011110111110111
|
||||
01111111110110110110111111111110110101111111110111011101011101110111011111010111111011111101111111101111110110111111111111111011111111111111101111111100111111111011111111111111111011111011110111111100111111011111111111111101001
|
||||
01111111111111011011110011111111000101111100011011110001011111001101110100010111110001111110001111100010011110001010111111110011111111001111100010011110001011111011001111111100111111110011111111001101111100011111110011111110110
|
||||
01111101111111010011111111111111111111111111110001111111001111110110110111111110111111111111101110101111111000111111110111111101011011110111111111111011111111101111110100011111111111111111101111111101111111011111111110111110011
|
||||
01111101110111010111111111111111111111101111010110111101101111111100111101111111111101110110111110110110111111011010011111111101011111111111110110111011011011101111110101111111111111111111101111111101111111011111111110111110000
|
||||
01111101111111010011111111111111111101111111110111111111011111110111111111010111111111111111111111111000110111100011111111111101011111111111111000111111100011111111110101111111111111111111110111111101011111011110111111111111011
|
||||
01111111111111010111111101110111111111111111010111111101101111111101101111010011111101111110111111110111011111011111111011111101011111111111010111111111011111111111110101101111111110111111111111111101111111011111111111111110100
|
||||
00101111111110111111111101111111110110111110011011111101111011100110010111011011111101100011110110111111001011110110010010111100101011111110111111011011111101101110111100111111001010111111111111111100111111011010111010110101100
|
||||
01111110101111111101011010110101111111010111011101011110110001111111010011111101011111110101010111010111101100001011101101001110100100111111010111101101011111100101111111010011101101011111110101011111010111011101010111111110001
|
||||
01111111101111110101111111111101100000011110010011011011000110110000110101000111111000000111100100101011111010111111111101101111101111100100110111010111110100101111111100011111110001101111010111111100111111010011111110111110100
|
||||
00101111111011111111110111110111111000111011011111101101111110110111111110110111011101101111111101111111101110111111111111000101111111111010111111110111010110111111011111111101111111111011010111101001111111100011111111111100000
|
||||
01111111111001101011101111110010111110110011101111111111010111011011111100111111001010101111100111101111111111111010111111111111101101101010110111111110101111111011110101111111010110101111100110101110111101111011111101111110001
|
||||
00111111111110110101111101101111111101111110001011111111011001111101111011010111111101100011111101111110110111111111111000110111011110111101011111110111110111001111111100111010010110110101001111110100111110010011101011110101110
|
||||
01111111110011111111111111011111111111111110111111011110111111011111110111010111010111011111010111111111101101110101111111111010111111010111101111101111011011111111111111111110011011111101011111010110011111110111111111111111010
|
||||
00111111111101010111010110011101010111110111100111110111011010110001111110110111111110011011111111101111111111111110111111011111111011111111110111111111111101111111010111111101111111111111011011111100111011011111011111111100010
|
||||
01111111111011001110111111111111111111100111010110111111111111110101111111011111111101111111111111111111011110111101010111101101111111110101111111111111111111101111100110111111111011111101111111110011111111011101101111111111101
|
||||
01011110111111011101111111111110101111111111111110001011101111111111110011011010111111011111111111111011110111010101111100111111011111111111111111111100011111111111110111111011111110101001101111110111111001110111011111111110011
|
||||
01011111111111010110011111110110010011111111101111111100100111101011111111101101110100111101100011101110011011101011111111101011111000101111110110101111100110101111111010110110000111011100101110000011100111000111101111111111101
|
||||
01111111101101111110111111111011110110101111101111101101011111111110111101111011000101010111110101111111011101111101111101111111110111111111101111111011111110111111001101111111110111111100111111110110001111111011110111101111101
|
||||
00010111111111110111101111001001110101101011111111111111111100011101111111010011111111011110110101111010110110111110110111111111011101111101110111110111111111111110111100111010110111111111111111100101101101111111111111101100010
|
||||
01111111111101110111110110001101111101110110110011111111111111111101111101010010111111111011111101100111111111111111111110110111111111111111111111111111100111111111111101111111111110111011011111111111111111110000111111111111001
|
||||
01111111111111001111111111011111111101111111101111111111111111110101011111111111111101111111111101111111011111111111011111111101110111110111111110011111111111110111110101111111011111111110111111111111111111110111111101101110111
|
||||
00011111110011011101100111111110011111101111101001111101111000111111011001111111100111111110011111111010111000101011111011111111100110011110011010111111100101111010010110010011011101100111110111111111011001111000111111111001010
|
||||
01101011111111011101001111111100111111101111111010111111011111110011101010001110001111111111110111111001111111111110111111100111110111111111011001111111001100011110100001001111000101101011110111111110111111111011111111010110001
|
||||
01111011111111011011100111111110011111111010111111100101111111111111011001110111100111111111111101111111101101111111101011111110101111111010111001011111100101011100111111111111010111111101011110101111110011111111001111010010010
|
||||
01101111111111011111101111111110011101111011111111001111011110011111110011011111100111111110111111110011111111111111111011111111101111111110110011011111001101011110111111111111010111111101011110111111111001111111111111110111000
|
||||
01111110111111011101110111111110101110111000111111111101111001101101101010110110111111111111011111111110111111011011111111111111111101101111111111010110111111101001000100110110010110111011111011001111101111111011101011111101010
|
||||
01101111111111011101111111110111111110110110111011111111010111110111011110011101111011110111110111010100111101101010111101011011110110101111010110010110111111110111100101011110010101100011110101001111011111111111101011110011110
|
||||
00111111111111011111111101111110111111111011111010101101110111111111101001110111110101111010111101111010101111001111101111101110111010111011111010110111101111111111011111111101010101111101011010101111011111111111101110110111110
|
||||
01111111111111011110001111111111011110111001111111110111011010111111001101011100101011111110011111111010111111111110111111110111111111011111111011110111110111100110101110111011010110101001010010111111101010111011110111111111101
|
||||
01111111111111111110011011111101101110110101111111001111101100011110110011111011011011111101011111110111110111011111110111111111011111111101111101111111001111111101101111110001111011011111101101011110110110111111001111111101110
|
||||
01111111111111111111101111111110111110111010111111100111100111111110011111111001101111111111101111111110111111100011111111100111111110011111111011111111100111101110111110011111111001101011100111101110011011111111101111111111011
|
||||
00111101111010110111100011011110001100111100110111111111000110101100111111110010100011011111101101101110110110101010110111111011011010101101111101110111101011001001101100011010110000011011001111101100011100110011011110111100011
|
||||
01101111111011111111101011111110101111110110111111101011111111101111111110111111101011111110001111111000111111101011111111110111111111101111111010111111111011111111011111111111111111100111111110001111110110111111111011111110001
|
||||
01111101101110111111011011111101101111111011111111101011111111001111011010111101110011111111011111111101110111110010110111111111011111001101111011111111011011111111111111111111111111111111110111011111110110111111110011111111110
|
||||
01111111110111011111011101111111110100010111111101111101000001110100001110110000111101111101111101111111111111011111111111111111111101111111110111011111001111010111111101011011111000111101000000110100001111111001111110111111100
|
||||
01111101111111011110111111000110110100001110111011111101000111110100011011110000111111000110111100011111111101111111111101101111110111111111111111010101111111110010101110001111111001101001000011110100001111111101111111111110110
|
||||
00111101101111011111111101111111101111011111111111111011111111111110111111110111101101111111111111111111111111111110111111111111111111111111110111110111011111110101111111111111111101011101011111110101010111111111111111111100100
|
||||
01111011110111011111110011011111000111111100111011110011101111001111111100110011110011011111001111111100111111110011111111110011111111001111111100111111110011111111001110111100111111110001001111000101111100111011110011111111110
|
||||
01111111101111011111111101111111110100101111011111111111101111111100111111110011111101100111111111101111111001111111111011111111101111111110111111010111111111101111111111111111111011111111101111111111111111111111111111111111010
|
||||
01111111111111011111111111010111110101111111111111111111101011110101101111110111111111011111111111111111111111111110111111111111101111111110111111010111111111101111111111111111111011111111101111111111111111111111111110111011011
|
||||
01111111111111011111111101111111111110111111111111111111111111111110111111110011111101111011111111111111111111111111111011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111000
|
||||
01111111111111011111111111011111110110111111111111111111111111111111111111110110111111001111111110111111111101111110111101111111110111111111111111111110111111101011111111101111111110111111111011111111101111110001111110111110111
|
||||
01101111111110011011111101101111110110101111011111111001100111110110111111011011011101111011110111111111001001111111111001111100101111111110111111011011111101100101110111111110011111111101101101100110111111110011110111110100111
|
||||
01111110101101110101011111110000111101010001011100010110110101111011000101111101011101110101100111010011011101001111111101011101110101011111000010101100010111110101110111010101111101011111100101111111010111111101010111111110011
|
||||
01111100110011110010111100101111011100101111110011111101100110110100111111000111111011000111111101110110110111111111011111101011101010110110111111010001111100001110101101111111101111101000111111110000111111110011111110111110110
|
||||
00111111111110011011110110111011100111111111100111111110111001101011111110110111101110111111011101000011110011011011111111011101111111101011111101101010111001101101111111111111111011101111111101010111011110011110111101100101010
|
||||
01111011101010110111111111111111101011111110111111111011111111101101111111111111001011001101101111111110111111111111111101111111110101101111110111101110111010111101111010011111111111001111111111111010101111101011111010111110001
|
||||
01101011111101110100111111111111110101001011010011111111011011110010111111110111111101011101100101111111010111111010010011111101011111110101101111111111101100011101010100111010010101111100111111010000111011010111101111110101000
|
||||
00111011111111011111111011111111110101111111111111111101111111111111111010111111101111101111111101111101110111111101110111111111011111011101110101111111110110111111101110111110111011111011111111110111110110011001110111110111010
|
||||
00111011110111110111100111001111111101110100110111110111001011011101110111010111111101011101110101101111010111110101010101101100011111110111111111111111111111111110110100101101011111111110001110111001111111100111111111111000010
|
||||
00010111111111000110011100011111111110111111000011111100011111110001111111010001111100001111110001111111000011111111011110111101101111111111111011011111111101011011111111111111111011111101011110110101111011010110011111111011011
|
||||
01111110101111111110111111111100111110101111111110101111111111111111101011111001111111111011111111011011111111011100011011111111011111111111111111011100111111110110001110101011111111101111111111111111001111111110001111111111011
|
||||
00111110110001001110001000010011111010111101001111011100111101110011011111001101111101011100110011111111101111110011101111101000011101100011111111010111011000111111111111111111001000111111101111111111110010001111011111110111000
|
||||
01111110111111011011111111101011101110101011111011110101011110010110110111001111101011110111001101111110110111111101101110111111011111111110110101111110101100111111111111111101111011111011111111011111111111001111110111111111100
|
||||
00111111110101110111011111011101110100111111100110001111011011111101111011110000011111011101111001100110110111111111111111110011011100111001101111110111011111011100111111110011101111011101010001110101111111110011111111101110110
|
||||
01111111111111100111111110011111111111110111100011111110010101111000111111010111111110010011111001111110100111110111110111110110011011111111110111110101111111011011011111101111110111011111010111111101001111110101011111101100101
|
||||
01101111111111101101111110111111111111111110101111111110111111111011111111011111111110111111111011111111101101111111101111101111011111110111111111001101011001011111111111111111101111111111011111111011111111001101111111111110100
|
||||
00011111110011111111001111100111110110011001111001100111100110011111111001111001001111100010101110011001111111111110011001101011110110101110011001111111100111111110101111011001011101100101110110100111011001011111111111111010111
|
||||
01101011111111111111111111111111111111010011111011001111101100111111111010011111001111110110011110101010111110111111110101100111101110010111000011111111001101111111111110100011011101101001101110100110110011011111111111010100001
|
||||
01111011110011101011111110110010101111111001101010100110101111111010110011110100001110111100111010110011101111100111111111111101111111111111111010111111100111111110011111111001011111111101111110010111111001011111100111011110111
|
||||
01101111111011111101100111111110111111111111111111111111110110011111010011010111101111111110011110111001111111111110111111101111111100111111111001111111001101111100111111110011011111111101111100110111110011011111001111110111100
|
||||
01111111111101111111111011111110001111110110111101101011111111111111111111111111100011111110101111110110111110111111111111110111111001101111111110111111011001011001101111101111011111011001111011110111101111011110111111111100111
|
||||
01101111111111111101110011110111101111011010111101101011110101101111011110111101111111110110101111011010111101011011111101111111110101101111011000110101101011011011111111011111011101111001110111110111011111011101111010110110110
|
||||
00111101111111101110100110111110011111110011101111101110111110101011101000111111111110111100111011111011101101111111111111101011110110111111111011111111101101011110111111000011011111110101110000110111011111011101100111111100000
|
||||
01111111111111111111110111111111011111111010111111000111111100111111110011111111111111111111111111111000111110111111111111101111111011011111111101111111110111011111011111101011011111101101111010110111101010011111000111110111110
|
||||
01111111111111110111011111011101101111111111110111011011011101101101110110111111011111011101101101110111110011011011111111010011101100111111110111111111111111111100111110110100111111000111101101001110110110111111011011111000000
|
||||
01111111111011111111101011111110111111111011111111101111111110111111111011111111111011111110111111111010111001101111111111101111100110111111111010111111101111111111111110011011111101100111100110111110011011111111100111111110011
|
||||
00111101110110110111100011011101101101110111110111011011011101101101100110110111111011011101101101110111110001011011110111110011000100101101110111110111110011011111111100011000110111101011000111011100011101110110101011111001110
|
||||
01101101111000111111111011111111001111111110111111001111111100111111110110111111011111111110001111111110111111100011111111011011111110101111111110111111110011111111101111111111111111111111111111101111111110111111111111110110110
|
||||
01111111101100110111101011011111011111110110110111111011011111101101111010111111111111011101111101111101110111011010111111101111111111011111111010111111101011111110101111111110111101111111111110101111111010111111111111111110001
|
||||
01011111111111111111011111111111100101111111111111111111111111111111111111110111111111111111111111111111111010011111110111011011101001111111111111110111101101111110111110001111110110111011000011111100001111111111111111111111010
|
||||
01111101111111111101101111110111110100011111111101111111110011111111001111111011101111110111111111011011111100111111111000111101100111111110001111110110111101010011111110011111110000111111000010111100001111111011101110111111101
|
||||
01111111111111111111111111111101110101111111111111011111111111111111110111110111111111111111111111111111111110111111111111111111111101111111111111111111011101011111111111011111110111011111010111111101111111111111111111111100110
|
||||
01111101111111111111110011111111000101111100111111110011111111001111111100111111110011111111001111111101111110010110111111110011111111001111110000111111010001011111001111111100110111010011011111001100111100111111110011111111110
|
||||
01111111100111111011111111100111110100011111111011111111100111111110011111110111111111100111111110011101111111110111110111111111100111110110111111110111111111011111111111111111110011010111011111111100011111111011111110111111011
|
||||
01111111111111111010111111111011110101111111111110111111111011111111101111110111111111111011111111101110111110111010111111111111111111111110110110110111111011111111111111111111011011111111011111111101111111111111111110111110010
|
||||
01111111111111111111111111111111110101101111111011111111111111111111111111111111111111111111111111111101111111010111111111111111110111111111111001111111010111111111111111111111110101110111011111111101111111111011111111111111010
|
||||
01111111111111111111111111111111110110111111111111111111111111111111111111111111111111111111111111110011111111001110111001111111111111111110010100111111000011111011111111101111011111011111011011111101101111111111111110111110010
|
||||
00111111111110010001111101001101111110111111010001111101001101110100111111011001111101000101110100111111010011011111011011111101000111110100110110011111111101111111110010011111110011111101111011111010111111011011111111110101111
|
||||
01111111101100111101011111110101111111010111111100011111110101111110010111011101001111110100011111000011111101001011111101011111110101101011010101101101011111110101111011000111111101010110110101111111010111011101001111111110001
|
||||
01101100110011100011110110001110110100110110100011101110001111111001111111010111010110011111111001111101100111111111000110111110000100111110101111110101110110001010111100111110110011111111001111101100111011010011011110101111011
|
||||
00111111111011011110111001111011100110101011100111111101111101101111101110111101111011011111101111111110111110011110110001111011111111111011111111111111101101101111011011011111011111011010111111100110011110011011010101100100101
|
||||
01110111101011110111111110101011101101111110111110100011011010111100111011110100111011101011101101111110101111110111111111111101010011111111100011101011111110111111111011110110101110111110101111111010011110110111011011111111100
|
||||
00001111111101010111111001011111000111111011010011110101001111010101101111001111101101001111110101111011010111111101110111111101001111010111111111000001101000111111011100111011001011101111011111111101111111110111111111111101000
|
||||
01101111101111100101111110011111111101111101100111111110011111111001111101111111111110011111111001111111100111111101111101100110101111101110111101101111111111111111101011110101111111111110111111011111111101111111111111110110111
|
||||
00111111110111110111001111011110111111110111110111011111011111111101111111110011111111011101111101110111110111110101000111111111011010111111111111100111111011111101111101101111110111111111101111110101111011010111111111110000110
|
||||
01111111111101011011010101111111110110111111011111111101101111110111101011010010111101101111110110111111011111101101010011111111111111110111111111010011111111111111110010111111001110111101111111110111001111011011011111111011001
|
||||
01110111101111110011111111001011111101101111110010101111001011111100111111111011011111001110111100101011110011111110111111011111101111111101001111111101101111111010110111111111011111110111010010110110001011110010111011111110110
|
||||
01101111111011111111101100111111111111100100001011011100011110110011111011000110111100111111110001111110101111111111001111111100111001110001101011000111111100111101110000110101010111110100111111110010111110001111110111111011011
|
||||
01111111111001111110010100111110011111111011001110110011011111110110110100110110100100111111001110111111110110010001001111111101011011111101010111101110010000111111011101011111111110110101011111110011111111001111101111111111001
|
||||
00110111101111110111111111011101111101111101110111001111011111111101111111110110111111011101111101111110110111111111010111101011011100101111101111010111101111011010110101111111110011111111111111110101111011010111111111101000110
|
||||
01110111110111100011011110011111111101111110100011111110011111101000111111110101110110011011111001110111100110100111111100100011111111111101111100110111011111101110111111010110110001111111111011101111111111010110110011110110011
|
||||
01111111111110101101101110111011110011011111101111111110110011111011101111001111111110111111111011111111101111111111111101111101111111101101110111110111111101111111111111111111001110111111110111111111111111111111111110111111111
|
||||
01011111111010111001100111111110011110011010111001111111100110101110001010111111100111100110101110011001111101101010111001101011100110101111011111111110001111011011110111011010111111111111110111111110011001111111111111111111100
|
||||
01101011111010111110100111111000111110111001111011100111111110011111011010111111101011110010011110101010111011101011111111100111110110010110101111111111111100111100110111111001001111001111111111111111011111000111111111010110100
|
||||
01111011110011101001111110101110101111111001101010100110110011111010101010111111001110101100111010110011101010100111111101111101111110010110111010011011111111011110010111001111110111100111110110101101110011111111111111011111100
|
||||
00101111111011111011101111101110111101111111111111111111111110111111111001111111101111111110011110111001111111100111111111100101111111110001011001101111111101111100110111111001011111001111111110011111111001111111100111110010000
|
||||
00111111111000111111110011111110001100111010111101101011111111011111011111010110110111110110101111111010111100101010111111111001011111110110100110111000011001111001100111100110110110011001011001101101110110111011101011111100110
|
||||
00101111111111111101110011110111101110111010111101101011110111101111010110010101111111110110101111010110111101111011111111010001010111110110011110111101111111011011110111011010011101111101010110101101011110010111101011110011100
|
||||
00111111111111101111100110111110011101101010101111101110111110011011110011010101111110111100111011101011101101110110111110101001011111110111011001111111001101111010110111011011110111001101010110111101111001011111101111110110011
|
||||
01001111111111111111110111111111011100111011111111100111111111011111111010010110101011111110111111111000111110111111111111101101011111110111101000111001111111011111010111101101011100111101011010001111111101110011110111110110010
|
||||
00111111111111110111011111011101101110110001110111010111011101101101110110111011011011011101001101110111110011011111111011110111111111111110110011111111111111111100111110111111111011011011101111111111110110111111001111110100100
|
||||
01101111111001111111101011111110111111111011111111101011111110111111111011111001101111111110111111111010111001101011111111101111111111111111111001111111100111110111111110011011111001101111100110111111111011111111101111110010111
|
||||
01111110111110110111100011011100101100110111110111110011011101101101110110110001110011011111001101110111110001110011110111011111011111101101111111110011101011011111111100010010110011110111000001101101110110110010011111111101111
|
||||
01101110111100111111111011111110111111111110111111001111111100111111111001111111011111111110001111111110111111011010111111111011111111011111111110111111111011111111101111111110111111111011111111001111110110111111111111111111111
|
||||
01111111101100110111101011011111101111111101110111111111011111111101111111111111111011011101111101110111110111101111111111101111111111111111111101111111011111110111001111110111111101101011111111011111110110111111111011111110001
|
||||
01111111111111111111011111111111111100110111111111111111111101111111111111111000101111111111111111111111111010101111110011001101111111110100011110110011111111011111111100001111110000111111000011111111111111110001011111111111111
|
||||
01111101111111111100111111110111110111011111111101111111110111111111011111111001111111110010111111001011111101101111111001111111000111110101011111011100101101000111110110011111110000111111000111111110111011010101111110111110110
|
||||
01111111111111111111111111111111111101111111111111111111111101111111111011111011111111111111111111111111111110011111111111111001111111110101011011110111111111011111101100111011110111101111001111111111111111010111111111111101100
|
||||
01111101101111111111110011111111001101111100111111110011111111001111111100111111110011111111001111111100111110110011111111110011011111000111111100011111110011011011000111111100110011110011011111001111111100110011110011111110100
|
||||
01111111111111111011111111101111111111111111111011111111100111111110111111111011111111111111111110011111111111111111111111111101111111111111111111010011111111001111111100011111110011111111000111111101111111111011111110111111001
|
||||
01111101111111111111111111111111111111111111111111111111111111111110111111111111111111111111111111111111111111111110111111111111011111111111111111010011111101111111110111111111110111111111011111110111111111010111111111111110101
|
||||
01111101111111111001111111100111111111111111111001111111110111111111011111111011111111110111111111011111111101111111111111111101111111111101111111111111111111101111111101111111110011111111011111111101111111011011111111111110010
|
||||
01111111111111111111111111111111111111011111111111111111111111111111111111111110111111111111111111111111111111111110111101111111010111111111101111111010111111111011110111101111110110111111011011111100111111110001111111101110000
|
||||
01111111111110001011111100101111111111110111001001111000101110110010111100001001111100101111110010101110001001111111011011011101111111110110010111101011111101111111100100111111010011111101111111111111111111001001011111101100111
|
||||
01101110111101111101010111110001011111010101111101010111110001011111010111101100011111110100111111010111111101010111111101001110110101110111010001111101001001110100111011010111101101010111100101111111010101111101011101111110010
|
||||
01111111110111100011111110001110111100110011100011001110011011111011110111110011111110011111011000111010100011011111000011011111101101110100101111110010111111001101111100110110110011111110001101111100010011100111011011111111011
|
||||
00111111111110011011011101011111100110110110010111111011011111101111100101010001111111011101101000111011101110111011100111001101101111100101011111011001111101011001101011100011101111011010111001101110011110110011001111111101011
|
||||
01110011111110110111111011111101111011110111111110101111111111101111111011111101001111111011101110111111110111111100111111111111110111101111111100101111111111110111101011111110110110110011011110110011111110111101011111111110011
|
||||
00111111111011010111111101011111110101111111010011110101011111010101111101110111111101000101110101111101010111110101011111110111011111110101101011011111101101111110111101101011011001101101011011110101101111000111101111111101100
|
||||
01111111111101100111000110010101100101111110100111111010011111111001111010101111011010011111111001111111100111011001111011111111111111111110111111111011111111011011011011111111111011111111100111100101110111111111111111111111000
|
||||
00111111111111110110111111011110111001101111100111111110011011111101111111100110110110001111111111111011110110101101111111011100011101110001111111100111111111011101101101110111111111111101011101111101111011011111110111111001101
|
||||
01111111101111101111111100011011110101111111111100110001011101110010111111011011111101011111110111101111001111111100011011101101011111101111111111011011111101111111111110111111011011101100011111110001111111111110110111111011010
|
||||
01111111100111111111111111111001111111110111111111111111111011110111111111110110111111111010110111101011110111110111110101111111111011111111111010110111111111111110111110111111110101110111110111111111111011111110011111111110110
|
||||
01101110111111101111100101111111110011001011001111111110111101010011111111010111010100111111110011110111001011101111000100101000111101110011111111111100110100010001111011111111000101011000111011101111101110001111111111110110100
|
||||
01011110111101111010110101111110010011101111011011110111101110110110101101111101110101101101110110111101001111010111110111111100111110110011101111111111111111101111011101111111111010101101010110111111111111110111110011111111010
|
||||
01010111111111111110111111011111111101111110010110111101001101111101011011010011011101011111111111100111111011111110111111011011001101100100111111111111010011011100111111100011111111011111011101101101111111100101101111001011101
|
||||
01011111111101110111110111101111010001111101110011111111111011111111110111110110111111011001110100111111110111011010110111111111111111111101111110111101111111011111111111101110110111111100011010110000111111111110111111011100100
|
||||
01111110101011101111111101111111111111111111110111111111111111110111111111101111111111011110111111111111110111111111110101111101111111111011111111111111111101011111111111011111110111111111111111111111111111011111111111110111100
|
||||
00011111110011111110101011100110011111110011111111111111101111111111101010111011100111111110010110011111111111001110111111100111111110100111111001111111111111111111110111011001111101100111111111111111111001111011111111111110000
|
||||
01101011111111111110100111101100111111111010111111100111111100110111101001111111001111111100110111011111111111001111111110111111111110010111111001111111100101111111110110101010111101001111111010011111111001111111111111010111111
|
||||
01111011111111111111100111011110011111100011110111111101111111110111111111111111100111111110011111101010110111111110111011111101111110100111111111101011100111011111110111111001111111100111111100111111100011111111100111010111100
|
||||
01101111111111111111100101111100111111111011111111100111111111110101111111011111001111111110011111111011110111100111101111001111011110110111111011111011001100111111110111111011111111111111111110111111111001111111001111110111000
|
||||
01111111111111010111111001111110101110111100110011111001101110100111111111011111101001011111111101111000110111101011111100111111101010001111111101111111101011011101100111101101111110111111101110001100110110111011101011111100110
|
||||
01101111111111010101010011010110101111110100110011010011001101100101011111111101111101010111110111011111111111111011111001111111110111101111111110111101111101000111110111010110111101111111111110101111111111111111101011110011001
|
||||
00111111111111010110101001011010111111101010110111101101111110100111101010011111101101011110111111111011111110110110111111111101111010001111111001101110001111001111110111001010111111111111111110110111101011111111101011110111001
|
||||
01101111111111010111101101011111011110111011111011110111101100110101111011011111100001011111011111111101110111111111011001101011000110111111110001111111101001111111110111101011111100001111101110011100111101111011111111111111010
|
||||
01011111111111111111010011111100111111110101111011111111101111111111110100111111001111111100111111110110111111111111111111011011111111011111111111110111011111101111111110110101111011011011111100011111110011111111001111111101110
|
||||
01111111111111111111101111111110111111111000111111111111111110111111111011111111100111111110011111111011111101101110111111101111110110011111011111111111111011100110111110011000111001101111111110111111111111111111101111111010101
|
||||
00111101111010110111100011011001101101111010110011101011001111011101111000110111111011011111111101110110110111001011110111100011010111101101111010110111111111010111011100011111110011011011001100101100111110110011011011111100000
|
||||
01101111111111111111101011111111001111111110111111101011111111101111111110111111100011111110111111110111111111111011111111101011111110001111111110111111111011111111111111111110111111110011111111101111110110111111011011111110010
|
||||
01011101101110111111011111111101101111111011111111011011111110111111110111111111110011111111101111111111111111011111111111101111111111011111111101110111011111111111111111111101111101011011111110111111110110111111011111111110010
|
||||
01111111110111010111001101011111111101110110110011101101001111101101110111010111101111111110110111111111111111101110110101111101110101110111111111111111101101010111110100101111010000011111101111110100111111111001111111111111000
|
||||
01111101111111010000111101000010110111011111010111111111011111110110011111011001111111101111111100111111111101011111111001101101010111110111010011111111101101111111100100011010010000111111111111111111011011110101111111111111000
|
||||
00111101111111111111111011011111111101111111111111111111111110110101111111110111111011111101110111110011011111111111111011011111011111111111111111111111011111011111111111111111111111111111111111111111110111111111111111111110010
|
||||
01111111111111111111110001111111000111111100110111110011111111000101111100111111110011111111001111111100011111110011111111110011101111001111111100111111110011101111001111111100111011110011111111001111111100111011110011111101101
|
||||
01111111101111111111111101001111111101111111111111111111011111111100111111111111111111001111111110011111011111111110111001111101011111110111101111111001111101011111110100011111010001111111100111111111111111011011111111111110001
|
||||
01111101110111111111111101011111111111111111111111111111111111110111111111111111111101011111111101111111011111111111111111111101011111110111111111111111111101111111110101011111010111111111111111111111111111110011111110111111011
|
||||
01111111111110111110111111001111111101111111111111111111111111111100111111111111111111101111111111111111111111111110111111111111111111111111111111111111111111011111111111111111111101111111111111111101111111010111111110111111101
|
||||
01111111111111111111111101100111110111011111111011111111101111111100011111111101111101101111111110111111111110111110111010111111111011111111111111111011111111111111111111111111111111111111101111111111011111010001111111111110011
|
||||
01111101111110011111111101101111110110111111011010111101101111011100110111111011111100101010110111101111001011111011001011011101111111101100111101011001111111101111111110110111011111101011001110111100110100110011111111110100010
|
||||
01011110101011111101011111110101010111010110101101000111110101111111010111111101011110110101111111010011011100011111011101011101110101111111000110101100011111110001111111010111011001010111110101111111010111111101010101111110110
|
||||
01101101111111100011101100001111110100101111010011111100001111111100111111010011111111011111111000111111110011111011110011001111001101111111011111011110111101001111010100110000110010111111000101111100111111111011011111111110110
|
||||
00111111101101101110100110111111101110111101101111111001110111011111110110011001111111011110110101101110100110101111011101011110011110111111111101111111111101010111011011110001110011111001011110110111100010101111011011101101100
|
||||
01110110111110110011100010101111110101110010101010111011011101100101110010101011101011101011111111111101111110111010101111111111111111111111101111111110111111111011111101110100011101011111110101101101111011111111111010011111111
|
||||
01110011101011011111111111001110111101111111111111111100111101110101111111110101111100001111010011111011110111101101000011110111010111111111111011000011101001111110111101111111010111101101011110110101011111010011101011110100001
|
||||
00011111111101110111011111111111100111111001111111110111111110011110111001011111111110111111101111011101101111110101101111010110111111111111111101011111011111101111011111111111110111110101100101010110111001011010010111111110100
|
||||
00111111110111110111111101011101111101110111110111111111011011110101110111111111111111001111111101110111110101011111110110101011011100111000111111100111111111101011110101110111010101111111011111101001110111110111111111111100001
|
||||
00111111111111010110011101001111110111111011010110111101011111110100111011010110111001011111010101111111010111111111001111111011111111110111101111010011111101110111110101101010111111111101011010110111111111010110111111110111011
|
||||
01110111101111111011111111101010110110010111111010111111101100111110110111111101111111101010111110101111111001110101011111111011101001111101001111111111001111011110101110111111111010111111101110110111111011111001100111111011001
|
||||
00111110111001001101101000111111101111101110010111010010111111100011111010001110111000111111100101111101001111110111001111011100111101011111110100000011111000111111110000110111001111111100001101110011111111001011111111111111101
|
||||
01011110111111011011111100111111111111101111111111111111101101110110101111110110111101011111111111011111001110101101001111111001101111011111111111111010011101101111111011111110101111110111101111110011101101001111111111101111000
|
||||
01101111111101110111011011010111110101111110110111011111011111101101111110000110111111011110111100110110110110111010010010111111111111011101111110110111111111110001111100101111101111101111011101101111110011110111111111101110011
|
||||
01111111111101100010111110011111101100111101100100111010011011111001111111111111110010011011011001101111100100110111110111111111111011111001111111110111111111111111110100111111010111110101011111111101111111010101110011101101001
|
||||
01111111111111101111111110111111111101101111101101111110111110111011111011111111111110111111111011111111101101111111110111011111111111111101011111010111111111111111110111111011111111101101111111111011101111011111111111111111111
|
||||
01111110111111010101111111011111111110111111111011111111111111111111111111011110111101101111111111111111111111111111110101111111011111111001111111111101111111111111111111111111111101111110110011111011111111101110111111111110000
|
||||
01110001001111111001111111100111111110011111101001111111100111111110011111101001111110110111110110011111011011111111011011111111110111111111011111111111111111111111110111011111011101111110101111111010011111111011111111111110100
|
||||
01111111111010111110101011111100111110011010111001100111100000111111111111011001100111101110101110010011111001001110111111001111110110010111101001111001100111111110011110011111011011001111101100111111101001111001111111111110001
|
||||
01111011111010111110100111111110011111110011111111001111101111111111110011001111001111111110011111010011111011111111111111111111110100110111111010111101001100111011111110111010000111100111111100111111111111111101111111010111011
|
||||
01111011110011101011001110101111111111001001101001100110101100111010111001111101001110101000111010100011101011101011011111001111011110101111111111101110100111011100111111111001111011100111111110010111110011111111001111010111110
|
||||
01111111111011111011100111110111111101111111111101111111110110011111010011111111101111110110011110111001111011101110110111111111111110110101111001111111001101111110011111111011101101111111111110011111111001111111001111111110111
|
||||
00111111111101111111111011111111100110111110111111111011111110101111111010010111010011111110101111111010111111100011011010111111111011001111101110111111101011011010101110111000010011111111101110101111111110111011101001111100101
|
||||
01111111111111111101110011110111001110111101111101110111110110101111011010011101101011110110101111011010111101101011111111011011110111011111100100111101111101110101101111111010010011111111111110100111011100111111101011110111100
|
||||
01111111111111101110100010111010010111111010101111101110111111111011111111010111101010111110111011111010101111111111111111101111011111111111111111101111101111011111111111111111111011101111111110100111101001111111111111111010111
|
||||
01111111111111111111101111111111011100110011111111110111111110111111111011010111101111111110001111111011111111101111110001100111110000111111111011111111110101110011111110111010111111000111101111110111111101111011001111110110011
|
||||
00111111111111110111010111011100111110110111110111011011011101011101110101111111010011011101111101110101110111010111111011010011101101111111110101110111001111101101101111110011111011011111111100111111110111111111001111111000111
|
||||
01111111111111111111101011111110111111111010111111101111111110101111111000111111111111111110101111111000111111100011111001101111100110101111111110111111101111100110111111111011111001100011111110111111111000111111101111111111011
|
||||
00111101111110110111100011011001101100111100110111001011011011001101101111110111111011011111001101111111110111111011110011110011001111011101111010110111011111001111001100110110110011111011001101101101111110110011011110111101011
|
||||
01111111111100111111111011111101101111110110111111101011111111001111111110111111001111111110001111111110111111011111111111011111111111101111111110111111111011111101101111111101111111110011111101101111110110111111111011111111101
|
||||
01111111100111110111101111011111011111110111110111101111011101111101111011111111111111011101101101110111110111111110111111111111110110101111111101110111101011110101101111111111111111011011111111011111110110111111110010111111001
|
||||
01011101111111111111011111111111111100111111111111011111111111111111111011010111011111111111111111110111111111111111011001111111100011110111111011111111111111001011110110011011111001111111100111111101111111011001111011111110001
|
||||
01111111111111111100111111110110111101111111111101111111110010111111001111010000111111110111111111011111111100111111010101011111100110110111001111111101101111000011111101011111110001001111111111100110101111110101111110111111000
|
||||
01111111101111111111111111111110111111111111111111011111111111111111111111110111111111111101111111111111111111101111110101111011111110111111111111111111111011011100110111111111111011111111101101111101111111010111101110111101100
|
||||
01111111111111111111110011111111001111111100111111110011111111001111111100010111110011111111001111111100111111110010111111110011101110001111111100111111110011011111001100111000111110000111111111011101110001111011010111111110000
|
||||
01111111101111111011111111100111111100011111111001111111111111111110111111011010111111111111111110111111111011111111010111111101100111101111111111111111111111001111110110111010111111110111111111011110111101011000110111111110001
|
||||
01111101111111111010111111111011110111111111111110111111111011111110101111110011111111111011111111101111111110111111010111111111011111111111111111111111111111001111111111111111111111111011111111101111110110011111011010111010011
|
||||
01111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111011111110111111111111110110110111111111111110111111010111110110111111111110000111111111011110111001111111110110111110001
|
||||
01110111111111111111111111111111111110111111111111111111111111111111111111110011111111111111111111111111111111111110111110111111111111110111011111111111111111011111110100011111111111011111101100111110110011110011001111111110110
|
||||
01111111111110001011111100100111101110111111001011111100100011110010011110110001111100101111100010111111001010111111011101111110101101110111101111011010111101100101010010011111111001111100101111111111111111001001101111110101011
|
||||
01011110101001111101010111110100111111010011111101001111110101111111010001111101011111100101111111010110111101011111111101011111110101011111010111101101011111110101111111010011111101011111110101011111010111111001001111110111111
|
||||
01101111111111101111111110001111110100111110100011011110011111011001111111110111111110001111101010111111100111111111100101111111001111111011111111010011111000001110101000110111010011011010011101011100101111100111011111111110001
|
||||
00111111111110111010111010101111101011110111011011001011111111101110111111110101010110111101100110110101111111101111110011110101011111101111111101100011101110101101111000111111011111011111111101100111110110111110010110111100001
|
||||
01011011101110111011111111001011101011101110110111111010101010111011111110111110101110111000111111011011101110100110111111001111101110111111101011111111011111011111111111011111101110101010111111101101110111110111111110011011000
|
||||
01110011111010000111100100011110111100111011000111111100001111100001110011010111111000011111100001111101000011100100001111110100001110111100111111000111100111011110110001111010000011111100011110110101111001000111111111111101110
|
||||
00111111111111011111111101111111110111110101011110010101111110110111111101111011111101111101110111111111011111111101111111111101111111010111111111101111111111110101011111111111111111011011111111110101110111111111111111111110010
|
||||
00111111110111110111111111011111111001111111110111111111011111111101111111000111110111011111111101111111110110111111110111011111011011111101111111100111011101011111110111110111010011111101001111111111011101011111111111111100101
|
||||
00111111111111010011011101011011111111101111010110111101011011110101111111010001111101011111110101101101010111111100011011111011111111110111101111010110111101011011111110111111010111111011111111110111101111010011111111111111011
|
||||
01110111101101111001011111101011111111101111111010111111101010101110101111111111111111101100111110101111111001111111011010111111101111110110111010111111111111101111111111011111111010001111101111110111111101111101101111111111010
|
||||
00111110111010111011111100011101110101110010000111111001011111110001110100101110100100111111111011110001000111011101000111001000101101111111110110111111110110111101111110111011101101111110111010111010110110001011111001101110101
|
||||
01011110111111111110111110111111111111111111101111001111111111111011111111111010111101101111011011111101110111100001111011111101011110111111101110111111100111011110111111111100101111110011011011111101111011111011111111111010001
|
||||
01101111111010010111100001011100110101110110010111111101011100110101111110110111011101011011110101110111010110011110110111111011111001111110110001110111011111011011111111111111110111111111011101111111111111101111111111010110010
|
||||
00111111110111010011111101011011101101101111010100011101001001010101111111100111111101011011010101101111010111111111110110111111111111111111111111110010110101011111110101110111010110111111011111100101111111110111110111111111111
|
||||
01111111111111111101111111111111111011111011111111111111111111111111111111110111111111111111111111111111111111111111001101111111110001111111001111001111011101111111111111111111011111111101011111111111111111101111111111110111100
|
||||
01011111111010111110001111101110101110011010111011100111100110011111111010111111100111100110101110001001111111111110111001101001100110010111111010111110100111100110010111111111111111111111110110011111101111111111111111111110110
|
||||
00101011111010111111111111111010011111011001111111001111101100111111111001111110101011110110011110111010111110111111111011100111001100111111111010111111001111101100110001111111100111111101101110010011111111011111111111010110011
|
||||
01111011110011101011001110101110010111111001101011100110101000111010101111110111001110101000111010110011101011101010111010101001111000111111111010110111001111111110010101111001111011101011111010011101111001111010001111011110010
|
||||
00101111111011111011100111110110011101111111111101111111101110011110111001111111101111111110011110111001111101101111101111101111011100111111111011110111100111111100110101111111111111100101111110110111110011111111001111110011111
|
||||
00111111111000111111111011111111100110111110111111111011111110101111111010110111010011110110101111111010111110100011111001110011111101101101111100110111011011101110101111101110111100111011111001001101100110010101011011111101111
|
||||
00101111111110111101110011110111001110111101111101110111110110101111011010110101111011110110101111011010111101101011111111010011110110100101110100111111111111111110101110100100111001100001110110100111011110010101101011111011011
|
||||
00111111111101101110110110111100010111101011101111111110111110111011101010110111100110111100111011111011101101111111111111111111111011111111111010110110101111111110101110111010111001001111110110111101011000010111101111111111000
|
||||
01111111111111111111101111111110101110111101111111111111111110001111111011111111110111111110111111111000111110111110111111001111111100111111111010110111110111101110101111111011111111111101111010010111111011000111000111111110011
|
||||
00111111111111110111010111011100111110110111110111011011011101111101110101111111011011011101011101110111110011011111111111011011111111111111110111111111001111111100111110110101111010001111111101001111110001111110011011111100011
|
||||
01111111111011111111101011111110111111111010111111101111111110101111111000111111111111111110101111111000111001100011111111101111111110111111011110111101111111111110111110111010111011111111111111111111111111111111101111111010011
|
||||
01011100110110110110100011011100101100111100110111001011011111001101111010110111111011011111001101111110110001111011110111100011011101101101111110110111111011001101101100110110110010101011011111111101111110110011100010111100100
|
||||
01101110111100111111111011111111111111110110111111101011111111001111111110111111001111111110001111110011111111110110111111101011111101101111111000111111011011111101101111111100111111101011111111101111111100111111111011111111111
|
||||
01111101100111110111101111011111111111110111110111101111011101111101110111111111111011011101101101111110110111111110111111011111111111001111111101111111011011111101101111110111111111011111111111011111111101111111110010111110011
|
||||
01111111110011111111111111111101110100110011111111111111111111111111110110110111011111111111111111110111111000001111110101011111111111111111111111111111011111101101111110110011111011111111011111111111110111111101101011111110111
|
||||
01111101111111111100111111110111100111001111111101111111110110111111011111010001111111110110111111001011111101111111111001111101101111111101010011111101001111110011111110011110111101111101000111111111011011111101111110111110101
|
||||
01111101111111111111001111111111111111111111111111011111111111111111111111111111011111111101111111111111111010011110111111111111111110110111111011111111111011111111101111101111111111111011011100110101111111111011111110111101101
|
||||
01111111111111111111110011111111001111111100111111110011111111001111111100110111110011111111001111111100111110110011111011110011111101001111111100111111110011111111001111111100111111110001011100010101110110111111001011111111011
|
||||
01111111101111111011111111101111111100011111111011111111100111111110111111111111111111111111111110011111111111111111110010111111100101111111111111010111111111100111111100111111111111110111011111011110100111010111111111111110001
|
||||
01111101111111111111111111101111111111111111111011111111111111111110111111111111111111111111111111111111111111111110111111111101111111011101111111011111111111111111111110111101011111111101111011101111111110010111111010111010011
|
||||
00111111111110111011111111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111011111111111111111111111111111111111111111111111111111111111111110111011100010100111100010110000010111110111
|
||||
01110111111111111110111111101011111110111111111110111111111011111110101111111101111111111011111111101111111110111111111011111111101101111101011111110101111111100111111110010111111101011101111100110101111011010111011111111110000
|
||||
01111101111111010011111101001111100110111111010010111101000111110100110110011011111101001110110100101111010011111111001011111101101111111111111111011011111101001101111111111111011111111100101111101111111111111011111111110100010
|
||||
01111110101110111101011011110001101111010011111101011111110100101111010101101101001011110100111111010001111101000110101101001101110001011111000110011101000111110101101111010101101100011111110100011111010011111101001111111111000
|
||||
01111101111111100110101110001111110000111111100011101010101111111000110111011011111110011101001001111111100111011111110011011001111111111100111011010111011110001110111100010111110011011110001111111110111110011111011011111110111
|
||||
00111111110101110010111110111111110111110011101111101101101111110110110110011111110111011101111101101110111111111111011011011111111111101011101111110111111001111111011111101111011111110110011101110111110111111111111011110101100
|
||||
01011110111111111110111011011111111101111110101010101011110101111011110111111010111111111001101110110111110111011111101111011011111011111100111110111111111111010010100011111111110011011011111111111111011101111101111111011111110
|
||||
00111111110010000111111100011010110011101011000111111100011110110001011111111111111000011111110001111101000111110101110111111100101110100101110111001110101101001111010100111010010011111101001110101111101010110011101111111100011
|
||||
01111111101110011111110101111111111111111101011111110101111111100111111101111110111101111111010111011110011111111001101111111111111111110110011111111111110110101111111010111111101011000110011011111111111111111111111111110010001
|
||||
00111111110111110110101111011101011101110111110110111111001111111101110011110111110111001111111100101111110111011101110111111110011101011001111111100111111111111011111111111101110011111110011011111111110111000111010111111101000
|
||||
01111111111111011110111101111111111111111111011111011101111111110111111111111011111101111111110111111111011011111110011111111101101110110110111111011011111111111101111111101111001111111111111111111111111111011011111111110010000
|
||||
01010111111110110000111011001011111110101111110010111111001011001100100111111010111111001110111100110111110011111111011010111111010101110111111111011111111111111011111111111111110111101111110011011111111111110111101101111110010
|
||||
01111111100101011111110100111111000011111011001111101000111111110011101111000111111101001101110011111000101111101111101111011011101111100011110110001110110100111001101011111110001111111100111111110001111110111100111111101111011
|
||||
01101110111111011111111101101100110110110111010111111100111111110011111101111011110111111111111110101111110111010101111001111111111111110101101111010111001001101111111011111011111011111101100101111110111111111110110111111110101
|
||||
00111111110111110101010111011111111111111111110011011011011100111101011011111111101111011101111001111111110010111111111111010111011011111101110110010111111111111100110101100111100011001011111111101100111110110111001111101010001
|
||||
01111111111110000010011100011011111101001111000110111100011111110001111100111110011100011011100001111101000111110111110110111110011111111011011111010111111101011111111101011111000111011111111111111101110111100011110111111100010
|
||||
01111111111111111111111111111111111101011111111101111111110011111111111111111101111111111111111111111111111111111111101111111111010110111111111111111111111111111111111101111111111110111111111111110101111011110111111011111111001
|
||||
01011111111010111001101011111100111111111111111011100111100110011110011010111011101011100010101110001111111001100110111110101001100110101111011010111101100111110110011111111001111001111111111110011110010011111001111111111000101
|
||||
00101011111010111011101011111000111011111111111111001111101111111111111001001110100111110010011110111001111111001111111111100101110110011111011001111101111111101110101111111111111111111111111110100001111111111101111111010110000
|
||||
01111011110011101010001110101110011101111001101010100110101100111010011001010111001110111100111010100011101100100111111111101001111000111111111001111010111111101110011111111001111101001111111011111101010011111111111111011111111
|
||||
01101111111011111011100111101100111111111111111011111111101110011111011001010111101111111110011110111001111111001110111111101101111100111111111011111111101110111100111111110011111111101111111111110101110011111111111111110111000
|
||||
00111111111100111111111011111111101101100110111111111011111110101111111010011111110111111110101111111010111111101011111110110001111110101111101101111100100001000011111110101111111111110011111011101101110110111011111110111110101
|
||||
01101101111101111101110011110111001110101111111101110111110110101111011010011101011011110110101111011010111101101011111101010001110111110111011111111101101001001011111111111111111101110111110111000101011110111011111111110111010
|
||||
00111111111111101111100110111010011100111011101111111110111110111011111011011111111110111110111011111011101111101110111101101101111110111111111111111110101001001011111111001111111011111101100110011101111000111011101111111100001
|
||||
01111111111111111111110111111111011111111101111111001111111111011111111001011111101111111110011111111101111111100111111111000101111111010111000011011100101101011010111110101010110111111111111110010101111011111011100011110110100
|
||||
00111111110011110111011111011100111110110111110111011011011101111101110101111111010011011101011101110111110111010111111111011111111111111110110111111010110111101101001110101111111111111111111100011111111101111111011111111011111
|
||||
01111111111011111111101011111110111110011000111111101111111110101111111000111111101111111110101111111000111111100011111111111011110111111110011010111001101111100110011110111001111001101111101111111110111001111011100011111010100
|
||||
00101101111100110111100011011101111100111110110111001011011111001101111110110111110011011111001101111110110111111111110111111011011111101100110111110011110011001111111100101111110010001011001111111100111111110011111110111101111
|
||||
01101111111100111111111011111111101111110110111111111011111111001111110110111111001111111110001111110011111111101010111111100011111111011111111011111110011011111111101111111111111111111011111111111111111110111111111111110110101
|
||||
01111111100111110111101011011101101111010110110111101111011101101101111101111111111111011101111101111110110111101011111111110111110111111111011111111101011111110110101111111111111101011111111111111111111101111111111010111110111
|
||||
01111101110111111111011111111110101110110111111111011111111101111111110111010111011111111111111111110111111111111110111111011101011111111100001111011000111111001011110100011011111110111101111111110101011111111101111111111010000
|
||||
01111111111111111101111111110011111110001111111101111111110011111111011111011001111111110111111111011011111101111111111011111001001110111110001011111001111111100111110100011111111101111111010111100101111111111011111110110110001
|
||||
00111111101111111111111111111111111111110111111111111111111111111111110111010111011111111111111111111111111111111111111111111101011111111101111110011111111111111111111101111111110111111011111111110101011111111111111110111100111
|
||||
01111111111111111111110011111111001111111100111111110011111111001111111100011111110011111111001111111100111111110010111111110001011111001110111000111011110011111111001100111100110111000111111110010101111001111011000111111110101
|
||||
01111111100111111011111111101111111111111111111011111111101111111110011111010011111111100111111110111111111001111111111001111111100111111100011110011011111111111111110100111111111011110111100111010100111101111001110111111111110
|
||||
01111101110111111111111111111111111111101111111111111111111111111111111111011011111111111111111111111111111111111110111111111111111111111111111111111011111111111111110101111111111011111011110111100100111010111111101010011110111
|
||||
01111101111111111011111111101111111111111111111011111111101111111111111111110110111111111111111110111111111111111111111111111111111111111101011011011101111111110111111100111111111101000111111110010111111101011111010111111110000
|
||||
01111111111111111110111111111011111101111111111110111111111011111111101111111011111111111011111111101111111110111111111111111111111111111111111111111111111111111111111101011111111111001111111100110100110011110011101111110111111
|
||||
00111111111111001011111000101101110010111111001011111100101101100010111111001011110100101111110010111111001010111111011011011100101111110111111110011111111111111111111111111111001011111100101111111110111111011011111110111100011
|
||||
01111111101011111101000111110101010111010010111101000111110100111110010101101101010111110001101111010101111101001010111101010101110101011111010111011101010111110001101111010110111100011111110001011111010111011100010111111111011
|
||||
01111111110111100011111110001111111101111111100011111110001011101001110110110001101110001011111000111111100011111111000011011011101111111000111111110011101111011011111100110111100111111010101110010111110010010010101110101110100
|
||||
00111111101110010111111001101001111111111111011111111001001110111110110111101111111110011111110101111110101111111111011100011110101111100110110011101111011111110111011011111111111101111001111111111111110111111111111111111101000
|
||||
01001111111111111111111011011011111010101111110100111111111111101011111111110001111111111010111111111111101100111010101111111111101110111101111111110101110010111110111011111111101110111011111011101111111111010111111101111111101
|
||||
00111111111010000111101100011111010000111001000011101000011010110001111011111110111100001111100001101101000110111110110011110101011111100101111111010011111100011011111111001011110101101100011111111100111101110111111111001110100
|
||||
01111111111100011111110101111110111111111101011111111101111111100111111111111111110101111110110111111111011111110101111111101111101110111101111111011011110111111111011111111101011111110110111111110111011111101111111011111100011
|
||||
00011111111111110111111111011100110001110101100011111110011101011100111111100111111111101011111001111011100111111101000111111100011101110101111111111111011001111011111101111111110101111110011101111001110001100111011111111101111
|
||||
01111111111111000110111100001111110111110111111111111101011111110111111111111001111111111111110110111111011011111000010011001111101111110011111110011011111111111111101110111111111011111101011111100100111111011111111111111100010
|
||||
01111110111110111111111111111111011101111111111110011111111111110110111111111111111111111110101101110111110110011111111111111011111110100111111111011111101111111000111110001011111011111011111010111111111010110110110111111110001
|
||||
01111111111011001111111100111111110101110111000111111100111110111011111011001011101110101111111011111000101111101101001111011100011101110011011111001111011100010111110101011111101110101100011111111011110111001111111101111101001
|
||||
01011011101111011011100100111111011111111101111011111100111011111101110100111001111111101111111110101111111011111111011011111111011011110110100101010110110111011111111111111111110111111111101101111110111111011001110011111110111
|
||||
00110111110111110111010111011010111111100111010111101011011101111111101111000010011011011011111101111111110011111111110111111101001100111101101011111111001101001110110101111010110111111111101110011100101111110111001111001000110
|
||||
01111011101111000010011100011011111101111111110110110111000101001101111111110111111110011111101101111101110110101111110010111101000111111101110111010111111001001111100101101101110111011111111101111101111111110101011111111011101
|
||||
01110111111111111101111111111111111011111111101101011100111111111011111111101111111111011111110011111111001111111111001111111111111111110101111111111111111111111111111111111111001111111111111111110011111111111010111111111111111
|
||||
01011011111111011001100111100110011111100011111101111111111000111111111010111001100111100110011111111010011011001110111101111111110110011011111010011100100111100110101111110011011111001111110111111111011111011101111111111011000
|
||||
00101111111111010110100100011000111111101001111011111100111111111111111001111011111111111011111011111001111111001111111011100111110100111111111001000011100111101010011111111111000111001101101110011111111010110101111111010110111
|
||||
01111111110011010101001101010110011111111001111111101011011110101111111111110111001111010111111111101111010111100111111011111111111110011111101001111011111110101110101010111001010111111111101010011110011001011111101011011110011
|
||||
00101101111011010111100111011110011101110011111111101101111110111111111001110111001111111110011111111001011111001110111011101111111111111111111111111111101111111110011111011001010111111101101111111111110011110111100111110111001
|
||||
00111111111101110011111001001111100110111110111110110011011011001111101110110111011011111101101101111111011111111011111110100001011011110101111110010100110011110101101111100110010110111101011001101101001111011110101011111101000
|
||||
01101111111111111111110011111111001110111101111101010001110111001111010100111101111011010110101111011010110101100011111101011001010111110101011000010101100011110101101111011010010101101001010111111101011111110101111011110110100
|
||||
00111111111111111111100101111110010111111011111111001111011110011111001010110111100011011010111101101011010111101011111110101101010100110111111111111101101010111110101011111111010101101101011110101111011011011111100111111101000
|
||||
00111111111111111011100111001111011100111101111100101001110000011111101010111111101011011100011101111101010111001111111100110101011000110111111010111110101111111100111111001111110110000101010010111111101000110100100111111111000
|
||||
01111111111111111111010111111101111110110111111011011111101101101110110111111111111111111111111111110011111111011111111010111111101101101111111111111010000111001111111100110110111010111111101001001110100110111010110111111100001
|
||||
00111111111111111111100011111110001111111010111001111011100110111110011010111111101111111110111111111111111111101011111001101111100110111111011011111001111111100110111110111001111001100111100111111110011011111001100111111110111
|
||||
00011101111010110011111011001111101100111100110011111011001111001100010010110111110011011100101101111010110111011111110010110011000111011101111100110001111111000111001100111110110001111011001111101100001000110011111110111000111
|
||||
01101111111110111111011011111110001111111100111111110011111111001111111111111111100011111111101111111111111111111011111110011011111111101111111001111110101111111111001111111100111110110011111010001111101110111110111011110111101
|
||||
01111101101010111111011011111111001111111010111101110111110111011111111111111111110111111101111111111110111111101011111101101111111110101111011111111111111111011110111101111101111111110111110101101111111100111101011111111111001
|
||||
01111111111111111001111101000111111100110111110000011101000001110100000011010111111111011110111101111110110111011111111010101111000011110101111111111000111111100011111110011111110000111111100010110100101011111000011110111111110
|
||||
01111101111011110100111101011011111101101111011000111101000111110100011111011001101011001111110100011111110001111111111001111011000010110101011110111000111111110111111111011111010000111011101111110100111111111010111111111110000
|
||||
01111101111111010101111101111101111111111110110101011011111111101110111111110111111111011111111111111111010111111111111111111111001111110101110111010111111111111111111111111011110111101111110111110101111110111101011111011110111
|
||||
00111111110111110111010011101111001111111100011111110011101111001111111100111111110001111111001101111100010111110011111111010011011111000101111100010011110111101111001110111100011011000011111100000101110000111111000011111111110
|
||||
01111111100111110111111111011111111101111111110110111101001011110101101111111010111111101111111110101111110110111111111001111111000011111110011111111011111111101111111110111111111011111011101111100100111110011111111011111111111
|
||||
01111101110111110111110101011111110111111111011111111101011111110101111111111111111111111111111111111111110111111111111111010111011111111111111111111111111011111111111110111111110111100011111101000110111000110111010010111110000
|
||||
00111101111111111110011111111111111111111111110111111111101111111111111111111011111111101111111110111111110111111110111101111111011111110111111111010001111111100111111111011111111011010101101110010101110101011111100110111111011
|
||||
01110111111110111111111111111111111111111111011111111111111111111111111111111011111111101111111110111111011011111111111111011111011111110111101111010111101111111111111111111111111101101111111101110111111011111111011111100110111
|
||||
01101111111110001011111100100111110111111111011101111111111111110110111111011110111101111111110111101111011011111111011111111101100101110110011111111101111110101111111010101111111111111101111111110100101111111010111111111111100
|
||||
01111110101011111101011111110100101011010011101101001111110100111011010001011101010101110100100111010101011100011110011000000111110101111101010111111101001111100001111111010111111101011110110000010111010110111101011111111111001
|
||||
01111111110111101111111110101111111111101111110000111011110111110110011111110011111111001101111101111111010101111111111011111100101111111100111011110111110011001110111110111111110010111111011101111111111011010111111111111111011
|
||||
00111111111110111011110001111111111110111110011111101111100111101011110111011011111010011101011111011110110111101011011110111110101101101011101110111111011110111001101011110110101111111011111111111111001111111111101111101100101
|
||||
01011111111110111011101011101111111111111110110111111011110110111111101110110011111111111111101101101110111111111111111111111111111111111100011110101111111110111111111111101111101111101110100011111110111110101010111111011010101
|
||||
01111111111001000110011100011011100111101111011011101111111011111110111111010011111101011110110100111111110110110111010110111011001010010101111111111011111101101111010110111010010110111101111111010001111111111011001111111100110
|
||||
01111111111111111111110111111111111101111111110111111111111111101111111110110111111011011111011101111001101101001101110111110111111101111111011111111111111011101111111101111011101011111111101111101011111101111111111111111111010
|
||||
01101111110111010110001101011101011111111111110111011111001111011101111100010111111101011101110100111111110111101101010111011101001111111111110111111111011111111101111111111111110111011111001110111001111011111011110111110100111
|
||||
01011111111111000111111100001111110101101011000011111100011011110000111011011011111100001111110001111010000101111101111011111111111110111110111111010011111101101111111110111101001110111100111111110111111011011100101111111111110
|
||||
01110111111101111100111111111111111111111111111110111111111101111111111111011010011111110000111111101111111111011101111011101111101111111111101111111101011101111011111111110111110110111101111110111101110101110111011111101110100
|
||||
01110100101101011110010110111001011110111111101111011101101111111011000010101101101010111011100111110111101111110101001011011100101100110011110101111101111100011101101111111110000101111100111101101111111010010110101001111110001
|
||||
01111111111101011111110110111111011111110101101111110101111101111011101111111011111110111111110111111101101111110101011011111100111111000101111001111111110011101110111111111011101111110100111111111111110111111111111101110111000
|
||||
01111111111101110111011111011111111101101111110111001111001110111101110110111111111111011111101101110111110111111110110110011111011101111101010101111110101111111110101101011110111111011101011101111101111111110111111011111110111
|
||||
00111111110111100001111110010111111100111111100110111110011111101001111111110111111110010111011001101111100110111111110101111111011111111111101111111011111101001111110000001111111111101111111011111001001111111111111111111111011
|
||||
01111111101111101111111110110111110101111011101101111110111111111011111111101111111110111111111011111111101111111111001111011101011111110111111111111111111111111111111111111111111111111111111111111101111111011111111111111110100
|
||||
01011111111010111111101011100110011111111001111111100111100100111111110011111101100111101110101110001001111110101011111110100101111010011111111001111111101001111100111111110011101111001111110000111111010011111101111111111000001
|
||||
00101011111010111111101011110100111111110011111110001111110100111111100011111111100111111110011111010011111111100110001111001101111110100011110011011111101001111111111111110011111111001100101111111111111111111110111111010111100
|
||||
01111011110011101011001110101110100111111001101011100110101100111010111111010101001110101100111010100011101011100111111111111101011111111101111010111011111101101111111100111111111011100111001100111110011010111001111111011111011
|
||||
01101111111011111011100111101110111101111111111101111111110110011110111111010111101111101110011110111001111101001111010111101101011111110111111001101101111101110100111011111111111011001101101111111111111111011111111111110110100
|
||||
00111111111101111111111011111111000110111110111111111011111110101111111010111111110111111110101111111010111111101011110111110111011101101101101110010110111001111001101111011110110110111001011001101111001111111100111111111110011
|
||||
01101111111110111101110011110111001110111101111101110111110110101111011010111101111111110110101111011010111101101010011101011001111111110111011100110010010001110111101111011100111101100001110110101111011111111101101011110110111
|
||||
00111111111101101110100110111110010111111011101111101110111110101011111010010111111110111110111011111011101111101011111110101001011111111101111001111111101001111010001111111101110111111101011110101101111011110111101111111100001
|
||||
01101111111111111111110111111111011110111101111111110111111110111111111010010111111111111111011111111101111111101110010111101001011110110111011101111111101101110010111110111010111100101101010010111101001000010100110111110110010
|
||||
00101111111111110111011111011100111110110111110111111111011101011101110111111111011011011101111101110111110111010111111111011111111101001110110111111111000111101000011110110111111010010011101001001110100110111010001111110111000
|
||||
01111111111111111111101011111110111111111010111111100111111110101111111000111101101111111110101111111000111111100010111101101011110110111110011110111001100111100110011110011010111001101111100110011110011011111001101111111110100
|
||||
00111101111110110111100011011101111100111100110111101011011111001101111110110110110011011111001101111111110110111111110111011011011110001100111010110101101011001011101101010110110010110111001111101100111101110011011110111101011
|
||||
01101111111100111111111011111110101111110010111111111011111110001111111001111111001111111111001111111110111111101011111111011011111111111111111110111111111111111001101111110110111110111011111001111111101110111110111111110111000
|
||||
01111101100110110111101011011111001111110110110111101011011101111101111111111101111011011101111101110110110111101111111101101011111111111111011010111111111111110101111111111101111101101111110111111111010110111101111110111111011
|
||||
01111111110111111111011111111111110100111111111111011111111101111111111011010110011111111111111111110111111111011110110111101101011111100100011110110101101111100011101111111111111000111111100011111110001111110000111011111010111
|
||||
01111101111111111100111111110011110111111011111101111111110011111111011111010001111111110111111111011111111100111110111000111101010000110100001011011000111111101010111100011111111001111111100111101110011111111011111110111110111
|
||||
00111101111111111111011111111111111111111111111111111111111111111111110110010111111111111111111111111111111111011111110111111101011111111111111111110101011111111111111111111111111011111111010111111110111111111011111110111111001
|
||||
01111111111111111111110011111111001111111100111111110011111111001111111100010111110011111111001111111100111111110011111111110001011111001110111100011111110011101111001111111100111111000111011100011111110001111111000111111111011
|
||||
01111111101111111011111111101111111100111111111011111111101111111110111111010000111111101111111110111111111011111111110001111111011111110100111111111111111111101111111111111111110011110111101111011110111101111011110111111111100
|
||||
01011101111111111011111111101111111111111111111011111111101111111110111111010111111111101111111110111111111011111110110111111101111011110101011111111110111111101111111111111111110111011011111101100111110110111111011010111110100
|
||||
00111111111110111111111111111111111110111111111111111111111111111111111111010111111111111111111111111111111111111111111110111111011111111110111111111111111111111111111111011111110011100111001110011110111001111011100111111111111
|
||||
01111111111111111110111111111011111110111111111110111111111011111111101111010111111111111011111111101111111110111111111111111101011111111111111111111111111111111111111111111111111101011111110101110111010111111111011111111111111
|
||||
01101101111110010011101101001111010110111111010011111101001111110100011100011011011101001111110100110110010011110111011111111101101111110111111110111001111101101111110100011111011011111101100111111110101110011111010110110101101
|
||||
01101111101011111101001111110101101011000111111101010111110101011111000111111101011111110101111111010111111101001010101101011111110101110111010001111101011111010100101111010111110101011101110100111111010111111101001011111111001
|
||||
01111101111111101011110110001110110110101110100011001110011110111000111111000011011110111101101010111101101011111111111101111100010111101100101111011011110111001111111011111110110011111101001111110100111010101011111110111110100
|
||||
00111101101110011110111011111111010110111111101111011111101101111001111110011111011011111110011011110110011111111011111111101111101111111011111110011101111010011111011111111011101111011101111101011011111011011101111111110100110
|
||||
01011010111100111010111101011010111111111110101100111110111100111111001010101110101011111010101111101011111101011100111111101111001101101101101111111011001011101011101110101111101110111111011111101011111110111010111101101010100
|
||||
01111011111001000101001100000111100111111111000111111100011011010001111111110011111100001111110000111111000011111101011101110101111111110101111010011111111111101110110100111011010111111000110010111101111111010011111111001111100
|
||||
00111011111111011111110101111111011101111111011110111001111111010111111111111111110101111111010111110111011101010011110111101111011100111101111110110111100111111111011010011101111111111011111111010111111101111011110111111100100
|
||||
00111011101111110111011111011111111101110111110111010111011101111100101111011011111111011101111101111101110111111111110111010111011111110101111111100110011111011111101101110111110111011111101111111100101111010111111111111101000
|
||||
00110111111111000011111100011111111111101111000011111100011111110001111111010111111100001111110001101111000111111110111111111100111111110111101111111110111100111111110100111111000011111111111111110001111011000111111111111100111
|
||||
01111111110111111110111111111111111110101101111100111111111011101111101011111111111111111110111111011111111110111111111010101101111111101100111111111111101111011011111110111011111110110011111101101111010111111100101111111110100
|
||||
00101101111001011111001100111100110011111111000111111100011110110011111111001110011111111101110011110111111011111101111101011110111111010011111111011011011100111111110001101110000011110110110011110011101011001110011011110000110
|
||||
01111111100101011111110101011011010011011101110111111111011111110110111011001111100111111011110011111101111111111101111110111011011100110110100101011111110100111010111101101111110101101110111011110110110101001111111111110111000
|
||||
00111111110101010111111101011011111111111011010111001101001111110101110110111010111101011000110101111011010111001010110101000101011011111101111011110110001101011111101100110010110111011111011110111101111111110111001011011100011
|
||||
01111111101111010111111101001011111110100111010010110101010011010100111101111111111101001111110101111111010011011111110111111011011101111101100111110111111111011101110100010011000111111011111111110001111101000111111111111110011
|
||||
01111111111111111101111011111111111111111111111111111111111111111111011111111111111111111111111111111111111111111111001111111111011111110101111111001101111111011111110111111111111111111101111110111111111111111111111011111110110
|
||||
01011111111010111001101011111010101110111001111001101011100100111110010011111101100111111010101110111111111011001111011001111111111111111111011010011101100111111111111111111111111001100111100100111110011010111001111111111011000
|
||||
00101011111010111101101011111110011111100011111101100111101100111111010011111111111111111110011111101010111111101010011111101001111110011111110011001111001111111110101111110011111110100111110100111111011010111111111111100100000
|
||||
01111011110011101011001110101110101111111001101011100110101100111010111010111101001110101000111010110011101011101010010001111101011110011111011001010100111111111011110111111001111101001111111111111111110011111100111111011110110
|
||||
01101111111011111011100111101110111011111111111111111111110110011110111001111111101111101110011110111001111011101111000111100101011100111111110011010111101111111100111111111111111111001111111110011111111001111111111111110100101
|
||||
00111111111000111111111011111111001110111111111101111011111110101111111010010110110111111110101111111010111111100011010001111111011011110101111111010110100011111101101111101110111011111011011111111110111110111011101011111100011
|
||||
01101111110110111101110011110111001111011111111101110111110110101111011010010101111111110110101111011010111101101011011111011001011011100100011010010101011011110110101111011100111111010011110111111111110100111111101011110100010
|
||||
00111111111111101111100010111010011111111011101111101110111110101011111010010111101110111010111011111010101111001111010110101101011010010100111011010111101101111111111111111101111111101101011110101111111010111111101011111101110
|
||||
01101111111111111111101111111100011110111001111111110111111110111111111010010100100011111111011111111011111111111110011111110101011111010101111000010100110101111110101110011011111011000101111110111110111010111011101011111100010
|
||||
00011111111111110111010111011100111111110100110111111111011101011101110111111011001111011101111101110101110111011111111111001111101101101111110111111011111111111111111110110001111111011111111111011111110111111111001111111110110
|
||||
01111111111111111111101011111110111111011011111111100111111110101111111000111001100111111110101111111000111111100011111101100111110111111110011110111111101111111110111110111111111111111011111111111111111110111111101111111111001
|
||||
00111101111110110111100011011101111100010110110111101011011111001101111111110010111011011111001101111111110111111011110111111011011010101100001111110111110011011101101101101110110011111011011110101100111110110011011110110100001
|
||||
01101111111100111111111011111110101111110010111111101011111110001111111011111111001111111110001111111010111111100110111111110111111111101111111110111111011011111101101111111100111111110111111111101111110110111111101011110111000
|
||||
01111111100110110111101011011110111111110110110111101111011101101101111111111101111011011101101101111100110111111111111111111111111101101111111011111111101011111101111111110111111111111111111101111111110110111111011111111110000
|
||||
01111101111111111111111111111100110100110111111111011111111110111111111111111010101111111111111111111111111111111110010111101101100101100111101111110001101111011110111111011011111001111111011101110110011111111001111110111110010
|
||||
01111111111111111100111111110011110101011111111101111111110011111111001011111001111111110111111111001011111100111011010001011011100000111100011011111101111111100111111110001111111100101111100010101101011111111101111011111111111
|
||||
00111111111111111111001111111111111101110111111111111111111110111111111111111111011111111111111111111111111111001111111111111111111111111111111111111011111111011101101110111111111101111111011111111111011111111111101111111100110
|
||||
01111111111111111111110011111111000111111100111111110011111111001111111100111111110011111111001111111100111111110010111111110011101111001101111100111111110011111111001111111100111111010011111111001111111100111011110011111111110
|
||||
01111111101111111001111111100111111111111111111011111111100111111110111111111000111111101111111110111111111011111111011111111111111111111111111111111111111111011111111110111111111011111011011011100111111110111110111011111111011
|
||||
01111111111111111111111111111111111111101111111011111111111111111111111111111111111111111111111111111111111111111110011111111111111111111111111111111111111111111111111101011111111011110011011111001111111100111111110010111111100
|
||||
01111111111110111111111111111111110111111111111111111111111111111110111111011111111111101111111110111111111011111111110101111111110111111111011111111101111111011011111110111111111111010111111111011111111101111111110111111110001
|
||||
01110111111111111110111111101011111101111111111110111111111011111110101111111111111111111011111111101111111110111111110111111111111111111101111111111111111111111111111110111111111001111111101110111110010111111111001111111111110
|
||||
01111111111110010011111101000111110111011110010011011101000110100100111111011011111101001111110100101111010011111111011111111100101101111100111111111111111101111111110100110010010011111101000111110100111110010011111110101100111
|
||||
01011110101111111101011111110101110111010011111101011111110101111111010111111101011111110101011111010101111101010110011100010101110101011110010010111100000101110001111111010111111101000110110100101111010010111101011111111111101
|
||||
01111100110111100010111010011110101110110110100111011110001111111000111110000011011110001111011000111111100011111111110101111111001011111101110111111111111111101111111000111011100011111111101111111001111111101111011010111110001
|
||||
00111111101011111111101111001001110110111111111111001101101111111000111011011011101110011101101001111110100111111111110001111101111111111111110101111111111001111011111011110011011110111101111111111101111110111111111111101100000
|
||||
01111011111010001111111111111111101111111110101110101011001110111110001110110111101011111111101110101010111111101001111111011110111101111101101111111110111111111111111101111111101011111111101011111110111110111110101101110110000
|
||||
01001111111111000111001100011111110111101111000011111100011011100001111111110111111100001111110001101111000111111111010111110101011111010010111001010011100111011010110101101111010110101001111110100101100011010111111011111101111
|
||||
01111111111101011111111001111111101110111101011111110101111101110111011111101111111101111011010111111111011111110101010111111111100111111111111110010111111101111111011010111111101011111111101111101010111101101010011011111110010
|
||||
01111111111111110111111111011100111101110111110010111111011111111101111111100011111111001010111101110111110111111111110111111100011110111001111111100111011110001011111111111001100111011111011101111100111111100011111111111100001
|
||||
01111111111111000110111100011111110111111111000111111100011011110000111111010111111100011101110000111111000110111110011011101101011011110110111111011011101101011110110111111010010011111101111101111111111111011111111111111110011
|
||||
01110111101001111101111111111111110110101111111100111111111111111111111111111101111111111100111111001111111111011111011011110111110111110111111011110110111111111111101101111111111111111101101111111110111111110110111111101110111
|
||||
01000110111111111111011110101101010011111111000111111100101111110011111010001011010000101111100001111010101110111101001111011000011111110101111111101111101001110110110011110111101111111100111111010011100111001111011111111110001
|
||||
01011110111101111111110111101011110110110101101111101101101100110011111111001101111100111011111101111111110110111101111011111110110011101111101100110111111101111111110011111101111010110101100110110110110001001111111111111111001
|
||||
01110111111001010111011101011111101101111011010110011001011011110101100110110111111101011110110101111111010011111111000111011011111110111111111011111111011111101111011111110111110011011101011111111111111111110111001111000101101
|
||||
00100111111001010011111101011111111101100111010101111101010111110101111111111001111101001111110101111101010001111111111110111111011001111111110111111011011101011101111101111111110111111111011001111111111101100010111011101111111
|
||||
01111111101111111101111111111111110011111111111101111111111111111111101111011111111111111101111111011011111111111111111111111010111111111111111111111111111111110111111101111111001111101111011111111111111111110101111111111110001
|
||||
00011111110011111001101011111000111110111001111001101011100110011111101111111101100111111010101110010011111101111111011000111101100110011110111111111000100101111010101110011111011001100101100110010111110011011000111111111010101
|
||||
01101011111111111101101011111111111111110011111101101011110100111111111010100101100111111110011110101111111011001110101111001100111111111111111010111100001101111110100111111111011011001101110100110011110011001011111111010101110
|
||||
01111011110011101010001110101110101111101001101011100110101100111010111111111011001110101000111010110011101011101011010100101001010110011111101111111111001111111100111111001111010111101001011110010101111010010111101011011110000
|
||||
01101111111011111101100111101110011101111111111111111111110110011111011001101111101111101110011110111001111101100111111111111101011110010111111001111111111111111100110111111001010111101101011100110111111011011111100111110110011
|
||||
01111111111101111111111011111111100110111110111101111011111110101111111010110000110111111110101111111010111110101010011111101001001111111111111111111111111101011111101111111111011111110101111111110101111101010111011011111101101
|
||||
01101111111111111101110011110111001110111101111101110111110110101111011010110101111111110110101111011010111101101011011101111001110111101110011111111111111111111101001111011010011101111101110111110111011111011101101011110111100
|
||||
00111111111111101111100110111010010111110011101111101110111110111011111010111111111110111110111011111111101100101010011111100001011110001110101111111111111111111110110111101111010111101101011110110101110011010111101110111100001
|
||||
01101111111111111111100011111110001100111111111111110111111110001111110011111000101111111111011111111011111110101111011111101001001110100111111111111111101111111111010111111111010111110101011111010111111010011111110111110010101
|
||||
01101111111111110111011111011100111110110111110111111111011101111101110111111111000111011101111101110101110011010111111111011111111101101111110111111011110111111100111111110110111111011011111101101111110111111111011111111101010
|
||||
01101111111111111111101011111110111111111010111111100111111110101111111000111111111111111110101111111000111001100010111111101011110110011111111110111111101111110111111111111011111111101111111110111111111110111111111011111111000
|
||||
00111101111110110111100011011001101100111100110111101011011111001101111111110011111111011111001101111111110001111111110111011111010010101101111110110111011011011110101101111000110111100011011111011101111010110111111111110101100
|
||||
01101101111100111111111011111101101111110010111111101011111110001111111011111111101111111111001111111010111111101011111111101011111010111111110110111111011111111111111111111110111111111011111111101111111111111111111111110111110
|
||||
01111111100110110111101011011110111111110110110111101111011101101101111111111111111011011101101101110110110111011110111111011111111111111111111011111111111011111111101111111101111111110011111101101111111111111111111011111111010
|
||||
01011111111111111111011111111111111100110111111111111111111101111111110111110001011111111110111111110111111000111111110111101111011111110101011111110001111101111111111101111111010111111111011111110101110111010111111111111110100
|
||||
01111101111111111101111111110011111101011111111101111111110011111111001111110101111111110111111111011011111100111011011001111111110111100101111011111001101111110101110100011111010010101101000011110100011011010001111110111111001
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111110111011111111111111111111111111100101111110111101111111110110101111111111101101111111111111111111111010111111111011111110101111111110111111011111110111
|
||||
01111101111111111111110011111111001111111100111111110011111111001111111100110011110011111111001111111100111110110010011111110011111111000100111100111111110011011100000111111100010111000101011100010101110001011111000111111101110
|
||||
01111111101111111001111111100111111101101111111011111111100111111110011111110111111111101111111110011111111111111111111011111111111111110100111111111011111101111111101111111111110111000111001100011100000001010110000110111111111
|
||||
01011101111111111110111111111011110111111111111010111111111011111111101111110111111111101011111111101111111110111111010011111111111111110100111111111011111111011110011111111111011111111001001111100111111110010111111010111110100
|
||||
01111111110111111111111111111111111111111111111111111111111111111111111111010101111111111111111111111111111111111110111111111111111011111101111111111111111111111101111111111111110111110111011011011101111101110111110110111110000
|
||||
01101101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110010001111111111111110100111111111001111111111010111111011111011111011101001101110110110111011011011111111111100
|
||||
01101111111110001011111100101101110110111111001001111100100101100010111111001011111100101101010010111111001011111111011111111101000111100110011111011011011101101111110010110111011111111101101111110100111111010011111011111100110
|
||||
01001111101011111101010111110101110111010111111100000111110101011111010101101101011111110101111111010011111101001111011101011110110101101111010111111101011110110101101011010101011101011011110101101011010011101100001101111011001
|
||||
01111101110111100011111110001111110101101011100111011110011111111000111111110011111010001111111001111110101001111111110011111111001011110000111000000011011001011101111100111111110111111100001011111101110110110010111011111111110
|
||||
00110110101110111110111001101000111100111110110111111011001101101011111110010111111101111011011101111011011111111111011111101101011111010101111111111111011111111111010111111110111111011111111111011100111011100111111111111100011
|
||||
01110001111110010111111110111011111111111111111111111111111111111100111000111111101010101111101110101111111010111111101011111111111111101111110111001110111110111011111010111011101110111000111011101111110110111111111110010111000
|
||||
01111111111011000111111000011111110011101101000011111000011001100001101111011110111100011011110001101101000011110111010110110111111101110111111010111011100101011111111100111101110011101101001111110101111011010011101111111110110
|
||||
01111111100101011111011001111111101111111111011111011101111110110111111001110111110101111111010111111101011111011000010111101111111111111101111111111111111101011111101011110111011111111111101110111001111111110111110011111111010
|
||||
01111111111111111111101110011111111101111111110011110110001111011100111111111111011110011101111101100111110101111111110011111011011111011111111111110111110111111011111101011111110011111100001010111001110111000011111111111011001
|
||||
01011111111111011101111101011111111111101111001111111101111111111111111011010011011101001111110001101111111110111101000111011100011011111111111111111111111111111111110011111111001111111101111111110101111101011110111011111010110
|
||||
01010111101011110110111111110110011110101111110100111111011111111110111111111110111111111110111111011111111011111111111110111111111111111111101011111011111111110111110111111010011100111111011100111111111111110111011111111110101
|
||||
01111111111111101110100100101101111011111101111111110101111111110000111010000111001100111011110011101001001111111100001111110100111101010001010111001111011101011111010010011111101111010001111011111011111001001111111111111111000
|
||||
01111110111101111011110100111011011110111101111111111101111111111101101111111011110100111011010011100101011010111101001111101101101010111110011101001101110111111111110011111111101111101101111011001110111111011011110111101111111
|
||||
01100111110111111111111111011111111110111101110111111001011110111101110110110011111111111101111101101111110111011011110011011011011001111110110011010011001111011111110101110111010111110111011011111101111110110111111111101111100
|
||||
00010111110101110111111111001111111111100111101010011111011101111100110101110111111101001101110001111111110111111111000110111111011111101101111111110111111111111101101110111111111100111110011111011101101101110110100111101101001
|
||||
01111111101110110111111100110111111111111111111111111111011111110101111111010111111111111111111111111111010111111111111111111000111011111011111011110111111101110111111111011111111111111111011111110101011111001101111111110110001
|
||||
01011111110011011001100111111010011111111001111111111111110111111111011111111100100101100111111110011001011100101011111111111111111110100111111001111111100111101111111110001001111001100111100110101111110011111001111111111011101
|
||||
00101011111010111111001111111100110001110011110111111111011110011110111001000011001100010010101110100011000100101010101111001100111110100111110011011111001111111110010111111001101111100111110110100111110011111111111111010110000
|
||||
01111011111111111101101011011110011111111111111111101011110111111111111001111011100101011100111111111001010111100110010111100101111110100101111010111111001111111000111101011010010101100111111110011111101010111101101011011111011
|
||||
01101111111001111111101101111110010111111011111111101110011110011101111001001111001101011110011111111001011111001111011111001101111110111111111001111111100111111100110101111001011111111111111110011111111011110111101111110110110
|
||||
00111101111111111011110011111011111111110100111010010001101001101111111111111000011001011101101110111010010011101011010110011001011010001111110110010110101011101110101111110110111111111111101110101101111101110111010011111100010
|
||||
01101111111110111011100011111011100111111111111111111001011010101110111010011111101001010111101111111010010111111011010110101001011011101111111110110110111111111110101111011010111101111111111110100101011010111101111111110111001
|
||||
00111111111101111110101111011110011101111011111110110101111110111111101111110111001101011010011111111011010111100110010111001101011010001111111001111111101111111111111111111111111110101011111010101111110011110110111111111101000
|
||||
01101111111111111011110101111111010101111101111001001101001011011111111011010000101101011111011110111101011011100011010111111101011110101111111101111111110111101111111111111011111111101111101110101111111011110111111111110111111
|
||||
00011111110111111011011111111111111111110011111111011011111111111110111101111111000111111101111111110011111111011111111111001111111100111111110111111111111111111100111111111101111111010011111100111111110001111111001111111001000
|
||||
01111111111010111101111011111110111111011001111111111111110111111111011011111101111111111110101111111011111101101011111111101111111111111111011010111111100111111110111111111111111111100111111110111111111111111111111111111110010
|
||||
00111111110110110001111011011101111101111010110011111111000111101100010010110011111011011101101100110111110111011010110111001011011111111101110111110111111011001101101101101111110111111011001101111101111110110110111110110101011
|
||||
01101111110110111111110011111110101111111010111111101011111111001111111111111111110011111101101111111010111111001011111111111111111110101111111111111111011011111111001111111110111111110011111110111111110110111111111111110110011
|
||||
01111111101010111111110011111110101111110110111111110111111111001111111111111111110011111101111111111010111111101110111111111111111110111111111110111111011011111111011111111011111111011111111111111111111011111111111010111110010
|
||||
01111111111011110011111101111110110101110111111001011101001111111110001111010000111011011111111110010111010100101111010111111101011110111111111111111111011101101111100111111111011111011011100111111101111011110111111111111110100
|
||||
01111101111111011100111111010010110101010111111101101101010011111110001011010100001111100011111111001111010000011111010101111101010111111111010011111101111111010111110110001111011000101111110110100110011110110000111110111110101
|
||||
01111111111111110111101101111111111111110111111101111111111100111111111111111111111111111111111111111111010101011111010111011111011111111111110011111111011111011111111111111111111111111111111110111101111111110111111110111110001
|
||||
01111111111111011111110011011111001111111100111111110011111111001110111100111011110011111111001110111100010111110011110111110011011111000101111100010111110011111111001111111100111111110011101111001111111100011111110011111111010
|
||||
01111101100111110111111101011111110111111111111111111111011111111111111111110111111111100111111111111111110111111110110111111101011111111111111111111111111101101011111111101111111010111111101111111110011111111001111111111111011
|
||||
01111101111111111110111101011011110111111111111111111101011111111111111111110111111111111111111111111111110101111111010111111101011111111111111111111111111111101111110111111111011111111111101111111111111111111111111110111111110
|
||||
01111101111111110111111111011111110111111111111111111101111111111101111111011111111111111111111111111111110111111110110101111111010111111101011111110101111111111111111111111111111011111111111011111101111111111111111111111100001
|
||||
01111111111111011111111101111111110111101111011110111111111011111111101111011110111111100111111111011111110111111111110111111101111111110111111111011111111111001111110111111111011011111111101111111110011111111001111111111111101
|
||||
01111111111110111101111100101111111110011111110011011111101111101110111111111011111101101111110010011111001011111111111001111101101111100110011111111111111101101111110010011110001011111101101111100010110101010011111010111110110
|
||||
01111110101101111101011110110101111111010011111001010111110100111111010011111101011111110100010111010111011101010110111101011111110101011111010111111100011111110101101111010001111101010110110101101110010001011001011101101110010
|
||||
01111011101111110011111111001111100101111110110011111101101111100110011110011011111100111111101100111110110111111111010001111000000110110001010110110001101100001111111000111111101001111101011100011000111111110011111010111111010
|
||||
00111111111101101110110110111111111100111101011111011101101111011011111101101111111011111111110111101111110111110111010010111110011111111111101110010111111110101101011000110111101111111011011111010111110111100110111111111101010
|
||||
01111001111111110011111010101111111111011111101111101111111111111110111110111011110111101100101010111010111111001001111010111111101101111011111111111111011111010111111111111110111011111011111110111011001111111011111001010110001
|
||||
00111101101111010110111101011011101101101101011110111001111010100100110011001111111101011111110001101111001111111111110111110100011011100100111101010100111011011010010001100011000110111111101111101101111001010111111111110110001
|
||||
01111111111011011011101111011110110111111111110111111011101111100110110111111111011111011111011011111011111111111100111111011010111111011110111110010111110111111111111111111111111111101111111101110111101110100111111111111110001
|
||||
00111111111111100011111100011101111101111111111011111110011111011101111111110111101101001110111111110111100011111111011011111111001110110000101011110111101100010111110001111111000111011110011111111101110111100111101111111110101
|
||||
01111111111111011011111101010111110111111111111011111111111111111110111111111110111111111111110101101011010111111100011111111111111110110111101111111111111101011111110110111111011011111101111010110111111111011110111011111110100
|
||||
01101101111011011111011111111111111100111111111101111111111111111110101111111011101111101001111111011111111110100111011110010111101101110111100111111011111111111010100111111011011111111101111101110110111011110111111111101110101
|
||||
01101100111111001111110100101111011011110001001111101100101111110011111011001111011000111111010000111110010101011001101111111100111111100011111111001110101110111111110011111110101001010100101111110011100111001111011101110110010
|
||||
01011101101101001111011100111101011110101101001111111101101100010110011111001111111100111111001101111111111110111111110111111101101101110110110101011011011111101101110110110111111011111101101011110011111111111011100101111110111
|
||||
01111111111111110111111111000011111101111111110110111001011011111101111100111111111101011111110101101111110101011110111011101111110111111101111011111111111111001110111101111110110111011011011101111110100011100111111111101110000
|
||||
01111111110111110110110111110111111111111111111011010111001101111101111111111000111111100011010101111101110001111111010111110111111011011011101111111111111111011111111011110111101111111110111111101101111111100111111111101101110
|
||||
01111111111111010101111101111111110111111111011101111110111111110011111111111111111111111111111111110111001111111110111111111111111111111111111011111111111100110111111111011110111111111111111111111011111111110111101111111110110
|
||||
01011111110011111111001101100110011110011001111111101001111010101111111010111111100111110111111111111111111101100110111101001111100110011110011111111110100111100110011110011010111000111111111111111110111111111000111111111000000
|
||||
00101011111111111111111101110110101111110011111111101011011110011111101001111111101011110110101011110011111101101011001111100111111000111111011111111110001111110110010111011001011111111100111100111011111001011110111111010110101
|
||||
01111011111001110111100101101110011110011010110111101011011110101111110011111111111111101111111110110011111111101011011001100111110111111111101001111111001111111100111111111001111101100101111011110111110011110101111111011110001
|
||||
01101111111001110111001100101100111010111001111111101101111110111111111111111111001111111100111111011111110111101111110111001111111110111111110011111111100111111110010111111111010111111101011100110111111001011111111111110110101
|
||||
00111111110110110010101001111111110101111111110010110101011001001111111110111111111011000011101110101010111110010011110100011011111111011111111010111110111111101110100100111010111011111011101110101110111111110011101011111111001
|
||||
01101111111010111111011001100111110100011111110110111001011011111111010100111101100011110110001111011110111101101010011110101011110111111111010110111101111111111110100111111010011111010011111110101101111110010111101011110110101
|
||||
00111111111111111111101101111110110101111011111111100001011110111111111010111110001111111111111111111001111111101111011111111111111110111111111011111101111111111110111111111111110111101001111010101111110001010111101111111101101
|
||||
01101111111111110001110101101111010100111101110011101001011011011111111011110111101011100010111110001000110100110111110110101111111111010111111101111110101011101110010110111111011011101011101110101100111010010011110111110011001
|
||||
00101111111111111111011011111101101111110110111111011011111101111111110101111111011111111001011111100111111011011011111110010011111101101111110110111111001111111100011111110011111111011111111100111111110110111111001100111110001
|
||||
01111111111111111101100111110110111111011011111101100111111111101111111110111111101011100110101110111000111001101111111111101111110110111111111011111111111111111110111111111011111111111011111110111111111001111111101110111110101
|
||||
00111101111111110111101011010101111101010110110101111011011111101101111110110111001011000101101100101110110011110011110111110111011111001101111101110111111011001101101100100110110011111011001100101100111110110011011010111100001
|
||||
01101111111011111111101011111111101111111101111111100011111111011111110111111111111011111001101111110111111111100011111110101011111101101111111110111111011011111101101111111100111111100011111110101111110110111111100011110110001
|
||||
01111101101110111111011011111101101111111110111111110111111111111111111111111111110011111111011111111110111101110010111111101011110110101111111010111111011011111101101111110111111111011111111111011111110110111111011011111110000
|
||||
01111111111111111111011111011101101101111111011111111101011001111101110110111111111111010010111101011111111001101111011110111111111101101101110111111111011111100111111100011110110011111111101111110100111111011011011110111011110
|
||||
01111101111011010101001111110010111110001011010100111111010011101110001011110000101111110111111110001011111000111111110101111111100011111110111111111000101111010011111111001111111100101101010110111111001111110100111111111110011
|
||||
00111101111111110111011111111111111111111111010111101101011111111101111111111111111111111001101110101111111111001111011110011011111101111101111111010111111101110111111111111111111111111101111111111101111011111111111111111111111
|
||||
01111111111111110111110011111111001111111100010111110011011111001111111100111111110011101011001111111100111011110010110110110011111011001111111100010111110001011111000110111100011111110011111111000111111100111111110011111110101
|
||||
01111111101111110111111111111111111111111111110111111101111111111101111111111001111111111111111111111111110011111111011111111101001111111111111111111111111101011111111110011111011111111111011111110111111111111011111111111110100
|
||||
01111111111111110111111111111111111111111111111111111111111111111111111111111111111111111011111111101111011010111111110110111101011011111111111111111110111111011111111101111111111111111111111111111111111111010011111111111110010
|
||||
01111111111111110101111111110111111111011111111101111101111111111101111111111111111111111111111111111111110111111110011111111101001111111111111111010111111101011111111111111111110110111111111111111111111111110111111111111100010
|
||||
01111111111110110111111111111111111111111111111111111111111011111111011111111001111111111111111110111111011111111111110111111101011111111111111111010111111101010111111100011111111111111111000111111110011111011001111111111110110
|
||||
01101111111110010011101101001111110110111101011101111100101111110110111111011011111001100111110110111101011011111111001011111111110111111110111101111111111100101111110110111101001011111000101111111100110110011011111111111110110
|
||||
01001110101111101001010101110101011011010111101101011101110100010111010110101101001110110101111011010111111101011010101101011111110101011110010001111101001111100101110110010111111101011011100101011111010101011101011111111111111
|
||||
01111100110011110011111111000111100100111010110001100111011111100111111111010011111001101110110100111110000111111111110011111011001111110110111111110101111010001111110100111110100011100110001111111100111111010011111000111110101
|
||||
00110111101111010011111001101111010101111101011111111011101111111111111101100110110101101101110111010111111111011111101110011110111101100111100110110001101101101111101011111011111111110111101111101111110110111011101111101101110
|
||||
01111011111011111011101011001111111111101111110010100110100111111110101111111111111111101111101011111011101110111101101011101010111111101111111110111011111111001110111100101101010011100101011110010101111011010011101010110011000
|
||||
01101101101111000110111111111011110101111111110011111101111010110011111111111110111011101111110101100110110101110111110110111111011001111101111011010110101100011011110011011111000011111100011111110101101101001011111111111100010
|
||||
01111101111111101111110111111111101110111110111111111111101111101111110111111111111011111101010101111111111111111001101110110101111111010111111111010111011011111111101111111111111111111111111111110110111110111101101111111110010
|
||||
01111111111101110011111111111001110111111111011111111110011011011001111111111111111111111110111111111101011111101001110111111110011110111101111111100111111101001011011101111101010111010101011101111101111111110011110111111100010
|
||||
01111101111010011011111101011111110111111110111111111101011111110111101111111111111111111101110110101111111101101101001101111001111111110001111111011111110100011011110001111111000111101100001111110000101111000110011111111110100
|
||||
01111111111111011010011111111101111101010111111111111111111011111101110111111111001111111010011101011111111111111111011110101101111101111111111111011111111111111111111111111111111111111111111110111111101111111111111111111111011
|
||||
01111110100111101111100100111111110011111101001111111100111101101011111111001101111100111001100011101010101111111101101111110110101100010011101011101111011101111111010011111111001011110000111101110011110111001011111111111111111
|
||||
01011110111101111011110101101001010011000001010110010100111011111101101110011010011100111110010011111111110101111111111011010110110111010110110111111011110001111110010011111111110111101100111111110011111001001111100111101110011
|
||||
01111101111111111111111101011011111111101111110110111111011110110101111010110111101111011101111111101111110010011111010011111111011111111101101111110010011111011011111101111010100100011011011101101101111111110100111111111101100
|
||||
00111110111011110110110111011111011101111111101111111111011111111101110111111111111011111111111101111111100111111011111110110110011111110001110111101111101100010101110000110111000011010100011111110001111111000111110111111011011
|
||||
01111100101111101111111111011111111101110111111111111100110101111101010111011111111101111110111101111111110101011110111111111111010111111111111111111111111111110111111111110111111101111111111110111111101111111111101011111111111
|
||||
01011111111001111111100101111110011111111001111111100111111100111110011010111011101011111011111111011010111111001110011101101011110110011111101001111001101011111010010111101010111110101011111010101111101001111110111111111011110
|
||||
01101011110011111111001100111100110011110011111110001100111110011111101001111111101000111110100011111111111111111111101011100100111100111111101010111111100111011100111111111010100111101011111110101111110011111111111111010111111
|
||||
01111011111001111011100101011110010111111001111111100111011110011111011010111111101011011100111101011001110111111111010011111111010111111111111111111101001111111100111111111001011111100111111110011111110011111111101011011110110
|
||||
01101111110011111111100101011110111101110011111111001101111100111111111111011111101101111100110111111001111111111111111111100101111100111111111001111111100111111110010111111111111111111111111100111111111001111111111111110111001
|
||||
00111111111010111101111111111101001111110110111111111111011110101111111110111111110011011001101101101110111111101010010100011011011001100100111110111111111111101110101100111010111011111011101110101110111110111011101011111111010
|
||||
01101111111111111101111111111111101111111010111101111101110110101111010100111101010001111011110111101100111101111011111110101001111010101111110100111101111001011110101111111010110111010011111110101111110100111111101011110111110
|
||||
00111111111111111111111111111110011111111011111111101011011010111111111010111111001101011011110101101001111110110111010111101101011110111111101010111111000111011010110101101010110110101011111010101111101011111111001111111101010
|
||||
01101111111111111111111111111111011111111101111111101101111111011111111011111111001111111010101111101101111111101111111110100111111011011110111111011111001101101111010110111010110011101011101110101110111101111011111111110110001
|
||||
00011111111111111110111111111101101111111111111111110111111100111111110101111111011111111001101111100110111111010011111110010011111001101111110111111111011011111100111111110011111111011111111100111111110111111111001111111001000
|
||||
01111111111111111111101111110110011111011011111101101111110110111111011110111111111011111111111111111011111111101111111111101111111110111111111110111111100111111110111111111011111111111011111110111111111110111111101111111100011
|
||||
00111101111111110111011111011111111101110010110110011111011110001101101111110111111011011111101101111101110111001011110111100011011110001100111010110110111011001101101100110110110011111011001001111100101110110011011110111001101
|
||||
01101101111110111111101011111110101111111011111111101011111111101111111010111111100011111011001111101010111111111111111110101011111010101111111110111111011011111100101111111000111111100011111110101111110010111111111110110110111
|
||||
01111111101010111111110011111110101111111110111101101011110111001111010111111111110111111101101111111010111111111111111111011011111111001111110110111111011111111101101111110111111111011111111110111111110110111111111011111110011
|
||||
01111111111111111111011111111100111111110111111111111101011101110101110111111111111111111011110111101111110111111111111110111111111000110100111111111111011111001111111100111111111011101111101111110110111011011011111111111110011
|
||||
01111101111111111100111111110101111111010011111100101101000011110100001110111000101101010011110101001111110100101111111100111101010011111101101111111000111101010011111111001010111100111111110010110101001111110100111110111111100
|
||||
01111111111111010111011111011101110111110111111111001111111101100101110111110111001111011010110111101111111110111111111111011111111101111101111111010111111111111101111111110111111111011111111111110101110110111111011111111110011
|
||||
01111101100111010111110001011111000111111100011111110011111111000101111100111111010001111011000101101100111111110011111111110001011111000111111100011111100111111111000111111100111111110011111111001111111100111111110010111111111
|
||||
01111111111111111111111111111111111111111111111001111101001111111100111111111111011111111111111101111111111111111111010111111111011111111110011111011001101111011111111111111111111011111111101111110111111111011001111111111111100
|
||||
01011101111111111111111111111111111111111111111111111101011111110100111111111111110101011111111111111111111111111110010111111011011111111111111111111111111001011111111111111111010011111111111111111111111111111111111110111111101
|
||||
01111111111111010111111111011111110111111111110111111111101111111101101111111111111111010111111101011111111101111111010101111011010111111101111111111110111111011011111101111111111111111111101111110111111111110111111111111110111
|
||||
01101111101111010110111111011011110111101111111110111111111011110101111111111101111101111111111111111111111011111111010111101111011111110100111111111011101111011111111111011111110001111111100111111101011111010001111111100111010
|
||||
01101101111110011111111111101110110110111111011010010101101111110110111111011111111100101111110110111111010011101111011011111101101111010100011111011011111101001111100100111111010011111101001111100100111111010011111110111110010
|
||||
01101111101100111101011111110001110111000111111101011010110101110111010111011101001110110101011111010001011001010111111101000101110100101111010111011101001111110101101111010111111101011111110101111111010111111101011111110111000
|
||||
01111101110011100011001101000111100111111110000011111101011111100111010111111011011011101101110001010111110101011110000101011101001101111000110111010011011010001100011000110110100011011110001101101000110111100011011110111111011
|
||||
00110111101011101011110110101100111110111101011111010111101111011111111110101011101110111111111101101110111111111111111111111110111111011110111101101111110111111011011111111101111011110111101111011110111101111011111011111100110
|
||||
01110110111110110111101110111110111111111011101110101110111100011110101111111011111111111011111111011101101111111101110001111110101011100100110111110010111101001010010100101010010011001001001010110100111011010011110000111111101
|
||||
01111111110100010110101111111010110011101011111111100111111111011100111011010111101111111111011101101011010011101101110110001100011110110101111001001111110101011110110100111011010111111101011110100101111001010111101111111101101
|
||||
01001111101111111011111111111111011111111111111111111011111111101111101110110111111011110111101111111110110111111001111111111110111111011010111111111111111010100111011010111101101011111110101111111010111110101011111111110110001
|
||||
01101111110111011010110111001011111001110111111011011111011101110110111101011111011011111011100111110111000111111101011110111111101111101111100111110111111111111101111111110111110111011111010111011111111111111101011011111000111
|
||||
01001111111011111101111110111111010111111111111111111101101111111111111111111011111101111011111110111010010111001100111111110111111111111111111111111011011111101111111110111110000011111100111111111110111111111111111111111110110
|
||||
01010111111101111111101111111100110111111111111110011101101110111111110011111110011001111111111111111111111111111011111111011111111010111111101111111010101011111011111111101111111110111011011010111111101111111110110111111110101
|
||||
01000111111110111111111111101111111111110111111111011111110000111111100011111111111111111111101111110011111111101101111111111111111101111110111001111111011111101111011111110011111111011111111111101111111111111111111111110110001
|
||||
01011111101110111111110111111111011111100101111111100111111111011111101110111111011111111101111111101110111111111111111111110111111111011111101111111111111111111010011111101110111111001111111101101111111001111110010111111111010
|
||||
01110111110111110110101011111010100101001010111111111011111111101111101111111111101111011100000101001111110110011111110110100011111100101111110110111111101111111101101101111111111011011111111110111111110110111111111011101000000
|
||||
00001111111101010111110111111111011101111101111111011111111111011111110111110111110000011011111111110111111111111011100111111111101111111111111111111111111111101101010101111101111111111011111011111110100101010111100111111111010
|
||||
01110111101111011111011111111111111011111111111111101111111111101111111111110111111111111011111111111111011111111111110101111111111111111111111111111101111111111101110111111111111111011111111011111111011110111111111111111111010
|
||||
01110111111111000010111111001011111100101111110011111111001111110000111111110011111111001111111100111101110010111011111011111111001111111100101111110011011111001101111100111110110010111111001111111100101111110011111111111100000
|
||||
01111111111111101011111111001111111110111101110011111111100101111010111111110011110011001111001100101111110011111111111111111011001011111110111111110011011011001101011100111101110011111111001111111100111101111011110111111011101
|
||||
01111111101111110111111101011111110001101110110111111101011011111101011100110101111111011011111101111110110110011111110101111111011011111101111111110111011111011110111101101111110111111111011111111101111101110111111111110111110
|
||||
01110111011111111111111111101111111111111111110111111111111101111111111111111110111111011111111101111110111111111111111110111111101111111111111111111011101011101110111110111111110111111111101111101111010101111111111111110111000
|
||||
01111111111111110101101101011111110111011110110101101101010111111101111001111001011011011111111111101011111001111011110101101111010010111101111110110101101011011110111101111111110111111011011111111100111110110101111111111111011
|
||||
01111111110111001101101010111111111001001111001100101110111111110011011001000100111100111111110001001111000101101111001100111100111110110011101110001101101000111110110011111011001111111100111010110011111001001111101111111111011
|
||||
01110111100011011111111101111011110111101111011111111101111011110111111111011111101001111101010111110111011111111111011011111101110111010111111111011111011101111111110111110111011111111101111101110111111111011111111111111111011
|
||||
01111111111111100101111110010111111001111111100101111110010111111001011111101111111110010111111001111111101111111111101111111110010111111001011111100101111110010111111001011111100101111110010111111001011111100101111111111111000
|
||||
01111111111011101111011110111111111011011111101111110110110111111011110111101111111110111111111011111111101111111111101101111110111101111011111111101111111110111100111011111111101110011110111111011011110011101111111111111110111
|
||||
01111111111111111111111111111101101111010111111111111011111101101111111110110011001111111100111111100111110001001111111011011111111111011111010011111111111111110111111111110111111111011011111101101111010111111111011011111110000
|
||||
01111111011011101111111010111110111011111111111101111110111111111111111111101111101111110011101011011111101011111111101111111110101111111011111101101000111110111011101010011111101011110110101101111011111111101001011111111111011
|
||||
01111111111111110111111111010111111111111111000111111111011011111011101111110111111111011111111101111111110111111101110111111011011111111101111111110101111011011111111101111110110111111111011111111101111110110111111111111110001
|
||||
01111111111111111011111111001011111110110110111011111011001111100110111110110011011111101111111110110110111011011010111011011111100111111100110111111011111111001111111100110111111011011111101101111110110111111011001111111110100
|
||||
01111011111110111111101011111110111111111010111111101111111110110111111011111111101001111111111111111011111111100101111111101111111110111111111011111111101011111110111111111001111111101111111110111111111011111111101111111110111
|
||||
01111111111111111111110111101110011110111111111111110111101110011110111101111011111111111111011110111111111111110101111111111111111111011110111100111111110111101111011110111101111111111011111111111111111101111111110111111111101
|
||||
01111111111011111111111111111111111111111111101111111011111111011111111111111111111111111111111001111111111111111101111111111111111111111111111101111111110111111111111111111101111111111111111111111111111111111111110111101110011
|
||||
01111111011111111111110111111111111111111011101111111111111111111011111111111111101111111111111101111001111111101111111111101111111111111111111001111111111111111111111111111011111111101111111110111111111011111111101111111110010
|
||||
01111111011101111111111110111011111111111111111111011110111011111111110111101111111111111111111111111111111111110111111111111111111101111011111111111111111110111101011011110111111111111111111111111111110101111111111111111111100
|
||||
01111011111111111111110111111111011111111111011111110111111111110111111101111111111111111101011111111110111111111101111111111111111111011111111110111111111111111111111111111111111111111111111111111111111111110111111101111110011
|
||||
01111111111111111111110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111110
|
||||
01111011111111110111101111111111111011111111110111101111111111111011111011111111111111011111111111111111110111111111110111111111011110111111111111110111101111111110111111111111110111111111011111111101111111111111111111111110000
|
||||
01111111111111111111100011111110111111111011001111101111111110110011111011111111101111111110111111111000111111101111111111101111111110111111111000111111101111111110111111111011111111101111111110111111111011001111101111111111011
|
||||
01111111111111100111111011011111111001111111000111111111011111110001111111100111111110011111111001111110100111111101100111111111011111111101111110110111111111011111111001111111110111111111011111111101111111101111111111111111100
|
||||
01111111111111111111111011111111101111101111111111111111111111101111111111111110111111111011101111101111111110111101111110111111111111111111111110111111111111111111111111111111111111111011111111101111111111111111111111111110010
|
||||
01111111111111111111110101111111011111111101111101111101111111011111011111011101110111110111011111011101011111110111011101110101110111110111111101011111110101111111111111111111011111110101111111010111111111111111111111111100110
|
||||
01111111111101110111111110111010110101111010011111111010111010110111111110110111101001011110110101111110110101101011110111101010111011101011101111111101101110111111100101011110101110101111110110111011111110110111111010101111000
|
||||
01111111111111111
|
||||
798
vxloader/firmware/x1_2_v22.rbt
Normal file
798
vxloader/firmware/x1_2_v22.rbt
Normal file
|
|
@ -0,0 +1,798 @@
|
|||
Xilinx ASCII Bitstream
|
||||
Created by Bitstream D.26
|
||||
Design name: vx80ie2.ncd
|
||||
Architecture: spartanxl
|
||||
Part: s20xltq144
|
||||
Date: Mon Sep 23 16:34:42 2002
|
||||
Bits: 179160
|
||||
1111111100100000001010111011110100011111
|
||||
01011011111111110111111011111111111011111011101111111010111111101101111011111111111110111111101101111011111111101111111111101111011110111011111110110111101111111110111011111110101111111001111111101111111110101111111111111110001
|
||||
01111111111111111111111111111111010111111111011111111101111111111111111111110111110101111111111111111111011101111111111111111111111111110111111111111111111101111111010111111111011111111111011111110111111101011111110111111111001
|
||||
01111111111111111110111111111111111111111111111111111111111111111111111111111111111011111111111111111111101111111111111111111111111111111111111111111111111111110111111111111111111111111111111111111111111111111111111111111110100
|
||||
01111111111111110111111100011111101101111111110111111111011111111101111111000111101011011111111101111011110111111111000111111110111111111101111111110111111111011111111101111111110111111110111111110001111110110111111011111110010
|
||||
01111111111111101111101100111110001111111001111111101111111110111011111001101111100111111110111011111011111111100111001111100100111110011111111011101111100111111111001111111011111111101100111110110011111000111111100011111110001
|
||||
01111111111111111111111111111111011111111111111111111111111111111111111111111111110111111111111111111111111111111111011111111111011111111111111111111111111111111111111111111111111111111101011111110111111101111111110111111111110
|
||||
01011111111111111111111101111111011111111111111111111111111111111111111111011111110111111111111111111111111111111111011111111111111111111111111111111111111111111111111111111111111111111101111111110111111110111111111111111110100
|
||||
01111111111111111111111101111111111111111111111111111111111111111111111111011111111111111111111111111111111111111101011111111111011111111111111111111111111111111101111111111111111111111101011111111111111111111111111011111110011
|
||||
01111111111111111111111111111111111111111111111111011111111101101111111111111111111111111101111111111111111111111101111111111111111111111111110111111111111111111111111111110111111111011111111101111111111111111111111111111111111
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111111111111111111110100
|
||||
01011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111111111111111110011111111111111111111111101111111111111111111111111111111111111111111111111111111111111100
|
||||
01111111111111111111111011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111111110111111111111111111111111111111111111111111111111111111111111111111111111111111111111110010
|
||||
01111111111111111111111111111111111111111111111111111111111111011111111111111110111111111111111111111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110010
|
||||
01111111111111111011111111101111111110111111111011111111101111011110111111111011111111101111111110111111111011111111111011111111101111111110111111111011111111101111111110111111111011111111101111111110111111111011111111111111010
|
||||
01111111111111111011111111101111111110111111111011111111101111111110111111111011111111101111111110111111111011111110111011111111101111111110111111111011111111101111111110111111111011111111101111111110111111111011101111111111111
|
||||
01111111111111001111111100111111110011111111001111111100111111110011111111001111111100111110110011111111001111111110001111111100111110110011111111001111111100111111110011111111001111111100111111110011111111001111111111111111011
|
||||
01111110111111111011111111101111111110111101111011111111101111111110111111111011111111101111111110111111111011111101111011111111101111111110111111111011111111101111111110111111111011111111101111111100111111111011111111111110100
|
||||
01111100111111001111111100111111110011111111001111111100111111110011111111001111111100111111110011111111001111111111001111111100111111110011111111001110111100111111110011111111001111111100111111110010111111001111111101101110011
|
||||
01111111111111110111111111011111111101111111110111111111011111111101111111110111111111011111111101111111110111111111110111111111011111111101111111110111111111011111111101111111110111111111011111111111011111110111111111111110010
|
||||
01111111111111011111111101111111110111111101011111111101111111110111111111011111111101111110110111111111011111111101011111111101111110110111111111011111111101111111110111111111011111111101111111110111111111011111111111111111010
|
||||
01101110111111011011101101101111110110111111011011111101101111110110111111011011111101101111110110111111011011111101011011111101101111110110111111011011111101101111110110111111011011111101101111110110111111011011111111111111111
|
||||
01110111111111111111111111111111111111111111111111111111111111111111111111111110111111111101111111111111111111111111111111111111111001111111111111111111111111111111111111111111111111111111111111111101111111111111111111101111110
|
||||
01111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111111111111111111111111111111111111111111111111111111111101111111111111111111111111111111111111111110111
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111111111111111101111111111111111111111111111111111111111111110111111111111111111111111000
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111110111111111111111111111111111111111110111111111111111011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||
01111111111111111011111111101111111110111111111011111111101111111110111111111011111111101111111110011111111011111111111011111111101111111110111111111011111111101111111110111111111011111111101111111110111111111011111111111111011
|
||||
01111111111111111111111111111111110010111111111111111111111111111010111111111111111111111111110111111111111001111111011011111101101011111111111111010011111101101111111111111111111111111111111111111111111111111111111111111110011
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111111111111110111111111111111111111111111111111111111111101111111111111111111111111111111111111111111111111111111111111111110000
|
||||
01111111111111111111111111111111111011111111111111111111111111111111111111111111111111111111111011111111011110111111001111111100111111111111111101101111111101111111111111111111111111111111111111111111111111111111111111111111111
|
||||
01111111111111111110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111111111110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110100
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111111111111111111111111111111111110000
|
||||
01111111111111110111111111111111111111111111111111111111111111110101111111111111111111111111110101101111111111111110111111111100111111111111111111110111111111111111111111110111111111111111111111111111111111111111111111111111111
|
||||
01111111111111101111111111111111111111111111111111111111111111111001111111111111111111111111100110111111111111111111111111111111111111111111111111101111111111111111111111011111111111111111111111111111111111111111111111111110111
|
||||
01111111111111111111111111111111111111111111111111111111111111111111011111111111111011111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111010111001011010111111110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101
|
||||
01111111111111111111111111111111111111111111111111111111111111111111110111111111111111111111110110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110101
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111111111111111111111111111111111111111010
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111111010111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110110
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111110111111111011111111111111111111111111111111111111111111011111111111111111111111111111011111111111111111111111111111111111111111111111111111111111000
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111111111111111111111111111111111111011
|
||||
00011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011001
|
||||
01101011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111100111010
|
||||
01111011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011110001
|
||||
01101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110101101
|
||||
01111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101110110111111111111111111111111111111111111111111111111111111111111101111111111111111111111111111111111111111111111111100100
|
||||
01101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111011110110110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110101011
|
||||
00111100111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101110111111111111111111111111111111111111111111111111111111111111111001111111111111111111111111111111111111111111111111101001
|
||||
01111110111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101101
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110110111111011011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111001111111101111111111111111111111111111011111111111111111111111111111111111111111111111111111111111111111111111111111111110100
|
||||
00111111111111110111111111011111111101111111110111111111011111111101111111110111111111011111111101101110110111110111110111111111011111111101111111110111111111011111111101111111110111111111011111111101111111110111111011111100001
|
||||
01101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111100111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110011110111000
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111111111111111111111111011111111111111111111111111111111111111111111111111111111111111111111111011111111111101
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110011
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110100111111111101111111111111111111111111111111011111111111111111111111111111011111111111111111111111111111111111111111111111111110101
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110000
|
||||
01111111111111111111110011111111001111111100111111110011111111001111111100111111110011111111001111111100111111110011111111110011111111001111111100111111110011111111001111111100111111110011111111001111111100111111110011111110101
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111111111111111111111111110111111111111111111111111111110111111111111111111111111111111111111111111111111111110100
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111110111111111111111111111110111111111111111111111111111110111111111111111111111111111111111111111111111111111111000
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111010111111111111111111111111111111111101111111111111111111111111111101111111111111111111111111111111111111111111111111111001
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111110011111111111111111111111111111111111111111101111111111111111111111111111111101111111111111111111111111111111111111111000
|
||||
01111111111111111101011111110101111111010111111101011111110101111111010111111101011111110101110111010111111100000110111101011111110101101111010111111101001111110101111111010111111101011111110101111111010111111101011111111110010
|
||||
01111011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111111111111111111101111100111111111111111111111111111100111111111111111111111111111111111111111111111111111110111
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111001111111111111111111111111111111111011101111101111111111111111111111101111111111111111111111111111111111111111111111111111101100
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111111110111111111111111111111111111110111111111111110111111111111111111111111111111111111111111101
|
||||
01111011111111111111111111111111111111111111111111111111111111111111111111111111111111111111110101111111010111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111100011
|
||||
00110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111011011111101111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110000
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111110111111101110111111111110111111101111111110111111111110111111111111111111111111111111111111111111111111111111111111100000
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111111110111111111111111111111111111111111101111110111111111011110011111111111110111111111111111111011111111111111111111111111111111111111111111111111111111
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111011111101111011111111111111111101111111111001111111111111111111110111111111111111111111111111111111111111111111111111100
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110001111110111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111000
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111001
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011110101111101111011011011111011111111011111110101111111111110111101010111111111111111111111111111111111111111111111111111111111111110000
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101101111111011111011111111110110011111111101111110110111111111011111111111111111111111111111111111111111111111111111111111111110111
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111110111111111010111111111101011111110111111110111111111111111111111111111111111111111111111111111111111111111111011
|
||||
00011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111111111111111111111111111111111100111111111111111111111111111111111111111111111111111111111111111111111001110
|
||||
01101011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111111101111111111011111111111111111111111111111111111111111111111111111111010111011
|
||||
01111011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111010111111101011110111111111111110011111100011111111111111111111111111111111111111111111111111111111111111111111111111011111110
|
||||
01101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111011110111101111111111111111111110011111111111111111100111111111111111111111111111111111111111111111111111111111111111110110000
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111101110110110111110110111111111111111111111111111010011011111101101111111111111111111111111111111111111111111111111111111110010
|
||||
01101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111110110111111110110111111111111111111011010110011111111010110101111111111111111111111111111111111111111111111111111110111100
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111110111111111111111111111111111111110101111111111111111111111111111111111111111111111111111111111111111111101111
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111111111111111111111111000100011111111111111111111111111111111111111111111111111111111111111111111111
|
||||
01111111110111111111111111111111111111111111111111111111111111111111111111111111111111111111111110110110111111011011111111011011111101101111110110111011001111111100111111111111111111111111111111111111111111111111111111111110110
|
||||
01111111111000111111111111111111111111111111111111111111111111111111111111111111111111111111111111111001111111101111111111101111111111111111111011111001111111111110011111111111111111111111111111111111111111111111111111111110010
|
||||
00111111111111110111111111011111111101111111110111111111011111111101111111110111111111011111111101101110110111110011110111110011011111111101110110110001111111011111111101111111110111111111011111111101111111110111111011111100010
|
||||
01101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111100111111110011111111011011111111111111110111111111111011111111111111111111111111111111111111111111111111111111011011110110011
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111111101111111110111111111110111111111111111111111111111110111111111111111111111111111111111111111111111111111111111011111111110001
|
||||
01011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111100111011111111111111111111111111011111111111111111111000111111111111111111111111111111111111111111111111111111111111111111111011111
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110101111011111101111111111101111011101111111110111011111101111111101111111111111111111111111111111111111111111111111111111111111111011
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111101111111111111111111111110111111011011101111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||
01111111111111111111110011111111001111111100111111110011111111001111111100111111110011111111001101111100111111110011111111110011111111001111111100111111110011111111001111111100111111110011111111001111111100111111110011111111100
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111110110111111010110111111111111111111111111111111111111011111111111111111111111111111111111111111111111111111111111111111100
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110101111111011111111110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111111110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111110111111111011111111111111111111111111111111110111111111111111111111111111111111111111111111111111111111111111111111110101
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111110011111111111110111110111011111111111110101111111111111111111111111111111111111111111111111111111111111111110001
|
||||
01111111111111111101011111110101111111010111111101011111110101111111010101111101011111110101011111010011011101000111011101010111110101010111010001111101001011110101111111010111111101011111110101111111010111111101011111111110100
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111100110111111111111111111100111111111101111111110111110001111110111101111111111111111111111111111111111111111111111111111111111111111
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111101111111111111111111110111111101101111011011111010111111111111111111111111111111111111111111111111111111111111111111111101011
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111110111111101111111111101111101111010101111111111111111111111111111110111111111111111111111111111111111111111111110
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111010111011100010111111100011111110101111101010111110101111111111111111111111111111111111111111111111111111111111111111100111
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111101111110111111101110111100111111111011101011111010111101111011111111111111111111111111111111111111111111111111111111111111111101
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111110111111111011111111111111111011111111101000111111101111111110101111111110111111111011111111111111111111111111111111111111111111111111111111111111101001
|
||||
01111111111111111111111111111111111111111111111111111111111011110101101111001110111111111111111110101111111111011101010011101111111111110010111111001111111100111111111111111111111111111111111111111111111111111111111111111111011
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111110111111111101011111111011111111111111101111111111111110111110111011011011111111101111111111111111111111111111111111111111111111111111111111111111110111
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111000111111111111111100011111110111111111001111111111111111111111111111111111111111111110101111111111111111111111111111111111111111111111111111111111111010
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111011111111111111110101111111111110111101111111111111111110101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011
|
||||
01111111111111111111111111111111111111111111111111111111111111111101111111010111111111101111111101111111111111101010110101111111001011111100111010110111111101011111111111111111111111111111111111111111111111111111111111111111000
|
||||
01111111111111111111111111111111111111111111111111111111111111111101111111110111111111111111111011111111111111111111110111111110111111111101101111110110111111011111111111111111111111111111111111111111111111111111111111111110101
|
||||
01111111111111111111111111111111111111111111111111111111111111110101111111101111111111111111111111111111111111111111001111111111111111110011111111001101111111011111111111111111111111111011111111111111111111111111111110111111100
|
||||
01011111111111111111111111111111111111111111111111111111111111111111111111111111111101110000111111011111111111111111111111111111110111110111011111111111111111111111111111111111111111111111111111111111111111111111111111111001000
|
||||
01101010111111111111111111111111111111111111111111111111111111111111101111111111111111110110101111111111111111111111111111101000111111110011011111111111111111111111111111111111111111111111111111111111111111111111111111010110000
|
||||
01111010111111111111111111111111111111111111111111111111111110011111111010111111100101111100110100001111111111100111111111101001100011110101110011111011101011111011111111111111111111111111111111111111111111111111111111011110001
|
||||
01101111111111111111111111111111111111111111111111111111111110010111111011110111001111111110110001011111111111001111111111100100111100110101111111100101111111111111111111111111111111111111111111111111111111111111111111110111010
|
||||
01111111111110111111111111111111111111111111111111111111111111111111111101010011011001111011011110101111111111111111011111111111000010100101100110111011111111111111111111111111111111111111111111111111111111111111111111111111000
|
||||
01101101111101111111111111111111111111111111111111111111111111111111011111011111111111111011101110111111111111111111011101111101100101100101101110111101111011110111111111111111111111111111111111111111111111111111111111110110111
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111010111111101011111010101010011111111111111111111111101111111110101101101111111100111011111111111111111111111111111111111111111111111111111111111111100100
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111010011111101011011110101101010111111111111111111111101100010100101101111111011000111011111111111111111111111111111111111111111111111111111111111111110000
|
||||
00111100110011111111111111111111111111111111111111111111111111111111110110111111001111111101101111111111111111011011111111111111101101111111110011111111111111111111111111111111111111111111111100111111111111111111111111111110101
|
||||
00111101111011111111111111111111111111111111111111111111111111111111111011111111111111111110011110011111111111101111111111111111110110101111111111111111101111111111111111111111111111111111111110111111111111111111111111111111011
|
||||
00111111111101110111111111011111111101111111110111111111011111111101111101110010111111011111101100111010110111011111110111111011010101111101111110110111110111011111111101111111110111111011011101111101111111110111111111111100010
|
||||
01101111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111111110111111111011111111011011111111101111110111111111111011111111111111111111111111011111111111111111111111111111111011110110010
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111101111111111110111111110111111111111111111011111111111111111111111111111111111111111111111111111111111011111111111011
|
||||
01111111111111111111111111111111111111111111111111111111111111110111111111110001111111111110111111001111010111111111011111101101001011110101101111111001111111011111111111111111111111111111011111111111111111111111111111111011001
|
||||
01111111111111111111111111111111111111111110111011111111101111111110111111011111111111100111111101110111010001111111111011111101010110110101011111111111111111001111111111111111111111111101101111111111111111111111111111111110010
|
||||
01111111111111111111111111111111111111111110111111111111111111101111111111110011111001011111111110101111111111011111011111101101011100110101110111111101111111011111111111111111111111111111111111111111111111111111111111111100100
|
||||
01111111111111111111110011111111001111111100111111110011111111001111111100011111110001011111001101101100111111011011111111100001111111000101111100111111110011011111001111111100111111110011111111001111111100111111110011111110010
|
||||
01111111111111111111111111111111111111111111010111111101011111111111111111110111111111111111111100011111011111011111111111101011011111110101111111111111111111111111111111111111111111111111011111111111111111111111111111111111110
|
||||
01111111111111111111111111111111111111111111010111111101011111111111111111011111111111111111111101111111110111111110111111111101111111111101111111110111111111011111111111111111111111111101111111111111111111111111111111111110110
|
||||
01111111111111111111111111111111111111111111010111111101011111111111111111110111111101011111111101111111111111110111111111111111011111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111110000
|
||||
01111111111111111111111111111111111111111111010111111101011111111111111111110111111101011011111101111111111101011111111111111101111011111101101111111111111111011111111111111111111111111111111111111111111111111111111111111111010
|
||||
01111111111111111111111111111111111111111111111111111111111111110100111111110011111101001111111111111111111110111110001011111111101110110110101111001001111101111111111111011111111111111111111111111111111111111111111111111110001
|
||||
01111111111111111101011111110101111111010111111101011111110101111011010101111101010111110101111110010101111101011111011101010111110101100111010001011101011101110101011111010111111101001111110101111111010111111101011111111110100
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111110001111111110111111111111101111111111011101000111110100111111110011111111111111111111111111111111111111111111111111111111111111111111111111101
|
||||
00111111111111111111111111111111111111111111111111100111111110111111111111111111110110111011111011101110111111101111111111111010111111101001111110100101111111111111111111111101111111101111111111111111111111111111111111111101000
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111111101111111011111111111111110111111111011111111111111011110111111111110111111101111111101111111111101111111111111111111111111111111111111111111111110010
|
||||
00111111111111111111111111111111111111111111011111111101111111110111111110010110111111111111110101011111000111111101000111111111011111111101111111110011111001011111111111111111111111110111111111111111111111111111111111111100101
|
||||
01111111111111111111111111111111111111111111111011111111100111111110111111011011111111111110011001111111011111110101101111010111111110011111111111011111011111011101101111111111111111111111111111111111111111111111111111111111110
|
||||
01111111111111111111111111111111111111111111100110111111011111011001111101110111111111111111111101111011111111111100111111111100011111010101111111111110111101111011111111111111111111111111111111111111111111111111111111111101111
|
||||
01111111111111111111111111111111111111111111111111111100101111111111101111001111111101011111111111101111111111110101011111111101111011110110111111010111011111110111110101111111011111111111111111111111111111111111111111111111011
|
||||
01111111111111111111111111111111111111111111111111111111011111111111111111110110111111111111111110111111111111111101110111111111011111110110101111111101111111111111111111111111110101111111111111111111111111111111111111111111011
|
||||
01111111111111111111111111111111111111111111111101111011111011101111111101111111111000011111111110111111111111111100111100011111111111011111111101111110111011110011111111111111111111111111110111111111111111111111111111111111111
|
||||
01111111111111111111111111111111111111111101111101111111110111111111111100111111111111010111101111111111111111101001111111111111111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111001
|
||||
01111111111111111111111111111111111111111111110111001111111100111101101111111111111001011111110100111111111111111111111111101101011111111111110101111011111111011111111100111111110111111111011111111111011111111111111111111111000
|
||||
01111111111111111111111111111111111111111111110100111111011111111101110111110111111111111111111111111111111111111110110111111101011111101101111110010111110111111111101011111111010111111111111011111111111111111111111111111110011
|
||||
01111111111111111111111111111111111111111111010111111111011111110101111111110111111111111111111111111111111111111111110111111111110111111011011111111111111101111111111111111111011111111101111111111111111111111111111111111111000
|
||||
00011111111111111111111111111111111111111111111111111111111111111111111111111111111111111010101111011111111111111111111111001111111111111111111111011110111101111111111111111010111111111111111111111111111111111111111111111000111
|
||||
01101011111111111111111111111111111111111111111111111111111111111111111010111111111111111110101111111111111111111111111111001111111111111111111111001110111100111011110011111001111111111111111111111111111111111111111111010110110
|
||||
01111011111111111111111111111111111111111001101111111110101111111010111001101011111111111011110110011111111111101011111110001110101010011111101010110111100101111110010101111010011010111111111111111111111111111111111111011111000
|
||||
01101111111111111111111111111111111111111011111111100111111100111111010011111101100111111100110011011111111111101111111111101111101110011111111111011111100101111111110111111011001011111111111111111111111111111111111111110110011
|
||||
01111111111111111111111111111111111111111101111111111011110110101111110110111111111011101010101101101111111111110111111011110111111110100111111010010010111101011101100100101101010010111111111111111111111111111111111111111111000
|
||||
01101111111111111111111111111111111111111111111101100011110111101111011111111101100011110101101111100110111111111111110011011011110111101111010110011101111001110110100101101111010001111111111111111111111111111111111111110111011
|
||||
00111111111111111111111111111111111111111111101111111110111110011011111111101111111111111111110101111111111111111111111111111110111111011111111111010111110101011111111101111011110111111111111111111111111111111111111111111101101
|
||||
01111111111111111111111111111111111111111111111111111111111110011111111010111111111101100111110111101010111111111111111011111111111111111111111111011001111101111111110100111101110001111111111111111111111111111111111111111111001
|
||||
01111100111111111111111111111111111111111111110111011111011111011101110011110111011111111111111111111111111111111111111011011011011101101111110110111111111111111100111110110111111011111111111111111111111111111111111111111111001
|
||||
01111101111111111111111111111111111111111111111111101011111110011111111111111111101011111110111111111011111111111111111111111111111111111111111111111101100111111111111110011000111001111111111110111111111111111111111111111110101
|
||||
00111111111111110111111111011111111101111111110111011111011011111101101010110111001011011110001100111101110111111011110111111011011111111101111110110101111111011111111100011111110101111111011101111101111111110111111111111100100
|
||||
01101111111111111111111111111111111111111110111111111111111111101111111111111111111011111111101111111111111111110011111111011011111111111111111101111111111111111111101111111111111111111011111111111111111111111111111111110110101
|
||||
01111111111111111111111111111111111111110111110111111111011101111101111111110111011111111101111111111111111111110111111111011111011111111111111111111111111111111110111111111111111111110111111111111111111111111111111111111110110
|
||||
01011111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111011111111111111111111011111111111111111111111111110111111101111111111110011110010011111011111111111111111111111111111111111010110
|
||||
01111111111111111111111111111111111110111111111101111111110111111111011111111101111111110110101100011111111101111111111111111111110111111110111111110101111011101110110101011110010001111101001111111111111111111111111111111110011
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111001111101111010111111111111111111111111111111111111111111011110111111111111111111101010011010111111111011111111111111111111111111111111110100
|
||||
01111111111111111111110011111111001111111100111111110011111111001111111100111111110011111111001101111100111111110011111111110011111111001101111100110111110011111111001101111100010111110001111111001111111100111111110011111111001
|
||||
01111111111111111111111111111111110101111111111011111111101111111110011111111111111111111111111111111111010111111111111111111111101011111111111111110111111111111111111101111111110111111111011111111111111111111111111111111110111
|
||||
01111111111111111111111111111111110101111111111111111111111111111111111111111111111111111111111101111111010111111110111111111111111111111111111111010111111111111111111101111111110111111101111111111111111111111111111111111110101
|
||||
01111111111111111111111111111111110101111111111011111111101111111111111111111111111111111111111111111111010111111111111111111111101111111111111111110111111111111111111101111111110111111111011111111111111111111111111111111111101
|
||||
01111111111111111111111111111111110101111111111110111111111011111111101111111110111111111011111111101111010101111111011111111111111111111111111111110110111111111111111101101111110110111101111111111111111111111111111111111110010
|
||||
01111111111111111111111111111111111111111111010011111101001111110100011111010011111101111111110010011111111111111110111011111101001111111111111111011000111100101111110111011111011111111111111111111111111111111111111111111111100
|
||||
01011111111111111101011111110101111111010111011101010101110100010111010011011101001011110001111011010101111101010111111101010101110101011111010001101101011010110101110111010111011101001111110101111111010111111101011111111010111
|
||||
01111111111111111111111111111111111111111111110011111111001111111110110111110010101110111111101101101011111111011111010010111111111111111111111111010001111111111111111111011111110011011111111111111111111111111111111111111110100
|
||||
00111111111111111111111111111111111111011111010111111101111111111011111111010111111111111111111111011111111111111111010111111111101111101111111110010111111111111010111111111111100111111011111111111111111111111111111011111101001
|
||||
01111111111111111111111111111111111111111111111111101111011011111111111110111110111011110110111011111111111111111111111111111111101110111111110111111110111111111111111111011111111111111111111111111111111111111111111111111111001
|
||||
01111111111111111111111111111011110111111111011111111101111111100111111111110101111101011111110111111111011111111101011111111111111111110101111011000111101011011111110101111011000111101101011111111111111111111111111111111111111
|
||||
01111111111111111111111111110111111110111111110111111111101111111101111101011111111111101101111110111111110111110101111011110111110101111101110101011111111101111111101101111111011111111111101111111111111111111111111111111110011
|
||||
01111111111111111111111111111111111111111111111111110111111111111001111111111111011101011111111111111111111111011101111101010110001111110111110111110110111111111111110001111111110110111101111111111111111111111111111111111110101
|
||||
01111111111111111111111111111111111111111111010111111111111011111111101111011011111111111111111110111111111111111101111011111101011110111111111111001011111111110111110101111111101111111111111111111111111111111111111111111110111
|
||||
01111111111111111111111111111111111111111111111111111111110111111111111111011110111111101111111111011111111111111101111111111111111111101111111010110101111111111111111111111111111101111111111111111111111111111111111111111110100
|
||||
01111111111111111111111111111111111111111111111111111111111111110110111111111111111011111111111111011110111111111000111111111011111111111110011111000111111011111111110111111111111111111111111111111111111111111111111111111111011
|
||||
01111111111111111111111111111111111111111111111111101111111111110111111111111111111111111111111111111111111111111101111111111111111111111111111111111011111111111111110111111110111101111111111111111111111111111111111111111111000
|
||||
01111111111111111111111111111111111111111111110111111111111011111111111111010011111001011111110100111111111111011011111111011101011111111101111011111111111011101111101101111111110011111101011111011111111111111111111111111110111
|
||||
00111111111111111111111111111111111111111111110111111111011111111111111110110110111111011011111111111111111011111111111111111101011111111101111111111101111111011111111101111111100111111111011111111111111111111111111111111100111
|
||||
01111111111111111111111111111111111111111111010111111110111111111111111111110111111110111111111111111111111111111111111111111111111111110011111111111111111111011111110011111111101101111111011111111111111111111111111111111111001
|
||||
00011111111111111111111111111111111111111111111111111111111011111111111111111110111111111111111111101111011111111111111111001111111111111111111111111110111111111110101111111111111111111111111111111111111111111111111111111000000
|
||||
01101011111111111111111111111111111111111111111110111111111111111111111111111111111111111111111111111111011111111111111111100111111011111111111111111111111111111110011111111111001111111111111111111111111111111111111111010110110
|
||||
01111011111111111111111111111111111111111111111111001111111110101111111001111111100111111111111111111111011110111111111111001110101111111111111010111111111111101110011110111010110111111111111011111111111111111111111111011111100
|
||||
01101111111111111111111111111111111111111111111111001101111110011011110011111111101111111111111111111111011111111111111111101111101111111111111011111111111110111100111010111001110111111111111111111111111111111111111111110111101
|
||||
01111111111111111111111111111111111111111111111111111011011001100110100110111111110111111111111111101111011111111111111111110111111111101111111101011010111111110011111111101111110111011011101111111111111111111111111111111110101
|
||||
01101111111111111111111111111111111111111111011101010001111010100111111010011101011011110101101111111111011101111111111111111111110110001111111111011101111111101111111110011111011111111011111111111111111111111111111111110110001
|
||||
00111111111111111111111111111111111111111111111111111111011011110101111111111110111111111111111111011111011111111111111111101010111111111111111111111110111111111111111111111111111110110111111111111111111111111111111111111101101
|
||||
01111111111111111111111111111111111111111111011111111111111111111111011010111111111101111111111111111111011111111111111111101111111111111111111111111001111111110110100110011111111111111111101111111111111111111111111111111111100
|
||||
01111111111111111111111111111111111111111111111111111111111111111111110011111111001111111111111111110011111111111111111111110111011101101111111111111111001111111101101110111111111111111111111111111111111111111111111111111111000
|
||||
01111111111111111111111111111111111111111111111111111111111110111111011111111111100111111110111111111111111111111111111101111111111110011111111111111101111111101110111110011011111101100111101110111111111111111111111111111110101
|
||||
00111111111111110111111111011111111101111111110111111011011101111100111111110111101011011111011101111111110111111111110111111011011111111101111010110101111111001101101100011100110111111011001111011101111111110111111111111100111
|
||||
01101111111111111111111111111111111111111111111111011111111111111111111111111111111011111111111111111111111111111111111111011011111111111111111110111111111111111111001111111101111111011111111111111111111111111111111111110111100
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111011111111111111111111111111111111111111101011111011111111111111101111111111111111101111111111111111111111111111111111111111111111111111111111110110
|
||||
01011111111111111111111111111111111111111111110111101111111110100101011111111111111101011111111101111111111111111111111111111111111111111101111011010101111011011111111100011011111111111111011111111111111111111111111111111011001
|
||||
01111111111111111111111111111111111111111111110011111101010110110100010011110101111001001111111101011111111111101111111101111111110111111100111111010101111111000111111111011111111101011111101111111111111111111111111111111110100
|
||||
01111111111111111111111111111111111111111111110111101111111111111111010111110111111101011111111101110111111111111111111111111111111111111101111111111011111111111100111110111111011111111111111111111111111111111111111111111111011
|
||||
01111111111111111111110011111111001111111100110111110011111111001111111100111111110001011111001101111100111111110011111111011011111111001101111100111111110011111111001111111100110111110011111111001111111100111111110011111111101
|
||||
01111111111111111111111111111111111111111111111111111111011111111111111111110111111101011111111100111111111111111111111000111111101011111101111111010111111111011111111111111111111111111111111111111111111111111111111111111111101
|
||||
01111111111111111111111111111111111111111111111111111111011111111111111111111111111101011111111101111111111111111110111111011111101111111101111111010111111111011111111111111111011111111111111111111111111111111111111111111110101
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111110111111101011111111110111111111111111111111111110111111111111101111111111111111111111111111111111111011111111111111111111111111111111111111111111110001
|
||||
01111111111111111111111111111111111111111111111111111111111011111111101111111110111111011111111111101111111111111111111111011111111111111101111111011110111111111011111111101111010110111111111111111111111111111111111111111110000
|
||||
01111111111111111111111111111111111111111111010011111111101111111110111111011111111101001111111111111111011011111110111111111100101011111111111111011011111111111111010010111101011111111111110111111111011111111111111111111111000
|
||||
01011111111111111101011111110101111111010111101101011111110101101110000101101101010110110101101111000101101101011111111101011010110101011111010111111101011011110101011011010101111101010111110001111111010111111101011111111011011
|
||||
01111111111111111111111111111111111111111110111111111101111111110111011111111111111111111111111100011111011111111011111111111111111111011111111111001101001111001111111111111111101111111011001111111111111111111111111111111110101
|
||||
00111111111111111111111111111111111111111111111100111111111111111111111111111111111111111111111011111110111111111111111111111111101111101111111111111111111101111111111111111111111111111110010111111111111111111111111111111101100
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011110111111111111111111011111111111110111111101011111111111111011111111111111111111111101111111111111111111111111111111111111110111
|
||||
01111111111111111111111111111111111111111111011111111111011111110111111111110111111101111111110101110111111111111000111111111111101111111111111111000111111111111111110110111111010011111111111111111111111111111111111111111111001
|
||||
01111111111111111111111111111111111111111111111011111101111111111101111111011111011111101111111001101111111111111101111111111111111101111111111101011111110111111111111101111111011011111011111101011111011111111111111111111111001
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111011111111111101111110110111111111111111111111111011011110011011111111111111111111111110011111111111111111111111111111111111000
|
||||
01111111111111111111111111111111111111111111111111111111111111111110111111111111111111111111111110111111111011111101111111111111111010111111111111111111111111111111111111111111111111111101011111111111101111111111111111111111010
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111101111111101111111110111111011011111111111111111111111111111111111101111111111111111111111111111111111111111111101
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111101111111111011111101100111111111111111111111110111111111111111111111111011111111111111111111111111111111111110001
|
||||
01111111111111111111111111111111111111111111111111111111111111111111011111111111111111111111111111111111111111110101111111111111111111110111001110111111110111111111111111111101111111111111111111111111111111111111111111111110100
|
||||
01111111111111111111111111111011111111111111111111111111111111111111111111111111111101011111111111011111110111111111111111011101011101111111110111110111011111111111111111101111111111111111001111011111111111111111111111111110110
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111111111111111111111011111001111111011111111111111111100110111111111111011111111111111111111111111111111111111111111111111111111101001
|
||||
01111111111111111111111111111111111111101111111111111111111111111111011111111111111110111111111111111111011111111111111111111110111111111111111111110101111111111111111111111111111101111101111111111111111111111111111111111111110
|
||||
01011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111011111111111111111111111111110101111011111111100101011111111111111101010111111111111111111111111111111111111111111011010111
|
||||
01101011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111111111111111111111111111100111110111111100101101011111111111111111001111111111111111111111111111111111111111111110110010
|
||||
01111011111111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111011111100111010111111111111111111111111111110111100111101111111111111111111111111111011111111111111111111111111111111111100
|
||||
01101111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111111111111111111100111010111111111111111111111111111110111111111101111111111111111111111101101011111111111111111111111111110110100110
|
||||
00111111111010111111111111111111111111111111111111111111111111111111111111111111111111110011111111111111111111111111111111111111111111111111101111110111111111001001101111101111111110110101011011111111101111111111111110111101101
|
||||
01101111110110111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111110111101011111101111111111111111111111111110111111111101110101111111111111111111101011010101111111111111111111111110101101
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110011111111111111010111111111111111111111101111110111111111111010111111011111111101111111011111111111001111111111111111111100101
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111110110101111111010110111111111010111111111111110101111001111110111111111100010011111111111111111111101011111111111111111111111111111111101011
|
||||
00111111110011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011011111111111111111111111110111111111111111111101011011111111111111111111111111111111111111111111111111111111111110
|
||||
01111111111011111111111111111111111111111111111111111111111111111111111111111111111111101111111111011111111101101111111111111111110111111110011111111101111111110110011111111111111111111111111110111111111111111111111111111111100
|
||||
00111111110111110111111111011111111101111111110111111111011111111101111111110111111111011111101101111111110111011111110111111111011111111100111111110111111111000111111101111111110111111011011111011101111111110111111111111101101
|
||||
01101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111001111111111111111111011111111111111111111111111111111111111111011111011111111111111111111011011111111101111111111111111111111110111110
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111011111111111011111111111111111110111111111011111111111110111111111111111111111111111101111111101111111111111111111111111111110101
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101101111111111111111011111111101011011111110001111110110111101001011111111111111111111101111011111110111111111111111111111111110001
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111100110110110111111111111011011110011111101001111111111111011110001011101010111111111011111111101101101010110111101011111111111111111111111010
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111011111101111101111111011111111111011111111111111111111111001111110111101101011111111111111111111111111111011110110111111111111111111111111110001
|
||||
01111111111111111111110011111111001111111100111111110011111111001111111100111111110011111111000111101100011111110011110111110011111000001111101100110111011001011111001111111100111111110001011111001101111100111111110011111110000
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111100011111111111111111011111111111001101001111111111111110011101011111111110111111010111111111111111111100111111111111111111111111001
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111110111111111111111111110110111111111011111111111111111111111111101011111111111111111010111111111011111110111111111111111111111111110110
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111101111111011111111111011111111111001110011111111111111111110111011111111110101111010110111111011111111100111111111111111111111100000
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111011011110111111111011111111111110111111111011100111111111111111111011101011011111111111111010111111101011011110111101111111111111111111111000
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011011111110111111111111111111111111011111011011111100101111111111111111111111111101111111111111111111111111111111111110110
|
||||
01111111111111111101011111110101111111010111111101011111110101111111010111111101011111110101111110010101111101011111111101010111110101111110010111011101011001110101111111010011111101011101110101011111010111111101011011111110111
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111001111111100111111001101111111111111111111010111111111011111011011001111110111111101111111111111111111111111111100011111111111111111111111001
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111111111111101011111011111111101111111011111111111111111011111111111111110101111011111111111111101111111111111111111111101110111111111111111111111111101001
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111010101111111111111111110111111111111100111111111111111111101111111110111111111111111111111111111111111011011111110111111111010011110000
|
||||
00111111101111111111111111111101111111111111111111111111111111111111111111111111111101111111111111111011111111111101111111111111011111111111011111001111111101011111111111111111010101111111011111110101111111111111111111111111101
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111111111110101111111011111111111111111110111111111111111101111111111111011101011111111111101111101111111111111111111111111100
|
||||
00111111111111111111111111111011111111111111111111111111111111111111111111111111111111111111011110110111100011111101111111111101111111111100111011100111000101011111111111101111111111111101111111110111111111111111111111111111010
|
||||
01111111111111111111111111111111111111111111111111011111111111111111111111111111111101111111110111111111010111111101111111111111101111100111011111010011101100111111111111111011111111111111111111111111111111111111111111111110100
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111101111111111111111101111111101111111111110110110111111111111111011111111111111111111111111111111111011111111111111111111111111110110
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111110011111111011111111111111101111111111111111111111111111101111111101111111101111011111101101111111100111111111111111111111111111110111110001
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111111111111111101111110011011111111111110111111110111111111011111111111111111111111111111111111101
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111110111111111110011111111111101110101111111110111111101011111111111111011111111101110101110111110111111111111111111111111000
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111101111111110111111011110111101111111011111100111111110011111111001011111111101111010111111111111111111111011011111111111111111100001
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111101111111001111111111001111111111111010111101111111001111111111011101111111111111111101111111111111111111111111111111111111111110100
|
||||
01011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111100111111110111111100111111111111111111111111111111111111111111111111111111111111110100111111111111111111111111000111
|
||||
01101011111111111111111111111111111111111111111111111111111111111111111111111111111100111111111111111111111111111111111111111111110111111101111111111111111101111111111111111010111111111111111110010001111111111111111111010110010
|
||||
01111011111111111111111111111111111111111111111111111111111111111111111111111111100111111100110101111010011111111111111011111101011110011111111111111111111111111111111110111001010111111111111111110101111111111111111111011110010
|
||||
01101111111111111111111111111111111111111111111111111111111111111111111111111111101111111111110101111001111111111111101111100101011110111111111111111111100111111111111111110011010111111111111111110101111111111111111111110110110
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111111111110101011010100111111111011010111111111100111111111111011111111111011111111111111110101111011111111110111111111011110101101111111111111111111110011
|
||||
01101111111110111111111111111111111111111111111111111111111111111111111111111111111111111011100111111111111110101011111011111111110111111111011110011101111111110111101111111111111101111111111111110101011111111111111111110111111
|
||||
00111111111101111111111111111111111111111111111111111111111111111111111111111111111111111011010101111111111110101111111111111101011111111111111101011111111111111111011111111010010111111111110111110101111111111111111111111100111
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110101111111110011100011111001111101011111111111111111011111111111111111111111111010010101111111111111110101011111111111111111111111101
|
||||
00111111110110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111111111111110111111111111111111111111111
|
||||
01111111111011111111111111111111111111111111111111111111111111111111111111111111111111111110111111011011111101100111111111111111111111111111111111111111111111111110111111011111111001101111111111111110011111111111111111111111100
|
||||
00111111111101110111111111011111111101111111110111111111011111111101111111110111111111011101101101111100110101111011110111111111011111111101111111110111111011011101111101111111110011011111011111111100111111110111101011111101111
|
||||
01101111111111111111111111111111111111111111111111111111111111111111111111111111111011111101101111111101111111011111111111111111111111111111111111111111011011111111111111101111111111111111111111111111111111111111111011110110010
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111110111111110111111111111111111111111111111111111111111111111111111111111101111111111111111011111111101111111111111111111011111111111011111111111010
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111111101111111011101111111110111111111111111110111111111111111111011111111111111111111111001111111111110111110011111111111111111111111000
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111101110010111010111111111111011111111111111110110011111111101111101101111111111111011010001111111110111111111011111111111111111111110100
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111101111110111111111111010101111011111111111111111101110111111111111111111111111110111111111110010111011111111110111111111111111111111111111100001
|
||||
01111111111111111111110011111111001111111100111111110011111111001111111100111111110011011111001111101100010111110011111111110011111111000111111100111111110011111111001111111100010011110011111111001110111100111111110011111110110
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111111111111111111111110111111111110110111111111111111110111111010011111111101111111110111111111111111111111110011
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111111111111111111111110111111111111111111110111111111110111111111111111111110111111010011111111101111111111111111111111111111111111101
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111110111111111111111111111111111111110111111111011111110111111111111111111111110011
|
||||
01110111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111011111111111111111111011111111111111110111101111110111111111111111111111111111010111111111111111111111101111111111111111111110111
|
||||
01111111111111111111111111111111111111111111111111111111110111111111111111111111111101111111110010111111001011111110111111111111111111111110111111011011111111101111111111111111111111111111111111111111011111111111111111111110000
|
||||
01111111111111111101011111110101111111010111111101011111110101111111010111111101011101110100110111010111101101001011111101011111110101111111010111111101011111110100111111010111111101001111110101111111010111111101011111111111101
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111111111111111111111111111111011111111001111110111011111001101110101111111111111111111111111111111111111111100111111111111111111111110101
|
||||
00111111111111111111111111111111011111111111111111111111111111111111111111111111111111111111011111110110111110011111101101011111111101111111111111111111111111111011111111111111111111111111111111010101111011111111111111111100111
|
||||
00111111111111111111111111111111111111111111111111101111111111111111111111111111111111111111111111111011111111111111111111111001011111111111111111111011111111111111111111111011111111111111111111111111111111111111111111111110110
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111110001111111001111111101010110101111101111101111111011110111111111011111111111111011010111111111111111111111111011111111111111111101111
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111101011111111111111111101111011111111111110111111111111111111011110111111111111111111010111111111111111111111111111111111111111111111101
|
||||
01111111111111111111111111111111111111111111111111101011111111111111111111111111111111111101111001110111111111110101000011111111111101111111111111011011111110011101101111111111111111111111111111111111110111111111111111111100111
|
||||
01111111111111111111111111111111111111111111111111011111111111111111111111111111111111111111110111111111111111111101011111111011111111111111111111111111101101011111111111111111111111111111111111111111111111111111111111111110100
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011100111011111111111111101011110111111110111111111111111111111111111111111011111111111111111111111111111111111111111111111111111111110101
|
||||
01111111111111111111111111111111111111111111111111111000011111111111111111111111111111111110111111111111111110111101000111111111111111111111111111111111010111111101111011111101111111111111111111111111111111111111111111111111011
|
||||
01111111111111111111111111111111111111111111111111111111011111111111111111111111111111111111111111101111111111111101101111111111111111111111011111111111111111111111111110111111111111111111111111111111111111111111111111111110101
|
||||
01111111111110110111111111111111111111111111110111111111111111111111111111111111111111011111111101111111111111010010010111111101011111110101111111110111111011011111111111111110111111111111111111111101111111111111111111111111001
|
||||
01111111111111110111111111111111111111111110110111111111111111111111111111111111111111111111111101111111111010111111111111011111011111111111111111110111111111111010111111111111111101111111111111111101111111111111111111111111001
|
||||
01111111111111010111111111111111111111111111010111111111111111111111111111111111111101110111110101110111111111111110111101111111011111111111111110001111111101111011111111111111111111111111111111110101111111111111111111111111010
|
||||
00011111111111111111111111111111111111111111111111111111111110101111111111111111111111111111111111101111111111111111111111100101111111110111111111111111111111111111111111111111111111101011111111111111111111111111111111111000100
|
||||
01101011111111111111111111111111111111111111111111111111111110011111111111111111111111111111110111111111111111111110001111101011111111110111111111111111111111111111111111111111111111100111111111111111111111111111111111010110011
|
||||
01111011111111111111111111111111111111111111111011111111111111111111111111111111111111111111111111111111111111100111010111111101101111110111101111111111111101111111111111111111010111111111111111111111111111111111111111011110100
|
||||
01101111111111111111111111111111111111111111101111111110111111111111111111111111111111111100111111111111111111001111111111111110101111110111111111111111101111011111111111111011010111111111111111111111111111111111111111110111000
|
||||
01111111111111111111111111111111111111111111111100111111111011111110111111111111111111111101100101111111111111111111111010101011111011110111111111111111110111111101101111101101111110111111111011111111101111111111111111111111010
|
||||
01101111111111111111111111111111111111111111111011111111101111111110111111111111111101110110101101110110111111111110111110111011001010100111011111111111111111110110101111111111111101111111111111111111111111111111111111110111111
|
||||
00111111111111111111111111111111111111111111111111111111111011111110111111111111111111111111111111111111111111111111111110110111111110110111111111111111111101011111111111001111010100111111111111111111111010111111111100111101111
|
||||
01111111111111111111111111111111111111111111111001101011100111111110111111111111111101111111111111111111111111111111111011111111001110000111111111111111111101011111111111111111010111111111110111111111011010111111111101111110110
|
||||
01111111111111111111111111111111111111111111111011011011101111111110111111111111111111111111111111110110111111111111111111111111111100111110110110111111111111111111111111111111111111111111101111111110110111111111111111111111011
|
||||
01111111111111111111111111111111111111111111111001101111101110111111011111111111111111111110111111011111111111111111111101100111110110011111111011111111111111111111111111111111111111111111100111111110011010111111111111111111011
|
||||
00111111111111110111111111011111111101111110110001110111001101101101011111110111111111011000101101111110110111111111110101111011010111111101110111110111111011011011111101111111110111111111001111101100110111110111111111111100100
|
||||
01101111111111111111111111111111111111110110111111111011111101111111111111111111111111111111101111111100111111111011111111011111111111101111111111111111011011111111111111111111111111111111111111001111111111111111111111110111111
|
||||
01111111111111111111111111111111111111111011111111011111111111111111111111111111111111111101111111111101111111101111111111111111111111011111111111111111101111111111111111111111111111111111110111011111011111111111111111111110000
|
||||
01011111111111110111111111111111111111111111110011111111001110101100011111111111111111011110110111111111011111111111011101101111010111111100111111111111111111011111111111111111111111111111100111111110111111111111111111111011001
|
||||
01111111111111110011111111111111111111111110111001111111110111110110011111111111111111001110111111010111110101101111010111101111111111111111111111111101111101001111111111011111111101111111111111110110111111111111111111111111001
|
||||
01111111111111110111111111111111111111111111111111011111111110101101110111111111111111111111110111110011011111111111010011111111110111111111111111011111011011011111111111111111111111101111111100110111111111111111111111111110011
|
||||
01111111111111110111110011111111001111111100111111110011111111000110111100111111110011111111000111111100110110110011010111110011111111001111111100011111110001011111001111111100111111110011101111001111111100111111110011111110000
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111111111111011111111111110111111111111111111111111111111110111111011111111110101111111111111111101111111100011111111111111111111111111
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111110111111111110111111110111111111111111111111111111111111111111101011111111110111111111111111111111111111111111111111111111111111110000
|
||||
01111111111111111111111111111111111111111111111101111111110111111111011111111111111111111111111111111111011110111111111111111111111111111111111111011111111111011111111111111111111110111111101111111111111111111111111111111111011
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111110111111111111111111111111111111111111111011111111101011111111111111111111111111111111111111101111111111111111111111111110
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111100101111110010111111111111111110010011111100101111110010111111111110111111111111111111111111111111111111111111111111111111111111111111111111011
|
||||
01011111111111111101011111110101111111010001111101001111110101101111010111111101011101110101111011010111111101011111101101011110110001100111010101111101001111110100011111010011111101011111110101111111010111111101011111111011110
|
||||
01111111111111111111111111111111111111111111110110111111101110111111011111111111111111111111111111111111111111111011111101111011111111111100111111111111111111111111111111111110111111111111001111111100011111111111111111111110010
|
||||
00111111111110111111111111111111111111111111111101111101111101111111111111111111111111110111111111111111111111111111111111011111111111110111011111111111111111111111111110111111111111111110011110110111111111111111111111111101100
|
||||
01111111111111111111111111111111111111111111101111111111111111111111111111111111111111111111111111111111111111111011111101111111111111111100111011111111111111111111111111111011111110111111111111111011111111111111111111111110001
|
||||
01111111111111000111111111111111111111111111011011111100010111110111111111111111111111101111110101111111111111111101110111001100001110110000111110111111111111111110111111111111111011111111111111110101111111111111111110111110010
|
||||
01111111111111101110111111111111111111011111111011111110111111111101111111111111111111111111110110111111111111111101111111111111111111111111111111111111111111111111111111101111111111111111111111111101111111111111111110111111010
|
||||
01111111111111111111111111111100111111110111110111111111011111111111111111111111111111111111111110111011111111111101010111011101111101010101111111111111111111111111111111111111111111111111011111110111111111111111011111111110011
|
||||
01111111111111111111111111111111110101111111001011111100111111111111111111111111111111101111111111111111111111111111101011101111111111110011111111111111011111111111111111111101111111111111111111111111111111111111111110111110011
|
||||
01111110111111111111111111111111111111111111110111111011011111111111111111111111111111111111111111111111111111111101111111111111111111110111111111111101111111111111111111111110111111101111101111111111111111111111111111111111101
|
||||
01111111111111111101111111111111111111111111111100111101111111111111111111111111111111111111111010111101111111111101111111111100111011111111111111111110100111111101111111111111000111111101111111111111111111111111111111111111110
|
||||
01111111111101111111111011111111111111111111111111111101111111111111011111111111111111111111111110111111111110111101111111111111011111111111111011111111111111111111111111111111110111111101111111111111011111111111111111111110000
|
||||
01111111111111111101111111111111111101111110111011111101011111111111111111111111110111111111111111111111110110111111110111111110111111110101101111010111111011111110111110111111110110111101001110111110111111111111111111111111010
|
||||
00111111111111111111111111111111111101111111111111111111111111111111111111111111111111111111111111111111101111111111100110111111111111111111111111111111111111111111111111111111101111111111110011111111111111111111101111111100011
|
||||
01111111111111111111111111111111110101111111111101111111111111111111111111111111111111111111111111011111111111111110101111011111111111111111111111111111111111111111111111111111111111111111111111111111110111111111111111111111110
|
||||
01011111111111111111111111111111110111111111111111111111111111111111111111111111111111111110101111111111111000111111111111001101110111110111101001111111111111111110101111011111111000111101111111111111111111111111111111111011110
|
||||
00101011111111111111111111111111110111111111011111111111111111111111111111111111111111111110011111111111111101111110111111001101110111111111111010111110001110111110101111111111111011111111111111111111111111111111111101010110100
|
||||
01111011111111111111111111111110100101111010010111111111111111111111111111111111111111111111111111111111111111100111111111111101111110100111111111111111111111001111111111011111111111101011111111111111111111111111101001011110001
|
||||
01101111111111111111111111111110010101111011110111001111111111111111111111111111111111111111111111111111111111111111111111111101111110011111111111111111111111101111111111111111111111101111011111111111111111111111111111110101011
|
||||
01111111111010111111111111111111110101110100010010101011101001101111111111111111111111111111111111101111111111111110011110101001111011110110101111110010101011011110101111101111111111110111111011101111101111111111111111111100100
|
||||
01101111110110111111111111111111111111111010010111011011110110101111111111111111111111111111111111111111111111111111111101111001110111111111111010011101011011110111111111111111111111111101111111011111111111111111111110110100111
|
||||
00111111111111111111111111111111110101111111010111111111111111111111111111111111111111111111111111101111111111111111111100100001110011111111111011110101111111011100111111110011111111111111010110101111011011111111111110111101100
|
||||
01111111111111111111111111111111110101111111010001111101100111111111111111111111111111111111111111011111111111111111111110001101111011111100011000011011111110111111111111001011111111111111101100111111111001111111111111111110100
|
||||
00111111111111111111111111111111111111111111111111001111111111111111111111111111111111111111111110111111111111011111111111111111101111111111110011111111001111111100111110111101111111011011111101101111111101111111111111111100110
|
||||
00111111111111111111111111111111111111011011111101100111110110111111111111111111111111111111111110011111111111111011111111100111100111111111011111111101111111111110111110011111111111100111111110011111111111111111111111111111111
|
||||
00111111111111110111111111011111111101110010110111111011010101111101111111110111111111011111111100111010110111101011110111111111000011101101111110110101111111011101111100111110110111111111011111111101111111110111111100111110001
|
||||
01101111111111111111111111111111111111111110111111011011111111111111111111111111111111111111111111111110111111111011111111111111111111011111110110111111111111111011111111110110111111111011111111111111111111111111111101110111101
|
||||
01111111111111111111111111111111111111110111111111101111111111111111111111111111111111111111111111010111111111011111111111111111111111111111111101111111111111111111111111011101111111011111111111111111111111111111111110111111100
|
||||
01111111111111111111111111111110110101111111111111101101110111111111111111111111111111111111111110011111010111111110111111111111100011110111011111110101111001000111111110101111111111111111110111111111111111111111111111111111101
|
||||
01101111111111111111111111111111110101010111010101011101010111111111111111111111111111111111111111011111010011111111111001111111111111110101110011111111111101010111111111111111011011111111111111111111111111111111111111111111111
|
||||
00111111111111111111111111111111110101110011110111111111001101111111111111111111111111111110111111101111010111111111111111101111111011111101011011111110111101010111111111101111111111111111001111111111111111111111111111111111000
|
||||
01111111111111111111110011111111000101111100110111110011111111001111111100111111110011111111001110101100010111110011111111110011101011001111111100111011110001011110001111101100111111110001111111001111111100111111110011111111010
|
||||
01111111111111111111111111111111110111111111110111111101011111111111111111111111111111111111111110111111010111111110110011111111101111110101111111111111111101001110111110011111011111111111100111111110011111111111111111111110100
|
||||
01111011111111111111111111111111110111101111110110111101011011111111111111111111111111111111011110111111010111111110111111111111101111110101111111111111111101011111101111111111011111111111111111111111111111111111111111111111101
|
||||
01111111111111111111111111111111111101111111110111111111111111111111111111111111111111111111111111111111110111111111111011111111111111111111111111111111111111101111101111111111111111111111111111111111111111111111111111111111100
|
||||
01111111111111111111111111111111111101111111110111111111111111111111111111111111111111111101111111101111010111111110111110111111111111111111111111111111111111110111111111111111111111111101111111111111111111111111111111111111010
|
||||
01110111111101111111111111111111111110111111011111111100101111111111111111111111111111110111111111101111111101111111011001111101101111010110011111111101111101101111111111111111111111111100101111111111111111111101111111111101100
|
||||
01011111111101111101011111110101111111010101011101011101110101101111010011111101001111110101101111010011111101001111101001011101110101010111010001111101011101110101111111010001111101011101110101111111010111111101011111111110001
|
||||
01110111111111111111111111111111110111111111110011111111111111111111111111111111111111111111111111011110110111110111010011111101111111110111111111111111111001011111111100111111111111111111111111101111111111111111111111111111111
|
||||
00111111111111111110111111111110111111111111010111111111111111111111111111111111111111111111111110111111111111111111010111111111101111111111111111111111111111011111111111111111111011111111111110111111111111111111111111111100011
|
||||
01111111111101111111111011111111111111101111111111111111111111111111111111111111111111111111111111111111101111111101111101111111111110111111111111111011111111111111110101111111111111111111111111111111111111111111111111111110111
|
||||
01111111101111111111111111111111100111111111000111111100011111111111111111111111111111111111111111111011110111111111110111101111111111110011111111010111111000111111111111111110010111111111011111111111111111111111101111111111100
|
||||
01111111111111111111111111111111111101111111101111111110111101111111111111111111110111111111111111111111011101111100101111111111111111101111111111111011111111111111111111111111111011111110111101111111110111111110111111111111010
|
||||
01111111111111111111111111111011111101111111111111111111111111111110111111111111111111111110111111111111111111111101110111111111111111111001111111000111111111111011111111001111011111111111111111111111111111111111111111111110010
|
||||
01111111111111111111111111111101111111111111111111111111111111111111111111111111111111101111110111111111111011111111111111111111101111110111111111111011111101011110011111111111111011111111111111111111111111111111111111111111001
|
||||
01111111111111111111111111111111111110111111111111111111111111111111011111111111111111111111111101111111111111101100111011111111111111110111111111111111111111111111011111011111111111111111111111111111111111111111111111111110010
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111011111111111111111111110001111110111111111111111110110001111111111101111111111111111111111111111111111111111110011
|
||||
01111111111111111111111111111111111111111101111111111111111111111111111011111111111111111101111111111111111111111001111101111111111011111101111111111111110011111111111011111111111110111111111111111111111111111111111111111111011
|
||||
01111111111111111111111011011111111110111111111111111111111111111101111111111111111101011111111111100111010011011110110111011111111111111110111111110111111111011111011111111011110101111111111111111111111111111111111111111111111
|
||||
00111111111111111111111111011111111111111111111111111111111111111111111111111111111101011111111111111111111111111110111111111111111111111110100111101111111111001111111111111111010111111111111011111111111111111111111111111100101
|
||||
01111111111111111111111101011111111111011111111101111111111111110111111111111111011111111111111111111111111111111111011111111111111011111111111111111111111101011111111111001111011111101111111111111111111111111111111111111110101
|
||||
00011111111111111111111101111111110111111111111111101011111111111111111111011111100111100111111111111010111111111110111001111101101110011111101111011111111111111100110111011111111111111111111111111111111111111111111111111011110
|
||||
01101011111111111111111101111111110111111111111111101011111111111111111111111111111111111111111111111001111111111111111101111101111110101111111010001110111111111000110001101111111111111111111111111111111111111111111111010111011
|
||||
01111011111111111111111101111111110111111111111111111111101111111111111001010111111101010011110111111111011111001111011111111101111110011101111111010111101011111111110101011111111111111111111111111111111111111111001111011111111
|
||||
01101111111111111111111101111111110111111111111111111111101111111111111001011111100101011110111111111001110111100110011111111101111110111001111001010111100111111111110101111111111111111111111111111111111111111111001111110111101
|
||||
01111111111111111111111101111111110111101110111111111111111111111111111111011111111011111111011111110110110110011011011111111101111111011101100110010110111011111111110111101110111111111111111111111111111111111110111111111101000
|
||||
01101111111111111111111101110111110101101000111111111111111111111111111111111101010011110111111111011010011001101011011101111101110111111110111111010101100011110111111101011101111111111111111111111111111111111111111111110111001
|
||||
00111111111111111111111101111111110111101111111111111111111100111111111111010111111101011111111111111111111011111111111111111101111110101111111111010111101101111110110111011111111111111111111111111111111111111111101111111100100
|
||||
01111111111111111111111101111111110101111111111111111111111110111111111111011111111101011111111111111010111101111111111111111101111100111101011111010100000101111100011101101111111111111111111111111111111111111101000111111110111
|
||||
01111111111111111111111111111111111111110111111111111111111111011111111111111111011111111111111111111111111111111111111111111111111111111111110110111011011111111111111111110110111111111111111111111111111111111011111100111100011
|
||||
01111111111111111111111111111110011111111010111111101111110111111111111111111111101011111110111111111011111101111111111111100111111111111110011111111101101011111111111111111011111111111111111111111111111111111001111110111110011
|
||||
00111111111111110111111011011111111101110111110111011111011111101101111111110110110011011101111101100010110100111011110111111111011111111101111111110101011111011111111101110111110111111111011111111101111111110011111011111101001
|
||||
01101111111111111111011111111111111111111111111111111111111001111111111111111111011011111111111111111111111111110111111111111111111111111111111110111111111111111111111111111111111111111111111111111111111111111111011111110110101
|
||||
01111111111111111111111111111111111111111111111111111111110111111111111111111111101111111111111111111111111111111111111111111111111111111111110111111111111111111111111111111111111111111111111111111111111111111101111111111111111
|
||||
01111111111111111111111111011111110101111111111111111111111011111101111111010111111111011111111111111011111101111111110111101111111110110101011011110000111111011111110101111111110111111111111111111111111111111011111111111111111
|
||||
01111111111111111111111101101110110101011111111011111111111111110111011111010011111101001111101110111111011001111111111011111111111111110100010111111101111111001110110101111111110011111111111111111111111111111101111111111111010
|
||||
01111111111111111111111111111111110101101111010111101111111111111101101111111111111111111111100101111010111111011011111111111111111101111111110111111111111111011111111111101111110111111111111111111111111111111111111111111111110
|
||||
00111111111111111111110001111110010101101101010111010011111011000111111100111111110001111111000101111100011011111011111111011011111101101110111100111011011011011110001111101100110111110011111111001111111100111111110011111110010
|
||||
01111111111111111111111111111110111111111111111111010111100111111101101111111111111111111111111110011111111111111111110111111111101101111111111111111111111111100111111100111111110111111111111111111111111111111001111111111111000
|
||||
01111111111111111111111111111111101111111110111111111111111111110101111111111111111111111111111111111111011111111110111111111111111111111111111111111111111111111110100110111111110111111111111111111111111111111111111111111111110
|
||||
01111111111111111111111111111111111101101111010111110111111111111101111111111111111111111111110101111111111111110111111111010111101111011111111111111111010111111111101101111111110111111111111111111111111111111101111111111111011
|
||||
01111111111111111111111111111111110111111011010111011111111111110101111111111111111111111111110100111111011110011110111111011111101111111111101111111110011111101110110111111111110111111111111111111111111111111111111111111110001
|
||||
01111111111111111111111101001111110111111111111111111111111111111111111111011010111111111111110100111111111101111111011011110110101111110010011111001001111111101111111111011111111111111111111111111111111111111111110111111110110
|
||||
01111111111101111101011101110101110111010101111101001111110100111111010111111101011111110101111111010111111101001111011101011011110100110111010101011101001111110101011111010111111101010011110101111111010111111101011111111111100
|
||||
01111111111111111111111111111110111111111111111111111111111111111111111111001111111111111111111011101111111101111111010011101111001011111111111111111111101101111111111111111111111111111111111111111111111111110001111111111110000
|
||||
00110101111110111111110111110011011111111111111111110111111110111111111111111101111111111111111111011110111111111111111101111110111111101111111111111111111111111111111111111011111111111111111111111111111111011111111011111100000
|
||||
01111111111111111110111111111111101111110010111101111111111011111111111111111101111111100111111111110111111110110110010110111111011101111111111111111111111111111111111111111111111111110111110111111111111111101111101111111111111
|
||||
01111111111111111111111101111111110111110111111111101111111111110101101111010111110111111110111111111011111111101100111111111011111111110011111111000111111111011111110001111111111111111111111111111111111111111110111111111001000
|
||||
00111111111111111111111111011111111110111111111111111111111111111110111101010111111111111111111111111110111111111101111111011111111101011111111111101111110101111110111111111011111101111111111111111111111111111111111111111110011
|
||||
00111111111111111111111110011101111111111111111111111111111111110111111111110111111111011101111001111111111110111101111111111111111101101111101111100111111111111111110101111111111111111111111111111111111111111101011111111101001
|
||||
00111111111111111011111111111111111111101111111111111111101111111111111110101001101110111111110100111101011111111101111111111101111110010111111011011011111011111011110111011111111111111111111111111111111111111111111111111110011
|
||||
01111111111111111111111111110111111111001111111111110111111111111111011111111111101111111111111111111111110111111101111111111101111111111101101111110101111111111110110110011111111111111111111111111111111111111111111111111111101
|
||||
00011111111111111111111111111111111111111111111111111111111111111111111111111111011111110111111111101111000111110011111111111010111111100011011110111111010000001111111111101111111111111111111111111111111111111111111110111110101
|
||||
01111111111111111111111111111111111111111110111111111111111111111111110111111111111111111111111111101111110101101101111111111110111111110011011111111111111111100111111111111111111101111111111111111111111111111111111111111110010
|
||||
01111111111111111111111001011111111111111111111110111111111111111101111111110111011111111111101111110011111110010011010111111111111011111101111111010111011001001110111110111111111111111111111111111101111101111111111111111110010
|
||||
01111111111101111111111111111111111111111111111111111111111111111101111111100111111111111001111110011111010111111111111110111101011111111011011101110110111111010101111111111111111111111111111111111101111111111111111111111111000
|
||||
01111111111111111111111111111111111111111111111111111111111111110101111011101111111111111111111111111111111111111111111111111111111110111111011111101110111110111111111111111111111111111111111111110101111111111111111111111111001
|
||||
01110110111111111111111101111111110111111111111110111111111111110110111111111110111110101111111111111111111011111111111110111110011111111110111111111111111111111011111111111111011111111101101111111011111111111111111110110111010
|
||||
01111111111111101101111111101111110110011111111101111111111111111111011111011011111101111111111111011111011101111111111101111101110111111111011111011111111111100111110111111111111011111111111111111111111111011111111101111110000
|
||||
00011111111111111101101001100111111110011111111111111111111111111110011111111111111111111111111111111111111111111110111110111111110111111111011111111110111111100111111111111111111111111101111111111111111111111111111111111000011
|
||||
01101011111111111101001101111111111111011111001111111111111110101111101111110110111100111111111111111111011110111111111111111111101110101111111111111111101011111111111111111111111111111101111111111111111111111111111111010110110
|
||||
01111011111111111011100101110111111111111111110111111111111111111101011111111111101001011111111111111111010111111111111111111111011010101011011001110111111111110110011101111111111111111101111111111111111111111111111111011110111
|
||||
01101111111111111111111101111111111111111111011111111111111110010111111111110111111101011110011111110011010111111111111111100101111111111111111011110111111111111110011101111111111111111101111111111111111111111111111111110111001
|
||||
01111111111111111101111101111111111111111111110111011011111111111111111111111111111001011111111111111010010010111110111110111111111010101111101101110111111011111111111101111010111111111101111111111111111111111111111111111111011
|
||||
01101111111111111111111101110111111111111111011101101011111111111111011110111101010001010110100111010110010001011011111111111111110110101011010110111111010011111111111111111111111111111101110111111111111111111111111111110111000
|
||||
00111111111111111111101001111110111111111111110111111111111111111101111101111111111101111111111111111111010110111111111101111111110010101011111010111111111111111111111111111111111111111101111111111111111111111111111100111100111
|
||||
01111111111111111111101101011110011111111111011111111111111111110111111111111111111111011111111111111111010001111111111111111111111010111111000011110111111111111111111101111111111111111101111111111111111111111111111101111111111
|
||||
01111101111111111111110111111111011111111111111111111111111111111111111111111111011111111101111111111111111111111111111111111111111100011100110011111111001111101101111111111111111111111111111111111111111111111111111111111110110
|
||||
01111111111111111111111111100110011111111111111111111111111111111111111111111111111011111111101111111111111011111111111111111111111110111110111011111101111111111110101111011111111111111111111111111111111111111111111111111111000
|
||||
00011111111111110111111011010011111101111111110111111111011110101101111111110110111011011110101101111010110111111011110111101011011101101100111000110111111111011100101101111110110111111111011111111101111111110111111111111100111
|
||||
01101111111111111110011111111111101111111111111111111111111111101111111111111111110011111111101111111110111111011011111111111011111111001111111110111111111011111111101111110110111111111111111111111111111111111111111111110111101
|
||||
01111111111111111111111111111111011111111111111111111111111101111111111111111111110111111101111111111011111111110111111111011111111101111101110111111111101111111111011111111011111111111111111111111111111111111111111111111111001
|
||||
01011111111111111110111101010111111101111111111111111111111111110101111111110111111101011111110111111111110101111111011111111111111111111110111011011111111111000111110111111111110111111111111111111101111111111111111111111111110
|
||||
01111111111111111111111011000111110110111111111111111111111111111101011110110011111101001111111100111111010001111111011101111111101111111111011111111101011111101110111111010111011011111111111111111100111111111111111111111110000
|
||||
01111111111111111111111111010111111101111111111111111111111111110101111111111111111111011111100111111111110011111111011110111111111011111111101111111111111011101111111111110111110111111111111111111101111111111111111111111100011
|
||||
01111111111111111111110011011111000111111100111111110011111111001101101100111111110001111111001101111100010111100011111111110001111111001111111100110111110011111111001101111100011111110011111111001101111100111111110011111111011
|
||||
01111111111111010111111111011111111101111111111111111111111111111101101111111111111101111111110111111111110011101011111011111111100111111110011111011111111111111111111111111111110111111111111111111101111111111111111111111111100
|
||||
01111111111111010111111111011111110111111111111111111111111111111101111111111111111111011111111101111111010111111110111111111111111111111111111111110111111111111111111101111111011111111111111111111101111111111111111111111110001
|
||||
01111111111111010111111111010111111101111111111111111111111111111101111111111111111111111111110111111111110011111111111011111111111111111111101111111111111111111111111111111111110111111111111111111101111111111111111111111100101
|
||||
01111111111110010111111111011111110111111111111111111111111111111101111111111111111111111111111101111111010010101110011110111101111111111111111111111110111111111111111101101111011111111111111111111101111111111111111111101111100
|
||||
00111111111111111101111110101111111111111111111111111111111111111111111111110011111111111111110111111011110011101111111111111111110111110010111111001011111111111111110010111111111111111101111111111111111111111111111111111110011
|
||||
01111111111101111101011111110101011111010011111101011111110101011111010111111101011011110100100111010101111101011111111101001111110100010111010111111101001011100100011111010111111101011110110101111111010111111101011111111111101
|
||||
01111111111111110000111111110111011100111111111111111111111111111111111111111111010111111111111111110111110101101111111011111111111111111100111111101111111111111011111011011001111111110111111111101111111111111111111011111111010
|
||||
00111111111111011111111111111111110101101101111111101111111111111111111101111111110111111101101111110110110111111111011111111111110111111101111110111111111111110111101111111101111011111111111111111111111111111111101111111101100
|
||||
01111111111111110110111111111011111111111101111101111111111011111111101111111111111011110111111111101111111111011101111110110111110101110111111110111111111111111111111111111111111111011111111111111111111111111110111111111110010
|
||||
01101111111111010111111101111111111111111111111111101111111111110011111111010011111111011110111111111011111111111101110111111111111101010101111111001111111100001111111101011111111111111111111111111111111111111111111111111111000
|
||||
01111111111111010111111111011111111111111111111111111111111111111111111111011011111111111101011111111111111111110101011111110111111111111010010111111111110110111101111011111111111111111111111111111111111111111110111111111110011
|
||||
01111111101111100110111111011111111111111111111111011111111111111111111101110110111001011111111111110101110111111101110111111111101111111111111111111111111111111111111001111111111111111111111111111111111101111111111111111110101
|
||||
01111111111111010111111100111111111110111111111111111111100111111111111111001111111100111110111111111111111111111101111111111111111111110111111101111111111101011111110101111111111111111111111111111111111101111111111111111110001
|
||||
01111110111111111111101111011111101111001111111111111111110101111111111110011101111101111111101111111111111000111111111001111111111111110111101011111111111111111110111111111111111111111111111111111111111111111111111111111111001
|
||||
01111100111111000111111111111111111111111111111011111111111111110011111111111111101111111110111111101111000111101111000011111011111111110001111111111011010111111111111110110111111100111111111111111111011111111111111111111111111
|
||||
01111111111011110111111111111111111111011111111111111111111111110110111111111111111111110111111111111111101111110101110111111111111101111011111111111111111111111111111111111111111111111111111111111111111111111111111111111110000
|
||||
01110111111111111111111111111111110101111110111111111111011110111111111101110111111111111111111110111111010111011111111110111111111110110101110011110111011111001111110101111101111101111111111111111111111111111101111111111110111
|
||||
00110111111111111111111011111110110101111111111111111111111111111110111111111110111001011011110101011110111100111111111111011111110111111101100111111111111010011111111111111111111111111111111111111111101111111111111111111101110
|
||||
01111111111111111100111111111111111111111111111110111101111110111111111111011111111111111111111111111111111111111111111101101011111111111011111111011101011111011111111111101111111111111111111111111111111111111111111111111110111
|
||||
00011111111111011101111111111111110111011111111111111111111111111110001111111001001111100111111110111111111001111110111000101011100110101111111111111101111111111011111111111111111111111111111111111111111111011111111111111110110
|
||||
01101011111111000011111100111100110001111111001111111111111111111110111111111101100111111110101111111010111111100111111010100111111000111111101111111101111110111111111111111111111111111111111111111111111111011111111111010101111
|
||||
01111011111010111011100101001111110100011010010111111111111111111111111010101010100110100110101011110011101001001111111011111111110110011010111111111111001111011100111111111010010110111111111111111111111111011111111111010110111
|
||||
01101111111011111111001100010111110101011111010111111111111111111111111111111011001111110111111111111111111111111111101101111111111110111111011111111111101111111100111111111111010111111111111111111111111111011111001111111101000
|
||||
01111111111101010100111111001001101110101111010111111111111011111111111111111111101011111111111111111010111101111110111111011011111111011111101111111111110111011001101111111111111111111111111111111111111111011111111111111101010
|
||||
01101111111111010111111101110110101111011111010101111111111111111111111111111101011011110111111111010110111101111011111001101011111111111011011110111011111111111010101111010110111101111111111111111111111111011101111111110100001
|
||||
00111100111111010101101011111111111111111111010111111111110110111111111111101111001110111111111011111011101111110111111111111111111111111011101101111011111111111111111111111111010111111111111011111111111111011111111111111011000
|
||||
01111110111111010111101111110110101110001111010111111111111110011111111111111111001111111111111111111000111111101110011011111111111111111111001010111111111111011111110111111111010111111111111111111111111111011111111111111110110
|
||||
01111111111111111111000111111111111111101111111111011011101111011111111111110111011111011111111101110111110111010111111111111111101101111100110011111111111111111101101111110110111011011111111111111111111111111111111111111100011
|
||||
01111111111111111101101111101111111111111011111111101111100111111111111111111111111011111111111111111110111111111011111101101111111110101110111011111001101111111110111111111111111101101011111111111111111111111111111111111111110
|
||||
00111111111110110111011111001011101101100111110111110111000111111101111110110111111111011110101101111010110111111011110101011011011101101100111100110001011011011110001101111110110101011011011111111101111111110110111100111110101
|
||||
01101111111100111110111111111111001111111111111111111111111111111111111100111111111111111111111111111110111111011110111111011011111111001111110110111111110011111111111111111100111111011111111111111111111111111111111001111110010
|
||||
01111111111101111111111111111111011111111111111111111111111111111111111101110111111111011111111101110111110111111111111111011111111101111101111101111111110111111111111111111011111111111111111111111111111111111111011111111110011
|
||||
01111111111111110110101101100111110111111111111111111001100111111111111111111111111111111111111111111111111111111110110101111111001111111110011110111110111111111111111101111111010011111111011111111111111111111111111110111110100
|
||||
01111111111111011011011111000111111111011111111011111101100111111111111111111101111111110111111111011111111101101011111001111011101111111111011111111001111111110111101110111011010001111101111111111111111111111111111111111110010
|
||||
00111111111011110110111001110101111111111111010111111101110111111111111111111111111111111101111111111111111111101111111111111111111111111111101111110111101111111101111111111110111111111111011101111111111111111111111111111110010
|
||||
01111111111111011111110011011111001111111100010111100001111111001111111100111111110011111111001111111100111111110010111011110011111111001110111100010111110011111111001111111100111111110001111111001111111100111111110011111111001
|
||||
01111111111111010011111101111111111111111111111111111001101111111111111111111001111111111111111111111111111011111111111111111111111111111110111111111111111111111111111101111111110111111111111111111111111111111111111111111110100
|
||||
01111111111111010111111111011111111111111111111111111101111111111111111111111111111111111111111111111111111011111110111111111111111111111110111111111111111101011111111111111111011110111111111111111111111111111111111111111110010
|
||||
00111111111111111011111101110111111111011111010111101101100111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111011111111111111111110111111111111111111111111111111111111111111111101
|
||||
01110111111111111111111111011111111111111111010111101101111111111111111111111101111111110111111111011111111101111110111110111111111111111111111111011110111101111011111111111111011111111111111111111111111111111111111111111110000
|
||||
01111111111111111111111111110111111111101111111101111111111111111111011111010011111101111111110100011111011111110111110011111111111111111100111111111111111100101111110111111111111111111111111111011111011111101011111111111111100
|
||||
01111111111111111101000111110101101111010101111101011011110101111111010110101101000110110100101011000001101101011111111101001111110101111111010101111101011101110001111011010111111101010111110101111111010111111101011011111111010
|
||||
01111111111101110011011111000111111100111111111111111111000111111111111111110011111011011100101111111111111111011111110000111111001110111100111111110011111011111101011111111111110011011111111111111111111111111111111111111111010
|
||||
00111111111110100111111101011101111101111011111111111101101110111111111111011111010111011101111111111110111110111111011111111110101101011011111111010101011111111111111111111111101111110111101110011111111111111111111111111101011
|
||||
01111001111111111110111111111011010111111111111111111110111111111111111111110101110111111111101110111111111111111100101110111110111111111011111011111111111111110111111111011100110111111111111111111111111111111111111111111110011
|
||||
01111111111110010111110111111110110001111111111111111111111011111110110110010111111101011111110101101010010110111111010011111100010111110101001111010111111100011111111111111111010111101111111111111111111111111111111111111101111
|
||||
01111111111111110101111111111111101011111111111111111111111111111111101111111011110111101111011110111101111011101101011011111111111111110101111011010111001110110111111111110111110111111111111111111111111111111110111111111111011
|
||||
01111111111011011111111111111111111111101111111011111111111101111111111101000111011100011101110101110111010111111101111111011101011111111110111111100111110110011101111111011111000111111110011111111111111111111111111111111101111
|
||||
01111111111101010111111101111111110101111111111011111111111111011110111111011111101001001111110111111010111011111111111111111111100111111111111111010110111101011111111111100111111111110101111111111111111111111111111111111111111
|
||||
01111111111111111111101011011111111111101110111111111111111111111111111111011111111111110100111100101110111010100111111101011011101111111111111111111111101111111110111111111111111101111101111111111111111111111110111111111111000
|
||||
01011111111111010111111111111111011111111111111111111111111111111111111011111111111111111111101111111111111111111011111111110111111111111110111011111111011111101111110101111111000111111111111111111111111111111111111111111110100
|
||||
01111111111111111101111111111111111111111111111101111111111111111111111111111111111111111111111111111111111111111100111101111111111111111111111111111111111111111110111111111111111010111111111111111111111111111111111111111110100
|
||||
01111111111011111011101111011101111100110111111111110011011111111111111111010111111111011010101101110111010101001011110101111111011111111101111111110010111001011111011111111111110111111111011111111101111111111111111111111100011
|
||||
00111111111111111111111111101101111101111111110111111111011111111111111111111111111011011111111101101011110100111111110011110010011111111101111110110011111111001101111101111110110101111110111111111101111111111111111111111100111
|
||||
01111111111111111110111101111111110101111111110111111101011111111111111111111111111100111111110101111111101111111011010111111111011111110011111011001111111110111111111011111111010111011111111111110101111111111111111111111111010
|
||||
00011111111111111111111111110111111111001111111101100111110111111111000011111110111111111011111111101001111111101010111001111101111111111111111111011111111111111100111111011001011111111111111111111111111111111111111111111000001
|
||||
01101011111111111111111101110111111111011111111101111111111111111111011010111111111111111111111111111001111111101011111101111100111111110011111111001111111111111110100001110011000111111111111111111111111111111111111111010111111
|
||||
01111011111111110111101011111111111111111111111111111111110111111111110011011111100111011110100111111111111111111111111010111101011110011111111111010111111111111110101101011001010111001111111111111111111111111111111111011110011
|
||||
01101111111001111111111111111111111111111111111111111111111111111111111111111111100111011110111101111111111111111111101101001101111100110101111111011111100111111110010111110011000111111111011111111111111111111111111111110110001
|
||||
01111111111111111010111111111001100111101010111111111111111111111111101111111110101011011101000110101111110010111110111011111101111001101101101111010010111111111110101101101111011110011011101110101111111111111111111111111110001
|
||||
01101111111111111110111011111010101111100110111111111111111111111111111111111101011011111110101111110110110101111111111111111101111010100111011110010101111111100101100101011111110010101011101101101111111111111111111111110111101
|
||||
00111111111111111110110111111111111111111111111111111111111011111111011010011111111111111111111111101011110110111111111111111101011111111111010001010111101011001111111101111111110011111111111111111111111111111111111111111101001
|
||||
01111111111111101111101111111011111111101111111110111111111011111111100011011100101111011111111100011001110001111111111111111101011111110101111011010001101101111100110111001111110111111111101111111111111111111111111111111110010
|
||||
01111111111111111011110111111101101111110111111111011111111111111111111111111011010011111111111110110100111111011111111111111111101100111111110101111110110111111100111110110110111011011011101111111111111111111111111111111110011
|
||||
01111111111111111001111111111111111111111110111111111011111110111111111111111001111111110110111110011001111101111011111111111111111110011111111110111101101111111110011110011001111001101111110110111111111111111111111111111111000
|
||||
00111111111111110101101011011110101101111110110111101011011111011101111111110011111111011100101100111010110101111011110111111011011111111101111111110100011011011111101100111111110101011011000111011101111111110111111111111100100
|
||||
01101111111111111110111011111111101111110110111111111011111111111111111111111111111111111111101111111111111111110011111111011011111111101111111110111110110011111111011111111111111111011111111111111111111111111111111111110110000
|
||||
01111111111111111111011111111101111111111011111111110111111111111111111111111101111111111101111111111111111111110111111111110111111110111111111101111111110111111111111111011111111111111111111111111111111111111111111111111111000
|
||||
01011111111111010001111111011111111111101111111111111111111111111111111111010010111111111111111110011111011101111111110101111011101111111101111111110101111101010111110110001110110101111101001111110111111111111111111111111010110
|
||||
01111111111111010001111111110110111111011111111101111111110111111111011111011001101111110100110101010011010101111111111011111011100111111110011011111101111101011111110110111111110101111101011111110111111111111111111111111111100
|
||||
01111111111110010011101111111111111111111111110111111111111111111111101111010110101111111100111101011111010111011111110111111011111101111101110011111101111101010110110110101111110111101101011111110111101111111111111111111110101
|
||||
01111111111111010111110011111111001111111100111111110011111111001111111100010110110011111111001101111100010011110011111011110011111111001101110100111111110001011111000111100100110011100011011111000111111100111111110011111111111
|
||||
01111111111111110001111111111111111111111111111111111111011111111110011111110111111101111111111101111111110111111111111111111111111111111100010111111111111101001111110110111111010111111011111111110111111111111111111111111110001
|
||||
01111111111111110111111111111111111111111111111111111111111111111111111111111111111101111111111101111111111111111110111111111111111111111111111101111111111101011111110111111101010111101111111111110111111111111111111111111111100
|
||||
01111111101111110101111111110111111111011111111101111111110111111111101111111110111111011111111101111111111111111111111111111111011111111111111111111111111111001111111110110111111111111111111111110111111111111111111111111111101
|
||||
01111111111111110111111111111111110111111111111111111111111111111111111111111111111111011011111101101111111110111110111111111111111011111111010111111101111101001111110111111111111101101111111111110111111111111111111111111110000
|
||||
01111111111111110011111111100111110111111111111101111111111111111111111111011111111101001111110111111111011011111111111111111111100111110110111111111111111111111111110010111111101011111101110111111111111111111111110111101111111
|
||||
01011111111101111101011011110001111011010101111101010111110100111111010011101100011110110001110111000110111001011011111101010111110001111011010001111101011111110101110111010011111100000101110100111111010101111001011111111010011
|
||||
01111111111001111111111101001011111110010111110111111111111111111100101111111011111111110111111111011111001101011111110111111101101111110111111111111111101111000111101101011111111111111111110111111111111111111111111111111110101
|
||||
00111101111111111111011110011111100111111110111111111011111111110111111111101111101011111111011111111101111111011111111100011101110101111111111111111111011101100111111101011111111111111111111111011111111111111011111111111100000
|
||||
01111111111111111111111011111010101111111111101111111111111111111101111111111111111111111111111111111111111111110101101111101111111101111111110111111111111111010111111111111111111110111111110111111111111111111111111111111110001
|
||||
01101101101111010011111101010110110001111111011111111100111111111111110111010111111101111111110001111111001111111101010111111101001111110101010001010110111100111110010001111111110111101111011111111111111111111111111110111111110
|
||||
01111111111101110111111111101111110111110111111011110111111101111111101111011011111111101111111011110111111111111101101011011110101110101110111111011011111111111011111011111111011111111111111111111111111111111111111110111110000
|
||||
01111111111111011111001101011011111001111111111010101111011111111111111101110111111111011111111101111111100110110101110111111111111111110101110111100111111111111111111111101111110111110101111111111111111111111111111111111110000
|
||||
01111011111101010011111100111111110110111111111111111100111111111110111111011111111101101111110110011111011111111100111110111101011111110010111111111111111111111111111111101111010111111101011111111111110111111111111110111110011
|
||||
01111110111111111111111111011111110111111011111110101111011111111111111111011010111101101111111100111011110111110011111010111111111111111101111110111111011111110111111111111110111011111111111111111111011111111111111111111110100
|
||||
01111101111111111111111110111111111111111111111111111111111111111111111111111101101111111111111111111110111111111111111111111111110011110010111111111011110111111111110011101111011111101111111111111111111111111111111111111110101
|
||||
01011111111111111111111110111111101111111111111111110111111111101111111011111111111111111111111111111111111111111101111111111111111111110110111111111111111111110111111110111011011111111111111111101111111111111111111111111110010
|
||||
01111111110111110011111101011111111101111111111111111101011111111101111111111001111011111111100101111111010110111111111011111101011111101111111111110011111111011111111001111111110111111111011011011111111111111111111111111110011
|
||||
00111111101111110011111111111111111111111111111111111111011110010101111111111111111111111111110100010101010011111111010110111111011111111111111110110111111111111111101101111111100100111111011111111101111111111111111111111101011
|
||||
01111101110111010111111111111111110111111110111111111111011111110111111111111101011111110111111111110111111111111111111111111110111111111111101111010111111101111111110011111011101110111101011101111101111111111111111111111111011
|
||||
00011111111111111110111101111111111111111111111111100111110011111111011111111111111111111111111111111111011111111111111110111111111111110111111111011111001101110111110111111111111111111111111011111111111111111111111111111000100
|
||||
01101011111111001111101011111111111111111111111111100111111110101111011111111111111111111011110111111111000111111110001111111101111111111111111111011111101000011111111111111111011111111100111111111111111111111111111111010110010
|
||||
01111011111111110111100111101110011111111111111111111111010111111111111111010111100101011100111101110011111110111111010111111101011111110100110011110111101011110111110111111111111011100111111111111110111111111111111111011111101
|
||||
01101111111111011111100110101110111101111111111111001111111111111111110011010111101101011100110111110011111111001111011111100101011110110010111111011111101111111111111111111111001111001111111111111011011111111111111111110111000
|
||||
01111111111111111110011011111011001111110110111110111111111011111111101111110111110111011110101101111111111111111110010110011001111001000100111010010111010001011011110101110110011001111111011111111111101111111111111110111111001
|
||||
01101101111111111110111111110110001111011010111111111111111001101111111111110111111101110101100111010110111101111111010110101001011011110101111110010111101001010111110110111010010101111101110101101110111111111111111111110111100
|
||||
00111101111111010111111111111011111111111111111101101111111111111111011111010111111101011111111101111111111111111111010111111101011111110101111101010111111101010111110101111111011111101101011111111111111011111111111111111101001
|
||||
01111111111111010111111111100111111111111111111110100111111011111111101111010111111101011111110111111111111111111111011111111101011111110101111111010111111101011000110111111111010011100001011111111110010001111111111111111110010
|
||||
01111101111111111111111111111101101111110110111111110111111101101111110111111111011111111111111111111111111111111111111111111111111101101111111111111111111111101111111110111111111111011011111111111111110111111111111111111110100
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111010111101101011111111111111111111111111101111111111101111111111111111011011111101100111100111111111111111111111101111111111111111011010111111111111111111100
|
||||
00111111111010110111111111011010101101101111110111111111011111111101110111110111011111011111111101111110110111110111110111011011011111111101111101110111111011000111111100101111110011110111011110101101010111110111111111111100000
|
||||
01101111111110111111111111111111101111111111111111111011111111101111111111111111111011111111111111110110111111111011111111110011111111111111111110111111110011111111111111111111111111111111111111101111111111111111111111110111101
|
||||
01111111111101111111111111111101111111111111111111101111111111011111111111111111110111111111111111111101111111110110111111110111111111111111111011111111110111111111111111111111111111111111111101111111111111111111111111111110100
|
||||
01111111111111010111111011110111111111111111111111111111111011111111101111010111111101111111110111111111111111111111010111111101011111111101011011010111101101001011110100011111010001111101111110111101011111111111111111111111111
|
||||
01111111101111011101111111100111111110111111111101101111110111111111011111010101011011001111100110111111111011111111010101111101010111101100010111010101011101101111100100111111010111101101110111111111011111111111111111111110010
|
||||
00111111111011010111111111101111111111111111111111111111111111111111110011111110111101111111100111111110110111111111010111101111011101110100111111110111001001011011110100111111110011111101111011111111011111111111111111111111110
|
||||
00111111111111011111110011111111001111111100111111110011111101001111111100111110010011011101000111111100111111110010011111110011011111000101111100110111110001111011000101111100110111110001111011001111111100111111110011111101101
|
||||
01111111110111110111111111111111111111111111111011111111111111111111111111010111111101111101110111111110111111111111010111111111011111110111111111010111111101000111111101111111111111111101111111111111111111111111111111111111110
|
||||
01111111111111111110111111111011111111111111111110111111111001011101101111010111110111011111010111111111111111111110010111111101011111110111111111010111111101111111111101111111111111111101111111111111111111111111111111111111011
|
||||
00111111111111110111111101111111110111111111111011111111111111111111111111110111011101111111110111111111110111111111110111111111011111111111111111110111111101011111111101111111110111111101111111111111011111111111111111111111011
|
||||
01110111111111111111111101111111111111111111111111111101111101111111111111110101111111011101110111111011111111111110111110111101011011111111101111010110111101111111111101111111110111111101110111111111111111111111111111111111101
|
||||
00110111111111111111111101101111110100111111111111111101001111111111111111001011110111111111110110111111111111111111011011111101111111110110111111011011111111111111111111111111101011111111111111111111011111111111111111111110111
|
||||
01111111111101111101011001110101001111010111111101010011110101111111000011011101001111110101110111010111111101011111111101011111110101011111010011111101011111110101111111010110111101001011110101101111010111111101011111111011101
|
||||
01111111111111111101111101111111111011110111110011101110110111111100101111111111101111111111110111111111111111111011001101111010111111110011011111001101111011001110111111111101111111111111111111111111011011111111111111011111100
|
||||
00111111111111111111111111111111111111111011010111111111111101100111111111111111111111110111111111111111111111111111111111111111111111111111011111111111111110111011111111111111111110110111111101111111111111111111111111111101111
|
||||
01111111111111111111111111101111111111111111111111111111111111111101101111111111111111111111111111110111111111111101111111111111111110111111110111111111111110111111111111111111111111111111111111111111111111111111111111111111001
|
||||
01111111101111110111110100110111110101111111111101111101011110110101111011000111111111111111111111111111111111111110110111111101111111111101011011010111111111111111110001111111011111101111111111110001111111111111111110111110111
|
||||
01111111111101111111111111111111111010111101111111111110101111111010111111101111111111111010111111110111111111111101111111011111101110011111111111111011111111111111111011111111111011011111111110010111111111111111111110111111000
|
||||
01111111111111011011111110011111111111111011110101111110000111111101111111111010111111111111111111111111100111011101011111111111111111110101111111011111111111111111111111111111111111111110011111111111111111111111111111111111101
|
||||
01111111111101111111011101111110111111111110101111111001111111110111111111111111111111111111111111101111011111111101111111111111111111110011111111111111111111111111111111111111111111111101011111110101111111111111111110111110001
|
||||
01111111111111111111111111011111111111111111111110111111011111101100011111111110111111111111111111110111110111111111111111111111111111110111111111111111110111110111111111101111111111111011111111111111011111111111111111111111001
|
||||
01111111111011111111111111111111110011111111000111011100011111110000111111111111111011111111101111111010111111111011111111111000111111111111111111111111111111111111100001111100111111111111111111111111111111111111111111111110100
|
||||
01111111110111111111111111110101010011011110110111101111101011111101111111111111111111111111111111011111111111111101111111111101101111111111111111111111111111111111111110111111111101111111111111111111111111111111111111111110011
|
||||
01111111111101111111011111011111111111100111110101011011101110111101111111111111111111010111111111111111110111111111111111111111111111110101111111111110111111101111111111111111111111101111101110001101111011111111111111111110110
|
||||
00111111111111111111111110011111111111111111110111111111111111110001101010111110111111111111111111110111100101111111111111111111111111111101111111111111111111111111111111111111111101111111111111111100111111111111111111111101111
|
||||
01111111111111111111011111011101111111111111010111111111111101111111010111111111111101111111111111111111110111111111111111111111110111111101111111111111111111110111111111111111111111111111111111110101111111111111011111111111000
|
||||
00011111111111111111111111111100111111010011111101111111110111111111001111111111111111111110101111011111111111101010111101111111111111110111111111111111111111111111111111111111111111111111111111111111111111111111111111111010001
|
||||
01101011111111111111111111011010101110111111111111101011110111111110111111111111111111111110101111111111001111001111111110101011111111110111111111111111111111111111111111111001111111111111111111111111111111111111111111010111100
|
||||
01111011111111111111111111111111111111111010111001001111101110101111111111111111111111111111111111011111110111111111010101111111111110010111111111111111111111111111111111111111110011101011111110010111111111111111001111011110110
|
||||
01101111111111111111101111111111111111111111111111001111101111111111111111111111111111111111111111111111011111101111010111111111111110010111111111111111111111111111111111111011001101111111111110111111111111111111001111110111100
|
||||
01111111111111111111110111111111111111111111111001101011101011111111101010111111111111111011111111111111111111010010111110111111111111111101111111111111111111111011111111111101011011111011111011000110101111111111111111111100100
|
||||
01101111111111111111111111110111101111111111111101111111110111100111101110111111111111111111111111111111111101101011111101111111111111111101011111111111111111111111111111111111011101100011111001001101100110111111111111110111011
|
||||
00111111111111111111111111111111011111111111111111111111111111011111111101111111111111110111111111111010111111111111010101111111111111110111111111111111111111110010111111111111010111111111111110101111111011111111111111111100101
|
||||
01111111111111111111111111111111111111111111001111101010010011111111101111111111111111111111111111110011111111111111010110111111111111110111111111111111111111111100011111111111011011111101111110101100111001111111111111111110010
|
||||
01111111111111111111111111111111111111111111111111111111111011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111111111011111101100111111111101111111111111111100100
|
||||
01111111111111111111111111111110111111011111111101111111111111111111111001111111111111111111111111011111111111101111111111111111110111111111111001111111111111100111111111011111111111101011110110011111011011111111111111111110100
|
||||
00111111111111110111111011011111011101111111110101101011011011111101111111110111111111011111111101111111110111011111110111111111011111111101111111110111111011000111111101111110110011011011010111101101010111110111111111111100110
|
||||
01101111111111111111011111111111111111111111111110111011111011101111111111111111111011111111111111111111111111111111111111111111111011111111111111111111011011111111111111111100111111110011111111001111111111111111111111110111111
|
||||
01111111111111111111111111111111111111011111111111011111111101111111111111111111110111111111111111011111111111111111111111111111110111111111111111111111011111111111111111011101111111110111111111011111111111111111111111111111110
|
||||
01111111111111111111111011111111111111101011011100101101110011111111101111111111111101111111111111101111111111111110111111111111111111100101111111111111111111000111111111111111110001111111000111111111011111111111111111111111001
|
||||
01111111111111111111111011101111111111011110011001111111010111111111011111111111111111010111111111011111111011111111111111111111110111111110111111111111111101100111111111011111011111111111110110110101011111111111111111111110011
|
||||
01111111101111111111111111111110111111111111011101101101111110111101111111111111111101111101111111111111110111111111111110001111111111111101111111111111111111010111111111111111110111111111110110111101011111111111111111111110011
|
||||
00111111111111111111110011111111001111101100011111110011001111001111111100111111110011011111001111101100110111110011111111110011111111001101111100111111110001111111001111101100011011010011111111000111111100111111110011111110001
|
||||
01111111111111111111111111111111111111111111011011111101101111111111111111111111111101101111111110011111111111111110111011111111111111110101111111111111111111001111111110111111010111011111111111111101111111111111111111111110110
|
||||
01111111111111111111111111111111111111111111011011111111001111111111111111111111111101011011111111111111111111111111111111111111111111111111111111111111111101111111111110111111010111110111111111110111111111111111111111111111101
|
||||
01111111111111111111111101111111111111101111011101111101110111111111011111111111111101101111111111101111110111111110111011111111111011111101111111111111111111001111111111111111111111111111111111111101111111111111111111111111111
|
||||
01111111111111111111111111111111111111111111011111111111011111111111111111111111111101011111111111111111110111111111111111111111111111111101111111111111111101110111111111101111111111011111111011110111101111111111111111111110100
|
||||
00111111111111111111110100101111111111011111011011101101111111110100111111111111111111111111011111111111111111111111111101111111111111111110011111111111111111111111111111111111001011111101110111111110111111111101111111111111110
|
||||
01111111111111111101011101110101111111000101101101011111110101011111000111111101011011110101111111010111111101011110111101011111110101111111010101111101011111110101111111010111101101011110110100111111010010111101011111111111000
|
||||
01111111111101111111111111111111111111111011011111111110110110111011111111111111111111000111111111111111111111111111111011111111111111110111111111111111111111001111111111011111111011111111111101100111111111111111111111111111000
|
||||
00111111111111111110111111111111101111111111111111111111111101111111111111111111111101111111111110111111111101111111101111111111111111111111111111111111111001101101111111111111101111111111111111111111111110111111111111111101001
|
||||
01111111111111111111111111111111111111110111111111111111111111111111111111111111111110111011111111110111111111111000111111111111111111111111111111111111111111011111111111111111111111101111111111111111111111111111111111111110111
|
||||
01111111111111111111111111001111111111111111111111111111111111110101111111111111011111011111111111111111111111111111111111111111111111111111111011111111111111111111111110111111110111111001011110111101111111111101111111011111110
|
||||
01111111111111111111111101111101111111010111111111011111111111111010110111111111111101111111111111101011111111111101111111111111111111111111111111111111111111111111111111110111101111111111101111110111111111111111111111111000000
|
||||
01111111111111111011111111111110111111111101111111111111111111111111111111111110111111111111111111111111111111111101111111101111101111111110111111111111111111111111111111111111111111111101111101111111111111111101111111101101101
|
||||
01111111111111111111111111110101111111111111111111111111111111111111111111111011111111111111111111111101111011111011111101111111111111111111111111111111111111111111111111111111111110101101111011111111111111111111111111111100101
|
||||
01111111111111111111111111111111111111001111111111111011111111011111111110111111111111111111111111111111111111101111111111111111111111111111111111111110111111111111111111101111111111101111011111111111011111111111111111111111001
|
||||
01111111111111111111111111110111100011111110111011111111111111111011111111101111111101111111111011111111000111111101000111110110111111111111111111111111111111111111111111111011111111111100011111111111111111111111111111111101110
|
||||
01111111111111111111110111111111110011111111111101111111111111111011101111110111111101111111111011111111111011111101101111111110111111111111111111111111111111110111111111111111111111111111101111111111111111111111111111111111101
|
||||
01111111111111111111111111111111111111111111111111011111111111111110111111111011111111111111111110101111111111111110111111111111111111111111111111111111111111111011111111011111111111110111011111101101111111110111111111111110111
|
||||
00111111111111111111111111111011111111101111111111111111111111111111111110111111111111111111101111111011111110111111111111111111111111111111111011111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||
01111111111111111111111111111111111111111111111111111111111111111111011111111111111111111111111111011111111111111111111111011111111111111111111111111111111111110111111111111111111111111101110111110111111111011111111011111110010
|
||||
00011111111111111111101011111111111111001111111111111111111111111111010011111101111111110111111111011111111101101010111101111111110110101111111111111111111111111111111111111111111111111101111111110111111001011111111111111001011
|
||||
01101011111111111111001111111111111000111111111111111111111111111110111010111011111111101111111110111111111101100111111111111111110110101111111111111111111111111111111111111111111111111110111111111111111111000111111111010111111
|
||||
01111011111111111111111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111111111111111111111111111111111111111111111111111101011111110111111010111111111111011111010
|
||||
01101111111111111111111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111001111111111111110110110
|
||||
01111110111111111111111111111111111101111111111111111111111111111111101111111110111111111011111111101111111110111110111110111111111011111111101111111111111111111111111111111111111111111111101001101111101111010010111111111111011
|
||||
01101111111111111111111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111010101101101110010101111111110111111
|
||||
00111111111111111111111111111110101101101111111111111111111111111111011111111111111111111110101111111111111111101111111111111111110111111111011111111111111111111111111111111111111111111111111111111111111101111111111100111101111
|
||||
01111111111111111111111111111100111101101111111111111111111111111111101111111100111111110000111111001111111100100011111100111111111011111111111111111111111111111111111111111111111111111111101111111101111111111001111101111111011
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111011111111101111111110111111111011111111111011111111111111111111111111111111111111111111111111111111111111111111111101111111110110111111011011111111101
|
||||
01111111111111111111111111110111111111011111111111111111111111111111111111111001111111100111111110011111111001111111111001111111111111111111111111111111111111111111111111111111111111111111110110101111111001111101101111111110010
|
||||
00111111111111110111111111011111101101111111110111111111011111111101111111110011111111001111111100111111110011111111110011111111011111111101111111110111111111011111111101111111110111111011010101101101111110110101011111111100011
|
||||
01101111111111111111111111111111001111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110011111111001111111101111111111111110110001
|
||||
01111111111111111111111111110111011111111111111111111111111111111111111111111101111111110111111111011111111101111111111101111111111111111111111111111111111111111111111111111111111111110111111111011111111111111111111111111110100
|
||||
01011111111111111111111111111011111101101111111111111111111111111111111111111000101111100011111110001111111000111111111010111111111111111111111111111111111111111111111111111111111111111101110111111111111111111101111111111011011
|
||||
01111111111111111111111111110111110110010111111111111111111111111111011111111111111111111111111111011111111101101111111111111111111111111111011111111111111111111111111111111111111111101101010111111111011111110101111111111111010
|
||||
01111111111111111111111111111110101101110111111111111111111111111111111111111110111111110001111111101011111011011111111110111111111001111111111111111111111111111111111111111111111111111101001100111111111111111111111111111110010
|
||||
01111011111111111111110011111001000111111100111111110011111111001111111100111010110011111011001110101100111111110011111110110011111111001111111100111111110011111111001111111100111111110001011111000101111100111011110011111111010
|
||||
01111111111111111111111111111111110101111111111111111111111111111110111111111011111111101111111110111111111001111111111011111111101111111111111110111111111111111111111111111111111111111111011111111111111111111111111111111111111
|
||||
01111111111111111111111111111101010101111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110010
|
||||
01111111111111111111111111111011110101011111111111111111111111111110101111111011111111101111111110101111111111111110111111111111111111111111101111111111111111111111111111111111111111111111111111111101111111111111111111111110010
|
||||
01111011111111111111111111111101110101111111111111111111111111111111111111111111111111111111111111111111111101111111111111111111111111111111111011111111111111111111111111111111111111111111111011110111101111111110111111111111111
|
||||
01111111111111111111111111111111110010111111111111111111111111111111111111111111111111111111111111001111111101111111111100111111111111111111011111111111111111111111111111011111111111111111100111110111111111111111111111111111011
|
||||
01010011111111111101011111110101110111010111111101011111110101111110010111111101011111100101111110010111111001011110111101011111110101111111010101111001011111100101101110010111111101011111110001111111010111111101011111111010000
|
||||
01111111111111111111111111111110111111111111111111111111111111111100111111110001111111001111111101011011110111111111110011110111011110111111111111111111111111111111111111111111111111111101110111111011111011111111111111111111111
|
||||
00111111111111111111111111111111101111111111111111111111111111111101111111110111111011111111111101111111111111011111101111111111011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111100101
|
||||
01111111111111111111111111111111111111111111111111111111111111110111111111011111111101011111111111110111101111111100101111111111111111111111111111111111111111111111111111111111111111111011111110111111111111111111111111111111001
|
||||
01111111111111111111111111111111110001110111111111111111111111111111111111111111111111111011111111111111111111111110111011101111101111111111111111111111111111111111111111111111111111111111011111100101111011000111111111111110000
|
||||
01111111111111111111111111111111111011111111111111011111111111111111111011111111111111111101111111110111111111111101111111111111111111111111111111111111111111110111111111111110111111101111111111111110110111101111111111111111010
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111011111111101101111111111111111111111100111111111111111110111111111111111111111111111111111111111111111111111101111111110111111111111111111111111111101
|
||||
01111111100111111110111111101111111111111111111111111111111111111111111111111111111111111111111111111111010011111101111111111111111111111111111111111111111111111111110101111111111111111001011111111110111111111111111111111110000
|
||||
01111111111111111111111111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111111111111111111111111111111111111111111101111111111111001111111111111111111111111111101
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111001111111110101111110111111011111111101101111111111110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||
01111111111111111111111111111111111111111111111111111111111111111111101111001111111110111111110111111111111110111101111111111110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110011
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111110111111111111111110101101111111111111111111110111101111110111111111111111111111111111111111111111111111111111111111001111111111111111111111111111111110100
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111111110110111111111111111111111111111111111111111111101111111111111111111110111111111111111111111111111111111101011
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110110101111111111111011111010111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111101111111111111001
|
||||
00011111111111111111111111111111111111111111111111111111111111111111111001111111100111110110011111011111111111100111111101111111110111111111111111111111100111100111110111111111111111101011111011111111111111111111111111111000000
|
||||
01101011111111111111111111111111111111111111111111111111111111111111110011111111111111101100111110111111110111001111100111111111101111111111111111111111100111111111110111111111111111100111111111111111111111111111111111010110010
|
||||
01111011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110011101011111000111111111111111111111111111111111111110110010101111001110111101011001111111111111111111111111111011111111
|
||||
01101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111001000011111111101101111111111111111111111111111111111111111110010101111001110111101110101111111111111111111111111111110110110
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111110111111111011111111101111011010111011110010111111111011111111101111111111111111111111110101101111110110110111011011101111111111111111111111111111110
|
||||
01101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110100011110101111111111111111111111111111111111111111111110101101111110110111111001001001111111111111111111111110110001
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111111100111111110011111111111111010110101111111111001111110111111111011111111111111111111011111111101111111111111111011111111111111111111111111111111100001
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111110001111111000111111001011011010110111111000101111111000111111111111111111111111111111111111111111111111111111001111111111111111111111111111111110111
|
||||
01111111111111111111011111111111111111111111111111111111111111111111111111111011111111101111111110111101111111111111111111110111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111100111111001
|
||||
01111111111111111111101011111111111111111111111111111111111111111111111111111001111111100111111110011001111101100111111111101111100111111111111111111111111111111111111111111011111111111111110110011111111111111111111110111111100
|
||||
00111111111111110111110111011111111101111111110111111111011111111101111111110001111111000111111100111110110001111011110011110111000111111101111111110111111111011111111101110111110111111011010111111101111111110111111111111101010
|
||||
01101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111100111111011111111111111111111111111111111111111111111111111111111111111111111111110111111111111111111111111111111111110110001
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111000
|
||||
01011111111110010111111111111111111111111111111111111111111111111111111111111000111111100011111110001111110010111111110001111111100011111111111111111111111111111111110111111111111111101111011111111111111111111111111111111010111
|
||||
01111111111111010011111111111111111111111111111111111111111111111111111111111111111111110110111110011111011101111111110101111111110111111111011111111111111111111110111111111011111111111111101111111111111111111111111111111111110
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111110111111110111111111110011110111111111110101011111110111111111111111111111111111111111111111111111111111101011111111111111111111111111111111111111010
|
||||
01111111111111111111110011111111001111111100111111110011111111001111111100111010110011111111001110111100011111110011110111110011111111001111111100111111110011111111001101111100111111110011111111001111111100111111110011111110010
|
||||
01111111111111010111111111111111111111111111111111111111111111111111111111111011111111111111111110011111110111111111110111111111101111111110111111111111111111111111111111111111011111111111111111111111111111111111111111111110110
|
||||
01111111111111010111111111111111111111111111111111111111111111111111111111111011111111111111111111111111011111111111110111111111111111111111111111111111111111111111111111111111110111111111111111111111111111111111111111111111000
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111011111111110010111111111101111111110101111111111111111111111111111111111011111111111111111111111111111111111111111111111110
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111011111110110111111111110111111110111111111111111111111111111111111111111111111110111111111111111111111111111111111111111111110101
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111111111011111111111011101111111111111111111111111111111111111111111110010111101011011111101101111111111111111111111111111111110000
|
||||
01011111111111111101011111110101111111010111111101011111110101111111010111111001011111110101111111010111011101011111111100001111110100111111010111111101011111110101111111010111101101011110110101111111010111111101011111111011110
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111110011111110101111111111001110111101111111111111111111111111111011101111011111111101100111111111111111111111111111111110101
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111101111011111111111101011111110111101011010111111111111111011111111111111111111111111111111111111110111111111111011010111111111111111110111111111111111101000
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111011101111010111101111111111011111111111111111111111111111111111110111111100011111011111111111011111101111111111111010
|
||||
01111111111111111111111111111111111111110111111111111111111111111111111011111111111111101111110001111110010111101101010111101111111111111111111111111111111111111111110101111111111111111101011101111111111111111111111011111110011
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111110111011101110111011111111111111111111111111111111111111111111110111011111111111101011111011111111111111111111111111110110
|
||||
01111111111111111111111111111111111111110111111111111111111111111111111111111111011111111111011001111111010111101101010110111111111111111111111111111111111111111111010001111111100111001110011111111111111111110111111111111111110
|
||||
01111111111111111111111111111111111111111111111111111111111111111111011111111111111111111111111111111111111111111110001111111111111111111111111111111111111111111111110111101011011111111101111111111111111111011111111111111110101
|
||||
01111111111111111111111111111111111111101111111111111111111111111111110111111111111111111111111111111111111011111101011111111111111111111111111111111111111111110111100111011111011111111101111110111111111111110001111111111110001
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111011111111111111110101011111101111111001101111111100011111111111111111111111111100111111110001111111000111111100011111111111111111001111111110111110010
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111101110111111111011111111111111111111111111101011111111011111111101111101110110111111111111111010111111111111110000
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111110111110011011011110111111111011111111111111111111111111111101111111111111111010111111111011111111111111111010111111111111111101
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111111011111111101111111111101111110110111111110111101111011111111111111111111111111111111111111101101111110110111111111111111111111111010111111111111100010
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111111111010101111111010111111101010111111111111111111111111111111111111011111111101110111101111111111111111111111111111111111010010
|
||||
01011111111111111111111111111111111111111111111111111111111111111111111010111111111111111111111111011111011101111111111100111111111111111111111111111111111111111110100111111111011111111101111111111111111111011111111111111001000
|
||||
01101011111111111111111111111111111111111111111111111111111111111111110011111111111111111110011111101111110101111110111101111111111111111111111111111111111111111110010011111111011111111101111111111111111111000111111111010110000
|
||||
01111011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011001010111111111111111111111111111111111111111111111111111111110100100111111010111101001011111111111111111010111111111011110010
|
||||
00101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111001000111100111110111111111111111111111111111111111111111111110110000111001111111100111111111111111111111010111111111110111110
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111111110111111111011110101101111111010111011111110011011111111111111111111111111111111111011011111101110111010111111101011111111111111111010111111111111000
|
||||
01101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110101011111111110100010111011101011111111111111111111111111111111111111111110100100111110111011111110101111111111111001111111110110000
|
||||
00111101111111111111111111111111111111111111111111111111111111111111111111111110111111110111110101011111110111101011111111111111111111111111111111111111111111110111111111111111111110110111111011111111111111111011111111111100010
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111111100101011111000110101101111011010101011111100111111111111111111111111111111111111111110101110111111111011111111100111111111111111111001111111111110100
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111011111111101111111111111111111111001111111011011011111111111111111111111111111111101111111111110011111111011011111101101111111111111011111111111110000
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111111001111111100111111111111111111101100111111111100111110111111111111111111111111111100111111111011001111101100111110110111111111111111111111111111111100
|
||||
00111111111111110111111111011111111101111111110111111111011111111101111111110011111111000111111101111111110001111111110011111111011111111101111111110111111111000111111101011110110101111011011101111101111111110111111011111101111
|
||||
01101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111011111111111011111111111111111111111111111111111111101111111100111111110011111111111111111111111111011011110111011
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111111111011111111011111111111101111110111111111111111111111111111111111011111111101111111110111111111111111111111111111011111111011001
|
||||
01111111101111111111111111111111111111111111111111111111111111111111111111111010111111100011111111111111010001101011111001111101011111111111111111111111111111100111111101011111111101111101110111111111111111111001111111111110101
|
||||
01101111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111011111010101111111111001111101000111111111111111111111111111111111111111111111010111111101011101111111111111111001111111111110011
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111110111111111101111111110111111101011111111011111101011111111111111111111111111111101110111110111011110011101101001111111111111110111011111111111100001
|
||||
01111111111111111111110011111111001111111100111111110011111111001111111100111110110011101111001111111100111111110011111111110001011111001111111100111111110011111111001111111100011111110001011111001111111100111111110011111110100
|
||||
01011111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111110111111110111111111111111111111001111111111111111111111111111100111111111111111110111111111011111111111111111110111111111111110101
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111010111111111110111111101001111111111111111111111111111111111111111111111011111111111111111111111111111110111111111111110010
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111011101111110111101111111011011111111111111111111111111111111111111111111110111111111111111111111111111110111111111111110001
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111011111111111111111111111111101011111111111111111111111111111111111111111111111011111111111111111111111111111110110111111111110001
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111001011111111111111111111111111111111111111111111110111111111001011111111111111111111111111111111111111111110001
|
||||
01011111111111111101011111110101111111010111111101011111110101111111010111111001011111110101111111000111111000001110011101001111110101111111010111111101011111110101111111010111101101011011110101111111010111111101011111111110101
|
||||
01110111111111111111111111111111111111111111111111111111111111111111111111110011111111011111111111111111110001111111111011111111110111111111111111111111111111111111101011111011111111111111111111111111111111111111111111111110110
|
||||
00111111111111111111111111111111101111111111111111111111111111111111111111101111111111111101111111111101101011111111011100111111111111111111111111111111111111111111111111111111111110111111111011111111111111111111111111111100011
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111101111111110111111111111111111110111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111100000
|
||||
01111111111111111111111111111111111111110111111111111111111111111111101011111111111111111111111111111111011110101111010111111111011111111111111111111111111111111111111100111111110111111111011111111111111111010111111111111100001
|
||||
01111111111111111111011111111111111111111111111111111111111111111111111111111111111111111011111111111111111001111101110111011111111111111111111111111111111111111111111011110111101111111110111111111111111111110111110111111110001
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111100111111101011111111101111111111111111111111111111111111111111111111111111111111111111111111111111111011111111111111111100
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110011111111011110111111011111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111111111111110000
|
||||
01111110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101110110110100111001011110111011111111111111111111111111111111111111011111111111111111111111111111111111111111111111111111111110001
|
||||
01111101111111111111111111111111111111111111111111111111111111111111111111111011111111111111111111111111101111111101111101111110110111111111111111111111111111111111111111111111111111101111111111111111111111111111111111111111001
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111101111111111110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111110010
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111110111111111101111110111111110011111111111011111101011111111111011111111111111111111111111111111111111111111111111111111111111111111111111111111110110
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111011111111111111101111110101101101110110111111010111111111011011111111111111111111111111111011111111101111111110111111111111111111111111111111111111111110101
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111101111111110011111111111111001111111111111111111111011111111111111111111111111111110111111111111111111110111111111111111111111111111111111111111110101
|
||||
00011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111010001
|
||||
01101011111111111111111111111111111111111111111111111111111111111111111111111111111111111111110101111111110111111111110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111010111110
|
||||
01111011111111111111111111111111111111111111111111111111111111111111111111111111111111111100111111110011111111100111110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101011011111011
|
||||
01101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110011111111101111011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111110111001
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110110111010100011010111011011111111111111111111111111111111111111111111111111111111111111111111111111111111111111110101110101111
|
||||
01101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110101111010111111101011010111101011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110110001
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110101111111111111101011010111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111000
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110101111111111001111111010110110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110010
|
||||
01111111110011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111100111101101
|
||||
01111111111011111111111111111111111111111111111111111111111111111111111111111111111111111111111111011011111111101111111101101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111110011
|
||||
00111111111101110111111111011111111101111111110111111111011111111101111111110111111111011111101101110010110011110111110111001011011111111101111111110111111111011111111101111111110111111111011111111101111111110111111111111101111
|
||||
01101111111111111111111111111111111111111111111111111111111111111111111110111111111111111101101111111110111111111111111111111011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011110110000
|
||||
01111111111111111111111111111111111111111111111111111111111111111111110111111111111111111110111111110111111111111111111111110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111110101
|
||||
01011111111111111111111111111111111111111111111111111111111111111111111111110111111111111110111101111111111001101111110110101111011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110000
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111011011111111111111111111010111111101111111110101011011101111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111110111
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111110111111111111111110101110011111011011111010111011111011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110000
|
||||
01111111111111111111110011111111001111111100111111110011111111001111111100011111110011111111000111111100111111110011010111110011111111001111111100111111110011111111001111111100111111110011111111001111111100111111110011011110100
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111110111111111111111111101111111111001111111111111111111001111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111110010
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111011111111111111111111111111111111111111111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111101
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111110111111111111111110101111111111111111110011111111111011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111001
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111011111111111111111110111101111011010111111011110111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111110011
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111101111111111111111111111110111111011111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111111111111111111111111100111
|
||||
01111111111111111101011111110101111111010111111101011111110101111111010111111101011111110101011111010111101101011111111101001111110101111111010111111001011111110101111111010111111101011111110101011111010111111101011011111110100
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111110111111111111111111110111111111111111111110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111010
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101110
|
||||
01111111111111111111111111111111111111111111111111111111111111111111101111111111111111111111111111111101111111111100111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111111101
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111010111011111111111111111111111000111101101000111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111100000
|
||||
01111111111111111111111111110111111111111111111111111111111111111111111111111011111111111111111111111110101111111100101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111110111
|
||||
00111111111111111111111111111111111111110111111111111111111111111111111111011111111111111111111110111111111111111101111111111111111111111111111111111111111111111101111111111111111011111111111111111111111111111111111111111101100
|
||||
01111111111111111111011111110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111111111011111110111001111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101
|
||||
01111111111111111111111111111101111111111111111111111111111111111111111111001111111100111111110011111111101111111101001111111111111111111111111111111011111111111111111111111111111111111111111111111111111111111111110111111111000
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111011111111101111111101111111111011111101111011111111111111111111111111111110111111111111111111111111111111111111111111111111111111111111111111101111111
|
||||
01111111111111111111111111111111111111111111111111111111111111011111111111100111111110111111111011111111010011111110100111111111011111111111111111111101111111110111111111111111111111111101011111111111111011111111111111111110101
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011110111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111111111111111111111111111110101
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111011111111111111111111111011110110111101111011111101101111111111111111111111111111111111111111111111111111111111110111111111111111011111111111111111110100
|
||||
01011111111111111111111111111111111111111111111111111111111111111111111111111101111111110111111111111111111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011011
|
||||
01101011111111111111111111111111111111111111111111111111111111111111111010100011111111101111111111111111111111111110111010111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111010111110
|
||||
01111011111111111111111111111111111111111111111111111111111111111111111111110110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111100111011111111
|
||||
01101111111111111111111111111111111111111111111111111111111111111111111111110111111111111111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111010
|
||||
00111111111010111111111111111111111111111111111111111111111111111111111111111110111111111111111111111111111010111111011110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111100110
|
||||
01101111111110111111111111111111111111111111111111111111111111111111111111111101111111111111111111111111111111111110011101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111011
|
||||
00111111111101111111111111111111111111111111111111111111111111111111111111111111111111111110101111111010111111101011011111001111111111111111111010111111111111111111111111111111111111111111111111111111111111111111111111111101000
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111100111111111100111111111010111001101011011100101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
|
||||
00111111111111111111111111111101111111111111111111111111111111111111111111111011111111111111111111111111111111111111111011110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111100010
|
||||
01111111111111111111111111111110101111111111111111111111111111111111111111111001111111110111111111011111111101101111111001111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110100
|
||||
00111111111111110111111111011111011101111111110111111111011111111101111111110011111111011111111101111110110001011111110011101011011111111101111111110111111111011111111101111111110111111111011111111101111111110111111111111101100
|
||||
01101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110110101
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111101111111110111111111011011111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111010
|
||||
01111111111111111111111001011111111111111111111111111111111111111111111011111000111111111010111111101011110001111111111000111111111111111111111111111111111111111111111111111111111111111101111111111111111111111111111111111110111
|
||||
01111111111111111111111101001111111111111111111111111111111111111111111110111011111111111111111111111111010101111111111011111001101111111111111111111111111111111111111111111111111111111101110111111111111111111111111111110111001
|
||||
01111011111111111111111111111111111111111111111111111111111111111111111111111110111111111111111111111111011101011111111100111111111111111111111111111111111111111111111111111111111111111101111111111111111111111111111111111111001
|
||||
01111111111111111111110011111111001111111100111111110011111111001111111100111010110011111011001111101100111111110011111110110001111111001111111100111111110011111111001111111100111111110001111111001111111100111111110111111110111
|
||||
01111111111111111111111101011111111111111111111111111111111111111111111111110011111111100111111110111111110111111111110011111111111111111110011111111111111111111111111111111111111111111101111111111111111111111111111111111011011
|
||||
01111111111111111111111101011111111111111111111111111111111111111111111111110111111111111111111110111111010111111111110111111101111111111111111111111111111111111111111111111111111111111101111111111111111111111111111011111110010
|
||||
00111111111111111111111111111111111111111111111111111111111111111111111111110011111111111111111111111111011101111110110011111111111111111111111111111111111111111111111111111111111111111101111111111111111111111111111111111110111
|
||||
01100111111111111111111111111111111111111111111111111111111111111111111111110111111111111111111111111111111111111111110111111101111111111110111111111111111111111111111111111111111111111101111011111111111111111111101111011111000
|
||||
01111111111111111111111111111110111111111011111111111111111111111111111111011011111111111111111111111111111111111111011011110111111111111111111101111111111111111110111111111111111111111111111111111111111111111111101111111101100
|
||||
01111111111111111101011111110100101111010011111101011111110101111111010011111101000111110100111111010001111101010110111100001111110101111111010111111101011111110101111111010111111101011111110101111111010111111101011101001111010
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111101000001111111111111101111111111111111111111000001111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101110001
|
||||
00111111101111111111111111111111111111111111111111111111111111111111111111110111111111111101111111111111111111111111011101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111111100101
|
||||
01111111111111111111111111111011111111111111111111110111111111101111001111011011111111111111111111111111111111111100110110111111111111111111111111111111011111111111111111111111111111111011111111111111111111111111011111111111011
|
||||
01111111111111111101111111111111111111111111111111111011111111111111010111110111111111111111111111111111111111111111110110111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111110111111110010
|
||||
01111111111111111111111111111111111111011110111111111111111111111111111111111111111111111111111111111111111111111100111110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110101
|
||||
01111111111111110111111111111111111001111110111111111111111111011101111111010111111111111111111001111110110111101101000111111011111111111111111111111111111111111111111111111111111111111111111111111101111111111111111111110111110
|
||||
01111111111111010111111111111111111111111101111011111111111111111010011111001111111111101111110100111111111011011110011111111101001111111111111111111111111111111111111111111101111111111111111111111011111111111111111111111110010
|
||||
01111111111111111011111111111111111111111111111111111111111111111111101111011111111111111111111111111101111011111101110111010011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110100
|
||||
01111111111111111111111111111101111111111111111111111111111111111111110111111110111011111111101111111111111111111001111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111111011
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111101111111111111111111111111111111111110111101111111111111111111111111111111111111011111111111111111111111111111111111111111111111111111111111111111111110000
|
||||
01111111111111111111111111011111111101111111111111111111111111111101111111010110111111111111111111111111010111110111010111111111011111011111111111111111111111111111111111111111111111111111111111110101111111111111011111111111001
|
||||
00111111111111111111111110011111111001011111111111111111111111111111111111010111111111111011111111111111110111111111111111011110011111111111111111111111111111111111111111111111111111111111111111110101111111010111111111111101100
|
||||
01111111111111111111111111011111111101110111111111111111111111110111111111111111111111110111111111111111101111111111111111111111011111111111011111111111111111111111111111111111111111111111111111111111111111111111111111111110010
|
||||
01110111111111110011111111000111110010111111110011111111001111111100011111111011111111001111111100111111110011111011110011111111001111110000111111110011111111001111110000111111110011111111001111111100111111110011111111111001001
|
||||
01111111111111101111111111101101111011110110111011111111001111111110110111111011111111101111111110111111111011111110111011111111001111111010111111111011111111101111111010111111111011111110101111111110111111111011111111111111010
|
||||
01111111111111110111111111001111111101111111110111111111011111111100110111110111110111011111111101111111110111111111110111111111011111111101111111110111101111011101111101111111110111111111011111111101111111110011111111111110101
|
||||
01111111111111111111111111111111111111111111111111111111101111111111111111111111110111111111111111111111111111111111111110111111101111111111101111111111111111111111111111111111111111111111111111111111111111111111111111110110010
|
||||
01111111111111110111101111110111111101011111110111111111011111111111011111110111111111011111111101111111110110111111110111111111011111111101110111110111111111011111111101110111110111111111011111111101111111111101111111111111000
|
||||
01111111111111001111111100111111110011111111001111111100111111110011011111001111110100111111110011111111001111111111001111111100111111110011111111001110111100111111110011111111001111111100111111110011111111001111111111111111100
|
||||
01111111111111011011111101111111110110111111011111111101111111110111111111011111110101111111110111111111011110111111011111111101111111110111111011011110111101111111110111111011011111111101111111110111111111011101111111011110101
|
||||
01111111111111100111111110111111111011111111100101111110010111111011111111101101111110010111111001011111100101111110100101111110010111111001011111100101111110010111111001011111100101111110010111111001011111101111111111111111001
|
||||
01111111111111101111111110111111111011111111101111111110111101111011111111101111111110111111111011111111101111110111101111111110111111111011111111101111111110111111111011111111101111111110111111111011111111101111111111111110111
|
||||
01111111111111111111111111101111111110111111111111111011111111111110111111111011110111111111111111111111111111111011111111111111111110101111111111111111111111111111111111111111111111111111111111101111111111110011111110111110001
|
||||
01111111111111101111111110111111111011111111101111111110111111111011111111101111111110111111111011111111101111111101101111111110111101111011111011101111111110111111111011111011101111111110111111111011111111101111111111111110111
|
||||
01111111111111111111111111101111101111111111111111111111111111111110111110111111111111111111111111111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111010
|
||||
01111111111111111011111111101111111110111111111011111111101111111110111111111010111111101111111110111111111011111111111011111111101111111110111111111010111111101111111110111111111011111111101111111110111111111011111111111111100
|
||||
01111011111111111111110111111111111111111110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101110011
|
||||
01111111111111111111111111111111111111111111111111111111111111111011111111111111111111111111111011111111111111111101111111111111111111111111111111101111111111111111111011111111111111111111111111111111111111111111111111101111011
|
||||
01111111111111101111111110111111111111111111111111111111111111110011111111101111111111111111110011111111111111111101111111111111111111111111111111001111111111111111110011111111111111111111111111111111111111101111111111101110100
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111110111
|
||||
01111111111111111111111111111111111111111111111111011111111101111111111111111111111111111101111111111111111111111111111111111111111111111111110111111111011111111111111111110111111111011111111101111111111111111111111111111111111
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111110010
|
||||
01111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111110
|
||||
01111011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111110100
|
||||
01111111111111111111101111111110111111111011111111101111111110111111111011111111101111111110111111111011111111101111111111101111111110111111111011111111101111111110111111111011111111101111111110111111111011111111100011111110011
|
||||
01111111111111110111111110011111111001111111110111111111011111111001111111100111111111011111111101111111100111101101110111111110011110111101111111110111111111011111111101111111110111111111011111111101111111100111111001111110001
|
||||
01111111111111111110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111110001
|
||||
01111101111111011101110101110111010111011101011111111101111111110111011101011101110101111111111101111101111111111111110111110111111111110111111111011111111101111111110111111111011111111101110111111101111101111101110111111101111
|
||||
01111111111101101111101011011010101101101010101111111010111111101101101010110111101110111111101101111011110111101111110111101111011110111011111110101111111011110011101011111110101111111011111111101101111011010110111111110100101
|
||||
01111111111111111
|
||||
379
vxloader/vxloader.c
Normal file
379
vxloader/vxloader.c
Normal file
|
|
@ -0,0 +1,379 @@
|
|||
/*
|
||||
* Firmware Loader for Digigram VX soundcards
|
||||
*
|
||||
* Copyright (c) 2003 by Takashi Iwai <tiwai@suse.de>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <ctype.h>
|
||||
#include <getopt.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <stdarg.h>
|
||||
#include <alsa/asoundlib.h>
|
||||
|
||||
#include <sound/vx_load.h>
|
||||
|
||||
#define PROGNAME "vxload"
|
||||
|
||||
|
||||
/* directory containing the firmware binaries */
|
||||
#ifndef DATAPATH
|
||||
#define DATAPATH "/usr/share/vxloader"
|
||||
#endif
|
||||
|
||||
/* firmware index file */
|
||||
#define INDEX_FILE DATAPATH "/index"
|
||||
|
||||
/* max. number of cards (shouldn't be in the public header?) */
|
||||
#define SND_CARDS 8
|
||||
|
||||
|
||||
static int verbose;
|
||||
|
||||
static void usage(void)
|
||||
{
|
||||
printf("Boot loader for Digigram VX cards\n");
|
||||
printf("version %s\n", VERSION);
|
||||
printf("usage: vxloader [-c card] [-D device]\n");
|
||||
}
|
||||
|
||||
static void error(const char *fmt, ...)
|
||||
{
|
||||
if (verbose) {
|
||||
va_list ap;
|
||||
va_start(ap, fmt);
|
||||
fprintf(stderr, "%s: ", PROGNAME);
|
||||
vfprintf(stderr, fmt, ap);
|
||||
va_end(ap);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* read a xilinx bitstream file
|
||||
*/
|
||||
static int read_xilinx_image(struct snd_vx_image *img, const char *fname)
|
||||
{
|
||||
FILE *fp;
|
||||
char buf[256];
|
||||
int data, c, idx, length;
|
||||
char *p;
|
||||
|
||||
if ((fp = fopen(fname, "r")) == NULL) {
|
||||
error("cannot open %s\n", fname);
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
strcpy(img->name, fname);
|
||||
|
||||
c = 0;
|
||||
data = 0;
|
||||
idx = 0;
|
||||
length = 0;
|
||||
while (fgets(buf, sizeof(buf), fp)) {
|
||||
if (strncmp(buf, "Bits:", 5) == 0) {
|
||||
for (p = buf + 5; *p && isspace(*p); p++)
|
||||
;
|
||||
if (! *p) {
|
||||
error("corrupted file %s in Bits line\n", fname);
|
||||
fclose(fp);
|
||||
return -EINVAL;
|
||||
}
|
||||
length = atoi(p);
|
||||
length /= 8;
|
||||
if (length <= 0) {
|
||||
error("corrupted file %s, detected length = %d\n", fname, length);
|
||||
fclose(fp);
|
||||
return -EINVAL;
|
||||
}
|
||||
img->length = length;
|
||||
img->image = malloc(length);
|
||||
if (! img->image) {
|
||||
error("cannot alloc %d bytes\n", length);
|
||||
fclose(fp);
|
||||
return -ENOMEM;
|
||||
}
|
||||
continue;
|
||||
}
|
||||
if (buf[0] != '0' && buf[1] != '1')
|
||||
continue;
|
||||
if (length <= 0) {
|
||||
error("corrupted file %s, starting without Bits line\n", fname);
|
||||
fclose(fp);
|
||||
return -EINVAL;
|
||||
}
|
||||
for (p = buf; *p == '0' || *p == '1'; p++) {
|
||||
data |= (*p - '0') << c;
|
||||
c++;
|
||||
if (c >= 8) {
|
||||
img->image[idx] = data;
|
||||
data = 0;
|
||||
c = 0;
|
||||
idx++;
|
||||
if (idx >= length)
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (c)
|
||||
img->image[idx++] = data;
|
||||
if (idx != length) {
|
||||
error("length doesn't match: %d != %d\n", idx, length);
|
||||
fclose(fp);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
fclose(fp);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* read a binary image file
|
||||
*/
|
||||
static int read_boot_image(struct snd_vx_image *img, const char *fname)
|
||||
{
|
||||
struct stat st;
|
||||
int fd;
|
||||
|
||||
strcpy(img->name, fname);
|
||||
if (stat(fname, &st) < 0) {
|
||||
error("cannot call stat %s\n", fname);
|
||||
return -ENODEV;
|
||||
}
|
||||
img->length = st.st_size;
|
||||
if (img->length == 0) {
|
||||
error("zero file size %s\n", fname);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
img->image = malloc(img->length);
|
||||
if (! img->image) {
|
||||
error("cannot malloc %d bytes\n", img->length);
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
fd = open(fname, O_RDONLY);
|
||||
if (fd < 0) {
|
||||
error("cannot open %s\n", fname);
|
||||
return -ENODEV;
|
||||
}
|
||||
if (read(fd, img->image, img->length) != (ssize_t)img->length) {
|
||||
error("cannot read %d bytes from %s\n", img->length, fname);
|
||||
close(fd);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
close(fd);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* parse the index file and get the file to read from the key
|
||||
*/
|
||||
|
||||
#define MAX_PATH 128
|
||||
|
||||
static int get_file_name(const char *key, const char *type, char *fname)
|
||||
{
|
||||
FILE *fp;
|
||||
char buf[128];
|
||||
char temp[32], *p;
|
||||
int len;
|
||||
|
||||
if ((fp = fopen(INDEX_FILE, "r")) == NULL) {
|
||||
error("cannot open the index file %s\n", INDEX_FILE);
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
sprintf(temp, "%s.%s", key, type);
|
||||
len = strlen(temp);
|
||||
|
||||
while (fgets(buf, sizeof(buf), fp)) {
|
||||
if (strncmp(buf, temp, len))
|
||||
continue;
|
||||
for (p = buf + len; *p && isspace(*p); p++)
|
||||
;
|
||||
if (*p == '/') {
|
||||
strncpy(fname, p, MAX_PATH);
|
||||
} else {
|
||||
snprintf(fname, MAX_PATH, "%s/%s", DATAPATH, p);
|
||||
}
|
||||
fname[MAX_PATH-1] = 0;
|
||||
/* chop the last linefeed */
|
||||
for (p = fname; *p && *p != '\n'; p++)
|
||||
;
|
||||
*p = 0;
|
||||
fclose(fp);
|
||||
return 0;
|
||||
}
|
||||
fclose(fp);
|
||||
error("cannot find the file entry for %s\n", temp);
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* read the firmware binaries
|
||||
*/
|
||||
static int read_firmware(int type, const char *key, struct snd_vx_loader *xilinx, struct snd_vx_loader *dsp)
|
||||
{
|
||||
int err;
|
||||
char fname[MAX_PATH];
|
||||
|
||||
if (type >= VX_TYPE_VXPOCKET) {
|
||||
if (get_file_name(key, "boot", fname) < 0)
|
||||
return -EINVAL;
|
||||
err = read_boot_image(&xilinx->boot, fname);
|
||||
if (err < 0)
|
||||
return err;
|
||||
}
|
||||
|
||||
if (get_file_name(key, "xilinx", fname) < 0)
|
||||
return -EINVAL;
|
||||
err = read_xilinx_image(&xilinx->binary, fname);
|
||||
if (err < 0)
|
||||
return err;
|
||||
|
||||
if (get_file_name(key, "dspboot", fname) < 0)
|
||||
return -EINVAL;
|
||||
err = read_boot_image(&dsp->boot, fname);
|
||||
if (err < 0)
|
||||
return err;
|
||||
|
||||
if (get_file_name(key, "dspimage", fname) < 0)
|
||||
return -EINVAL;
|
||||
err = read_boot_image(&dsp->binary, fname);
|
||||
return err;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* load the firmware binaries
|
||||
*/
|
||||
static int vx_boot(const char *devname)
|
||||
{
|
||||
snd_hwdep_t *hw;
|
||||
const char *key;
|
||||
int err;
|
||||
struct snd_vx_version version;
|
||||
struct snd_vx_loader xilinx, dsp;
|
||||
|
||||
if ((err = snd_hwdep_open(&hw, devname, O_RDWR)) < 0) {
|
||||
error("cannot open hwdep %s\n", devname);
|
||||
return err;
|
||||
}
|
||||
|
||||
/* get the current status */
|
||||
if ((err = snd_hwdep_ioctl(hw, SND_VX_HWDEP_IOCTL_VERSION, &version)) < 0) {
|
||||
error("cannot get version for %s\n", devname);
|
||||
return err;
|
||||
}
|
||||
|
||||
switch (version.type) {
|
||||
case VX_TYPE_BOARD:
|
||||
key = "board";
|
||||
break;
|
||||
case VX_TYPE_V2:
|
||||
case VX_TYPE_MIC:
|
||||
key = "vx222";
|
||||
break;
|
||||
case VX_TYPE_VXPOCKET:
|
||||
key = "vxpocket";
|
||||
break;
|
||||
case VX_TYPE_VXP440:
|
||||
key = "vxp440";
|
||||
break;
|
||||
default:
|
||||
error("invalid VX board type %d\n", version.type);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
memset(&xilinx, 0, sizeof(xilinx));
|
||||
memset(&dsp, 0, sizeof(dsp));
|
||||
|
||||
if ((err = read_firmware(version.type, key, &xilinx, &dsp)) < 0)
|
||||
return err;
|
||||
|
||||
//fprintf(stderr, "loading xilinx..\n");
|
||||
if (! (version.status & VX_STAT_XILINX_LOADED) &&
|
||||
(err = snd_hwdep_ioctl(hw, SND_VX_HWDEP_IOCTL_LOAD_XILINX, &xilinx)) < 0) {
|
||||
error("cannot load xilinx\n");
|
||||
return err;
|
||||
}
|
||||
//fprintf(stderr, "loading dsp..\n");
|
||||
if (! (version.status & VX_STAT_DSP_LOADED) &&
|
||||
(err = snd_hwdep_ioctl(hw, SND_VX_HWDEP_IOCTL_LOAD_DSP, &dsp)) < 0) {
|
||||
error("cannot load DSP\n");
|
||||
return err;
|
||||
}
|
||||
//fprintf(stderr, "starting devices..\n");
|
||||
if (! (version.status & VX_STAT_DEVICE_INIT) &&
|
||||
(err = snd_hwdep_ioctl(hw, SND_VX_HWDEP_IOCTL_INIT_DEVICE, 0)) < 0) {
|
||||
error("cannot initialize devices\n");
|
||||
return err;
|
||||
}
|
||||
snd_hwdep_close(hw);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
int c;
|
||||
int card = -1;
|
||||
char *device_name = NULL;
|
||||
char name[64];
|
||||
|
||||
while ((c = getopt(argc, argv, "c:D:")) != -1) {
|
||||
switch (c) {
|
||||
case 'c':
|
||||
card = atoi(optarg);
|
||||
break;
|
||||
case 'D':
|
||||
device_name = optarg;
|
||||
break;
|
||||
default:
|
||||
usage();
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
||||
if (device_name) {
|
||||
verbose = 1;
|
||||
return vx_boot(device_name) != 0;
|
||||
}
|
||||
if (card >= 0) {
|
||||
sprintf(name, "hw:%d", card);
|
||||
verbose = 1;
|
||||
return vx_boot(name) != 0;
|
||||
}
|
||||
|
||||
/* probe the cards until found */
|
||||
for (c = 0; c < SND_CARDS; c++) {
|
||||
sprintf(name, "hw:%d", c);
|
||||
if (! vx_boot(name))
|
||||
return 0;
|
||||
}
|
||||
fprintf(stderr, PROGNAME ": no VX-compatible cards found\n");
|
||||
return 1;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue